Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"rangeStrategy": "bump",
"ignorePaths": ["**/node_modules/**"],
"commitMessageSuffix": "[skip ci]",
"assignees": [],
"reviewers": [],
"packageRules": [
{
"groupName": "github-actions",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"eslint": "^8.57.1",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"prettier": "3.6.2",
"prettier": "3.7.4",
"prettier-plugin-astro": "0.14.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
Expand Down
24 changes: 12 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/components/projects/data-table-column-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ import {

import { Button } from "../ui/button";

interface DataTableColumnHeaderProps<TData, TValue>
extends React.HTMLAttributes<HTMLDivElement> {
interface DataTableColumnHeaderProps<
TData,
TValue,
> extends React.HTMLAttributes<HTMLDivElement> {
column: Column<TData, TValue>;
title: string;
}
Expand Down
6 changes: 4 additions & 2 deletions src/components/sessions/data-table-column-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ import {

import { Button } from "../ui/button";

interface DataTableColumnHeaderProps<TData, TValue>
extends React.HTMLAttributes<HTMLDivElement> {
interface DataTableColumnHeaderProps<
TData,
TValue,
> extends React.HTMLAttributes<HTMLDivElement> {
column: Column<TData, TValue>;
title: string;
}
Expand Down
6 changes: 4 additions & 2 deletions src/components/tasks/data-table-column-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ import {

import { Button } from "../ui/button";

interface DataTableColumnHeaderProps<TData, TValue>
extends React.HTMLAttributes<HTMLDivElement> {
interface DataTableColumnHeaderProps<
TData,
TValue,
> extends React.HTMLAttributes<HTMLDivElement> {
column: Column<TData, TValue>;
title: string;
}
Expand Down
3 changes: 1 addition & 2 deletions src/components/time-picker/time-picker-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ import {

import { Input } from "@/components/ui/input";

export interface TimePickerInputProps
extends React.InputHTMLAttributes<HTMLInputElement> {
export interface TimePickerInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
picker: TimePickerType;
date: Date | undefined;
setDate: (date: Date | undefined) => void;
Expand Down
3 changes: 2 additions & 1 deletion src/components/ui/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const badgeVariants = cva(
);

export interface BadgeProps
extends React.HTMLAttributes<HTMLDivElement>,
extends
React.HTMLAttributes<HTMLDivElement>,
VariantProps<typeof badgeVariants> {}

function Badge({ className, variant, ...props }: BadgeProps) {
Expand Down
3 changes: 2 additions & 1 deletion src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ const buttonVariants = cva(
);

export interface ButtonProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
extends
React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof buttonVariants> {
asChild?: boolean;
}
Expand Down
3 changes: 1 addition & 2 deletions src/components/ui/input.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { cn } from "@/lib/utils";
import * as React from "react";

export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {}

const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {
Expand Down
3 changes: 2 additions & 1 deletion src/components/ui/sheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ const sheetVariants = cva(
);

interface SheetContentProps
extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>,
extends
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>,
VariantProps<typeof sheetVariants> {}

const SheetContent = React.forwardRef<
Expand Down
3 changes: 1 addition & 2 deletions src/components/ui/textarea.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { cn } from "@/lib/utils";
import * as React from "react";

export interface TextareaProps
extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}
export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}

const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
({ className, ...props }, ref) => {
Expand Down