@ark-ui/react 5.38.2 → 5.39.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/components/anatomy.cjs +7 -0
- package/dist/components/anatomy.d.cts +1 -0
- package/dist/components/anatomy.d.ts +1 -0
- package/dist/components/anatomy.js +2 -1
- package/dist/components/collapsible/split-collapsible-props.d.cts +1 -1
- package/dist/components/collapsible/split-collapsible-props.d.ts +1 -1
- package/dist/components/factory.cjs +9 -1
- package/dist/components/factory.js +9 -1
- package/dist/components/field/use-field.cjs +1 -1
- package/dist/components/field/use-field.js +2 -2
- package/dist/components/fieldset/use-fieldset.js +1 -1
- package/dist/components/index.cjs +38 -0
- package/dist/components/index.d.cts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +15 -1
- package/dist/components/presence/split-presence-props.cjs +1 -0
- package/dist/components/presence/split-presence-props.d.cts +1 -1
- package/dist/components/presence/split-presence-props.d.ts +1 -1
- package/dist/components/presence/split-presence-props.js +1 -0
- package/dist/components/presence/use-presence.cjs +1 -0
- package/dist/components/presence/use-presence.js +1 -0
- package/dist/components/toc/index.cjs +39 -0
- package/dist/components/toc/index.d.cts +15 -0
- package/dist/components/toc/index.d.ts +15 -0
- package/dist/components/toc/index.js +15 -0
- package/dist/components/toc/toc-content.cjs +13 -0
- package/dist/components/toc/toc-content.d.cts +7 -0
- package/dist/components/toc/toc-content.d.ts +7 -0
- package/dist/components/toc/toc-content.js +13 -0
- package/dist/components/toc/toc-context.cjs +5 -0
- package/dist/components/toc/toc-context.d.cts +6 -0
- package/dist/components/toc/toc-context.d.ts +6 -0
- package/dist/components/toc/toc-context.js +5 -0
- package/dist/components/toc/toc-indicator.cjs +17 -0
- package/dist/components/toc/toc-indicator.d.cts +7 -0
- package/dist/components/toc/toc-indicator.d.ts +7 -0
- package/dist/components/toc/toc-indicator.js +17 -0
- package/dist/components/toc/toc-item.cjs +24 -0
- package/dist/components/toc/toc-item.d.cts +8 -0
- package/dist/components/toc/toc-item.d.ts +8 -0
- package/dist/components/toc/toc-item.js +24 -0
- package/dist/components/toc/toc-link.cjs +19 -0
- package/dist/components/toc/toc-link.d.cts +7 -0
- package/dist/components/toc/toc-link.d.ts +7 -0
- package/dist/components/toc/toc-link.js +19 -0
- package/dist/components/toc/toc-list.cjs +17 -0
- package/dist/components/toc/toc-list.d.cts +7 -0
- package/dist/components/toc/toc-list.d.ts +7 -0
- package/dist/components/toc/toc-list.js +17 -0
- package/dist/components/toc/toc-nav.cjs +19 -0
- package/dist/components/toc/toc-nav.d.cts +8 -0
- package/dist/components/toc/toc-nav.d.ts +8 -0
- package/dist/components/toc/toc-nav.js +19 -0
- package/dist/components/toc/toc-root-provider.cjs +20 -0
- package/dist/components/toc/toc-root-provider.d.cts +13 -0
- package/dist/components/toc/toc-root-provider.d.ts +13 -0
- package/dist/components/toc/toc-root-provider.js +20 -0
- package/dist/components/toc/toc-root.cjs +36 -0
- package/dist/components/toc/toc-root.d.cts +9 -0
- package/dist/components/toc/toc-root.d.ts +9 -0
- package/dist/components/toc/toc-root.js +36 -0
- package/dist/components/toc/toc-title.cjs +17 -0
- package/dist/components/toc/toc-title.d.cts +7 -0
- package/dist/components/toc/toc-title.d.ts +7 -0
- package/dist/components/toc/toc-title.js +17 -0
- package/dist/components/toc/toc.anatomy.d.cts +1 -0
- package/dist/components/toc/toc.anatomy.d.ts +1 -0
- package/dist/components/toc/toc.anatomy.js +2 -0
- package/dist/components/toc/toc.cjs +41 -0
- package/dist/components/toc/toc.d.cts +11 -0
- package/dist/components/toc/toc.d.ts +11 -0
- package/dist/components/toc/toc.js +26 -0
- package/dist/components/toc/use-toc-context.cjs +9 -0
- package/dist/components/toc/use-toc-context.d.cts +5 -0
- package/dist/components/toc/use-toc-context.d.ts +5 -0
- package/dist/components/toc/use-toc-context.js +9 -0
- package/dist/components/toc/use-toc-item-props-context.cjs +9 -0
- package/dist/components/toc/use-toc-item-props-context.d.cts +5 -0
- package/dist/components/toc/use-toc-item-props-context.d.ts +5 -0
- package/dist/components/toc/use-toc-item-props-context.js +9 -0
- package/dist/components/toc/use-toc.cjs +24 -0
- package/dist/components/toc/use-toc.d.cts +8 -0
- package/dist/components/toc/use-toc.d.ts +8 -0
- package/dist/components/toc/use-toc.js +22 -0
- package/dist/index.cjs +106 -0
- package/dist/index.js +26 -1
- package/dist/providers/hotkeys/index.cjs +56 -0
- package/dist/providers/hotkeys/index.d.cts +11 -0
- package/dist/providers/hotkeys/index.d.ts +11 -0
- package/dist/providers/hotkeys/index.js +11 -0
- package/dist/providers/hotkeys/use-format-hotkey.cjs +14 -0
- package/dist/providers/hotkeys/use-format-hotkey.d.cts +3 -0
- package/dist/providers/hotkeys/use-format-hotkey.d.ts +3 -0
- package/dist/providers/hotkeys/use-format-hotkey.js +14 -0
- package/dist/providers/hotkeys/use-hotkey-recorder.cjs +58 -0
- package/dist/providers/hotkeys/use-hotkey-recorder.d.cts +30 -0
- package/dist/providers/hotkeys/use-hotkey-recorder.d.ts +30 -0
- package/dist/providers/hotkeys/use-hotkey-recorder.js +58 -0
- package/dist/providers/hotkeys/use-hotkey-registrations.cjs +12 -0
- package/dist/providers/hotkeys/use-hotkey-registrations.d.cts +3 -0
- package/dist/providers/hotkeys/use-hotkey-registrations.d.ts +3 -0
- package/dist/providers/hotkeys/use-hotkey-registrations.js +12 -0
- package/dist/providers/hotkeys/use-hotkey-store.cjs +23 -0
- package/dist/providers/hotkeys/use-hotkey-store.d.cts +12 -0
- package/dist/providers/hotkeys/use-hotkey-store.d.ts +12 -0
- package/dist/providers/hotkeys/use-hotkey-store.js +23 -0
- package/dist/providers/hotkeys/use-hotkey.cjs +12 -0
- package/dist/providers/hotkeys/use-hotkey.d.cts +4 -0
- package/dist/providers/hotkeys/use-hotkey.d.ts +4 -0
- package/dist/providers/hotkeys/use-hotkey.js +12 -0
- package/dist/providers/hotkeys/use-hotkeys.cjs +69 -0
- package/dist/providers/hotkeys/use-hotkeys.d.cts +21 -0
- package/dist/providers/hotkeys/use-hotkeys.d.ts +21 -0
- package/dist/providers/hotkeys/use-hotkeys.js +69 -0
- package/dist/providers/hotkeys/use-is-key-pressed.cjs +13 -0
- package/dist/providers/hotkeys/use-is-key-pressed.d.cts +8 -0
- package/dist/providers/hotkeys/use-is-key-pressed.d.ts +8 -0
- package/dist/providers/hotkeys/use-is-key-pressed.js +13 -0
- package/dist/providers/hotkeys/use-platform.cjs +18 -0
- package/dist/providers/hotkeys/use-platform.d.cts +2 -0
- package/dist/providers/hotkeys/use-platform.d.ts +2 -0
- package/dist/providers/hotkeys/use-platform.js +18 -0
- package/dist/providers/hotkeys/use-pressed-keys.cjs +12 -0
- package/dist/providers/hotkeys/use-pressed-keys.d.cts +2 -0
- package/dist/providers/hotkeys/use-pressed-keys.d.ts +2 -0
- package/dist/providers/hotkeys/use-pressed-keys.js +12 -0
- package/dist/providers/hotkeys/use-store-snapshot.cjs +23 -0
- package/dist/providers/hotkeys/use-store-snapshot.d.cts +2 -0
- package/dist/providers/hotkeys/use-store-snapshot.d.ts +2 -0
- package/dist/providers/hotkeys/use-store-snapshot.js +23 -0
- package/dist/providers/index.cjs +55 -0
- package/dist/providers/index.d.cts +1 -0
- package/dist/providers/index.d.ts +1 -0
- package/dist/providers/index.js +11 -1
- package/dist/utils/attr.d.cts +1 -0
- package/dist/utils/attr.d.ts +1 -0
- package/dist/utils/attr.js +2 -0
- package/dist/utils/index.cjs +13 -0
- package/dist/utils/index.d.cts +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +2 -1
- package/package.json +71 -68
package/dist/providers/index.cjs
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
2
|
const require_use_environment_context = require("./environment/use-environment-context.cjs");
|
|
3
3
|
const require_environment_provider = require("./environment/environment-provider.cjs");
|
|
4
|
+
const require_use_platform = require("./hotkeys/use-platform.cjs");
|
|
5
|
+
const require_use_format_hotkey = require("./hotkeys/use-format-hotkey.cjs");
|
|
6
|
+
const require_use_hotkey_store = require("./hotkeys/use-hotkey-store.cjs");
|
|
7
|
+
const require_use_hotkeys = require("./hotkeys/use-hotkeys.cjs");
|
|
8
|
+
const require_use_hotkey = require("./hotkeys/use-hotkey.cjs");
|
|
9
|
+
const require_use_hotkey_recorder = require("./hotkeys/use-hotkey-recorder.cjs");
|
|
10
|
+
const require_use_hotkey_registrations = require("./hotkeys/use-hotkey-registrations.cjs");
|
|
11
|
+
const require_use_is_key_pressed = require("./hotkeys/use-is-key-pressed.cjs");
|
|
12
|
+
const require_use_pressed_keys = require("./hotkeys/use-pressed-keys.cjs");
|
|
4
13
|
const require_use_focus_visible = require("./interaction/use-focus-visible.cjs");
|
|
5
14
|
const require_use_interaction_modality = require("./interaction/use-interaction-modality.cjs");
|
|
6
15
|
const require_use_locale_context = require("./locale/use-locale-context.cjs");
|
|
@@ -8,12 +17,58 @@ const require_locale_provider = require("./locale/locale-provider.cjs");
|
|
|
8
17
|
const require_use_collator = require("./locale/use-collator.cjs");
|
|
9
18
|
const require_use_date_formatter = require("./locale/use-date-formatter.cjs");
|
|
10
19
|
const require_use_filter = require("./locale/use-filter.cjs");
|
|
20
|
+
let _zag_js_hotkeys = require("@zag-js/hotkeys");
|
|
11
21
|
exports.EnvironmentProvider = require_environment_provider.EnvironmentProvider;
|
|
12
22
|
exports.LocaleProvider = require_locale_provider.LocaleProvider;
|
|
23
|
+
Object.defineProperty(exports, "createHotkeyStore", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function() {
|
|
26
|
+
return _zag_js_hotkeys.createHotkeyStore;
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
Object.defineProperty(exports, "formatHotkey", {
|
|
30
|
+
enumerable: true,
|
|
31
|
+
get: function() {
|
|
32
|
+
return _zag_js_hotkeys.formatHotkey;
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "isHotKey", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function() {
|
|
38
|
+
return _zag_js_hotkeys.isHotKey;
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
Object.defineProperty(exports, "isHotkeyEqual", {
|
|
42
|
+
enumerable: true,
|
|
43
|
+
get: function() {
|
|
44
|
+
return _zag_js_hotkeys.isHotkeyEqual;
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "parseHotkey", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function() {
|
|
50
|
+
return _zag_js_hotkeys.parseHotkey;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
13
53
|
exports.useCollator = require_use_collator.useCollator;
|
|
14
54
|
exports.useDateFormatter = require_use_date_formatter.useDateFormatter;
|
|
15
55
|
exports.useEnvironmentContext = require_use_environment_context.useEnvironmentContext;
|
|
16
56
|
exports.useFilter = require_use_filter.useFilter;
|
|
17
57
|
exports.useFocusVisible = require_use_focus_visible.useFocusVisible;
|
|
58
|
+
exports.useFormatHotkey = require_use_format_hotkey.useFormatHotkey;
|
|
59
|
+
exports.useHotkey = require_use_hotkey.useHotkey;
|
|
60
|
+
exports.useHotkeyRecorder = require_use_hotkey_recorder.useHotkeyRecorder;
|
|
61
|
+
exports.useHotkeyRegistrations = require_use_hotkey_registrations.useHotkeyRegistrations;
|
|
62
|
+
exports.useHotkeyStore = require_use_hotkey_store.useHotkeyStore;
|
|
63
|
+
exports.useHotkeys = require_use_hotkeys.useHotkeys;
|
|
18
64
|
exports.useInteractionModality = require_use_interaction_modality.useInteractionModality;
|
|
65
|
+
exports.useIsKeyPressed = require_use_is_key_pressed.useIsKeyPressed;
|
|
19
66
|
exports.useLocaleContext = require_use_locale_context.useLocaleContext;
|
|
67
|
+
exports.usePlatform = require_use_platform.usePlatform;
|
|
68
|
+
exports.usePressedKeys = require_use_pressed_keys.usePressedKeys;
|
|
69
|
+
Object.defineProperty(exports, "validateHotkey", {
|
|
70
|
+
enumerable: true,
|
|
71
|
+
get: function() {
|
|
72
|
+
return _zag_js_hotkeys.validateHotkey;
|
|
73
|
+
}
|
|
74
|
+
});
|
package/dist/providers/index.js
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { useEnvironmentContext } from "./environment/use-environment-context.js";
|
|
2
2
|
import { EnvironmentProvider } from "./environment/environment-provider.js";
|
|
3
|
+
import { usePlatform } from "./hotkeys/use-platform.js";
|
|
4
|
+
import { useFormatHotkey } from "./hotkeys/use-format-hotkey.js";
|
|
5
|
+
import { useHotkeyStore } from "./hotkeys/use-hotkey-store.js";
|
|
6
|
+
import { useHotkeys } from "./hotkeys/use-hotkeys.js";
|
|
7
|
+
import { useHotkey } from "./hotkeys/use-hotkey.js";
|
|
8
|
+
import { useHotkeyRecorder } from "./hotkeys/use-hotkey-recorder.js";
|
|
9
|
+
import { useHotkeyRegistrations } from "./hotkeys/use-hotkey-registrations.js";
|
|
10
|
+
import { useIsKeyPressed } from "./hotkeys/use-is-key-pressed.js";
|
|
11
|
+
import { usePressedKeys } from "./hotkeys/use-pressed-keys.js";
|
|
12
|
+
import { createHotkeyStore, formatHotkey, isHotKey, isHotkeyEqual, parseHotkey, validateHotkey } from "./hotkeys/index.js";
|
|
3
13
|
import { useFocusVisible } from "./interaction/use-focus-visible.js";
|
|
4
14
|
import { useInteractionModality } from "./interaction/use-interaction-modality.js";
|
|
5
15
|
import { useLocaleContext } from "./locale/use-locale-context.js";
|
|
@@ -7,4 +17,4 @@ import { LocaleProvider } from "./locale/locale-provider.js";
|
|
|
7
17
|
import { useCollator } from "./locale/use-collator.js";
|
|
8
18
|
import { useDateFormatter } from "./locale/use-date-formatter.js";
|
|
9
19
|
import { useFilter } from "./locale/use-filter.js";
|
|
10
|
-
export { EnvironmentProvider, LocaleProvider, useCollator, useDateFormatter, useEnvironmentContext, useFilter, useFocusVisible, useInteractionModality, useLocaleContext };
|
|
20
|
+
export { EnvironmentProvider, LocaleProvider, createHotkeyStore, formatHotkey, isHotKey, isHotkeyEqual, parseHotkey, useCollator, useDateFormatter, useEnvironmentContext, useFilter, useFocusVisible, useFormatHotkey, useHotkey, useHotkeyRecorder, useHotkeyRegistrations, useHotkeyStore, useHotkeys, useInteractionModality, useIsKeyPressed, useLocaleContext, usePlatform, usePressedKeys, validateHotkey };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ariaAttr, dataAttr } from '@zag-js/dom-query';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ariaAttr, dataAttr } from '@zag-js/dom-query';
|
package/dist/utils/index.cjs
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
2
|
const require_create_context = require("./create-context.cjs");
|
|
3
3
|
let _zag_js_core = require("@zag-js/core");
|
|
4
|
+
let _zag_js_dom_query = require("@zag-js/dom-query");
|
|
5
|
+
Object.defineProperty(exports, "ariaAttr", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _zag_js_dom_query.ariaAttr;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
4
11
|
exports.createContext = require_create_context.createContext;
|
|
12
|
+
Object.defineProperty(exports, "dataAttr", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function() {
|
|
15
|
+
return _zag_js_dom_query.dataAttr;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
5
18
|
Object.defineProperty(exports, "mergeProps", {
|
|
6
19
|
enumerable: true,
|
|
7
20
|
get: function() {
|
package/dist/utils/index.d.cts
CHANGED
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.39.0",
|
|
5
5
|
"description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"accordion",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"tags input",
|
|
42
42
|
"timer",
|
|
43
43
|
"toast",
|
|
44
|
+
"toc",
|
|
44
45
|
"toggle group",
|
|
45
46
|
"tooltip",
|
|
46
47
|
"tree view",
|
|
@@ -150,72 +151,74 @@
|
|
|
150
151
|
"sideEffects": false,
|
|
151
152
|
"dependencies": {
|
|
152
153
|
"@internationalized/date": "3.12.3",
|
|
153
|
-
"@zag-js/accordion": "1.43.
|
|
154
|
-
"@zag-js/anatomy": "1.43.
|
|
155
|
-
"@zag-js/angle-slider": "1.43.
|
|
156
|
-
"@zag-js/async-list": "1.43.
|
|
157
|
-
"@zag-js/auto-resize": "1.43.
|
|
158
|
-
"@zag-js/avatar": "1.43.
|
|
159
|
-
"@zag-js/carousel": "1.43.
|
|
160
|
-
"@zag-js/cascade-select": "1.43.
|
|
161
|
-
"@zag-js/checkbox": "1.43.
|
|
162
|
-
"@zag-js/clipboard": "1.43.
|
|
163
|
-
"@zag-js/collapsible": "1.43.
|
|
164
|
-
"@zag-js/collection": "1.43.
|
|
165
|
-
"@zag-js/color-picker": "1.43.
|
|
166
|
-
"@zag-js/color-utils": "1.43.
|
|
167
|
-
"@zag-js/combobox": "1.43.
|
|
168
|
-
"@zag-js/core": "1.43.
|
|
169
|
-
"@zag-js/date-input": "1.43.
|
|
170
|
-
"@zag-js/date-picker": "1.43.
|
|
171
|
-
"@zag-js/date-utils": "1.43.
|
|
172
|
-
"@zag-js/dialog": "1.43.
|
|
173
|
-
"@zag-js/dom-query": "1.43.
|
|
174
|
-
"@zag-js/drawer": "1.43.
|
|
175
|
-
"@zag-js/editable": "1.43.
|
|
176
|
-
"@zag-js/file-upload": "1.43.
|
|
177
|
-
"@zag-js/
|
|
178
|
-
"@zag-js/
|
|
179
|
-
"@zag-js/
|
|
180
|
-
"@zag-js/focus-
|
|
181
|
-
"@zag-js/highlight-word": "1.43.
|
|
182
|
-
"@zag-js/
|
|
183
|
-
"@zag-js/
|
|
184
|
-
"@zag-js/
|
|
185
|
-
"@zag-js/
|
|
186
|
-
"@zag-js/
|
|
187
|
-
"@zag-js/
|
|
188
|
-
"@zag-js/
|
|
189
|
-
"@zag-js/
|
|
190
|
-
"@zag-js/
|
|
191
|
-
"@zag-js/
|
|
192
|
-
"@zag-js/
|
|
193
|
-
"@zag-js/
|
|
194
|
-
"@zag-js/
|
|
195
|
-
"@zag-js/
|
|
196
|
-
"@zag-js/
|
|
197
|
-
"@zag-js/
|
|
198
|
-
"@zag-js/
|
|
199
|
-
"@zag-js/
|
|
200
|
-
"@zag-js/
|
|
201
|
-
"@zag-js/
|
|
202
|
-
"@zag-js/
|
|
203
|
-
"@zag-js/
|
|
204
|
-
"@zag-js/
|
|
205
|
-
"@zag-js/
|
|
206
|
-
"@zag-js/
|
|
207
|
-
"@zag-js/
|
|
208
|
-
"@zag-js/
|
|
209
|
-
"@zag-js/
|
|
210
|
-
"@zag-js/
|
|
211
|
-
"@zag-js/
|
|
212
|
-
"@zag-js/
|
|
213
|
-
"@zag-js/
|
|
214
|
-
"@zag-js/
|
|
215
|
-
"@zag-js/
|
|
216
|
-
"@zag-js/
|
|
217
|
-
"@zag-js/
|
|
218
|
-
"@zag-js/
|
|
154
|
+
"@zag-js/accordion": "1.43.3",
|
|
155
|
+
"@zag-js/anatomy": "1.43.3",
|
|
156
|
+
"@zag-js/angle-slider": "1.43.3",
|
|
157
|
+
"@zag-js/async-list": "1.43.3",
|
|
158
|
+
"@zag-js/auto-resize": "1.43.3",
|
|
159
|
+
"@zag-js/avatar": "1.43.3",
|
|
160
|
+
"@zag-js/carousel": "1.43.3",
|
|
161
|
+
"@zag-js/cascade-select": "1.43.3",
|
|
162
|
+
"@zag-js/checkbox": "1.43.3",
|
|
163
|
+
"@zag-js/clipboard": "1.43.3",
|
|
164
|
+
"@zag-js/collapsible": "1.43.3",
|
|
165
|
+
"@zag-js/collection": "1.43.3",
|
|
166
|
+
"@zag-js/color-picker": "1.43.3",
|
|
167
|
+
"@zag-js/color-utils": "1.43.3",
|
|
168
|
+
"@zag-js/combobox": "1.43.3",
|
|
169
|
+
"@zag-js/core": "1.43.3",
|
|
170
|
+
"@zag-js/date-input": "1.43.3",
|
|
171
|
+
"@zag-js/date-picker": "1.43.3",
|
|
172
|
+
"@zag-js/date-utils": "1.43.3",
|
|
173
|
+
"@zag-js/dialog": "1.43.3",
|
|
174
|
+
"@zag-js/dom-query": "1.43.3",
|
|
175
|
+
"@zag-js/drawer": "1.43.3",
|
|
176
|
+
"@zag-js/editable": "1.43.3",
|
|
177
|
+
"@zag-js/file-upload": "1.43.3",
|
|
178
|
+
"@zag-js/file-utils": "1.43.3",
|
|
179
|
+
"@zag-js/floating-panel": "1.43.3",
|
|
180
|
+
"@zag-js/focus-trap": "1.43.3",
|
|
181
|
+
"@zag-js/focus-visible": "1.43.3",
|
|
182
|
+
"@zag-js/highlight-word": "1.43.3",
|
|
183
|
+
"@zag-js/hotkeys": "1.43.3",
|
|
184
|
+
"@zag-js/hover-card": "1.43.3",
|
|
185
|
+
"@zag-js/i18n-utils": "1.43.3",
|
|
186
|
+
"@zag-js/image-cropper": "1.43.3",
|
|
187
|
+
"@zag-js/json-tree-utils": "1.43.3",
|
|
188
|
+
"@zag-js/listbox": "1.43.3",
|
|
189
|
+
"@zag-js/marquee": "1.43.3",
|
|
190
|
+
"@zag-js/menu": "1.43.3",
|
|
191
|
+
"@zag-js/navigation-menu": "1.43.3",
|
|
192
|
+
"@zag-js/number-input": "1.43.3",
|
|
193
|
+
"@zag-js/pagination": "1.43.3",
|
|
194
|
+
"@zag-js/password-input": "1.43.3",
|
|
195
|
+
"@zag-js/pin-input": "1.43.3",
|
|
196
|
+
"@zag-js/popover": "1.43.3",
|
|
197
|
+
"@zag-js/presence": "1.43.3",
|
|
198
|
+
"@zag-js/progress": "1.43.3",
|
|
199
|
+
"@zag-js/qr-code": "1.43.3",
|
|
200
|
+
"@zag-js/radio-group": "1.43.3",
|
|
201
|
+
"@zag-js/rating-group": "1.43.3",
|
|
202
|
+
"@zag-js/react": "1.43.3",
|
|
203
|
+
"@zag-js/scroll-area": "1.43.3",
|
|
204
|
+
"@zag-js/select": "1.43.3",
|
|
205
|
+
"@zag-js/signature-pad": "1.43.3",
|
|
206
|
+
"@zag-js/slider": "1.43.3",
|
|
207
|
+
"@zag-js/splitter": "1.43.3",
|
|
208
|
+
"@zag-js/steps": "1.43.3",
|
|
209
|
+
"@zag-js/switch": "1.43.3",
|
|
210
|
+
"@zag-js/tabs": "1.43.3",
|
|
211
|
+
"@zag-js/tags-input": "1.43.3",
|
|
212
|
+
"@zag-js/timer": "1.43.3",
|
|
213
|
+
"@zag-js/toast": "1.43.3",
|
|
214
|
+
"@zag-js/toc": "1.43.3",
|
|
215
|
+
"@zag-js/toggle": "1.43.3",
|
|
216
|
+
"@zag-js/toggle-group": "1.43.3",
|
|
217
|
+
"@zag-js/tooltip": "1.43.3",
|
|
218
|
+
"@zag-js/tour": "1.43.3",
|
|
219
|
+
"@zag-js/tree-view": "1.43.3",
|
|
220
|
+
"@zag-js/types": "1.43.3",
|
|
221
|
+
"@zag-js/utils": "1.43.3"
|
|
219
222
|
},
|
|
220
223
|
"devDependencies": {
|
|
221
224
|
"@biomejs/biome": "2.5.8",
|
|
@@ -226,7 +229,7 @@
|
|
|
226
229
|
"@testing-library/jest-dom": "7.0.1",
|
|
227
230
|
"@testing-library/react": "16.3.2",
|
|
228
231
|
"@testing-library/user-event": "14.6.4",
|
|
229
|
-
"@types/jsdom": "
|
|
232
|
+
"@types/jsdom": "30.0.0",
|
|
230
233
|
"@types/react": "19.2.18",
|
|
231
234
|
"@types/react-dom": "19.2.4",
|
|
232
235
|
"@vitejs/plugin-react": "6.0.5",
|