pukaad-ui-lib 1.7.0 → 1.9.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 (33) 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.d.ts +1 -1
  4. package/dist/runtime/components/input/input-autocomplete.d.vue.ts +2 -2
  5. package/dist/runtime/components/input/input-autocomplete.vue.d.ts +2 -2
  6. package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
  7. package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
  8. package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
  9. package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
  10. package/dist/runtime/components/input/input-select-province.vue +35 -17
  11. package/dist/runtime/components/input/input-slider.d.vue.ts +1 -1
  12. package/dist/runtime/components/input/input-slider.vue.d.ts +1 -1
  13. package/dist/runtime/components/ui/button/index.d.ts +2 -2
  14. package/dist/runtime/components/ui/button/index.js +22 -1
  15. package/dist/runtime/components/ui/card/Card.vue +3 -6
  16. package/dist/runtime/components/ui/carousel/CarouselNext.d.vue.ts +2 -2
  17. package/dist/runtime/components/ui/carousel/CarouselNext.vue.d.ts +2 -2
  18. package/dist/runtime/components/ui/carousel/CarouselPrevious.d.vue.ts +2 -2
  19. package/dist/runtime/components/ui/carousel/CarouselPrevious.vue.d.ts +2 -2
  20. package/dist/runtime/components/ui/command/index.d.ts +0 -6
  21. package/dist/runtime/components/ui/input-group/InputGroupButton.d.vue.ts +1 -1
  22. package/dist/runtime/components/ui/input-group/InputGroupButton.vue.d.ts +1 -1
  23. package/dist/runtime/components/ui/pagination/PaginationFirst.d.vue.ts +1 -1
  24. package/dist/runtime/components/ui/pagination/PaginationFirst.vue.d.ts +1 -1
  25. package/dist/runtime/components/ui/pagination/PaginationItem.d.vue.ts +1 -1
  26. package/dist/runtime/components/ui/pagination/PaginationItem.vue.d.ts +1 -1
  27. package/dist/runtime/components/ui/pagination/PaginationLast.d.vue.ts +1 -1
  28. package/dist/runtime/components/ui/pagination/PaginationLast.vue.d.ts +1 -1
  29. package/dist/runtime/components/ui/pagination/PaginationNext.d.vue.ts +1 -1
  30. package/dist/runtime/components/ui/pagination/PaginationNext.vue.d.ts +1 -1
  31. package/dist/runtime/components/ui/pagination/PaginationPrevious.d.vue.ts +1 -1
  32. package/dist/runtime/components/ui/pagination/PaginationPrevious.vue.d.ts +1 -1
  33. 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.7.0",
4
+ "version": "1.9.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -1,6 +1,6 @@
1
1
  import type { HTMLAttributes } from "vue";
2
2
  export type ButtonType = "button" | "submit" | "reset";
3
- export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text";
3
+ export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text" | "icon";
4
4
  export type ButtonColor = "default" | "primary" | "secondary" | "destructive";
