pukaad-ui-lib 1.211.0 → 1.212.2
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/card/card-place-detail.d.vue.ts +22 -3
- package/dist/runtime/components/card/card-place-detail.vue +52 -83
- package/dist/runtime/components/card/card-place-detail.vue.d.ts +22 -3
- package/dist/runtime/components/card/card-reaction.vue +3 -3
- package/dist/runtime/components/card/card-review.d.vue.ts +4 -0
- package/dist/runtime/components/card/card-review.vue +21 -34
- package/dist/runtime/components/card/card-review.vue.d.ts +4 -0
- package/dist/runtime/components/carousel.d.vue.ts +2 -19
- package/dist/runtime/components/carousel.vue +42 -52
- package/dist/runtime/components/carousel.vue.d.ts +2 -19
- package/dist/runtime/components/display/display-image-place.d.vue.ts +12 -1
- package/dist/runtime/components/display/display-image-place.vue +102 -4
- package/dist/runtime/components/display/display-image-place.vue.d.ts +12 -1
- package/dist/runtime/components/display/display-image-review.vue +8 -12
- package/dist/runtime/components/display/display-rating-summary.d.vue.ts +17 -0
- package/dist/runtime/components/display/display-rating-summary.vue +55 -0
- package/dist/runtime/components/display/display-rating-summary.vue.d.ts +17 -0
- package/dist/runtime/components/image/image-cropper.d.vue.ts +1 -1
- package/dist/runtime/components/image/image-cropper.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-radio.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-radio.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-slider.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-slider.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal-media-view.d.vue.ts +21 -0
- package/dist/runtime/components/modal/modal-media-view.vue +23 -0
- package/dist/runtime/components/modal/modal-media-view.vue.d.ts +21 -0
- package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +1 -1
- package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +1 -1
- package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal.d.vue.ts +2 -0
- package/dist/runtime/components/modal/modal.vue +6 -4
- package/dist/runtime/components/modal/modal.vue.d.ts +2 -0
- package/dist/runtime/components/ui/carousel/CarouselContent.vue +1 -1
- package/dist/runtime/components/ui/carousel/CarouselNext.vue +3 -3
- package/dist/runtime/components/ui/carousel/CarouselPrevious.vue +3 -3
- package/dist/runtime/components/ui/dialog/DialogContent.d.vue.ts +2 -0
- package/dist/runtime/components/ui/dialog/DialogContent.vue +9 -3
- package/dist/runtime/components/ui/dialog/DialogContent.vue.d.ts +2 -0
- package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +50 -50
- package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +50 -50
- package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +52 -52
- package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +52 -52
- package/package.json +1 -1
- /package/dist/runtime/assets/svg/socials/{TikTok.svg → Tiktok.svg} +0 -0
- /package/dist/runtime/assets/svg/socials/{YouTube.svg → Youtube.svg} +0 -0
- /package/dist/runtime/assets/svg/socials/{Facebook.svg → facebook.svg} +0 -0
- /package/dist/runtime/assets/svg/socials/{Instagram.svg → instagram.svg} +0 -0
|
@@ -6,14 +6,19 @@
|
|
|
6
6
|
v-bind="forwarded"
|
|
7
7
|
:class="
|
|
8
8
|
cn(
|
|
9
|
-
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%]
|
|
9
|
+
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] rounded-lg duration-200 sm:max-w-lg',
|
|
10
|
+
props.noPadding ? 'gap-0 overflow-hidden isolate' : 'gap-4 border p-6 shadow-lg',
|
|
10
11
|
props.class
|
|
11
12
|
)
|
|
12
13
|
"
|
|
13
14
|
@escape-key-down="onOutSideClick"
|
|
14
15
|
@pointer-down-outside="onOutSideClick"
|
|
15
16
|
>
|
|
16
|
-
<Form
|
|
17
|
+
<Form
|
|
18
|
+
v-slot="{ meta }"
|
|
19
|
+
@submit="onSubmit"
|
|
20
|
+
:class="cn('grid w-full', props.noPadding ? 'gap-0' : 'gap-4')"
|
|
21
|
+
>
|
|
17
22
|
<slot :meta="meta" />
|
|
18
23
|
<DialogClose
|
|
19
24
|
v-if="!props.disabledCloseBtn"
|
|
@@ -44,7 +49,8 @@ const props = defineProps({
|
|
|
44
49
|
asChild: { type: Boolean, required: false },
|
|
45
50
|
as: { type: null, required: false },
|
|
46
51
|
class: { type: null, required: false },
|
|
47
|
-
disabledCloseBtn: { type: Boolean, required: false, default: false }
|
|
52
|
+
disabledCloseBtn: { type: Boolean, required: false, default: false },
|
|
53
|
+
noPadding: { type: Boolean, required: false, default: false }
|
|
48
54
|
});
|
|
49
55
|
const emits = defineEmits(["submit", "close", "escapeKeyDown", "pointerDownOutside", "focusOutside", "interactOutside", "openAutoFocus", "closeAutoFocus"]);
|
|
50
56
|
const delegatedProps = reactiveOmit(props, "class");
|
|
@@ -3,6 +3,7 @@ import type { HTMLAttributes } from "vue";
|
|
|
3
3
|
type __VLS_Props = DialogContentProps & {
|
|
4
4
|
class?: HTMLAttributes["class"];
|
|
5
5
|
disabledCloseBtn?: boolean;
|
|
6
|
+
noPadding?: boolean;
|
|
6
7
|
};
|
|
7
8
|
declare var __VLS_30: {
|
|
8
9
|
meta: any;
|
|
@@ -30,6 +31,7 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
30
31
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
31
32
|
}>, {
|
|
32
33
|
disabledCloseBtn: boolean;
|
|
34
|
+
noPadding: boolean;
|
|
33
35
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
36
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
35
37
|
declare const _default: typeof __VLS_export;
|
|
@@ -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 | "false" | "true") | 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 | "false" | "true") | "plaintext-only" | undefined;
|
|
13
13
|
contextmenu?: string | undefined | undefined;
|
|
14
14
|
dir?: string | undefined | undefined;
|
|
15
|
-
draggable?: (boolean | "
|
|
15
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
16
16
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
17
|
-
enterKeyHint?: "search" | "done" | "
|
|
18
|
-
hidden?: "" | (boolean | "
|
|
17
|
+
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
18
|
+
hidden?: "" | (boolean | "false" | "true") | "hidden" | "until-found" | undefined;
|
|
19
19
|
id?: string | undefined | undefined;
|
|
20
|
-
inert?: (boolean | "
|
|
20
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
21
21
|
lang?: string | undefined | undefined;
|
|
22
22
|
placeholder?: string | undefined | undefined;
|
|
23
|
-
spellcheck?: (boolean | "
|
|
23
|
+
spellcheck?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
55
55
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
56
|
-
'aria-busy'?: (boolean | "
|
|
57
|
-
'aria-checked'?: (boolean | "
|
|
56
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
'aria-checked'?: (boolean | "false" | "true") | "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" |
|
|
62
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
71
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
72
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
73
|
+
'aria-invalid'?: (boolean | "false" | "true") | "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 | "false" | "true") | undefined;
|
|
80
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
81
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | 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 | "false" | "true") | "mixed" | undefined;
|
|
87
|
+
'aria-readonly'?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | "plaintext-only" | undefined;
|
|
207
207
|
contextmenu?: string | undefined | undefined;
|
|
208
208
|
dir?: string | undefined | undefined;
|
|
209
|
-
draggable?: (boolean | "
|
|
209
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
210
210
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
211
|
-
enterKeyHint?: "search" | "done" | "
|
|
212
|
-
hidden?: "" | (boolean | "
|
|
211
|
+
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
212
|
+
hidden?: "" | (boolean | "false" | "true") | "hidden" | "until-found" | undefined;
|
|
213
213
|
id?: string | undefined | undefined;
|
|
214
|
-
inert?: (boolean | "
|
|
214
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
215
215
|
lang?: string | undefined | undefined;
|
|
216
216
|
placeholder?: string | undefined | undefined;
|
|
217
|
-
spellcheck?: (boolean | "
|
|
217
|
+
spellcheck?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
249
249
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
250
|
-
'aria-busy'?: (boolean | "
|
|
251
|
-
'aria-checked'?: (boolean | "
|
|
250
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
251
|
+
'aria-checked'?: (boolean | "false" | "true") | "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" |
|
|
256
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
265
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
266
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
267
|
+
'aria-invalid'?: (boolean | "false" | "true") | "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 | "false" | "true") | undefined;
|
|
274
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
275
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | 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 | "false" | "true") | "mixed" | undefined;
|
|
281
|
+
'aria-readonly'?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | "plaintext-only" | undefined;
|
|
13
13
|
contextmenu?: string | undefined | undefined;
|
|
14
14
|
dir?: string | undefined | undefined;
|
|
15
|
-
draggable?: (boolean | "
|
|
15
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
16
16
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
17
|
-
enterKeyHint?: "search" | "done" | "
|
|
18
|
-
hidden?: "" | (boolean | "
|
|
17
|
+
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
18
|
+
hidden?: "" | (boolean | "false" | "true") | "hidden" | "until-found" | undefined;
|
|
19
19
|
id?: string | undefined | undefined;
|
|
20
|
-
inert?: (boolean | "
|
|
20
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
21
21
|
lang?: string | undefined | undefined;
|
|
22
22
|
placeholder?: string | undefined | undefined;
|
|
23
|
-
spellcheck?: (boolean | "
|
|
23
|
+
spellcheck?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
55
55
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
56
|
-
'aria-busy'?: (boolean | "
|
|
57
|
-
'aria-checked'?: (boolean | "
|
|
56
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
'aria-checked'?: (boolean | "false" | "true") | "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" |
|
|
62
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
71
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
72
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
73
|
+
'aria-invalid'?: (boolean | "false" | "true") | "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 | "false" | "true") | undefined;
|
|
80
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
81
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | 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 | "false" | "true") | "mixed" | undefined;
|
|
87
|
+
'aria-readonly'?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | "plaintext-only" | undefined;
|
|
207
207
|
contextmenu?: string | undefined | undefined;
|
|
208
208
|
dir?: string | undefined | undefined;
|
|
209
|
-
draggable?: (boolean | "
|
|
209
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
210
210
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
211
|
-
enterKeyHint?: "search" | "done" | "
|
|
212
|
-
hidden?: "" | (boolean | "
|
|
211
|
+
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
212
|
+
hidden?: "" | (boolean | "false" | "true") | "hidden" | "until-found" | undefined;
|
|
213
213
|
id?: string | undefined | undefined;
|
|
214
|
-
inert?: (boolean | "
|
|
214
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
215
215
|
lang?: string | undefined | undefined;
|
|
216
216
|
placeholder?: string | undefined | undefined;
|
|
217
|
-
spellcheck?: (boolean | "
|
|
217
|
+
spellcheck?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
249
249
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
250
|
-
'aria-busy'?: (boolean | "
|
|
251
|
-
'aria-checked'?: (boolean | "
|
|
250
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
251
|
+
'aria-checked'?: (boolean | "false" | "true") | "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" |
|
|
256
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "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 | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | undefined;
|
|
265
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
266
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
267
|
+
'aria-invalid'?: (boolean | "false" | "true") | "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 | "false" | "true") | undefined;
|
|
274
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
275
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | 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 | "false" | "true") | "mixed" | undefined;
|
|
281
|
+
'aria-readonly'?: (boolean | "false" | "true") | 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 | "false" | "true") | 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 | "false" | "true") | 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;
|