@dinachi/cli 0.3.2 → 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.
Files changed (52) hide show
  1. package/README.md +14 -0
  2. package/dist/index.js +392 -344
  3. package/package.json +5 -5
  4. package/templates/accordion/accordion.tsx +1 -1
  5. package/templates/alert-dialog/alert-dialog.tsx +1 -1
  6. package/templates/autocomplete/autocomplete.tsx +197 -0
  7. package/templates/autocomplete/index.ts +17 -0
  8. package/templates/avatar/avatar.tsx +4 -4
  9. package/templates/checkbox/checkbox.tsx +2 -2
  10. package/templates/checkbox-group/checkbox-group.tsx +2 -2
  11. package/templates/collapsible/collapsible.tsx +4 -4
  12. package/templates/combobox/combobox.tsx +202 -0
  13. package/templates/combobox/index.ts +17 -0
  14. package/templates/context-menu/context-menu.tsx +119 -54
  15. package/templates/dialog/dialog.tsx +1 -1
  16. package/templates/drawer/drawer.tsx +109 -0
  17. package/templates/drawer/index.ts +12 -0
  18. package/templates/field/field.tsx +1 -1
  19. package/templates/fieldset/fieldset.tsx +32 -0
  20. package/templates/fieldset/index.ts +1 -0
  21. package/templates/form/form.tsx +3 -3
  22. package/templates/input/input.tsx +23 -15
  23. package/templates/menu/index.ts +17 -0
  24. package/templates/menu/menu.tsx +282 -0
  25. package/templates/menubar/menubar.tsx +22 -22
  26. package/templates/meter/index.ts +1 -0
  27. package/templates/meter/meter.tsx +64 -0
  28. package/templates/navigation-menu/navigation-menu.tsx +13 -13
  29. package/templates/number-field/index.ts +9 -0
  30. package/templates/number-field/number-field.tsx +114 -0
  31. package/templates/popover/index.ts +12 -0
  32. package/templates/popover/popover.tsx +137 -0
  33. package/templates/preview-card/preview-card.tsx +10 -11
  34. package/templates/progress/index.ts +7 -0
  35. package/templates/progress/progress.tsx +64 -0
  36. package/templates/radio/index.ts +1 -0
  37. package/templates/radio/radio.tsx +39 -0
  38. package/templates/scroll-area/index.ts +8 -0
  39. package/templates/scroll-area/scroll-area.tsx +94 -0
  40. package/templates/select/select.tsx +8 -8
  41. package/templates/separator/index.ts +1 -0
  42. package/templates/separator/separator.tsx +25 -0
  43. package/templates/slider/slider.tsx +10 -10
  44. package/templates/switch/index.ts +1 -0
  45. package/templates/switch/switch.tsx +42 -0
  46. package/templates/tabs/tabs.tsx +6 -6
  47. package/templates/toast/toast.tsx +1 -1
  48. package/templates/toggle/toggle.tsx +2 -2
  49. package/templates/toggle-group/index.ts +1 -0
  50. package/templates/toggle-group/toggle-group.tsx +67 -0
  51. package/templates/toolbar/toolbar.tsx +7 -7
  52. package/templates/tooltip/tooltip.tsx +38 -23
package/README.md CHANGED
@@ -73,24 +73,38 @@ This will:
73
73
 
74
74
  - `accordion` - Collapsible content sections
75
75
  - `alert-dialog` - Modal dialogs for important actions
76
+ - `autocomplete` - Text input with dynamic suggestions
76
77
  - `avatar` - User profile images with fallbacks
77
78
  - `button` - Clickable buttons with variants
78
79
  - `checkbox` - Checkbox inputs
79
80
  - `checkbox-group` - Grouped checkboxes
80
81
  - `collapsible` - Collapsible content panels
82
+ - `combobox` - Input + dropdown selection
81
83
  - `context-menu` - Right-click context menus
82
84
  - `dialog` - Modal dialogs
85
+ - `drawer` - Edge-anchored slide-in panel
83
86
  - `field` - Form field wrapper
87
+ - `fieldset` - Group related form controls
84
88
  - `form` - Form component with validation
85
89
  - `input` - Text input fields
90
+ - `menu` - Button-triggered action menu
86
91
  - `menubar` - Desktop-style menu bars
92
+ - `meter` - Scalar measurement indicator
87
93
  - `navigation-menu` - Navigation menu systems
94
+ - `number-field` - Numeric input with steppers
95
+ - `popover` - Anchored floating panel
88
96
  - `preview-card` - Hover preview cards
97
+ - `progress` - Task completion indicator
98
+ - `radio` - Single-select radio controls
99
+ - `scroll-area` - Custom scroll container
89
100
  - `select` - Dropdown select inputs
101
+ - `separator` - Visual content divider
90
102
  - `slider` - Range slider inputs
103
+ - `switch` - On/off toggle control
91
104
  - `tabs` - Tabbed interfaces
92
105
  - `toast` - Notification toasts
93
106
  - `toggle` - Toggle switches
107
+ - `toggle-group` - Grouped toggles
94
108
  - `toolbar` - Tool button groups
95
109
  - `tooltip` - Hover tooltips
96
110