5
5
  export interface ButtonProps {
6
6
  type?: ButtonType;
@@ -1,6 +1,6 @@
1
1
  import type { HTMLAttributes } from "vue";
2
2
  export type ButtonType = "button" | "submit" | "reset";
3
- export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text";
3
+ export type ButtonVariant = "default" | "outline" | "ghost" | "link" | "text" | "icon";
4
4
  export type ButtonColor = "default" | "primary" | "secondary" | "destructive";
5
5
  export interface ButtonProps {
6
6
  type?: ButtonType;
@@ -36,9 +36,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
36
36
  id: string;
37
37
  name: string;
38
38
  description: string;
39
- options: AutocompleteOption[] | string[] | number[];
40
- placeholder: string;
41
39
  limit: number;
40
+ placeholder: string;
41
+ options: AutocompleteOption[] | string[] | number[];
42
42
  disabledErrorMessage: boolean;
43
43
  disabledBorder: boolean;
44
44
  showCounter: boolean;
@@ -36,9 +36,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
36
36
  id: string;
37
37
  name: string;
38
38
  description: string;
39
- options: AutocompleteOption[] | string[] | number[];
40
- placeholder: string;
41
39
  limit: number;
40
+ placeholder: string;
41
+ options: AutocompleteOption[] | string[] | number[];
42
42
  disabledErrorMessage: boolean;
43
43
  disabledBorder: boolean;
44
44
  showCounter: boolean;
@@ -27,8 +27,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
27
27
  label: string;
28
28
  name: string;
29
29
  limit: number;
30
- disabledErrorMessage: boolean;
31
30
  accept: string;
31
+ disabledErrorMessage: boolean;
32
32
  labelIcon: string;
33
33
  disabledDrop: boolean;
34
34
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -27,8 +27,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
27
27
  label: string;
28
28
  name: string;
29
29
  limit: number;
30
- disabledErrorMessage: boolean;
31
30
  accept: string;
31
+ disabledErrorMessage: boolean;
32
32
  labelIcon: string;
33
33
  disabledDrop: boolean;
34
34
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  }>, {
19
19
  id: string;
20
20
  name: string;
21
- new: boolean;
22
21
  disabledForgotPassword: boolean;
22
+ new: boolean;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
18
18
  }>, {
19
19
  id: string;
20
20
  name: string;
21
- new: boolean;
22
21
  disabledForgotPassword: boolean;
22
+ new: boolean;
23
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
24
  declare const _default: typeof __VLS_export;
25
25
  export default _default;
@@ -30,23 +30,35 @@
30
30
  @click="selectProvince(province.value)"
31
31
  >
32
32
  <Card
33
- class="flex flex-col bg-mercury w-[140px] h-[180px]"
33
+ class="relative overflow-hidden bg-mercury w-[140px] h-[180px]"
34
34
  >
35
- <div class="font-medium">
36
- {{ province.label }}
37
- </div>
38
- <div
39
- v-if="province.image_cover_url === null"
40
- class="flex flex-col items-center h-full justify-center"
41
- >
42
- <Icon name="lucide:image" size="28" />
43
- <div class="text-gray">ไม่มีรูป</div>
44
- </div>
45
- <img
46
- v-else
47
- :src="province.image_cover_url || ''"
48
- class="w-full object-cover"
49
- />
35
+ <!-- No image state -->
36
+ <template v-if="province.image_cover_url === null">
37
+ <div class="font-medium">
38
+ {{ province.label }}
39
+ </div>
40
+ <div
41
+ class="flex flex-col items-center justify-center gap-[4px] h-full mt-2"
42
+ >
43
+ <Icon name="lucide:image" size="28" />
44
+ <div class="text-gray">ไม่มีรูป</div>
45
+ </div>
46
+ </template>
47
+
48
+ <!-- Has image state -->
49
+ <template v-else>
50
+ <img
51
+ :src="
52
+ province.image_cover_url || 'https://placehold.co/140x180?text=Place+Photo'
53
+ "
54
+ class="w-[140px] h-[180px] object-cover"
55
+ />
56
+ <div
57
+ class="absolute top-0 left-0 right-0 p-2 font-medium text-white bg-gradient-to-b from-black/70 to-transparent"
58
+ >
59
+ {{ province.label }}
60
+ </div>
61
+ </template>
50
62
  </Card>
51
63
  </ShadCarouselItem>
52
64
  </ShadCarouselContent>
@@ -101,7 +113,8 @@ const fetchProvinces = async () => {
101
113
  provinces.value = data.filter((p) => p.is_active === true).map((p) => ({
102
114
  value: String(p.id),
103
115
  label: p.name_th,
104
- image_cover_url: p.image_cover_url ?? null
116
+ image_cover_url: p.image_cover_url ?? null,
117
+ domain: p.domain ?? null
105
118
  }));
106
119
  }
107
120
  } catch (error) {
@@ -115,6 +128,11 @@ const selectedLabel = computed(() => {
115
128
  const selectProvince = (value) => {
116
129
  modelValue.value = value;
117
130
  open.value = false;
131
+ const selected = provinces.value.find((p) => p.value === value);
132
+ if (selected?.domain) {
133
+ const url = selected.domain.startsWith("http") ? selected.domain : `https://${selected.domain}`;
134
+ window.location.href = url;
135
+ }
118
136
  };
119
137
  onMounted(() => {
120
138
  fetchProvinces();
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
12
12
  color: InputSliderColor;
13
13
  fullWidth: boolean;
14
14
  label: string;
15
+ step: number;
15
16
  min: number;
16
17
  max: number;
17
- step: number;
18
18
  lineHeight: number | string;
19
19
  appearance: boolean;
20
20
  thumbSize: number | string;
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
12
12
  color: InputSliderColor;
13
13
  fullWidth: boolean;
14
14
  label: string;
15
+ step: number;
15
16
  min: number;
16
17
  max: number;
17
- step: number;
18
18
  lineHeight: number | string;
19
19
  appearance: boolean;
20
20
  thumbSize: number | string;
@@ -1,9 +1,9 @@
1
1
  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
- variant?: "default" | "outline" | "ghost" | "link" | "text" | null | undefined;
4
+ variant?: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null | undefined;
5
5
  color?: "default" | "primary" | "secondary" | "destructive" | null | undefined;
6
- size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
6
+ size?: "default" | "icon" | "sm" | "lg" | "icon-sm" | "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,8 @@ export const buttonVariants = cva(
9
9
  outline: "shadow-sm",
10
10
  ghost: "",
11
11
  link: "underline-offset-4 hover:underline",
12
- text: ""
12
+ text: "",
13
+ icon: "has-[>svg]:px-0"
13
14
  },
14
15
  color: {
15
16
  default: "text-foreground",
@@ -87,6 +88,26 @@ export const buttonVariants = cva(
87
88
  color: "destructive",
88
89
  class: "text-destructive hover:bg-destructive/90 hover:text-destructive-foreground"
89
90
  },
91
+ {
92
+ variant: "icon",
93
+ color: "default",
94
+ class: "text-foreground hover:bg-mercury/90"
95
+ },
96
+ {
97
+ variant: "icon",
98
+ color: "primary",
99
+ class: "text-primary hover:bg-primary/90 hover:text-primary-foreground"
100
+ },
101
+ {
102
+ variant: "icon",
103
+ color: "secondary",
104
+ class: "text-secondary hover:bg-secondary/90 hover:text-secondary-foreground"
105
+ },
106
+ {
107
+ variant: "icon",
108
+ color: "destructive",
109
+ class: "text-destructive hover:bg-destructive/90 hover:text-destructive-foreground"
110
+ },
90
111
  // text variant - just plain text with color, no background or hover effects
91
112
  {
92
113
  variant: "text",
@@ -1,14 +1,11 @@
1
1
  <template>
2
2
  <Form v-slot="{ meta }" @submit="onSubmit">
3
- <div
4
- data-slot="card"
5
- :class="
3
+ <div data-slot="card" :class="
6
4
  cn(
7
- 'bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-4',
5
+ 'bg-card text-card-foreground flex flex-col gap-6 rounded-xl py-4',
8
6
  props.class
9
7
  )
10
- "
11
- >
8
+ ">
12
9
  <slot name="default" :meta="meta" />
13
10
  </div>
14
11
  </Form>
@@ -9,8 +9,8 @@ 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
- variant: "default" | "outline" | "ghost" | "link" | "text" | null;
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
12
+ variant: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -9,8 +9,8 @@ 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
- variant: "default" | "outline" | "ghost" | "link" | "text" | null;
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
12
+ variant: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -9,8 +9,8 @@ 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
- variant: "default" | "outline" | "ghost" | "link" | "text" | null;
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
12
+ variant: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -9,8 +9,8 @@ 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
- variant: "default" | "outline" | "ghost" | "link" | "text" | null;
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
12
+ variant: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -19,7 +19,6 @@ export declare const useCommand: <T extends {
19
19
  groups: Set<string>;
20
20
  };
21
21
  };
22
- modelValue: Ref<unknown>;
23
22
  } | null | undefined = {
24
23
  allItems: Ref<Map<string, string>>;
25
24
  allGroups: Ref<Map<string, Set<string>>>;
@@ -31,7 +30,6 @@ export declare const useCommand: <T extends {
31
30
  groups: Set<string>;
32
31
  };
33
32
  };
34
- modelValue: Ref<unknown>;
35
33
  }>(fallback?: T | undefined) => T extends null ? {
36
34
  allItems: Ref<Map<string, string>>;
37
35
  allGroups: Ref<Map<string, Set<string>>>;
@@ -43,7 +41,6 @@ export declare const useCommand: <T extends {
43
41
  groups: Set<string>;
44
42
  };
45
43
  };
46
- modelValue: Ref<unknown>;
47
44
  } | null : {
48
45
  allItems: Ref<Map<string, string>>;
49
46
  allGroups: Ref<Map<string, Set<string>>>;
@@ -55,7 +52,6 @@ export declare const useCommand: <T extends {
55
52
  groups: Set<string>;
56
53
  };
57
54
  };
58
- modelValue: Ref<unknown>;
59
55
  }, provideCommandContext: (contextValue: {
60
56
  allItems: Ref<Map<string, string>>;
61
57
  allGroups: Ref<Map<string, Set<string>>>;
@@ -67,7 +63,6 @@ export declare const useCommand: <T extends {
67
63
  groups: Set<string>;
68
64
  };
69
65
  };
70
- modelValue: Ref<unknown>;
71
66
  }) => {
72
67
  allItems: Ref<Map<string, string>>;
73
68
  allGroups: Ref<Map<string, Set<string>>>;
@@ -79,7 +74,6 @@ export declare const useCommand: <T extends {
79
74
  groups: Set<string>;
80
75
  };
81
76
  };
82
- modelValue: Ref<unknown>;
83
77
  };
84
78
  export declare const useCommandGroup: <T extends {
85
79
  id?: string;
@@ -4,7 +4,7 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_7) => 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
- variant: "default" | "outline" | "ghost" | "link" | "text" | null;
7
+ variant: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null;
8
8
  size: "icon-xs" | "sm" | "icon-sm" | "xs" | 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_7) => 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
- variant: "default" | "outline" | "ghost" | "link" | "text" | null;
7
+ variant: "default" | "outline" | "ghost" | "link" | "text" | "icon" | null;
8
8
  size: "icon-xs" | "sm" | "icon-sm" | "xs" | null;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -11,7 +11,7 @@ type __VLS_Slots = {} & {
11
11
  default?: (props: typeof __VLS_7) => any;
12
12
  };
13
13
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
14
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
17
  declare const _default: typeof __VLS_export;
@@ -11,7 +11,7 @@ type __VLS_Slots = {} & {
11
11
  default?: (props: typeof __VLS_7) => any;
12
12
  };
13
13
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
14
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
17
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  default?: (props: typeof __VLS_7) => any;
11
11
  };
12
12
  declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
- size: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null;
13
+ size: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
16
  declare const _default: typeof __VLS_export;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",