shadcn-packaged 2025.3.24 → 2025.4.7

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.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Shadcn Packaged
2
2
 
3
+ > Tailwindcss V4 not tested, please use v3
4
+
3
5
  This is an npm package that exports all [shadcn/ui](https://ui.shadcn.com/) components without the need for a CLI, designed for ease of use.
4
6
 
5
7
  It simply provides all useful files along with type declarations.
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.4.7",
5
5
  "type": "module",
6
6
  "module": "index.mjs",
7
7
  "scripts": {
@@ -24,7 +24,7 @@
24
24
  "index.mjs"
25
25
  ],
26
26
  "dependencies": {
27
- "@hookform/resolvers": "^4.1.3",
27
+ "@hookform/resolvers": "^5.0.1",
28
28
  "@radix-ui/react-accordion": "^1.2.3",
29
29
  "@radix-ui/react-alert-dialog": "^1.1.6",
30
30
  "@radix-ui/react-aspect-ratio": "^1.1.2",
@@ -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
- "embla-carousel-react": "^8.5.2",
56
+ "embla-carousel-react": "^8.6.0",
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
- "recharts": "^2.15.1",
63
- "sonner": "^2.0.1",
62
+ "recharts": "^2.15.2",
63
+ "sonner": "^2.0.3",
64
64
  "vaul": "^1.1.2",
65
65
  "zod": "^3.24.2"
66
66
  },
@@ -71,8 +71,8 @@
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",
75
- "tailwind-merge": "^3.0.2",
74
+ "lucide-react": "^0.487.0",
75
+ "tailwind-merge": "^3.2.0",
76
76
  "tailwindcss": "^3.4.17",
77
77
  "tailwindcss-animate": "^1.0.7",
78
78
  "typescript": "~5.6.2"
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;