shadcn-packaged 2025.6.16-2 → 2025.7.14

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
@@ -47,7 +47,7 @@ export default defineConfig({
47
47
 
48
48
  Import default style
49
49
 
50
- > If you have a fully customized style in global entry css file, see [Custom Theme](#custom-theme), you don't need to import it
50
+ > If you have a fully customized style in global entry css file, see [Custom Theme](#custom-theme).
51
51
 
52
52
  The global entry css file, `index.css` | `global.css`
53
53
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shadcn-packaged",
3
3
  "private": false,
4
- "version": "2025.6.16-2",
4
+ "version": "2025.7.14",
5
5
  "type": "module",
6
6
  "module": "index.mjs",
7
7
  "scripts": {
@@ -56,13 +56,13 @@
56
56
  "embla-carousel-react": "^8.6.0",
57
57
  "input-otp": "^1.4.2",
58
58
  "next-themes": "^0.4.6",
59
- "react-day-picker": "^9.7.0",
60
- "react-hook-form": "^7.58.0",
59
+ "react-day-picker": "^9.8.0",
60
+ "react-hook-form": "^7.60.0",
61
61
  "react-resizable-panels": "^3.0.3",
62
- "recharts": "^2.15.3",
63
- "sonner": "^2.0.5",
62
+ "recharts": "^2.15.4",
63
+ "sonner": "^2.0.6",
64
64
  "vaul": "^1.1.2",
65
- "zod": "^3.25.64"
65
+ "zod": "^4.0.5"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@types/node": "^22.10.7",
@@ -71,10 +71,10 @@
71
71
  "class-variance-authority": "^0.7.1",
72
72
  "clsx": "^2.1.1",
73
73
  "globals": "^15.14.0",
74
- "lucide-react": "^0.515.0",
74
+ "lucide-react": "^0.525.0",
75
75
  "tailwind-merge": "^3.3.1",
76
76
  "tailwindcss": "^3.4.17",
77
- "tw-animate-css": "^1.3.4",
77
+ "tw-animate-css": "^1.3.5",
78
78
  "typescript": "~5.6.2"
79
79
  }
80
80
  }
package/ui/calendar.jsx CHANGED
@@ -19,7 +19,7 @@ function Calendar({ className, classNames, showOutsideDays = true, captionLayout
19
19
  month_caption: cn("flex items-center justify-center h-(--cell-size) w-full px-(--cell-size)", defaultClassNames.month_caption),
20
20
  dropdowns: cn("w-full flex items-center text-sm font-medium justify-center h-(--cell-size) gap-1.5", defaultClassNames.dropdowns),
21
21
  dropdown_root: cn("relative has-focus:border-ring border border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] rounded-md", defaultClassNames.dropdown_root),
22
- dropdown: cn("absolute inset-0 opacity-0", defaultClassNames.dropdown),
22
+ dropdown: cn("absolute bg-popover inset-0 opacity-0", defaultClassNames.dropdown),
23
23
  caption_label: cn("select-none font-medium", captionLayout === "label"
24
24
  ? "text-sm"
25
25
  : "rounded-md pl-2 pr-1 flex items-center gap-1 text-sm h-8 [&>svg]:text-muted-foreground [&>svg]:size-3.5", defaultClassNames.caption_label),