@soybeanjs/headless 0.29.0-beta.5 → 0.29.0-beta.7
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/autocomplete/autocomplete-compact.vue.d.ts +2 -2
- package/dist/components/autocomplete/autocomplete-root.vue.d.ts +3 -3
- package/dist/components/calendar-range/calendar-range-root.vue.d.ts +5 -5
- package/dist/components/collapsible/collapsible-root.vue.d.ts +1 -1
- package/dist/components/color-picker/color-picker-compact.vue.d.ts +3 -3
- package/dist/components/color-picker/color-picker-root.vue.d.ts +3 -3
- package/dist/components/color-slider/color-slider-root.vue.d.ts +1 -1
- package/dist/components/color-swatch-picker/color-swatch-picker-compact.vue.d.ts +2 -2
- package/dist/components/color-swatch-picker/color-swatch-picker-root.vue.d.ts +2 -2
- package/dist/components/combobox/combobox-compact.vue.d.ts +2 -2
- package/dist/components/combobox/combobox-root.vue.d.ts +2 -2
- package/dist/components/command/command-compact.vue.d.ts +2 -2
- package/dist/components/context-menu/context-menu-checkbox-compact.vue.d.ts +2 -2
- package/dist/components/context-menu/context-menu-radio-compact.vue.d.ts +2 -2
- package/dist/components/date-field/date-field-root.vue.d.ts +3 -3
- package/dist/components/date-picker/date-picker-compact.vue.d.ts +43 -43
- package/dist/components/date-range-field/date-range-field-root.vue.d.ts +3 -3
- package/dist/components/date-range-picker/date-range-picker-compact.vue.d.ts +43 -43
- package/dist/components/dropdown-menu/dropdown-menu-checkbox-compact.vue.d.ts +2 -2
- package/dist/components/dropdown-menu/dropdown-menu-radio-compact.vue.d.ts +2 -2
- package/dist/components/dropdown-menu/dropdown-menu-root.vue.d.ts +1 -1
- package/dist/components/editable/editable-root.vue.d.ts +1 -1
- package/dist/components/input-otp/input-otp-compact.vue.d.ts +4 -4
- package/dist/components/input-otp/input-otp-root.vue.d.ts +4 -4
- package/dist/components/layout/layout-root.vue.d.ts +1 -1
- package/dist/components/listbox/listbox-root.vue.d.ts +2 -2
- package/dist/components/menubar/menubar-compact.vue.d.ts +2 -2
- package/dist/components/navigation-menu/navigation-menu-root.vue.d.ts +1 -1
- package/dist/components/page-tabs/page-tabs-compact.vue.d.ts +2 -2
- package/dist/components/popper/popper-positioner.vue.d.ts +41 -41
- package/dist/components/select/select-compact.vue.d.ts +2 -2
- package/dist/components/select/select-root.vue.d.ts +2 -2
- package/dist/components/slider/slider-root.vue.d.ts +1 -1
- package/dist/components/splitter/splitter-group.vue.d.ts +2 -2
- package/dist/components/splitter/splitter-resize-handle.vue.d.ts +1 -1
- package/dist/components/tags-input/tags-input-compact.vue.d.ts +2 -2
- package/dist/components/tags-input/tags-input-root.vue.d.ts +2 -2
- package/dist/components/time-field/time-field-root.vue.d.ts +3 -3
- package/dist/components/time-range-field/time-range-field-root.vue.d.ts +4 -4
- package/dist/components/tree-menu/tree-menu-root.vue.d.ts +1 -1
- package/package.json +3 -3
|
@@ -4,8 +4,8 @@ import { AutocompleteCompactProps, AutocompleteCompactSlots, AutocompleteHighlig
|
|
|
4
4
|
declare const __VLS_export: <T extends AutocompleteSingleOptionData = AutocompleteSingleOptionData>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
5
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<AutocompleteCompactProps<T> & {
|
|
6
6
|
onSelect?: ((item: T) => any) | undefined;
|
|
7
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8
7
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
8
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
9
|
onHighlight?: ((payload?: AutocompleteHighlightPayload | undefined) => any) | undefined;
|
|
10
10
|
}> & (typeof globalThis extends {
|
|
11
11
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -13,7 +13,7 @@ declare const __VLS_export: <T extends AutocompleteSingleOptionData = Autocomple
|
|
|
13
13
|
expose: (exposed: {}) => void;
|
|
14
14
|
attrs: any;
|
|
15
15
|
slots: AutocompleteCompactSlots<T>;
|
|
16
|
-
emit: ((evt: "select", item: T) => void) & ((evt: "update:
|
|
16
|
+
emit: ((evt: "select", item: T) => void) & ((evt: "update:modelValue", value: string) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "highlight", payload?: AutocompleteHighlightPayload | undefined) => void);
|
|
17
17
|
}>) => import("vue").VNode & {
|
|
18
18
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
19
19
|
};
|
|
@@ -18,16 +18,16 @@ declare const __VLS_base: import("vue").DefineComponent<AutocompleteRootProps, {
|
|
|
18
18
|
highlightFirstItem: () => void;
|
|
19
19
|
highlightSelected: (event?: Event) => Promise<void> | undefined;
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
-
"update:open": (value: boolean) => any;
|
|
22
21
|
"update:modelValue": (value: string) => any;
|
|
22
|
+
"update:open": (value: boolean) => any;
|
|
23
23
|
highlight: (payload?: AutocompleteHighlightPayload | undefined) => any;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<AutocompleteRootProps> & Readonly<{
|
|
25
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
26
25
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
26
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
27
27
|
onHighlight?: ((payload?: AutocompleteHighlightPayload | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
|
-
open: boolean;
|
|
30
29
|
modelValue: string;
|
|
30
|
+
open: boolean;
|
|
31
31
|
defaultOpen: boolean;
|
|
32
32
|
highlightOnHover: boolean;
|
|
33
33
|
openOnFocus: boolean;
|
|
@@ -11,23 +11,23 @@ declare const __VLS_base: import("vue").DefineComponent<CalendarRangeRootProps,
|
|
|
11
11
|
"onUpdate:placeholder"?: ((date: DateValue) => any) | undefined;
|
|
12
12
|
"onUpdate:startValue"?: ((date: DateValue | undefined) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
|
-
placeholder: DateValue;
|
|
15
14
|
disabled: boolean;
|
|
15
|
+
placeholder: DateValue;
|
|
16
16
|
defaultValue: DateRange;
|
|
17
|
-
defaultPlaceholder: DateValue;
|
|
18
17
|
readonly: boolean;
|
|
18
|
+
defaultPlaceholder: DateValue;
|
|
19
|
+
allowNonContiguousRanges: boolean;
|
|
19
20
|
pagedNavigation: boolean;
|
|
20
21
|
preventDeselect: boolean;
|
|
22
|
+
maximumDays: number;
|
|
21
23
|
weekdayFormat: WeekDayFormat;
|
|
22
24
|
fixedWeeks: boolean;
|
|
23
25
|
numberOfMonths: number;
|
|
24
26
|
initialFocus: boolean;
|
|
25
27
|
isDateDisabled: DateMatcher;
|
|
26
28
|
isDateUnavailable: DateMatcher;
|
|
27
|
-
disableDaysOutsideCurrentView: boolean;
|
|
28
|
-
allowNonContiguousRanges: boolean;
|
|
29
|
-
maximumDays: number;
|
|
30
29
|
isDateHighlightable: DateMatcher;
|
|
30
|
+
disableDaysOutsideCurrentView: boolean;
|
|
31
31
|
fixedDate: "start" | "end";
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: import("vue").DefineComponent<CollapsibleRootProps, {
|
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
|
|
15
15
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
open: boolean;
|
|
18
17
|
unmountOnHide: boolean;
|
|
18
|
+
open: boolean;
|
|
19
19
|
defaultOpen: boolean;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -14,8 +14,8 @@ type __VLS_Slots = {} & {
|
|
|
14
14
|
};
|
|
15
15
|
declare const __VLS_base: import("vue").DefineComponent<ColorPickerCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
16
|
change: (value: string) => any;
|
|
17
|
-
"update:open": (value: boolean) => any;
|
|
18
17
|
"update:modelValue": (value: string) => any;
|
|
18
|
+
"update:open": (value: boolean) => any;
|
|
19
19
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20
20
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
21
21
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -26,8 +26,8 @@ declare const __VLS_base: import("vue").DefineComponent<ColorPickerCompactProps,
|
|
|
26
26
|
"update:format": (value: ColorFormat) => any;
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<ColorPickerCompactProps> & Readonly<{
|
|
28
28
|
onChange?: ((value: string) => any) | undefined;
|
|
29
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
30
29
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
30
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
31
31
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
32
32
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
33
33
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -40,11 +40,11 @@ declare const __VLS_base: import("vue").DefineComponent<ColorPickerCompactProps,
|
|
|
40
40
|
open: boolean;
|
|
41
41
|
placement: Placement;
|
|
42
42
|
showArrow: boolean;
|
|
43
|
-
colorSpace: ColorSpace;
|
|
44
43
|
showAlpha: boolean;
|
|
45
44
|
showFields: boolean;
|
|
46
45
|
showSwatches: boolean;
|
|
47
46
|
swatches: string[];
|
|
47
|
+
colorSpace: ColorSpace;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
49
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
50
50
|
declare const _default: typeof __VLS_export;
|
|
@@ -11,8 +11,8 @@ declare var __VLS_1: {
|
|
|
11
11
|
displayFormat: ColorFormat;
|
|
12
12
|
displayFormatLabel: string;
|
|
13
13
|
areaChannel: {
|
|
14
|
-
readonly x: "
|
|
15
|
-
readonly y: "
|
|
14
|
+
readonly x: "chroma" | "saturation";
|
|
15
|
+
readonly y: "brightness" | "lightness";
|
|
16
16
|
};
|
|
17
17
|
setColor: typeof setColor;
|
|
18
18
|
setFormat: typeof setFormat;
|
|
@@ -35,8 +35,8 @@ declare const __VLS_base: import("vue").DefineComponent<ColorPickerRootProps, {}
|
|
|
35
35
|
format: ColorFormat;
|
|
36
36
|
modelValue: string | ColorValue;
|
|
37
37
|
defaultValue: string | ColorValue;
|
|
38
|
-
colorSpace: ColorSpace;
|
|
39
38
|
defaultFormat: ColorFormat;
|
|
39
|
+
colorSpace: ColorSpace;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
41
41
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
42
42
|
declare const _default: typeof __VLS_export;
|
|
@@ -23,8 +23,8 @@ declare const __VLS_base: import("vue").DefineComponent<ColorSliderRootProps, {}
|
|
|
23
23
|
step: number;
|
|
24
24
|
modelValue: string | ColorValue;
|
|
25
25
|
defaultValue: string | ColorValue;
|
|
26
|
-
inverted: boolean;
|
|
27
26
|
colorSpace: ColorSpace;
|
|
27
|
+
inverted: boolean;
|
|
28
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
29
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -7,8 +7,8 @@ declare const __VLS_export: <M extends boolean = false>(__VLS_props: NonNullable
|
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ColorSwatchPickerCompactProps<M> & {
|
|
8
8
|
onSelect?: ((event: SelectEvent<string>) => any) | undefined;
|
|
9
9
|
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
10
|
-
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
11
10
|
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
11
|
+
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
12
12
|
onLeave?: ((event: Event) => any) | undefined;
|
|
13
13
|
}> & (typeof globalThis extends {
|
|
14
14
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -16,7 +16,7 @@ declare const __VLS_export: <M extends boolean = false>(__VLS_props: NonNullable
|
|
|
16
16
|
expose: (exposed: {}) => void;
|
|
17
17
|
attrs: any;
|
|
18
18
|
slots: ColorSwatchPickerCompactSlots<M>;
|
|
19
|
-
emit: ((evt: "select", event: SelectEvent<string>) => void) & ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "
|
|
19
|
+
emit: ((evt: "select", event: SelectEvent<string>) => void) & ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "leave", event: Event) => void);
|
|
20
20
|
}>) => import("vue").VNode & {
|
|
21
21
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
22
22
|
};
|
|
@@ -6,8 +6,8 @@ import { ColorSwatchPickerRootProps } from "./types.js";
|
|
|
6
6
|
declare const __VLS_export: <M extends boolean>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ColorSwatchPickerRootProps<M> & {
|
|
8
8
|
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
9
|
-
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
10
9
|
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
10
|
+
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
11
11
|
onLeave?: ((event: Event) => any) | undefined;
|
|
12
12
|
}> & (typeof globalThis extends {
|
|
13
13
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -19,7 +19,7 @@ declare const __VLS_export: <M extends boolean>(__VLS_props: NonNullable<Awaited
|
|
|
19
19
|
modelValue: ((M extends true ? string[] : string) | undefined) & Exclude<M extends true ? string[] : string, undefined>;
|
|
20
20
|
}) => any;
|
|
21
21
|
};
|
|
22
|
-
emit: ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "
|
|
22
|
+
emit: ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "leave", event: Event) => void);
|
|
23
23
|
}>) => import("vue").VNode & {
|
|
24
24
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
25
25
|
};
|
|
@@ -6,8 +6,8 @@ import { ComboboxCompactProps, ComboboxCompactSlots } from "./types.js";
|
|
|
6
6
|
declare const __VLS_export: <M extends boolean = false>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ComboboxCompactProps<M> & {
|
|
8
8
|
onSelect?: ((event: SelectEvent<string>) => any) | undefined;
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
13
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -22,7 +22,7 @@ declare const __VLS_export: <M extends boolean = false>(__VLS_props: NonNullable
|
|
|
22
22
|
expose: (exposed: {}) => void;
|
|
23
23
|
attrs: any;
|
|
24
24
|
slots: ComboboxCompactSlots<M>;
|
|
25
|
-
emit: ((evt: "select", event: SelectEvent<string>) => void) & ((evt: "update:
|
|
25
|
+
emit: ((evt: "select", event: SelectEvent<string>) => void) & ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "focusOutside", event: FocusOutsideEvent) => void) & ((evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((evt: "openAutoFocus", event: Event) => void) & ((evt: "closeAutoFocus", event: Event) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "placed") => void);
|
|
26
26
|
}>) => import("vue").VNode & {
|
|
27
27
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
28
28
|
};
|
|
@@ -4,8 +4,8 @@ import { ComboboxRootProps } from "./types.js";
|
|
|
4
4
|
//#region src/components/combobox/combobox-root.vue.d.ts
|
|
5
5
|
declare const __VLS_export: <M extends boolean = false>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
6
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ComboboxRootProps<M> & {
|
|
7
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8
7
|
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
8
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
9
|
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
10
10
|
}> & (typeof globalThis extends {
|
|
11
11
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -28,7 +28,7 @@ declare const __VLS_export: <M extends boolean = false>(__VLS_props: NonNullable
|
|
|
28
28
|
modelValue: (M extends true ? string[] : string) | undefined;
|
|
29
29
|
}) => any;
|
|
30
30
|
};
|
|
31
|
-
emit: ((evt: "update:
|
|
31
|
+
emit: ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void);
|
|
32
32
|
}>) => import("vue").VNode & {
|
|
33
33
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
34
34
|
};
|
|
@@ -7,8 +7,8 @@ declare const __VLS_export: <T extends CommandSingleOptionData = CommandSingleOp
|
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<CommandCompactProps<T> & {
|
|
8
8
|
onSelect?: ((event: SelectEvent<string>) => any) | undefined;
|
|
9
9
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
|
-
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
11
10
|
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
11
|
+
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
12
12
|
onLeave?: ((event: Event) => any) | undefined;
|
|
13
13
|
"onUpdate:searchTerm"?: ((value: string) => any) | undefined;
|
|
14
14
|
}> & (typeof globalThis extends {
|
|
@@ -17,7 +17,7 @@ declare const __VLS_export: <T extends CommandSingleOptionData = CommandSingleOp
|
|
|
17
17
|
expose: (exposed: {}) => void;
|
|
18
18
|
attrs: any;
|
|
19
19
|
slots: CommandCompactSlots<T>;
|
|
20
|
-
emit: ((evt: "select", event: SelectEvent<string>) => void) & ((evt: "update:modelValue", value: string) => void) & ((evt: "
|
|
20
|
+
emit: ((evt: "select", event: SelectEvent<string>) => void) & ((evt: "update:modelValue", value: string) => void) & ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "leave", event: Event) => void) & ((evt: "update:searchTerm", value: string) => void);
|
|
21
21
|
}>) => import("vue").VNode & {
|
|
22
22
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
23
23
|
};
|
|
@@ -6,8 +6,8 @@ import { ContextMenuCheckboxCompactProps, ContextMenuCheckboxCompactSlots } from
|
|
|
6
6
|
declare const __VLS_export: <T extends DefinedValue = DefinedValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ContextMenuCheckboxCompactProps<T> & {
|
|
8
8
|
onSelect?: ((item: MenuCheckboxOptionData<T>, event: Event) => any) | undefined;
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
13
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -21,7 +21,7 @@ declare const __VLS_export: <T extends DefinedValue = DefinedValue>(__VLS_props:
|
|
|
21
21
|
expose: (exposed: {}) => void;
|
|
22
22
|
attrs: any;
|
|
23
23
|
slots: ContextMenuCheckboxCompactSlots<T>;
|
|
24
|
-
emit: ((evt: "select", item: MenuCheckboxOptionData<T>, event: Event) => void) & ((evt: "update:
|
|
24
|
+
emit: ((evt: "select", item: MenuCheckboxOptionData<T>, event: Event) => void) & ((evt: "update:modelValue", value: T[]) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "focusOutside", event: FocusOutsideEvent) => void) & ((evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((evt: "openAutoFocus", event: Event) => void) & ((evt: "closeAutoFocus", event: Event) => void) & ((evt: "entryFocus", event: Event) => void);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -6,8 +6,8 @@ import { ContextMenuRadioCompactProps, ContextMenuRadioCompactSlots } from "./ty
|
|
|
6
6
|
declare const __VLS_export: <T extends AcceptableBooleanValue = AcceptableBooleanValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ContextMenuRadioCompactProps<T> & {
|
|
8
8
|
onSelect?: ((item: MenuRadioOptionData<T>, event: Event) => any) | undefined;
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((payload: Exclude<T, undefined>) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
13
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -21,7 +21,7 @@ declare const __VLS_export: <T extends AcceptableBooleanValue = AcceptableBoolea
|
|
|
21
21
|
expose: (exposed: {}) => void;
|
|
22
22
|
attrs: any;
|
|
23
23
|
slots: ContextMenuRadioCompactSlots<T>;
|
|
24
|
-
emit: ((evt: "select", item: MenuRadioOptionData<T>, event: Event) => void) & ((evt: "update:
|
|
24
|
+
emit: ((evt: "select", item: MenuRadioOptionData<T>, event: Event) => void) & ((evt: "update:modelValue", payload: Exclude<T, undefined>) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "focusOutside", event: FocusOutsideEvent) => void) & ((evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((evt: "openAutoFocus", event: Event) => void) & ((evt: "closeAutoFocus", event: Event) => void) & ((evt: "entryFocus", event: Event) => void);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -10,15 +10,15 @@ declare const __VLS_base: import("vue").DefineComponent<DateFieldRootProps, {},
|
|
|
10
10
|
"onUpdate:modelValue"?: ((value: import("@internationalized/date").DateValue | undefined) => any) | undefined;
|
|
11
11
|
"onUpdate:placeholder"?: ((value: import("@internationalized/date").DateValue) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
-
placeholder: import("@internationalized/date").DateValue;
|
|
14
13
|
disabled: boolean;
|
|
14
|
+
placeholder: import("@internationalized/date").DateValue;
|
|
15
15
|
step: DateStep;
|
|
16
16
|
defaultValue: import("@internationalized/date").DateValue;
|
|
17
|
-
defaultPlaceholder: import("@internationalized/date").DateValue;
|
|
18
17
|
readonly: boolean;
|
|
18
|
+
defaultPlaceholder: import("@internationalized/date").DateValue;
|
|
19
19
|
isDateUnavailable: DateMatcher;
|
|
20
|
-
hourCycle: 12 | 24;
|
|
21
20
|
granularity: Granularity;
|
|
21
|
+
hourCycle: 12 | 24;
|
|
22
22
|
hideTimeZone: boolean;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -157,46 +157,11 @@ declare var __VLS_24: {
|
|
|
157
157
|
innerHTML: string | undefined;
|
|
158
158
|
class: import("vue").ClassValue | undefined;
|
|
159
159
|
style: import("vue").StyleValue | undefined;
|
|
160
|
-
|
|
161
|
-
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
162
|
-
contextmenu: string | undefined;
|
|
163
|
-
draggable: (boolean | "true" | "false") | undefined;
|
|
164
|
-
enterkeyhint: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
165
|
-
enterKeyHint: import("vue").HTMLAttributes["enterkeyhint"];
|
|
166
|
-
hidden: (boolean | "true" | "false") | "" | "hidden" | "until-found" | undefined;
|
|
160
|
+
color: string | undefined;
|
|
167
161
|
id: string | undefined;
|
|
168
|
-
inert: (boolean | "true" | "false") | undefined;
|
|
169
162
|
lang: string | undefined;
|
|
170
|
-
spellcheck: (boolean | "true" | "false") | undefined;
|
|
171
|
-
tabindex: (string | number) | undefined;
|
|
172
|
-
title: string | undefined;
|
|
173
|
-
translate: "yes" | "no" | undefined;
|
|
174
|
-
radiogroup: string | undefined;
|
|
175
163
|
role: string | undefined;
|
|
176
|
-
|
|
177
|
-
datatype: string | undefined;
|
|
178
|
-
inlist: any;
|
|
179
|
-
prefix: string | undefined;
|
|
180
|
-
property: string | undefined;
|
|
181
|
-
resource: string | undefined;
|
|
182
|
-
typeof: string | undefined;
|
|
183
|
-
vocab: string | undefined;
|
|
184
|
-
autocapitalize: string | undefined;
|
|
185
|
-
autocorrect: string | undefined;
|
|
186
|
-
autosave: string | undefined;
|
|
187
|
-
color: string | undefined;
|
|
188
|
-
itemprop: string | undefined;
|
|
189
|
-
itemscope: (boolean | "true" | "false") | undefined;
|
|
190
|
-
itemtype: string | undefined;
|
|
191
|
-
itemid: string | undefined;
|
|
192
|
-
itemref: string | undefined;
|
|
193
|
-
results: (string | number) | undefined;
|
|
194
|
-
security: string | undefined;
|
|
195
|
-
unselectable: "on" | "off" | undefined;
|
|
196
|
-
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
197
|
-
is: string | undefined;
|
|
198
|
-
exportparts: string;
|
|
199
|
-
part: string;
|
|
164
|
+
tabindex: (string | number) | undefined;
|
|
200
165
|
'aria-activedescendant': string | undefined;
|
|
201
166
|
'aria-atomic': (boolean | "true" | "false") | undefined;
|
|
202
167
|
'aria-autocomplete': "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -245,26 +210,61 @@ declare var __VLS_24: {
|
|
|
245
210
|
'aria-valuemin': (string | number) | undefined;
|
|
246
211
|
'aria-valuenow': (string | number) | undefined;
|
|
247
212
|
'aria-valuetext': string | undefined;
|
|
213
|
+
accesskey: string | undefined;
|
|
214
|
+
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
215
|
+
contextmenu: string | undefined;
|
|
216
|
+
draggable: (boolean | "true" | "false") | undefined;
|
|
217
|
+
enterkeyhint: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
218
|
+
enterKeyHint: import("vue").HTMLAttributes["enterkeyhint"];
|
|
219
|
+
hidden: (boolean | "true" | "false") | "" | "hidden" | "until-found" | undefined;
|
|
220
|
+
inert: (boolean | "true" | "false") | undefined;
|
|
221
|
+
spellcheck: (boolean | "true" | "false") | undefined;
|
|
222
|
+
title: string | undefined;
|
|
223
|
+
translate: "yes" | "no" | undefined;
|
|
224
|
+
radiogroup: string | undefined;
|
|
225
|
+
about: string | undefined;
|
|
226
|
+
datatype: string | undefined;
|
|
227
|
+
inlist: any;
|
|
228
|
+
prefix: string | undefined;
|
|
229
|
+
property: string | undefined;
|
|
230
|
+
resource: string | undefined;
|
|
231
|
+
typeof: string | undefined;
|
|
232
|
+
vocab: string | undefined;
|
|
233
|
+
autocapitalize: string | undefined;
|
|
234
|
+
autocorrect: string | undefined;
|
|
235
|
+
autosave: string | undefined;
|
|
236
|
+
itemprop: string | undefined;
|
|
237
|
+
itemscope: (boolean | "true" | "false") | undefined;
|
|
238
|
+
itemtype: string | undefined;
|
|
239
|
+
itemid: string | undefined;
|
|
240
|
+
itemref: string | undefined;
|
|
241
|
+
results: (string | number) | undefined;
|
|
242
|
+
security: string | undefined;
|
|
243
|
+
unselectable: "on" | "off" | undefined;
|
|
244
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
245
|
+
is: string | undefined;
|
|
246
|
+
exportparts: string;
|
|
247
|
+
part: string;
|
|
248
248
|
asChild: boolean;
|
|
249
249
|
as: AsTag | import("vue").Component;
|
|
250
250
|
}> & {
|
|
251
251
|
readonly open: boolean | undefined;
|
|
252
252
|
} & {
|
|
253
|
-
readonly inlist: boolean;
|
|
254
253
|
readonly disabled: boolean;
|
|
254
|
+
readonly inlist: boolean;
|
|
255
255
|
readonly asChild: boolean;
|
|
256
256
|
readonly open: boolean | undefined;
|
|
257
|
+
readonly readonly: boolean;
|
|
257
258
|
readonly showArrow: boolean;
|
|
258
259
|
readonly defaultOpen: boolean;
|
|
259
260
|
readonly modal: boolean;
|
|
260
|
-
readonly multiple: boolean;
|
|
261
|
-
readonly readonly: boolean;
|
|
262
261
|
readonly pagedNavigation: boolean;
|
|
263
262
|
readonly preventDeselect: boolean;
|
|
264
263
|
readonly fixedWeeks: boolean;
|
|
265
264
|
readonly initialFocus: boolean;
|
|
266
265
|
readonly disableDaysOutsideCurrentView: boolean;
|
|
267
|
-
|
|
266
|
+
readonly multiple: boolean;
|
|
267
|
+
}, "triggerProps" | "positionerProps" | "open" | "placement" | "showArrow" | "portalProps" | "popupProps" | "arrowProps" | "closeProps" | "defaultOpen" | "modal">;
|
|
268
268
|
onUpdateModelValue: (value: DateValue | undefined) => void;
|
|
269
269
|
onUpdatePlaceholder: (placeholder: DateValue) => void;
|
|
270
270
|
};
|
|
@@ -272,8 +272,8 @@ type __VLS_Slots = {} & {
|
|
|
272
272
|
default?: (props: typeof __VLS_24) => any;
|
|
273
273
|
};
|
|
274
274
|
declare const __VLS_base: import("vue").DefineComponent<DatePickerCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
275
|
-
"update:open": (value: boolean) => any;
|
|
276
275
|
"update:modelValue": (date: DateValue | undefined) => any;
|
|
276
|
+
"update:open": (value: boolean) => any;
|
|
277
277
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
278
278
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
279
279
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -282,8 +282,8 @@ declare const __VLS_base: import("vue").DefineComponent<DatePickerCompactProps,
|
|
|
282
282
|
closeAutoFocus: (event: Event) => any;
|
|
283
283
|
"update:placeholder": (date: DateValue) => any;
|
|
284
284
|
}, string, import("vue").PublicProps, Readonly<DatePickerCompactProps> & Readonly<{
|
|
285
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
286
285
|
"onUpdate:modelValue"?: ((date: DateValue | undefined) => any) | undefined;
|
|
286
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
287
287
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
288
288
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
289
289
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -13,15 +13,15 @@ declare const __VLS_base: import("vue").DefineComponent<DateRangeFieldRootProps,
|
|
|
13
13
|
"onUpdate:startValue"?: ((date: import("@internationalized/date").DateValue | undefined) => any) | undefined;
|
|
14
14
|
"onUpdate:endValue"?: ((date: import("@internationalized/date").DateValue | undefined) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
placeholder: import("@internationalized/date").DateValue;
|
|
17
16
|
disabled: boolean;
|
|
17
|
+
placeholder: import("@internationalized/date").DateValue;
|
|
18
18
|
step: DateStep;
|
|
19
19
|
defaultValue: DateRange;
|
|
20
|
-
defaultPlaceholder: import("@internationalized/date").DateValue;
|
|
21
20
|
readonly: boolean;
|
|
21
|
+
defaultPlaceholder: import("@internationalized/date").DateValue;
|
|
22
22
|
isDateUnavailable: DateMatcher;
|
|
23
|
-
hourCycle: 12 | 24;
|
|
24
23
|
granularity: Granularity;
|
|
24
|
+
hourCycle: 12 | 24;
|
|
25
25
|
hideTimeZone: boolean;
|
|
26
26
|
startName: string;
|
|
27
27
|
endName: string;
|
|
@@ -160,46 +160,11 @@ declare var __VLS_24: {
|
|
|
160
160
|
innerHTML: string | undefined;
|
|
161
161
|
class: import("vue").ClassValue | undefined;
|
|
162
162
|
style: import("vue").StyleValue | undefined;
|
|
163
|
-
|
|
164
|
-
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
165
|
-
contextmenu: string | undefined;
|
|
166
|
-
draggable: (boolean | "true" | "false") | undefined;
|
|
167
|
-
enterkeyhint: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
168
|
-
enterKeyHint: import("vue").HTMLAttributes["enterkeyhint"];
|
|
169
|
-
hidden: (boolean | "true" | "false") | "" | "hidden" | "until-found" | undefined;
|
|
163
|
+
color: string | undefined;
|
|
170
164
|
id: string | undefined;
|
|
171
|
-
inert: (boolean | "true" | "false") | undefined;
|
|
172
165
|
lang: string | undefined;
|
|
173
|
-
spellcheck: (boolean | "true" | "false") | undefined;
|
|
174
|
-
tabindex: (string | number) | undefined;
|
|
175
|
-
title: string | undefined;
|
|
176
|
-
translate: "yes" | "no" | undefined;
|
|
177
|
-
radiogroup: string | undefined;
|
|
178
166
|
role: string | undefined;
|
|
179
|
-
|
|
180
|
-
datatype: string | undefined;
|
|
181
|
-
inlist: any;
|
|
182
|
-
prefix: string | undefined;
|
|
183
|
-
property: string | undefined;
|
|
184
|
-
resource: string | undefined;
|
|
185
|
-
typeof: string | undefined;
|
|
186
|
-
vocab: string | undefined;
|
|
187
|
-
autocapitalize: string | undefined;
|
|
188
|
-
autocorrect: string | undefined;
|
|
189
|
-
autosave: string | undefined;
|
|
190
|
-
color: string | undefined;
|
|
191
|
-
itemprop: string | undefined;
|
|
192
|
-
itemscope: (boolean | "true" | "false") | undefined;
|
|
193
|
-
itemtype: string | undefined;
|
|
194
|
-
itemid: string | undefined;
|
|
195
|
-
itemref: string | undefined;
|
|
196
|
-
results: (string | number) | undefined;
|
|
197
|
-
security: string | undefined;
|
|
198
|
-
unselectable: "on" | "off" | undefined;
|
|
199
|
-
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
200
|
-
is: string | undefined;
|
|
201
|
-
exportparts: string;
|
|
202
|
-
part: string;
|
|
167
|
+
tabindex: (string | number) | undefined;
|
|
203
168
|
'aria-activedescendant': string | undefined;
|
|
204
169
|
'aria-atomic': (boolean | "true" | "false") | undefined;
|
|
205
170
|
'aria-autocomplete': "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -248,26 +213,61 @@ declare var __VLS_24: {
|
|
|
248
213
|
'aria-valuemin': (string | number) | undefined;
|
|
249
214
|
'aria-valuenow': (string | number) | undefined;
|
|
250
215
|
'aria-valuetext': string | undefined;
|
|
216
|
+
accesskey: string | undefined;
|
|
217
|
+
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
218
|
+
contextmenu: string | undefined;
|
|
219
|
+
draggable: (boolean | "true" | "false") | undefined;
|
|
220
|
+
enterkeyhint: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
221
|
+
enterKeyHint: import("vue").HTMLAttributes["enterkeyhint"];
|
|
222
|
+
hidden: (boolean | "true" | "false") | "" | "hidden" | "until-found" | undefined;
|
|
223
|
+
inert: (boolean | "true" | "false") | undefined;
|
|
224
|
+
spellcheck: (boolean | "true" | "false") | undefined;
|
|
225
|
+
title: string | undefined;
|
|
226
|
+
translate: "yes" | "no" | undefined;
|
|
227
|
+
radiogroup: string | undefined;
|
|
228
|
+
about: string | undefined;
|
|
229
|
+
datatype: string | undefined;
|
|
230
|
+
inlist: any;
|
|
231
|
+
prefix: string | undefined;
|
|
232
|
+
property: string | undefined;
|
|
233
|
+
resource: string | undefined;
|
|
234
|
+
typeof: string | undefined;
|
|
235
|
+
vocab: string | undefined;
|
|
236
|
+
autocapitalize: string | undefined;
|
|
237
|
+
autocorrect: string | undefined;
|
|
238
|
+
autosave: string | undefined;
|
|
239
|
+
itemprop: string | undefined;
|
|
240
|
+
itemscope: (boolean | "true" | "false") | undefined;
|
|
241
|
+
itemtype: string | undefined;
|
|
242
|
+
itemid: string | undefined;
|
|
243
|
+
itemref: string | undefined;
|
|
244
|
+
results: (string | number) | undefined;
|
|
245
|
+
security: string | undefined;
|
|
246
|
+
unselectable: "on" | "off" | undefined;
|
|
247
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
248
|
+
is: string | undefined;
|
|
249
|
+
exportparts: string;
|
|
250
|
+
part: string;
|
|
251
251
|
asChild: boolean;
|
|
252
252
|
as: AsTag | import("vue").Component;
|
|
253
253
|
}> & {
|
|
254
254
|
readonly open: boolean | undefined;
|
|
255
255
|
} & {
|
|
256
|
-
readonly inlist: boolean;
|
|
257
256
|
readonly disabled: boolean;
|
|
257
|
+
readonly inlist: boolean;
|
|
258
258
|
readonly asChild: boolean;
|
|
259
259
|
readonly open: boolean | undefined;
|
|
260
|
+
readonly readonly: boolean;
|
|
260
261
|
readonly showArrow: boolean;
|
|
261
262
|
readonly defaultOpen: boolean;
|
|
262
263
|
readonly modal: boolean;
|
|
263
|
-
readonly
|
|
264
|
+
readonly allowNonContiguousRanges: boolean;
|
|
264
265
|
readonly pagedNavigation: boolean;
|
|
265
266
|
readonly preventDeselect: boolean;
|
|
266
267
|
readonly fixedWeeks: boolean;
|
|
267
268
|
readonly initialFocus: boolean;
|
|
268
269
|
readonly disableDaysOutsideCurrentView: boolean;
|
|
269
|
-
|
|
270
|
-
}, "positionerProps" | "open" | "triggerProps" | "placement" | "showArrow" | "portalProps" | "popupProps" | "arrowProps" | "closeProps" | "defaultOpen" | "modal">;
|
|
270
|
+
}, "triggerProps" | "positionerProps" | "open" | "placement" | "showArrow" | "portalProps" | "popupProps" | "arrowProps" | "closeProps" | "defaultOpen" | "modal">;
|
|
271
271
|
onUpdateModelValue: (value: DateRange) => void;
|
|
272
272
|
onUpdatePlaceholder: (placeholder: DateValue) => void;
|
|
273
273
|
};
|
|
@@ -275,8 +275,8 @@ type __VLS_Slots = {} & {
|
|
|
275
275
|
default?: (props: typeof __VLS_24) => any;
|
|
276
276
|
};
|
|
277
277
|
declare const __VLS_base: import("vue").DefineComponent<DateRangePickerCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
278
|
-
"update:open": (value: boolean) => any;
|
|
279
278
|
"update:modelValue": (range: DateRange) => any;
|
|
279
|
+
"update:open": (value: boolean) => any;
|
|
280
280
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
281
281
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
282
282
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -286,8 +286,8 @@ declare const __VLS_base: import("vue").DefineComponent<DateRangePickerCompactPr
|
|
|
286
286
|
"update:placeholder": (date: DateValue) => any;
|
|
287
287
|
"update:startValue": (date: DateValue | undefined) => any;
|
|
288
288
|
}, string, import("vue").PublicProps, Readonly<DateRangePickerCompactProps> & Readonly<{
|
|
289
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
290
289
|
"onUpdate:modelValue"?: ((range: DateRange) => any) | undefined;
|
|
290
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
291
291
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
292
292
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
293
293
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -6,8 +6,8 @@ import { DropdownMenuCheckboxCompactProps, DropdownMenuCheckboxCompactSlots } fr
|
|
|
6
6
|
declare const __VLS_export: <T extends DefinedValue = DefinedValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<DropdownMenuCheckboxCompactProps<T> & {
|
|
8
8
|
onSelect?: ((item: MenuCheckboxOptionData<T>, event: Event) => any) | undefined;
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
13
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -21,7 +21,7 @@ declare const __VLS_export: <T extends DefinedValue = DefinedValue>(__VLS_props:
|
|
|
21
21
|
expose: (exposed: {}) => void;
|
|
22
22
|
attrs: any;
|
|
23
23
|
slots: DropdownMenuCheckboxCompactSlots<T>;
|
|
24
|
-
emit: ((evt: "select", item: MenuCheckboxOptionData<T>, event: Event) => void) & ((evt: "update:
|
|
24
|
+
emit: ((evt: "select", item: MenuCheckboxOptionData<T>, event: Event) => void) & ((evt: "update:modelValue", value: T[]) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "focusOutside", event: FocusOutsideEvent) => void) & ((evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((evt: "openAutoFocus", event: Event) => void) & ((evt: "closeAutoFocus", event: Event) => void) & ((evt: "entryFocus", event: Event) => void);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -6,8 +6,8 @@ import { DropdownMenuRadioCompactProps, DropdownMenuRadioCompactSlots } from "./
|
|
|
6
6
|
declare const __VLS_export: <T extends AcceptableBooleanValue = AcceptableBooleanValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<DropdownMenuRadioCompactProps<T> & {
|
|
8
8
|
onSelect?: ((item: MenuRadioOptionData<T>, event: Event) => any) | undefined;
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((payload: Exclude<T, undefined>) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
13
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -21,7 +21,7 @@ declare const __VLS_export: <T extends AcceptableBooleanValue = AcceptableBoolea
|
|
|
21
21
|
expose: (exposed: {}) => void;
|
|
22
22
|
attrs: any;
|
|
23
23
|
slots: DropdownMenuRadioCompactSlots<T>;
|
|
24
|
-
emit: ((evt: "select", item: MenuRadioOptionData<T>, event: Event) => void) & ((evt: "update:
|
|
24
|
+
emit: ((evt: "select", item: MenuRadioOptionData<T>, event: Event) => void) & ((evt: "update:modelValue", payload: Exclude<T, undefined>) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "focusOutside", event: FocusOutsideEvent) => void) & ((evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((evt: "openAutoFocus", event: Event) => void) & ((evt: "closeAutoFocus", event: Event) => void) & ((evt: "entryFocus", event: Event) => void);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: import("vue").DefineComponent<DropdownMenuRootProps, {
|
|
|
15
15
|
delayDuration: number;
|
|
16
16
|
skipDelayDuration: number;
|
|
17
17
|
open: boolean;
|
|
18
|
-
trigger: DropdownMenuTriggerType;
|
|
19
18
|
modal: boolean;
|
|
19
|
+
trigger: DropdownMenuTriggerType;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
22
|
declare const _default: typeof __VLS_export;
|
|
@@ -33,8 +33,8 @@ declare const __VLS_base: import("vue").DefineComponent<EditableRootProps, {
|
|
|
33
33
|
modelValue: string;
|
|
34
34
|
activationMode: EditableActivationMode;
|
|
35
35
|
readonly: boolean;
|
|
36
|
-
submitMode: EditableSubmitMode;
|
|
37
36
|
selectOnFocus: boolean;
|
|
37
|
+
submitMode: EditableSubmitMode;
|
|
38
38
|
startWithEditMode: boolean;
|
|
39
39
|
autoResize: boolean;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,24 +5,24 @@ type __VLS_Slots = InputOtpCompactSlots;
|
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<InputOtpCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
6
|
input: (value: string) => any;
|
|
7
7
|
select: (event: Event) => any;
|
|
8
|
-
blur: (event: FocusEvent) => any;
|
|
9
8
|
change: (event: Event) => any;
|
|
9
|
+
"update:modelValue": (value: string) => any;
|
|
10
|
+
blur: (event: FocusEvent) => any;
|
|
10
11
|
focus: (event: FocusEvent) => any;
|
|
11
12
|
mouseleave: (event: MouseEvent) => any;
|
|
12
13
|
mouseover: (event: MouseEvent) => any;
|
|
13
14
|
paste: (event: ClipboardEvent) => any;
|
|
14
|
-
"update:modelValue": (value: string) => any;
|
|
15
15
|
complete: (value: string) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<InputOtpCompactProps> & Readonly<{
|
|
17
17
|
onInput?: ((value: string) => any) | undefined;
|
|
18
18
|
onSelect?: ((event: Event) => any) | undefined;
|
|
19
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
20
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
21
22
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
22
23
|
onMouseleave?: ((event: MouseEvent) => any) | undefined;
|
|
23
24
|
onMouseover?: ((event: MouseEvent) => any) | undefined;
|
|
24
25
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
25
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
26
26
|
onComplete?: ((value: string) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -17,24 +17,24 @@ declare const __VLS_base: import("vue").DefineComponent<InputOtpRootProps, {
|
|
|
17
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
input: (value: string) => any;
|
|
19
19
|
select: (event: Event) => any;
|
|
20
|
-
blur: (event: FocusEvent) => any;
|
|
21
20
|
change: (event: Event) => any;
|
|
21
|
+
"update:modelValue": (value: string) => any;
|
|
22
|
+
blur: (event: FocusEvent) => any;
|
|
22
23
|
focus: (event: FocusEvent) => any;
|
|
23
24
|
mouseleave: (event: MouseEvent) => any;
|
|
24
25
|
mouseover: (event: MouseEvent) => any;
|
|
25
26
|
paste: (event: ClipboardEvent) => any;
|
|
26
|
-
"update:modelValue": (value: string) => any;
|
|
27
27
|
complete: (value: string) => any;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<InputOtpRootProps> & Readonly<{
|
|
29
29
|
onInput?: ((value: string) => any) | undefined;
|
|
30
30
|
onSelect?: ((event: Event) => any) | undefined;
|
|
31
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
32
31
|
onChange?: ((event: Event) => any) | undefined;
|
|
32
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
33
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
33
34
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
34
35
|
onMouseleave?: ((event: MouseEvent) => any) | undefined;
|
|
35
36
|
onMouseover?: ((event: MouseEvent) => any) | undefined;
|
|
36
37
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
37
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
38
38
|
onComplete?: ((value: string) => any) | undefined;
|
|
39
39
|
}>, {
|
|
40
40
|
autocomplete: string;
|
|
@@ -18,7 +18,6 @@ declare const __VLS_base: import("vue").DefineComponent<LayoutRootProps, {}, {},
|
|
|
18
18
|
defaultOpen: boolean;
|
|
19
19
|
side: LayoutSide;
|
|
20
20
|
variant: LayoutVariant;
|
|
21
|
-
pxToRem: (px: number) => number;
|
|
22
21
|
sidebarVisible: boolean;
|
|
23
22
|
sidebarWidth: number;
|
|
24
23
|
collapsedSidebarWidth: number;
|
|
@@ -30,6 +29,7 @@ declare const __VLS_base: import("vue").DefineComponent<LayoutRootProps, {}, {},
|
|
|
30
29
|
tabHeight: number;
|
|
31
30
|
footerVisible: boolean;
|
|
32
31
|
footerHeight: number;
|
|
32
|
+
pxToRem: (px: number) => number;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
35
35
|
declare const _default: typeof __VLS_export;
|
|
@@ -5,8 +5,8 @@ import { ListboxCollectionItemData, ListboxRootProps } from "./types.js";
|
|
|
5
5
|
declare const __VLS_export: <M extends boolean>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
6
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<ListboxRootProps<M> & {
|
|
7
7
|
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
8
|
-
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
9
8
|
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
9
|
+
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
10
10
|
onLeave?: ((event: Event) => any) | undefined;
|
|
11
11
|
}> & (typeof globalThis extends {
|
|
12
12
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -24,7 +24,7 @@ declare const __VLS_export: <M extends boolean>(__VLS_props: NonNullable<Awaited
|
|
|
24
24
|
modelValue: (M extends true ? string[] : string) | undefined;
|
|
25
25
|
}) => any;
|
|
26
26
|
};
|
|
27
|
-
emit: ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "
|
|
27
|
+
emit: ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "leave", event: Event) => void);
|
|
28
28
|
}>) => import("vue").VNode & {
|
|
29
29
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
30
30
|
};
|
|
@@ -6,8 +6,8 @@ import { MenubarCompactProps, MenubarCompactSlots } from "./types.js";
|
|
|
6
6
|
declare const __VLS_export: <T extends DefinedValue = DefinedValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<MenubarCompactProps<T> & {
|
|
8
8
|
onSelect?: ((item: MenuOptionData<T>, event: Event) => any) | undefined;
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
13
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -21,7 +21,7 @@ declare const __VLS_export: <T extends DefinedValue = DefinedValue>(__VLS_props:
|
|
|
21
21
|
expose: (exposed: {}) => void;
|
|
22
22
|
attrs: any;
|
|
23
23
|
slots: MenubarCompactSlots<T>;
|
|
24
|
-
emit: ((evt: "select", item: MenuOptionData<T>, event: Event) => void) & ((evt: "update:
|
|
24
|
+
emit: ((evt: "select", item: MenuOptionData<T>, event: Event) => void) & ((evt: "update:modelValue", value: T) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "focusOutside", event: FocusOutsideEvent) => void) & ((evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((evt: "openAutoFocus", event: Event) => void) & ((evt: "closeAutoFocus", event: Event) => void) & ((evt: "entryFocus", event: Event) => void);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -13,9 +13,9 @@ declare const __VLS_base: import("vue").DefineComponent<NavigationMenuRootProps,
|
|
|
13
13
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
15
|
orientation: DataOrientation;
|
|
16
|
+
unmountOnHide: boolean;
|
|
16
17
|
delayDuration: number;
|
|
17
18
|
skipDelayDuration: number;
|
|
18
|
-
unmountOnHide: boolean;
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
21
|
declare const _default: typeof __VLS_export;
|
|
@@ -5,10 +5,10 @@ declare const __VLS_export: <T extends PageTabsOptionData = PageTabsOptionData>(
|
|
|
5
5
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<PageTabsCompactProps<T> & {
|
|
6
6
|
onContextmenu?: ((tab: T) => any) | undefined;
|
|
7
7
|
onClick?: ((tab: T) => any) | undefined;
|
|
8
|
-
onClose?: ((tab: T) => any) | undefined;
|
|
9
8
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
|
-
|
|
9
|
+
onClose?: ((tab: T) => any) | undefined;
|
|
11
10
|
"onUpdate:items"?: ((items: T[]) => any) | undefined;
|
|
11
|
+
onPin?: ((tab: T) => any) | undefined;
|
|
12
12
|
onSelectContextMenu?: ((menu: PageTabsContextMenuOptionData, tab: T) => any) | undefined;
|
|
13
13
|
}> & (typeof globalThis extends {
|
|
14
14
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -110,48 +110,11 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
110
110
|
innerHTML: string;
|
|
111
111
|
class: string | false | Record<string, any> | import("vue").ClassValue[] | null;
|
|
112
112
|
style: string | false | CSSProperties | import("vue").StyleValue[] | null;
|
|
113
|
-
|
|
114
|
-
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only";
|
|
115
|
-
contextmenu: string;
|
|
116
|
-
dir: string;
|
|
117
|
-
draggable: boolean | "true" | "false";
|
|
118
|
-
enterkeyhint: "done" | "enter" | "go" | "next" | "previous" | "search" | "send";
|
|
119
|
-
enterKeyHint: "done" | "enter" | "go" | "next" | "previous" | "search" | "send";
|
|
120
|
-
hidden: "" | "hidden" | (boolean | "true" | "false") | "until-found";
|
|
113
|
+
color: string;
|
|
121
114
|
id: string;
|
|
122
|
-
inert: boolean | "true" | "false";
|
|
123
115
|
lang: string;
|
|
124
|
-
placeholder: string;
|
|
125
|
-
spellcheck: boolean | "true" | "false";
|
|
126
|
-
tabindex: string | number;
|
|
127
|
-
title: string;
|
|
128
|
-
translate: "yes" | "no";
|
|
129
|
-
radiogroup: string;
|
|
130
116
|
role: string;
|
|
131
|
-
|
|
132
|
-
datatype: string;
|
|
133
|
-
inlist: any;
|
|
134
|
-
prefix: string;
|
|
135
|
-
property: string;
|
|
136
|
-
resource: string;
|
|
137
|
-
typeof: string;
|
|
138
|
-
vocab: string;
|
|
139
|
-
autocapitalize: string;
|
|
140
|
-
autocorrect: string;
|
|
141
|
-
autosave: string;
|
|
142
|
-
color: string;
|
|
143
|
-
itemprop: string;
|
|
144
|
-
itemscope: boolean | "true" | "false";
|
|
145
|
-
itemtype: string;
|
|
146
|
-
itemid: string;
|
|
147
|
-
itemref: string;
|
|
148
|
-
results: string | number;
|
|
149
|
-
security: string;
|
|
150
|
-
unselectable: "on" | "off";
|
|
151
|
-
inputmode: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
152
|
-
is: string;
|
|
153
|
-
exportparts: string;
|
|
154
|
-
part: string;
|
|
117
|
+
tabindex: string | number;
|
|
155
118
|
'aria-activedescendant': string;
|
|
156
119
|
'aria-atomic': boolean | "true" | "false";
|
|
157
120
|
'aria-autocomplete': "list" | "none" | "inline" | "both";
|
|
@@ -161,7 +124,7 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
161
124
|
'aria-colindex': string | number;
|
|
162
125
|
'aria-colspan': string | number;
|
|
163
126
|
'aria-controls': string;
|
|
164
|
-
'aria-current':
|
|
127
|
+
'aria-current': (boolean | "true" | "false") | "page" | "step" | "location" | "date" | "time";
|
|
165
128
|
'aria-describedby': string;
|
|
166
129
|
'aria-details': string;
|
|
167
130
|
'aria-disabled': boolean | "true" | "false";
|
|
@@ -187,7 +150,7 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
187
150
|
'aria-posinset': string | number;
|
|
188
151
|
'aria-pressed': (boolean | "true" | "false") | "mixed";
|
|
189
152
|
'aria-readonly': boolean | "true" | "false";
|
|
190
|
-
'aria-relevant': "
|
|
153
|
+
'aria-relevant': "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals";
|
|
191
154
|
'aria-required': boolean | "true" | "false";
|
|
192
155
|
'aria-roledescription': string;
|
|
193
156
|
'aria-rowcount': string | number;
|
|
@@ -200,6 +163,43 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
200
163
|
'aria-valuemin': string | number;
|
|
201
164
|
'aria-valuenow': string | number;
|
|
202
165
|
'aria-valuetext': string;
|
|
166
|
+
accesskey: string;
|
|
167
|
+
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only";
|
|
168
|
+
contextmenu: string;
|
|
169
|
+
dir: string;
|
|
170
|
+
draggable: boolean | "true" | "false";
|
|
171
|
+
enterkeyhint: "done" | "enter" | "go" | "next" | "previous" | "search" | "send";
|
|
172
|
+
enterKeyHint: "done" | "enter" | "go" | "next" | "previous" | "search" | "send";
|
|
173
|
+
hidden: "" | "hidden" | (boolean | "true" | "false") | "until-found";
|
|
174
|
+
inert: boolean | "true" | "false";
|
|
175
|
+
placeholder: string;
|
|
176
|
+
spellcheck: boolean | "true" | "false";
|
|
177
|
+
title: string;
|
|
178
|
+
translate: "yes" | "no";
|
|
179
|
+
radiogroup: string;
|
|
180
|
+
about: string;
|
|
181
|
+
datatype: string;
|
|
182
|
+
inlist: any;
|
|
183
|
+
prefix: string;
|
|
184
|
+
property: string;
|
|
185
|
+
resource: string;
|
|
186
|
+
typeof: string;
|
|
187
|
+
vocab: string;
|
|
188
|
+
autocapitalize: string;
|
|
189
|
+
autocorrect: string;
|
|
190
|
+
autosave: string;
|
|
191
|
+
itemprop: string;
|
|
192
|
+
itemscope: boolean | "true" | "false";
|
|
193
|
+
itemtype: string;
|
|
194
|
+
itemid: string;
|
|
195
|
+
itemref: string;
|
|
196
|
+
results: string | number;
|
|
197
|
+
security: string;
|
|
198
|
+
unselectable: "off" | "on";
|
|
199
|
+
inputmode: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
200
|
+
is: string;
|
|
201
|
+
exportparts: string;
|
|
202
|
+
part: string;
|
|
203
203
|
placement: Placement;
|
|
204
204
|
side: import("@floating-ui/utils").Side;
|
|
205
205
|
sideOffset: number;
|
|
@@ -5,8 +5,8 @@ import { SelectCompactProps, SelectCompactSlots, SelectItemEvent } from "./types
|
|
|
5
5
|
declare const __VLS_export: <T extends DefinedValue = DefinedValue, M extends boolean = false>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
6
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<SelectCompactProps<T, M> & {
|
|
7
7
|
onSelect?: ((event: SelectItemEvent<T>) => any) | undefined;
|
|
8
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
8
|
"onUpdate:modelValue"?: ((value: M extends true ? T[] : T) => any) | undefined;
|
|
9
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
10
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
11
11
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
12
12
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
@@ -16,7 +16,7 @@ declare const __VLS_export: <T extends DefinedValue = DefinedValue, M extends bo
|
|
|
16
16
|
expose: (exposed: {}) => void;
|
|
17
17
|
attrs: any;
|
|
18
18
|
slots: SelectCompactSlots<T, M>;
|
|
19
|
-
emit: ((evt: "select", event: SelectItemEvent<T>) => void) & ((evt: "update:
|
|
19
|
+
emit: ((evt: "select", event: SelectItemEvent<T>) => void) & ((evt: "update:modelValue", value: M extends true ? T[] : T) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((evt: "closeAutoFocus", event: Event) => void);
|
|
20
20
|
}>) => import("vue").VNode & {
|
|
21
21
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
22
22
|
};
|
|
@@ -4,8 +4,8 @@ import { SelectRootProps } from "./types.js";
|
|
|
4
4
|
//#region src/components/select/select-root.vue.d.ts
|
|
5
5
|
declare const __VLS_export: <T extends DefinedValue, M extends boolean = false>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
6
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<SelectRootProps<T, M> & {
|
|
7
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8
7
|
"onUpdate:modelValue"?: ((value: M extends true ? T[] : T) => any) | undefined;
|
|
8
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
9
|
}> & (typeof globalThis extends {
|
|
10
10
|
__VLS_PROPS_FALLBACK: infer P;
|
|
11
11
|
} ? P : {});
|
|
@@ -17,7 +17,7 @@ declare const __VLS_export: <T extends DefinedValue, M extends boolean = false>(
|
|
|
17
17
|
open: boolean;
|
|
18
18
|
}) => any;
|
|
19
19
|
};
|
|
20
|
-
emit: ((evt: "update:
|
|
20
|
+
emit: ((evt: "update:modelValue", value: M extends true ? T[] : T) => void) & ((evt: "update:open", value: boolean) => void);
|
|
21
21
|
}>) => import("vue").VNode & {
|
|
22
22
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
23
23
|
};
|
|
@@ -14,11 +14,11 @@ declare const __VLS_base: import("vue").DefineComponent<SliderRootProps, {}, {},
|
|
|
14
14
|
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
15
15
|
onValueCommit?: ((value: number[]) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
dir: Direction;
|
|
18
17
|
disabled: boolean;
|
|
19
18
|
max: number;
|
|
20
19
|
min: number;
|
|
21
20
|
orientation: DataOrientation;
|
|
21
|
+
dir: Direction;
|
|
22
22
|
step: number;
|
|
23
23
|
modelValue: number[];
|
|
24
24
|
defaultValue: number[];
|
|
@@ -12,10 +12,10 @@ declare const __VLS_base: import("vue").DefineComponent<SplitterGroupProps, {},
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<SplitterGroupProps> & Readonly<{
|
|
13
13
|
onLayout?: ((value: number[]) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
dir: Direction;
|
|
16
15
|
direction: DataOrientation;
|
|
17
|
-
|
|
16
|
+
dir: Direction;
|
|
18
17
|
defaultLayout: number[];
|
|
18
|
+
keyboardResizeBy: number;
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
21
|
declare const _default: typeof __VLS_export;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<SplitterResizeHandleProp
|
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<SplitterResizeHandleProps> & Readonly<{
|
|
14
14
|
onDragging?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
tabindex: number;
|
|
17
16
|
disabled: boolean;
|
|
17
|
+
tabindex: number;
|
|
18
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
20
|
declare const _default: typeof __VLS_export;
|
|
@@ -3,13 +3,13 @@ import { TagsInputCompactProps, TagsInputCompactSlots } from "./types.js";
|
|
|
3
3
|
//#region src/components/tags-input/tags-input-compact.vue.d.ts
|
|
4
4
|
type __VLS_Slots = TagsInputCompactSlots;
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<TagsInputCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
invalid: (value: string) => any;
|
|
7
6
|
"update:modelValue": (value: string[]) => any;
|
|
7
|
+
invalid: (value: string) => any;
|
|
8
8
|
addTag: (value: string) => any;
|
|
9
9
|
removeTag: (value: string) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<TagsInputCompactProps> & Readonly<{
|
|
11
|
-
onInvalid?: ((value: string) => any) | undefined;
|
|
12
11
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
12
|
+
onInvalid?: ((value: string) => any) | undefined;
|
|
13
13
|
onAddTag?: ((value: string) => any) | undefined;
|
|
14
14
|
onRemoveTag?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -9,13 +9,13 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_1) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<TagsInputRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
invalid: (value: string) => any;
|
|
13
12
|
"update:modelValue": (value: string[]) => any;
|
|
13
|
+
invalid: (value: string) => any;
|
|
14
14
|
addTag: (value: string) => any;
|
|
15
15
|
removeTag: (value: string) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<TagsInputRootProps> & Readonly<{
|
|
17
|
-
onInvalid?: ((value: string) => any) | undefined;
|
|
18
17
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
18
|
+
onInvalid?: ((value: string) => any) | undefined;
|
|
19
19
|
onAddTag?: ((value: string) => any) | undefined;
|
|
20
20
|
onRemoveTag?: ((value: string) => any) | undefined;
|
|
21
21
|
}>, {
|
|
@@ -10,14 +10,14 @@ declare const __VLS_base: import("vue").DefineComponent<TimeFieldRootProps, {},
|
|
|
10
10
|
"onUpdate:modelValue"?: ((time: TimeValue | undefined) => any) | undefined;
|
|
11
11
|
"onUpdate:placeholder"?: ((time: TimeValue) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
-
placeholder: TimeValue;
|
|
14
13
|
disabled: boolean;
|
|
14
|
+
placeholder: TimeValue;
|
|
15
15
|
step: DateStep;
|
|
16
16
|
defaultValue: TimeValue;
|
|
17
|
-
defaultPlaceholder: TimeValue;
|
|
18
17
|
readonly: boolean;
|
|
19
|
-
|
|
18
|
+
defaultPlaceholder: TimeValue;
|
|
20
19
|
granularity: TimeGranularity;
|
|
20
|
+
hourCycle: 12 | 24;
|
|
21
21
|
hideTimeZone: boolean;
|
|
22
22
|
isTimeUnavailable: TimeMatcher;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,18 +14,18 @@ declare const __VLS_base: import("vue").DefineComponent<TimeRangeFieldRootProps,
|
|
|
14
14
|
"onUpdate:startValue"?: ((time: TimeValue | undefined) => any) | undefined;
|
|
15
15
|
"onUpdate:endValue"?: ((time: TimeValue | undefined) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
placeholder: TimeValue;
|
|
18
17
|
disabled: boolean;
|
|
18
|
+
placeholder: TimeValue;
|
|
19
19
|
step: DateStep;
|
|
20
20
|
defaultValue: TimeRange;
|
|
21
|
-
defaultPlaceholder: TimeValue;
|
|
22
21
|
readonly: boolean;
|
|
23
|
-
|
|
22
|
+
defaultPlaceholder: TimeValue;
|
|
24
23
|
granularity: TimeGranularity;
|
|
24
|
+
hourCycle: 12 | 24;
|
|
25
25
|
hideTimeZone: boolean;
|
|
26
|
+
isTimeUnavailable: TimeMatcher;
|
|
26
27
|
startName: string;
|
|
27
28
|
endName: string;
|
|
28
|
-
isTimeUnavailable: TimeMatcher;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
31
31
|
declare const _default: typeof __VLS_export;
|
|
@@ -18,9 +18,9 @@ declare const __VLS_base: import("vue").DefineComponent<TreeMenuRootProps, {}, {
|
|
|
18
18
|
defaultExpanded: string[];
|
|
19
19
|
collapsed: boolean;
|
|
20
20
|
indent: number;
|
|
21
|
+
pxToRem: (px: number) => number;
|
|
21
22
|
defaultCollapsed: boolean;
|
|
22
23
|
collapsedWidth: number;
|
|
23
|
-
pxToRem: (px: number) => number;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
26
|
declare const _default: typeof __VLS_export;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/headless",
|
|
3
|
-
"version": "0.29.0-beta.
|
|
3
|
+
"version": "0.29.0-beta.7",
|
|
4
4
|
"description": "SoybeanHeadless is a collection unstyled components for Vue 3. It is designed to be lightweight and easy to use.",
|
|
5
5
|
"homepage": "https://github.com/soybeanjs/soybean-ui",
|
|
6
6
|
"bugs": {
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"@formkit/auto-animate": "^0.9.0",
|
|
94
94
|
"@internationalized/date": "^3.12.2",
|
|
95
95
|
"@internationalized/number": "^3.6.7",
|
|
96
|
-
"@soybeanjs/colord": "^0.
|
|
96
|
+
"@soybeanjs/colord": "^0.6.1",
|
|
97
97
|
"@soybeanjs/hooks": "^0.3.0",
|
|
98
98
|
"@soybeanjs/utils": "^0.1.1",
|
|
99
99
|
"@standard-schema/spec": "^1.1.0",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"typescript": "6.0.3",
|
|
117
117
|
"unplugin-vue": "7.2.0",
|
|
118
118
|
"unplugin-vue-components": "^32.1.0",
|
|
119
|
-
"vue": "3.5.
|
|
119
|
+
"vue": "3.5.38",
|
|
120
120
|
"vue-router": "5.1.0"
|
|
121
121
|
},
|
|
122
122
|
"peerDependencies": {
|