pukaad-ui-lib 1.306.0 → 1.307.0
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/module.json +1 -1
- package/dist/runtime/components/button.d.vue.ts +3 -0
- package/dist/runtime/components/button.vue +17 -9
- package/dist/runtime/components/button.vue.d.ts +3 -0
- package/dist/runtime/components/ui/button/index.d.ts +1 -1
- package/dist/runtime/components/ui/carousel/CarouselNext.d.vue.ts +1 -1
- package/dist/runtime/components/ui/carousel/CarouselNext.vue.d.ts +1 -1
- package/dist/runtime/components/ui/carousel/CarouselPrevious.d.vue.ts +1 -1
- package/dist/runtime/components/ui/carousel/CarouselPrevious.vue.d.ts +1 -1
- package/dist/runtime/components/ui/input-group/InputGroupButton.d.vue.ts +1 -1
- package/dist/runtime/components/ui/input-group/InputGroupButton.vue.d.ts +1 -1
- package/dist/runtime/components/ui/input-group/index.d.ts +1 -1
- package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +48 -48
- package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +48 -48
- package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +50 -50
- package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +50 -50
- package/dist/runtime/components/ui/pagination/PaginationFirst.d.vue.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationFirst.vue.d.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationItem.d.vue.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationItem.vue.d.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationLast.d.vue.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationLast.vue.d.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationNext.d.vue.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationNext.vue.d.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationPrevious.d.vue.ts +1 -1
- package/dist/runtime/components/ui/pagination/PaginationPrevious.vue.d.ts +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import type { HTMLAttributes } from "vue";
|
|
2
|
+
import type { ButtonVariants } from "./ui/button/index.js";
|
|
2
3
|
export type ButtonType = "button" | "submit" | "reset";
|
|
3
4
|
export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text" | "icon";
|
|
4
5
|
export type ButtonColor = "default" | "primary" | "secondary" | "destructive" | "info";
|
|
6
|
+
export type ButtonSize = ButtonVariants["size"];
|
|
5
7
|
export interface ButtonProps {
|
|
6
8
|
type?: ButtonType;
|
|
7
9
|
class?: HTMLAttributes["class"];
|
|
8
10
|
variant?: ButtonVariant;
|
|
9
11
|
color?: ButtonColor;
|
|
12
|
+
size?: ButtonSize;
|
|
10
13
|
circle?: boolean;
|
|
11
14
|
loading?: boolean;
|
|
12
15
|
disabled?: boolean;
|
|
@@ -4,25 +4,33 @@
|
|
|
4
4
|
props.variant === 'text' || props.variant === 'link' ? '!p-0 !h-auto' : '',
|
|
5
5
|
props.circle && 'rounded-full aspect-square',
|
|
6
6
|
props.class
|
|
7
|
-
]" :variant="props.variant" :color="props.color" :
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
]" :variant="props.variant" :color="props.color" :size="resolvedSize" :type="props.type"
|
|
8
|
+
:disabled="props.loading || props.disabled">
|
|
9
|
+
<span class="inline-grid place-items-center">
|
|
10
|
+
<span class="inline-flex items-center justify-center gap-[8px] [grid-area:1/1]"
|
|
11
|
+
:class="{ invisible: props.loading }">
|
|
12
|
+
<slot />
|
|
13
|
+
</span>
|
|
14
|
+
<ShadSpinner v-if="props.loading" class="[grid-area:1/1]" />
|
|
15
|
+
</span>
|
|
16
|
+
</ShadButton>
|
|
16
17
|
</template>
|
|
17
18
|
|
|
18
19
|
<script setup>
|
|
20
|
+
import { computed } from "vue";
|
|
19
21
|
const props = defineProps({
|
|
20
22
|
type: { type: String, required: false, default: "button" },
|
|
21
23
|
class: { type: null, required: false },
|
|
22
24
|
variant: { type: String, required: false, default: "default" },
|
|
23
25
|
color: { type: String, required: false, default: "default" },
|
|
26
|
+
size: { type: null, required: false },
|
|
24
27
|
circle: { type: Boolean, required: false, default: false },
|
|
25
28
|
loading: { type: Boolean, required: false, default: false },
|
|
26
29
|
disabled: { type: Boolean, required: false, default: false }
|
|
27
30
|
});
|
|
31
|
+
const resolvedSize = computed(() => {
|
|
32
|
+
if (props.size !== void 0) return props.size;
|
|
33
|
+
if (props.variant === "icon" || props.circle) return "icon";
|
|
34
|
+
return "default";
|
|
35
|
+
});
|
|
28
36
|
</script>
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import type { HTMLAttributes } from "vue";
|
|
2
|
+
import type { ButtonVariants } from "./ui/button/index.js";
|
|
2
3
|
export type ButtonType = "button" | "submit" | "reset";
|
|
3
4
|
export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text" | "icon";
|
|
4
5
|
export type ButtonColor = "default" | "primary" | "secondary" | "destructive" | "info";
|
|
6
|
+
export type ButtonSize = ButtonVariants["size"];
|
|
5
7
|
export interface ButtonProps {
|
|
6
8
|
type?: ButtonType;
|
|
7
9
|
class?: HTMLAttributes["class"];
|
|
8
10
|
variant?: ButtonVariant;
|
|
9
11
|
color?: ButtonColor;
|
|
12
|
+
size?: ButtonSize;
|
|
10
13
|
circle?: boolean;
|
|
11
14
|
loading?: boolean;
|
|
12
15
|
disabled?: boolean;
|
|
@@ -3,7 +3,7 @@ export { default as Button } from "./Button.vue.js";
|
|
|
3
3
|
export declare const buttonVariants: (props?: ({
|
|
4
4
|
variant?: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null | undefined;
|
|
5
5
|
color?: "default" | "primary" | "secondary" | "destructive" | "info" | null | undefined;
|
|
6
|
-
size?: "default" | "icon" | "
|
|
6
|
+
size?: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null | undefined;
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
export type ButtonVariants = VariantProps<typeof buttonVariants>;
|
|
9
9
|
export type ButtonColor = ButtonVariants["color"];
|
|
@@ -9,7 +9,7 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_10) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
-
size: "default" | "icon" | "
|
|
12
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
13
13
|
variant: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -9,7 +9,7 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_10) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
-
size: "default" | "icon" | "
|
|
12
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
13
13
|
variant: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -9,7 +9,7 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_10) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
-
size: "default" | "icon" | "
|
|
12
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
13
13
|
variant: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -9,7 +9,7 @@ type __VLS_Slots = {} & {
|
|
|
9
9
|
default?: (props: typeof __VLS_10) => any;
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
-
size: "default" | "icon" | "
|
|
12
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
13
13
|
variant: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -4,7 +4,7 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_8) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_base: import("vue").DefineComponent<InputGroupButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<InputGroupButtonProps> & Readonly<{}>, {
|
|
7
|
-
size: "
|
|
7
|
+
size: "sm" | "icon-sm" | "icon-xs" | "xs" | null;
|
|
8
8
|
variant: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -4,7 +4,7 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_8) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_base: import("vue").DefineComponent<InputGroupButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<InputGroupButtonProps> & Readonly<{}>, {
|
|
7
|
-
size: "
|
|
7
|
+
size: "sm" | "icon-sm" | "icon-xs" | "xs" | null;
|
|
8
8
|
variant: "link" | "text" | "default" | "outline" | "ghost" | "icon" | null;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -12,7 +12,7 @@ export declare const inputGroupAddonVariants: (props?: ({
|
|
|
12
12
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
13
13
|
export type InputGroupVariants = VariantProps<typeof inputGroupAddonVariants>;
|
|
14
14
|
export declare const inputGroupButtonVariants: (props?: ({
|
|
15
|
-
size?: "
|
|
15
|
+
size?: "sm" | "icon-sm" | "icon-xs" | "xs" | null | undefined;
|
|
16
16
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
17
17
|
export type InputGroupButtonVariants = VariantProps<typeof inputGroupButtonVariants>;
|
|
18
18
|
export interface InputGroupButtonProps {
|
|
@@ -4,23 +4,23 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
6
|
class?: any;
|
|
7
|
-
disabled?: (boolean | "
|
|
7
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
8
8
|
label?: string | undefined | undefined;
|
|
9
9
|
innerHTML?: string | undefined | undefined;
|
|
10
10
|
style?: import("vue").StyleValue;
|
|
11
11
|
accesskey?: string | undefined | undefined;
|
|
12
|
-
contenteditable?: "inherit" | (boolean | "
|
|
12
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
13
13
|
contextmenu?: string | undefined | undefined;
|
|
14
14
|
dir?: string | undefined | undefined;
|
|
15
|
-
draggable?: (boolean | "
|
|
15
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
16
16
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
17
17
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
18
|
-
hidden?: "" | (boolean | "
|
|
18
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
19
19
|
id?: string | undefined | undefined;
|
|
20
|
-
inert?: (boolean | "
|
|
20
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
21
21
|
lang?: string | undefined | undefined;
|
|
22
22
|
placeholder?: string | undefined | undefined;
|
|
23
|
-
spellcheck?: (boolean | "
|
|
23
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
24
24
|
tabindex?: (string | number) | undefined;
|
|
25
25
|
title?: string | undefined | undefined;
|
|
26
26
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -39,7 +39,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
39
39
|
autosave?: string | undefined | undefined;
|
|
40
40
|
color?: string | undefined | undefined;
|
|
41
41
|
itemprop?: string | undefined | undefined;
|
|
42
|
-
itemscope?: (boolean | "
|
|
42
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
43
43
|
itemtype?: string | undefined | undefined;
|
|
44
44
|
itemid?: string | undefined | undefined;
|
|
45
45
|
itemref?: string | undefined | undefined;
|
|
@@ -51,47 +51,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
51
51
|
exportparts?: string | undefined;
|
|
52
52
|
part?: string | undefined;
|
|
53
53
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
54
|
-
'aria-atomic'?: (boolean | "
|
|
54
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
55
55
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
56
|
-
'aria-busy'?: (boolean | "
|
|
57
|
-
'aria-checked'?: (boolean | "
|
|
56
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
57
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
58
58
|
'aria-colcount'?: (string | number) | undefined;
|
|
59
59
|
'aria-colindex'?: (string | number) | undefined;
|
|
60
60
|
'aria-colspan'?: (string | number) | undefined;
|
|
61
61
|
'aria-controls'?: string | undefined | undefined;
|
|
62
|
-
'aria-current'?: "time" | (boolean | "
|
|
62
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
63
63
|
'aria-describedby'?: string | undefined | undefined;
|
|
64
64
|
'aria-details'?: string | undefined | undefined;
|
|
65
|
-
'aria-disabled'?: (boolean | "
|
|
65
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
66
66
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
67
67
|
'aria-errormessage'?: string | undefined | undefined;
|
|
68
|
-
'aria-expanded'?: (boolean | "
|
|
68
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
69
69
|
'aria-flowto'?: string | undefined | undefined;
|
|
70
|
-
'aria-grabbed'?: (boolean | "
|
|
71
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
72
|
-
'aria-hidden'?: (boolean | "
|
|
73
|
-
'aria-invalid'?: (boolean | "
|
|
70
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
72
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
74
74
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
75
75
|
'aria-label'?: string | undefined | undefined;
|
|
76
76
|
'aria-labelledby'?: string | undefined | undefined;
|
|
77
77
|
'aria-level'?: (string | number) | undefined;
|
|
78
78
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
79
|
-
'aria-modal'?: (boolean | "
|
|
80
|
-
'aria-multiline'?: (boolean | "
|
|
81
|
-
'aria-multiselectable'?: (boolean | "
|
|
79
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
80
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
82
82
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
83
83
|
'aria-owns'?: string | undefined | undefined;
|
|
84
84
|
'aria-placeholder'?: string | undefined | undefined;
|
|
85
85
|
'aria-posinset'?: (string | number) | undefined;
|
|
86
|
-
'aria-pressed'?: (boolean | "
|
|
87
|
-
'aria-readonly'?: (boolean | "
|
|
86
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
87
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
88
88
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
89
|
-
'aria-required'?: (boolean | "
|
|
89
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
90
90
|
'aria-roledescription'?: string | undefined | undefined;
|
|
91
91
|
'aria-rowcount'?: (string | number) | undefined;
|
|
92
92
|
'aria-rowindex'?: (string | number) | undefined;
|
|
93
93
|
'aria-rowspan'?: (string | number) | undefined;
|
|
94
|
-
'aria-selected'?: (boolean | "
|
|
94
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
95
95
|
'aria-setsize'?: (string | number) | undefined;
|
|
96
96
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
97
97
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -198,23 +198,23 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
198
198
|
ref_key?: string | undefined | undefined;
|
|
199
199
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
200
200
|
class?: any;
|
|
201
|
-
disabled?: (boolean | "
|
|
201
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
202
202
|
label?: string | undefined | undefined;
|
|
203
203
|
innerHTML?: string | undefined | undefined;
|
|
204
204
|
style?: import("vue").StyleValue;
|
|
205
205
|
accesskey?: string | undefined | undefined;
|
|
206
|
-
contenteditable?: "inherit" | (boolean | "
|
|
206
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
207
207
|
contextmenu?: string | undefined | undefined;
|
|
208
208
|
dir?: string | undefined | undefined;
|
|
209
|
-
draggable?: (boolean | "
|
|
209
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
210
210
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
211
211
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
212
|
-
hidden?: "" | (boolean | "
|
|
212
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
213
213
|
id?: string | undefined | undefined;
|
|
214
|
-
inert?: (boolean | "
|
|
214
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
215
215
|
lang?: string | undefined | undefined;
|
|
216
216
|
placeholder?: string | undefined | undefined;
|
|
217
|
-
spellcheck?: (boolean | "
|
|
217
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
218
218
|
tabindex?: (string | number) | undefined;
|
|
219
219
|
title?: string | undefined | undefined;
|
|
220
220
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -233,7 +233,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
233
233
|
autosave?: string | undefined | undefined;
|
|
234
234
|
color?: string | undefined | undefined;
|
|
235
235
|
itemprop?: string | undefined | undefined;
|
|
236
|
-
itemscope?: (boolean | "
|
|
236
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
237
237
|
itemtype?: string | undefined | undefined;
|
|
238
238
|
itemid?: string | undefined | undefined;
|
|
239
239
|
itemref?: string | undefined | undefined;
|
|
@@ -245,47 +245,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
245
245
|
exportparts?: string | undefined;
|
|
246
246
|
part?: string | undefined;
|
|
247
247
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
248
|
-
'aria-atomic'?: (boolean | "
|
|
248
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
249
249
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
250
|
-
'aria-busy'?: (boolean | "
|
|
251
|
-
'aria-checked'?: (boolean | "
|
|
250
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
251
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
252
252
|
'aria-colcount'?: (string | number) | undefined;
|
|
253
253
|
'aria-colindex'?: (string | number) | undefined;
|
|
254
254
|
'aria-colspan'?: (string | number) | undefined;
|
|
255
255
|
'aria-controls'?: string | undefined | undefined;
|
|
256
|
-
'aria-current'?: "time" | (boolean | "
|
|
256
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
257
257
|
'aria-describedby'?: string | undefined | undefined;
|
|
258
258
|
'aria-details'?: string | undefined | undefined;
|
|
259
|
-
'aria-disabled'?: (boolean | "
|
|
259
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
260
260
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
261
261
|
'aria-errormessage'?: string | undefined | undefined;
|
|
262
|
-
'aria-expanded'?: (boolean | "
|
|
262
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
263
263
|
'aria-flowto'?: string | undefined | undefined;
|
|
264
|
-
'aria-grabbed'?: (boolean | "
|
|
265
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
266
|
-
'aria-hidden'?: (boolean | "
|
|
267
|
-
'aria-invalid'?: (boolean | "
|
|
264
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
265
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
266
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
267
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
268
268
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
269
269
|
'aria-label'?: string | undefined | undefined;
|
|
270
270
|
'aria-labelledby'?: string | undefined | undefined;
|
|
271
271
|
'aria-level'?: (string | number) | undefined;
|
|
272
272
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
273
|
-
'aria-modal'?: (boolean | "
|
|
274
|
-
'aria-multiline'?: (boolean | "
|
|
275
|
-
'aria-multiselectable'?: (boolean | "
|
|
273
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
274
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
275
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
276
276
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
277
277
|
'aria-owns'?: string | undefined | undefined;
|
|
278
278
|
'aria-placeholder'?: string | undefined | undefined;
|
|
279
279
|
'aria-posinset'?: (string | number) | undefined;
|
|
280
|
-
'aria-pressed'?: (boolean | "
|
|
281
|
-
'aria-readonly'?: (boolean | "
|
|
280
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
281
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
282
282
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
283
|
-
'aria-required'?: (boolean | "
|
|
283
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
284
284
|
'aria-roledescription'?: string | undefined | undefined;
|
|
285
285
|
'aria-rowcount'?: (string | number) | undefined;
|
|
286
286
|
'aria-rowindex'?: (string | number) | undefined;
|
|
287
287
|
'aria-rowspan'?: (string | number) | undefined;
|
|
288
|
-
'aria-selected'?: (boolean | "
|
|
288
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
289
289
|
'aria-setsize'?: (string | number) | undefined;
|
|
290
290
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
291
291
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -4,23 +4,23 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
6
|
class?: any;
|
|
7
|
-
disabled?: (boolean | "
|
|
7
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
8
8
|
label?: string | undefined | undefined;
|
|
9
9
|
innerHTML?: string | undefined | undefined;
|
|
10
10
|
style?: import("vue").StyleValue;
|
|
11
11
|
accesskey?: string | undefined | undefined;
|
|
12
|
-
contenteditable?: "inherit" | (boolean | "
|
|
12
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
13
13
|
contextmenu?: string | undefined | undefined;
|
|
14
14
|
dir?: string | undefined | undefined;
|
|
15
|
-
draggable?: (boolean | "
|
|
15
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
16
16
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
17
17
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
18
|
-
hidden?: "" | (boolean | "
|
|
18
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
19
19
|
id?: string | undefined | undefined;
|
|
20
|
-
inert?: (boolean | "
|
|
20
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
21
21
|
lang?: string | undefined | undefined;
|
|
22
22
|
placeholder?: string | undefined | undefined;
|
|
23
|
-
spellcheck?: (boolean | "
|
|
23
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
24
24
|
tabindex?: (string | number) | undefined;
|
|
25
25
|
title?: string | undefined | undefined;
|
|
26
26
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -39,7 +39,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
39
39
|
autosave?: string | undefined | undefined;
|
|
40
40
|
color?: string | undefined | undefined;
|
|
41
41
|
itemprop?: string | undefined | undefined;
|
|
42
|
-
itemscope?: (boolean | "
|
|
42
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
43
43
|
itemtype?: string | undefined | undefined;
|
|
44
44
|
itemid?: string | undefined | undefined;
|
|
45
45
|
itemref?: string | undefined | undefined;
|
|
@@ -51,47 +51,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
51
51
|
exportparts?: string | undefined;
|
|
52
52
|
part?: string | undefined;
|
|
53
53
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
54
|
-
'aria-atomic'?: (boolean | "
|
|
54
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
55
55
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
56
|
-
'aria-busy'?: (boolean | "
|
|
57
|
-
'aria-checked'?: (boolean | "
|
|
56
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
57
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
58
58
|
'aria-colcount'?: (string | number) | undefined;
|
|
59
59
|
'aria-colindex'?: (string | number) | undefined;
|
|
60
60
|
'aria-colspan'?: (string | number) | undefined;
|
|
61
61
|
'aria-controls'?: string | undefined | undefined;
|
|
62
|
-
'aria-current'?: "time" | (boolean | "
|
|
62
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
63
63
|
'aria-describedby'?: string | undefined | undefined;
|
|
64
64
|
'aria-details'?: string | undefined | undefined;
|
|
65
|
-
'aria-disabled'?: (boolean | "
|
|
65
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
66
66
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
67
67
|
'aria-errormessage'?: string | undefined | undefined;
|
|
68
|
-
'aria-expanded'?: (boolean | "
|
|
68
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
69
69
|
'aria-flowto'?: string | undefined | undefined;
|
|
70
|
-
'aria-grabbed'?: (boolean | "
|
|
71
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
72
|
-
'aria-hidden'?: (boolean | "
|
|
73
|
-
'aria-invalid'?: (boolean | "
|
|
70
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
72
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
74
74
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
75
75
|
'aria-label'?: string | undefined | undefined;
|
|
76
76
|
'aria-labelledby'?: string | undefined | undefined;
|
|
77
77
|
'aria-level'?: (string | number) | undefined;
|
|
78
78
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
79
|
-
'aria-modal'?: (boolean | "
|
|
80
|
-
'aria-multiline'?: (boolean | "
|
|
81
|
-
'aria-multiselectable'?: (boolean | "
|
|
79
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
80
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
81
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
82
82
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
83
83
|
'aria-owns'?: string | undefined | undefined;
|
|
84
84
|
'aria-placeholder'?: string | undefined | undefined;
|
|
85
85
|
'aria-posinset'?: (string | number) | undefined;
|
|
86
|
-
'aria-pressed'?: (boolean | "
|
|
87
|
-
'aria-readonly'?: (boolean | "
|
|
86
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
87
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
88
88
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
89
|
-
'aria-required'?: (boolean | "
|
|
89
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
90
90
|
'aria-roledescription'?: string | undefined | undefined;
|
|
91
91
|
'aria-rowcount'?: (string | number) | undefined;
|
|
92
92
|
'aria-rowindex'?: (string | number) | undefined;
|
|
93
93
|
'aria-rowspan'?: (string | number) | undefined;
|
|
94
|
-
'aria-selected'?: (boolean | "
|
|
94
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
95
95
|
'aria-setsize'?: (string | number) | undefined;
|
|
96
96
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
97
97
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -198,23 +198,23 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
198
198
|
ref_key?: string | undefined | undefined;
|
|
199
199
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
200
200
|
class?: any;
|
|
201
|
-
disabled?: (boolean | "
|
|
201
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
202
202
|
label?: string | undefined | undefined;
|
|
203
203
|
innerHTML?: string | undefined | undefined;
|
|
204
204
|
style?: import("vue").StyleValue;
|
|
205
205
|
accesskey?: string | undefined | undefined;
|
|
206
|
-
contenteditable?: "inherit" | (boolean | "
|
|
206
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
207
207
|
contextmenu?: string | undefined | undefined;
|
|
208
208
|
dir?: string | undefined | undefined;
|
|
209
|
-
draggable?: (boolean | "
|
|
209
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
210
210
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
211
211
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
212
|
-
hidden?: "" | (boolean | "
|
|
212
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
213
213
|
id?: string | undefined | undefined;
|
|
214
|
-
inert?: (boolean | "
|
|
214
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
215
215
|
lang?: string | undefined | undefined;
|
|
216
216
|
placeholder?: string | undefined | undefined;
|
|
217
|
-
spellcheck?: (boolean | "
|
|
217
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
218
218
|
tabindex?: (string | number) | undefined;
|
|
219
219
|
title?: string | undefined | undefined;
|
|
220
220
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -233,7 +233,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
233
233
|
autosave?: string | undefined | undefined;
|
|
234
234
|
color?: string | undefined | undefined;
|
|
235
235
|
itemprop?: string | undefined | undefined;
|
|
236
|
-
itemscope?: (boolean | "
|
|
236
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
237
237
|
itemtype?: string | undefined | undefined;
|
|
238
238
|
itemid?: string | undefined | undefined;
|
|
239
239
|
itemref?: string | undefined | undefined;
|
|
@@ -245,47 +245,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
245
245
|
exportparts?: string | undefined;
|
|
246
246
|
part?: string | undefined;
|
|
247
247
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
248
|
-
'aria-atomic'?: (boolean | "
|
|
248
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
249
249
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
250
|
-
'aria-busy'?: (boolean | "
|
|
251
|
-
'aria-checked'?: (boolean | "
|
|
250
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
251
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
252
252
|
'aria-colcount'?: (string | number) | undefined;
|
|
253
253
|
'aria-colindex'?: (string | number) | undefined;
|
|
254
254
|
'aria-colspan'?: (string | number) | undefined;
|
|
255
255
|
'aria-controls'?: string | undefined | undefined;
|
|
256
|
-
'aria-current'?: "time" | (boolean | "
|
|
256
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
257
257
|
'aria-describedby'?: string | undefined | undefined;
|
|
258
258
|
'aria-details'?: string | undefined | undefined;
|
|
259
|
-
'aria-disabled'?: (boolean | "
|
|
259
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
260
260
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
261
261
|
'aria-errormessage'?: string | undefined | undefined;
|
|
262
|
-
'aria-expanded'?: (boolean | "
|
|
262
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
263
263
|
'aria-flowto'?: string | undefined | undefined;
|
|
264
|
-
'aria-grabbed'?: (boolean | "
|
|
265
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
266
|
-
'aria-hidden'?: (boolean | "
|
|
267
|
-
'aria-invalid'?: (boolean | "
|
|
264
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
265
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
266
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
267
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
268
268
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
269
269
|
'aria-label'?: string | undefined | undefined;
|
|
270
270
|
'aria-labelledby'?: string | undefined | undefined;
|
|
271
271
|
'aria-level'?: (string | number) | undefined;
|
|
272
272
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
273
|
-
'aria-modal'?: (boolean | "
|
|
274
|
-
'aria-multiline'?: (boolean | "
|
|
275
|
-
'aria-multiselectable'?: (boolean | "
|
|
273
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
274
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
275
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
276
276
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
277
277
|
'aria-owns'?: string | undefined | undefined;
|
|
278
278
|
'aria-placeholder'?: string | undefined | undefined;
|
|
279
279
|
'aria-posinset'?: (string | number) | undefined;
|
|
280
|
-
'aria-pressed'?: (boolean | "
|
|
281
|
-
'aria-readonly'?: (boolean | "
|
|
280
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
281
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
282
282
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
283
|
-
'aria-required'?: (boolean | "
|
|
283
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
284
284
|
'aria-roledescription'?: string | undefined | undefined;
|
|
285
285
|
'aria-rowcount'?: (string | number) | undefined;
|
|
286
286
|
'aria-rowindex'?: (string | number) | undefined;
|
|
287
287
|
'aria-rowspan'?: (string | number) | undefined;
|
|
288
|
-
'aria-selected'?: (boolean | "
|
|
288
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
289
289
|
'aria-setsize'?: (string | number) | undefined;
|
|
290
290
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
291
291
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -4,25 +4,25 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
6
|
class?: any;
|
|
7
|
-
disabled?: (boolean | "
|
|
7
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
8
8
|
label?: string | undefined | undefined;
|
|
9
|
-
selected?: (boolean | "
|
|
9
|
+
selected?: (boolean | "true" | "false") | undefined;
|
|
10
10
|
value?: any;
|
|
11
11
|
innerHTML?: string | undefined | undefined;
|
|
12
12
|
style?: import("vue").StyleValue;
|
|
13
13
|
accesskey?: string | undefined | undefined;
|
|
14
|
-
contenteditable?: "inherit" | (boolean | "
|
|
14
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
15
15
|
contextmenu?: string | undefined | undefined;
|
|
16
16
|
dir?: string | undefined | undefined;
|
|
17
|
-
draggable?: (boolean | "
|
|
17
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
18
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
19
19
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
20
|
-
hidden?: "" | (boolean | "
|
|
20
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
21
21
|
id?: string | undefined | undefined;
|
|
22
|
-
inert?: (boolean | "
|
|
22
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
23
23
|
lang?: string | undefined | undefined;
|
|
24
24
|
placeholder?: string | undefined | undefined;
|
|
25
|
-
spellcheck?: (boolean | "
|
|
25
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
26
26
|
tabindex?: (string | number) | undefined;
|
|
27
27
|
title?: string | undefined | undefined;
|
|
28
28
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -41,7 +41,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
41
41
|
autosave?: string | undefined | undefined;
|
|
42
42
|
color?: string | undefined | undefined;
|
|
43
43
|
itemprop?: string | undefined | undefined;
|
|
44
|
-
itemscope?: (boolean | "
|
|
44
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
45
45
|
itemtype?: string | undefined | undefined;
|
|
46
46
|
itemid?: string | undefined | undefined;
|
|
47
47
|
itemref?: string | undefined | undefined;
|
|
@@ -53,47 +53,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
53
53
|
exportparts?: string | undefined;
|
|
54
54
|
part?: string | undefined;
|
|
55
55
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
56
|
-
'aria-atomic'?: (boolean | "
|
|
56
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
57
57
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
58
|
-
'aria-busy'?: (boolean | "
|
|
59
|
-
'aria-checked'?: (boolean | "
|
|
58
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
60
60
|
'aria-colcount'?: (string | number) | undefined;
|
|
61
61
|
'aria-colindex'?: (string | number) | undefined;
|
|
62
62
|
'aria-colspan'?: (string | number) | undefined;
|
|
63
63
|
'aria-controls'?: string | undefined | undefined;
|
|
64
|
-
'aria-current'?: "time" | (boolean | "
|
|
64
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
65
65
|
'aria-describedby'?: string | undefined | undefined;
|
|
66
66
|
'aria-details'?: string | undefined | undefined;
|
|
67
|
-
'aria-disabled'?: (boolean | "
|
|
67
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
68
68
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
69
69
|
'aria-errormessage'?: string | undefined | undefined;
|
|
70
|
-
'aria-expanded'?: (boolean | "
|
|
70
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
71
71
|
'aria-flowto'?: string | undefined | undefined;
|
|
72
|
-
'aria-grabbed'?: (boolean | "
|
|
73
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
74
|
-
'aria-hidden'?: (boolean | "
|
|
75
|
-
'aria-invalid'?: (boolean | "
|
|
72
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
74
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
76
76
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
77
77
|
'aria-label'?: string | undefined | undefined;
|
|
78
78
|
'aria-labelledby'?: string | undefined | undefined;
|
|
79
79
|
'aria-level'?: (string | number) | undefined;
|
|
80
80
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
81
|
-
'aria-modal'?: (boolean | "
|
|
82
|
-
'aria-multiline'?: (boolean | "
|
|
83
|
-
'aria-multiselectable'?: (boolean | "
|
|
81
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
82
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
83
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
84
84
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
85
85
|
'aria-owns'?: string | undefined | undefined;
|
|
86
86
|
'aria-placeholder'?: string | undefined | undefined;
|
|
87
87
|
'aria-posinset'?: (string | number) | undefined;
|
|
88
|
-
'aria-pressed'?: (boolean | "
|
|
89
|
-
'aria-readonly'?: (boolean | "
|
|
88
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
89
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
90
90
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
91
|
-
'aria-required'?: (boolean | "
|
|
91
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
92
92
|
'aria-roledescription'?: string | undefined | undefined;
|
|
93
93
|
'aria-rowcount'?: (string | number) | undefined;
|
|
94
94
|
'aria-rowindex'?: (string | number) | undefined;
|
|
95
95
|
'aria-rowspan'?: (string | number) | undefined;
|
|
96
|
-
'aria-selected'?: (boolean | "
|
|
96
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
97
97
|
'aria-setsize'?: (string | number) | undefined;
|
|
98
98
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
99
99
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -200,25 +200,25 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
200
200
|
ref_key?: string | undefined | undefined;
|
|
201
201
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
202
202
|
class?: any;
|
|
203
|
-
disabled?: (boolean | "
|
|
203
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
204
204
|
label?: string | undefined | undefined;
|
|
205
|
-
selected?: (boolean | "
|
|
205
|
+
selected?: (boolean | "true" | "false") | undefined;
|
|
206
206
|
value?: any;
|
|
207
207
|
innerHTML?: string | undefined | undefined;
|
|
208
208
|
style?: import("vue").StyleValue;
|
|
209
209
|
accesskey?: string | undefined | undefined;
|
|
210
|
-
contenteditable?: "inherit" | (boolean | "
|
|
210
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
211
211
|
contextmenu?: string | undefined | undefined;
|
|
212
212
|
dir?: string | undefined | undefined;
|
|
213
|
-
draggable?: (boolean | "
|
|
213
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
214
214
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
215
215
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
216
|
-
hidden?: "" | (boolean | "
|
|
216
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
217
217
|
id?: string | undefined | undefined;
|
|
218
|
-
inert?: (boolean | "
|
|
218
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
219
219
|
lang?: string | undefined | undefined;
|
|
220
220
|
placeholder?: string | undefined | undefined;
|
|
221
|
-
spellcheck?: (boolean | "
|
|
221
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
222
222
|
tabindex?: (string | number) | undefined;
|
|
223
223
|
title?: string | undefined | undefined;
|
|
224
224
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -237,7 +237,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
237
237
|
autosave?: string | undefined | undefined;
|
|
238
238
|
color?: string | undefined | undefined;
|
|
239
239
|
itemprop?: string | undefined | undefined;
|
|
240
|
-
itemscope?: (boolean | "
|
|
240
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
241
241
|
itemtype?: string | undefined | undefined;
|
|
242
242
|
itemid?: string | undefined | undefined;
|
|
243
243
|
itemref?: string | undefined | undefined;
|
|
@@ -249,47 +249,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
249
249
|
exportparts?: string | undefined;
|
|
250
250
|
part?: string | undefined;
|
|
251
251
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
252
|
-
'aria-atomic'?: (boolean | "
|
|
252
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
253
253
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
254
|
-
'aria-busy'?: (boolean | "
|
|
255
|
-
'aria-checked'?: (boolean | "
|
|
254
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
255
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
256
256
|
'aria-colcount'?: (string | number) | undefined;
|
|
257
257
|
'aria-colindex'?: (string | number) | undefined;
|
|
258
258
|
'aria-colspan'?: (string | number) | undefined;
|
|
259
259
|
'aria-controls'?: string | undefined | undefined;
|
|
260
|
-
'aria-current'?: "time" | (boolean | "
|
|
260
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
261
261
|
'aria-describedby'?: string | undefined | undefined;
|
|
262
262
|
'aria-details'?: string | undefined | undefined;
|
|
263
|
-
'aria-disabled'?: (boolean | "
|
|
263
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
264
264
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
265
265
|
'aria-errormessage'?: string | undefined | undefined;
|
|
266
|
-
'aria-expanded'?: (boolean | "
|
|
266
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
267
267
|
'aria-flowto'?: string | undefined | undefined;
|
|
268
|
-
'aria-grabbed'?: (boolean | "
|
|
269
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
270
|
-
'aria-hidden'?: (boolean | "
|
|
271
|
-
'aria-invalid'?: (boolean | "
|
|
268
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
269
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
270
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
271
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
272
272
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
273
273
|
'aria-label'?: string | undefined | undefined;
|
|
274
274
|
'aria-labelledby'?: string | undefined | undefined;
|
|
275
275
|
'aria-level'?: (string | number) | undefined;
|
|
276
276
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
277
|
-
'aria-modal'?: (boolean | "
|
|
278
|
-
'aria-multiline'?: (boolean | "
|
|
279
|
-
'aria-multiselectable'?: (boolean | "
|
|
277
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
278
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
279
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
280
280
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
281
281
|
'aria-owns'?: string | undefined | undefined;
|
|
282
282
|
'aria-placeholder'?: string | undefined | undefined;
|
|
283
283
|
'aria-posinset'?: (string | number) | undefined;
|
|
284
|
-
'aria-pressed'?: (boolean | "
|
|
285
|
-
'aria-readonly'?: (boolean | "
|
|
284
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
285
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
286
286
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
287
|
-
'aria-required'?: (boolean | "
|
|
287
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
288
288
|
'aria-roledescription'?: string | undefined | undefined;
|
|
289
289
|
'aria-rowcount'?: (string | number) | undefined;
|
|
290
290
|
'aria-rowindex'?: (string | number) | undefined;
|
|
291
291
|
'aria-rowspan'?: (string | number) | undefined;
|
|
292
|
-
'aria-selected'?: (boolean | "
|
|
292
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
293
293
|
'aria-setsize'?: (string | number) | undefined;
|
|
294
294
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
295
295
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -4,25 +4,25 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
6
|
class?: any;
|
|
7
|
-
disabled?: (boolean | "
|
|
7
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
8
8
|
label?: string | undefined | undefined;
|
|
9
|
-
selected?: (boolean | "
|
|
9
|
+
selected?: (boolean | "true" | "false") | undefined;
|
|
10
10
|
value?: any;
|
|
11
11
|
innerHTML?: string | undefined | undefined;
|
|
12
12
|
style?: import("vue").StyleValue;
|
|
13
13
|
accesskey?: string | undefined | undefined;
|
|
14
|
-
contenteditable?: "inherit" | (boolean | "
|
|
14
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
15
15
|
contextmenu?: string | undefined | undefined;
|
|
16
16
|
dir?: string | undefined | undefined;
|
|
17
|
-
draggable?: (boolean | "
|
|
17
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
18
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
19
19
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
20
|
-
hidden?: "" | (boolean | "
|
|
20
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
21
21
|
id?: string | undefined | undefined;
|
|
22
|
-
inert?: (boolean | "
|
|
22
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
23
23
|
lang?: string | undefined | undefined;
|
|
24
24
|
placeholder?: string | undefined | undefined;
|
|
25
|
-
spellcheck?: (boolean | "
|
|
25
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
26
26
|
tabindex?: (string | number) | undefined;
|
|
27
27
|
title?: string | undefined | undefined;
|
|
28
28
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -41,7 +41,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
41
41
|
autosave?: string | undefined | undefined;
|
|
42
42
|
color?: string | undefined | undefined;
|
|
43
43
|
itemprop?: string | undefined | undefined;
|
|
44
|
-
itemscope?: (boolean | "
|
|
44
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
45
45
|
itemtype?: string | undefined | undefined;
|
|
46
46
|
itemid?: string | undefined | undefined;
|
|
47
47
|
itemref?: string | undefined | undefined;
|
|
@@ -53,47 +53,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
53
53
|
exportparts?: string | undefined;
|
|
54
54
|
part?: string | undefined;
|
|
55
55
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
56
|
-
'aria-atomic'?: (boolean | "
|
|
56
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
57
57
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
58
|
-
'aria-busy'?: (boolean | "
|
|
59
|
-
'aria-checked'?: (boolean | "
|
|
58
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
60
60
|
'aria-colcount'?: (string | number) | undefined;
|
|
61
61
|
'aria-colindex'?: (string | number) | undefined;
|
|
62
62
|
'aria-colspan'?: (string | number) | undefined;
|
|
63
63
|
'aria-controls'?: string | undefined | undefined;
|
|
64
|
-
'aria-current'?: "time" | (boolean | "
|
|
64
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
65
65
|
'aria-describedby'?: string | undefined | undefined;
|
|
66
66
|
'aria-details'?: string | undefined | undefined;
|
|
67
|
-
'aria-disabled'?: (boolean | "
|
|
67
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
68
68
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
69
69
|
'aria-errormessage'?: string | undefined | undefined;
|
|
70
|
-
'aria-expanded'?: (boolean | "
|
|
70
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
71
71
|
'aria-flowto'?: string | undefined | undefined;
|
|
72
|
-
'aria-grabbed'?: (boolean | "
|
|
73
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
74
|
-
'aria-hidden'?: (boolean | "
|
|
75
|
-
'aria-invalid'?: (boolean | "
|
|
72
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
73
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
74
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
76
76
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
77
77
|
'aria-label'?: string | undefined | undefined;
|
|
78
78
|
'aria-labelledby'?: string | undefined | undefined;
|
|
79
79
|
'aria-level'?: (string | number) | undefined;
|
|
80
80
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
81
|
-
'aria-modal'?: (boolean | "
|
|
82
|
-
'aria-multiline'?: (boolean | "
|
|
83
|
-
'aria-multiselectable'?: (boolean | "
|
|
81
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
82
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
83
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
84
84
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
85
85
|
'aria-owns'?: string | undefined | undefined;
|
|
86
86
|
'aria-placeholder'?: string | undefined | undefined;
|
|
87
87
|
'aria-posinset'?: (string | number) | undefined;
|
|
88
|
-
'aria-pressed'?: (boolean | "
|
|
89
|
-
'aria-readonly'?: (boolean | "
|
|
88
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
89
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
90
90
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
91
|
-
'aria-required'?: (boolean | "
|
|
91
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
92
92
|
'aria-roledescription'?: string | undefined | undefined;
|
|
93
93
|
'aria-rowcount'?: (string | number) | undefined;
|
|
94
94
|
'aria-rowindex'?: (string | number) | undefined;
|
|
95
95
|
'aria-rowspan'?: (string | number) | undefined;
|
|
96
|
-
'aria-selected'?: (boolean | "
|
|
96
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
97
97
|
'aria-setsize'?: (string | number) | undefined;
|
|
98
98
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
99
99
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -200,25 +200,25 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
200
200
|
ref_key?: string | undefined | undefined;
|
|
201
201
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
202
202
|
class?: any;
|
|
203
|
-
disabled?: (boolean | "
|
|
203
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
204
204
|
label?: string | undefined | undefined;
|
|
205
|
-
selected?: (boolean | "
|
|
205
|
+
selected?: (boolean | "true" | "false") | undefined;
|
|
206
206
|
value?: any;
|
|
207
207
|
innerHTML?: string | undefined | undefined;
|
|
208
208
|
style?: import("vue").StyleValue;
|
|
209
209
|
accesskey?: string | undefined | undefined;
|
|
210
|
-
contenteditable?: "inherit" | (boolean | "
|
|
210
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
211
211
|
contextmenu?: string | undefined | undefined;
|
|
212
212
|
dir?: string | undefined | undefined;
|
|
213
|
-
draggable?: (boolean | "
|
|
213
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
214
214
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
215
215
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
216
|
-
hidden?: "" | (boolean | "
|
|
216
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
217
217
|
id?: string | undefined | undefined;
|
|
218
|
-
inert?: (boolean | "
|
|
218
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
219
219
|
lang?: string | undefined | undefined;
|
|
220
220
|
placeholder?: string | undefined | undefined;
|
|
221
|
-
spellcheck?: (boolean | "
|
|
221
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
222
222
|
tabindex?: (string | number) | undefined;
|
|
223
223
|
title?: string | undefined | undefined;
|
|
224
224
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -237,7 +237,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
237
237
|
autosave?: string | undefined | undefined;
|
|
238
238
|
color?: string | undefined | undefined;
|
|
239
239
|
itemprop?: string | undefined | undefined;
|
|
240
|
-
itemscope?: (boolean | "
|
|
240
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
241
241
|
itemtype?: string | undefined | undefined;
|
|
242
242
|
itemid?: string | undefined | undefined;
|
|
243
243
|
itemref?: string | undefined | undefined;
|
|
@@ -249,47 +249,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
249
249
|
exportparts?: string | undefined;
|
|
250
250
|
part?: string | undefined;
|
|
251
251
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
252
|
-
'aria-atomic'?: (boolean | "
|
|
252
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
253
253
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
254
|
-
'aria-busy'?: (boolean | "
|
|
255
|
-
'aria-checked'?: (boolean | "
|
|
254
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
255
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
256
256
|
'aria-colcount'?: (string | number) | undefined;
|
|
257
257
|
'aria-colindex'?: (string | number) | undefined;
|
|
258
258
|
'aria-colspan'?: (string | number) | undefined;
|
|
259
259
|
'aria-controls'?: string | undefined | undefined;
|
|
260
|
-
'aria-current'?: "time" | (boolean | "
|
|
260
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
261
261
|
'aria-describedby'?: string | undefined | undefined;
|
|
262
262
|
'aria-details'?: string | undefined | undefined;
|
|
263
|
-
'aria-disabled'?: (boolean | "
|
|
263
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
264
264
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
265
265
|
'aria-errormessage'?: string | undefined | undefined;
|
|
266
|
-
'aria-expanded'?: (boolean | "
|
|
266
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
267
267
|
'aria-flowto'?: string | undefined | undefined;
|
|
268
|
-
'aria-grabbed'?: (boolean | "
|
|
269
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
270
|
-
'aria-hidden'?: (boolean | "
|
|
271
|
-
'aria-invalid'?: (boolean | "
|
|
268
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
269
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
270
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
271
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
272
272
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
273
273
|
'aria-label'?: string | undefined | undefined;
|
|
274
274
|
'aria-labelledby'?: string | undefined | undefined;
|
|
275
275
|
'aria-level'?: (string | number) | undefined;
|
|
276
276
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
277
|
-
'aria-modal'?: (boolean | "
|
|
278
|
-
'aria-multiline'?: (boolean | "
|
|
279
|
-
'aria-multiselectable'?: (boolean | "
|
|
277
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
278
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
279
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
280
280
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
281
281
|
'aria-owns'?: string | undefined | undefined;
|
|
282
282
|
'aria-placeholder'?: string | undefined | undefined;
|
|
283
283
|
'aria-posinset'?: (string | number) | undefined;
|
|
284
|
-
'aria-pressed'?: (boolean | "
|
|
285
|
-
'aria-readonly'?: (boolean | "
|
|
284
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
285
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
286
286
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
287
|
-
'aria-required'?: (boolean | "
|
|
287
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
288
288
|
'aria-roledescription'?: string | undefined | undefined;
|
|
289
289
|
'aria-rowcount'?: (string | number) | undefined;
|
|
290
290
|
'aria-rowindex'?: (string | number) | undefined;
|
|
291
291
|
'aria-rowspan'?: (string | number) | undefined;
|
|
292
|
-
'aria-selected'?: (boolean | "
|
|
292
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
293
293
|
'aria-setsize'?: (string | number) | undefined;
|
|
294
294
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
295
295
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -11,7 +11,7 @@ type __VLS_Slots = {} & {
|
|
|
11
11
|
default?: (props: typeof __VLS_8) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
14
|
-
size: "default" | "icon" | "
|
|
14
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
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;
|
|
@@ -11,7 +11,7 @@ type __VLS_Slots = {} & {
|
|
|
11
11
|
default?: (props: typeof __VLS_8) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
14
|
-
size: "default" | "icon" | "
|
|
14
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
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;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
-
size: "default" | "icon" | "
|
|
13
|
+
size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-xs" | "icon-lg" | null;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|