@ark-ui/vue 5.26.0 → 5.26.2
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/angle-slider/angle-slider-root.vue.cjs +2 -0
- package/dist/components/angle-slider/angle-slider-root.vue.js +2 -0
- package/dist/components/angle-slider/angle-slider.types.d.cts +8 -0
- package/dist/components/angle-slider/angle-slider.types.d.ts +8 -0
- package/dist/components/color-picker/color-picker-root.vue.d.cts +1 -1
- package/dist/components/color-picker/color-picker-root.vue.d.ts +1 -1
- package/dist/components/combobox/combobox-root.vue.d.cts +1 -1
- package/dist/components/combobox/combobox-root.vue.d.ts +1 -1
- package/dist/components/date-picker/date-picker-root.vue.d.cts +1 -2
- package/dist/components/date-picker/date-picker-root.vue.d.ts +1 -2
- package/dist/components/dialog/dialog-root.vue.d.cts +1 -1
- package/dist/components/dialog/dialog-root.vue.d.ts +1 -1
- package/dist/components/editable/editable-root.vue.d.cts +1 -1
- package/dist/components/editable/editable-root.vue.d.ts +1 -1
- package/dist/components/floating-panel/floating-panel-root.vue.d.cts +1 -2
- package/dist/components/floating-panel/floating-panel-root.vue.d.ts +1 -2
- package/dist/components/hover-card/hover-card-root.vue.d.cts +1 -1
- package/dist/components/hover-card/hover-card-root.vue.d.ts +1 -1
- package/dist/components/menu/menu-root.vue.d.cts +1 -1
- package/dist/components/menu/menu-root.vue.d.ts +1 -1
- package/dist/components/popover/popover-root.vue.d.cts +1 -1
- package/dist/components/popover/popover-root.vue.d.ts +1 -1
- package/dist/components/select/select-root.vue.d.cts +1 -1
- package/dist/components/select/select-root.vue.d.ts +1 -1
- package/dist/components/tags-input/tags-input-root.vue.d.cts +1 -1
- package/dist/components/tags-input/tags-input-root.vue.d.ts +1 -1
- package/package.json +65 -65
|
@@ -55,6 +55,14 @@ export interface RootProps {
|
|
|
55
55
|
* @default 1
|
|
56
56
|
*/
|
|
57
57
|
step?: number;
|
|
58
|
+
/**
|
|
59
|
+
* The aria-label of the slider.
|
|
60
|
+
*/
|
|
61
|
+
'aria-label'?: string;
|
|
62
|
+
/**
|
|
63
|
+
* The aria-labelledby of the slider.
|
|
64
|
+
*/
|
|
65
|
+
'aria-labelledby'?: string;
|
|
58
66
|
}
|
|
59
67
|
export type RootEmits = {
|
|
60
68
|
/**
|
|
@@ -55,6 +55,14 @@ export interface RootProps {
|
|
|
55
55
|
* @default 1
|
|
56
56
|
*/
|
|
57
57
|
step?: number;
|
|
58
|
+
/**
|
|
59
|
+
* The aria-label of the slider.
|
|
60
|
+
*/
|
|
61
|
+
'aria-label'?: string;
|
|
62
|
+
/**
|
|
63
|
+
* The aria-labelledby of the slider.
|
|
64
|
+
*/
|
|
65
|
+
'aria-labelledby'?: string;
|
|
58
66
|
}
|
|
59
67
|
export type RootEmits = {
|
|
60
68
|
/**
|
|
@@ -4,7 +4,7 @@ import { PolymorphicProps } from '../factory';
|
|
|
4
4
|
import { RootEmits, RootProps } from './color-picker.types';
|
|
5
5
|
import { ValueChangeDetails, OpenChangeDetails, FormatChangeDetails } from '@zag-js/color-picker';
|
|
6
6
|
import { Color, ColorFormat } from '@zag-js/color-utils';
|
|
7
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
7
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
8
8
|
export interface ColorPickerRootBaseProps extends RootProps, RenderStrategyProps, PolymorphicProps {
|
|
9
9
|
}
|
|
10
10
|
export interface ColorPickerRootProps extends ColorPickerRootBaseProps,
|
|
@@ -4,7 +4,7 @@ import { PolymorphicProps } from '../factory';
|
|
|
4
4
|
import { RootEmits, RootProps } from './color-picker.types';
|
|
5
5
|
import { ValueChangeDetails, OpenChangeDetails, FormatChangeDetails } from '@zag-js/color-picker';
|
|
6
6
|
import { Color, ColorFormat } from '@zag-js/color-utils';
|
|
7
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
7
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
8
8
|
export interface ColorPickerRootBaseProps extends RootProps, RenderStrategyProps, PolymorphicProps {
|
|
9
9
|
}
|
|
10
10
|
export interface ColorPickerRootProps extends ColorPickerRootBaseProps,
|
|
@@ -5,7 +5,7 @@ import { CollectionItem } from '../collection';
|
|
|
5
5
|
import { PolymorphicProps } from '../factory';
|
|
6
6
|
import { RootProps } from './combobox.types';
|
|
7
7
|
import { ValueChangeDetails, OpenChangeDetails, HighlightChangeDetails, InputValueChangeDetails } from '@zag-js/combobox';
|
|
8
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
8
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
9
9
|
export interface ComboboxRootBaseProps<T extends CollectionItem> extends RootProps<T>, RenderStrategyProps, PolymorphicProps {
|
|
10
10
|
}
|
|
11
11
|
export interface ComboboxRootProps<T extends CollectionItem> extends ComboboxRootBaseProps<T>,
|
|
@@ -5,7 +5,7 @@ import { CollectionItem } from '../collection';
|
|
|
5
5
|
import { PolymorphicProps } from '../factory';
|
|
6
6
|
import { RootProps } from './combobox.types';
|
|
7
7
|
import { ValueChangeDetails, OpenChangeDetails, HighlightChangeDetails, InputValueChangeDetails } from '@zag-js/combobox';
|
|
8
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
8
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
9
9
|
export interface ComboboxRootBaseProps<T extends CollectionItem> extends RootProps<T>, RenderStrategyProps, PolymorphicProps {
|
|
10
10
|
}
|
|
11
11
|
export interface ComboboxRootProps<T extends CollectionItem> extends ComboboxRootBaseProps<T>,
|
|
@@ -2,8 +2,7 @@ import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, Co
|
|
|
2
2
|
import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
3
3
|
import { PolymorphicProps } from '../factory';
|
|
4
4
|
import { RootEmits, RootProps } from './date-picker.types';
|
|
5
|
-
import { FocusChangeDetails, ValueChangeDetails, OpenChangeDetails, ViewChangeDetails, DateView } from '@zag-js/date-picker';
|
|
6
|
-
import { DateValue } from '@internationalized/date';
|
|
5
|
+
import { FocusChangeDetails, ValueChangeDetails, DateValue, OpenChangeDetails, ViewChangeDetails, DateView } from '@zag-js/date-picker';
|
|
7
6
|
export interface DatePickerRootBaseProps extends RootProps, RenderStrategyProps, PolymorphicProps {
|
|
8
7
|
}
|
|
9
8
|
export interface DatePickerRootProps extends DatePickerRootBaseProps,
|
|
@@ -2,8 +2,7 @@ import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, Co
|
|
|
2
2
|
import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
3
3
|
import { PolymorphicProps } from '../factory';
|
|
4
4
|
import { RootEmits, RootProps } from './date-picker.types';
|
|
5
|
-
import { FocusChangeDetails, ValueChangeDetails, OpenChangeDetails, ViewChangeDetails, DateView } from '@zag-js/date-picker';
|
|
6
|
-
import { DateValue } from '@internationalized/date';
|
|
5
|
+
import { FocusChangeDetails, ValueChangeDetails, DateValue, OpenChangeDetails, ViewChangeDetails, DateView } from '@zag-js/date-picker';
|
|
7
6
|
export interface DatePickerRootBaseProps extends RootProps, RenderStrategyProps, PolymorphicProps {
|
|
8
7
|
}
|
|
9
8
|
export interface DatePickerRootProps extends DatePickerRootBaseProps,
|
|
@@ -2,7 +2,7 @@ import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
|
2
2
|
import { RootEmits, RootProps } from './dialog.types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
4
|
import { OpenChangeDetails } from '@zag-js/dialog';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface DialogRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
7
|
}
|
|
8
8
|
export interface DialogRootProps extends DialogRootBaseProps {
|
|
@@ -2,7 +2,7 @@ import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
|
2
2
|
import { RootEmits, RootProps } from './dialog.types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
4
|
import { OpenChangeDetails } from '@zag-js/dialog';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface DialogRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
7
|
}
|
|
8
8
|
export interface DialogRootProps extends DialogRootBaseProps {
|
|
@@ -2,7 +2,7 @@ import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, Co
|
|
|
2
2
|
import { PolymorphicProps } from '../factory';
|
|
3
3
|
import { RootEmits, RootProps } from './editable.types';
|
|
4
4
|
import { ValueChangeDetails, EditChangeDetails } from '@zag-js/editable';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface EditableRootBaseProps extends RootProps, PolymorphicProps {
|
|
7
7
|
}
|
|
8
8
|
export interface EditableRootProps extends EditableRootBaseProps,
|
|
@@ -2,7 +2,7 @@ import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, Co
|
|
|
2
2
|
import { PolymorphicProps } from '../factory';
|
|
3
3
|
import { RootEmits, RootProps } from './editable.types';
|
|
4
4
|
import { ValueChangeDetails, EditChangeDetails } from '@zag-js/editable';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface EditableRootBaseProps extends RootProps, PolymorphicProps {
|
|
7
7
|
}
|
|
8
8
|
export interface EditableRootProps extends EditableRootBaseProps,
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { RootEmits, RootProps } from './floating-panel.types';
|
|
2
2
|
import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
-
import { OpenChangeDetails, PositionChangeDetails, SizeChangeDetails, StageChangeDetails } from '@zag-js/floating-panel';
|
|
5
|
-
import { Point, Size } from '@zag-js/rect-utils';
|
|
4
|
+
import { OpenChangeDetails, PositionChangeDetails, Point, SizeChangeDetails, Size, StageChangeDetails } from '@zag-js/floating-panel';
|
|
6
5
|
export interface FloatingPanelRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
6
|
}
|
|
8
7
|
export interface FloatingPanelRootEmits extends RootEmits {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { RootEmits, RootProps } from './floating-panel.types';
|
|
2
2
|
import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
-
import { OpenChangeDetails, PositionChangeDetails, SizeChangeDetails, StageChangeDetails } from '@zag-js/floating-panel';
|
|
5
|
-
import { Point, Size } from '@zag-js/rect-utils';
|
|
4
|
+
import { OpenChangeDetails, PositionChangeDetails, Point, SizeChangeDetails, Size, StageChangeDetails } from '@zag-js/floating-panel';
|
|
6
5
|
export interface FloatingPanelRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
6
|
}
|
|
8
7
|
export interface FloatingPanelRootEmits extends RootEmits {
|
|
@@ -2,7 +2,7 @@ import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
|
2
2
|
import { RootEmits, RootProps } from './hover-card.types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
4
|
import { OpenChangeDetails } from '@zag-js/hover-card';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface HoverCardRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
7
|
}
|
|
8
8
|
export interface HoverCardRootProps extends HoverCardRootBaseProps {
|
|
@@ -2,7 +2,7 @@ import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
|
2
2
|
import { RootEmits, RootProps } from './hover-card.types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
4
|
import { OpenChangeDetails } from '@zag-js/hover-card';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface HoverCardRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
7
|
}
|
|
8
8
|
export interface HoverCardRootProps extends HoverCardRootBaseProps {
|
|
@@ -3,7 +3,7 @@ import { PolymorphicProps } from '../factory';
|
|
|
3
3
|
import { RootEmits, RootProps } from './menu.types';
|
|
4
4
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
5
5
|
import { SelectionDetails, OpenChangeDetails, HighlightChangeDetails } from '@zag-js/menu';
|
|
6
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
6
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
7
7
|
export interface MenuRootBaseProps extends RootProps, RenderStrategyProps, PolymorphicProps {
|
|
8
8
|
}
|
|
9
9
|
export interface MenuRootProps extends MenuRootBaseProps {
|
|
@@ -3,7 +3,7 @@ import { PolymorphicProps } from '../factory';
|
|
|
3
3
|
import { RootEmits, RootProps } from './menu.types';
|
|
4
4
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
5
5
|
import { SelectionDetails, OpenChangeDetails, HighlightChangeDetails } from '@zag-js/menu';
|
|
6
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
6
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
7
7
|
export interface MenuRootBaseProps extends RootProps, RenderStrategyProps, PolymorphicProps {
|
|
8
8
|
}
|
|
9
9
|
export interface MenuRootProps extends MenuRootBaseProps {
|
|
@@ -2,7 +2,7 @@ import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
|
2
2
|
import { RootEmits, RootProps } from './popover.types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
4
|
import { OpenChangeDetails } from '@zag-js/popover';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface PopoverRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
7
|
}
|
|
8
8
|
export interface PopoverRootProps extends PopoverRootBaseProps {
|
|
@@ -2,7 +2,7 @@ import { RenderStrategyProps } from '../../utils/use-render-strategy';
|
|
|
2
2
|
import { RootEmits, RootProps } from './popover.types';
|
|
3
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
4
|
import { OpenChangeDetails } from '@zag-js/popover';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface PopoverRootBaseProps extends RootProps, RenderStrategyProps {
|
|
7
7
|
}
|
|
8
8
|
export interface PopoverRootProps extends PopoverRootBaseProps {
|
|
@@ -5,7 +5,7 @@ import { CollectionItem } from '../collection';
|
|
|
5
5
|
import { PolymorphicProps } from '../factory';
|
|
6
6
|
import { RootProps } from './select.types';
|
|
7
7
|
import { SelectionDetails, ValueChangeDetails, OpenChangeDetails, HighlightChangeDetails } from '@zag-js/select';
|
|
8
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
8
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
9
9
|
export interface SelectRootBaseProps<T extends CollectionItem> extends RootProps<T>, RenderStrategyProps, PolymorphicProps {
|
|
10
10
|
}
|
|
11
11
|
export interface SelectRootProps<T extends CollectionItem> extends SelectRootBaseProps<T>,
|
|
@@ -5,7 +5,7 @@ import { CollectionItem } from '../collection';
|
|
|
5
5
|
import { PolymorphicProps } from '../factory';
|
|
6
6
|
import { RootProps } from './select.types';
|
|
7
7
|
import { SelectionDetails, ValueChangeDetails, OpenChangeDetails, HighlightChangeDetails } from '@zag-js/select';
|
|
8
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
8
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
9
9
|
export interface SelectRootBaseProps<T extends CollectionItem> extends RootProps<T>, RenderStrategyProps, PolymorphicProps {
|
|
10
10
|
}
|
|
11
11
|
export interface SelectRootProps<T extends CollectionItem> extends SelectRootBaseProps<T>,
|
|
@@ -2,7 +2,7 @@ import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, Co
|
|
|
2
2
|
import { PolymorphicProps } from '../factory';
|
|
3
3
|
import { RootEmits, RootProps } from './tags-input.types';
|
|
4
4
|
import { ValueChangeDetails, HighlightChangeDetails, InputValueChangeDetails, ValidityChangeDetails } from '@zag-js/tags-input';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface TagsInputRootBaseProps extends RootProps, PolymorphicProps {
|
|
7
7
|
}
|
|
8
8
|
export interface TagsInputRootProps extends TagsInputRootBaseProps,
|
|
@@ -2,7 +2,7 @@ import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, Co
|
|
|
2
2
|
import { PolymorphicProps } from '../factory';
|
|
3
3
|
import { RootEmits, RootProps } from './tags-input.types';
|
|
4
4
|
import { ValueChangeDetails, HighlightChangeDetails, InputValueChangeDetails, ValidityChangeDetails } from '@zag-js/tags-input';
|
|
5
|
-
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/
|
|
5
|
+
import { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from '@zag-js/bottom-sheet';
|
|
6
6
|
export interface TagsInputRootBaseProps extends RootProps, PolymorphicProps {
|
|
7
7
|
}
|
|
8
8
|
export interface TagsInputRootProps extends TagsInputRootBaseProps,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.26.
|
|
4
|
+
"version": "5.26.2",
|
|
5
5
|
"description": "A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"accordion",
|
|
@@ -149,70 +149,70 @@
|
|
|
149
149
|
"sideEffects": false,
|
|
150
150
|
"dependencies": {
|
|
151
151
|
"@internationalized/date": "3.10.0",
|
|
152
|
-
"@tanstack/vue-form": "1.23.
|
|
153
|
-
"@zag-js/accordion": "1.26.
|
|
154
|
-
"@zag-js/anatomy": "1.26.
|
|
155
|
-
"@zag-js/angle-slider": "1.26.
|
|
156
|
-
"@zag-js/async-list": "1.26.
|
|
157
|
-
"@zag-js/auto-resize": "1.26.
|
|
158
|
-
"@zag-js/avatar": "1.26.
|
|
159
|
-
"@zag-js/bottom-sheet": "1.26.
|
|
160
|
-
"@zag-js/carousel": "1.26.
|
|
161
|
-
"@zag-js/checkbox": "1.26.
|
|
162
|
-
"@zag-js/clipboard": "1.26.
|
|
163
|
-
"@zag-js/collapsible": "1.26.
|
|
164
|
-
"@zag-js/collection": "1.26.
|
|
165
|
-
"@zag-js/color-picker": "1.26.
|
|
166
|
-
"@zag-js/color-utils": "1.26.
|
|
167
|
-
"@zag-js/combobox": "1.26.
|
|
168
|
-
"@zag-js/core": "1.26.
|
|
169
|
-
"@zag-js/date-picker": "1.26.
|
|
170
|
-
"@zag-js/date-utils": "1.26.
|
|
171
|
-
"@zag-js/dialog": "1.26.
|
|
172
|
-
"@zag-js/dom-query": "1.26.
|
|
173
|
-
"@zag-js/editable": "1.26.
|
|
174
|
-
"@zag-js/file-upload": "1.26.
|
|
175
|
-
"@zag-js/file-utils": "1.26.
|
|
176
|
-
"@zag-js/floating-panel": "1.26.
|
|
177
|
-
"@zag-js/focus-trap": "1.26.
|
|
178
|
-
"@zag-js/highlight-word": "1.26.
|
|
179
|
-
"@zag-js/hover-card": "1.26.
|
|
180
|
-
"@zag-js/i18n-utils": "1.26.
|
|
181
|
-
"@zag-js/json-tree-utils": "1.26.
|
|
182
|
-
"@zag-js/listbox": "1.26.
|
|
183
|
-
"@zag-js/menu": "1.26.
|
|
184
|
-
"@zag-js/number-input": "1.26.
|
|
185
|
-
"@zag-js/pagination": "1.26.
|
|
186
|
-
"@zag-js/password-input": "1.26.
|
|
187
|
-
"@zag-js/pin-input": "1.26.
|
|
188
|
-
"@zag-js/popover": "1.26.
|
|
189
|
-
"@zag-js/presence": "1.26.
|
|
190
|
-
"@zag-js/progress": "1.26.
|
|
191
|
-
"@zag-js/qr-code": "1.26.
|
|
192
|
-
"@zag-js/radio-group": "1.26.
|
|
193
|
-
"@zag-js/rating-group": "1.26.
|
|
194
|
-
"@zag-js/scroll-area": "1.26.
|
|
195
|
-
"@zag-js/select": "1.26.
|
|
196
|
-
"@zag-js/signature-pad": "1.26.
|
|
197
|
-
"@zag-js/slider": "1.26.
|
|
198
|
-
"@zag-js/splitter": "1.26.
|
|
199
|
-
"@zag-js/steps": "1.26.
|
|
200
|
-
"@zag-js/switch": "1.26.
|
|
201
|
-
"@zag-js/tabs": "1.26.
|
|
202
|
-
"@zag-js/tags-input": "1.26.
|
|
203
|
-
"@zag-js/timer": "1.26.
|
|
204
|
-
"@zag-js/toast": "1.26.
|
|
205
|
-
"@zag-js/toggle": "1.26.
|
|
206
|
-
"@zag-js/toggle-group": "1.26.
|
|
207
|
-
"@zag-js/tooltip": "1.26.
|
|
208
|
-
"@zag-js/tour": "1.26.
|
|
209
|
-
"@zag-js/tree-view": "1.26.
|
|
210
|
-
"@zag-js/types": "1.26.
|
|
211
|
-
"@zag-js/utils": "1.26.
|
|
212
|
-
"@zag-js/vue": "1.26.
|
|
152
|
+
"@tanstack/vue-form": "1.23.7",
|
|
153
|
+
"@zag-js/accordion": "1.26.3",
|
|
154
|
+
"@zag-js/anatomy": "1.26.3",
|
|
155
|
+
"@zag-js/angle-slider": "1.26.3",
|
|
156
|
+
"@zag-js/async-list": "1.26.3",
|
|
157
|
+
"@zag-js/auto-resize": "1.26.3",
|
|
158
|
+
"@zag-js/avatar": "1.26.3",
|
|
159
|
+
"@zag-js/bottom-sheet": "1.26.3",
|
|
160
|
+
"@zag-js/carousel": "1.26.3",
|
|
161
|
+
"@zag-js/checkbox": "1.26.3",
|
|
162
|
+
"@zag-js/clipboard": "1.26.3",
|
|
163
|
+
"@zag-js/collapsible": "1.26.3",
|
|
164
|
+
"@zag-js/collection": "1.26.3",
|
|
165
|
+
"@zag-js/color-picker": "1.26.3",
|
|
166
|
+
"@zag-js/color-utils": "1.26.3",
|
|
167
|
+
"@zag-js/combobox": "1.26.3",
|
|
168
|
+
"@zag-js/core": "1.26.3",
|
|
169
|
+
"@zag-js/date-picker": "1.26.3",
|
|
170
|
+
"@zag-js/date-utils": "1.26.3",
|
|
171
|
+
"@zag-js/dialog": "1.26.3",
|
|
172
|
+
"@zag-js/dom-query": "1.26.3",
|
|
173
|
+
"@zag-js/editable": "1.26.3",
|
|
174
|
+
"@zag-js/file-upload": "1.26.3",
|
|
175
|
+
"@zag-js/file-utils": "1.26.3",
|
|
176
|
+
"@zag-js/floating-panel": "1.26.3",
|
|
177
|
+
"@zag-js/focus-trap": "1.26.3",
|
|
178
|
+
"@zag-js/highlight-word": "1.26.3",
|
|
179
|
+
"@zag-js/hover-card": "1.26.3",
|
|
180
|
+
"@zag-js/i18n-utils": "1.26.3",
|
|
181
|
+
"@zag-js/json-tree-utils": "1.26.3",
|
|
182
|
+
"@zag-js/listbox": "1.26.3",
|
|
183
|
+
"@zag-js/menu": "1.26.3",
|
|
184
|
+
"@zag-js/number-input": "1.26.3",
|
|
185
|
+
"@zag-js/pagination": "1.26.3",
|
|
186
|
+
"@zag-js/password-input": "1.26.3",
|
|
187
|
+
"@zag-js/pin-input": "1.26.3",
|
|
188
|
+
"@zag-js/popover": "1.26.3",
|
|
189
|
+
"@zag-js/presence": "1.26.3",
|
|
190
|
+
"@zag-js/progress": "1.26.3",
|
|
191
|
+
"@zag-js/qr-code": "1.26.3",
|
|
192
|
+
"@zag-js/radio-group": "1.26.3",
|
|
193
|
+
"@zag-js/rating-group": "1.26.3",
|
|
194
|
+
"@zag-js/scroll-area": "1.26.3",
|
|
195
|
+
"@zag-js/select": "1.26.3",
|
|
196
|
+
"@zag-js/signature-pad": "1.26.3",
|
|
197
|
+
"@zag-js/slider": "1.26.3",
|
|
198
|
+
"@zag-js/splitter": "1.26.3",
|
|
199
|
+
"@zag-js/steps": "1.26.3",
|
|
200
|
+
"@zag-js/switch": "1.26.3",
|
|
201
|
+
"@zag-js/tabs": "1.26.3",
|
|
202
|
+
"@zag-js/tags-input": "1.26.3",
|
|
203
|
+
"@zag-js/timer": "1.26.3",
|
|
204
|
+
"@zag-js/toast": "1.26.3",
|
|
205
|
+
"@zag-js/toggle": "1.26.3",
|
|
206
|
+
"@zag-js/toggle-group": "1.26.3",
|
|
207
|
+
"@zag-js/tooltip": "1.26.3",
|
|
208
|
+
"@zag-js/tour": "1.26.3",
|
|
209
|
+
"@zag-js/tree-view": "1.26.3",
|
|
210
|
+
"@zag-js/types": "1.26.3",
|
|
211
|
+
"@zag-js/utils": "1.26.3",
|
|
212
|
+
"@zag-js/vue": "1.26.3"
|
|
213
213
|
},
|
|
214
214
|
"devDependencies": {
|
|
215
|
-
"@biomejs/biome": "2.2.
|
|
215
|
+
"@biomejs/biome": "2.2.6",
|
|
216
216
|
"@histoire/plugin-vue": "0.17.17",
|
|
217
217
|
"@testing-library/dom": "10.4.1",
|
|
218
218
|
"@testing-library/jest-dom": "6.9.1",
|
|
@@ -229,14 +229,14 @@
|
|
|
229
229
|
"histoire": "0.17.17",
|
|
230
230
|
"image-conversion": "2.1.1",
|
|
231
231
|
"jsdom": "26.1.0",
|
|
232
|
-
"lucide-vue-next": "0.
|
|
232
|
+
"lucide-vue-next": "0.545.0",
|
|
233
233
|
"resize-observer-polyfill": "1.5.1",
|
|
234
234
|
"typescript": "5.9.3",
|
|
235
235
|
"vite": "7.1.9",
|
|
236
236
|
"vite-plugin-dts": "4.5.4",
|
|
237
237
|
"vitest": "3.2.4",
|
|
238
238
|
"vue": "3.5.22",
|
|
239
|
-
"vue-tsc": "3.1.
|
|
239
|
+
"vue-tsc": "3.1.1"
|
|
240
240
|
},
|
|
241
241
|
"peerDependencies": {
|
|
242
242
|
"vue": ">=3.5.0"
|