pukaad-ui-lib 1.389.0 → 1.390.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 (34) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/card/card-content/card-content-disable.d.vue.ts +3 -0
  3. package/dist/runtime/components/card/card-content/card-content-disable.vue +3 -0
  4. package/dist/runtime/components/card/card-content/card-content-disable.vue.d.ts +3 -0
  5. package/dist/runtime/components/card/card-content/card-content.d.vue.ts +1 -0
  6. package/dist/runtime/components/card/card-content/card-content.vue +19 -4
  7. package/dist/runtime/components/card/card-content/card-content.vue.d.ts +1 -0
  8. package/dist/runtime/components/card/card-profile/card-profile-header.d.vue.ts +1 -1
  9. package/dist/runtime/components/card/card-profile/card-profile-header.vue.d.ts +1 -1
  10. package/dist/runtime/components/card/card-reaction.d.vue.ts +1 -1
  11. package/dist/runtime/components/card/card-reaction.vue.d.ts +1 -1
  12. package/dist/runtime/components/card/card-review.d.vue.ts +5 -5
  13. package/dist/runtime/components/card/card-review.vue.d.ts +5 -5
  14. package/dist/runtime/components/drawer/drawer-profile-network.d.vue.ts +1 -1
  15. package/dist/runtime/components/drawer/drawer-profile-network.vue.d.ts +1 -1
  16. package/dist/runtime/components/input/input-address.d.vue.ts +1 -1
  17. package/dist/runtime/components/input/input-address.vue.d.ts +1 -1
  18. package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
  19. package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
  20. package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
  21. package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
  22. package/dist/runtime/components/input/input-personal-card-id.d.vue.ts +2 -2
  23. package/dist/runtime/components/input/input-personal-card-id.vue.d.ts +2 -2
  24. package/dist/runtime/components/input/input-text-field.d.vue.ts +1 -1
  25. package/dist/runtime/components/input/input-text-field.vue.d.ts +1 -1
  26. package/dist/runtime/components/input/input-textarea.d.vue.ts +1 -1
  27. package/dist/runtime/components/input/input-textarea.vue.d.ts +1 -1
  28. package/dist/runtime/components/modal/modal-media-view.d.vue.ts +1 -1
  29. package/dist/runtime/components/modal/modal-media-view.vue.d.ts +1 -1
  30. package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +1 -1
  31. package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +1 -1
  32. package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +1 -1
  33. package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +1 -1
  34. 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.389.0",
4
+ "version": "1.390.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ <template>
2
+ <div class="absolute inset-0 bg-cloud/80 z-content" />
3
+ </template>
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -16,6 +16,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
16
16
  onAction?: ((name: string, item: CardContentItem) => any) | undefined;
17
17
  }>, {
18
18
  selectable: boolean;
19
+ disable: boolean;
19
20
  disabledNavigate: boolean;
20
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
22
  declare const _default: typeof __VLS_export;
@@ -8,7 +8,7 @@
8
8
  <div
9
9
  :class="[
10
10
  'relative h-[345px] w-[194px] overflow-hidden rounded-[4px] bg-white outline outline-offset-0',
11
- props.disabledNavigate && !props.selectable ? 'cursor-default' : 'cursor-pointer',
11
+ props.disable || props.disabledNavigate && !props.selectable ? 'cursor-default' : 'cursor-pointer',
12
12
  props.selectable || selected ? 'outline-2 outline-gray' : 'outline-1 outline-silver'
13
13
  ]"
14
14
  @mouseenter="hovering = true"
@@ -17,6 +17,8 @@
17
17
  >
18
18
  <component :is="bodyComponent" v-if="bodyComponent" :item="props.item" />
19
19
 
20
+ <CardContentDisable v-if="props.disable" />
21
+
20
22
  <div v-if="showTime" class="absolute left-[8px] top-[8px] z-content">
21
23
  <CardContentTime :item="props.item" />
22
24
  </div>
@@ -26,7 +28,7 @@
26
28
  :state="props.state"
27
29
  :is-pinned="!!props.item.pinned"
28
30
  :is-bookmarked="!!props.item.bookmarked"
29
- :is-show="hovering"
31
+ :is-show="isMenuShow"
30
32
  @action="onMenuAction"
31
33
  />
32
34
  </div>
@@ -49,16 +51,19 @@ import CardContentVideo from "./card-content-video.vue";
49
51
  import CardContentTime from "./card-content-time.vue";
50
52
  import CardContentMenu from "./card-content-menu.vue";
51
53
  import CardContentSelect from "./card-content-select.vue";
54
+ import CardContentDisable from "./card-content-disable.vue";
52
55
  const router = useRouter();
