@sarunyu/system-one 4.3.0 → 4.3.1
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 +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,12 +60,14 @@ ships no `Page`/`Section`/`Stack` primitives — use whatever layout looks right
|
|
|
60
60
|
| `Button` | Action button — 5 variants, 10 sizes |
|
|
61
61
|
| `Input` / `TextArea` / `SearchInput` | Text input, multiline, search field |
|
|
62
62
|
| `Dropdown` / `DropdownMultiple` / `OptionList` | Select controls |
|
|
63
|
-
| `Checkbox` / `Radio` |
|
|
63
|
+
| `Checkbox` / `Toggle` / `Radio` | Checkbox, boolean switch (on/off), single-choice |
|
|
64
64
|
| `DateInput` / `TimeInput` | Date and time pickers |
|
|
65
65
|
| `Tag` / `StatusTag` / `Chip` | Labels, workflow states, filter chips |
|
|
66
66
|
| `Tab` / `TabGroup` | Tabbed navigation |
|
|
67
67
|
| `Card` | Event/content card (desktop / tablet / mobile variants) |
|
|
68
68
|
| `Table` | Data tables (`TableRow` / `TableHeaderCell` / `TableCell`) |
|
|
69
|
+
| `Modal` | Centered overlay — dialog / content / alert variants |
|
|
70
|
+
| `BottomSheet` | Mobile-first bottom sheet (Vaul-based, with backdrop) |
|
|
69
71
|
|
|
70
72
|
Full prop reference: [`llms.txt`](./llms.txt).
|
|
71
73
|
|
|
@@ -120,6 +122,8 @@ import type {
|
|
|
120
122
|
ButtonVariant, ButtonSize,
|
|
121
123
|
TagVariant, ChipSize,
|
|
122
124
|
InputProps, DropdownOption,
|
|
125
|
+
ToggleSize, ToggleProps,
|
|
126
|
+
ModalVariant, ModalActionLayout,
|
|
123
127
|
} from "@sarunyu/system-one";
|
|
124
128
|
```
|
|
125
129
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sarunyu/system-one",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A production-ready React design system built for AI-powered web generation tools (Figma Make, Lovable, V0). Tailwind CSS v4 + CSS custom properties for full theming support.",
|
|
6
6
|
"keywords": [
|