chore: bump version to 2.21.9 and update dependencies across multiple packages (#420)

- Updated application version from 2.21.8 to 2.21.9 in package.json.
- Upgraded dependencies including prettier to version 3.7.4, @supabase/supabase-js to version 2.86.0, and @tanstack/react-query to version 5.90.11.
- Adjusted various package.json files to reflect updated versions for lucide-react, react-hook-form, and nodemailer.
- Enhanced pnpm-lock.yaml and pnpm-workspace.yaml for consistency in package versions.
- Refactored import statements in several components for improved readability.
This commit is contained in:
Giancarlo Buomprisco
2025-12-03 14:04:54 +08:00
committed by GitHub
parent 57d7b0f02f
commit c77c380c9c
42 changed files with 1490 additions and 1695 deletions

View File

@@ -14,7 +14,7 @@
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"input-otp": "1.4.2",
"lucide-react": "^0.554.0",
"lucide-react": "^0.555.0",
"radix-ui": "1.4.3",
"react-dropzone": "^14.3.8",
"react-top-loading-bar": "3.0.2",
@@ -35,9 +35,9 @@
"eslint": "^9.39.1",
"next": "catalog:",
"next-themes": "0.4.6",
"prettier": "^3.6.2",
"react-day-picker": "^9.11.2",
"react-hook-form": "^7.66.1",
"prettier": "^3.7.4",
"react-day-picker": "^9.11.3",
"react-hook-form": "^7.67.0",
"react-i18next": "^16.3.5",
"sonner": "^2.0.7",
"tailwindcss": "catalog:",

View File

@@ -8,8 +8,7 @@ import { Heading } from '../../shadcn/heading';
import { Spinner } from '../spinner';
import { NewsletterSignup } from './newsletter-signup';
interface NewsletterSignupContainerProps
extends React.HTMLAttributes<HTMLDivElement> {
interface NewsletterSignupContainerProps extends React.HTMLAttributes<HTMLDivElement> {
onSignup: (email: string) => Promise<void>;
heading?: string;
description?: string;

View File

@@ -25,7 +25,8 @@ const badgeVariants = cva(
);
export interface BadgeProps
extends React.HTMLAttributes<HTMLDivElement>,
extends
React.HTMLAttributes<HTMLDivElement>,
VariantProps<typeof badgeVariants> {}
function Badge({ className, variant, ...props }: BadgeProps) {

View File

@@ -37,7 +37,8 @@ const buttonVariants = cva(
);
export interface ButtonProps
extends React.ComponentPropsWithRef<'button'>,
extends
React.ComponentPropsWithRef<'button'>,
VariantProps<typeof buttonVariants> {
asChild?: boolean;
}

View File

@@ -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.FC<SheetContentProps> = ({