pukaad-ui-lib 1.306.0 → 1.308.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.
Files changed (29) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/button.d.vue.ts +3 -0
  3. package/dist/runtime/components/button.vue +17 -9
  4. package/dist/runtime/components/button.vue.d.ts +3 -0
  5. package/dist/runtime/components/picker/picker-option-menu/picker-option-menu-user.vue +1 -1
  6. package/dist/runtime/components/picker/picker-option-menu/picker-option-menu.vue +7 -2
  7. package/dist/runtime/components/ui/button/index.d.ts +1 -1
  8. package/dist/runtime/components/ui/carousel/CarouselNext.d.vue.ts +1 -1
  9. package/dist/runtime/components/ui/carousel/CarouselNext.vue.d.ts +1 -1
  10. package/dist/runtime/components/ui/carousel/CarouselPrevious.d.vue.ts +1 -1
  11. package/dist/runtime/components/ui/carousel/CarouselPrevious.vue.d.ts +1 -1
  12. package/dist/runtime/components/ui/input-group/InputGroupButton.d.vue.ts +1 -1
  13. package/dist/runtime/components/ui/input-group/InputGroupButton.vue.d.ts +1 -1
  14. package/dist/runtime/components/ui/input-group/index.d.ts +1 -1
  15. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +48 -48
  16. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +48 -48
  17. package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +50 -50
  18. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +50 -50
  19. package/dist/runtime/components/ui/pagination/PaginationFirst.d.vue.ts +1 -1
  20. package/dist/runtime/components/ui/pagination/PaginationFirst.vue.d.ts +1 -1
  21. package/dist/runtime/components/ui/pagination/PaginationItem.d.vue.ts +1 -1
  22. package/dist/runtime/components/ui/pagination/PaginationItem.vue.d.ts +1 -1
  23. package/dist/runtime/components/ui/pagination/PaginationLast.d.vue.ts +1 -1
  24. package/dist/runtime/components/ui/pagination/PaginationLast.vue.d.ts +1 -1
  25. package/dist/runtime/components/ui/pagination/PaginationNext.d.vue.ts +1 -1
  26. package/dist/runtime/components/ui/pagination/PaginationNext.vue.d.ts +1 -1
  27. package/dist/runtime/components/ui/pagination/PaginationPrevious.d.vue.ts +1 -1
  28. package/dist/runtime/components/ui/pagination/PaginationPrevious.vue.d.ts +1 -1
  29. package/package.json +1 -1
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
3
  "configKey": "pukaadUI",
