@soybeanjs/headless 0.10.1 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/alert-dialog/alert-dialog-root.vue.d.ts +1 -1
- package/dist/components/card/card-root.vue.d.ts +1 -1
- package/dist/components/collapsible/collapsible-root.vue.d.ts +1 -1
- package/dist/components/context-menu/context-menu-content.vue.d.ts +2 -2
- package/dist/components/dialog/dialog-root.vue.d.ts +1 -1
- package/dist/components/dropdown-menu/dropdown-menu-content.vue.d.ts +2 -2
- package/dist/components/dropdown-menu/dropdown-menu-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/listbox/listbox-root.vue.d.ts +2 -2
- package/dist/components/menu/menu-content.vue.d.ts +2 -2
- package/dist/components/menu/menu-sub-content.vue.d.ts +2 -2
- package/dist/components/navigation-menu/navigation-menu-root.vue.d.ts +2 -2
- package/dist/components/pagination/pagination-root.vue.d.ts +1 -1
- package/dist/components/popover/popover-root.vue.d.ts +1 -1
- package/dist/components/popper/popper-positioner.vue.d.ts +42 -42
- package/dist/components/select/select-root.vue.d.ts +2 -2
- package/dist/components/tabs/tabs-root.vue.d.ts +2 -2
- package/dist/components/toast/toast-root.vue.d.ts +3 -3
- package/dist/components/tooltip/tooltip-root.vue.d.ts +1 -1
- package/dist/components/visually-hidden/visually-hidden.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -14,8 +14,8 @@ declare const __VLS_base: vue.DefineComponent<AlertDialogRootProps, {}, {}, {},
|
|
|
14
14
|
}, string, vue.PublicProps, Readonly<AlertDialogRootProps> & Readonly<{
|
|
15
15
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
open: boolean;
|
|
18
17
|
defaultOpen: boolean;
|
|
18
|
+
open: boolean;
|
|
19
19
|
}, {}, {}, {}, string, 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;
|
|
@@ -11,8 +11,8 @@ declare const __VLS_base: vue.DefineComponent<CardRootProps, {}, {}, {}, {}, vue
|
|
|
11
11
|
}, string, vue.PublicProps, Readonly<CardRootProps> & Readonly<{
|
|
12
12
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
|
-
open: boolean;
|
|
15
14
|
defaultOpen: boolean;
|
|
15
|
+
open: boolean;
|
|
16
16
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
17
17
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: vue.DefineComponent<CollapsibleRootProps, {
|
|
|
15
15
|
}, string, vue.PublicProps, Readonly<CollapsibleRootProps> & Readonly<{
|
|
16
16
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
open: boolean;
|
|
19
18
|
defaultOpen: boolean;
|
|
19
|
+
open: boolean;
|
|
20
20
|
unmountOnHide: boolean;
|
|
21
21
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -8,21 +8,21 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_11) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: vue.DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
11
|
-
entryFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
14
13
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
15
14
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
16
15
|
openAutoFocus: (event: Event) => any;
|
|
17
16
|
closeAutoFocus: (event: Event) => any;
|
|
17
|
+
entryFocus: (event: Event) => any;
|
|
18
18
|
}, string, vue.PublicProps, Readonly<ContextMenuContentProps> & Readonly<{
|
|
19
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
20
19
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
20
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
22
21
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
23
22
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
24
23
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
24
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
27
|
avoidCollisions: boolean;
|
|
28
28
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: vue.DefineComponent<DialogRootProps, {}, {}, {}, {}, v
|
|
|
14
14
|
}, string, vue.PublicProps, Readonly<DialogRootProps> & Readonly<{
|
|
15
15
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
open: boolean;
|
|
18
17
|
defaultOpen: boolean;
|
|
18
|
+
open: boolean;
|
|
19
19
|
modal: boolean;
|
|
20
20
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -8,21 +8,21 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_11) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: vue.DefineComponent<MenuContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
11
|
-
entryFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
14
13
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
15
14
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
16
15
|
openAutoFocus: (event: Event) => any;
|
|
17
16
|
closeAutoFocus: (event: Event) => any;
|
|
17
|
+
entryFocus: (event: Event) => any;
|
|
18
18
|
}, string, vue.PublicProps, Readonly<MenuContentProps> & Readonly<{
|
|
19
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
20
19
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
20
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
22
21
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
23
22
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
24
23
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
24
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
27
|
sideOffset: number;
|
|
28
28
|
sideFlip: boolean;
|
|
@@ -14,9 +14,9 @@ declare const __VLS_base: vue.DefineComponent<DropdownMenuRootProps, {}, {}, {},
|
|
|
14
14
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
open: boolean;
|
|
17
|
+
trigger: DropdownMenuTriggerType;
|
|
17
18
|
delayDuration: number;
|
|
18
19
|
skipDelayDuration: number;
|
|
19
|
-
trigger: DropdownMenuTriggerType;
|
|
20
20
|
modal: boolean;
|
|
21
21
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: vue.DefineComponent<LayoutRootProps, {}, {}, {}, {}, v
|
|
|
15
15
|
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
collapsible: LayoutCollapsible;
|
|
18
|
-
open: boolean;
|
|
19
18
|
defaultOpen: boolean;
|
|
19
|
+
open: boolean;
|
|
20
20
|
side: LayoutSide;
|
|
21
21
|
variant: LayoutVariant;
|
|
22
22
|
sidebarWidth: number;
|
|
@@ -13,8 +13,8 @@ type Slots = {
|
|
|
13
13
|
type __VLS_Slots = Slots;
|
|
14
14
|
declare const __VLS_base: vue.DefineComponent<LinkProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<LinkProps> & Readonly<{}>, {
|
|
15
15
|
disabled: boolean;
|
|
16
|
-
replace: boolean;
|
|
17
16
|
as: AsTag | vue.Component;
|
|
17
|
+
replace: boolean;
|
|
18
18
|
external: boolean;
|
|
19
19
|
viewTransition: boolean;
|
|
20
20
|
rel: "noopener" | "noreferrer" | "nofollow" | "sponsored" | "ugc" | (string & {}) | null;
|
|
@@ -5,8 +5,8 @@ import * as vue from "vue";
|
|
|
5
5
|
//#region src/components/listbox/listbox-root.vue.d.ts
|
|
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: vue.PublicProps & __VLS_PrettifyLocal<ListboxRootProps<M> & {
|
|
8
|
-
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
9
8
|
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
9
|
+
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
10
10
|
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
11
11
|
onLeave?: ((event: Event) => any) | undefined;
|
|
12
12
|
}> & (typeof globalThis extends {
|
|
@@ -25,7 +25,7 @@ declare const __VLS_export: <M extends boolean>(__VLS_props: NonNullable<Awaited
|
|
|
25
25
|
modelValue: (M extends true ? string[] : string) | undefined;
|
|
26
26
|
}) => any;
|
|
27
27
|
};
|
|
28
|
-
emit: ((evt: "
|
|
28
|
+
emit: ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "leave", event: Event) => void);
|
|
29
29
|
}>) => vue.VNode & {
|
|
30
30
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
31
31
|
};
|
|
@@ -8,21 +8,21 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_10) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: vue.DefineComponent<MenuContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
11
|
-
entryFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
14
13
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
15
14
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
16
15
|
openAutoFocus: (event: Event) => any;
|
|
17
16
|
closeAutoFocus: (event: Event) => any;
|
|
17
|
+
entryFocus: (event: Event) => any;
|
|
18
18
|
}, string, vue.PublicProps, Readonly<MenuContentProps> & Readonly<{
|
|
19
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
20
19
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
20
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
22
21
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
23
22
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
24
23
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
24
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
26
26
|
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
@@ -8,21 +8,21 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_14) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: vue.DefineComponent<MenuSubContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
11
|
-
entryFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
14
13
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
15
14
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
16
15
|
openAutoFocus: (event: Event) => any;
|
|
17
16
|
closeAutoFocus: (event: Event) => any;
|
|
17
|
+
entryFocus: (event: Event) => any;
|
|
18
18
|
}, string, vue.PublicProps, Readonly<MenuSubContentProps> & Readonly<{
|
|
19
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
20
19
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
20
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
22
21
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
23
22
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
24
23
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
24
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
27
|
prioritizePosition: boolean;
|
|
28
28
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,11 +14,11 @@ declare const __VLS_base: vue.DefineComponent<NavigationMenuRootProps, {}, {}, {
|
|
|
14
14
|
}, string, vue.PublicProps, Readonly<NavigationMenuRootProps> & Readonly<{
|
|
15
15
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
dir: Direction;
|
|
18
17
|
orientation: DataOrientation;
|
|
18
|
+
dir: Direction;
|
|
19
|
+
unmountOnHide: boolean;
|
|
19
20
|
delayDuration: number;
|
|
20
21
|
skipDelayDuration: number;
|
|
21
|
-
unmountOnHide: boolean;
|
|
22
22
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
23
23
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
24
24
|
declare const _default: typeof __VLS_export;
|
|
@@ -14,10 +14,10 @@ declare const __VLS_base: vue.DefineComponent<PaginationRootProps, {}, {}, {}, {
|
|
|
14
14
|
}, string, vue.PublicProps, Readonly<PaginationRootProps> & Readonly<{
|
|
15
15
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
+
defaultPage: number;
|
|
17
18
|
total: number;
|
|
18
19
|
siblingCount: number;
|
|
19
20
|
showEdges: boolean;
|
|
20
|
-
defaultPage: number;
|
|
21
21
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
23
|
declare const _default: typeof __VLS_export;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: vue.DefineComponent<PopoverRootProps, {}, {}, {}, {},
|
|
|
14
14
|
}, string, vue.PublicProps, Readonly<PopoverRootProps> & Readonly<{
|
|
15
15
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
open: boolean;
|
|
18
17
|
defaultOpen: boolean;
|
|
18
|
+
open: boolean;
|
|
19
19
|
modal: boolean;
|
|
20
20
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -112,48 +112,11 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
112
112
|
innerHTML: string;
|
|
113
113
|
class: string | false | Record<string, any> | vue.ClassValue[] | null;
|
|
114
114
|
style: string | false | CSSProperties | vue.StyleValue[] | null;
|
|
115
|
-
|
|
116
|
-
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only";
|
|
117
|
-
contextmenu: string;
|
|
118
|
-
dir: string;
|
|
119
|
-
draggable: boolean | "true" | "false";
|
|
120
|
-
enterkeyhint: "done" | "next" | "search" | "enter" | "go" | "previous" | "send";
|
|
121
|
-
enterKeyHint: "done" | "next" | "search" | "enter" | "go" | "previous" | "send";
|
|
122
|
-
hidden: "" | "hidden" | (boolean | "true" | "false") | "until-found";
|
|
115
|
+
color: string;
|
|
123
116
|
id: string;
|
|
124
|
-
inert: boolean | "true" | "false";
|
|
125
117
|
lang: string;
|
|
126
|
-
placeholder: string;
|
|
127
|
-
spellcheck: boolean | "true" | "false";
|
|
128
|
-
tabindex: string | number;
|
|
129
|
-
title: string;
|
|
130
|
-
translate: "yes" | "no";
|
|
131
|
-
radiogroup: string;
|
|
132
118
|
role: string;
|
|
133
|
-
|
|
134
|
-
datatype: string;
|
|
135
|
-
inlist: any;
|
|
136
|
-
prefix: string;
|
|
137
|
-
property: string;
|
|
138
|
-
resource: string;
|
|
139
|
-
typeof: string;
|
|
140
|
-
vocab: string;
|
|
141
|
-
autocapitalize: string;
|
|
142
|
-
autocorrect: string;
|
|
143
|
-
autosave: string;
|
|
144
|
-
color: string;
|
|
145
|
-
itemprop: string;
|
|
146
|
-
itemscope: boolean | "true" | "false";
|
|
147
|
-
itemtype: string;
|
|
148
|
-
itemid: string;
|
|
149
|
-
itemref: string;
|
|
150
|
-
results: string | number;
|
|
151
|
-
security: string;
|
|
152
|
-
unselectable: "on" | "off";
|
|
153
|
-
inputmode: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
154
|
-
is: string;
|
|
155
|
-
exportparts: string;
|
|
156
|
-
part: string;
|
|
119
|
+
tabindex: string | number;
|
|
157
120
|
'aria-activedescendant': string;
|
|
158
121
|
'aria-atomic': boolean | "true" | "false";
|
|
159
122
|
'aria-autocomplete': "list" | "none" | "inline" | "both";
|
|
@@ -189,7 +152,7 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
189
152
|
'aria-posinset': string | number;
|
|
190
153
|
'aria-pressed': (boolean | "true" | "false") | "mixed";
|
|
191
154
|
'aria-readonly': boolean | "true" | "false";
|
|
192
|
-
'aria-relevant': "
|
|
155
|
+
'aria-relevant': "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals";
|
|
193
156
|
'aria-required': boolean | "true" | "false";
|
|
194
157
|
'aria-roledescription': string;
|
|
195
158
|
'aria-rowcount': string | number;
|
|
@@ -202,12 +165,48 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
202
165
|
'aria-valuemin': string | number;
|
|
203
166
|
'aria-valuenow': string | number;
|
|
204
167
|
'aria-valuetext': string;
|
|
205
|
-
|
|
206
|
-
|
|
168
|
+
accesskey: string;
|
|
169
|
+
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only";
|
|
170
|
+
contextmenu: string;
|
|
171
|
+
dir: string;
|
|
172
|
+
draggable: boolean | "true" | "false";
|
|
173
|
+
enterkeyhint: "done" | "next" | "enter" | "go" | "previous" | "search" | "send";
|
|
174
|
+
enterKeyHint: "done" | "next" | "enter" | "go" | "previous" | "search" | "send";
|
|
175
|
+
hidden: "" | "hidden" | (boolean | "true" | "false") | "until-found";
|
|
176
|
+
inert: boolean | "true" | "false";
|
|
177
|
+
placeholder: string;
|
|
178
|
+
spellcheck: boolean | "true" | "false";
|
|
179
|
+
title: string;
|
|
180
|
+
translate: "yes" | "no";
|
|
181
|
+
radiogroup: string;
|
|
182
|
+
about: string;
|
|
183
|
+
datatype: string;
|
|
184
|
+
inlist: any;
|
|
185
|
+
prefix: string;
|
|
186
|
+
property: string;
|
|
187
|
+
resource: string;
|
|
188
|
+
typeof: string;
|
|
189
|
+
vocab: string;
|
|
190
|
+
autocapitalize: string;
|
|
191
|
+
autocorrect: string;
|
|
192
|
+
autosave: string;
|
|
193
|
+
itemprop: string;
|
|
194
|
+
itemscope: boolean | "true" | "false";
|
|
195
|
+
itemtype: string;
|
|
196
|
+
itemid: string;
|
|
197
|
+
itemref: string;
|
|
198
|
+
results: string | number;
|
|
199
|
+
security: string;
|
|
200
|
+
unselectable: "off" | "on";
|
|
201
|
+
inputmode: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
202
|
+
is: string;
|
|
203
|
+
exportparts: string;
|
|
204
|
+
part: string;
|
|
207
205
|
placement: Placement$1;
|
|
208
206
|
side: _floating_ui_utils0.Side;
|
|
209
207
|
sideOffset: number;
|
|
210
208
|
sideFlip: boolean;
|
|
209
|
+
align: Align;
|
|
211
210
|
alignOffset: number;
|
|
212
211
|
alignFlip: boolean;
|
|
213
212
|
avoidCollisions: boolean;
|
|
@@ -221,6 +220,7 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
221
220
|
updatePositionStrategy: "optimized" | "always";
|
|
222
221
|
disableUpdateOnLayoutShift: boolean;
|
|
223
222
|
prioritizePosition: boolean;
|
|
223
|
+
reference: _floating_ui_dom0.ReferenceElement;
|
|
224
224
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
225
225
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
226
226
|
declare const _default: typeof __VLS_export;
|
|
@@ -5,8 +5,8 @@ import * as vue from "vue";
|
|
|
5
5
|
//#region src/components/select/select-root.vue.d.ts
|
|
6
6
|
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<{
|
|
7
7
|
props: vue.PublicProps & __VLS_PrettifyLocal<SelectRootProps<T, M> & {
|
|
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
|
}> & (typeof globalThis extends {
|
|
11
11
|
__VLS_PROPS_FALLBACK: infer P;
|
|
12
12
|
} ? P : {});
|
|
@@ -18,7 +18,7 @@ declare const __VLS_export: <T extends DefinedValue, M extends boolean = false>(
|
|
|
18
18
|
open: boolean;
|
|
19
19
|
}) => any;
|
|
20
20
|
};
|
|
21
|
-
emit: ((evt: "update:
|
|
21
|
+
emit: ((evt: "update:open", value: boolean) => void) & ((evt: "update:modelValue", value: M extends true ? T[] : T) => void);
|
|
22
22
|
}>) => vue.VNode & {
|
|
23
23
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
24
24
|
};
|
|
@@ -16,9 +16,9 @@ declare const __VLS_base: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.C
|
|
|
16
16
|
"onUpdate:modelValue"?: ((payload: NonNullable<AcceptableValue>) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
orientation: DataOrientation;
|
|
19
|
-
modelValue: DefinedValue | null;
|
|
20
|
-
loop: boolean;
|
|
21
19
|
unmountOnHide: boolean;
|
|
20
|
+
loop: boolean;
|
|
21
|
+
modelValue: DefinedValue | null;
|
|
22
22
|
activationMode: TabsActivationMode;
|
|
23
23
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -12,6 +12,7 @@ type __VLS_Slots = {} & {
|
|
|
12
12
|
default?: (props: typeof __VLS_23) => any;
|
|
13
13
|
};
|
|
14
14
|
declare const __VLS_base: vue.DefineComponent<ToastRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
15
|
+
"update:open": (value: boolean) => any;
|
|
15
16
|
pause: () => any;
|
|
16
17
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
17
18
|
resume: () => any;
|
|
@@ -19,8 +20,8 @@ declare const __VLS_base: vue.DefineComponent<ToastRootProps, {}, {}, {}, {}, vu
|
|
|
19
20
|
swipeMove: (event: SwipeEvent) => any;
|
|
20
21
|
swipeCancel: (event: SwipeEvent) => any;
|
|
21
22
|
swipeEnd: (event: SwipeEvent) => any;
|
|
22
|
-
"update:open": (value: boolean) => any;
|
|
23
23
|
}, string, vue.PublicProps, Readonly<ToastRootProps> & Readonly<{
|
|
24
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
24
25
|
onPause?: (() => any) | undefined;
|
|
25
26
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
26
27
|
onResume?: (() => any) | undefined;
|
|
@@ -28,12 +29,11 @@ declare const __VLS_base: vue.DefineComponent<ToastRootProps, {}, {}, {}, {}, vu
|
|
|
28
29
|
onSwipeMove?: ((event: SwipeEvent) => any) | undefined;
|
|
29
30
|
onSwipeCancel?: ((event: SwipeEvent) => any) | undefined;
|
|
30
31
|
onSwipeEnd?: ((event: SwipeEvent) => any) | undefined;
|
|
31
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
|
+
defaultOpen: boolean;
|
|
33
34
|
open: boolean;
|
|
34
35
|
as: AsTag | vue.Component;
|
|
35
36
|
liveType: ToastLiveType;
|
|
36
|
-
defaultOpen: boolean;
|
|
37
37
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
38
38
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
39
39
|
declare const _default: typeof __VLS_export;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: vue.DefineComponent<TooltipRootProps, {}, {}, {}, {},
|
|
|
13
13
|
}, string, vue.PublicProps, Readonly<TooltipRootProps> & Readonly<{
|
|
14
14
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
open: boolean;
|
|
17
16
|
defaultOpen: boolean;
|
|
17
|
+
open: boolean;
|
|
18
18
|
}, {}, {}, {}, string, 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;
|
|
@@ -8,8 +8,8 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_8) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: vue.DefineComponent<VisuallyHiddenProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<VisuallyHiddenProps> & Readonly<{}>, {
|
|
11
|
-
feature: VisuallyHiddenFeature;
|
|
12
11
|
as: AsTag | vue.Component;
|
|
12
|
+
feature: VisuallyHiddenFeature;
|
|
13
13
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
14
14
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
15
|
declare const _default: typeof __VLS_export;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
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": {
|