pukaad-ui-lib 1.363.0 → 1.365.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 (27) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/button.d.vue.ts +1 -1
  3. package/dist/runtime/components/button.vue +13 -5
  4. package/dist/runtime/components/button.vue.d.ts +1 -1
  5. package/dist/runtime/components/drawer/drawer-post-blog.d.vue.ts +2 -2
  6. package/dist/runtime/components/drawer/drawer-post-blog.vue.d.ts +2 -2
  7. package/dist/runtime/components/input/input-address.d.vue.ts +1 -1
  8. package/dist/runtime/components/input/input-address.vue.d.ts +1 -1
  9. package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
  10. package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
  11. package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
  12. package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
  13. package/dist/runtime/components/modal/modal-media-view.vue +4 -4
  14. package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +1 -1
  15. package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +1 -1
  16. package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +1 -1
  17. package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +1 -1
  18. package/dist/runtime/components/ui/badge/index.d.ts +1 -1
  19. package/dist/runtime/components/ui/button/index.d.ts +1 -1
  20. package/dist/runtime/components/ui/button/index.js +63 -1
  21. package/dist/runtime/components/ui/chart/ChartTooltipContent.d.vue.ts +1 -1
  22. package/dist/runtime/components/ui/chart/ChartTooltipContent.vue.d.ts +1 -1
  23. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +2 -2
  24. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +2 -2
  25. package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +2 -2
  26. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +2 -2
  27. 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.363.0",
4
+ "version": "1.365.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -2,7 +2,7 @@ import type { HTMLAttributes } from "vue";
2
2
  import type { ButtonVariants } from "./ui/button/index.js";
3
3
  export type ButtonType = "button" | "submit" | "reset";
4
4
  export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text" | "icon";
5
- export type ButtonColor = "default" | "primary" | "secondary" | "destructive" | "info";
5
+ export type ButtonColor = "default" | "primary" | "secondary" | "destructive" | "info" | "warning" | "success";
6
6
  export type ButtonSize = ButtonVariants["size"];
7
7
  export interface ButtonProps {
8
8
  type?: ButtonType;
@@ -1,14 +1,22 @@
1
1
  <template>
2
- <ShadButton :class="[
2
+ <ShadButton
3
+ :class="[
3
4
  'font-body-medium relative',
4
5
  props.variant === 'text' || props.variant === 'link' ? '!p-0 !h-auto' : '',
5
6
  props.circle && 'rounded-full aspect-square',
6
7
  props.class
7
- ]" :variant="props.variant" :color="props.color" :size="resolvedSize" :type="props.type"
8
- :disabled="props.loading || props.disabled">
8
+ ]"
9
+ :variant="props.variant"
10
+ :color="props.color"
11
+ :size="resolvedSize"
12
+ :type="props.type"
13
+ :disabled="props.loading || props.disabled"
14
+ >
9
15
  <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 }">
16
+ <span
17
+ class="inline-flex items-center justify-center gap-[8px] [grid-area:1/1]"
18
+ :class="{ invisible: props.loading }"
19
+ >
12
20
  <slot />
13
21
  </span>
14
22
  <ShadSpinner v-if="props.loading" class="[grid-area:1/1]" />
@@ -2,7 +2,7 @@ import type { HTMLAttributes } from "vue";
2
2
  import type { ButtonVariants } from "./ui/button/index.js";
3
3
  export type ButtonType = "button" | "submit" | "reset";
4
4
  export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text" | "icon";
5
- export type ButtonColor = "default" | "primary" | "secondary" | "destructive" | "info";
5
+ export type ButtonColor = "default" | "primary" | "secondary" | "destructive" | "info" | "warning" | "success";
6
6
  export type ButtonSize = ButtonVariants["size"];
