pukaad-ui-lib 1.305.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/display/display-image-place.vue +19 -2
- 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/runtime/assets/svg/socials/{WhatsApp.svg → Whatsapp.svg} +0 -0
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;
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<!-- Personal state → Featured layout -->
|
|
3
|
-
<div v-if="layoutMode === 'featured'" class="
|
|
2
|
+
<!-- Personal state → Featured layout — 1 รูป: w-full -->
|
|
3
|
+
<div v-if="layoutMode === 'featured' && photos.length === 1" class="h-[360px]">
|
|
4
|
+
<div class="w-full h-full rounded-[8px] overflow-hidden cursor-pointer" @click="openLightbox('photo', 0)">
|
|
5
|
+
<Image :src="photos[0]" class="w-full h-full object-cover" width="auto" height="auto" />
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<!-- Personal state → Featured layout — 2 รูป: แบ่งครึ่ง w-full -->
|
|
10
|
+
<div v-else-if="layoutMode === 'featured' && photos.length === 2" class="flex gap-[8px] h-[360px]">
|
|
11
|
+
<div class="flex-1 rounded-[8px] overflow-hidden cursor-pointer" @click="openLightbox('photo', 0)">
|
|
12
|
+
<Image :src="photos[0]" class="w-full h-full object-cover" width="auto" height="auto" />
|
|
13
|
+
</div>
|
|
14
|
+
<div class="flex-1 rounded-[8px] overflow-hidden cursor-pointer" @click="openLightbox('photo', 1)">
|
|
15
|
+
<Image :src="photos[1]" class="w-full h-full object-cover" width="auto" height="auto" />
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<!-- Personal state → Featured layout — 3+ รูป: layout เดิม -->
|
|
20
|
+
<div v-else-if="layoutMode === 'featured'" class="flex gap-[8px] h-[360px]">
|
|
4
21
|
<div v-if="photos[0]" class="w-[620px] shrink-0 rounded-[8px] overflow-hidden cursor-pointer"
|
|
5
22
|
@click="openLightbox('photo', 0)">
|
|
6
23
|
<Image :src="photos[0]" class="w-full h-full object-cover" width="auto" height="auto" />
|
|
@@ -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;
|