@ark-ui/solid 3.2.1 → 3.3.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/README.md +19 -14
- package/dist/cjs/index.js +2013 -33
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1977 -23
- package/dist/esm/index.js.map +1 -1
- package/dist/source/components/checkbox/checkbox-group.jsx +18 -0
- package/dist/source/components/checkbox/checkbox.js +1 -0
- package/dist/source/components/checkbox/index.js +3 -0
- package/dist/source/components/checkbox/use-checkbox-group-context.jsx +6 -0
- package/dist/source/components/checkbox/use-checkbox-group.js +52 -0
- package/dist/source/components/checkbox/use-checkbox.js +9 -4
- package/dist/source/components/combobox/combobox-list.jsx +8 -0
- package/dist/source/components/combobox/combobox.js +1 -0
- package/dist/source/components/combobox/index.js +1 -0
- package/dist/source/components/index.js +2 -0
- package/dist/source/components/presence/split-presence-props.js +1 -0
- package/dist/source/components/qr-code/index.js +9 -0
- package/dist/source/components/qr-code/qr-code-context.js +2 -0
- package/dist/source/components/qr-code/qr-code-frame.jsx +8 -0
- package/dist/source/components/qr-code/qr-code-overlay.jsx +8 -0
- package/dist/source/components/qr-code/qr-code-pattern.jsx +8 -0
- package/dist/source/components/qr-code/qr-code-root-provider.jsx +11 -0
- package/dist/source/components/qr-code/qr-code-root.jsx +18 -0
- package/dist/source/components/qr-code/qr-code.js +6 -0
- package/dist/source/components/qr-code/use-qr-code-context.js +5 -0
- package/dist/source/components/qr-code/use-qr-code.js +19 -0
- package/dist/source/components/select/index.js +1 -0
- package/dist/source/components/select/select-list.jsx +8 -0
- package/dist/source/components/select/select.js +1 -0
- package/dist/source/components/signature-pad/index.js +11 -0
- package/dist/source/components/signature-pad/signature-pad-clear-trigger.jsx +8 -0
- package/dist/source/components/signature-pad/signature-pad-context.jsx +2 -0
- package/dist/source/components/signature-pad/signature-pad-control.jsx +8 -0
- package/dist/source/components/signature-pad/signature-pad-guide.jsx +8 -0
- package/dist/source/components/signature-pad/signature-pad-label.jsx +8 -0
- package/dist/source/components/signature-pad/signature-pad-root-provider.jsx +13 -0
- package/dist/source/components/signature-pad/signature-pad-root.jsx +22 -0
- package/dist/source/components/signature-pad/signature-pad-segment.jsx +18 -0
- package/dist/source/components/signature-pad/signature-pad.js +8 -0
- package/dist/source/components/signature-pad/use-signature-pad-context.js +5 -0
- package/dist/source/components/signature-pad/use-signature-pad.js +17 -0
- package/dist/source/components/tabs/tab-content.jsx +4 -1
- package/dist/source/components/toast/toast-root.jsx +3 -1
- package/dist/source/utils/use-controllable-state.js +18 -0
- package/dist/types/components/checkbox/checkbox-group.d.ts +6 -0
- package/dist/types/components/checkbox/checkbox.d.ts +1 -0
- package/dist/types/components/checkbox/index.d.ts +3 -0
- package/dist/types/components/checkbox/use-checkbox-group-context.d.ts +4 -0
- package/dist/types/components/checkbox/use-checkbox-group.d.ts +42 -0
- package/dist/types/components/checkbox/use-checkbox.d.ts +1 -1
- package/dist/types/components/combobox/combobox-list.d.ts +4 -0
- package/dist/types/components/combobox/combobox.d.ts +1 -0
- package/dist/types/components/combobox/index.d.ts +1 -0
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/components/presence/split-presence-props.d.ts +1 -1
- package/dist/types/components/qr-code/index.d.ts +10 -0
- package/dist/types/components/qr-code/qr-code-context.d.ts +6 -0
- package/dist/types/components/qr-code/qr-code-frame.d.ts +4 -0
- package/dist/types/components/qr-code/qr-code-overlay.d.ts +4 -0
- package/dist/types/components/qr-code/qr-code-pattern.d.ts +4 -0
- package/dist/types/components/qr-code/qr-code-root-provider.d.ts +9 -0
- package/dist/types/components/qr-code/qr-code-root.d.ts +6 -0
- package/dist/types/components/qr-code/qr-code.d.ts +7 -0
- package/dist/types/components/qr-code/use-qr-code-context.d.ts +4 -0
- package/dist/types/components/qr-code/use-qr-code.d.ts +9 -0
- package/dist/types/components/select/index.d.ts +1 -0
- package/dist/types/components/select/select-list.d.ts +4 -0
- package/dist/types/components/select/select.d.ts +1 -0
- package/dist/types/components/signature-pad/index.d.ts +12 -0
- package/dist/types/components/signature-pad/signature-pad-clear-trigger.d.ts +4 -0
- package/dist/types/components/signature-pad/signature-pad-context.d.ts +6 -0
- package/dist/types/components/signature-pad/signature-pad-control.d.ts +4 -0
- package/dist/types/components/signature-pad/signature-pad-guide.d.ts +4 -0
- package/dist/types/components/signature-pad/signature-pad-label.d.ts +4 -0
- package/dist/types/components/signature-pad/signature-pad-root-provider.d.ts +9 -0
- package/dist/types/components/signature-pad/signature-pad-root.d.ts +6 -0
- package/dist/types/components/signature-pad/signature-pad-segment.d.ts +4 -0
- package/dist/types/components/signature-pad/signature-pad.d.ts +9 -0
- package/dist/types/components/signature-pad/use-signature-pad-context.d.ts +4 -0
- package/dist/types/components/signature-pad/use-signature-pad.d.ts +9 -0
- package/dist/types/utils/use-controllable-state.d.ts +7 -0
- package/package.json +45 -44
|
@@ -12,6 +12,7 @@ export { ComboboxItemGroupLabel, type ComboboxItemGroupLabelProps, } from './com
|
|
|
12
12
|
export { ComboboxItemIndicator, type ComboboxItemIndicatorProps } from './combobox-item-indicator';
|
|
13
13
|
export { ComboboxItemText, type ComboboxItemTextProps } from './combobox-item-text';
|
|
14
14
|
export { ComboboxLabel, type ComboboxLabelProps } from './combobox-label';
|
|
15
|
+
export { ComboboxList, type ComboboxListProps } from './combobox-list';
|
|
15
16
|
export { ComboboxPositioner, type ComboboxPositionerProps } from './combobox-positioner';
|
|
16
17
|
export { ComboboxRoot, type ComboboxRootProps } from './combobox-root';
|
|
17
18
|
export { ComboboxRootProvider, type ComboboxRootProviderProps } from './combobox-root-provider';
|
|
@@ -20,10 +20,12 @@ export * from './pin-input';
|
|
|
20
20
|
export * from './popover';
|
|
21
21
|
export * from './presence';
|
|
22
22
|
export * from './progress';
|
|
23
|
+
export * from './qr-code';
|
|
23
24
|
export * from './radio-group';
|
|
24
25
|
export * from './rating-group';
|
|
25
26
|
export * from './segment-group';
|
|
26
27
|
export * from './select';
|
|
28
|
+
export * from './signature-pad';
|
|
27
29
|
export * from './slider';
|
|
28
30
|
export * from './splitter';
|
|
29
31
|
export * from './switch';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { UsePresenceProps } from './use-presence';
|
|
2
|
-
export declare const splitPresenceProps: <T extends UsePresenceProps>(props: T) => [Pick<T, Extract<("lazyMount" | "unmountOnExit" | "onExitComplete" | "present")[], readonly (keyof T)[]>[number]>, { [P in keyof T as Exclude<P, "lazyMount" | "unmountOnExit" | "onExitComplete" | "present">]: T[P]; }];
|
|
2
|
+
export declare const splitPresenceProps: <T extends UsePresenceProps>(props: T) => [Pick<T, Extract<("lazyMount" | "unmountOnExit" | "onExitComplete" | "present" | "immediate")[], readonly (keyof T)[]>[number]>, { [P in keyof T as Exclude<P, "lazyMount" | "unmountOnExit" | "onExitComplete" | "present" | "immediate">]: T[P]; }];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type { QrCodeGenerateOptions, QrCodeGenerateResult } from '@zag-js/qr-code';
|
|
2
|
+
export { QrCodeContext, type QrCodeContextProps } from './qr-code-context';
|
|
3
|
+
export { QrCodeFrame, type QrCodeFrameProps } from './qr-code-frame';
|
|
4
|
+
export { QrCodeOverlay, type QrCodeOverlayProps } from './qr-code-overlay';
|
|
5
|
+
export { QrCodePattern, type QrCodePatternProps } from './qr-code-pattern';
|
|
6
|
+
export { QrCodeRoot, type QrCodeRootProps } from './qr-code-root';
|
|
7
|
+
export { QrCodeRootProvider, type QrCodeRootProviderProps } from './qr-code-root-provider';
|
|
8
|
+
export { useQrCode, type UseQrCodeProps, type UseQrCodeReturn } from './use-qr-code';
|
|
9
|
+
export { useQrCodeContext, type UseQrCodeContext } from './use-qr-code-context';
|
|
10
|
+
export * as QrCode from './qr-code';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { JSX } from 'solid-js';
|
|
2
|
+
import { type UseQrCodeContext } from './use-qr-code-context';
|
|
3
|
+
export interface QrCodeContextProps {
|
|
4
|
+
children: (context: UseQrCodeContext) => JSX.Element;
|
|
5
|
+
}
|
|
6
|
+
export declare const QrCodeContext: (props: QrCodeContextProps) => JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type HTMLArkProps } from '../factory';
|
|
2
|
+
import type { UseQrCodeReturn } from './use-qr-code';
|
|
3
|
+
interface RootProviderProps {
|
|
4
|
+
value: UseQrCodeReturn;
|
|
5
|
+
}
|
|
6
|
+
export interface QrCodeRootProviderProps extends HTMLArkProps<'div'>, RootProviderProps {
|
|
7
|
+
}
|
|
8
|
+
export declare const QrCodeRootProvider: (props: QrCodeRootProviderProps) => import("solid-js").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Assign } from '../../types';
|
|
2
|
+
import { type HTMLArkProps } from '../factory';
|
|
3
|
+
import { type UseQrCodeProps } from './use-qr-code';
|
|
4
|
+
export interface QrCodeRootProps extends Assign<HTMLArkProps<'div'>, UseQrCodeProps> {
|
|
5
|
+
}
|
|
6
|
+
export declare const QrCodeRoot: (props: QrCodeRootProps) => import("solid-js").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type { QrCodeGenerateOptions as GenerateOptions, QrCodeGenerateResult as GenerateResult, } from '@zag-js/qr-code';
|
|
2
|
+
export { QrCodeContext, type QrCodeContextProps } from './qr-code-context';
|
|
3
|
+
export { QrCodeFrame as Frame, type QrCodeFrameProps as FrameProps } from './qr-code-frame';
|
|
4
|
+
export { QrCodeOverlay as Overlay, type QrCodeOverlayProps as OverlayProps, } from './qr-code-overlay';
|
|
5
|
+
export { QrCodePattern as Pattern, type QrCodePatternProps as PatternProps, } from './qr-code-pattern';
|
|
6
|
+
export { QrCodeRoot as Root, type QrCodeRootProps as RootProps } from './qr-code-root';
|
|
7
|
+
export { QrCodeRootProvider as RootProvider, type QrCodeRootProviderProps as RootProviderProps, } from './qr-code-root-provider';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as qrCode from '@zag-js/qr-code';
|
|
2
|
+
import { type PropTypes } from '@zag-js/solid';
|
|
3
|
+
import { type Accessor } from 'solid-js';
|
|
4
|
+
import type { Optional } from '../../types';
|
|
5
|
+
export interface UseQrCodeProps extends Optional<Omit<qrCode.Context, 'dir' | 'getRootNode'>, 'id'> {
|
|
6
|
+
}
|
|
7
|
+
export interface UseQrCodeReturn extends Accessor<qrCode.Api<PropTypes>> {
|
|
8
|
+
}
|
|
9
|
+
export declare const useQrCode: (props: UseQrCodeProps) => UseQrCodeReturn;
|
|
@@ -13,6 +13,7 @@ export { SelectItemGroupLabel, type SelectItemGroupLabelProps } from './select-i
|
|
|
13
13
|
export { SelectItemIndicator, type SelectItemIndicatorProps } from './select-item-indicator';
|
|
14
14
|
export { SelectItemText, type SelectItemTextProps } from './select-item-text';
|
|
15
15
|
export { SelectLabel, type SelectLabelProps } from './select-label';
|
|
16
|
+
export { SelectList, type SelectListProps } from './select-list';
|
|
16
17
|
export { SelectPositioner, type SelectPositionerProps } from './select-positioner';
|
|
17
18
|
export { SelectRoot, type SelectRootProps } from './select-root';
|
|
18
19
|
export { SelectRootProvider, type SelectRootProviderProps } from './select-root-provider';
|
|
@@ -13,6 +13,7 @@ export { SelectItemGroupLabel as ItemGroupLabel, type SelectItemGroupLabelProps
|
|
|
13
13
|
export { SelectItemIndicator as ItemIndicator, type SelectItemIndicatorProps as ItemIndicatorProps, } from './select-item-indicator';
|
|
14
14
|
export { SelectItemText as ItemText, type SelectItemTextProps as ItemTextProps, } from './select-item-text';
|
|
15
15
|
export { SelectLabel as Label, type SelectLabelProps as LabelProps } from './select-label';
|
|
16
|
+
export { SelectList as List, type SelectListProps as ListProps } from './select-list';
|
|
16
17
|
export { SelectPositioner as Positioner, type SelectPositionerProps as PositionerProps, } from './select-positioner';
|
|
17
18
|
export { SelectRoot as Root, type SelectRootProps as RootProps } from './select-root';
|
|
18
19
|
export { SelectRootProvider as RootProvider, type SelectRootProviderProps as RootProviderProps, } from './select-root-provider';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type { DrawDetails as SignaturePadDrawDetails, DrawEndDetails as SignaturePadDrawEndDetails, DrawingOptions as SignaturePadDrawingOptions, } from '@zag-js/signature-pad';
|
|
2
|
+
export { SignaturePadClearTrigger, type SignaturePadClearTriggerProps, } from './signature-pad-clear-trigger';
|
|
3
|
+
export { SignaturePadContext, type SignaturePadContextProps } from './signature-pad-context';
|
|
4
|
+
export { SignaturePadControl, type SignaturePadControlProps } from './signature-pad-control';
|
|
5
|
+
export { SignaturePadGuide, type SignaturePadGuideProps } from './signature-pad-guide';
|
|
6
|
+
export { SignaturePadLabel, type SignaturePadLabelProps } from './signature-pad-label';
|
|
7
|
+
export { SignaturePadRoot, type SignaturePadRootProps } from './signature-pad-root';
|
|
8
|
+
export { SignaturePadRootProvider, type SignaturePadRootProviderProps, } from './signature-pad-root-provider';
|
|
9
|
+
export { SignaturePadSegment, type SignaturePadSegmentProps } from './signature-pad-segment';
|
|
10
|
+
export { useSignaturePad, type UseSignaturePadProps, type UseSignaturePadReturn, } from './use-signature-pad';
|
|
11
|
+
export { useSignaturePadContext, type UseSignaturePadContext } from './use-signature-pad-context';
|
|
12
|
+
export * as SignaturePad from './signature-pad';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { JSX } from 'solid-js';
|
|
2
|
+
import { type UseSignaturePadContext } from './use-signature-pad-context';
|
|
3
|
+
export interface SignaturePadContextProps {
|
|
4
|
+
children: (context: UseSignaturePadContext) => JSX.Element;
|
|
5
|
+
}
|
|
6
|
+
export declare const SignaturePadContext: (props: SignaturePadContextProps) => JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type HTMLArkProps } from '../factory';
|
|
2
|
+
import type { UseSignaturePadReturn } from './use-signature-pad';
|
|
3
|
+
interface RootProviderProps {
|
|
4
|
+
value: UseSignaturePadReturn;
|
|
5
|
+
}
|
|
6
|
+
export interface SignaturePadRootProviderProps extends HTMLArkProps<'div'>, RootProviderProps {
|
|
7
|
+
}
|
|
8
|
+
export declare const SignaturePadRootProvider: (props: SignaturePadRootProviderProps) => import("solid-js").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Assign } from '../../types';
|
|
2
|
+
import { type HTMLArkProps } from '../factory';
|
|
3
|
+
import { type UseSignaturePadProps } from './use-signature-pad';
|
|
4
|
+
export interface SignaturePadRootProps extends Assign<HTMLArkProps<'div'>, UseSignaturePadProps> {
|
|
5
|
+
}
|
|
6
|
+
export declare const SignaturePadRoot: (props: SignaturePadRootProps) => import("solid-js").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type { DrawDetails, DrawEndDetails, DrawingOptions } from '@zag-js/signature-pad';
|
|
2
|
+
export { SignaturePadClearTrigger as ClearTrigger, type SignaturePadClearTriggerProps as ClearTriggerProps, } from './signature-pad-clear-trigger';
|
|
3
|
+
export { SignaturePadContext as Context, type SignaturePadContextProps as ContextProps, } from './signature-pad-context';
|
|
4
|
+
export { SignaturePadControl as Control, type SignaturePadControlProps as ControlProps, } from './signature-pad-control';
|
|
5
|
+
export { SignaturePadGuide as Guide, type SignaturePadGuideProps as GuideProps, } from './signature-pad-guide';
|
|
6
|
+
export { SignaturePadLabel as Label, type SignaturePadLabelProps as LabelProps, } from './signature-pad-label';
|
|
7
|
+
export { SignaturePadRoot as Root, type SignaturePadRootProps as RootProps, } from './signature-pad-root';
|
|
8
|
+
export { SignaturePadRootProvider as RootProvider, type SignaturePadRootProviderProps as RootProviderProps, } from './signature-pad-root-provider';
|
|
9
|
+
export { SignaturePadSegment as Segment, type SignaturePadSegmentProps as SegmentProps, } from './signature-pad-segment';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { UseSignaturePadReturn } from './use-signature-pad';
|
|
2
|
+
export interface UseSignaturePadContext extends UseSignaturePadReturn {
|
|
3
|
+
}
|
|
4
|
+
export declare const SignaturePadProvider: import("solid-js").ContextProviderComponent<UseSignaturePadContext>, useSignaturePadContext: () => UseSignaturePadContext;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as signaturePad from '@zag-js/signature-pad';
|
|
2
|
+
import { type PropTypes } from '@zag-js/solid';
|
|
3
|
+
import { type Accessor } from 'solid-js';
|
|
4
|
+
import type { Optional } from '../../types';
|
|
5
|
+
export interface UseSignaturePadProps extends Optional<Omit<signaturePad.Context, 'dir' | 'getRootNode'>, 'id'> {
|
|
6
|
+
}
|
|
7
|
+
export interface UseSignaturePadReturn extends Accessor<signaturePad.Api<PropTypes>> {
|
|
8
|
+
}
|
|
9
|
+
export declare const useSignaturePad: (props: UseSignaturePadProps) => UseSignaturePadReturn;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type Accessor } from 'solid-js';
|
|
2
|
+
export interface UseControllableStateProps<T> {
|
|
3
|
+
value?: Accessor<T | undefined>;
|
|
4
|
+
defaultValue?: Accessor<T | undefined> | T;
|
|
5
|
+
onChange?: (value: T) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare function useControllableState<T>(props: UseControllableStateProps<T>): readonly [Accessor<T>, (next: Exclude<T, Function> | ((prev: T) => T)) => void];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/solid",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.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",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"rating group",
|
|
27
27
|
"segment group",
|
|
28
28
|
"select",
|
|
29
|
+
"signature pad",
|
|
29
30
|
"slider",
|
|
30
31
|
"splitter",
|
|
31
32
|
"switch",
|
|
@@ -80,59 +81,59 @@
|
|
|
80
81
|
},
|
|
81
82
|
"sideEffects": false,
|
|
82
83
|
"dependencies": {
|
|
83
|
-
"@ark-ui/anatomy": "^3.
|
|
84
|
-
"@zag-js/accordion": "0.
|
|
85
|
-
"@zag-js/avatar": "0.
|
|
86
|
-
"@zag-js/carousel": "0.
|
|
87
|
-
"@zag-js/checkbox": "0.
|
|
88
|
-
"@zag-js/clipboard": "0.
|
|
89
|
-
"@zag-js/collapsible": "0.
|
|
90
|
-
"@zag-js/color-picker": "0.
|
|
91
|
-
"@zag-js/combobox": "0.
|
|
92
|
-
"@zag-js/date-picker": "0.
|
|
93
|
-
"@zag-js/dialog": "0.
|
|
94
|
-
"@zag-js/dom-query": "0.
|
|
95
|
-
"@zag-js/editable": "0.
|
|
96
|
-
"@zag-js/file-upload": "0.
|
|
97
|
-
"@zag-js/hover-card": "0.
|
|
98
|
-
"@zag-js/file-utils": "0.
|
|
99
|
-
"@zag-js/i18n-utils": "0.
|
|
100
|
-
"@zag-js/menu": "0.
|
|
101
|
-
"@zag-js/number-input": "0.
|
|
102
|
-
"@zag-js/pagination": "0.
|
|
103
|
-
"@zag-js/pin-input": "0.
|
|
104
|
-
"@zag-js/popover": "0.
|
|
105
|
-
"@zag-js/presence": "0.
|
|
106
|
-
"@zag-js/progress": "0.
|
|
107
|
-
"@zag-js/
|
|
108
|
-
"@zag-js/
|
|
109
|
-
"@zag-js/
|
|
110
|
-
"@zag-js/
|
|
111
|
-
"@zag-js/
|
|
112
|
-
"@zag-js/
|
|
113
|
-
"@zag-js/
|
|
114
|
-
"@zag-js/
|
|
115
|
-
"@zag-js/
|
|
116
|
-
"@zag-js/
|
|
117
|
-
"@zag-js/
|
|
118
|
-
"@zag-js/
|
|
119
|
-
"@zag-js/
|
|
120
|
-
"@zag-js/
|
|
84
|
+
"@ark-ui/anatomy": "^3.3.1",
|
|
85
|
+
"@zag-js/accordion": "0.56.1",
|
|
86
|
+
"@zag-js/avatar": "0.56.1",
|
|
87
|
+
"@zag-js/carousel": "0.56.1",
|
|
88
|
+
"@zag-js/checkbox": "0.56.1",
|
|
89
|
+
"@zag-js/clipboard": "0.56.1",
|
|
90
|
+
"@zag-js/collapsible": "0.56.1",
|
|
91
|
+
"@zag-js/color-picker": "0.56.1",
|
|
92
|
+
"@zag-js/combobox": "0.56.1",
|
|
93
|
+
"@zag-js/date-picker": "0.56.1",
|
|
94
|
+
"@zag-js/dialog": "0.56.1",
|
|
95
|
+
"@zag-js/dom-query": "0.56.1",
|
|
96
|
+
"@zag-js/editable": "0.56.1",
|
|
97
|
+
"@zag-js/file-upload": "0.56.1",
|
|
98
|
+
"@zag-js/hover-card": "0.56.1",
|
|
99
|
+
"@zag-js/file-utils": "0.56.1",
|
|
100
|
+
"@zag-js/i18n-utils": "0.56.1",
|
|
101
|
+
"@zag-js/menu": "0.56.1",
|
|
102
|
+
"@zag-js/number-input": "0.56.1",
|
|
103
|
+
"@zag-js/pagination": "0.56.1",
|
|
104
|
+
"@zag-js/pin-input": "0.56.1",
|
|
105
|
+
"@zag-js/popover": "0.56.1",
|
|
106
|
+
"@zag-js/presence": "0.56.1",
|
|
107
|
+
"@zag-js/progress": "0.56.1",
|
|
108
|
+
"@zag-js/qr-code": "0.56.1",
|
|
109
|
+
"@zag-js/radio-group": "0.56.1",
|
|
110
|
+
"@zag-js/rating-group": "0.56.1",
|
|
111
|
+
"@zag-js/select": "0.56.1",
|
|
112
|
+
"@zag-js/slider": "0.56.1",
|
|
113
|
+
"@zag-js/solid": "0.56.1",
|
|
114
|
+
"@zag-js/splitter": "0.56.1",
|
|
115
|
+
"@zag-js/switch": "0.56.1",
|
|
116
|
+
"@zag-js/tabs": "0.56.1",
|
|
117
|
+
"@zag-js/tags-input": "0.56.1",
|
|
118
|
+
"@zag-js/toast": "0.56.1",
|
|
119
|
+
"@zag-js/toggle-group": "0.56.1",
|
|
120
|
+
"@zag-js/tooltip": "0.56.1",
|
|
121
|
+
"@zag-js/tree-view": "0.56.1",
|
|
122
|
+
"@zag-js/types": "0.56.1"
|
|
121
123
|
},
|
|
122
124
|
"devDependencies": {
|
|
123
|
-
"@biomejs/biome": "1.8.
|
|
125
|
+
"@biomejs/biome": "1.8.1",
|
|
124
126
|
"@release-it/keep-a-changelog": "5.0.0",
|
|
125
127
|
"@solidjs/testing-library": "0.8.8",
|
|
126
128
|
"@storybook/addon-a11y": "8.1.6",
|
|
127
129
|
"@storybook/addon-essentials": "8.1.6",
|
|
128
130
|
"@testing-library/dom": "10.1.0",
|
|
129
|
-
"@testing-library/jest-dom": "6.4.
|
|
131
|
+
"@testing-library/jest-dom": "6.4.6",
|
|
130
132
|
"@testing-library/user-event": "14.5.2",
|
|
131
133
|
"@types/jsdom": "21.1.7",
|
|
132
|
-
"@types/testing-library__jest-dom": "5.14.9",
|
|
133
134
|
"globby": "14.0.1",
|
|
134
135
|
"jsdom": "24.1.0",
|
|
135
|
-
"lucide-solid": "0.
|
|
136
|
+
"lucide-solid": "0.394.0",
|
|
136
137
|
"release-it": "17.3.0",
|
|
137
138
|
"resize-observer-polyfill": "1.5.1",
|
|
138
139
|
"rollup": "4.18.0",
|
|
@@ -142,7 +143,7 @@
|
|
|
142
143
|
"storybook-solidjs": "1.0.0-beta.2",
|
|
143
144
|
"storybook-solidjs-vite": "1.0.0-beta.2",
|
|
144
145
|
"typescript": "5.4.5",
|
|
145
|
-
"vite": "5.2.
|
|
146
|
+
"vite": "5.2.13",
|
|
146
147
|
"vite-plugin-solid": "2.10.2",
|
|
147
148
|
"vitest": "1.6.0"
|
|
148
149
|
},
|