7
7
  export interface ButtonProps {
8
8
  type?: ButtonType;
@@ -21,12 +21,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
21
21
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
22
  "update:modelValue": (value: boolean) => any;
23
23
  } & {
24
- submit: (data: DrawerPostBlogItem) => any;
25
24
  success: (data: any) => any;
25
+ submit: (data: DrawerPostBlogItem) => any;
26
26
  saveDraft: (data: DrawerPostBlogItem) => any;
27
27
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
- onSubmit?: ((data: DrawerPostBlogItem) => any) | undefined;
29
28
  onSuccess?: ((data: any) => any) | undefined;
29
+ onSubmit?: ((data: DrawerPostBlogItem) => any) | undefined;
30
30
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31
31
  onSaveDraft?: ((data: DrawerPostBlogItem) => any) | undefined;
32
32
  }>, {
@@ -21,12 +21,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
21
21
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
22
  "update:modelValue": (value: boolean) => any;
23
23
  } & {
24
- submit: (data: DrawerPostBlogItem) => any;
25
24
  success: (data: any) => any;
25
+ submit: (data: DrawerPostBlogItem) => any;
26
26
  saveDraft: (data: DrawerPostBlogItem) => any;
27
27
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
- onSubmit?: ((data: DrawerPostBlogItem) => any) | undefined;
29
28
  onSuccess?: ((data: any) => any) | undefined;
29
+ onSubmit?: ((data: DrawerPostBlogItem) => any) | undefined;
30
30
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
31
31
  onSaveDraft?: ((data: DrawerPostBlogItem) => any) | undefined;
32
32
  }>, {
@@ -50,10 +50,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
50
50
  name: string;
51
51
  required: boolean;
52
52
  placeholder: string;
53
- gap: string;
54
53
  labelDetail: string;
55
54
  placeholderDetail: string;
56
55
  requiredDetail: boolean;
56
+ gap: string;
57
57
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
58
58
  declare const _default: typeof __VLS_export;
59
59
  export default _default;
@@ -50,10 +50,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
50
50
  name: string;
51
51
  required: boolean;
52
52
  placeholder: string;
53
- gap: string;
54
53
  labelDetail: string;
55
54
  placeholderDetail: string;
56
55
  requiredDetail: boolean;
56
+ gap: string;
57
57
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
58
58
  declare const _default: typeof __VLS_export;
59
59
  export default _default;
@@ -35,8 +35,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
35
35
  fullHeight: boolean;
36
36
  fullWidth: boolean;
37
37
  limit: number;
38
- accept: string;
39
38
  disabledErrorMessage: boolean;
39
+ accept: string;
40
40
  labelIcon: string;
41
41
  disabledDrop: boolean;
42
42
  column: boolean;
@@ -35,8 +35,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
35
35
  fullHeight: boolean;
36
36
  fullWidth: boolean;
37
37
  limit: number;
38
- accept: string;
39
38
  disabledErrorMessage: boolean;
39
+ accept: string;
40
40
  labelIcon: string;
41
41
  disabledDrop: boolean;
42
42
  column: boolean;
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
22
22
  }>, {
23
23
  id: string;
24
24
  name: string;
25
- disabledForgotPassword: boolean;
26
25
  new: boolean;
26
+ disabledForgotPassword: boolean;
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
28
  declare const _default: typeof __VLS_export;
29
29
  export default _default;
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
22
22
  }>, {
23
23
  id: string;
24
24
  name: string;
25
- disabledForgotPassword: boolean;
26
25
  new: boolean;
26
+ disabledForgotPassword: boolean;
27
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
28
  declare const _default: typeof __VLS_export;
29
29
  export default _default;
@@ -11,9 +11,9 @@
11
11
  @update:current-index="currentIndex = $event"
12
12
  />
13
13
 
14
- <!-- description overlay (แสดงเฉพาะเมื่อ item ปัจจุบันมี description และไม่มี review) -->
14
+ <!-- overlay ผู้ดูแลสื่อ + ปุ่มรายงาน — โชว์เสมอ (ไม่ผูกกับ description) ยกเว้นตอนโหมด review -->
15
15
  <div
16
- v-if="!props.review && currentItem?.description"
16
+ v-if="!props.review"
17
17
  class="absolute bottom-0 w-full z-10"
18
18
  style="
19
19
  background: linear-gradient(
@@ -24,7 +24,7 @@
24
24
  "
25
25
  >
26
26
  <div
27
- class="p-[16px] h-[125px] flex flex-col gap-[8px] text-white font-body-large"
27
+ class="p-[16px] flex flex-col gap-[8px] text-white font-body-large"
28
28
  >
29
29
  <div class="flex justify-between items-center">
30
30
  <div class="font-body-large-prominent">{{ props.uploaderLabel }}</div>
@@ -34,7 +34,7 @@
34
34
  @click="isOpenModalReport = true"
35
35
  />
36
36
  </div>
37
- <div>{{ currentItem.description }}</div>
37
+ <div v-if="currentItem?.description">{{ currentItem.description }}</div>
38
38
  </div>
39
39
  </div>
40
40
 
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
24
24
  }) => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
- confirmText: string;
28
27
  disabledForgotPassword: boolean;
28
+ confirmText: string;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
30
  declare const _default: typeof __VLS_export;
31
31
  export default _default;
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
24
24
  }) => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
- confirmText: string;
28
27
  disabledForgotPassword: boolean;
