shadcn-packaged 2025.3.24 → 2025.3.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/ui/form.d.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shadcn-packaged",
3
3
  "private": false,
4
- "version": "2025.3.24",
4
+ "version": "2025.3.31",
5
5
  "type": "module",
6
6
  "module": "index.mjs",
7
7
  "scripts": {
@@ -51,16 +51,16 @@
51
51
  "@radix-ui/react-toggle": "^1.1.2",
52
52
  "@radix-ui/react-toggle-group": "^1.1.2",
53
53
  "@radix-ui/react-tooltip": "^1.1.8",
54
- "cmdk": "^1.0.0",
54
+ "cmdk": "^1.1.1",
55
55
  "date-fns": "^4.1.0",
56
56
  "embla-carousel-react": "^8.5.2",
57
57
  "input-otp": "^1.4.2",
58
58
  "next-themes": "^0.4.6",
59
59
  "react-day-picker": "^8.10.1",
60
- "react-hook-form": "^7.54.2",
60
+ "react-hook-form": "^7.55.0",
61
61
  "react-resizable-panels": "^2.1.7",
62
62
  "recharts": "^2.15.1",
63
- "sonner": "^2.0.1",
63
+ "sonner": "^2.0.2",
64
64
  "vaul": "^1.1.2",
65
65
  "zod": "^3.24.2"
66
66
  },
@@ -71,7 +71,7 @@
71
71
  "class-variance-authority": "^0.7.1",
72
72
  "clsx": "^2.1.1",
73
73
  "globals": "^15.14.0",
74
- "lucide-react": "^0.483.0",
74
+ "lucide-react": "^0.485.0",
75
75
  "tailwind-merge": "^3.0.2",
76
76
  "tailwindcss": "^3.4.17",
77
77
  "tailwindcss-animate": "^1.0.7",
package/ui/form.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as React from "react";
2
2
  import * as LabelPrimitive from "@radix-ui/react-label";
3
3
  import { type ControllerProps, type FieldPath, type FieldValues } from "react-hook-form";
4
- declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues | undefined = undefined>(props: import("react-hook-form").FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
4
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: import("react-hook-form").FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
5
5
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => React.JSX.Element;
6
6
  declare const useFormField: () => {
7
7
  invalid: boolean;