doodleui-react 0.3.0 → 0.5.0

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,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.0
4
+
5
+ Navigation & layout utilities: `Kbd`, `Spinner`, `Toggle`, `ToggleGroup`, `InputGroup`, `InputOTP`, `ScrollArea`, `Resizable`, `HoverCard`, `ContextMenu`, `NavigationMenu`, `Menubar`, `Sheet`, and `Drawer`.
6
+
7
+ New dependencies: Radix hover-card, context-menu, navigation-menu, menubar, toggle, toggle-group, scroll-area, plus `react-resizable-panels` and `input-otp`. `Sheet` and `Drawer` share an internal sliding-panel engine (Radix Dialog + framer-motion). `Spinner` loops continuously unless reduced motion is active.
8
+
9
+ ## 0.4.0
10
+
11
+ Form & overlay essentials: `Label`, `Collapsible`, `Popover`, `DropdownMenu`, `Dialog`, `AlertDialog`, `Command`, and `Combobox`.
12
+
13
+ `Dialog` is a lighter, fully composable sibling to `Modal` (no forced width/shadow/close button). `AlertDialog` adds the confirm/destructive variant on top of the same shape. `Command` is powered by `cmdk` (new dependency) and `Combobox` composes `Popover` + `Command` behind a sketchy trigger, matching shadcn's own approach since Radix has no dedicated Combobox primitive. All eight ship with the same `animate`/`roughness`/`seed`/`sketchColor` props as the rest of the library.
14
+
3
15
  ## 0.3.0
4
16
 
5
17
  Sketch animations are now on across the library, not just Button.
package/README.md CHANGED
@@ -59,11 +59,11 @@ Every component accepts:
59
59
 
60
60
  ## Components
61
61
 
62
- Button, Input, Textarea, Checkbox, Radio, Select, Switch, Slider, Card, Badge, Alert, Modal, Divider, Progress, Tooltip, Tabs, Accordion, Table, Toast, Avatar, Pagination, Breadcrumb, Skeleton, Stepper, plus the `RoughSvg` primitive.
62
+ Button, Input, Textarea, Checkbox, Radio, Select, Switch, Slider, Card, Badge, Alert, Modal, Divider, Progress, Tooltip, Tabs, Accordion, Table, Toast, Avatar, Pagination, Breadcrumb, Skeleton, Stepper, Label, Collapsible, Popover, DropdownMenu, Dialog, AlertDialog, Command, Combobox, Kbd, Spinner, Toggle, ToggleGroup, InputGroup, InputOTP, ScrollArea, Resizable, HoverCard, ContextMenu, NavigationMenu, Menubar, Sheet, Drawer, plus the `RoughSvg` primitive.
63
63
 
64
64
  Most of those sketch in on mount (draw-in) and re-ink on interaction. Default on; pass `animate={false}` to skip. Slider, Accordion, Avatar, Pagination, Breadcrumb, Skeleton, and Stepper stay static for now.
65
65
 
66
- Modal, Tooltip, Checkbox, Radio, Select, Switch, Tabs, Accordion, Slider, Toast, and Avatar sit on Radix primitives.
66
+ Modal, Tooltip, Checkbox, Radio, Select, Switch, Tabs, Accordion, Slider, Toast, Avatar, Popover, DropdownMenu, Dialog, AlertDialog, Collapsible, Label, HoverCard, ContextMenu, NavigationMenu, Menubar, Sheet, and Drawer sit on Radix primitives; Command and Combobox add `cmdk` on top for search/filtering. `InputOTP` uses `input-otp`; `Resizable` uses `react-resizable-panels`.
67
67
 
68
68
  ## Docs
69
69