pukaad-ui-lib 1.203.0 → 1.204.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 (39) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/comment.d.vue.ts +22 -4
  3. package/dist/runtime/components/comment.vue +125 -11
  4. package/dist/runtime/components/comment.vue.d.ts +22 -4
  5. package/dist/runtime/components/dialog/dialog-email-OTP.d.vue.ts +2 -2
  6. package/dist/runtime/components/dialog/dialog-email-OTP.vue.d.ts +2 -2
  7. package/dist/runtime/components/dialog/dialog-phone-OTP.d.vue.ts +2 -2
  8. package/dist/runtime/components/dialog/dialog-phone-OTP.vue.d.ts +2 -2
  9. package/dist/runtime/components/drawer/drawer.d.vue.ts +1 -1
  10. package/dist/runtime/components/drawer/drawer.vue.d.ts +1 -1
  11. package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
  12. package/dist/runtime/components/input/input-autocomplete.vue.d.ts +1 -1
  13. package/dist/runtime/components/input/input-combobox.d.vue.ts +1 -1
  14. package/dist/runtime/components/input/input-combobox.vue.d.ts +1 -1
  15. package/dist/runtime/components/input/input-text-field.d.vue.ts +1 -1
  16. package/dist/runtime/components/input/input-text-field.vue.d.ts +1 -1
  17. package/dist/runtime/components/input/input-textarea.d.vue.ts +1 -1
  18. package/dist/runtime/components/input/input-textarea.vue.d.ts +1 -1
  19. package/dist/runtime/components/modal/modal-account-disabled-alert.d.vue.ts +2 -2
  20. package/dist/runtime/components/modal/modal-account-disabled-alert.vue.d.ts +2 -2
  21. package/dist/runtime/components/modal/modal-account-disabled-confirmed.d.vue.ts +2 -2
  22. package/dist/runtime/components/modal/modal-account-disabled-confirmed.vue.d.ts +2 -2
  23. package/dist/runtime/components/modal/modal-account-disabled-reason.d.vue.ts +2 -2
  24. package/dist/runtime/components/modal/modal-account-disabled-reason.vue.d.ts +2 -2
  25. package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +2 -2
  26. package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +2 -2
  27. package/dist/runtime/components/modal/modal-password-new.d.vue.ts +2 -2
  28. package/dist/runtime/components/modal/modal-password-new.vue.d.ts +2 -2
  29. package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +2 -2
  30. package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +2 -2
  31. package/dist/runtime/components/modal/modal-phone-OTP.d.vue.ts +2 -2
  32. package/dist/runtime/components/modal/modal-phone-OTP.vue.d.ts +2 -2
  33. package/dist/runtime/components/modal/modal.d.vue.ts +1 -1
  34. package/dist/runtime/components/modal/modal.vue.d.ts +1 -1
  35. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +2 -2
  36. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +2 -2
  37. package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +2 -2
  38. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +2 -2
  39. 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.203.0",
4
+ "version": "1.204.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -22,12 +22,26 @@ export interface CommentItem {
22
22
  reply_count: number;
23
23
  reply: Reply[];
24
24
  }
25
+ export interface CommentFetchResult {
26
+ data: CommentItem[];
27
+ totalComments: number;
28
+ meta: {
29
+ total_pages: number;
30
+ };
31
+ }
25
32
  type __VLS_Props = {
26
- comments: CommentItem[];
27
- commentCount: number;
33
+ comments?: CommentItem[];
34
+ commentCount?: number;
28
35
  currentUser: User;
36
+ fetchFn?: (page: number, pageSize: number) => Promise<CommentFetchResult>;
37
+ pageSize?: number;
29
38
  };
30
- declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
39
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
40
+ addComment: (comment: CommentItem) => void;
41
+ addReply: (commentId: string, reply: Reply) => void;
42
+ removeComment: (commentId: string) => void;
43
+ removeReply: (replyId: string) => void;
44
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
31
45
  submit: (content: string) => any;
32
46
  reply: (commentId: string, replyToUserId: string | undefined, content: string) => any;
