@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.
- package/README.md +14 -0
- package/dist/index.js +392 -344
- package/package.json +5 -5
- package/templates/accordion/accordion.tsx +1 -1
- package/templates/alert-dialog/alert-dialog.tsx +1 -1
- package/templates/autocomplete/autocomplete.tsx +197 -0
- package/templates/autocomplete/index.ts +17 -0
- package/templates/avatar/avatar.tsx +4 -4
- package/templates/checkbox/checkbox.tsx +2 -2
- package/templates/checkbox-group/checkbox-group.tsx +2 -2
- package/templates/collapsible/collapsible.tsx +4 -4
- package/templates/combobox/combobox.tsx +202 -0
- package/templates/combobox/index.ts +17 -0
- package/templates/context-menu/context-menu.tsx +119 -54
- package/templates/dialog/dialog.tsx +1 -1
- package/templates/drawer/drawer.tsx +109 -0
- package/templates/drawer/index.ts +12 -0
- package/templates/field/field.tsx +1 -1
- package/templates/fieldset/fieldset.tsx +32 -0
- package/templates/fieldset/index.ts +1 -0
- package/templates/form/form.tsx +3 -3
- package/templates/input/input.tsx +23 -15
- package/templates/menu/index.ts +17 -0
- package/templates/menu/menu.tsx +282 -0
- package/templates/menubar/menubar.tsx +22 -22
- package/templates/meter/index.ts +1 -0
- package/templates/meter/meter.tsx +64 -0
- package/templates/navigation-menu/navigation-menu.tsx +13 -13
- package/templates/number-field/index.ts +9 -0
- package/templates/number-field/number-field.tsx +114 -0
- package/templates/popover/index.ts +12 -0
- package/templates/popover/popover.tsx +137 -0
- package/templates/preview-card/preview-card.tsx +10 -11
- package/templates/progress/index.ts +7 -0
- package/templates/progress/progress.tsx +64 -0
- package/templates/radio/index.ts +1 -0
- package/templates/radio/radio.tsx +39 -0
- package/templates/scroll-area/index.ts +8 -0
- package/templates/scroll-area/scroll-area.tsx +94 -0
- package/templates/select/select.tsx +8 -8
- package/templates/separator/index.ts +1 -0
- package/templates/separator/separator.tsx +25 -0
- package/templates/slider/slider.tsx +10 -10
- package/templates/switch/index.ts +1 -0
- package/templates/switch/switch.tsx +42 -0
- package/templates/tabs/tabs.tsx +6 -6
- package/templates/toast/toast.tsx +1 -1
- package/templates/toggle/toggle.tsx +2 -2
- package/templates/toggle-group/index.ts +1 -0
- package/templates/toggle-group/toggle-group.tsx +67 -0
- package/templates/toolbar/toolbar.tsx +7 -7
- 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
|
|