bitboss-ui 2.1.125 → 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 -11
- package/dist/ai/BbTooltip.md +1 -48
- 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 -4
- package/dist/components/BbTooltip/types.d.ts +1 -1
- 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/index.css +1 -1
- package/dist/index240.js +58 -62
- package/dist/index343.js +57 -83
- package/package.json +1 -1
package/dist/ai/BbButton.md
CHANGED
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
v-if="tooltip != null || $slots.tooltip"
|
|
49
49
|
:activator="buttonDom"
|
|
50
50
|
:placement="tooltipPlacement"
|
|
51
|
-
:show-close="false"
|
|
52
51
|
:timeout="tooltipTimeout"
|
|
53
52
|
>
|
|
54
53
|
<slot name="tooltip" :text="tooltip">{{ tooltip }}</slot>
|
|
@@ -63,7 +62,6 @@ import { computed, defineAsyncComponent, ref, toRef, useAttrs } from 'vue';
|
|
|
63
62
|
import { pickBy } from '@/utilities/functions/pickBy';
|
|
64
63
|
import { noop } from '@/utilities/functions/noop';
|
|
65
64
|
import { useLocale } from '@/composables/useLocale';
|
|
66
|
-
import { useLogger } from '@/composables/useLogger';
|
|
67
65
|
import { extractDomContainer } from '@/utilities/functions/extractDomContainer';
|
|
68
66
|
import { isEqual } from '@/utilities/functions/isEqual';
|
|
69
67
|
import type { BbButtonProps, BbButtonSlots } from './types';
|
|
@@ -71,7 +69,6 @@ import type { BbButtonProps, BbButtonSlots } from './types';
|
|
|
71
69
|
const BbTooltipAsync = defineAsyncComponent(
|
|
72
70
|
() => import('../BbTooltip/BbTooltip.vue')
|
|
73
71
|
);
|
|
74
|
-
let hasWarnedDeprecatedTooltipProp = false;
|
|
75
72
|
type Sizes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
76
73
|
|
|
77
74
|
defineOptions({
|
|
@@ -92,7 +89,6 @@ const isPressed = computed(() => isEqual(modelValue.value, props.trueValue));
|
|
|
92
89
|
defineSlots<BbButtonSlots>();
|
|
93
90
|
|
|
94
91
|
const { t } = useLocale();
|
|
95
|
-
const logger = useLogger();
|
|
96
92
|
const attrs = useAttrs();
|
|
97
93
|
const buttonDom = ref<HTMLElement>();
|
|
98
94
|
|
|
@@ -100,13 +96,6 @@ const setButtonRef = (el: unknown) => {
|
|
|
100
96
|
buttonDom.value = extractDomContainer(el) ?? undefined;
|
|
101
97
|
};
|
|
102
98
|
|
|
103
|
-
if (import.meta.env.DEV && props.tooltip && !hasWarnedDeprecatedTooltipProp) {
|
|
104
|
-
logger.warn(
|
|
105
|
-
'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.'
|
|
106
|
-
);
|
|
107
|
-
hasWarnedDeprecatedTooltipProp = true;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
99
|
const forwardedAttrs = computed(() => {
|
|
111
100
|
const { onClick: _, ...rest } = attrs;
|
|
112
101
|
return rest;
|
package/dist/ai/BbTooltip.md
CHANGED
|
@@ -37,22 +37,6 @@
|
|
|
37
37
|
v-bind="$attrs"
|
|
38
38
|
>
|
|
39
39
|
<span :id="id" class="bb-tooltip__content" :style="{ width: parsedWidth }">
|
|
40
|
-
<BaseButton
|
|
41
|
-
v-if="showClose"
|
|
42
|
-
:aria-label="t('common.closeLabel').value"
|
|
43
|
-
class="bb-tooltip__close"
|
|
44
|
-
tabindex="-1"
|
|
45
|
-
@click="onClickClose"
|
|
46
|
-
>
|
|
47
|
-
<svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
48
|
-
<path
|
|
49
|
-
d="M23 23L1 1M23 1L1 23"
|
|
50
|
-
stroke="currentColor"
|
|
51
|
-
stroke-linecap="round"
|
|
52
|
-
stroke-width="2"
|
|
53
|
-
/>
|
|
54
|
-
</svg>
|
|
55
|
-
</BaseButton>
|
|
56
40
|
<slot>{{ text }}</slot>
|
|
57
41
|
</span>
|
|
58
42
|
</CommonPopover>
|
|
@@ -70,9 +54,7 @@ import {
|
|
|
70
54
|
type VNode,
|
|
71
55
|
} from 'vue';
|
|
72
56
|
import { useId } from '@/composables/useId';
|
|
73
|
-
import { useLocale } from '@/composables/useLocale';
|
|
74
57
|
import { useUntil } from '@/composables/useUntil';
|
|
75
|
-
import BaseButton from '../BaseButton/BaseButton.vue';
|
|
76
58
|
import CommonPopover from '../CommonPopover/CommonPopover.vue';
|
|
77
59
|
import { useElementSize } from '@vueuse/core';
|
|
78
60
|
import { extractDomContainer } from '@/utilities/functions/extractDomContainer';
|
|
@@ -83,7 +65,6 @@ const props = withDefaults(defineProps<BbTooltipProps>(), {
|
|
|
83
65
|
arrowPadding: 10,
|
|
84
66
|
padding: 10,
|
|
85
67
|
placement: 'top',
|
|
86
|
-
showClose: true,
|
|
87
68
|
theme: 'default',
|
|
88
69
|
transitionDuration: 250,
|
|
89
70
|
timeout: 0,
|
|
@@ -95,7 +76,6 @@ defineOptions({
|
|
|
95
76
|
inheritAttrs: false,
|
|
96
77
|
});
|
|
97
78
|
|
|
98
|
-
const { t } = useLocale();
|
|
99
79
|
const id = `bb_${props.id ?? useId().id.value}`;
|
|
100
80
|
const descId = `${id}_desc`;
|
|
101
81
|
|
|
@@ -142,7 +122,6 @@ const activatorEl = ref<HTMLElement>();
|
|
|
142
122
|
const hasExternalActivator = computed(() => props.activator != null);
|
|
143
123
|
const popoverRef = useTemplateRef('popover');
|
|
144
124
|
const popoverDom = computed(() => extractDomContainer(popoverRef.value));
|
|
145
|
-
const canOpen = ref(true);
|
|
146
125
|
const open = defineModel<boolean>({ default: false });
|
|
147
126
|
const hasOpenedOnce = useUntil(open);
|
|
148
127
|
|
|
@@ -176,7 +155,7 @@ const scheduleClose = () => {
|
|
|
176
155
|
|
|
177
156
|
const scheduleOpen = () => {
|
|
178
157
|
cancelClose();
|
|
179
|
-
if (open.value || props.disabled
|
|
158
|
+
if (open.value || props.disabled) return;
|
|
180
159
|
_openTimeout = setTimeout(() => {
|
|
181
160
|
open.value = true;
|
|
182
161
|
document.addEventListener('keydown', onEsc, { passive: true });
|
|
@@ -187,11 +166,6 @@ const onEsc = (event: KeyboardEvent) => {
|
|
|
187
166
|
if (event.key === 'Escape') forceClose();
|
|
188
167
|
};
|
|
189
168
|
|
|
190
|
-
const onClickClose = () => {
|
|
191
|
-
canOpen.value = false;
|
|
192
|
-
forceClose();
|
|
193
|
-
};
|
|
194
|
-
|
|
195
169
|
// --- Sync external activator prop ---
|
|
196
170
|
|
|
197
171
|
watch(
|
|
@@ -325,7 +299,6 @@ export type BbTooltipProps = Pick<
|
|
|
325
299
|
| 'id'
|
|
326
300
|
| 'padding'
|
|
327
301
|
| 'placement'
|
|
328
|
-
| 'showClose'
|
|
329
302
|
| 'text'
|
|
330
303
|
| 'theme'
|
|
331
304
|
| 'transitionDuration'
|
|
@@ -397,26 +370,6 @@ export type BbTooltipSlots = {
|
|
|
397
370
|
align-items: flex-start;
|
|
398
371
|
font-size: 14px;
|
|
399
372
|
padding: var(--p);
|
|
400
|
-
.bb-tooltip__close {
|
|
401
|
-
border-radius: var(--bb-radius);
|
|
402
|
-
flex-shrink: 0;
|
|
403
|
-
order: 1;
|
|
404
|
-
isolation: isolate;
|
|
405
|
-
padding: var(--p);
|
|
406
|
-
margin: -2px calc(var(--p) * -1) calc(var(--p) * -1) 0px;
|
|
407
|
-
|
|
408
|
-
&:hover {
|
|
409
|
-
color: var(--bb-primary);
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
&:focus-visible {
|
|
413
|
-
color: var(--bb-primary);
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
svg {
|
|
417
|
-
width: 10px;
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
373
|
}
|
|
421
374
|
}
|
|
422
375
|
```
|
|
@@ -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;
|