vxui-react 1.2.6 → 1.2.8
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.en.md +10 -6
- package/README.md +10 -6
- package/dist/index.cjs +28 -28
- package/dist/index.js +1301 -1289
- package/dist/src/components/Dialog.d.ts +10 -2
- package/dist/src/components/Select.d.ts +19 -4
- package/dist/src/lib/index.d.ts +3 -4
- package/dist/vxui-react.css +1 -1
- package/package.json +1 -1
- package/dist/src/components/Combobox.d.ts +0 -28
- /package/dist/src/components/__tests__/{Combobox.test.d.ts → DialogFormControls.test.d.ts} +0 -0
package/README.en.md
CHANGED
|
@@ -92,11 +92,15 @@ export function ProjectForm() {
|
|
|
92
92
|
<form style={{ display: 'grid', gap: 16 }}>
|
|
93
93
|
<Input label="Project name" placeholder="Northwind migration" />
|
|
94
94
|
|
|
95
|
-
<Select
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
95
|
+
<Select
|
|
96
|
+
label="Release track"
|
|
97
|
+
defaultValue="stable"
|
|
98
|
+
options={[
|
|
99
|
+
{ value: 'stable', label: 'Stable' },
|
|
100
|
+
{ value: 'preview', label: 'Preview' },
|
|
101
|
+
{ value: 'internal', label: 'Internal' },
|
|
102
|
+
]}
|
|
103
|
+
/>
|
|
100
104
|
|
|
101
105
|
<Textarea
|
|
102
106
|
label="Summary"
|
|
@@ -177,7 +181,7 @@ Use `useTheme()` at runtime to read the current theme or call `setTheme('ocean')
|
|
|
177
181
|
## What's Included
|
|
178
182
|
|
|
179
183
|
- **Layout**: AppShell, Card, Separator, Breadcrumb, Pagination, Resizable, ScrollArea
|
|
180
|
-
- **Forms**: Input, Select, Checkbox, Radio, Textarea, Slider, Switch, NumberInput, TagInput, ColorPicker, DatePicker, FileUpload, Form, Rating
|
|
184
|
+
- **Forms**: Input, Select, Checkbox, Radio, Textarea, Slider, Switch, NumberInput, TagInput, ColorPicker, DatePicker, FileUpload, Form, Rating
|
|
181
185
|
- **Feedback**: Alert, AlertDialog, Toast, Progress, Skeleton, Spinner, Stepper, Timeline, EmptyState
|
|
182
186
|
- **Overlay**: Dialog, Sheet, Popover, DropdownMenu, ContextMenu, Tooltip, HoverCard, CommandPalette, Menubar, NavigationMenu
|
|
183
187
|
- **Data Display**: Avatar, Table, Badge, Tabs, Accordion, TreeView, Carousel, Calendar
|
package/README.md
CHANGED
|
@@ -94,11 +94,15 @@ export function ProjectForm() {
|
|
|
94
94
|
<form style={{ display: 'grid', gap: 16 }}>
|
|
95
95
|
<Input label="Project name" placeholder="Northwind migration" />
|
|
96
96
|
|
|
97
|
-
<Select
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
97
|
+
<Select
|
|
98
|
+
label="Release track"
|
|
99
|
+
defaultValue="stable"
|
|
100
|
+
options={[
|
|
101
|
+
{ value: 'stable', label: 'Stable' },
|
|
102
|
+
{ value: 'preview', label: 'Preview' },
|
|
103
|
+
{ value: 'internal', label: 'Internal' },
|
|
104
|
+
]}
|
|
105
|
+
/>
|
|
102
106
|
|
|
103
107
|
<Textarea
|
|
104
108
|
label="Summary"
|
|
@@ -179,7 +183,7 @@ export function Root({ children }: { children: React.ReactNode }) {
|
|
|
179
183
|
## 当前包含
|
|
180
184
|
|
|
181
185
|
- **Layout**: AppShell、Card、Separator、Breadcrumb、Pagination、Resizable、ScrollArea
|
|
182
|
-
- **Forms**: Input、Select、Checkbox、Radio、Textarea、Slider、Switch、NumberInput、TagInput、ColorPicker、DatePicker、FileUpload、Form、Rating
|
|
186
|
+
- **Forms**: Input、Select、Checkbox、Radio、Textarea、Slider、Switch、NumberInput、TagInput、ColorPicker、DatePicker、FileUpload、Form、Rating
|
|
183
187
|
- **Feedback**: Alert、AlertDialog、Toast、Progress、Skeleton、Spinner、Stepper、Timeline、EmptyState
|
|
184
188
|
- **Overlay**: Dialog、Sheet、Popover、DropdownMenu、ContextMenu、Tooltip、HoverCard、CommandPalette、Menubar、NavigationMenu
|
|
185
189
|
- **Data Display**: Avatar、Table、Badge、Tabs、Accordion、TreeView、Carousel、Calendar
|