@ark-ui/solid 3.6.2 → 3.8.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.
Files changed (32) hide show
  1. package/dist/cjs/index.js +126 -26
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/esm/index.js +117 -27
  4. package/dist/esm/index.js.map +1 -1
  5. package/dist/source/components/field/field-root.jsx +1 -0
  6. package/dist/source/components/field/use-field.js +10 -9
  7. package/dist/source/components/index.js +1 -0
  8. package/dist/source/components/progress/progress-value-text.jsx +1 -1
  9. package/dist/source/components/select/use-select.js +13 -5
  10. package/dist/source/components/timer/index.js +9 -0
  11. package/dist/source/components/timer/timer-action-trigger.jsx +8 -0
  12. package/dist/source/components/timer/timer-context.jsx +2 -0
  13. package/dist/source/components/timer/timer-item.jsx +10 -0
  14. package/dist/source/components/timer/timer-root-provider.jsx +11 -0
  15. package/dist/source/components/timer/timer-root.jsx +22 -0
  16. package/dist/source/components/timer/timer-separator.jsx +8 -0
  17. package/dist/source/components/timer/timer.js +6 -0
  18. package/dist/source/components/timer/use-timer-context.js +5 -0
  19. package/dist/source/components/timer/use-timer.js +15 -0
  20. package/dist/types/components/field/use-field.d.ts +33 -17
  21. package/dist/types/components/index.d.ts +1 -0
  22. package/dist/types/components/timer/index.d.ts +9 -0
  23. package/dist/types/components/timer/timer-action-trigger.d.ts +7 -0
  24. package/dist/types/components/timer/timer-context.d.ts +6 -0
  25. package/dist/types/components/timer/timer-item.d.ts +7 -0
  26. package/dist/types/components/timer/timer-root-provider.d.ts +11 -0
  27. package/dist/types/components/timer/timer-root.d.ts +7 -0
  28. package/dist/types/components/timer/timer-separator.d.ts +6 -0
  29. package/dist/types/components/timer/timer.d.ts +6 -0
  30. package/dist/types/components/timer/use-timer-context.d.ts +4 -0
  31. package/dist/types/components/timer/use-timer.d.ts +9 -0
  32. package/package.json +53 -50