4
- "version": "1.306.0",
4
+ "version": "1.308.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -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" :type="props.type" :disabled="props.loading || props.disabled">
8
- <span class="inline-grid place-items-center">
9
- <span class="inline-flex items-center justify-center gap-[8px] [grid-area:1/1]"
10
- :class="{ invisible: props.loading }">
11
- <slot />
12
- </span>
13
- <ShadSpinner v-if="props.loading" class="[grid-area:1/1]" />
14
- </span>
15
- </ShadButton>
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;
@@ -25,9 +25,9 @@ const emit = defineEmits(["profile-edit", "profile-share", "profile-follower-del
25
25
  const props = defineProps({
26
26
  state: { type: String, required: false },
27
27
  profileDetail: { type: Object, required: false },
28
+ circle: { type: Boolean, required: false },
28
29
  items: { type: Array, required: false },
29
30
  variant: { type: null, required: false },
30
- circle: { type: Boolean, required: false },
31
31
  horizontal: { type: Boolean, required: false },
32
32
  size: { type: null, required: false },
33
33
  iconSize: { type: String, required: false },
@@ -2,10 +2,11 @@
2
2
  <ShadDropdownMenu v-model:open="open">
3
3
  <ShadDropdownMenuTrigger as-child>
4
4
  <Button
5
- :variant="props.variant"
5
+ :variant="resolvedVariant"
6
6
  :size="props.size"
7
+ :circle="props.circle"
7
8
  :class="[
8
- props.circle ? 'rounded-full' : 'rounded-md',
9
+ props.circle && 'size-[32px]',
9
10
  props.disabled ? 'cursor-not-allowed opacity-50' : 'cursor-pointer',
10
11
  props.disabledPadding ? 'p-0' : '',
11
12
  props.triggerClass
@@ -35,6 +36,7 @@
35
36
  </template>
36
37
 
37
38
  <script setup>
39
+ import { computed } from "vue";
38
40
  const open = defineModel("open", { type: Boolean, ...{ default: false } });
39
41
  const props = defineProps({
40
42
  items: { type: Array, required: false, default: () => [] },
@@ -47,6 +49,9 @@ const props = defineProps({
47
49
  disabled: { type: Boolean, required: false, default: false },
48
50
  triggerClass: { type: String, required: false }
49
51
  });
52
+ const resolvedVariant = computed(
53
+ () => props.circle ? "default" : props.variant
54
+ );
50
55
  const onAction = (item) => {
51
56
  item.action();
52
57
  };
@@ -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" | "icon-sm" | "icon-xs" | "sm" | "lg" | "icon-lg" | null | undefined;
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" | "icon-sm" | "icon-xs" | "sm" | "lg" | "icon-lg" | null;
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" | "icon-sm" | "icon-xs" | "sm" | "lg" | "icon-lg" | null;
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" | "icon-sm" | "icon-xs" | "sm" | "lg" | "icon-lg" | null;
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" | "icon-sm" | "icon-xs" | "sm" | "lg" | "icon-lg" | null;
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: "icon-sm" | "icon-xs" | "sm" | "xs" | null;
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: "icon-sm" | "icon-xs" | "sm" | "xs" | null;
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?: "icon-sm" | "icon-xs" | "sm" | "xs" | null | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | "plaintext-only" | undefined;
12
+ contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
13
13
  contextmenu?: string | undefined | undefined;
14
14
  dir?: string | undefined | undefined;
15
- draggable?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | "hidden" | "until-found" | undefined;
18
+ hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
19
19
  id?: string | undefined | undefined;
20
- inert?: (boolean | "false" | "true") | undefined;
20
+ inert?: (boolean | "true" | "false") | undefined;
21
21
  lang?: string | undefined | undefined;
22
22
  placeholder?: string | undefined | undefined;
23
- spellcheck?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
54
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
55
55
  'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
56
- 'aria-busy'?: (boolean | "false" | "true") | undefined;
57
- 'aria-checked'?: (boolean | "false" | "true") | "mixed" | undefined;
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 | "false" | "true") | "date" | "page" | "step" | "location" | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
68
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
69
69
  'aria-flowto'?: string | undefined | undefined;
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;
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 | "false" | "true") | undefined;
80
- 'aria-multiline'?: (boolean | "false" | "true") | undefined;
81
- 'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | "mixed" | undefined;
87
- 'aria-readonly'?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | "plaintext-only" | undefined;
206
+ contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
207
207
  contextmenu?: string | undefined | undefined;
208
208
  dir?: string | undefined | undefined;
209
- draggable?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | "hidden" | "until-found" | undefined;
212
+ hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
213
213
  id?: string | undefined | undefined;
214
- inert?: (boolean | "false" | "true") | undefined;
214
+ inert?: (boolean | "true" | "false") | undefined;
215
215
  lang?: string | undefined | undefined;
216
216
  placeholder?: string | undefined | undefined;
217
- spellcheck?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
248
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
249
249
  'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
250
- 'aria-busy'?: (boolean | "false" | "true") | undefined;
251
- 'aria-checked'?: (boolean | "false" | "true") | "mixed" | undefined;
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 | "false" | "true") | "date" | "page" | "step" | "location" | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
262
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
263
263
  'aria-flowto'?: string | undefined | undefined;
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;
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 | "false" | "true") | undefined;
274
- 'aria-multiline'?: (boolean | "false" | "true") | undefined;
275
- 'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | "mixed" | undefined;
281
- 'aria-readonly'?: (boolean | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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 | "false" | "true") | undefined;
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;