@ark-ui/solid 3.8.0 → 3.10.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/dist/cjs/index.js +200 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +179 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/source/components/checkbox/checkbox-group.jsx +1 -0
- package/dist/source/components/checkbox/use-checkbox-group.js +2 -0
- package/dist/source/components/editable/editable-root.jsx +3 -2
- package/dist/source/components/editable/index.js +1 -0
- package/dist/source/components/editable/use-editable.js +2 -0
- package/dist/source/components/index.js +1 -0
- package/dist/source/components/select/select-hidden-select.jsx +1 -1
- package/dist/source/components/steps/index.js +19 -0
- package/dist/source/components/steps/steps-completed-content.jsx +8 -0
- package/dist/source/components/steps/steps-content.jsx +10 -0
- package/dist/source/components/steps/steps-context.jsx +5 -0
- package/dist/source/components/steps/steps-indicator.jsx +10 -0
- package/dist/source/components/steps/steps-item-context.jsx +5 -0
- package/dist/source/components/steps/steps-item.jsx +18 -0
- package/dist/source/components/steps/steps-list.jsx +8 -0
- package/dist/source/components/steps/steps-next-trigger.jsx +8 -0
- package/dist/source/components/steps/steps-prev-trigger.jsx +8 -0
- package/dist/source/components/steps/steps-progress.jsx +8 -0
- package/dist/source/components/steps/steps-root-provider.jsx +11 -0
- package/dist/source/components/steps/steps-root.jsx +23 -0
- package/dist/source/components/steps/steps-separator.jsx +10 -0
- package/dist/source/components/steps/steps-trigger.jsx +10 -0
- package/dist/source/components/steps/steps.anatomy.js +1 -0
- package/dist/source/components/steps/steps.js +14 -0
- package/dist/source/components/steps/use-steps-context.js +5 -0
- package/dist/source/components/steps/use-steps-item-context.js +5 -0
- package/dist/source/components/steps/use-steps-item-props-context.js +5 -0
- package/dist/source/components/steps/use-steps.js +18 -0
- package/dist/types/components/checkbox/use-checkbox-group.d.ts +6 -0
- package/dist/types/components/editable/index.d.ts +3 -0
- package/dist/types/components/editable/use-editable.d.ts +6 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/steps/index.d.ts +20 -0
- package/dist/types/components/steps/steps-completed-content.d.ts +6 -0
- package/dist/types/components/steps/steps-content.d.ts +7 -0
- package/dist/types/components/steps/steps-context.d.ts +6 -0
- package/dist/types/components/steps/steps-indicator.d.ts +6 -0
- package/dist/types/components/steps/steps-item-context.d.ts +9 -0
- package/dist/types/components/steps/steps-item.d.ts +7 -0
- package/dist/types/components/steps/steps-list.d.ts +6 -0
- package/dist/types/components/steps/steps-next-trigger.d.ts +6 -0
- package/dist/types/components/steps/steps-prev-trigger.d.ts +6 -0
- package/dist/types/components/steps/steps-progress.d.ts +6 -0
- package/dist/types/components/steps/steps-root-provider.d.ts +11 -0
- package/dist/types/components/steps/steps-root.d.ts +7 -0
- package/dist/types/components/steps/steps-separator.d.ts +6 -0
- package/dist/types/components/steps/steps-trigger.d.ts +6 -0
- package/dist/types/components/steps/steps.anatomy.d.ts +1 -0
- package/dist/types/components/steps/steps.d.ts +15 -0
- package/dist/types/components/steps/use-steps-context.d.ts +4 -0
- package/dist/types/components/steps/use-steps-item-context.d.ts +5 -0
- package/dist/types/components/steps/use-steps-item-props-context.d.ts +4 -0
- package/dist/types/components/steps/use-steps.d.ts +13 -0
- package/package.json +49 -49
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/solid",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.0",
|
|
4
4
|
"description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accordion",
|
|
@@ -85,49 +85,49 @@
|
|
|
85
85
|
"sideEffects": false,
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"@internationalized/date": "3.5.5",
|
|
88
|
-
"@zag-js/accordion": "0.
|
|
89
|
-
"@zag-js/anatomy": "0.
|
|
90
|
-
"@zag-js/avatar": "0.
|
|
91
|
-
"@zag-js/carousel": "0.
|
|
92
|
-
"@zag-js/checkbox": "0.
|
|
93
|
-
"@zag-js/clipboard": "0.
|
|
94
|
-
"@zag-js/collapsible": "0.
|
|
95
|
-
"@zag-js/color-picker": "0.
|
|
96
|
-
"@zag-js/combobox": "0.
|
|
97
|
-
"@zag-js/date-picker": "0.
|
|
98
|
-
"@zag-js/dialog": "0.
|
|
99
|
-
"@zag-js/dom-query": "0.
|
|
100
|
-
"@zag-js/editable": "0.
|
|
101
|
-
"@zag-js/file-upload": "0.
|
|
102
|
-
"@zag-js/hover-card": "0.
|
|
103
|
-
"@zag-js/file-utils": "0.
|
|
104
|
-
"@zag-js/i18n-utils": "0.
|
|
105
|
-
"@zag-js/menu": "0.
|
|
106
|
-
"@zag-js/number-input": "0.
|
|
107
|
-
"@zag-js/pagination": "0.
|
|
108
|
-
"@zag-js/pin-input": "0.
|
|
109
|
-
"@zag-js/popover": "0.
|
|
110
|
-
"@zag-js/presence": "0.
|
|
111
|
-
"@zag-js/progress": "0.
|
|
112
|
-
"@zag-js/qr-code": "0.
|
|
113
|
-
"@zag-js/radio-group": "0.
|
|
114
|
-
"@zag-js/rating-group": "0.
|
|
115
|
-
"@zag-js/select": "0.
|
|
116
|
-
"@zag-js/signature-pad": "0.
|
|
117
|
-
"@zag-js/slider": "0.
|
|
118
|
-
"@zag-js/solid": "0.
|
|
119
|
-
"@zag-js/splitter": "0.
|
|
120
|
-
"@zag-js/steps": "0.
|
|
121
|
-
"@zag-js/switch": "0.
|
|
122
|
-
"@zag-js/tabs": "0.
|
|
123
|
-
"@zag-js/tags-input": "0.
|
|
124
|
-
"@zag-js/timer": "0.
|
|
125
|
-
"@zag-js/time-picker": "0.
|
|
126
|
-
"@zag-js/toast": "0.
|
|
127
|
-
"@zag-js/toggle-group": "0.
|
|
128
|
-
"@zag-js/tooltip": "0.
|
|
129
|
-
"@zag-js/tree-view": "0.
|
|
130
|
-
"@zag-js/types": "0.
|
|
88
|
+
"@zag-js/accordion": "0.65.1",
|
|
89
|
+
"@zag-js/anatomy": "0.65.1",
|
|
90
|
+
"@zag-js/avatar": "0.65.1",
|
|
91
|
+
"@zag-js/carousel": "0.65.1",
|
|
92
|
+
"@zag-js/checkbox": "0.65.1",
|
|
93
|
+
"@zag-js/clipboard": "0.65.1",
|
|
94
|
+
"@zag-js/collapsible": "0.65.1",
|
|
95
|
+
"@zag-js/color-picker": "0.65.1",
|
|
96
|
+
"@zag-js/combobox": "0.65.1",
|
|
97
|
+
"@zag-js/date-picker": "0.65.1",
|
|
98
|
+
"@zag-js/dialog": "0.65.1",
|
|
99
|
+
"@zag-js/dom-query": "0.65.1",
|
|
100
|
+
"@zag-js/editable": "0.65.1",
|
|
101
|
+
"@zag-js/file-upload": "0.65.1",
|
|
102
|
+
"@zag-js/hover-card": "0.65.1",
|
|
103
|
+
"@zag-js/file-utils": "0.65.1",
|
|
104
|
+
"@zag-js/i18n-utils": "0.65.1",
|
|
105
|
+
"@zag-js/menu": "0.65.1",
|
|
106
|
+
"@zag-js/number-input": "0.65.1",
|
|
107
|
+
"@zag-js/pagination": "0.65.1",
|
|
108
|
+
"@zag-js/pin-input": "0.65.1",
|
|
109
|
+
"@zag-js/popover": "0.65.1",
|
|
110
|
+
"@zag-js/presence": "0.65.1",
|
|
111
|
+
"@zag-js/progress": "0.65.1",
|
|
112
|
+
"@zag-js/qr-code": "0.65.1",
|
|
113
|
+
"@zag-js/radio-group": "0.65.1",
|
|
114
|
+
"@zag-js/rating-group": "0.65.1",
|
|
115
|
+
"@zag-js/select": "0.65.1",
|
|
116
|
+
"@zag-js/signature-pad": "0.65.1",
|
|
117
|
+
"@zag-js/slider": "0.65.1",
|
|
118
|
+
"@zag-js/solid": "0.65.1",
|
|
119
|
+
"@zag-js/splitter": "0.65.1",
|
|
120
|
+
"@zag-js/steps": "0.65.1",
|
|
121
|
+
"@zag-js/switch": "0.65.1",
|
|
122
|
+
"@zag-js/tabs": "0.65.1",
|
|
123
|
+
"@zag-js/tags-input": "0.65.1",
|
|
124
|
+
"@zag-js/timer": "0.65.1",
|
|
125
|
+
"@zag-js/time-picker": "0.65.1",
|
|
126
|
+
"@zag-js/toast": "0.65.1",
|
|
127
|
+
"@zag-js/toggle-group": "0.65.1",
|
|
128
|
+
"@zag-js/tooltip": "0.65.1",
|
|
129
|
+
"@zag-js/tree-view": "0.65.1",
|
|
130
|
+
"@zag-js/types": "0.65.1"
|
|
131
131
|
},
|
|
132
132
|
"devDependencies": {
|
|
133
133
|
"@biomejs/biome": "1.8.3",
|
|
@@ -141,18 +141,18 @@
|
|
|
141
141
|
"@testing-library/user-event": "14.5.2",
|
|
142
142
|
"@types/jsdom": "21.1.7",
|
|
143
143
|
"globby": "14.0.2",
|
|
144
|
-
"jsdom": "24.1.
|
|
145
|
-
"lucide-solid": "0.
|
|
144
|
+
"jsdom": "24.1.3",
|
|
145
|
+
"lucide-solid": "0.438.0",
|
|
146
146
|
"release-it": "17.6.0",
|
|
147
147
|
"resize-observer-polyfill": "1.5.1",
|
|
148
|
-
"rollup": "4.21.
|
|
148
|
+
"rollup": "4.21.2",
|
|
149
149
|
"rollup-preset-solid": "2.0.1",
|
|
150
|
-
"solid-js": "1.8.
|
|
150
|
+
"solid-js": "1.8.22",
|
|
151
151
|
"storybook": "8.2.9",
|
|
152
152
|
"storybook-solidjs": "1.0.0-beta.2",
|
|
153
153
|
"storybook-solidjs-vite": "1.0.0-beta.2",
|
|
154
154
|
"typescript": "5.5.4",
|
|
155
|
-
"vite": "5.4.
|
|
155
|
+
"vite": "5.4.2",
|
|
156
156
|
"vite-plugin-solid": "2.10.2",
|
|
157
157
|
"vitest": "2.0.5"
|
|
158
158
|
},
|