@@ -6,6 +6,7 @@ import { FieldProvider } from './use-field-context';
6
6
  export const FieldRoot = (props) => {
7
7
  const [useFieldProps, localProps] = createSplitProps()(props, [
8
8
  'id',
9
+ 'ids',
9
10
  'disabled',
10
11
  'invalid',
11
12
  'readOnly',
@@ -1,17 +1,18 @@
1
- import { getWindow } from '@zag-js/dom-query';
1
+ import { ariaAttr, dataAttr, getWindow } from '@zag-js/dom-query';
2
2
  import { createEffect, createMemo, createSignal, createUniqueId, onCleanup } from 'solid-js';
3
3
  import { useFieldsetContext } from '../fieldset';
4
4
  import { parts } from './field.anatomy';
5
5
  export const useField = (props) => {
6
6
  const fieldset = useFieldsetContext();
7
- const { disabled = Boolean(fieldset?.().disabled), invalid = false, readOnly = false, required = false, } = props;
7
+ const { ids, disabled = Boolean(fieldset?.().disabled), invalid = false, readOnly = false, required = false, } = props;
8
8
  const [hasErrorText, setHasErrorText] = createSignal(false);
9
9
  const [hasHelperText, setHasHelperText] = createSignal(false);
10
10
  const id = props.id ?? createUniqueId();
11
11
  let rootRef;
12
- const errorTextId = `field::${id}::error-text`;
13
- const helperTextId = `field::${id}::helper-text`;
14
- const labelId = `field::${id}::label`;
12
+ const rootId = ids?.control ?? `field::${id}`;
13
+ const errorTextId = ids?.errorText ?? `field::${id}::error-text`;
14
+ const helperTextId = ids?.helperText ?? `field::${id}::helper-text`;
15
+ const labelId = ids?.label ?? `field::${id}::label`;
15
16
  createEffect(() => {
16
17
  const rootNode = rootRef;
17
18
  if (!rootNode)
@@ -29,6 +30,7 @@ export const useField = (props) => {
29
30
  });
30
31
  const getRootProps = () => ({
31
32
  ...parts.root.attrs,
33
+ id: rootId,
32
34
  role: 'group',
33
35
  'data-disabled': dataAttr(disabled),
34
36
  'data-invalid': dataAttr(invalid),
@@ -50,8 +52,9 @@ export const useField = (props) => {
50
52
  const getControlProps = () => ({
51
53
  'aria-describedby': labelIds.join(' ') || undefined,
52
54
  'aria-invalid': ariaAttr(invalid),
53
- 'aria-required': ariaAttr(required),
54
- 'aria-readonly': ariaAttr(readOnly),
55
+ 'data-invalid': dataAttr(invalid),
56
+ 'data-required': dataAttr(required),
57
+ 'data-readonly': dataAttr(readOnly),
55
58
  id,
56
59
  required,
57
60
  disabled,
@@ -102,5 +105,3 @@ export const useField = (props) => {
102
105
  getErrorTextProps,
103
106
  }));
104
107
  };
105
- const dataAttr = (condition) => (condition ? '' : undefined);
106
- const ariaAttr = (condition) => (condition ? true : undefined);
@@ -39,3 +39,4 @@ export * from './toast';
39
39
  export * from './toggle-group';
40
40
  export * from './tooltip';
41
41
  export * from './tree-view';
42
+ export * from './timer';
@@ -4,5 +4,5 @@ import { useProgressContext } from './use-progress-context';
4
4
  export const ProgressValueText = (props) => {
5
5
  const api = useProgressContext();
6
6
  const mergedProps = mergeProps(() => api().getValueTextProps(), props);
7
- return <ark.span {...mergedProps}>{props.children || api().valueAsString}</ark.span>;
7
+ return <ark.span {...mergedProps}>{props.children || api().percentAsString}</ark.span>;
8
8
  };
@@ -1,6 +1,6 @@
1
1
  import * as select from '@zag-js/select';
2
2
  import { normalizeProps, useMachine } from '@zag-js/solid';
3
- import { createMemo, createUniqueId } from 'solid-js';
3
+ import { createEffect, createMemo, createUniqueId, splitProps } from 'solid-js';
4
4
  import { useEnvironmentContext, useLocaleContext } from '../../providers';
5
5
  import { createSplitProps } from '../../utils/create-split-props';
6
6
  import { useFieldContext } from '../field';
@@ -11,12 +11,12 @@ export const useSelect = (props) => {
11
11
  'itemToString',
12
12
  'items',
13
13
  ]);
14
- const collection = () => select.collection({ ...collectionOptions });
14
+ const collection = createMemo(() => select.collection({ ...collectionOptions }));
15
15
  const locale = useLocaleContext();
16
16
  const environment = useEnvironmentContext();
17
17
  const id = createUniqueId();
18
18
  const field = useFieldContext();
19
- const context = createMemo(() => ({
19
+ const initialContext = createMemo(() => ({
20
20
  id,
21
21
  ids: {
22
22
  label: field?.().ids.label,
@@ -34,8 +34,16 @@ export const useSelect = (props) => {
34
34
  'open.controlled': props.open !== undefined,
35
35
  ...selectProps,
36
36
  }));
37
- const [state, send] = useMachine(select.machine(context()), {
37
+ const context = createMemo(() => {
38
+ const [, restProps] = splitProps(initialContext(), ['collection']);
39
+ return restProps;
40
+ });
41
+ const [state, send] = useMachine(select.machine(initialContext()), {
38
42
  context,
39
43
  });
40
- return createMemo(() => select.connect(state, send, normalizeProps));
44
+ const api = createMemo(() => select.connect(state, send, normalizeProps));
45
+ createEffect(() => {
46
+ api().setCollection(collection());
47
+ });
48
+ return api;
41
49
  };
@@ -0,0 +1,9 @@
1
+ export { TimerContext, } from './timer-context';
2
+ export { TimerActionTrigger, } from './timer-action-trigger';
3
+ export { TimerItem, } from './timer-item';
4
+ export { TimerSeparator, } from './timer-separator';
5
+ export { TimerRoot, } from './timer-root';
6
+ export { TimerRootProvider, } from './timer-root-provider';
7
+ export { useTimer } from './use-timer';
8
+ export { useTimerContext } from './use-timer-context';
9
+ export * as Timer from './timer';
@@ -0,0 +1,8 @@
1
+ import { mergeProps } from '@zag-js/solid';
2
+ import { ark } from '../factory';
3
+ import { useTimerContext } from './use-timer-context';
4
+ export const TimerActionTrigger = (props) => {
5
+ const timer = useTimerContext();
6
+ const mergedProps = mergeProps(() => timer().getActionTriggerProps(props), props);
7
+ return <ark.button {...mergedProps}/>;
8
+ };
@@ -0,0 +1,2 @@
1
+ import { useTimerContext } from './use-timer-context';
2
+ export const TimerContext = (props) => props.children(useTimerContext());
@@ -0,0 +1,10 @@
1
+ import { mergeProps } from '@zag-js/solid';
2
+ import { createSplitProps } from '../../utils/create-split-props';
3
+ import { ark } from '../factory';
4
+ import { useTimerContext } from './use-timer-context';
5
+ export const TimerItem = (props) => {
6
+ const [itemProps, localProps] = createSplitProps()(props, ['type']);
7
+ const timer = useTimerContext();
8
+ const mergedProps = mergeProps(() => timer().getItemProps(itemProps), localProps);
9
+ return <ark.div {...mergedProps}>{timer().formattedTime[itemProps.type]}</ark.div>;
10
+ };
@@ -0,0 +1,11 @@
1
+ import { mergeProps } from '@zag-js/solid';
2
+ import { createSplitProps } from '../../utils/create-split-props';
3
+ import { ark } from '../factory';
4
+ import { TimerProvider } from './use-timer-context';
5
+ export const TimerRootProvider = (props) => {
6
+ const [{ value: timer }, localProps] = createSplitProps()(props, ['value']);
7
+ const mergedProps = mergeProps(() => timer().getRootProps(), localProps);
8
+ return (<TimerProvider value={timer}>
9
+ <ark.div {...mergedProps}/>
10
+ </TimerProvider>);
11
+ };
@@ -0,0 +1,22 @@
1
+ import { mergeProps } from '@zag-js/solid';
2
+ import { createSplitProps } from '../../utils/create-split-props';
3
+ import { ark } from '../factory';
4
+ import { useTimer } from './use-timer';
5
+ import { TimerProvider } from './use-timer-context';
6
+ export const TimerRoot = (props) => {
7
+ const [useTimerProps, localProps] = createSplitProps()(props, [
8
+ 'id',
9
+ 'autoStart',
10
+ 'interval',
11
+ 'countdown',
12
+ 'startMs',
13
+ 'targetMs',
14
+ 'onComplete',
15
+ 'onTick',
16
+ ]);
17
+ const timer = useTimer(useTimerProps);
18
+ const mergedProps = mergeProps(() => timer().getRootProps(), localProps);
19
+ return (<TimerProvider value={timer}>
20
+ <ark.div {...mergedProps}/>
21
+ </TimerProvider>);
22
+ };
@@ -0,0 +1,8 @@
1
+ import { mergeProps } from '@zag-js/solid';
2
+ import { ark } from '../factory';
3
+ import { useTimerContext } from './use-timer-context';
4
+ export const TimerSeparator = (props) => {
5
+ const timer = useTimerContext();
6
+ const mergedProps = mergeProps(() => timer().getSeparatorProps(), props);
7
+ return <ark.div {...mergedProps}/>;
8
+ };
@@ -0,0 +1,6 @@
1
+ export { TimerContext as Context, } from './timer-context';
2
+ export { TimerActionTrigger as ActionTrigger, } from './timer-action-trigger';
3
+ export { TimerItem as Item, } from './timer-item';
4
+ export { TimerSeparator as Separator, } from './timer-separator';
5
+ export { TimerRoot as Root, } from './timer-root';
6
+ export { TimerRootProvider as RootProvider, } from './timer-root-provider';
@@ -0,0 +1,5 @@
1
+ import { createContext } from '../../utils/create-context';
2
+ export const [TimerProvider, useTimerContext] = createContext({
3
+ hookName: 'useTimerContext',
4
+ providerName: '<TimerProvider />',
5
+ });
@@ -0,0 +1,15 @@
1
+ import { normalizeProps, useMachine } from '@zag-js/solid';
2
+ import * as timer from '@zag-js/timer';
3
+ import { createMemo, createUniqueId } from 'solid-js';
4
+ import { useEnvironmentContext } from '../../providers';
5
+ export const useTimer = (props) => {
6
+ const env = useEnvironmentContext();
7
+ const id = createUniqueId();
8
+ const context = createMemo(() => ({
9
+ id,
10
+ getRootNode: env().getRootNode,
11
+ ...props,
12
+ }));
13
+ const [state, send] = useMachine(timer.machine(context()), { context });
14
+ return createMemo(() => timer.connect(state, send, normalizeProps));
15
+ };
@@ -1,5 +1,19 @@
1
+ export interface ElementIds {
2
+ root?: string;
3
+ control?: string;
4
+ label?: string;
5
+ errorText?: string;
6
+ helperText?: string;
7
+ }
1
8
  export interface UseFieldProps {
9
+ /**
10
+ * The id of the field.
11
+ */
2
12
  id?: string;
13
+ /**
14
+ * The ids of the field parts.
15
+ */
16
+ ids?: ElementIds;
3
17
  /**
4
18
  * Indicates whether the field is required.
5
19
  */
@@ -35,18 +49,19 @@ export declare const useField: (props: UseFieldProps) => import("solid-js").Acce
35
49
  required: boolean;
36
50
  getLabelProps: () => {
37
51
  id: string;
38
- 'data-disabled': Booleanish;
39
- 'data-invalid': Booleanish;
40
- 'data-readonly': Booleanish;
52
+ 'data-disabled': boolean | "false" | "true";
53
+ 'data-invalid': boolean | "false" | "true";
54
+ 'data-readonly': boolean | "false" | "true";
41
55
  htmlFor: string;
42
56
  "data-scope": string;
43
57
  "data-part": string;
44
58
  };
45
59
  getRootProps: () => {
60
+ id: string;
46
61
  role: string;
47
- 'data-disabled': Booleanish;
48
- 'data-invalid': Booleanish;
49
- 'data-readonly': Booleanish;
62
+ 'data-disabled': boolean | "false" | "true";
63
+ 'data-invalid': boolean | "false" | "true";
64
+ 'data-readonly': boolean | "false" | "true";
50
65
  "data-scope": string;
51
66
  "data-part": string;
52
67
  };
@@ -54,9 +69,10 @@ export declare const useField: (props: UseFieldProps) => import("solid-js").Acce
54
69
  "data-scope": string;
55
70
  "data-part": string;
56
71
  'aria-describedby': string;
57
- 'aria-invalid': boolean;
58
- 'aria-required': boolean;
59
- 'aria-readonly': boolean;
72
+ 'aria-invalid': "true";
73
+ 'data-invalid': boolean | "false" | "true";
74
+ 'data-required': boolean | "false" | "true";
75
+ 'data-readonly': boolean | "false" | "true";
60
76
  id: string;
61
77
  required: boolean;
62
78
  disabled: boolean;
@@ -66,9 +82,10 @@ export declare const useField: (props: UseFieldProps) => import("solid-js").Acce
66
82
  "data-scope": string;
67
83
  "data-part": string;
68
84
  'aria-describedby': string;
69
- 'aria-invalid': boolean;
70
- 'aria-required': boolean;
71
- 'aria-readonly': boolean;
85
+ 'aria-invalid': "true";
86
+ 'data-invalid': boolean | "false" | "true";
87
+ 'data-required': boolean | "false" | "true";
88
+ 'data-readonly': boolean | "false" | "true";
72
89
  id: string;
73
90
  required: boolean;
74
91
  disabled: boolean;
@@ -78,9 +95,10 @@ export declare const useField: (props: UseFieldProps) => import("solid-js").Acce
78
95
  "data-scope": string;
79
96
  "data-part": string;
80
97
  'aria-describedby': string;
81
- 'aria-invalid': boolean;
82
- 'aria-required': boolean;
83
- 'aria-readonly': boolean;
98
+ 'aria-invalid': "true";
99
+ 'data-invalid': boolean | "false" | "true";
100
+ 'data-required': boolean | "false" | "true";
101
+ 'data-readonly': boolean | "false" | "true";
84
102
  id: string;
85
103
  required: boolean;
86
104
  disabled: boolean;
@@ -98,5 +116,3 @@ export declare const useField: (props: UseFieldProps) => import("solid-js").Acce
98
116
  id: string;
99
117
  };
100
118
  }>;
101
- type Booleanish = boolean | 'true' | 'false';
102
- export {};
@@ -39,3 +39,4 @@ export * from './toast';
39
39
  export * from './toggle-group';
40
40
  export * from './tooltip';
41
41
  export * from './tree-view';
42
+ export * from './timer';
@@ -0,0 +1,9 @@
1
+ export { TimerContext, type TimerContextProps, } from './timer-context';
2
+ export { TimerActionTrigger, type TimerActionTriggerBaseProps, type TimerActionTriggerProps, } from './timer-action-trigger';
3
+ export { TimerItem, type TimerItemProps, type TimerItemBaseProps, } from './timer-item';
4
+ export { TimerSeparator, type TimerSeparatorProps, type TimerSeparatorBaseProps, } from './timer-separator';
5
+ export { TimerRoot, type TimerRootProps, type TimerRootBaseProps, } from './timer-root';
6
+ export { TimerRootProvider, type TimerRootProviderProps, type TimerRootProviderBaseProps, } from './timer-root-provider';
7
+ export { useTimer, type UseTimerProps, type UseTimerReturn } from './use-timer';
8
+ export { useTimerContext, type UseTimerContext } from './use-timer-context';
9
+ export * as Timer from './timer';
@@ -0,0 +1,7 @@
1
+ import type { ActionTriggerProps } from '@zag-js/timer';
2
+ import { type HTMLProps, type PolymorphicProps } from '../factory';
3
+ export interface TimerActionTriggerBaseProps extends ActionTriggerProps, PolymorphicProps<'button'> {
4
+ }
5
+ export interface TimerActionTriggerProps extends HTMLProps<'button'>, TimerActionTriggerBaseProps {
6
+ }
7
+ export declare const TimerActionTrigger: (props: TimerActionTriggerProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import type { ReactNode } from 'react';
2
+ import { type UseTimerContext } from './use-timer-context';
3
+ export interface TimerContextProps {
4
+ children: (context: UseTimerContext) => ReactNode;
5
+ }
6
+ export declare const TimerContext: (props: TimerContextProps) => ReactNode;
@@ -0,0 +1,7 @@
1
+ import type { ItemProps } from '@zag-js/timer';
2
+ import { type HTMLProps, type PolymorphicProps } from '../factory';
3
+ export interface TimerItemBaseProps extends ItemProps, PolymorphicProps<'div'> {
4
+ }
5
+ export interface TimerItemProps extends HTMLProps<'div'>, TimerItemBaseProps {
6
+ }
7
+ export declare const TimerItem: (props: TimerItemProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { type HTMLProps, type PolymorphicProps } from '../factory';
2
+ import type { UseTimerReturn } from './use-timer';
3
+ interface RootProviderProps {
4
+ value: UseTimerReturn;
5
+ }
6
+ export interface TimerRootProviderBaseProps extends RootProviderProps, PolymorphicProps<'div'> {
7
+ }
8
+ export interface TimerRootProviderProps extends HTMLProps<'div'>, TimerRootProviderBaseProps {
9
+ }
10
+ export declare const TimerRootProvider: (props: TimerRootProviderProps) => import("solid-js").JSX.Element;
11
+ export {};
@@ -0,0 +1,7 @@
1
+ import { type HTMLProps, type PolymorphicProps } from '../factory';
2
+ import { type UseTimerProps } from './use-timer';
3
+ export interface TimerRootBaseProps extends UseTimerProps, PolymorphicProps<'div'> {
4
+ }
5
+ export interface TimerRootProps extends HTMLProps<'div'>, TimerRootBaseProps {
6
+ }
7
+ export declare const TimerRoot: (props: TimerRootProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { type HTMLProps, type PolymorphicProps } from '../factory';
2
+ export interface TimerSeparatorBaseProps extends PolymorphicProps<'div'> {
3
+ }
4
+ export interface TimerSeparatorProps extends HTMLProps<'div'>, TimerSeparatorBaseProps {
5
+ }
6
+ export declare const TimerSeparator: (props: TimerSeparatorProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,6 @@
1
+ export { TimerContext as Context, type TimerContextProps as ContextProps, } from './timer-context';
2
+ export { TimerActionTrigger as ActionTrigger, type TimerActionTriggerBaseProps as ActionTriggerBaseProps, type TimerActionTriggerProps as ActionTriggerProps, } from './timer-action-trigger';
3
+ export { TimerItem as Item, type TimerItemProps as ItemProps, type TimerItemBaseProps as ItemBaseProps, } from './timer-item';
4
+ export { TimerSeparator as Separator, type TimerSeparatorProps as SeparatorProps, type TimerSeparatorBaseProps as SeparatorBaseProps, } from './timer-separator';
5
+ export { TimerRoot as Root, type TimerRootProps as RootProps, type TimerRootBaseProps as RootBaseProps, } from './timer-root';
6
+ export { TimerRootProvider as RootProvider, type TimerRootProviderProps as RootProviderBaseProps, type TimerRootProviderBaseProps as RootProviderProps, } from './timer-root-provider';
@@ -0,0 +1,4 @@
1
+ import type { UseTimerReturn } from './use-timer';
2
+ export interface UseTimerContext extends UseTimerReturn {
3
+ }
4
+ export declare const TimerProvider: import("solid-js").ContextProviderComponent<UseTimerContext>, useTimerContext: () => UseTimerContext;
@@ -0,0 +1,9 @@
1
+ import { type PropTypes } from '@zag-js/solid';
2
+ import * as timer from '@zag-js/timer';
3
+ import { type Accessor } from 'solid-js';
4
+ import type { Optional } from '../../types';
5
+ export interface UseTimerProps extends Optional<Omit<timer.Context, 'dir' | 'getRootNode'>, 'id'> {
6
+ }
7
+ export interface UseTimerReturn extends Accessor<timer.Api<PropTypes>> {
8
+ }
9
+ export declare const useTimer: (props: UseTimerProps) => UseTimerReturn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ark-ui/solid",
3
- "version": "3.6.2",
3
+ "version": "3.8.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,73 +85,76 @@
85
85
  "sideEffects": false,
86
86
  "dependencies": {
87
87
  "@internationalized/date": "3.5.5",
88
- "@zag-js/accordion": "0.63.0",
89
- "@zag-js/anatomy": "0.63.0",
90
- "@zag-js/avatar": "0.63.0",
91
- "@zag-js/carousel": "0.63.0",
92
- "@zag-js/checkbox": "0.63.0",
93
- "@zag-js/clipboard": "0.63.0",
94
- "@zag-js/collapsible": "0.63.0",
95
- "@zag-js/color-picker": "0.63.0",
96
- "@zag-js/combobox": "0.63.0",
97
- "@zag-js/date-picker": "0.63.0",
98
- "@zag-js/dialog": "0.63.0",
99
- "@zag-js/dom-query": "0.63.0",
100
- "@zag-js/editable": "0.63.0",
101
- "@zag-js/file-upload": "0.63.0",
102
- "@zag-js/hover-card": "0.63.0",
103
- "@zag-js/file-utils": "0.63.0",
104
- "@zag-js/i18n-utils": "0.63.0",
105
- "@zag-js/menu": "0.63.0",
106
- "@zag-js/number-input": "0.63.0",
107
- "@zag-js/pagination": "0.63.0",
108
- "@zag-js/pin-input": "0.63.0",
109
- "@zag-js/popover": "0.63.0",
110
- "@zag-js/presence": "0.63.0",
111
- "@zag-js/progress": "0.63.0",
112
- "@zag-js/qr-code": "0.63.0",
113
- "@zag-js/radio-group": "0.63.0",
114
- "@zag-js/rating-group": "0.63.0",
115
- "@zag-js/select": "0.63.0",
116
- "@zag-js/signature-pad": "0.63.0",
117
- "@zag-js/slider": "0.63.0",
118
- "@zag-js/solid": "0.63.0",
119
- "@zag-js/splitter": "0.63.0",
120
- "@zag-js/switch": "0.63.0",
121
- "@zag-js/tabs": "0.63.0",
122
- "@zag-js/tags-input": "0.63.0",
123
- "@zag-js/time-picker": "0.63.0",
124
- "@zag-js/toast": "0.63.0",
125
- "@zag-js/toggle-group": "0.63.0",
126
- "@zag-js/tooltip": "0.63.0",
127
- "@zag-js/tree-view": "0.63.0",
128
- "@zag-js/types": "0.63.0"
88
+ "@zag-js/accordion": "0.64.0",
89
+ "@zag-js/anatomy": "0.64.0",
90
+ "@zag-js/avatar": "0.64.0",
91
+ "@zag-js/carousel": "0.64.0",
92
+ "@zag-js/checkbox": "0.64.0",
93
+ "@zag-js/clipboard": "0.64.0",
94
+ "@zag-js/collapsible": "0.64.0",
95
+ "@zag-js/color-picker": "0.64.0",
96
+ "@zag-js/combobox": "0.64.0",
97
+ "@zag-js/date-picker": "0.64.0",
98
+ "@zag-js/dialog": "0.64.0",
99
+ "@zag-js/dom-query": "0.64.0",
100
+ "@zag-js/editable": "0.64.0",
101
+ "@zag-js/file-upload": "0.64.0",
102
+ "@zag-js/hover-card": "0.64.0",
103
+ "@zag-js/file-utils": "0.64.0",
104
+ "@zag-js/i18n-utils": "0.64.0",
105
+ "@zag-js/menu": "0.64.0",
106
+ "@zag-js/number-input": "0.64.0",
107
+ "@zag-js/pagination": "0.64.0",
108
+ "@zag-js/pin-input": "0.64.0",
109
+ "@zag-js/popover": "0.64.0",
110
+ "@zag-js/presence": "0.64.0",
111
+ "@zag-js/progress": "0.64.0",
112
+ "@zag-js/qr-code": "0.64.0",
113
+ "@zag-js/radio-group": "0.64.0",
114
+ "@zag-js/rating-group": "0.64.0",
115
+ "@zag-js/select": "0.64.0",
116
+ "@zag-js/signature-pad": "0.64.0",
117
+ "@zag-js/slider": "0.64.0",
118
+ "@zag-js/solid": "0.64.0",
119
+ "@zag-js/splitter": "0.64.0",
120
+ "@zag-js/steps": "0.64.0",
121
+ "@zag-js/switch": "0.64.0",
122
+ "@zag-js/tabs": "0.64.0",
123
+ "@zag-js/tags-input": "0.64.0",
124
+ "@zag-js/timer": "0.64.0",
125
+ "@zag-js/time-picker": "0.64.0",
126
+ "@zag-js/toast": "0.64.0",
127
+ "@zag-js/toggle-group": "0.64.0",
128
+ "@zag-js/tooltip": "0.64.0",
129
+ "@zag-js/tree-view": "0.64.0",
130
+ "@zag-js/types": "0.64.0"
129
131
  },
130
132
  "devDependencies": {
131
133
  "@biomejs/biome": "1.8.3",
132
134
  "@release-it/keep-a-changelog": "5.0.0",
133
135
  "@solidjs/testing-library": "0.8.9",
134
- "@storybook/addon-a11y": "8.2.6",
135
- "@storybook/addon-essentials": "8.2.6",
136
+ "@storybook/addon-a11y": "8.2.9",
137
+ "@storybook/docs-tools": "8.2.9",
138
+ "@storybook/addon-essentials": "8.2.9",
136
139
  "@testing-library/dom": "10.4.0",
137
140
  "@testing-library/jest-dom": "6.4.8",
138
141
  "@testing-library/user-event": "14.5.2",
139
142
  "@types/jsdom": "21.1.7",
140
143
  "globby": "14.0.2",
141
144
  "jsdom": "24.1.1",
142
- "lucide-solid": "0.417.0",
145
+ "lucide-solid": "0.428.0",
143
146
  "release-it": "17.6.0",
144
147
  "resize-observer-polyfill": "1.5.1",
145
- "rollup": "4.19.1",
148
+ "rollup": "4.21.0",
146
149
  "rollup-preset-solid": "2.0.1",
147
- "solid-js": "1.8.19",
148
- "storybook": "8.2.6",
150
+ "solid-js": "1.8.21",
151
+ "storybook": "8.2.9",
149
152
  "storybook-solidjs": "1.0.0-beta.2",
150
153
  "storybook-solidjs-vite": "1.0.0-beta.2",
151
154
  "typescript": "5.5.4",
152
- "vite": "5.3.5",
155
+ "vite": "5.4.0",
153
156
  "vite-plugin-solid": "2.10.2",
154
- "vitest": "2.0.4"
157
+ "vitest": "2.0.5"
155
158
  },
156
159
  "peerDependencies": {
157
160
  "solid-js": ">=1.6.0"