28
+ confirmText: string;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
30
30
  declare const _default: typeof __VLS_export;
31
31
  export default _default;
@@ -32,8 +32,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
32
32
  }>, {
33
33
  title: string;
34
34
  mode: "login" | "secure";
35
- confirmText: string;
36
35
  disabledForgotPassword: boolean;
36
+ confirmText: string;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
38
38
  declare const _default: typeof __VLS_export;
39
39
  export default _default;
@@ -32,8 +32,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
32
32
  }>, {
33
33
  title: string;
34
34
  mode: "login" | "secure";
35
- confirmText: string;
36
35
  disabledForgotPassword: boolean;
36
+ confirmText: string;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
38
38
  declare const _default: typeof __VLS_export;
39
39
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import type { VariantProps } from "class-variance-authority";
2
2
  export { default as Badge } from "./Badge.vue.js";
3
3
  export declare const badgeVariants: (props?: ({
4
- variant?: "default" | "outline" | "primary" | "secondary" | "destructive" | "success" | "warning" | "bright" | null | undefined;
4
+ variant?: "default" | "outline" | "primary" | "secondary" | "destructive" | "warning" | "success" | "bright" | null | undefined;
5
5
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
6
6
  export type BadgeVariants = VariantProps<typeof badgeVariants>;
@@ -2,7 +2,7 @@ import type { VariantProps } from "class-variance-authority";
2
2
  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
- color?: "default" | "primary" | "secondary" | "destructive" | "info" | null | undefined;
5
+ color?: "default" | "primary" | "secondary" | "destructive" | "info" | "warning" | "success" | null | undefined;
6
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>;
@@ -17,7 +17,9 @@ export const buttonVariants = cva(
17
17
  primary: "text-primary",
18
18
  secondary: "text-secondary ",
19
19
  destructive: "text-destructive",
20
- info: "text-info-foreground"
20
+ info: "text-info-foreground",
21
+ warning: "text-warning",
22
+ success: "text-success"
21
23
  },
22
24
  size: {
23
25
  default: "h-9 px-4 py-2 has-[>svg]:px-3",
@@ -55,6 +57,16 @@ export const buttonVariants = cva(
55
57
  color: "info",
56
58
  class: "bg-info text-info-foreground hover:bg-info/90"
57
59
  },
60
+ {
61
+ variant: "default",
62
+ color: "warning",
63
+ class: "bg-warning text-white hover:bg-warning/90"
64
+ },
65
+ {
66
+ variant: "default",
67
+ color: "success",
68
+ class: "bg-success text-white hover:bg-success/90"
69
+ },
58
70
  {
59
71
  variant: "outline",
60
72
  color: "default",
@@ -80,6 +92,16 @@ export const buttonVariants = cva(
80
92
  color: "info",
81
93
  class: "border border-info-foreground text-info-foreground hover:text-info-foreground/90 bg-white"
82
94
  },
95
+ {
96
+ variant: "outline",
97
+ color: "warning",
98
+ class: "border border-warning text-warning hover:text-warning/90 bg-white"
99
+ },
100
+ {
101
+ variant: "outline",
102
+ color: "success",
103
+ class: "border border-success text-success hover:text-success/90 bg-white"
104
+ },
83
105
  {
84
106
  variant: "ghost",
85
107
  color: "default",
@@ -105,6 +127,16 @@ export const buttonVariants = cva(
105
127
  color: "info",
106
128
  class: "text-info-foreground hover:bg-info hover:text-info-foreground"
107
129
  },
130
+ {
131
+ variant: "ghost",
132
+ color: "warning",
133
+ class: "text-warning hover:bg-warning/90 hover:text-white"
134
+ },
135
+ {
136
+ variant: "ghost",
137
+ color: "success",
138
+ class: "text-success hover:bg-success/90 hover:text-white"
139
+ },
108
140
  {
109
141
  variant: "icon",
110
142
  color: "default",
@@ -130,6 +162,16 @@ export const buttonVariants = cva(
130
162
  color: "info",
131
163
  class: "text-info-foreground hover:bg-info hover:text-info-foreground"
132
164
  },
165
+ {
166
+ variant: "icon",
167
+ color: "warning",
168
+ class: "text-warning hover:bg-warning/90 hover:text-white"
169
+ },
170
+ {
171
+ variant: "icon",
172
+ color: "success",
173
+ class: "text-success hover:bg-success/90 hover:text-white"
174
+ },
133
175
  // text variant - just plain text with color, no background or hover effects
134
176
  {
135
177
  variant: "text",
@@ -156,6 +198,16 @@ export const buttonVariants = cva(
156
198
  color: "info",
157
199
  class: "text-info-foreground hover:opacity-80"
158
200
  },
201
+ {
202
+ variant: "text",
203
+ color: "warning",
204
+ class: "text-warning hover:opacity-80"
205
+ },
206
+ {
207
+ variant: "text",
208
+ color: "success",
209
+ class: "text-success hover:opacity-80"
210
+ },
159
211
  // link variant - inline link style, primary blue by default, no padding
160
212
  {
161
213
  variant: "link",
@@ -181,6 +233,16 @@ export const buttonVariants = cva(
181
233
  variant: "link",
182
234
  color: "info",
183
235
  class: "text-info-foreground hover:opacity-80"
236
+ },
237
+ {
238
+ variant: "link",
239
+ color: "warning",
240
+ class: "text-warning hover:opacity-80"
241
+ },
242
+ {
243
+ variant: "link",
244
+ color: "success",
245
+ class: "text-success hover:opacity-80"
184
246
  }
185
247
  ],
186
248
  defaultVariants: {
@@ -18,8 +18,8 @@ type __VLS_Slots = {} & {
18
18
  default?: (props: typeof __VLS_1) => any;
19
19
  };
20
20
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
21
- payload: Record<string, any>;
22
21
  config: ChartConfig;
22
+ payload: Record<string, any>;
23
23
  indicator: "line" | "dot" | "dashed";
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
25
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -18,8 +18,8 @@ type __VLS_Slots = {} & {
18
18
  default?: (props: typeof __VLS_1) => any;
19
19
  };
20
20
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
21
- payload: Record<string, any>;
22
21
  config: ChartConfig;
22
+ payload: Record<string, any>;
23
23
  indicator: "line" | "dot" | "dashed";
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
25
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -14,7 +14,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
14
14
  dir?: string | undefined | undefined;
15
15
  draggable?: (boolean | "true" | "false") | undefined;
16
16
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
17
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
17
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
18
18
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
19
19
  id?: string | undefined | undefined;
20
20
  inert?: (boolean | "true" | "false") | undefined;
@@ -208,7 +208,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
208
208
  dir?: string | undefined | undefined;
209
209
  draggable?: (boolean | "true" | "false") | undefined;
210
210
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
211
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
211
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
212
212
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
213
213
  id?: string | undefined | undefined;
214
214
  inert?: (boolean | "true" | "false") | undefined;
@@ -14,7 +14,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
14
14
  dir?: string | undefined | undefined;
15
15
  draggable?: (boolean | "true" | "false") | undefined;
16
16
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
17
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
17
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
18
18
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
19
19
  id?: string | undefined | undefined;
20
20
  inert?: (boolean | "true" | "false") | undefined;
@@ -208,7 +208,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
208
208
  dir?: string | undefined | undefined;
209
209
  draggable?: (boolean | "true" | "false") | undefined;
210
210
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
211
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
211
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
212
212
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
213
213
  id?: string | undefined | undefined;
214
214
  inert?: (boolean | "true" | "false") | undefined;
@@ -16,7 +16,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
16
16
  dir?: string | undefined | undefined;
17
17
  draggable?: (boolean | "true" | "false") | undefined;
18
18
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
19
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
19
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
20
20
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
21
21
  id?: string | undefined | undefined;
22
22
  inert?: (boolean | "true" | "false") | undefined;
@@ -212,7 +212,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
212
212
  dir?: string | undefined | undefined;
213
213
  draggable?: (boolean | "true" | "false") | undefined;
214
214
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
215
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
215
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
216
216
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
217
217
  id?: string | undefined | undefined;
218
218
  inert?: (boolean | "true" | "false") | undefined;
@@ -16,7 +16,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
16
16
  dir?: string | undefined | undefined;
17
17
  draggable?: (boolean | "true" | "false") | undefined;
18
18
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
19
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
19
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
20
20
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
21
21
  id?: string | undefined | undefined;
22
22
  inert?: (boolean | "true" | "false") | undefined;
@@ -212,7 +212,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
212
212
  dir?: string | undefined | undefined;
213
213
  draggable?: (boolean | "true" | "false") | undefined;
214
214
  enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
215
- enterKeyHint?: "search" | "done" | "send" | "next" | "enter" | "go" | "previous" | undefined;
215
+ enterKeyHint?: "search" | "done" | "next" | "send" | "enter" | "go" | "previous" | undefined;
216
216
  hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
217
217
  id?: string | undefined | undefined;
218
218
  inert?: (boolean | "true" | "false") | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.363.0",
3
+ "version": "1.365.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",