@soybeanjs/headless 0.5.6 → 0.5.8
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/collapsible/collapsible-root.vue.d.ts +1 -1
- package/dist/components/context-menu/context-menu-content.vue.d.ts +2 -2
- package/dist/components/dropdown-menu/dropdown-menu-content.vue.d.ts +3 -3
- 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 +1 -1
- package/dist/components/page-tabs/page-tabs-root.vue.d.ts +1 -1
- package/dist/components/popper/popper-positioner.vue.d.ts +41 -41
- package/dist/components/roving-focus/roving-focus-group.vue.d.ts +1 -1
- package/dist/components/select/select-content.vue.d.ts +2 -2
- package/dist/components/tree-menu/tree-menu-root.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16,8 +16,8 @@ declare const __VLS_base: vue.DefineComponent<CollapsibleRootProps, {
|
|
|
16
16
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
open: boolean;
|
|
19
|
-
unmountOnHide: boolean;
|
|
20
19
|
defaultOpen: boolean;
|
|
20
|
+
unmountOnHide: boolean;
|
|
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;
|
|
@@ -9,21 +9,21 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_11) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: vue.DefineComponent<ContextMenuContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
12
|
+
entryFocus: (event: Event) => any;
|
|
12
13
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
14
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
14
15
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
15
16
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
16
17
|
openAutoFocus: (event: Event) => any;
|
|
17
18
|
closeAutoFocus: (event: Event) => any;
|
|
18
|
-
entryFocus: (event: Event) => any;
|
|
19
19
|
}, string, vue.PublicProps, Readonly<ContextMenuContentProps> & Readonly<{
|
|
20
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
20
21
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
22
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
22
23
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
23
24
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
24
25
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
26
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
avoidCollisions: boolean;
|
|
29
29
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -10,26 +10,26 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_11) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: vue.DefineComponent<MenuContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
13
|
+
entryFocus: (event: Event) => any;
|
|
13
14
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
15
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
15
16
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
16
17
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
17
18
|
openAutoFocus: (event: Event) => any;
|
|
18
19
|
closeAutoFocus: (event: Event) => any;
|
|
19
|
-
entryFocus: (event: Event) => any;
|
|
20
20
|
}, string, vue.PublicProps, Readonly<MenuContentProps> & Readonly<{
|
|
21
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
21
22
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
23
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
23
24
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
24
25
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
25
26
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
27
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
|
+
avoidCollisions: boolean;
|
|
29
30
|
sideOffset: number;
|
|
30
31
|
sideFlip: boolean;
|
|
31
32
|
alignFlip: boolean;
|
|
32
|
-
avoidCollisions: boolean;
|
|
33
33
|
}, {}, {}, {}, string, 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;
|
|
@@ -10,21 +10,21 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_10) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: vue.DefineComponent<MenuContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
13
|
+
entryFocus: (event: Event) => any;
|
|
13
14
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
15
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
15
16
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
16
17
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
17
18
|
openAutoFocus: (event: Event) => any;
|
|
18
19
|
closeAutoFocus: (event: Event) => any;
|
|
19
|
-
entryFocus: (event: Event) => any;
|
|
20
20
|
}, string, vue.PublicProps, Readonly<MenuContentProps> & Readonly<{
|
|
21
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
21
22
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
23
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
23
24
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
24
25
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
25
26
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
27
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
28
28
|
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
29
29
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,21 +10,21 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_14) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: vue.DefineComponent<MenuSubContentProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
13
|
+
entryFocus: (event: Event) => any;
|
|
13
14
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
15
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
15
16
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
16
17
|
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
17
18
|
openAutoFocus: (event: Event) => any;
|
|
18
19
|
closeAutoFocus: (event: Event) => any;
|
|
19
|
-
entryFocus: (event: Event) => any;
|
|
20
20
|
}, string, vue.PublicProps, Readonly<MenuSubContentProps> & Readonly<{
|
|
21
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
21
22
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
23
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
23
24
|
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
24
25
|
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
25
26
|
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
27
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
|
-
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
29
|
prioritizePosition: boolean;
|
|
30
30
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: vue.DefineComponent<NavigationMenuRootProps, {}, {}, {
|
|
|
15
15
|
}, string, vue.PublicProps, Readonly<NavigationMenuRootProps> & Readonly<{
|
|
16
16
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
dir: Direction;
|
|
19
18
|
orientation: DataOrientation;
|
|
19
|
+
dir: Direction;
|
|
20
20
|
unmountOnHide: boolean;
|
|
21
21
|
delayDuration: number;
|
|
22
22
|
skipDelayDuration: number;
|
|
@@ -21,8 +21,8 @@ declare const __VLS_base: vue.DefineComponent<PageTabsRootProps, {
|
|
|
21
21
|
}>, {
|
|
22
22
|
values: string[];
|
|
23
23
|
modelValue: string;
|
|
24
|
-
beforeClose: (value: string) => MaybePromise<boolean | void>;
|
|
25
24
|
pins: string[];
|
|
25
|
+
beforeClose: (value: string) => MaybePromise<boolean | void>;
|
|
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;
|
|
@@ -21,8 +21,8 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
21
21
|
contextmenu: string;
|
|
22
22
|
onInput: (payload: InputEvent) => void;
|
|
23
23
|
onSelect: (payload: Event) => void;
|
|
24
|
-
onFocus: (payload: FocusEvent) => void;
|
|
25
24
|
onError: (payload: Event) => void;
|
|
25
|
+
onFocus: (payload: FocusEvent) => void;
|
|
26
26
|
onProgress: (payload: ProgressEvent<EventTarget>) => void;
|
|
27
27
|
onFullscreenchange: (payload: Event) => void;
|
|
28
28
|
onFullscreenerror: (payload: Event) => void;
|
|
@@ -115,46 +115,11 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
115
115
|
onEncrypted: (payload: MediaEncryptedEvent) => void;
|
|
116
116
|
innerHTML: string;
|
|
117
117
|
class: any;
|
|
118
|
-
|
|
119
|
-
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only";
|
|
120
|
-
dir: string;
|
|
121
|
-
draggable: boolean | "true" | "false";
|
|
122
|
-
enterkeyhint: "done" | "next" | "search" | "enter" | "go" | "previous" | "send";
|
|
123
|
-
enterKeyHint: "done" | "next" | "search" | "enter" | "go" | "previous" | "send";
|
|
124
|
-
hidden: "" | "hidden" | (boolean | "true" | "false") | "until-found";
|
|
118
|
+
color: string;
|
|
125
119
|
id: string;
|
|
126
|
-
inert: boolean | "true" | "false";
|
|
127
120
|
lang: string;
|
|
128
|
-
placeholder: string;
|
|
129
|
-
spellcheck: boolean | "true" | "false";
|
|
130
|
-
tabindex: string | number;
|
|
131
|
-
translate: "yes" | "no";
|
|
132
|
-
radiogroup: string;
|
|
133
121
|
role: string;
|
|
134
|
-
|
|
135
|
-
datatype: string;
|
|
136
|
-
inlist: any;
|
|
137
|
-
prefix: string;
|
|
138
|
-
property: string;
|
|
139
|
-
resource: string;
|
|
140
|
-
typeof: string;
|
|
141
|
-
vocab: string;
|
|
142
|
-
autocapitalize: string;
|
|
143
|
-
autocorrect: string;
|
|
144
|
-
autosave: string;
|
|
145
|
-
color: string;
|
|
146
|
-
itemprop: string;
|
|
147
|
-
itemscope: boolean | "true" | "false";
|
|
148
|
-
itemtype: string;
|
|
149
|
-
itemid: string;
|
|
150
|
-
itemref: string;
|
|
151
|
-
results: string | number;
|
|
152
|
-
security: string;
|
|
153
|
-
unselectable: "on" | "off";
|
|
154
|
-
inputmode: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
155
|
-
is: string;
|
|
156
|
-
exportparts: string;
|
|
157
|
-
part: string;
|
|
122
|
+
tabindex: string | number;
|
|
158
123
|
'aria-activedescendant': string;
|
|
159
124
|
'aria-atomic': boolean | "true" | "false";
|
|
160
125
|
'aria-autocomplete': "list" | "none" | "inline" | "both";
|
|
@@ -190,7 +155,7 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
190
155
|
'aria-posinset': string | number;
|
|
191
156
|
'aria-pressed': (boolean | "true" | "false") | "mixed";
|
|
192
157
|
'aria-readonly': boolean | "true" | "false";
|
|
193
|
-
'aria-relevant': "
|
|
158
|
+
'aria-relevant': "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals";
|
|
194
159
|
'aria-required': boolean | "true" | "false";
|
|
195
160
|
'aria-roledescription': string;
|
|
196
161
|
'aria-rowcount': string | number;
|
|
@@ -203,15 +168,50 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
203
168
|
'aria-valuemin': string | number;
|
|
204
169
|
'aria-valuenow': string | number;
|
|
205
170
|
'aria-valuetext': string;
|
|
171
|
+
accesskey: string;
|
|
172
|
+
contenteditable: (boolean | "true" | "false") | "inherit" | "plaintext-only";
|
|
173
|
+
dir: string;
|
|
174
|
+
draggable: boolean | "true" | "false";
|
|
175
|
+
enterkeyhint: "done" | "next" | "enter" | "search" | "go" | "previous" | "send";
|
|
176
|
+
enterKeyHint: "done" | "next" | "enter" | "search" | "go" | "previous" | "send";
|
|
177
|
+
hidden: "" | "hidden" | (boolean | "true" | "false") | "until-found";
|
|
178
|
+
inert: boolean | "true" | "false";
|
|
179
|
+
placeholder: string;
|
|
180
|
+
spellcheck: boolean | "true" | "false";
|
|
181
|
+
translate: "yes" | "no";
|
|
182
|
+
radiogroup: string;
|
|
183
|
+
about: string;
|
|
184
|
+
datatype: string;
|
|
185
|
+
inlist: any;
|
|
186
|
+
prefix: string;
|
|
187
|
+
property: string;
|
|
188
|
+
resource: string;
|
|
189
|
+
typeof: string;
|
|
190
|
+
vocab: string;
|
|
191
|
+
autocapitalize: string;
|
|
192
|
+
autocorrect: string;
|
|
193
|
+
autosave: string;
|
|
194
|
+
itemprop: string;
|
|
195
|
+
itemscope: boolean | "true" | "false";
|
|
196
|
+
itemtype: string;
|
|
197
|
+
itemid: string;
|
|
198
|
+
itemref: string;
|
|
199
|
+
results: string | number;
|
|
200
|
+
security: string;
|
|
201
|
+
unselectable: "off" | "on";
|
|
202
|
+
inputmode: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
203
|
+
is: string;
|
|
204
|
+
exportparts: string;
|
|
205
|
+
part: string;
|
|
206
|
+
side: _floating_ui_utils0.Side;
|
|
207
|
+
avoidCollisions: boolean;
|
|
206
208
|
reference: _floating_ui_dom0.ReferenceElement;
|
|
207
209
|
placement: Placement$1;
|
|
208
|
-
side: _floating_ui_utils0.Side;
|
|
209
210
|
sideOffset: number;
|
|
210
211
|
sideFlip: boolean;
|
|
211
212
|
align: Align;
|
|
212
213
|
alignOffset: number;
|
|
213
214
|
alignFlip: boolean;
|
|
214
|
-
avoidCollisions: boolean;
|
|
215
215
|
collisionBoundary: Element | null | Array<Element | null>;
|
|
216
216
|
collisionPadding: _floating_ui_utils0.Padding;
|
|
217
217
|
arrowPadding: number;
|
|
@@ -20,8 +20,8 @@ declare const __VLS_base: vue.DefineComponent<RovingFocusGroupProps, {
|
|
|
20
20
|
"onUpdate:currentTabStopId"?: ((value: string | null | undefined) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
22
|
orientation: DataOrientation;
|
|
23
|
-
preventScrollOnEntryFocus: boolean;
|
|
24
23
|
loop: boolean;
|
|
24
|
+
preventScrollOnEntryFocus: boolean;
|
|
25
25
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
26
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
27
|
declare const _default: typeof __VLS_export;
|
|
@@ -19,10 +19,10 @@ declare const __VLS_base: vue.DefineComponent<SelectContentProps, {}, {}, {}, {}
|
|
|
19
19
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
20
20
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
|
-
position: SelectPosition;
|
|
23
|
-
bodyLock: boolean;
|
|
24
22
|
avoidCollisions: boolean;
|
|
25
23
|
prioritizePosition: boolean;
|
|
24
|
+
position: SelectPosition;
|
|
25
|
+
bodyLock: boolean;
|
|
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;
|
|
@@ -15,9 +15,9 @@ declare const __VLS_base: vue.DefineComponent<TreeMenuRootProps, {}, {}, {}, {},
|
|
|
15
15
|
"onUpdate:expanded"?: ((value: string[]) => any) | undefined;
|
|
16
16
|
"onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
+
collapsed: boolean;
|
|
18
19
|
defaultValue: string;
|
|
19
20
|
defaultExpanded: string[];
|
|
20
|
-
collapsed: boolean;
|
|
21
21
|
defaultCollapsed: boolean;
|
|
22
22
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
23
23
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/headless",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
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": {
|