@soybeanjs/headless 0.6.3 → 0.6.4
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/dropdown-menu/dropdown-menu-root.vue.d.ts +1 -1
- package/dist/components/listbox/listbox-root.vue.d.ts +2 -2
- package/dist/components/popper/popper-positioner.vue.d.ts +5 -5
- package/dist/components/roving-focus/roving-focus-group.vue.d.ts +1 -1
- package/dist/components/select/select-root.vue.d.ts +2 -2
- package/package.json +3 -3
|
@@ -14,8 +14,8 @@ declare const __VLS_base: vue.DefineComponent<DropdownMenuRootProps, {}, {}, {},
|
|
|
14
14
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
open: boolean;
|
|
17
|
-
modal: boolean;
|
|
18
17
|
trigger: DropdownMenuTriggerType;
|
|
18
|
+
modal: boolean;
|
|
19
19
|
delayDuration: number;
|
|
20
20
|
skipDelayDuration: number;
|
|
21
21
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -6,9 +6,9 @@ import * as vue from "vue";
|
|
|
6
6
|
//#region src/components/listbox/listbox-root.vue.d.ts
|
|
7
7
|
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<{
|
|
8
8
|
props: vue.PublicProps & __VLS_PrettifyLocal<ListboxRootProps<M> & {
|
|
9
|
-
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((value: M extends true ? string[] : string) => any) | undefined;
|
|
11
10
|
onHighlight?: ((payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => any) | undefined;
|
|
11
|
+
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
12
12
|
onLeave?: ((event: Event) => any) | undefined;
|
|
13
13
|
}> & (typeof globalThis extends {
|
|
14
14
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -26,7 +26,7 @@ declare const __VLS_export: <M extends boolean>(__VLS_props: NonNullable<Awaited
|
|
|
26
26
|
modelValue: (M extends true ? string[] : string) | undefined;
|
|
27
27
|
}) => any;
|
|
28
28
|
};
|
|
29
|
-
emit: ((evt: "
|
|
29
|
+
emit: ((evt: "update:modelValue", value: M extends true ? string[] : string) => void) & ((evt: "highlight", payload?: CollectionItemData<ListboxCollectionItemData> | undefined) => void) & ((evt: "entryFocus", event: CustomEvent<any>) => void) & ((evt: "leave", event: Event) => void);
|
|
30
30
|
}>) => vue.VNode & {
|
|
31
31
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
32
32
|
};
|
|
@@ -203,24 +203,24 @@ declare const __VLS_base: vue.DefineComponent<PopperPositionerProps, {}, {}, {},
|
|
|
203
203
|
'aria-valuemin': string | number;
|
|
204
204
|
'aria-valuenow': string | number;
|
|
205
205
|
'aria-valuetext': string;
|
|
206
|
-
|
|
206
|
+
reference: _floating_ui_dom0.ReferenceElement;
|
|
207
207
|
side: _floating_ui_utils0.Side;
|
|
208
208
|
sideOffset: number;
|
|
209
|
-
sideFlip: boolean;
|
|
210
209
|
align: Align;
|
|
210
|
+
arrowPadding: number;
|
|
211
|
+
updatePositionStrategy: "optimized" | "always";
|
|
212
|
+
placement: Placement$1;
|
|
213
|
+
sideFlip: boolean;
|
|
211
214
|
alignOffset: number;
|
|
212
215
|
alignFlip: boolean;
|
|
213
216
|
avoidCollisions: boolean;
|
|
214
217
|
collisionBoundary: Element | null | Array<Element | null>;
|
|
215
218
|
collisionPadding: _floating_ui_utils0.Padding;
|
|
216
|
-
arrowPadding: number;
|
|
217
219
|
sticky: "partial" | "always";
|
|
218
220
|
hideWhenDetached: boolean;
|
|
219
221
|
positionStrategy: "absolute" | "fixed";
|
|
220
|
-
updatePositionStrategy: "optimized" | "always";
|
|
221
222
|
disableUpdateOnLayoutShift: boolean;
|
|
222
223
|
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;
|
|
@@ -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
|
-
loop: boolean;
|
|
24
23
|
preventScrollOnEntryFocus: boolean;
|
|
24
|
+
loop: 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;
|
|
@@ -6,8 +6,8 @@ import * as vue from "vue";
|
|
|
6
6
|
//#region src/components/select/select-root.vue.d.ts
|
|
7
7
|
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<{
|
|
8
8
|
props: vue.PublicProps & __VLS_PrettifyLocal<SelectRootProps<T, M> & {
|
|
9
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
10
9
|
"onUpdate:modelValue"?: ((value: M extends true ? T[] : T) => any) | undefined;
|
|
10
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
11
|
}> & (typeof globalThis extends {
|
|
12
12
|
__VLS_PROPS_FALLBACK: infer P;
|
|
13
13
|
} ? P : {});
|
|
@@ -19,7 +19,7 @@ declare const __VLS_export: <T extends DefinedValue, M extends boolean = false>(
|
|
|
19
19
|
open: boolean;
|
|
20
20
|
}) => any;
|
|
21
21
|
};
|
|
22
|
-
emit: ((evt: "update:
|
|
22
|
+
emit: ((evt: "update:modelValue", value: M extends true ? T[] : T) => void) & ((evt: "update:open", value: boolean) => void);
|
|
23
23
|
}>) => vue.VNode & {
|
|
24
24
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
25
25
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/headless",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
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": {
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
"ohash": "^2.0.11"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@nuxt/kit": "^4.3.
|
|
89
|
-
"@nuxt/schema": "^4.3.
|
|
88
|
+
"@nuxt/kit": "^4.3.1",
|
|
89
|
+
"@nuxt/schema": "^4.3.1",
|
|
90
90
|
"tsdown": "0.20.3",
|
|
91
91
|
"typescript": "5.9.3",
|
|
92
92
|
"unplugin-vue": "7.1.1",
|