@soybeanjs/headless 0.29.0 → 0.29.1
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/alert/alert-compact.vue.d.ts +2 -2
- package/dist/components/autocomplete/autocomplete-compact.vue.d.ts +2 -2
- package/dist/components/autocomplete/autocomplete-root.vue.d.ts +4 -4
- package/dist/components/bottom-sheet/bottom-sheet-root-nested.vue.d.ts +2 -2
- package/dist/components/calendar-range/calendar-range-root.vue.d.ts +1 -1
- package/dist/components/clipboard/clipboard.vue.d.ts +4 -4
- 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/combobox/combobox-compact.vue.d.ts +3 -3
- package/dist/components/combobox/combobox-root.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 +1 -1
- package/dist/components/date-picker/date-picker-compact.js +1 -1
- 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 +1 -1
- package/dist/components/date-range-picker/date-range-picker-compact.vue.d.ts +42 -42
- package/dist/components/dialog/dialog-compact.vue.d.ts +5 -5
- 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/input-number/input-number-root.vue.d.ts +1 -1
- package/dist/components/layout/layout-root.vue.d.ts +1 -1
- package/dist/components/link/link.vue.d.ts +1 -1
- 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 +1 -1
- package/dist/components/page-tabs/page-tabs-item.vue.d.ts +2 -2
- package/dist/components/popconfirm/popconfirm-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 +1 -1
- package/dist/components/time-field/time-field-root.vue.d.ts +1 -1
- package/dist/components/time-range-field/time-range-field-root.vue.d.ts +2 -2
- package/dist/components/tree-menu/tree-menu-root.vue.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3,11 +3,11 @@ import { AlertCompactProps, AlertCompactSlots } from "./types.js";
|
|
|
3
3
|
//#region src/components/alert/alert-compact.vue.d.ts
|
|
4
4
|
type __VLS_Slots = AlertCompactSlots;
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<AlertCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
close: (event: PointerEvent) => any;
|
|
7
6
|
"update:open": (open: boolean) => any;
|
|
7
|
+
close: (event: PointerEvent) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<AlertCompactProps> & Readonly<{
|
|
9
|
-
onClose?: ((event: PointerEvent) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
10
|
+
onClose?: ((event: PointerEvent) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
12
|
open: boolean;
|
|
13
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -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:modelValue"?: ((value: string) => any) | undefined;
|
|
8
7
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8
|
+
"onUpdate:modelValue"?: ((value: string) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: string) => void) & ((evt: "highlight", payload?: AutocompleteHighlightPayload | undefined) => void);
|
|
17
17
|
}>) => import("vue").VNode & {
|
|
18
18
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
19
19
|
};
|
|
@@ -18,18 +18,18 @@ 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:modelValue": (value: string) => any;
|
|
22
21
|
"update:open": (value: boolean) => any;
|
|
22
|
+
"update:modelValue": (value: string) => any;
|
|
23
23
|
highlight: (payload?: AutocompleteHighlightPayload | undefined) => any;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<AutocompleteRootProps> & Readonly<{
|
|
25
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
26
25
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
26
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
27
27
|
onHighlight?: ((payload?: AutocompleteHighlightPayload | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
|
-
modelValue: string;
|
|
30
29
|
open: boolean;
|
|
31
|
-
|
|
30
|
+
modelValue: string;
|
|
32
31
|
defaultOpen: boolean;
|
|
32
|
+
highlightOnHover: boolean;
|
|
33
33
|
openOnFocus: boolean;
|
|
34
34
|
openOnClick: boolean;
|
|
35
35
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -33,9 +33,9 @@ declare const __VLS_base: import("vue").DefineComponent<(DialogRootProps & {
|
|
|
33
33
|
handleOnly?: boolean;
|
|
34
34
|
preventScrollRestoration?: boolean;
|
|
35
35
|
} & WithoutFadeFromProps), {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
|
+
"update:open": (value: boolean) => any;
|
|
36
37
|
close: () => any;
|
|
37
38
|
drag: (percentageDragged: number) => any;
|
|
38
|
-
"update:open": (value: boolean) => any;
|
|
39
39
|
release: (open: boolean) => any;
|
|
40
40
|
"update:activeSnapPoint": (val: string | number | null) => any;
|
|
41
41
|
}, string, import("vue").PublicProps, Readonly<(DialogRootProps & {
|
|
@@ -65,9 +65,9 @@ declare const __VLS_base: import("vue").DefineComponent<(DialogRootProps & {
|
|
|
65
65
|
handleOnly?: boolean;
|
|
66
66
|
preventScrollRestoration?: boolean;
|
|
67
67
|
} & WithoutFadeFromProps)> & Readonly<{
|
|
68
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
68
69
|
onClose?: (() => any) | undefined;
|
|
69
70
|
onDrag?: ((percentageDragged: number) => any) | undefined;
|
|
70
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
71
71
|
onRelease?: ((open: boolean) => any) | undefined;
|
|
72
72
|
"onUpdate:activeSnapPoint"?: ((val: string | number | null) => any) | undefined;
|
|
73
73
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: import("vue").DefineComponent<CalendarRangeRootProps,
|
|
|
14
14
|
disabled: boolean;
|
|
15
15
|
placeholder: DateValue;
|
|
16
16
|
defaultValue: DateRange;
|
|
17
|
-
defaultPlaceholder: DateValue;
|
|
18
17
|
readonly: boolean;
|
|
18
|
+
defaultPlaceholder: DateValue;
|
|
19
19
|
pagedNavigation: boolean;
|
|
20
20
|
preventDeselect: boolean;
|
|
21
21
|
weekdayFormat: WeekDayFormat;
|
|
@@ -44,12 +44,12 @@ declare const __VLS_base: import("vue").DefineComponent<ClipboardProps, {}, {},
|
|
|
44
44
|
}>, {
|
|
45
45
|
copiedDuration: number;
|
|
46
46
|
legacy: boolean;
|
|
47
|
-
copyIcon: string | import("vue").
|
|
47
|
+
copyIcon: string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
48
48
|
[key: string]: any;
|
|
49
|
-
}> | null;
|
|
50
|
-
copiedIcon: string | import("vue").
|
|
49
|
+
}> | import("vue").Component | null;
|
|
50
|
+
copiedIcon: string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
51
|
[key: string]: any;
|
|
52
|
-
}> | null;
|
|
52
|
+
}> | import("vue").Component | null;
|
|
53
53
|
copyText: string;
|
|
54
54
|
copiedText: string;
|
|
55
55
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -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
|
-
unmountOnHide: boolean;
|
|
18
17
|
open: boolean;
|
|
18
|
+
unmountOnHide: 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>;
|
|
@@ -13,9 +13,9 @@ type __VLS_Slots = {} & {
|
|
|
13
13
|
trigger?: (props: typeof __VLS_21) => any;
|
|
14
14
|
};
|
|
15
15
|
declare const __VLS_base: import("vue").DefineComponent<ColorPickerCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
+
"update:open": (value: boolean) => any;
|
|
16
17
|
change: (value: string) => any;
|
|
17
18
|
"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;
|
|
@@ -25,9 +25,9 @@ declare const __VLS_base: import("vue").DefineComponent<ColorPickerCompactProps,
|
|
|
25
25
|
"update:color": (value: NormalizedColor) => any;
|
|
26
26
|
"update:format": (value: ColorFormat) => any;
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<ColorPickerCompactProps> & Readonly<{
|
|
28
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
28
29
|
onChange?: ((value: string) => any) | undefined;
|
|
29
30
|
"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;
|
|
43
44
|
showAlpha: boolean;
|
|
44
45
|
showFields: boolean;
|
|
45
46
|
showSwatches: boolean;
|
|
46
47
|
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: "saturation" | "chroma";
|
|
15
|
+
readonly y: "lightness" | "brightness";
|
|
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
|
-
defaultFormat: ColorFormat;
|
|
39
38
|
colorSpace: ColorSpace;
|
|
39
|
+
defaultFormat: ColorFormat;
|
|
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;
|
|
@@ -6,15 +6,15 @@ 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:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
|
-
|
|
10
|
+
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
12
11
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
12
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
14
13
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
15
14
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
16
15
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
17
16
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
17
|
+
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
18
18
|
onPlaced?: (() => any) | undefined;
|
|
19
19
|
}> & (typeof globalThis extends {
|
|
20
20
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -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:open", value: boolean) => void) & ((evt: "update:modelValue", value: M extends true ? string[] : string) => 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:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
8
7
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8
|
+
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void);
|
|
32
32
|
}>) => import("vue").VNode & {
|
|
33
33
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
34
34
|
};
|
|
@@ -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:modelValue"?: ((value: T[]) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
11
11
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
12
12
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
13
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: T[]) => void) & ((evt: "entryFocus", event: Event) => 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);
|
|
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:modelValue"?: ((payload: Exclude<T, undefined>) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((payload: Exclude<T, undefined>) => any) | undefined;
|
|
11
11
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
12
12
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
13
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", payload: Exclude<T, undefined>) => void) & ((evt: "entryFocus", event: Event) => 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);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: import("vue").DefineComponent<DateFieldRootProps, {},
|
|
|
14
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
20
|
granularity: Granularity;
|
|
21
21
|
hourCycle: 12 | 24;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{useForwardListeners as e}from"../../composables/use-forward-listeners.js";import{useOmitProps as t,usePickProps as n}from"../../composables/use-props.js";import"../../composables/index.js";import r from"../_icon/icon.js";import i from"../popover/popover-compact.js";import a from"../date-field/date-field-compact.js";import{computed as o,createBlock as s,createVNode as c,defineComponent as l,mergeProps as u,openBlock as d,renderSlot as f,toHandlers as p,unref as m,withCtx as h}from"vue";const g=l({name:`DatePickerCompact`,__name:`date-picker-compact`,props:{dateFieldProps:{},placement:{},showArrow:{type:Boolean},triggerProps:{},portalProps:{},positionerProps:{},popupProps:{},arrowProps:{},closeProps:{},disabled:{type:Boolean},dir:{},open:{type:Boolean,default:void 0},defaultOpen:{type:Boolean},modal:{type:Boolean},headerProps:{},headingProps:{},prevProps:{},nextProps:{},gridProps:{},gridHeadProps:{},gridBodyProps:{},gridRowProps:{},headCellProps:{},cellProps:{},cellTriggerProps:{},locale:{},modelValue:{},defaultValue:{},multiple:{
|
|
1
|
+
import{useForwardListeners as e}from"../../composables/use-forward-listeners.js";import{useOmitProps as t,usePickProps as n}from"../../composables/use-props.js";import"../../composables/index.js";import r from"../_icon/icon.js";import i from"../popover/popover-compact.js";import a from"../date-field/date-field-compact.js";import{computed as o,createBlock as s,createVNode as c,defineComponent as l,mergeProps as u,openBlock as d,renderSlot as f,toHandlers as p,unref as m,withCtx as h}from"vue";const g=l({name:`DatePickerCompact`,__name:`date-picker-compact`,props:{dateFieldProps:{},placement:{},showArrow:{type:Boolean},triggerProps:{},portalProps:{},positionerProps:{},popupProps:{},arrowProps:{},closeProps:{},disabled:{type:Boolean},dir:{},open:{type:Boolean,default:void 0},defaultOpen:{type:Boolean},modal:{type:Boolean},headerProps:{},headingProps:{},prevProps:{},nextProps:{},gridProps:{},gridHeadProps:{},gridBodyProps:{},gridRowProps:{},headCellProps:{},cellProps:{},cellTriggerProps:{},locale:{},modelValue:{},defaultValue:{},multiple:{},placeholder:{},defaultPlaceholder:{},readonly:{type:Boolean},pagedNavigation:{type:Boolean},preventDeselect:{type:Boolean},weekStartsOn:{},weekdayFormat:{},calendarLabel:{},fixedWeeks:{type:Boolean},maxValue:{},minValue:{},numberOfMonths:{},initialFocus:{type:Boolean},isDateDisabled:{},isDateUnavailable:{},nextPage:{},prevPage:{},disableDaysOutsideCurrentView:{type:Boolean},asChild:{type:Boolean},as:{}},emits:[`update:open`,`escapeKeyDown`,`pointerDownOutside`,`focusOutside`,`interactOutside`,`openAutoFocus`,`closeAutoFocus`,`update:modelValue`,`update:placeholder`],setup(l,{emit:g}){let _=l,v=g,y=e(v),b=n(_,[`open`,`defaultOpen`,`modal`,`disabled`,`placement`,`showArrow`,`portalProps`,`positionerProps`,`popupProps`,`arrowProps`,`closeProps`]),x=n(_,[`dir`,`locale`,`modelValue`,`defaultValue`,`placeholder`,`defaultPlaceholder`,`disabled`,`readonly`,`maxValue`,`minValue`,`isDateUnavailable`],o(()=>({..._.dateFieldProps}))),S=o(()=>({..._.triggerProps,asChild:_.triggerProps?.asChild??!1})),C=t(_,[`open`,`defaultOpen`,`modal`,`placement`,`showArrow`,`triggerProps`,`portalProps`,`positionerProps`,`popupProps`,`arrowProps`,`closeProps`]),w=e=>{v(`update:modelValue`,e)},T=e=>{v(`update:placeholder`,e)};return(e,t)=>(d(),s(a,u(m(x),{"data-soybean-date-picker":``,"onUpdate:modelValue":t[0]||(t[0]=e=>v(`update:modelValue`,e)),"onUpdate:placeholder":t[1]||(t[1]=e=>v(`update:placeholder`,e))}),{trailing:h(()=>[c(i,u(m(b),{"trigger-props":S.value},p(m(y))),{trigger:h(()=>[c(r,{icon:`lucide:calendar`})]),default:h(({open:t,close:n})=>[f(e.$slots,`default`,{open:t,close:n,calendarProps:m(C),onUpdateModelValue:w,onUpdatePlaceholder:T})]),_:3},16,[`trigger-props`])]),_:3},16))}});export{g as default};
|
|
@@ -157,11 +157,46 @@ declare var __VLS_25: {
|
|
|
157
157
|
innerHTML: string | undefined;
|
|
158
158
|
class: import("vue").ClassValue | undefined;
|
|
159
159
|
style: import("vue").StyleValue | undefined;
|
|
160
|
-
|
|
160
|
+
accesskey: string | undefined;
|
|
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;
|
|
161
167
|
id: string | undefined;
|
|
168
|
+
inert: (boolean | "true" | "false") | undefined;
|
|
162
169
|
lang: string | undefined;
|
|
163
|
-
|
|
170
|
+
spellcheck: (boolean | "true" | "false") | undefined;
|
|
164
171
|
tabindex: (string | number) | undefined;
|
|
172
|
+
title: string | undefined;
|
|
173
|
+
translate: "yes" | "no" | undefined;
|
|
174
|
+
radiogroup: string | undefined;
|
|
175
|
+
role: string | undefined;
|
|
176
|
+
about: string | undefined;
|
|
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;
|
|
165
200
|
'aria-activedescendant': string | undefined;
|
|
166
201
|
'aria-atomic': (boolean | "true" | "false") | undefined;
|
|
167
202
|
'aria-autocomplete': "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -210,41 +245,6 @@ declare var __VLS_25: {
|
|
|
210
245
|
'aria-valuemin': (string | number) | undefined;
|
|
211
246
|
'aria-valuenow': (string | number) | undefined;
|
|
212
247
|
'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
|
}> & {
|
|
@@ -252,19 +252,19 @@ declare var __VLS_25: {
|
|
|
252
252
|
} & {
|
|
253
253
|
readonly disabled: boolean;
|
|
254
254
|
readonly inlist: boolean;
|
|
255
|
-
readonly asChild: boolean;
|
|
256
255
|
readonly open: boolean | undefined;
|
|
257
|
-
readonly
|
|
256
|
+
readonly asChild: boolean;
|
|
257
|
+
readonly readonly: boolean;
|
|
258
258
|
readonly showArrow: boolean;
|
|
259
259
|
readonly defaultOpen: boolean;
|
|
260
260
|
readonly modal: boolean;
|
|
261
|
-
readonly
|
|
261
|
+
readonly multiple: boolean;
|
|
262
262
|
readonly pagedNavigation: boolean;
|
|
263
263
|
readonly preventDeselect: boolean;
|
|
264
264
|
readonly fixedWeeks: boolean;
|
|
265
265
|
readonly initialFocus: boolean;
|
|
266
266
|
readonly disableDaysOutsideCurrentView: boolean;
|
|
267
|
-
}, "
|
|
267
|
+
}, "open" | "triggerProps" | "positionerProps" | "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_25) => any;
|
|
273
273
|
};
|
|
274
274
|
declare const __VLS_base: import("vue").DefineComponent<DatePickerCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
275
|
-
"update:modelValue": (date: DateValue | undefined) => any;
|
|
276
275
|
"update:open": (value: boolean) => any;
|
|
276
|
+
"update:modelValue": (date: DateValue | undefined) => 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:modelValue"?: ((date: DateValue | undefined) => any) | undefined;
|
|
286
285
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
286
|
+
"onUpdate:modelValue"?: ((date: DateValue | undefined) => any) | undefined;
|
|
287
287
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
288
288
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
289
289
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -17,8 +17,8 @@ declare const __VLS_base: import("vue").DefineComponent<DateRangeFieldRootProps,
|
|
|
17
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
23
|
granularity: Granularity;
|
|
24
24
|
hourCycle: 12 | 24;
|
|
@@ -160,11 +160,46 @@ declare var __VLS_25: {
|
|
|
160
160
|
innerHTML: string | undefined;
|
|
161
161
|
class: import("vue").ClassValue | undefined;
|
|
162
162
|
style: import("vue").StyleValue | undefined;
|
|
163
|
-
|
|
163
|
+
accesskey: string | undefined;
|
|
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;
|
|
164
170
|
id: string | undefined;
|
|
171
|
+
inert: (boolean | "true" | "false") | undefined;
|
|
165
172
|
lang: string | undefined;
|
|
166
|
-
|
|
173
|
+
spellcheck: (boolean | "true" | "false") | undefined;
|
|
167
174
|
tabindex: (string | number) | undefined;
|
|
175
|
+
title: string | undefined;
|
|
176
|
+
translate: "yes" | "no" | undefined;
|
|
177
|
+
radiogroup: string | undefined;
|
|
178
|
+
role: string | undefined;
|
|
179
|
+
about: string | undefined;
|
|
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;
|
|
168
203
|
'aria-activedescendant': string | undefined;
|
|
169
204
|
'aria-atomic': (boolean | "true" | "false") | undefined;
|
|
170
205
|
'aria-autocomplete': "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -213,41 +248,6 @@ declare var __VLS_25: {
|
|
|
213
248
|
'aria-valuemin': (string | number) | undefined;
|
|
214
249
|
'aria-valuenow': (string | number) | undefined;
|
|
215
250
|
'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
|
}> & {
|
|
@@ -255,19 +255,19 @@ declare var __VLS_25: {
|
|
|
255
255
|
} & {
|
|
256
256
|
readonly disabled: boolean;
|
|
257
257
|
readonly inlist: boolean;
|
|
258
|
-
readonly asChild: boolean;
|
|
259
258
|
readonly open: boolean | undefined;
|
|
259
|
+
readonly asChild: boolean;
|
|
260
|
+
readonly readonly: boolean;
|
|
260
261
|
readonly showArrow: boolean;
|
|
261
262
|
readonly defaultOpen: boolean;
|
|
262
263
|
readonly modal: boolean;
|
|
263
|
-
readonly readonly: boolean;
|
|
264
264
|
readonly pagedNavigation: boolean;
|
|
265
265
|
readonly preventDeselect: boolean;
|
|
266
266
|
readonly fixedWeeks: boolean;
|
|
267
267
|
readonly initialFocus: boolean;
|
|
268
268
|
readonly disableDaysOutsideCurrentView: boolean;
|
|
269
269
|
readonly allowNonContiguousRanges: boolean;
|
|
270
|
-
}, "
|
|
270
|
+
}, "open" | "triggerProps" | "positionerProps" | "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_25) => any;
|
|
276
276
|
};
|
|
277
277
|
declare const __VLS_base: import("vue").DefineComponent<DateRangePickerCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
278
|
-
"update:modelValue": (range: DateRange) => any;
|
|
279
278
|
"update:open": (value: boolean) => any;
|
|
279
|
+
"update:modelValue": (range: DateRange) => 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:modelValue"?: ((range: DateRange) => any) | undefined;
|
|
290
289
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
290
|
+
"onUpdate:modelValue"?: ((range: DateRange) => any) | undefined;
|
|
291
291
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
292
292
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
293
293
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -3,10 +3,10 @@ import { DialogAlertType, DialogCompactProps, DialogCompactSlots } from "./types
|
|
|
3
3
|
//#region src/components/dialog/dialog-compact.vue.d.ts
|
|
4
4
|
type __VLS_Slots = DialogCompactSlots;
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<DialogCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:open": (value: boolean) => any;
|
|
7
|
+
close: (event: MouseEvent) => any;
|
|
6
8
|
click: (event: PointerEvent) => any;
|
|
7
9
|
cancel: (event: MouseEvent) => any;
|
|
8
|
-
close: (event: MouseEvent) => any;
|
|
9
|
-
"update:open": (value: boolean) => any;
|
|
10
10
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
11
11
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
12
12
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -15,10 +15,10 @@ declare const __VLS_base: import("vue").DefineComponent<DialogCompactProps, {},
|
|
|
15
15
|
closeAutoFocus: (event: Event) => any;
|
|
16
16
|
confirm: (event: MouseEvent) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<DialogCompactProps> & Readonly<{
|
|
18
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
19
|
+
onClose?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onClick?: ((event: PointerEvent) => any) | undefined;
|
|
19
21
|
onCancel?: ((event: MouseEvent) => any) | undefined;
|
|
20
|
-
onClose?: ((event: MouseEvent) => any) | undefined;
|
|
21
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
22
22
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
23
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
24
24
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -30,9 +30,9 @@ declare const __VLS_base: import("vue").DefineComponent<DialogCompactProps, {},
|
|
|
30
30
|
open: boolean;
|
|
31
31
|
modal: boolean;
|
|
32
32
|
showClose: boolean;
|
|
33
|
-
alertType: DialogAlertType;
|
|
34
33
|
showCancel: "onlyWarning" | boolean;
|
|
35
34
|
showConfirm: boolean;
|
|
35
|
+
alertType: DialogAlertType;
|
|
36
36
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
37
37
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
38
38
|
declare const _default: typeof __VLS_export;
|
|
@@ -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:modelValue"?: ((value: T[]) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
11
11
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
12
12
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
13
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: T[]) => void) & ((evt: "entryFocus", event: Event) => 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);
|
|
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:modelValue"?: ((payload: Exclude<T, undefined>) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((payload: Exclude<T, undefined>) => any) | undefined;
|
|
11
11
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
12
12
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
13
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", payload: Exclude<T, undefined>) => void) & ((evt: "entryFocus", event: Event) => 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);
|
|
25
25
|
}>) => import("vue").VNode & {
|
|
26
26
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
27
|
};
|
|
@@ -12,9 +12,9 @@ declare const __VLS_base: import("vue").DefineComponent<DropdownMenuRootProps, {
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<DropdownMenuRootProps> & Readonly<{
|
|
13
13
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
+
open: boolean;
|
|
15
16
|
delayDuration: number;
|
|
16
17
|
skipDelayDuration: number;
|
|
17
|
-
open: boolean;
|
|
18
18
|
modal: boolean;
|
|
19
19
|
trigger: DropdownMenuTriggerType;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: import("vue").DefineComponent<InputNumberRootProps, {}
|
|
|
15
15
|
}>, {
|
|
16
16
|
step: number;
|
|
17
17
|
modelValue: number | null;
|
|
18
|
-
focusOnChange: boolean;
|
|
19
18
|
stepSnapping: boolean;
|
|
19
|
+
focusOnChange: boolean;
|
|
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;
|
|
@@ -18,6 +18,7 @@ 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;
|
|
21
22
|
sidebarVisible: boolean;
|
|
22
23
|
sidebarWidth: number;
|
|
23
24
|
collapsedSidebarWidth: number;
|
|
@@ -29,7 +30,6 @@ declare const __VLS_base: import("vue").DefineComponent<LayoutRootProps, {}, {},
|
|
|
29
30
|
tabHeight: number;
|
|
30
31
|
footerVisible: boolean;
|
|
31
32
|
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;
|
|
@@ -11,8 +11,8 @@ type Slots = {
|
|
|
11
11
|
type __VLS_Slots = Slots;
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<LinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LinkProps> & Readonly<{}>, {
|
|
13
13
|
disabled: boolean;
|
|
14
|
-
as: AsTag | import("vue").Component;
|
|
15
14
|
replace: boolean;
|
|
15
|
+
as: AsTag | import("vue").Component;
|
|
16
16
|
external: boolean;
|
|
17
17
|
viewTransition: boolean;
|
|
18
18
|
rel: "noopener" | "noreferrer" | "nofollow" | "sponsored" | "ugc" | (string & {}) | null;
|
|
@@ -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:modelValue"?: ((value: T) => any) | undefined;
|
|
10
9
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
11
11
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
12
12
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
13
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: T) => void) & ((evt: "entryFocus", event: Event) => 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);
|
|
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;
|
|
@@ -4,8 +4,8 @@ import { PageTabsCompactEmits, PageTabsCompactProps, PageTabsCompactSlots, PageT
|
|
|
4
4
|
declare const __VLS_export: <T extends PageTabsOptionData = PageTabsOptionData>(__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<PageTabsCompactProps<T> & {
|
|
6
6
|
onContextmenu?: ((tab: T) => any) | undefined;
|
|
7
|
-
onClick?: ((tab: T) => any) | undefined;
|
|
8
7
|
onClose?: ((tab: T) => any) | undefined;
|
|
8
|
+
onClick?: ((tab: T) => any) | undefined;
|
|
9
9
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
10
|
"onUpdate:items"?: ((items: T[]) => any) | undefined;
|
|
11
11
|
onPin?: ((tab: T) => any) | undefined;
|
|
@@ -6,12 +6,12 @@ type __VLS_Slots = {} & {
|
|
|
6
6
|
default?: (props: typeof __VLS_12) => any;
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_base: import("vue").DefineComponent<PageTabsItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
-
click: () => any;
|
|
10
9
|
close: () => any;
|
|
10
|
+
click: () => any;
|
|
11
11
|
pin: (pinned: boolean) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<PageTabsItemProps> & Readonly<{
|
|
13
|
-
onClick?: (() => any) | undefined;
|
|
14
13
|
onClose?: (() => any) | undefined;
|
|
14
|
+
onClick?: (() => any) | undefined;
|
|
15
15
|
onPin?: ((pinned: boolean) => any) | undefined;
|
|
16
16
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
17
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -3,8 +3,8 @@ import { PopconfirmCompactProps, PopconfirmCompactSlots } from "./types.js";
|
|
|
3
3
|
//#region src/components/popconfirm/popconfirm-compact.vue.d.ts
|
|
4
4
|
type __VLS_Slots = PopconfirmCompactSlots;
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<PopconfirmCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
cancel: (event: PointerEvent) => any;
|
|
7
6
|
"update:open": (value: boolean) => any;
|
|
7
|
+
cancel: (event: PointerEvent) => any;
|
|
8
8
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9
9
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
10
10
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<PopconfirmCompactProps,
|
|
|
13
13
|
closeAutoFocus: (event: Event) => any;
|
|
14
14
|
confirm: (event: PointerEvent) => any;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<PopconfirmCompactProps> & Readonly<{
|
|
16
|
-
onCancel?: ((event: PointerEvent) => any) | undefined;
|
|
17
16
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
17
|
+
onCancel?: ((event: PointerEvent) => any) | undefined;
|
|
18
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
19
19
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
20
20
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
@@ -110,11 +110,48 @@ 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
|
-
|
|
113
|
+
accesskey: string;
|
|
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";
|
|
114
121
|
id: string;
|
|
122
|
+
inert: boolean | "true" | "false";
|
|
115
123
|
lang: string;
|
|
116
|
-
|
|
124
|
+
placeholder: string;
|
|
125
|
+
spellcheck: boolean | "true" | "false";
|
|
117
126
|
tabindex: string | number;
|
|
127
|
+
title: string;
|
|
128
|
+
translate: "yes" | "no";
|
|
129
|
+
radiogroup: string;
|
|
130
|
+
role: string;
|
|
131
|
+
about: string;
|
|
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;
|
|
118
155
|
'aria-activedescendant': string;
|
|
119
156
|
'aria-atomic': boolean | "true" | "false";
|
|
120
157
|
'aria-autocomplete': "list" | "none" | "inline" | "both";
|
|
@@ -150,7 +187,7 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
150
187
|
'aria-posinset': string | number;
|
|
151
188
|
'aria-pressed': (boolean | "true" | "false") | "mixed";
|
|
152
189
|
'aria-readonly': boolean | "true" | "false";
|
|
153
|
-
'aria-relevant': "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
190
|
+
'aria-relevant': "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
154
191
|
'aria-required': boolean | "true" | "false";
|
|
155
192
|
'aria-roledescription': string;
|
|
156
193
|
'aria-rowcount': string | number;
|
|
@@ -163,45 +200,7 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
163
200
|
'aria-valuemin': string | number;
|
|
164
201
|
'aria-valuenow': string | number;
|
|
165
202
|
'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
|
-
reference: import("@floating-ui/dom").ReferenceElement;
|
|
205
204
|
side: import("@floating-ui/utils").Side;
|
|
206
205
|
sideOffset: number;
|
|
207
206
|
sideFlip: boolean;
|
|
@@ -219,6 +218,7 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
219
218
|
updatePositionStrategy: "optimized" | "always";
|
|
220
219
|
disableUpdateOnLayoutShift: boolean;
|
|
221
220
|
prioritizePosition: boolean;
|
|
221
|
+
reference: import("@floating-ui/dom").ReferenceElement;
|
|
222
222
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
223
223
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
224
224
|
declare const _default: typeof __VLS_export;
|
|
@@ -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:modelValue"?: ((value: M extends true ? T[] : T) => any) | undefined;
|
|
9
8
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
|
+
"onUpdate:modelValue"?: ((value: M extends true ? T[] : T) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: M extends true ? T[] : T) => 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:modelValue"?: ((value: M extends true ? T[] : T) => any) | undefined;
|
|
8
7
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
8
|
+
"onUpdate:modelValue"?: ((value: M extends true ? T[] : T) => 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:open", value: boolean) => void) & ((evt: "update:modelValue", value: M extends true ? T[] : T) => void);
|
|
21
21
|
}>) => import("vue").VNode & {
|
|
22
22
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
23
23
|
};
|
|
@@ -15,10 +15,10 @@ declare const __VLS_base: import("vue").DefineComponent<SliderRootProps, {}, {},
|
|
|
15
15
|
onValueCommit?: ((value: number[]) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
disabled: boolean;
|
|
18
|
+
dir: Direction;
|
|
18
19
|
max: number;
|
|
19
20
|
min: number;
|
|
20
21
|
orientation: DataOrientation;
|
|
21
|
-
dir: Direction;
|
|
22
22
|
step: number;
|
|
23
23
|
modelValue: number[];
|
|
24
24
|
defaultValue: number[];
|
|
@@ -12,8 +12,8 @@ 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
|
-
direction: DataOrientation;
|
|
16
15
|
dir: Direction;
|
|
16
|
+
direction: DataOrientation;
|
|
17
17
|
defaultLayout: number[];
|
|
18
18
|
keyboardResizeBy: number;
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: import("vue").DefineComponent<TimeFieldRootProps, {},
|
|
|
14
14
|
placeholder: TimeValue;
|
|
15
15
|
step: DateStep;
|
|
16
16
|
defaultValue: TimeValue;
|
|
17
|
-
defaultPlaceholder: TimeValue;
|
|
18
17
|
readonly: boolean;
|
|
18
|
+
defaultPlaceholder: TimeValue;
|
|
19
19
|
granularity: TimeGranularity;
|
|
20
20
|
hourCycle: 12 | 24;
|
|
21
21
|
hideTimeZone: boolean;
|
|
@@ -18,14 +18,14 @@ declare const __VLS_base: import("vue").DefineComponent<TimeRangeFieldRootProps,
|
|
|
18
18
|
placeholder: TimeValue;
|
|
19
19
|
step: DateStep;
|
|
20
20
|
defaultValue: TimeRange;
|
|
21
|
-
defaultPlaceholder: TimeValue;
|
|
22
21
|
readonly: boolean;
|
|
22
|
+
defaultPlaceholder: TimeValue;
|
|
23
23
|
granularity: TimeGranularity;
|
|
24
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;
|
|
@@ -15,12 +15,12 @@ declare const __VLS_base: import("vue").DefineComponent<TreeMenuRootProps, {}, {
|
|
|
15
15
|
"onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
defaultValue: string;
|
|
18
|
-
collapsed: boolean;
|
|
19
18
|
defaultExpanded: string[];
|
|
19
|
+
collapsed: boolean;
|
|
20
20
|
indent: number;
|
|
21
|
-
pxToRem: (px: number) => number;
|
|
22
21
|
defaultCollapsed: boolean;
|
|
23
22
|
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.
|
|
3
|
+
"version": "0.29.1",
|
|
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": {
|