@soybeanjs/headless 0.25.1 → 0.25.3
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/backtop/backtop.vue.d.ts +2 -2
- package/dist/components/calendar-range/calendar-range-root.vue.d.ts +1 -1
- package/dist/components/checkbox/checkbox-root.vue.d.ts +1 -1
- package/dist/components/color-area/color-area-compact.vue.d.ts +2 -2
- package/dist/components/color-area/color-area-root.vue.d.ts +3 -3
- package/dist/components/color-field/color-field-root.vue.d.ts +2 -2
- package/dist/components/color-picker/color-picker-compact.vue.d.ts +2 -2
- package/dist/components/color-picker/color-picker-root.vue.d.ts +3 -3
- package/dist/components/color-slider/color-slider-compact.vue.d.ts +2 -2
- package/dist/components/color-slider/color-slider-root.vue.d.ts +4 -4
- package/dist/components/date-field/date-field-root.vue.d.ts +2 -2
- package/dist/components/date-picker/date-picker-compact.vue.d.ts +1 -1
- package/dist/components/date-range-field/date-range-field-root.vue.d.ts +2 -2
- package/dist/components/date-range-picker/date-range-picker-compact.vue.d.ts +1 -1
- package/dist/components/input-number/input-number-root.vue.d.ts +1 -1
- package/dist/components/input-otp/input-otp-compact.vue.d.ts +4 -4
- package/dist/components/input-otp/input-otp-root.vue.d.ts +5 -5
- package/dist/components/menubar/menubar-root.vue.d.ts +1 -1
- package/dist/components/page-tabs/page-tabs-compact.vue.d.ts +2 -2
- package/dist/components/page-tabs/page-tabs-root.vue.d.ts +1 -1
- package/dist/components/pagination/pagination-root.vue.d.ts +2 -2
- package/dist/components/popper/popper-positioner.vue.d.ts +1 -1
- package/dist/components/slider/slider-root.vue.d.ts +3 -3
- package/dist/components/splitter/splitter-group.vue.d.ts +1 -1
- package/dist/components/splitter/splitter-panel.vue.d.ts +2 -2
- package/dist/components/splitter/splitter-resize-handle.vue.d.ts +1 -1
- package/dist/components/stepper/stepper-root.vue.d.ts +1 -1
- package/dist/components/tabs/tabs-root.vue.d.ts +1 -1
- package/dist/components/tags-input/tags-input-compact.vue.d.ts +2 -2
- package/dist/components/tags-input/tags-input-root.vue.d.ts +3 -3
- package/dist/components/time-field/time-field-root.vue.d.ts +2 -2
- package/dist/components/time-range-field/time-range-field-root.vue.d.ts +2 -2
- package/dist/components/toggle/toggle.vue.d.ts +1 -1
- package/dist/nuxt/index.js +1 -1
- package/package.json +2 -2
|
@@ -13,11 +13,11 @@ declare const __VLS_base: import("vue").DefineComponent<BacktopProps, {
|
|
|
13
13
|
scrollToTop: typeof scrollToTop;
|
|
14
14
|
updateVisibility: import("@vueuse/shared").Fn;
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
-
change: (visible: boolean) => any;
|
|
17
16
|
click: (event: PointerEvent) => any;
|
|
17
|
+
change: (visible: boolean) => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<BacktopProps> & Readonly<{
|
|
19
|
-
onChange?: ((visible: boolean) => any) | undefined;
|
|
20
19
|
onClick?: ((event: PointerEvent) => any) | undefined;
|
|
20
|
+
onChange?: ((visible: boolean) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
22
|
visibilityHeight: number;
|
|
23
23
|
duration: number;
|
|
@@ -12,8 +12,8 @@ declare const __VLS_base: import("vue").DefineComponent<CalendarRangeRootProps,
|
|
|
12
12
|
"onUpdate:placeholder"?: ((date: DateValue) => any) | undefined;
|
|
13
13
|
"onUpdate:startValue"?: ((date: DateValue | undefined) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
disabled: boolean;
|
|
16
15
|
placeholder: DateValue;
|
|
16
|
+
disabled: boolean;
|
|
17
17
|
defaultValue: DateRange;
|
|
18
18
|
defaultPlaceholder: DateValue;
|
|
19
19
|
readonly: boolean;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<CheckboxRootProps, {}, {
|
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<CheckboxRootProps> & Readonly<{
|
|
14
14
|
"onUpdate:modelValue"?: ((value: CheckedState | null) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
value: DefinedValue;
|
|
17
16
|
modelValue: CheckedState | null;
|
|
17
|
+
value: DefinedValue;
|
|
18
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
20
|
declare const _default: typeof __VLS_export;
|
|
@@ -3,13 +3,13 @@ import { ColorAreaCompactProps } from "./types.js";
|
|
|
3
3
|
|
|
4
4
|
//#region src/components/color-area/color-area-compact.vue.d.ts
|
|
5
5
|
declare const __VLS_export: import("vue").DefineComponent<ColorAreaCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
change: (value: string) => any;
|
|
7
6
|
"update:modelValue": (value: string) => any;
|
|
7
|
+
change: (value: string) => any;
|
|
8
8
|
"update:color": (value: NormalizedColor) => any;
|
|
9
9
|
changeEnd: (value: string) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<ColorAreaCompactProps> & Readonly<{
|
|
11
|
-
onChange?: ((value: string) => any) | undefined;
|
|
12
11
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
|
+
onChange?: ((value: string) => any) | undefined;
|
|
13
13
|
"onUpdate:color"?: ((value: NormalizedColor) => any) | undefined;
|
|
14
14
|
onChangeEnd?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -7,20 +7,20 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
default?: (props: typeof __VLS_8) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<ColorAreaRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
change: (value: string) => any;
|
|
11
10
|
"update:modelValue": (value: string) => any;
|
|
11
|
+
change: (value: string) => any;
|
|
12
12
|
"update:color": (value: NormalizedColor) => any;
|
|
13
13
|
changeEnd: (value: string) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<ColorAreaRootProps> & Readonly<{
|
|
15
|
-
onChange?: ((value: string) => any) | undefined;
|
|
16
15
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
16
|
+
onChange?: ((value: string) => any) | undefined;
|
|
17
17
|
"onUpdate:color"?: ((value: NormalizedColor) => any) | undefined;
|
|
18
18
|
onChangeEnd?: ((value: string) => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
20
|
disabled: boolean;
|
|
21
21
|
format: ColorFormat;
|
|
22
|
-
modelValue: string | ColorValue;
|
|
23
22
|
defaultValue: string | ColorValue;
|
|
23
|
+
modelValue: string | ColorValue;
|
|
24
24
|
colorSpace: ColorSpace;
|
|
25
25
|
xChannel: ColorAreaAxisChannel;
|
|
26
26
|
yChannel: ColorAreaAxisChannel;
|
|
@@ -15,9 +15,9 @@ declare const __VLS_base: import("vue").DefineComponent<ColorFieldRootProps, {},
|
|
|
15
15
|
}>, {
|
|
16
16
|
disabled: boolean;
|
|
17
17
|
format: ColorFormat;
|
|
18
|
-
step: number;
|
|
19
|
-
modelValue: string | ColorValue;
|
|
20
18
|
defaultValue: string | ColorValue;
|
|
19
|
+
modelValue: string | ColorValue;
|
|
20
|
+
step: number;
|
|
21
21
|
readonly: boolean;
|
|
22
22
|
colorSpace: ColorSpace;
|
|
23
23
|
disableWheelChange: boolean;
|
|
@@ -13,8 +13,8 @@ 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
|
-
change: (value: string) => any;
|
|
17
16
|
"update:modelValue": (value: string) => any;
|
|
17
|
+
change: (value: string) => any;
|
|
18
18
|
"update:open": (value: boolean) => any;
|
|
19
19
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20
20
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
@@ -25,8 +25,8 @@ 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
|
-
onChange?: ((value: string) => any) | undefined;
|
|
29
28
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
29
|
+
onChange?: ((value: string) => any) | undefined;
|
|
30
30
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
31
31
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
32
32
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
@@ -21,20 +21,20 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
default?: (props: typeof __VLS_1) => any;
|
|
22
22
|
};
|
|
23
23
|
declare const __VLS_base: import("vue").DefineComponent<ColorPickerRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
-
change: (value: string) => any;
|
|
25
24
|
"update:modelValue": (value: string) => any;
|
|
25
|
+
change: (value: string) => any;
|
|
26
26
|
"update:color": (value: NormalizedColor) => any;
|
|
27
27
|
"update:format": (value: ColorFormat) => any;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<ColorPickerRootProps> & Readonly<{
|
|
29
|
-
onChange?: ((value: string) => any) | undefined;
|
|
30
29
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
30
|
+
onChange?: ((value: string) => any) | undefined;
|
|
31
31
|
"onUpdate:color"?: ((value: NormalizedColor) => any) | undefined;
|
|
32
32
|
"onUpdate:format"?: ((value: ColorFormat) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
disabled: boolean;
|
|
35
35
|
format: ColorFormat;
|
|
36
|
-
modelValue: string | ColorValue;
|
|
37
36
|
defaultValue: string | ColorValue;
|
|
37
|
+
modelValue: string | ColorValue;
|
|
38
38
|
colorSpace: ColorSpace;
|
|
39
39
|
defaultFormat: ColorFormat;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -3,13 +3,13 @@ import { ColorSliderCompactProps } from "./types.js";
|
|
|
3
3
|
|
|
4
4
|
//#region src/components/color-slider/color-slider-compact.vue.d.ts
|
|
5
5
|
declare const __VLS_export: import("vue").DefineComponent<ColorSliderCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
change: (value: string) => any;
|
|
7
6
|
"update:modelValue": (value: string) => any;
|
|
7
|
+
change: (value: string) => any;
|
|
8
8
|
"update:color": (value: NormalizedColor) => any;
|
|
9
9
|
changeEnd: (value: string) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<ColorSliderCompactProps> & Readonly<{
|
|
11
|
-
onChange?: ((value: string) => any) | undefined;
|
|
12
11
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
|
+
onChange?: ((value: string) => any) | undefined;
|
|
13
13
|
"onUpdate:color"?: ((value: NormalizedColor) => any) | undefined;
|
|
14
14
|
onChangeEnd?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -7,22 +7,22 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
default?: (props: typeof __VLS_10) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<ColorSliderRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
change: (value: string) => any;
|
|
11
10
|
"update:modelValue": (value: string) => any;
|
|
11
|
+
change: (value: string) => any;
|
|
12
12
|
"update:color": (value: NormalizedColor) => any;
|
|
13
13
|
changeEnd: (value: string) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<ColorSliderRootProps> & Readonly<{
|
|
15
|
-
onChange?: ((value: string) => any) | undefined;
|
|
16
15
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
16
|
+
onChange?: ((value: string) => any) | undefined;
|
|
17
17
|
"onUpdate:color"?: ((value: NormalizedColor) => any) | undefined;
|
|
18
18
|
onChangeEnd?: ((value: string) => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
20
|
disabled: boolean;
|
|
21
21
|
format: ColorFormat;
|
|
22
22
|
orientation: DataOrientation;
|
|
23
|
-
step: number;
|
|
24
|
-
modelValue: string | ColorValue;
|
|
25
23
|
defaultValue: string | ColorValue;
|
|
24
|
+
modelValue: string | ColorValue;
|
|
25
|
+
step: number;
|
|
26
26
|
colorSpace: ColorSpace;
|
|
27
27
|
inverted: boolean;
|
|
28
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -10,10 +10,10 @@ declare const __VLS_base: import("vue").DefineComponent<DateFieldRootProps, {},
|
|
|
10
10
|
"onUpdate:modelValue"?: ((value: import("@internationalized/date").DateValue | undefined) => any) | undefined;
|
|
11
11
|
"onUpdate:placeholder"?: ((value: import("@internationalized/date").DateValue) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
-
disabled: boolean;
|
|
14
13
|
placeholder: import("@internationalized/date").DateValue;
|
|
15
|
-
|
|
14
|
+
disabled: boolean;
|
|
16
15
|
defaultValue: import("@internationalized/date").DateValue;
|
|
16
|
+
step: DateStep;
|
|
17
17
|
defaultPlaceholder: import("@internationalized/date").DateValue;
|
|
18
18
|
readonly: boolean;
|
|
19
19
|
isDateUnavailable: DateMatcher;
|
|
@@ -250,8 +250,8 @@ declare var __VLS_25: {
|
|
|
250
250
|
}> & {
|
|
251
251
|
readonly open: boolean | undefined;
|
|
252
252
|
} & {
|
|
253
|
-
readonly disabled: boolean;
|
|
254
253
|
readonly inlist: boolean;
|
|
254
|
+
readonly disabled: boolean;
|
|
255
255
|
readonly asChild: boolean;
|
|
256
256
|
readonly open: boolean | undefined;
|
|
257
257
|
readonly showArrow: boolean;
|
|
@@ -14,10 +14,10 @@ declare const __VLS_base: import("vue").DefineComponent<DateRangeFieldRootProps,
|
|
|
14
14
|
"onUpdate:startValue"?: ((date: import("@internationalized/date").DateValue | undefined) => any) | undefined;
|
|
15
15
|
"onUpdate:endValue"?: ((date: import("@internationalized/date").DateValue | undefined) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
disabled: boolean;
|
|
18
17
|
placeholder: import("@internationalized/date").DateValue;
|
|
19
|
-
|
|
18
|
+
disabled: boolean;
|
|
20
19
|
defaultValue: DateRange;
|
|
20
|
+
step: DateStep;
|
|
21
21
|
defaultPlaceholder: import("@internationalized/date").DateValue;
|
|
22
22
|
readonly: boolean;
|
|
23
23
|
isDateUnavailable: DateMatcher;
|
|
@@ -253,8 +253,8 @@ declare var __VLS_25: {
|
|
|
253
253
|
}> & {
|
|
254
254
|
readonly open: boolean | undefined;
|
|
255
255
|
} & {
|
|
256
|
-
readonly disabled: boolean;
|
|
257
256
|
readonly inlist: boolean;
|
|
257
|
+
readonly disabled: boolean;
|
|
258
258
|
readonly asChild: boolean;
|
|
259
259
|
readonly open: boolean | undefined;
|
|
260
260
|
readonly showArrow: boolean;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<InputNumberRootProps, {}
|
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<InputNumberRootProps> & Readonly<{
|
|
14
14
|
"onUpdate:modelValue"?: ((val: number | null) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
step: number;
|
|
17
16
|
modelValue: number | null;
|
|
17
|
+
step: number;
|
|
18
18
|
stepSnapping: boolean;
|
|
19
19
|
focusOnChange: boolean;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,24 +5,24 @@ type __VLS_Slots = InputOtpCompactSlots;
|
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<InputOtpCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
6
|
input: (value: string) => any;
|
|
7
7
|
select: (event: Event) => any;
|
|
8
|
-
|
|
8
|
+
"update:modelValue": (value: string) => any;
|
|
9
9
|
blur: (event: FocusEvent) => any;
|
|
10
|
+
change: (event: Event) => any;
|
|
10
11
|
focus: (event: FocusEvent) => any;
|
|
11
12
|
mouseleave: (event: MouseEvent) => any;
|
|
12
13
|
mouseover: (event: MouseEvent) => any;
|
|
13
14
|
paste: (event: ClipboardEvent) => any;
|
|
14
|
-
"update:modelValue": (value: string) => any;
|
|
15
15
|
complete: (value: string) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<InputOtpCompactProps> & Readonly<{
|
|
17
17
|
onInput?: ((value: string) => any) | undefined;
|
|
18
18
|
onSelect?: ((event: Event) => any) | undefined;
|
|
19
|
-
|
|
19
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
20
20
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
21
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
21
22
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
22
23
|
onMouseleave?: ((event: MouseEvent) => any) | undefined;
|
|
23
24
|
onMouseover?: ((event: MouseEvent) => any) | undefined;
|
|
24
25
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
25
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
26
26
|
onComplete?: ((value: string) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -17,30 +17,30 @@ declare const __VLS_base: import("vue").DefineComponent<InputOtpRootProps, {
|
|
|
17
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
input: (value: string) => any;
|
|
19
19
|
select: (event: Event) => any;
|
|
20
|
-
|
|
20
|
+
"update:modelValue": (value: string) => any;
|
|
21
21
|
blur: (event: FocusEvent) => any;
|
|
22
|
+
change: (event: Event) => any;
|
|
22
23
|
focus: (event: FocusEvent) => any;
|
|
23
24
|
mouseleave: (event: MouseEvent) => any;
|
|
24
25
|
mouseover: (event: MouseEvent) => any;
|
|
25
26
|
paste: (event: ClipboardEvent) => any;
|
|
26
|
-
"update:modelValue": (value: string) => any;
|
|
27
27
|
complete: (value: string) => any;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<InputOtpRootProps> & Readonly<{
|
|
29
29
|
onInput?: ((value: string) => any) | undefined;
|
|
30
30
|
onSelect?: ((event: Event) => any) | undefined;
|
|
31
|
-
|
|
31
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
32
32
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
33
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
33
34
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
34
35
|
onMouseleave?: ((event: MouseEvent) => any) | undefined;
|
|
35
36
|
onMouseover?: ((event: MouseEvent) => any) | undefined;
|
|
36
37
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
37
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
38
38
|
onComplete?: ((value: string) => any) | undefined;
|
|
39
39
|
}>, {
|
|
40
40
|
autocomplete: string;
|
|
41
41
|
inputmode: InputOtpInputMode;
|
|
42
|
-
modelValue: string;
|
|
43
42
|
defaultValue: string;
|
|
43
|
+
modelValue: string;
|
|
44
44
|
pushPasswordManagerStrategy: InputOtpPushPasswordManagerStrategy;
|
|
45
45
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
46
46
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
14
|
"onUpdate:modelValue"?: ((value: DefinedValue) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
loop: boolean;
|
|
17
16
|
modelValue: DefinedValue;
|
|
17
|
+
loop: boolean;
|
|
18
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
20
|
declare const _default: typeof __VLS_export;
|
|
@@ -4,11 +4,11 @@ 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
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
7
8
|
onClick?: ((tab: T) => any) | undefined;
|
|
8
9
|
onClose?: ((tab: T) => any) | undefined;
|
|
9
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
|
-
"onUpdate:items"?: ((items: T[]) => any) | undefined;
|
|
11
10
|
onPin?: ((tab: T) => any) | undefined;
|
|
11
|
+
"onUpdate:items"?: ((items: T[]) => any) | undefined;
|
|
12
12
|
onSelectContextMenu?: ((menu: PageTabsContextMenuOptionData, tab: T) => any) | undefined;
|
|
13
13
|
}> & (typeof globalThis extends {
|
|
14
14
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -10,8 +10,8 @@ declare const __VLS_base: import("vue").DefineComponent<PageTabsRootProps, {}, {
|
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<PageTabsRootProps> & Readonly<{
|
|
11
11
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
-
loop: boolean;
|
|
14
13
|
modelValue: string;
|
|
14
|
+
loop: boolean;
|
|
15
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
17
|
declare const _default: typeof __VLS_export;
|
|
@@ -15,11 +15,11 @@ declare const __VLS_base: import("vue").DefineComponent<PaginationRootProps, {},
|
|
|
15
15
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
16
16
|
"onUpdate:pageSize"?: ((value: number) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
defaultPage: number;
|
|
19
|
-
defaultPageSize: number;
|
|
20
18
|
total: number;
|
|
21
19
|
siblingCount: number;
|
|
22
20
|
showEdges: boolean;
|
|
21
|
+
defaultPage: number;
|
|
22
|
+
defaultPageSize: number;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
25
25
|
declare const _default: typeof __VLS_export;
|
|
@@ -201,7 +201,6 @@ declare const __VLS_base: import("vue").DefineComponent<PopperPositionerProps, {
|
|
|
201
201
|
'aria-valuenow': string | number;
|
|
202
202
|
'aria-valuetext': 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;
|
|
@@ -14,14 +14,14 @@ declare const __VLS_base: import("vue").DefineComponent<SliderRootProps, {}, {},
|
|
|
14
14
|
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
15
15
|
onValueCommit?: ((value: number[]) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
disabled: boolean;
|
|
18
17
|
dir: Direction;
|
|
18
|
+
disabled: boolean;
|
|
19
19
|
max: number;
|
|
20
20
|
min: number;
|
|
21
21
|
orientation: DataOrientation;
|
|
22
|
-
step: number;
|
|
23
|
-
modelValue: number[];
|
|
24
22
|
defaultValue: number[];
|
|
23
|
+
modelValue: number[];
|
|
24
|
+
step: number;
|
|
25
25
|
inverted: boolean;
|
|
26
26
|
minStepsBetweenThumbs: number;
|
|
27
27
|
thumbAlignment: SliderThumbAlignment;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: import("vue").DefineComponent<SplitterGroupProps, {},
|
|
|
14
14
|
}>, {
|
|
15
15
|
dir: Direction;
|
|
16
16
|
direction: DataOrientation;
|
|
17
|
-
defaultLayout: number[];
|
|
18
17
|
keyboardResizeBy: number;
|
|
18
|
+
defaultLayout: number[];
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
21
|
declare const _default: typeof __VLS_export;
|
|
@@ -33,9 +33,9 @@ declare const __VLS_base: import("vue").DefineComponent<SplitterPanelProps, {
|
|
|
33
33
|
collapsible: boolean;
|
|
34
34
|
order: number;
|
|
35
35
|
defaultSize: number;
|
|
36
|
-
minSize: number;
|
|
37
|
-
maxSize: number;
|
|
38
36
|
collapsedSize: number;
|
|
37
|
+
maxSize: number;
|
|
38
|
+
minSize: number;
|
|
39
39
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
40
40
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
41
41
|
declare const _default: typeof __VLS_export;
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<SplitterResizeHandleProp
|
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<SplitterResizeHandleProps> & Readonly<{
|
|
14
14
|
onDragging?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
|
-
disabled: boolean;
|
|
17
16
|
tabindex: number;
|
|
17
|
+
disabled: boolean;
|
|
18
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
20
|
declare const _default: typeof __VLS_export;
|
|
@@ -37,8 +37,8 @@ declare const __VLS_base: import("vue").DefineComponent<StepperRootProps, {
|
|
|
37
37
|
"onUpdate:modelValue"?: ((payload: number) => any) | undefined;
|
|
38
38
|
}>, {
|
|
39
39
|
orientation: DataOrientation;
|
|
40
|
-
modelValue: number;
|
|
41
40
|
defaultValue: number;
|
|
41
|
+
modelValue: number;
|
|
42
42
|
linear: boolean;
|
|
43
43
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
44
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
14
14
|
"onUpdate:modelValue"?: ((payload: DefinedValue | null) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
orientation: DataOrientation;
|
|
17
|
-
loop: boolean;
|
|
18
17
|
modelValue: DefinedValue | null;
|
|
18
|
+
loop: boolean;
|
|
19
19
|
activationMode: TabsActivationMode;
|
|
20
20
|
unmountOnHide: boolean;
|
|
21
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -3,13 +3,13 @@ import { TagsInputCompactProps, TagsInputCompactSlots } from "./types.js";
|
|
|
3
3
|
//#region src/components/tags-input/tags-input-compact.vue.d.ts
|
|
4
4
|
type __VLS_Slots = TagsInputCompactSlots;
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<TagsInputCompactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
invalid: (value: string) => any;
|
|
7
6
|
"update:modelValue": (value: string[]) => any;
|
|
7
|
+
invalid: (value: string) => any;
|
|
8
8
|
addTag: (value: string) => any;
|
|
9
9
|
removeTag: (value: string) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<TagsInputCompactProps> & Readonly<{
|
|
11
|
-
onInvalid?: ((value: string) => any) | undefined;
|
|
12
11
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
12
|
+
onInvalid?: ((value: string) => any) | undefined;
|
|
13
13
|
onAddTag?: ((value: string) => any) | undefined;
|
|
14
14
|
onRemoveTag?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -9,19 +9,19 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_1) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<TagsInputRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
invalid: (value: string) => any;
|
|
13
12
|
"update:modelValue": (value: string[]) => any;
|
|
13
|
+
invalid: (value: string) => any;
|
|
14
14
|
addTag: (value: string) => any;
|
|
15
15
|
removeTag: (value: string) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<TagsInputRootProps> & Readonly<{
|
|
17
|
-
onInvalid?: ((value: string) => any) | undefined;
|
|
18
17
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
18
|
+
onInvalid?: ((value: string) => any) | undefined;
|
|
19
19
|
onAddTag?: ((value: string) => any) | undefined;
|
|
20
20
|
onRemoveTag?: ((value: string) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
22
|
max: number;
|
|
23
|
-
modelValue: string[];
|
|
24
23
|
defaultValue: string[];
|
|
24
|
+
modelValue: string[];
|
|
25
25
|
delimiter: string | RegExp;
|
|
26
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -10,10 +10,10 @@ declare const __VLS_base: import("vue").DefineComponent<TimeFieldRootProps, {},
|
|
|
10
10
|
"onUpdate:modelValue"?: ((time: TimeValue | undefined) => any) | undefined;
|
|
11
11
|
"onUpdate:placeholder"?: ((time: TimeValue) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
-
disabled: boolean;
|
|
14
13
|
placeholder: TimeValue;
|
|
15
|
-
|
|
14
|
+
disabled: boolean;
|
|
16
15
|
defaultValue: TimeValue;
|
|
16
|
+
step: DateStep;
|
|
17
17
|
defaultPlaceholder: TimeValue;
|
|
18
18
|
readonly: boolean;
|
|
19
19
|
hourCycle: 12 | 24;
|
|
@@ -14,10 +14,10 @@ declare const __VLS_base: import("vue").DefineComponent<TimeRangeFieldRootProps,
|
|
|
14
14
|
"onUpdate:startValue"?: ((time: TimeValue | undefined) => any) | undefined;
|
|
15
15
|
"onUpdate:endValue"?: ((time: TimeValue | undefined) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
disabled: boolean;
|
|
18
17
|
placeholder: TimeValue;
|
|
19
|
-
|
|
18
|
+
disabled: boolean;
|
|
20
19
|
defaultValue: TimeRange;
|
|
20
|
+
step: DateStep;
|
|
21
21
|
defaultPlaceholder: TimeValue;
|
|
22
22
|
readonly: boolean;
|
|
23
23
|
hourCycle: 12 | 24;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: import("vue").DefineComponent<ToggleProps, {}, {}, {},
|
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
16
16
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
modelValue: boolean;
|
|
19
18
|
defaultValue: boolean;
|
|
19
|
+
modelValue: 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;
|
package/dist/nuxt/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{components as e}from"../constants/components.js";import{addComponent as t,defineNuxtModule as n}from"@nuxt/kit";var r=n({meta:{name:`@soybeanjs/headless/nuxt`,configKey:`@soybeanjs/headless`,compatibility:{nuxt:`>=3.14`}},defaults:{components:!0},setup(n){function
|
|
1
|
+
import{components as e}from"../constants/components.js";import{addComponent as t,defineNuxtModule as n}from"@nuxt/kit";var r=n({meta:{name:`@soybeanjs/headless/nuxt`,configKey:`@soybeanjs/headless`,compatibility:{nuxt:`>=3.14`}},defaults:{components:!0},setup(n,r){r.hook(`vite:extendConfig`,e=>{e.define&&(e.define[`import.meta.env.DEV`]=e.define?.[`import.meta.dev`],e.define[`import.meta.env.MODE`]=e.define?.[`import.meta.test`]?`test`:`development`)});function i(){return typeof n.components==`object`?Object.entries(e).filter(([e])=>n.components[e]).flatMap(([e,t])=>t):n.components?Object.values(e).flat():[]}for(let e of i())t({name:`${e}`,export:e,filePath:`@soybeanjs/headless`})}});export{r as default};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/headless",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.3",
|
|
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": {
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"@soybeanjs/hooks": "^0.3.0",
|
|
98
98
|
"@soybeanjs/utils": "^0.1.1",
|
|
99
99
|
"@standard-schema/spec": "^1.1.0",
|
|
100
|
-
"@tanstack/vue-virtual": "^3.13.
|
|
100
|
+
"@tanstack/vue-virtual": "^3.13.26",
|
|
101
101
|
"@vue/shared": "^3.5.34",
|
|
102
102
|
"@vueuse/core": "^14.3.0",
|
|
103
103
|
"@vueuse/integrations": "^14.3.0",
|