@gentleduck/registry-ui 0.2.1 → 0.2.3

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/CHANGELOG.md CHANGED
@@ -1,11 +1,54 @@
1
1
  # @gentleduck/registry-ui
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 7c2aa88: Update dependencies and publish unpublished packages
8
+ - Updated dependencies [7c2aa88]
9
+ - @gentleduck/hooks@0.1.11
10
+ - @gentleduck/libs@0.1.14
11
+ - @gentleduck/motion@0.1.16
12
+ - @gentleduck/primitives@0.2.3
13
+ - @gentleduck/variants@0.1.19
14
+ - @gentleduck/vim@0.1.15
15
+
16
+ ## 0.2.2
17
+
18
+ ### Patch Changes
19
+
20
+ - c9bbef8: Documentation and style updates.
21
+ - Updated dependencies [c9bbef8]
22
+ - @gentleduck/hooks@0.1.10
23
+ - @gentleduck/libs@0.1.13
24
+ - @gentleduck/motion@0.1.15
25
+ - @gentleduck/primitives@0.2.2
26
+ - @gentleduck/variants@0.1.18
27
+ - @gentleduck/vim@0.1.14
28
+
3
29
  ## 0.2.1
4
30
 
5
31
  ### Patch Changes
6
32
 
7
- - ad86755: Fix popover width, update calendar and date-picker examples, and migrate registry packages.
8
- - Updated dependencies [ad86755]
33
+ - ad86755: Migrate all UI components to new duck-primitives, add RTL support, and update component styles.
34
+
35
+ **Features:**
36
+
37
+ - Migrate all registry-ui components to new duck-primitives module
38
+ - Add RTL support with CSS logical properties across components
39
+ - Add AnimVariants for consistent animation behavior
40
+ - Rewrite alert-dialog to use new primitives
41
+ - Rewrite sheet to use new dialog-based primitives
42
+ - Rewrite menubar to use new menubar primitives
43
+ - Switch preview index to next/dynamic SSR entries
44
+
45
+ **Fixes:**
46
+
47
+ - Fix dialog and popover styles for Tailwind CSS v4 compatibility
48
+ - Fix select to manage its own open state
49
+ - Fix popover width and update calendar/date-picker examples
50
+ - Disable SSR for dynamic preview components
51
+
9
52
  - Updated dependencies [ad86755]
10
53
  - @gentleduck/primitives@0.2.1
11
54
  - @gentleduck/hooks@0.1.9
@@ -22,7 +65,7 @@
22
65
 
23
66
  ### Patch Changes
24
67
 
25
- - d46534e: Upgrade recharts peer dependency from v2 to v3.7.0
68
+ - d46534e: Upgrade recharts peer dependency from v2 to v3.7.0 with updated chart component types.
26
69
  - Updated dependencies [36f9364]
27
70
  - @gentleduck/primitives@0.2.0
28
71
 
@@ -59,4 +102,4 @@
59
102
 
60
103
  ### Patch Changes
61
104
 
62
- - df94032: publish for internal use only
105
+ - df94032: Initial public release of styled UI component wrappers for duck-primitives with Tailwind CSS styling and registry infrastructure.
package/package.json CHANGED
@@ -11,23 +11,23 @@
11
11
  "@gentleduck/variants": "workspace:*",
12
12
  "@gentleduck/vim": "workspace:*",
13
13
  "embla-carousel-react": "8.6.0",
14
- "lucide-react": "0.562.0",
14
+ "lucide-react": "0.576.0",
15
15
  "next-themes": "^0.4.6",
16
- "react": "^19.2.3",
16
+ "react": "^19.2.4",
17
17
  "react-day-picker": "^9.8.1",
18
- "react-dom": "^19.2.3",
18
+ "react-dom": "^19.2.4",
19
19
  "react-hook-form": "^7.71.1",
20
- "react-resizable-panels": "^3.0.6",
20
+ "react-resizable-panels": "^4.7.0",
21
21
  "recharts": "^3.7.0",
22
22
  "sonner": "^2.0.7",
23
23
  "tailwindcss": "^4.2.0",
24
24
  "uuidv7": "^1.1.0",
25
25
  "vaul": "1.1.2",
26
- "zod": "4.2.1"
26
+ "zod": "4.3.6"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@gentleduck/typescript-config": "workspace:*",
30
- "@types/react": "19.2.7",
30
+ "@types/react": "19.2.14",
31
31
  "@types/react-dom": "19.2.3",
32
32
  "typescript": "5.9.3"
33
33
  },
@@ -55,5 +55,5 @@
55
55
  "check-types": "tsc -p tsconfig.json --noEmit --pretty false --skipLibCheck"
56
56
  },
57
57
  "type": "module",
58
- "version": "0.2.1"
58
+ "version": "0.2.3"
59
59
  }
@@ -10,10 +10,10 @@ const ResizablePanelGroup = ({
10
10
  className,
11
11
  dir,
12
12
  ...props
13
- }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => {
13
+ }: React.ComponentProps<typeof ResizablePrimitive.Group> & { dir?: Direction }) => {
14
14
  const direction = useDirection(dir as Direction)
15
15
  return (
16
- <ResizablePrimitive.PanelGroup
16
+ <ResizablePrimitive.Group
17
17
  className={cn('flex h-full w-full data-[panel-group-direction=vertical]:flex-col', className)}
18
18
  data-slot="panel-group"
19
19
  dir={direction}
@@ -28,10 +28,10 @@ const ResizableHandle = ({
28
28
  withHandle,
29
29
  className,
30
30
  ...props
31
- }: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
31
+ }: React.ComponentProps<typeof ResizablePrimitive.Separator> & {
32
32
  withHandle?: boolean
33
33
  }) => (
34
- <ResizablePrimitive.PanelResizeHandle
34
+ <ResizablePrimitive.Separator
35
35
  aria-label="Resize panels"
36
36
  className={cn(
37
37
  'relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-hidden focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:translate-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90',
@@ -46,7 +46,7 @@ const ResizableHandle = ({
46
46
  <GripVertical aria-hidden="true" className="h-2.5 w-2.5" />
47
47
  </div>
48
48
  )}
49
- </ResizablePrimitive.PanelResizeHandle>
49
+ </ResizablePrimitive.Separator>
50
50
  )
51
51
 
52
52
  export { ResizablePanelGroup, ResizablePanel, ResizableHandle }