33
47
  "like-comment": (comment: CommentItem) => any;
@@ -49,6 +63,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
49
63
  "onDelete-reply"?: ((reply: Reply) => any) | undefined;
50
64
  "onReport-comment"?: ((comment: CommentItem) => any) | undefined;
51
65
  "onReport-reply"?: ((reply: Reply) => any) | undefined;
52
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
66
+ }>, {
67
+ comments: CommentItem[];
68
+ commentCount: number;
69
+ pageSize: number;
70
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
53
71
  declare const _default: typeof __VLS_export;
54
72
  export default _default;
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex flex-col gap-[16px] w-full">
3
3
  <div class="font-title-medium-prominent">
4
- ความคิดเห็น {{ $convert.convertNumber(commentCount) }}
4
+ ความคิดเห็น {{ $convert.convertNumber(resolvedCommentCount) }}
5
5
  </div>
6
6
  <div class="flex flex-col gap-[16px]">
7
7
  <div class="flex gap-[8px] w-full">
@@ -32,7 +32,7 @@
32
32
  </div>
33
33
  </div>
34
34
  <div
35
- v-for="cmt in comments"
35
+ v-for="cmt in resolvedComments"
36
36
  :key="cmt.id"
37
37
  class="flex flex-col gap-[16px] w-full"
38
38
  >
@@ -139,7 +139,10 @@
139
139
  "
140
140
  :class="[cmt.is_liked && 'text-primary']"
141
141
  />
142
- <div v-if="cmt.like_count > 0" :class="[cmt.is_liked && 'text-primary']">
142
+ <div
143
+ v-if="cmt.like_count > 0"
144
+ :class="[cmt.is_liked && 'text-primary']"
145
+ >
143
146
  {{ $convert.convertNumber(cmt.like_count) }}
144
147
  </div>
145
148
  </div>
@@ -207,7 +210,9 @@
207
210
  </div>
208
211
  <div
209
212
  v-if="cmt.reply.length > 0"
210
- v-show="openedComments.includes(cmt.id) || cmt.reply.some((r) => pinnedReplyIds.has(r.id))"
213
+ v-show="
214
+ openedComments.includes(cmt.id) || cmt.reply.some((r) => pinnedReplyIds.has(r.id))
215
+ "
211
216
  class="pl-[38px] flex flex-col gap-[16px]"
212
217
  >
213
218
  <div
@@ -315,7 +320,9 @@
315
320
  icon-size="20"
316
321
  :items="getReplyMenuItems(reply)"
317
322
  :open="openMenuId === reply.id"
318
- @update:open="(v) => openMenuId = v ? reply.id : null"
323
+ @update:open="
324
+ (v) => openMenuId = v ? reply.id : null
325
+ "
319
326
  />
320
327
  </div>
321
328
  </template>
@@ -334,7 +341,10 @@
334
341
  "
335
342
  :class="[reply.is_liked && 'text-primary']"
336
343
  />
337
- <div v-if="reply.like_count > 0" :class="[reply.is_liked && 'text-primary']">
344
+ <div
345
+ v-if="reply.like_count > 0"
346
+ :class="[reply.is_liked && 'text-primary']"
347
+ >
338
348
  {{ $convert.convertNumber(reply.like_count) }}
339
349
  </div>
340
350
  </div>
@@ -385,19 +395,49 @@
385
395
  </div>
386
396
  </div>
387
397
  </div>
398
+ <!-- Loading indicator for pagination -->
399
+ <div
400
+ v-if="fetchFn && paginationState.loading"
401
+ class="flex justify-center py-4"
402
+ >
403
+ <Icon name="lucide:loader-2" class="animate-spin h-5 w-5 text-primary" />
404
+ </div>
388
405
  </div>
389
406
  </template>
390
407
 
391
408
  <script setup>
392
- import { ref, nextTick, watch } from "vue";
409
+ import {
410
+ ref,
411
+ nextTick,
412
+ watch,
413
+ reactive,
414
+ computed,
415
+ onMounted,
416
+ onUnmounted
417
+ } from "vue";
393
418
  import { useRouter } from "vue-router";
394
419
  import { useConvert } from "@/runtime/composables/useConvert";
395
420
  const props = defineProps({
396
- comments: { type: Array, required: true },
397
- commentCount: { type: Number, required: true },
398
- currentUser: { type: Object, required: true }
421
+ comments: { type: Array, required: false, default: () => [] },
422
+ commentCount: { type: Number, required: false, default: 0 },
423
+ currentUser: { type: Object, required: true },
424
+ fetchFn: { type: Function, required: false },
425
+ pageSize: { type: Number, required: false, default: 20 }
399
426
  });
400
427
  const emit = defineEmits(["submit", "reply", "like-comment", "like-reply", "edit-comment", "edit-reply", "delete-comment", "delete-reply", "report-comment", "report-reply"]);
428
+ const internalComments = ref([]);
429
+ const internalCommentCount = ref(0);
430
+ const paginationState = reactive({
431
+ page: 1,
432
+ totalPages: 1,
433
+ loading: false
434
+ });
435
+ const resolvedComments = computed(
436
+ () => props.fetchFn ? internalComments.value : props.comments
437
+ );
438
+ const resolvedCommentCount = computed(
439
+ () => props.fetchFn ? internalCommentCount.value : props.commentCount ?? 0
440
+ );
401
441
  const router = useRouter();
402
442
  const { convertDateTorelativeText } = useConvert();
403
443
  const openedComments = ref([]);
@@ -413,7 +453,7 @@ const replyTextMap = ref({});
413
453
  const pinnedReplyIds = ref(/* @__PURE__ */ new Set());
414
454
  let knownReplyIds = null;
415
455
  watch(
416
- () => props.comments.flatMap((c) => c.reply.map((r) => r.id)),
456
+ () => resolvedComments.value.flatMap((c) => c.reply.map((r) => r.id)),
417
457
  (allIds) => {
418
458
  if (knownReplyIds === null) {
419
459
  if (allIds.length === 0) return;
@@ -728,4 +768,78 @@ const getReplyMenuItems = (reply) => isSelfUser(reply.user) ? [
728
768
  action: () => emit("report-reply", reply)
729
769
  }
730
770
  ];
771
+ const fetchData = async (isLoadMore = false) => {
772
+ if (!props.fetchFn) return;
773
+ if (paginationState.loading) return;
774
+ if (isLoadMore && paginationState.page > paginationState.totalPages) return;
775
+ paginationState.loading = true;
776
+ try {
777
+ const res = await props.fetchFn(paginationState.page, props.pageSize);
778
+ if (res?.data) {
779
+ if (isLoadMore) {
780
+ internalComments.value.push(...res.data);
781
+ } else {
782
+ internalComments.value = res.data;
783
+ }
784
+ internalCommentCount.value = res.totalComments;
785
+ paginationState.totalPages = res.meta.total_pages;
786
+ }
787
+ } catch (e) {
788
+ console.error("Comment: Failed to fetch:", e);
789
+ } finally {
790
+ paginationState.loading = false;
791
+ }
792
+ };
793
+ const onScroll = () => {
794
+ if (!props.fetchFn) return;
795
+ const isBottom = document.documentElement.scrollHeight - window.scrollY <= window.innerHeight + 150;
796
+ if (isBottom && !paginationState.loading && paginationState.page < paginationState.totalPages) {
797
+ paginationState.page++;
798
+ fetchData(true);
799
+ }
800
+ };
801
+ onMounted(() => {
802
+ if (props.fetchFn) {
803
+ fetchData();
804
+ window.addEventListener("scroll", onScroll);
805
+ }
806
+ });
807
+ onUnmounted(() => {
808
+ if (props.fetchFn) {
809
+ window.removeEventListener("scroll", onScroll);
810
+ }
811
+ });
812
+ const addComment = (comment) => {
813
+ internalComments.value.unshift(comment);
814
+ internalCommentCount.value++;
815
+ };
816
+ const addReply = (commentId, reply) => {
817
+ const parent = internalComments.value.find((c) => c.id === commentId);
818
+ if (parent) {
819
+ if (!parent.reply) parent.reply = [];
820
+ parent.reply.push(reply);
821
+ parent.reply_count = (parent.reply_count || 0) + 1;
822
+ internalCommentCount.value++;
823
+ }
824
+ };
825
+ const removeComment = (commentId) => {
826
+ const idx = internalComments.value.findIndex((c) => c.id === commentId);
827
+ if (idx === -1) return;
828
+ const [removed] = internalComments.value.splice(idx, 1);
829
+ if (removed) {
830
+ internalCommentCount.value -= 1 + (removed.reply_count || 0);
831
+ }
832
+ };
833
+ const removeReply = (replyId) => {
834
+ const parent = internalComments.value.find(
835
+ (c) => c.reply.some((r) => r.id === replyId)
836
+ );
837
+ if (!parent) return;
838
+ const idx = parent.reply.findIndex((r) => r.id === replyId);
839
+ if (idx === -1) return;
840
+ parent.reply.splice(idx, 1);
841
+ parent.reply_count--;
842
+ internalCommentCount.value--;
843
+ };
844
+ defineExpose({ addComment, addReply, removeComment, removeReply });
731
845
  </script>
@@ -22,12 +22,26 @@ export interface CommentItem {
22
22
  reply_count: number;
23
23
  reply: Reply[];
24
24
  }
25
+ export interface CommentFetchResult {
26
+ data: CommentItem[];
27
+ totalComments: number;
28
+ meta: {
29
+ total_pages: number;
30
+ };
31
+ }
25
32
  type __VLS_Props = {
26
- comments: CommentItem[];
27
- commentCount: number;
33
+ comments?: CommentItem[];
34
+ commentCount?: number;
28
35
  currentUser: User;
36
+ fetchFn?: (page: number, pageSize: number) => Promise<CommentFetchResult>;
37
+ pageSize?: number;
29
38
  };
30
- declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
39
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
40
+ addComment: (comment: CommentItem) => void;
41
+ addReply: (commentId: string, reply: Reply) => void;
42
+ removeComment: (commentId: string) => void;
43
+ removeReply: (replyId: string) => void;
44
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
31
45
  submit: (content: string) => any;
32
46
  reply: (commentId: string, replyToUserId: string | undefined, content: string) => any;
33
47
  "like-comment": (comment: CommentItem) => any;
@@ -49,6 +63,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
49
63
  "onDelete-reply"?: ((reply: Reply) => any) | undefined;
50
64
  "onReport-comment"?: ((comment: CommentItem) => any) | undefined;
51
65
  "onReport-reply"?: ((reply: Reply) => any) | undefined;
52
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
66
+ }>, {
67
+ comments: CommentItem[];
68
+ commentCount: number;
69
+ pageSize: number;
70
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
53
71
  declare const _default: typeof __VLS_export;
54
72
  export default _default;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- complete: () => any;
11
10
  close: () => any;
11
+ complete: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ onClose?: (() => any) | undefined;
13
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
15
  onComplete?: (() => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- complete: () => any;
11
10
  close: () => any;
11
+ complete: () => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ onClose?: (() => any) | undefined;
13
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
15
  onComplete?: (() => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ onClose?: (() => any) | undefined;
13
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
15
  onComplete?: ((value: string) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  phone: string;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ onClose?: (() => any) | undefined;
13
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
15
  onComplete?: ((value: string) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  phone: string;
@@ -30,8 +30,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
30
30
  close: () => any;
31
31
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
32
32
  onSubmit?: (() => any) | undefined;
33
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
34
33
  onClose?: (() => any) | undefined;
34
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
35
35
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
36
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
37
37
  declare const _default: typeof __VLS_export;
@@ -30,8 +30,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
30
30
  close: () => any;
31
31
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
32
32
  onSubmit?: (() => any) | undefined;
33
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
34
33
  onClose?: (() => any) | undefined;
34
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
35
35
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
36
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
37
37
  declare const _default: typeof __VLS_export;
@@ -44,6 +44,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
44
44
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
45
45
  }>, {
46
46
  required: boolean;
47
+ pageSize: number;
47
48
  id: string;
48
49
  name: string;
49
50
  description: string;
@@ -56,7 +57,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
56
57
  returnObject: boolean;
57
58
  valueKey: string;
58
59
  labelKey: string;
59
- pageSize: number;
60
60
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
61
61
  declare const _default: typeof __VLS_export;
62
62
  export default _default;
@@ -44,6 +44,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
44
44
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
45
45
  }>, {
46
46
  required: boolean;
47
+ pageSize: number;
47
48
  id: string;
48
49
  name: string;
49
50
  description: string;
@@ -56,7 +57,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
56
57
  returnObject: boolean;
57
58
  valueKey: string;
58
59
  labelKey: string;
59
- pageSize: number;
60
60
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
61
61
  declare const _default: typeof __VLS_export;
62
62
  export default _default;
@@ -53,11 +53,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
53
53
  onClear?: (() => any) | undefined;
54
54
  "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
55
55
  }>, {
56
+ pageSize: number;
56
57
  name: string;
57
58
  limit: number;
58
59
  valueKey: string;
59
60
  labelKey: string;
60
- pageSize: number;
61
61
  multiple: boolean;
62
62
  placeholderSearch: string;
63
63
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -53,11 +53,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
53
53
  onClear?: (() => any) | undefined;
54
54
  "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
55
55
  }>, {
56
+ pageSize: number;
56
57
  name: string;
57
58
  limit: number;
58
59
  valueKey: string;
59
60
  labelKey: string;
60
- pageSize: number;
61
61
  multiple: boolean;
62
62
  placeholderSearch: string;
63
63
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -47,8 +47,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
47
47
  clickIconAppend: (event: Event) => any;
48
48
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
49
49
  onClick?: ((event: Event) => any) | undefined;
50
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
51
50
  onKeydown?: ((event: KeyboardEvent) => any) | undefined;
51
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
52
52
  onClickPrepend?: ((event: Event) => any) | undefined;
53
53
  onClickIconPrepend?: ((event: Event) => any) | undefined;
54
54
  onClickAppend?: ((event: Event) => any) | undefined;
@@ -47,8 +47,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
47
47
  clickIconAppend: (event: Event) => any;
48
48
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
49
49
  onClick?: ((event: Event) => any) | undefined;
50
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
51
50
  onKeydown?: ((event: KeyboardEvent) => any) | undefined;
51
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
52
52
  onClickPrepend?: ((event: Event) => any) | undefined;
53
53
  onClickIconPrepend?: ((event: Event) => any) | undefined;
54
54
  onClickAppend?: ((event: Event) => any) | undefined;
@@ -44,11 +44,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
44
44
  required: boolean;
45
45
  id: string;
46
46
  name: string;
47
+ resize: "none" | "both" | "horizontal" | "vertical";
47
48
  limit: number;
48
49
  disabledErrorMessage: boolean;
49
50
  disabledBorder: boolean;
50
51
  showCounter: boolean;
51
- resize: "none" | "both" | "horizontal" | "vertical";
52
52
  readonly: boolean;
53
53
  rows: number;
54
54
  heightScroll: boolean;
@@ -44,11 +44,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
44
44
  required: boolean;
45
45
  id: string;
46
46
  name: string;
47
+ resize: "none" | "both" | "horizontal" | "vertical";
47
48
  limit: number;
48
49
  disabledErrorMessage: boolean;
49
50
  disabledBorder: boolean;
50
51
  showCounter: boolean;
51
- resize: "none" | "both" | "horizontal" | "vertical";
52
52
  readonly: boolean;
53
53
  rows: number;
54
54
  heightScroll: boolean;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ onClose?: (() => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
16
  onComplete?: (() => any) | undefined;
16
- onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ onClose?: (() => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
16
  onComplete?: (() => any) | undefined;
16
- onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ onClose?: (() => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
16
  onComplete?: (() => any) | undefined;
16
- onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ onClose?: (() => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
16
  onComplete?: (() => any) | undefined;
16
- onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ onClose?: (() => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
16
  onComplete?: (() => any) | undefined;
16
- onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -8,12 +8,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
8
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: boolean) => any;
10
10
  } & {
11
- complete: () => any;
12
11
  close: () => any;
12
+ complete: () => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ onClose?: (() => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
15
16
  onComplete?: (() => any) | undefined;
16
- onClose?: (() => any) | undefined;
17
17
  }>, {
18
18
  confirmedText: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -11,17 +11,17 @@ type __VLS_ModelProps = {
11
11
  };
12
12
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
13
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ close: () => any;
14
15
  "update:modelValue": (value: boolean) => any;
15
16
  complete: (data: {
16
17
  secId: string;
17
18
  }) => any;
18
- close: () => any;
19
19
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
+ onClose?: (() => any) | undefined;
20
21
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
21
22
  onComplete?: ((data: {
22
23
  secId: string;
23
24
  }) => any) | undefined;
24
- onClose?: (() => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
27
  disabledForgotPassword: boolean;
@@ -11,17 +11,17 @@ type __VLS_ModelProps = {
11
11
  };
12
12
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
13
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ close: () => any;
14
15
  "update:modelValue": (value: boolean) => any;
15
16
  complete: (data: {
16
17
  secId: string;
17
18
  }) => any;
18
- close: () => any;
19
19
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
+ onClose?: (() => any) | undefined;
20
21
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
21
22
  onComplete?: ((data: {
22
23
  secId: string;
23
24
  }) => any) | undefined;
24
- onClose?: (() => any) | undefined;
25
25
  }>, {
26
26
  title: string;
27
27
  disabledForgotPassword: boolean;
@@ -10,17 +10,17 @@ type __VLS_ModelProps = {
10
10
  };
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ close: () => any;
13
14
  "update:modelValue": (value: boolean) => any;
14
15
  complete: (data: {
15
16
  secId: string;
16
17
  }) => any;
17
- close: () => any;
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
+ onClose?: (() => any) | undefined;
19
20
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
20
21
  onComplete?: ((data: {
21
22
  secId: string;
22
23
  }) => any) | undefined;
23
- onClose?: (() => any) | undefined;
24
24
  }>, {
25
25
  title: string;
26
26
  confirmText: string;
@@ -10,17 +10,17 @@ type __VLS_ModelProps = {
10
10
  };
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ close: () => any;
13
14
  "update:modelValue": (value: boolean) => any;
14
15
  complete: (data: {
15
16
  secId: string;
16
17
  }) => any;
17
- close: () => any;
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
+ onClose?: (() => any) | undefined;
19
20
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
20
21
  onComplete?: ((data: {
21
22
  secId: string;
22
23
  }) => any) | undefined;
23
- onClose?: (() => any) | undefined;
24
24
  }>, {
25
25
  title: string;
26
26
  confirmText: string;
@@ -14,17 +14,17 @@ type __VLS_ModelProps = {
14
14
  };
15
15
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
16
16
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ close: () => any;
17
18
  "update:modelValue": (value: boolean) => any;
18
19
  complete: (data: {
19
20
  secId: string;
20
21
  }) => any;
21
- close: () => any;
22
22
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
23
+ onClose?: (() => any) | undefined;
23
24
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
24
25
  onComplete?: ((data: {
25
26
  secId: string;
26
27
  }) => any) | undefined;
27
- onClose?: (() => any) | undefined;
28
28
  }>, {
29
29
  title: string;
30
30
  mode: "login" | "secure";
@@ -14,17 +14,17 @@ type __VLS_ModelProps = {
14
14
  };
15
15
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
16
16
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ close: () => any;
17
18
  "update:modelValue": (value: boolean) => any;
18
19
  complete: (data: {
19
20
  secId: string;
20
21
  }) => any;
21
- close: () => any;
22
22
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
23
+ onClose?: (() => any) | undefined;
23
24
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
24
25
  onComplete?: ((data: {
25
26
  secId: string;
26
27
  }) => any) | undefined;
27
- onClose?: (() => any) | undefined;
28
28
  }>, {
29
29
  title: string;
30
30
  mode: "login" | "secure";
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ onClose?: (() => any) | undefined;
13
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
15
  onComplete?: ((value: string) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  phone: string;
@@ -7,12 +7,12 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (value: boolean) => any;
9
9
  } & {
10
- complete: (value: string) => any;
11
10
  close: () => any;
11
+ complete: (value: string) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ onClose?: (() => any) | undefined;
13
14
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
14
15
  onComplete?: ((value: string) => any) | undefined;
15
- onClose?: (() => any) | undefined;
16
16
  }>, {
17
17
  confirmedText: string;
18
18
  phone: string;
@@ -37,8 +37,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
37
37
  close: () => any;
38
38
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
39
39
  onSubmit?: (() => any) | undefined;
40
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
41
40
  onClose?: (() => any) | undefined;
41
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
42
42
  }>, {
43
43
  loading: boolean;
44
44
  disabledCloseBtn: boolean;
@@ -37,8 +37,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
37
37
  close: () => any;
38
38
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
39
39
  onSubmit?: (() => any) | undefined;
40
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
41
40
  onClose?: (() => any) | undefined;
41
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
42
42
  }>, {
43
43
  loading: boolean;
44
44
  disabledCloseBtn: boolean;
@@ -59,7 +59,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
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" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
62
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
63
63
  'aria-describedby'?: string | undefined | undefined;
64
64
  'aria-details'?: string | undefined | undefined;
65
65
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -253,7 +253,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
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" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
256
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
257
257
  'aria-describedby'?: string | undefined | undefined;
258
258
  'aria-details'?: string | undefined | undefined;
259
259
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -59,7 +59,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
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" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
62
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
63
63
  'aria-describedby'?: string | undefined | undefined;
64
64
  'aria-details'?: string | undefined | undefined;
65
65
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -253,7 +253,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
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" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
256
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
257
257
  'aria-describedby'?: string | undefined | undefined;
258
258
  'aria-details'?: string | undefined | undefined;
259
259
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -61,7 +61,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
61
61
  'aria-colindex'?: (string | number) | undefined;
62
62
  'aria-colspan'?: (string | number) | undefined;
63
63
  'aria-controls'?: string | undefined | undefined;
64
- 'aria-current'?: "time" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
64
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
65
65
  'aria-describedby'?: string | undefined | undefined;
66
66
  'aria-details'?: string | undefined | undefined;
67
67
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -257,7 +257,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
257
257
  'aria-colindex'?: (string | number) | undefined;
258
258
  'aria-colspan'?: (string | number) | undefined;
259
259
  'aria-controls'?: string | undefined | undefined;
260
- 'aria-current'?: "time" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
260
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
261
261
  'aria-describedby'?: string | undefined | undefined;
262
262
  'aria-details'?: string | undefined | undefined;
263
263
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -61,7 +61,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
61
61
  'aria-colindex'?: (string | number) | undefined;
62
62
  'aria-colspan'?: (string | number) | undefined;
63
63
  'aria-controls'?: string | undefined | undefined;
64
- 'aria-current'?: "time" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
64
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
65
65
  'aria-describedby'?: string | undefined | undefined;
66
66
  'aria-details'?: string | undefined | undefined;
67
67
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
@@ -257,7 +257,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
257
257
  'aria-colindex'?: (string | number) | undefined;
258
258
  'aria-colspan'?: (string | number) | undefined;
259
259
  'aria-controls'?: string | undefined | undefined;
260
- 'aria-current'?: "time" | "date" | (boolean | "true" | "false") | "page" | "step" | "location" | undefined;
260
+ 'aria-current'?: "time" | "date" | "page" | (boolean | "true" | "false") | "step" | "location" | undefined;
261
261
  'aria-describedby'?: string | undefined | undefined;
262
262
  'aria-details'?: string | undefined | undefined;
263
263
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.203.0",
3
+ "version": "1.204.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",