bitboss-ui 2.1.126 → 2.1.127
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/ai/BbButton.md +0 -10
- package/dist/components/BaseButton/BaseButton.vue.d.ts +1 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +6 -6
- package/dist/components/BaseCheckboxGroup/BaseCheckboxGroup.vue.d.ts +3 -3
- package/dist/components/BaseColorInput/BaseColorInput.vue.d.ts +6 -6
- package/dist/components/BaseDatePickerInput/BaseDatePickerInput.vue.d.ts +4 -4
- package/dist/components/BaseDialog/BaseDialog.vue.d.ts +6 -6
- package/dist/components/BaseInputContainer/BaseInputContainer.vue.d.ts +1 -1
- package/dist/components/BaseNumberInput/BaseNumberInput.vue.d.ts +8 -8
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +6 -6
- package/dist/components/BaseRadioGroup/BaseRadioGroup.vue.d.ts +3 -3
- package/dist/components/BaseRating/BaseRating.vue.d.ts +6 -6
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +2 -2
- package/dist/components/BaseSlider/BaseSlider.vue.d.ts +7 -7
- package/dist/components/BaseSwitch/BaseSwitch.vue.d.ts +6 -6
- package/dist/components/BaseSwitchGroup/BaseSwitchGroup.vue.d.ts +3 -3
- package/dist/components/BaseTag/BaseTag.vue.d.ts +6 -6
- package/dist/components/BaseTextInput/BaseTextInput.vue.d.ts +6 -6
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +6 -6
- package/dist/components/BbButton/BbButton.vue.d.ts +1 -1
- package/dist/components/BbCheckbox/BbCheckbox.vue.d.ts +7 -7
- package/dist/components/BbCheckboxGroup/BbCheckboxGroup.vue.d.ts +3 -3
- package/dist/components/BbColorInput/BbColorInput.vue.d.ts +6 -6
- package/dist/components/BbColorPalette/BbColorPalette.vue.d.ts +2 -2
- package/dist/components/BbDatePickerInput/BbDatePickerInput.vue.d.ts +4 -4
- package/dist/components/BbDialog/BbDialog.vue.d.ts +3 -3
- package/dist/components/BbDropdown/BbDropdown.vue.d.ts +3 -3
- package/dist/components/BbDropzone/BbDropzone.vue.d.ts +4 -4
- package/dist/components/BbNumberInput/BbNumberInput.vue.d.ts +8 -8
- package/dist/components/BbOffCanvas/BbOffCanvas.vue.d.ts +7 -7
- package/dist/components/BbPopover/BbPopover.vue.d.ts +4 -4
- package/dist/components/BbRadio/BbRadio.vue.d.ts +7 -7
- package/dist/components/BbRadioGroup/BbRadioGroup.vue.d.ts +3 -3
- package/dist/components/BbRating/BbRating.vue.d.ts +6 -6
- package/dist/components/BbSelect/BbSelect.vue.d.ts +2 -2
- package/dist/components/BbSelectPopover/BbSelectPopover.vue.d.ts +2 -2
- package/dist/components/BbSlider/BbSlider.vue.d.ts +6 -6
- package/dist/components/BbSwitch/BbSwitch.vue.d.ts +7 -7
- package/dist/components/BbSwitchGroup/BbSwitchGroup.vue.d.ts +3 -3
- package/dist/components/BbTag/BbTag.vue.d.ts +6 -6
- package/dist/components/BbTextInput/BbTextInput.vue.d.ts +6 -6
- package/dist/components/BbTextarea/BbTextarea.vue.d.ts +6 -6
- package/dist/components/BbTooltip/BbTooltip.vue.d.ts +3 -3
- package/dist/components/CommonPopover/CommonPopover.vue.d.ts +1 -1
- package/dist/components/Transitions/Slide.vue.d.ts +1 -1
- package/dist/directives/bbDropdown.d.ts +8 -2
- package/dist/directives/bbTooltip.d.ts +7 -2
- package/dist/index240.js +58 -61
- package/package.json +1 -1
package/dist/ai/BbButton.md
CHANGED
|
@@ -62,7 +62,6 @@ import { computed, defineAsyncComponent, ref, toRef, useAttrs } from 'vue';
|
|
|
62
62
|
import { pickBy } from '@/utilities/functions/pickBy';
|
|
63
63
|
import { noop } from '@/utilities/functions/noop';
|
|
64
64
|
import { useLocale } from '@/composables/useLocale';
|
|
65
|
-
import { useLogger } from '@/composables/useLogger';
|
|
66
65
|
import { extractDomContainer } from '@/utilities/functions/extractDomContainer';
|
|
67
66
|
import { isEqual } from '@/utilities/functions/isEqual';
|
|
68
67
|
import type { BbButtonProps, BbButtonSlots } from './types';
|
|
@@ -70,7 +69,6 @@ import type { BbButtonProps, BbButtonSlots } from './types';
|
|
|
70
69
|
const BbTooltipAsync = defineAsyncComponent(
|
|
71
70
|
() => import('../BbTooltip/BbTooltip.vue')
|
|
72
71
|
);
|
|
73
|
-
let hasWarnedDeprecatedTooltipProp = false;
|
|
74
72
|
type Sizes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
75
73
|
|
|
76
74
|
defineOptions({
|
|
@@ -91,7 +89,6 @@ const isPressed = computed(() => isEqual(modelValue.value, props.trueValue));
|
|
|
91
89
|
defineSlots<BbButtonSlots>();
|
|
92
90
|
|
|
93
91
|
const { t } = useLocale();
|
|
94
|
-
const logger = useLogger();
|
|
95
92
|
const attrs = useAttrs();
|
|
96
93
|
const buttonDom = ref<HTMLElement>();
|
|
97
94
|
|
|
@@ -99,13 +96,6 @@ const setButtonRef = (el: unknown) => {
|
|
|
99
96
|
buttonDom.value = extractDomContainer(el) ?? undefined;
|
|
100
97
|
};
|
|
101
98
|
|
|
102
|
-
if (import.meta.env.DEV && props.tooltip && !hasWarnedDeprecatedTooltipProp) {
|
|
103
|
-
logger.warn(
|
|
104
|
-
'BbButton: the `tooltip` prop is deprecated and will be removed in the next major version. Use `v-bb-tooltip` for more flexible handling and uniform behavior across components.'
|
|
105
|
-
);
|
|
106
|
-
hasWarnedDeprecatedTooltipProp = true;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
99
|
const forwardedAttrs = computed(() => {
|
|
110
100
|
const { onClick: _, ...rest } = attrs;
|
|
111
101
|
return rest;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BaseButtonProps, BaseButtonSlots } from './types';
|
|
2
2
|
type __VLS_Slots = BaseButtonSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseButtonProps> & Readonly<{}>, {
|
|
4
|
-
type: HTMLButtonElement["type"];
|
|
5
4
|
tag: string;
|
|
5
|
+
type: HTMLButtonElement["type"];
|
|
6
6
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
7
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
8
8
|
declare const _default: typeof __VLS_export;
|
|
@@ -7,24 +7,24 @@ type __VLS_Slots = {
|
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_base: import('vue').DefineComponent<BaseCheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
9
9
|
input: (event: Event) => any;
|
|
10
|
+
"update:modelValue": (value: any) => any;
|
|
11
|
+
click: (event: MouseEvent) => any;
|
|
12
|
+
keydown: (event: KeyboardEvent) => any;
|
|
10
13
|
blur: (event: FocusEvent) => any;
|
|
11
14
|
change: (event: Event) => any;
|
|
12
|
-
click: (event: MouseEvent) => any;
|
|
13
15
|
focus: (event: FocusEvent) => any;
|
|
14
|
-
keydown: (event: KeyboardEvent) => any;
|
|
15
16
|
mousedown: (event: MouseEvent) => any;
|
|
16
17
|
mouseup: (event: MouseEvent) => any;
|
|
17
|
-
"update:modelValue": (value: any) => any;
|
|
18
18
|
}, string, import('vue').PublicProps, Readonly<BaseCheckboxProps> & Readonly<{
|
|
19
19
|
onInput?: ((event: Event) => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
21
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
23
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
21
24
|
onChange?: ((event: Event) => any) | undefined;
|
|
22
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
23
25
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
24
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
25
26
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
26
27
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
27
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
29
|
falseValue: any;
|
|
30
30
|
trueValue: any;
|
|
@@ -2,14 +2,14 @@ import { BaseCheckboxGroupEvents, BaseCheckboxGroupProps, BaseCheckboxGroupSlots
|
|
|
2
2
|
declare const __VLS_export: <T = any>(__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<{
|
|
3
3
|
props: __VLS_PrettifyLocal<BaseCheckboxGroupProps<T> & {
|
|
4
4
|
onInput?: ((event: Event) => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
6
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
7
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5
8
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
6
9
|
onChange?: ((event: Event) => any) | undefined;
|
|
7
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
8
10
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
9
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
10
11
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
11
12
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
12
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
13
|
onInactive?: (() => any) | undefined;
|
|
14
14
|
}> & import('vue').PublicProps & (typeof globalThis extends {
|
|
15
15
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -2,24 +2,24 @@ import { BaseColorInputProps, BaseColorInputSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseColorInputSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseColorInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: string | null) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: string | null) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BaseColorInputProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
autocomplete: string;
|
|
25
25
|
transitionDuration: number;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { BaseDatePickerInputProps, BaseDatePickerInputSlots, DatePickerInputError } from './types';
|
|
2
2
|
type __VLS_Slots = BaseDatePickerInputSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseDatePickerInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
|
-
focus: (event: FocusEvent) => any;
|
|
5
4
|
"update:modelValue": (value: string | string[] | null) => any;
|
|
6
5
|
error: (error: DatePickerInputError) => any;
|
|
7
|
-
|
|
6
|
+
focus: (event: FocusEvent) => any;
|
|
8
7
|
active: () => any;
|
|
8
|
+
inactive: () => any;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<BaseDatePickerInputProps> & Readonly<{
|
|
10
|
-
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
11
10
|
"onUpdate:modelValue"?: ((value: string | string[] | null) => any) | undefined;
|
|
12
11
|
onError?: ((error: DatePickerInputError) => any) | undefined;
|
|
13
|
-
|
|
12
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
14
13
|
onActive?: (() => any) | undefined;
|
|
14
|
+
onInactive?: (() => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
autocomplete: string;
|
|
17
17
|
allowWriting: boolean | "not-mobile";
|
|
@@ -8,24 +8,24 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
|
8
8
|
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
9
|
"update:modelValue": (value: boolean) => any;
|
|
10
10
|
} & {
|
|
11
|
+
shown: () => any;
|
|
11
12
|
show: () => any;
|
|
12
13
|
hide: () => any;
|
|
13
|
-
shown: () => any;
|
|
14
14
|
hidden: () => any;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
+
onShown?: (() => any) | undefined;
|
|
16
18
|
onShow?: (() => any) | undefined;
|
|
17
19
|
onHide?: (() => any) | undefined;
|
|
18
|
-
onShown?: (() => any) | undefined;
|
|
19
20
|
onHidden?: (() => any) | undefined;
|
|
20
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
|
+
transitionDuration: number;
|
|
23
|
+
overlayClasses: import('../../types/Classes').Classes;
|
|
24
|
+
panelClasses: import('../../types/Classes').Classes;
|
|
22
25
|
showClose: boolean;
|
|
23
26
|
size: number | ({
|
|
24
27
|
size?: any;
|
|
25
28
|
} & string) | keyof import('./types').Sizes;
|
|
26
|
-
transitionDuration: number;
|
|
27
|
-
overlayClasses: import('../../types/Classes').Classes;
|
|
28
|
-
panelClasses: import('../../types/Classes').Classes;
|
|
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;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BaseInputContainerProps, BaseInputContainerSlots } from './types';
|
|
2
2
|
type __VLS_Slots = BaseInputContainerSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseInputContainerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseInputContainerProps> & Readonly<{}>, {
|
|
4
|
-
reverse: boolean;
|
|
5
4
|
direction: "horizontal" | "vertical" | "auto" | string;
|
|
6
5
|
inputPosition: "left" | "center" | "right";
|
|
7
6
|
labelPosition: "left" | "center" | "right";
|
|
7
|
+
reverse: boolean;
|
|
8
8
|
tag: string;
|
|
9
9
|
labelTag: string;
|
|
10
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,28 +5,28 @@ declare const __VLS_base: import('vue').DefineComponent<BaseNumberInputProps, {
|
|
|
5
5
|
decrease: () => void;
|
|
6
6
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7
7
|
input: (event: Event) => any;
|
|
8
|
+
"update:modelValue": (value: number | null) => any;
|
|
9
|
+
click: (event: MouseEvent) => any;
|
|
10
|
+
keydown: (event: KeyboardEvent) => any;
|
|
8
11
|
blur: (event: FocusEvent) => any;
|
|
9
12
|
change: (event: Event) => any;
|
|
10
|
-
click: (event: MouseEvent) => any;
|
|
11
13
|
focus: (event: FocusEvent) => any;
|
|
12
|
-
|
|
14
|
+
keyup: (event: KeyboardEvent) => any;
|
|
13
15
|
mousedown: (event: MouseEvent) => any;
|
|
14
16
|
mouseup: (event: MouseEvent) => any;
|
|
15
|
-
"update:modelValue": (value: number | null) => any;
|
|
16
|
-
keyup: (event: KeyboardEvent) => any;
|
|
17
17
|
decrease: (value: number) => any;
|
|
18
18
|
increase: (value: number) => any;
|
|
19
19
|
}, string, import('vue').PublicProps, Readonly<BaseNumberInputProps> & Readonly<{
|
|
20
20
|
onInput?: ((event: Event) => any) | undefined;
|
|
21
|
+
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
22
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
23
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
24
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
22
25
|
onChange?: ((event: Event) => any) | undefined;
|
|
23
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
24
26
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
25
|
-
|
|
27
|
+
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
26
28
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
27
29
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
28
|
-
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
29
|
-
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
30
30
|
onDecrease?: ((value: number) => any) | undefined;
|
|
31
31
|
onIncrease?: ((value: number) => any) | undefined;
|
|
32
32
|
}>, {
|
|
@@ -2,24 +2,24 @@ import { BaseRadioProps, BaseRadioSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseRadioSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseRadioProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: any) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BaseRadioProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
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;
|
|
@@ -2,14 +2,14 @@ import { BaseRadioGroupProps, BaseRadioGroupEvents, BaseRadioGroupSlots } from '
|
|
|
2
2
|
declare const __VLS_export: <T = any>(__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<{
|
|
3
3
|
props: __VLS_PrettifyLocal<BaseRadioGroupProps<T> & {
|
|
4
4
|
onInput?: ((event: Event) => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
6
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
7
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5
8
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
6
9
|
onChange?: ((event: Event) => any) | undefined;
|
|
7
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
8
10
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
9
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
10
11
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
11
12
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
12
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
13
|
onInactive?: (() => any) | undefined;
|
|
14
14
|
}> & import('vue').PublicProps & (typeof globalThis extends {
|
|
15
15
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -2,25 +2,25 @@ import { BaseRatingProps, BaseRatingSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseRatingSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseRatingProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: number | null) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: number | null) => any;
|
|
13
13
|
inactive: () => any;
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<BaseRatingProps> & Readonly<{
|
|
15
15
|
onInput?: ((event: Event) => any) | undefined;
|
|
16
|
+
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
17
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
16
19
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
17
20
|
onChange?: ((event: Event) => any) | undefined;
|
|
18
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
19
21
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
20
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
22
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
22
23
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
23
|
-
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
24
24
|
onInactive?: (() => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
stars: number;
|
|
@@ -2,11 +2,11 @@ import { BaseSelectProps, BaseSelectEvents, BaseSelectSlots } from './types';
|
|
|
2
2
|
declare const __VLS_export: <Item = any>(__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<{
|
|
3
3
|
props: __VLS_PrettifyLocal<BaseSelectProps<Item> & {
|
|
4
4
|
onInput?: ((event: Event) => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
6
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
5
7
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
6
8
|
onChange?: ((event: Event) => any) | undefined;
|
|
7
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
8
9
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
9
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
10
10
|
onInactive?: (() => any) | undefined;
|
|
11
11
|
"onOption:add"?: ((text: string) => any) | undefined;
|
|
12
12
|
}> & import('vue').PublicProps & (typeof globalThis extends {
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import { BaseSliderProps, BaseSliderSlots } from './types';
|
|
2
2
|
type __VLS_Slots = BaseSliderSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseSliderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
|
+
"update:modelValue": (event: number | number[]) => any;
|
|
4
5
|
click: (event: MouseEvent) => any;
|
|
5
|
-
focus: (event: FocusEvent) => any;
|
|
6
6
|
keydown: (event: KeyboardEvent) => any;
|
|
7
|
-
|
|
7
|
+
focus: (event: FocusEvent) => any;
|
|
8
8
|
pointerdown: (event: PointerEvent) => any;
|
|
9
9
|
pointermove: (event: PointerEvent) => any;
|
|
10
10
|
pointerup: (event: PointerEvent) => any;
|
|
11
|
-
inactive: () => any;
|
|
12
11
|
active: () => any;
|
|
12
|
+
inactive: () => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BaseSliderProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((event: number | number[]) => any) | undefined;
|
|
14
15
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
15
|
-
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
16
16
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
17
|
-
|
|
17
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
18
18
|
onPointerdown?: ((event: PointerEvent) => any) | undefined;
|
|
19
19
|
onPointermove?: ((event: PointerEvent) => any) | undefined;
|
|
20
20
|
onPointerup?: ((event: PointerEvent) => any) | undefined;
|
|
21
|
-
onInactive?: (() => any) | undefined;
|
|
22
21
|
onActive?: (() => any) | undefined;
|
|
22
|
+
onInactive?: (() => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
-
step: number;
|
|
25
24
|
modelValue: number[] | number | string | null;
|
|
25
|
+
step: number;
|
|
26
26
|
max: number;
|
|
27
27
|
min: number;
|
|
28
28
|
maxPrecision: number;
|
|
@@ -2,24 +2,24 @@ import { BaseSwitchSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseSwitchSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<import('../..').BaseCheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: any) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<import('../..').BaseCheckboxProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
falseValue: any;
|
|
25
25
|
trueValue: any;
|
|
@@ -2,14 +2,14 @@ import { BaseSwitchGroupProps, BaseSwitchGroupSlots } from './types';
|
|
|
2
2
|
declare const __VLS_export: <T = any>(__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<{
|
|
3
3
|
props: __VLS_PrettifyLocal<BaseSwitchGroupProps<T> & {
|
|
4
4
|
onInput?: ((event: Event) => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
6
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
7
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5
8
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
6
9
|
onChange?: ((event: Event) => any) | undefined;
|
|
7
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
8
10
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
9
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
10
11
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
11
12
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
12
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
13
|
onInactive?: (() => any) | undefined;
|
|
14
14
|
}> & import('vue').PublicProps & (typeof globalThis extends {
|
|
15
15
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -2,23 +2,23 @@ import { BaseTagProps, BaseTagSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseTagSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseTagProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
|
-
"update:modelValue": (value: any) => any;
|
|
11
11
|
keyup: (event: KeyboardEvent) => any;
|
|
12
12
|
inactive: () => any;
|
|
13
13
|
duplicate: (string: string) => any;
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<BaseTagProps> & Readonly<{
|
|
15
15
|
onInput?: ((event: Event) => any) | undefined;
|
|
16
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
17
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
16
19
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
17
20
|
onChange?: ((event: Event) => any) | undefined;
|
|
18
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
19
21
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
20
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
22
22
|
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
23
|
onInactive?: (() => any) | undefined;
|
|
24
24
|
onDuplicate?: ((string: string) => any) | undefined;
|
|
@@ -2,24 +2,24 @@ import { BaseTextInputProps, BaseTextInputSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseTextInputSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseTextInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: string | null) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: string | null) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BaseTextInputProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
type: HTMLInputElement["type"];
|
|
25
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -2,24 +2,24 @@ import { BaseTextareaProps, BaseTextareaSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BaseTextareaSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BaseTextareaProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: string | null) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: string | null) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BaseTextareaProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
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;
|
|
@@ -12,9 +12,9 @@ declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
size: ("lg" | "md" | "sm" | "xs" | "xl") | Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "default", "lg" | "md" | "sm" | "xs" | "xl">>;
|
|
16
15
|
falseValue: any;
|
|
17
16
|
trueValue: any;
|
|
17
|
+
size: ("lg" | "md" | "sm" | "xs" | "xl") | Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "default", "lg" | "md" | "sm" | "xs" | "xl">>;
|
|
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;
|
|
@@ -2,28 +2,28 @@ import { BbCheckboxProps, BbCheckboxSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BbCheckboxSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BbCheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: any) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BbCheckboxProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
-
reverse: boolean;
|
|
25
24
|
direction: "horizontal" | "vertical" | "auto" | string;
|
|
26
25
|
inputPosition: "left" | "center" | "right";
|
|
26
|
+
reverse: boolean;
|
|
27
27
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
29
|
declare const _default: typeof __VLS_export;
|
|
@@ -2,14 +2,14 @@ import { BbCheckboxGroupProps, BbCheckboxGroupSlots } from './types';
|
|
|
2
2
|
declare const __VLS_export: <T = any>(__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<{
|
|
3
3
|
props: __VLS_PrettifyLocal<BbCheckboxGroupProps<T> & {
|
|
4
4
|
onInput?: ((event: Event) => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
6
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
7
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5
8
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
6
9
|
onChange?: ((event: Event) => any) | undefined;
|
|
7
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
8
10
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
9
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
10
11
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
11
12
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
12
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
13
|
onInactive?: (() => any) | undefined;
|
|
14
14
|
}> & import('vue').PublicProps & (typeof globalThis extends {
|
|
15
15
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -2,24 +2,24 @@ import { BbColorInputProps, BbColorInputSlots } from './types';
|
|
|
2
2
|
type __VLS_Slots = BbColorInputSlots;
|
|
3
3
|
declare const __VLS_base: import('vue').DefineComponent<BbColorInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
4
|
input: (event: Event) => any;
|
|
5
|
+
"update:modelValue": (value: string | null) => any;
|
|
6
|
+
click: (event: MouseEvent) => any;
|
|
7
|
+
keydown: (event: KeyboardEvent) => any;
|
|
5
8
|
blur: (event: FocusEvent) => any;
|
|
6
9
|
change: (event: Event) => any;
|
|
7
|
-
click: (event: MouseEvent) => any;
|
|
8
10
|
focus: (event: FocusEvent) => any;
|
|
9
|
-
keydown: (event: KeyboardEvent) => any;
|
|
10
11
|
mousedown: (event: MouseEvent) => any;
|
|
11
12
|
mouseup: (event: MouseEvent) => any;
|
|
12
|
-
"update:modelValue": (value: string | null) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<BbColorInputProps> & Readonly<{
|
|
14
14
|
onInput?: ((event: Event) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
16
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
18
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
16
19
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
18
20
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
19
|
-
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20
21
|
onMousedown?: ((event: MouseEvent) => any) | undefined;
|
|
21
22
|
onMouseup?: ((event: MouseEvent) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
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;
|
|
@@ -7,12 +7,12 @@ declare const __VLS_base: import('vue').DefineComponent<BbColorPaletteProps, {},
|
|
|
7
7
|
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
8
8
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
9
|
}>, {
|
|
10
|
-
transitionDuration: number;
|
|
11
10
|
offset: number;
|
|
12
11
|
padding: number;
|
|
12
|
+
transitionDuration: number;
|
|
13
|
+
flip: boolean;
|
|
13
14
|
alpha: boolean;
|
|
14
15
|
picker: boolean;
|
|
15
|
-
flip: boolean;
|
|
16
16
|
showArrow: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|