53
56
  const props = defineProps({
54
57
  item: { type: Object, required: true },
55
58
  state: { type: String, required: false },
56
59
  selectable: { type: Boolean, required: false, default: false },
57
- disabledNavigate: { type: Boolean, required: false, default: false }
60
+ disabledNavigate: { type: Boolean, required: false, default: false },
61
+ disable: { type: Boolean, required: false, default: false }
58
62
  });
59
63
  const emit = defineEmits(["click", "action"]);
60
64
  const selected = defineModel("selected", { type: Boolean, ...{ default: false } });
61
65
  const handleClick = () => {
66
+ if (props.disable) return;
62
67
  if (props.selectable) {
63
68
  selected.value = !selected.value;
64
69
  emit("click", props.item);
@@ -70,6 +75,10 @@ const handleClick = () => {
70
75
  }
71
76
  };
72
77
  const hovering = ref(false);
78
+ const isMenuShow = computed(() => {
79
+ if (props.disable) return false;
80
+ return hovering.value;
81
+ });
73
82
  const BODY = {
74
83
  postIt: CardContentPostIt,
75
84
  image: CardContentImage,
@@ -77,7 +86,13 @@ const BODY = {
77
86
  };
78
87
  const bodyComponent = computed(() => BODY[props.item.type]);
79
88
  const showTime = computed(() => !!props.item.expireAt);
80
- const hasMenu = computed(() => !props.selectable && !!props.state);
89
+ const hasMenu = computed(() => {
90
+ if (props.selectable || !props.state) return false;
91
+ if (props.disable) {
92
+ return !!(props.item.pinned || props.item.bookmarked);
93
+ }
94
+ return true;
95
+ });
81
96
  const onMenuAction = (name) => {
82
97
  emit("action", name, props.item);
83
98
  };
@@ -16,6 +16,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
16
16
  onAction?: ((name: string, item: CardContentItem) => any) | undefined;
17
17
  }>, {
18
18
  selectable: boolean;
19
+ disable: boolean;
19
20
  disabledNavigate: boolean;
20
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
22
  declare const _default: typeof __VLS_export;
@@ -7,8 +7,8 @@ declare const __VLS_export: import("vue").DefineComponent<CardProfileAboutProps,
7
7
  onChat?: (() => any) | undefined;
8
8
  }>, {
9
9
  type: "article" | "media" | "sale-info";
10
- disabledPadding: boolean;
11
10
  preview: boolean;
11
+ disabledPadding: boolean;
12
12
  optionMenuButtonType: "solid" | "text";
13
13
  actionsHidden: boolean;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,8 +7,8 @@ declare const __VLS_export: import("vue").DefineComponent<CardProfileAboutProps,
7
7
  onChat?: (() => any) | undefined;
8
8
  }>, {
9
9
  type: "article" | "media" | "sale-info";
10
- disabledPadding: boolean;
11
10
  preview: boolean;
11
+ disabledPadding: boolean;
12
12
  optionMenuButtonType: "solid" | "text";
13
13
  actionsHidden: boolean;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -24,6 +24,7 @@ type __VLS_Props = {
24
24
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
25
25
  disabled: boolean;
26
26
  id: string;
27
+ state: string;
27
28
  itemCount: Count;
28
29
  itemActive: Reacted;
29
30
  padding: string | number;
@@ -31,7 +32,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
31
32
  disabledDividerTop: boolean;
32
33
  disabledDividerBottom: boolean;
33
34
  iconSize: number | string;
34
- state: string;
35
35
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
36
  declare const _default: typeof __VLS_export;
37
37
  export default _default;
@@ -24,6 +24,7 @@ type __VLS_Props = {
24
24
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
25
25
  disabled: boolean;
26
26
  id: string;
27
+ state: string;
27
28
  itemCount: Count;
28
29
  itemActive: Reacted;
29
30
  padding: string | number;
@@ -31,7 +32,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
31
32
  disabledDividerTop: boolean;
32
33
  disabledDividerBottom: boolean;
33
34
  iconSize: number | string;
34
- state: string;
35
35
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
36
  declare const _default: typeof __VLS_export;
37
37
  export default _default;
@@ -36,17 +36,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
36
36
  "onReply-delete"?: ((item: CardReviewProps) => any) | undefined;
37
37
  }>, {
38
38
  item: CardReviewProps;
39
- disabledMenu: boolean;
40
- isProfile: boolean;
41
- disabledLike: boolean;
42
- allowReply: boolean;
43
- replyAvatar: string;
44
39
  place: {
45
40
  id: string | number;
46
41
  name?: string;
47
42
  address?: string;
48
43
  cover?: string;
49
44
  };
45
+ disabledMenu: boolean;
46
+ isProfile: boolean;
47
+ disabledLike: boolean;
48
+ allowReply: boolean;
49
+ replyAvatar: string;
50
50
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
51
51
  declare const _default: typeof __VLS_export;
52
52
  export default _default;
@@ -36,17 +36,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
36
36
  "onReply-delete"?: ((item: CardReviewProps) => any) | undefined;
37
37
  }>, {
38
38
  item: CardReviewProps;
39
- disabledMenu: boolean;
40
- isProfile: boolean;
41
- disabledLike: boolean;
42
- allowReply: boolean;
43
- replyAvatar: string;
44
39
  place: {
45
40
  id: string | number;
46
41
  name?: string;
47
42
  address?: string;
48
43
  cover?: string;
49
44
  };
45
+ disabledMenu: boolean;
46
+ isProfile: boolean;
47
+ disabledLike: boolean;
48
+ allowReply: boolean;
49
+ replyAvatar: string;
50
50
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
51
51
  declare const _default: typeof __VLS_export;
52
52
  export default _default;
@@ -30,9 +30,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
30
30
  "onExplore-places"?: (() => any) | undefined;
31
31
  "onRequire-auth"?: (() => any) | undefined;
32
32
  }>, {
33
- isMyProfile: boolean;
34
33
  profileId: string;
35
34
  defaultTab: "followers" | "following" | "favorites";
35
+ isMyProfile: boolean;
36
36
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
37
37
  declare const _default: typeof __VLS_export;
38
38
  export default _default;
@@ -30,9 +30,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
30
30
  "onExplore-places"?: (() => any) | undefined;
31
31
  "onRequire-auth"?: (() => any) | undefined;
32
32
  }>, {
33
- isMyProfile: boolean;
34
33
  profileId: string;
35
34
  defaultTab: "followers" | "following" | "favorites";
35
+ isMyProfile: boolean;
36
36
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
37
37
  declare const _default: typeof __VLS_export;
38
38
  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;
@@ -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,12 +11,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
12
  "update:modelValue": (value: File | null) => any;
13
13
  } & {
14
- complete: (file: File) => any;
15
14
  remove: () => any;
15
+ complete: (file: File) => any;
16
16
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
17
  "onUpdate:modelValue"?: ((value: File | null) => any) | undefined;
18
- onComplete?: ((file: File) => any) | undefined;
19
18
  onRemove?: (() => any) | undefined;
19
+ onComplete?: ((file: File) => any) | undefined;
20
20
  }>, {
21
21
  name: string;
22
22
  disabledErrorMessage: boolean;
@@ -11,12 +11,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
12
  "update:modelValue": (value: File | null) => any;
13
13
  } & {
14
- complete: (file: File) => any;
15
14
  remove: () => any;
15
+ complete: (file: File) => any;
16
16
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
17
  "onUpdate:modelValue"?: ((value: File | null) => any) | undefined;
18
- onComplete?: ((file: File) => any) | undefined;
19
18
  onRemove?: (() => any) | undefined;
19
+ onComplete?: ((file: File) => any) | undefined;
20
20
  }>, {
21
21
  name: string;
22
22
  disabledErrorMessage: boolean;
@@ -59,8 +59,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
59
59
  id: string;
60
60
  name: string;
61
61
  required: boolean;
62
- limit: number;
63
62
  readonly: boolean;
63
+ limit: number;
64
64
  disabledErrorMessage: boolean;
65
65
  disabledBorder: boolean;
66
66
  showCounter: boolean;
@@ -59,8 +59,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
59
59
  id: string;
60
60
  name: string;
61
61
  required: boolean;
62
- limit: number;
63
62
  readonly: boolean;
63
+ limit: number;
64
64
  disabledErrorMessage: boolean;
65
65
  disabledBorder: boolean;
66
66
  showCounter: boolean;
@@ -47,8 +47,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
47
47
  fullHeight: boolean;
48
48
  fullWidth: boolean;
49
49
  rows: number;
50
- limit: number;
51
50
  readonly: boolean;
51
+ limit: number;
52
52
  disabledErrorMessage: boolean;
53
53
  disabledBorder: boolean;
54
54
  showCounter: boolean;
@@ -47,8 +47,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
47
47
  fullHeight: boolean;
48
48
  fullWidth: boolean;
49
49
  rows: number;
50
- limit: number;
51
50
  readonly: boolean;
51
+ limit: number;
52
52
  disabledErrorMessage: boolean;
53
53
  disabledBorder: boolean;
54
54
  showCounter: boolean;
@@ -23,8 +23,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
23
23
  }>, {
24
24
  title: string;
25
25
  items: CarouselItem[];
26
- startIndex: number;
27
26
  uploaderLabel: string;
27
+ startIndex: number;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
29
  declare const _default: typeof __VLS_export;
30
30
  export default _default;
@@ -23,8 +23,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
23
23
  }>, {
24
24
  title: string;
25
25
  items: CarouselItem[];
26
- startIndex: number;
27
26
  uploaderLabel: string;
27
+ startIndex: number;
28
28
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
29
29
  declare const _default: typeof __VLS_export;
30
30
  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;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.389.0",
3
+ "version": "1.390.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",