pukaad-ui-lib 1.203.0 → 1.205.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 (41) 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 +148 -26
  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/image/image-cropper.d.vue.ts +2 -2
  12. package/dist/runtime/components/image/image-cropper.vue.d.ts +2 -2
  13. package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
  14. package/dist/runtime/components/input/input-autocomplete.vue.d.ts +1 -1
  15. package/dist/runtime/components/input/input-combobox.d.vue.ts +1 -1
  16. package/dist/runtime/components/input/input-combobox.vue.d.ts +1 -1
  17. package/dist/runtime/components/input/input-text-field.d.vue.ts +1 -1
  18. package/dist/runtime/components/input/input-text-field.vue.d.ts +1 -1
  19. package/dist/runtime/components/input/input-textarea.d.vue.ts +1 -1
  20. package/dist/runtime/components/input/input-textarea.vue.d.ts +1 -1
  21. package/dist/runtime/components/modal/modal-account-disabled-alert.d.vue.ts +2 -2
  22. package/dist/runtime/components/modal/modal-account-disabled-alert.vue.d.ts +2 -2
  23. package/dist/runtime/components/modal/modal-account-disabled-confirmed.d.vue.ts +2 -2
  24. package/dist/runtime/components/modal/modal-account-disabled-confirmed.vue.d.ts +2 -2
  25. package/dist/runtime/components/modal/modal-account-disabled-reason.d.vue.ts +2 -2
  26. package/dist/runtime/components/modal/modal-account-disabled-reason.vue.d.ts +2 -2
  27. package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +2 -2
  28. package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +2 -2
  29. package/dist/runtime/components/modal/modal-password-new.d.vue.ts +2 -2
  30. package/dist/runtime/components/modal/modal-password-new.vue.d.ts +2 -2
  31. package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +2 -2
  32. package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +2 -2
  33. package/dist/runtime/components/modal/modal-phone-OTP.d.vue.ts +2 -2
  34. package/dist/runtime/components/modal/modal-phone-OTP.vue.d.ts +2 -2
  35. package/dist/runtime/components/modal/modal.d.vue.ts +1 -1
  36. package/dist/runtime/components/modal/modal.vue.d.ts +1 -1
  37. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +2 -2
  38. package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +2 -2
  39. package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +2 -2
  40. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +2 -2
  41. 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.205.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,8 +1,12 @@
1
1
  <template>
2
2
  <div class="flex flex-col gap-[16px] w-full">
3
- <div class="font-title-medium-prominent">
4
- ความคิดเห็น {{ $convert.convertNumber(commentCount) }}
3
+ <div class="flex gap-[8px] items-center">
4
+ <div class="font-title-medium-prominent">ความคิดเห็น</div>
5
+ <div class="font-title-medium text-gray">
6
+ {{ $convert.convertNumber(resolvedCommentCount) }}
7
+ </div>
5
8
  </div>
9
+
6
10
  <div class="flex flex-col gap-[16px]">
7
11
  <div class="flex gap-[8px] w-full">
8
12
  <Avatar :size="30" :src="currentUser.avatar" />
@@ -10,7 +14,7 @@
10
14
  ref="mainInputRef"
11
15
  contenteditable="true"
12
16
  class="w-full min-h-[36px] px-[12px] py-[5px] rounded-md border border-mercury font-body-large focus:outline-none focus:ring-2 focus:ring-primary break-words bg-white empty:before:content-[attr(data-placeholder)] empty:before:text-gray"
13
- data-placeholder="แสดงความคิดเห็น"
17
+ data-placeholder="เพิ่มความคิดเห็น"
14
18
  @focus="isShowMainActions = true"
15
19
  @input="onMainCommentInput"
16
20
  @keydown.enter.exact.prevent="onSendComment"
@@ -32,7 +36,7 @@
32
36
  </div>
33
37
  </div>
34
38
  <div
35
- v-for="cmt in comments"
39
+ v-for="cmt in resolvedComments"
36
40
  :key="cmt.id"
37
41
  class="flex flex-col gap-[16px] w-full"
38
42
  >
@@ -49,7 +53,7 @@
49
53
  @click="onViewProfileComment(cmt.user.id)"
50
54
  />
51
55
  <template v-if="editingId === cmt.id">
52
- <div class="flex-1 flex flex-col gap-[8px]">
56
+ <div class="flex-1 flex flex-col gap-[4px]">
53
57
  <div
54
58
  :ref="(el) => setEditInputRef(el, cmt.id)"
55
59
  contenteditable="true"
@@ -95,15 +99,17 @@
95
99
  v-if="
96
100
  isContentExpanded(`comment-${cmt.id}`) || !isContentOverflowing(`comment-${cmt.id}`)
97
101
  "
98
- >{{ normalizeContent(cmt.content) }}</template
99
102
  >
100
- <template v-else
101
- >{{ getTruncatedText(`comment-${cmt.id}`) }}...<span
103
+ {{ normalizeContent(cmt.content) }}
104
+ </template>
105
+ <template v-else>
106
+ {{ getTruncatedText(`comment-${cmt.id}`) }}...<span
102
107
  class="text-primary cursor-pointer"
103
108
  @click="toggleContentExpand(`comment-${cmt.id}`)"
104
- >ดูเพิ่มเติม</span
105
- ></template
106
- >
109
+ >
110
+ ดูเพิ่มเติม
111
+ </span>
112
+ </template>
107
113
  </div>
108
114
  </div>
109
115
  <div
@@ -126,7 +132,7 @@
126
132
  </template>
127
133
  </div>
128
134
  <div class="pl-[38px] flex gap-[16px] text-gray">
129
- <div class="font-body-medium">
135
+ <div class="font-body-large">
130
136
  {{ convertDateTorelativeText(cmt.created_at) }}
131
137
  </div>
132
138
  <div
@@ -138,13 +144,17 @@
138
144
  cmt.is_liked ? 'pukaad:thumbs-up-solid' : 'pukaad:thumbs-up-regular'
139
145
  "
140
146
  :class="[cmt.is_liked && 'text-primary']"
147
+ size="20"
141
148
  />
142
- <div v-if="cmt.like_count > 0" :class="[cmt.is_liked && 'text-primary']">
149
+ <div
150
+ v-if="cmt.like_count > 0"
151
+ :class="[cmt.is_liked && 'text-primary']"
152
+ >
143
153
  {{ $convert.convertNumber(cmt.like_count) }}
144
154
  </div>
145
155
  </div>
146
156
  <div
147
- class="font-body-medium cursor-pointer hover:underline"
157
+ class="font-body-large cursor-pointer"
148
158
  @click="onReplyComment(cmt.id, cmt.user)"
149
159
  >
150
160
  ตอบกลับ
@@ -159,7 +169,7 @@
159
169
  class="justify-start text-primary h-auto gap-[4px] w-fit"
160
170
  @click="onToggleReplyComment(cmt.id)"
161
171
  >
162
- <div class="font-body-large-prominent">
172
+ <div class="font-body-large">
163
173
  การตอบกลับ
164
174
  {{ $convert.convertNumber(getHiddenCount(cmt)) }}
165
175
  รายการ
@@ -207,7 +217,9 @@
207
217
  </div>
208
218
  <div
209
219
  v-if="cmt.reply.length > 0"
210
- v-show="openedComments.includes(cmt.id) || cmt.reply.some((r) => pinnedReplyIds.has(r.id))"
220
+ v-show="
221
+ openedComments.includes(cmt.id) || cmt.reply.some((r) => pinnedReplyIds.has(r.id))
222
+ "
211
223
  class="pl-[38px] flex flex-col gap-[16px]"
212
224
  >
213
225
  <div
@@ -229,7 +241,7 @@
229
241
  @click="onViewProfileComment(reply.user.id)"
230
242
  />
231
243
  <template v-if="editingId === reply.id">
232
- <div class="flex-1 flex flex-col gap-[8px]">
244
+ <div class="flex-1 flex flex-col gap-[4px]">
233
245
  <div
234
246
  :ref="(el) => setEditInputRef(el, reply.id)"
235
247
  contenteditable="true"
@@ -315,13 +327,15 @@
315
327
  icon-size="20"
316
328
  :items="getReplyMenuItems(reply)"
317
329
  :open="openMenuId === reply.id"
318
- @update:open="(v) => openMenuId = v ? reply.id : null"
330
+ @update:open="
331
+ (v) => openMenuId = v ? reply.id : null
332
+ "
319
333
  />
320
334
  </div>
321
335
  </template>
322
336
  </div>
323
337
  <div class="pl-[38px] flex gap-[16px] text-gray">
324
- <div class="font-body-medium">
338
+ <div class="font-body-large">
325
339
  {{ convertDateTorelativeText(reply.created_at) }}
326
340
  </div>
327
341
  <div
@@ -333,13 +347,17 @@
333
347
  reply.is_liked ? 'pukaad:thumbs-up-solid' : 'pukaad:thumbs-up-regular'
334
348
  "
335
349
  :class="[reply.is_liked && 'text-primary']"
350
+ size="20"
336
351
  />
337
- <div v-if="reply.like_count > 0" :class="[reply.is_liked && 'text-primary']">
352
+ <div
353
+ v-if="reply.like_count > 0"
354
+ :class="[reply.is_liked && 'text-primary']"
355
+ >
338
356
  {{ $convert.convertNumber(reply.like_count) }}
339
357
  </div>
340
358
  </div>
341
359
  <div
342
- class="font-body-medium cursor-pointer hover:underline"
360
+ class="font-body-large cursor-pointer"
343
361
  @click="onReplyComment(reply.id, reply.user)"
344
362
  >
345
363
  ตอบกลับ
@@ -385,19 +403,49 @@
385
403
  </div>
386
404
  </div>
387
405
  </div>
406
+ <!-- Loading indicator for pagination -->
407
+ <div
408
+ v-if="fetchFn && paginationState.loading"
409
+ class="flex justify-center py-4"
410
+ >
411
+ <Icon name="lucide:loader-2" class="animate-spin h-5 w-5 text-primary" />
412
+ </div>
388
413
  </div>
389
414
  </template>
390
415
 
391
416
  <script setup>
392
- import { ref, nextTick, watch } from "vue";
417
+ import {
418
+ ref,
419
+ nextTick,
420
+ watch,
421
+ reactive,
422
+ computed,
423
+ onMounted,
424
+ onUnmounted
425
+ } from "vue";
393
426
  import { useRouter } from "vue-router";
394
427
  import { useConvert } from "@/runtime/composables/useConvert";
395
428
  const props = defineProps({
396
- comments: { type: Array, required: true },
397
- commentCount: { type: Number, required: true },
398
- currentUser: { type: Object, required: true }
429
+ comments: { type: Array, required: false, default: () => [] },
430
+ commentCount: { type: Number, required: false, default: 0 },
431
+ currentUser: { type: Object, required: true },
432
+ fetchFn: { type: Function, required: false },
433
+ pageSize: { type: Number, required: false, default: 20 }
399
434
  });
400
435
  const emit = defineEmits(["submit", "reply", "like-comment", "like-reply", "edit-comment", "edit-reply", "delete-comment", "delete-reply", "report-comment", "report-reply"]);
436
+ const internalComments = ref([]);
437
+ const internalCommentCount = ref(0);
438
+ const paginationState = reactive({
439
+ page: 1,
440
+ totalPages: 1,
441
+ loading: false
442
+ });
443
+ const resolvedComments = computed(
444
+ () => props.fetchFn ? internalComments.value : props.comments
445
+ );
446
+ const resolvedCommentCount = computed(
447
+ () => props.fetchFn ? internalCommentCount.value : props.commentCount ?? 0
448
+ );
401
449
  const router = useRouter();
402
450
  const { convertDateTorelativeText } = useConvert();
403
451
  const openedComments = ref([]);
@@ -413,7 +461,7 @@ const replyTextMap = ref({});
413
461
  const pinnedReplyIds = ref(/* @__PURE__ */ new Set());
414
462
  let knownReplyIds = null;
415
463
  watch(
416
- () => props.comments.flatMap((c) => c.reply.map((r) => r.id)),
464
+ () => resolvedComments.value.flatMap((c) => c.reply.map((r) => r.id)),
417
465
  (allIds) => {
418
466
  if (knownReplyIds === null) {
419
467
  if (allIds.length === 0) return;
@@ -728,4 +776,78 @@ const getReplyMenuItems = (reply) => isSelfUser(reply.user) ? [
728
776
  action: () => emit("report-reply", reply)
729
777
  }
730
778
  ];
779
+ const fetchData = async (isLoadMore = false) => {
780
+ if (!props.fetchFn) return;
781
+ if (paginationState.loading) return;
782
+ if (isLoadMore && paginationState.page > paginationState.totalPages) return;
783
+ paginationState.loading = true;
784
+ try {
785
+ const res = await props.fetchFn(paginationState.page, props.pageSize);
786
+ if (res?.data) {
787
+ if (isLoadMore) {
788
+ internalComments.value.push(...res.data);
789
+ } else {
790
+ internalComments.value = res.data;
791
+ }
792
+ internalCommentCount.value = res.totalComments;
793
+ paginationState.totalPages = res.meta.total_pages;
794
+ }
795
+ } catch (e) {
796
+ console.error("Comment: Failed to fetch:", e);
797
+ } finally {
798
+ paginationState.loading = false;
799
+ }
800
+ };
801
+ const onScroll = () => {
802
+ if (!props.fetchFn) return;
803
+ const isBottom = document.documentElement.scrollHeight - window.scrollY <= window.innerHeight + 150;
804
+ if (isBottom && !paginationState.loading && paginationState.page < paginationState.totalPages) {
805
+ paginationState.page++;
806
+ fetchData(true);
807
+ }
808
+ };
809
+ onMounted(() => {
810
+ if (props.fetchFn) {
811
+ fetchData();
812
+ window.addEventListener("scroll", onScroll);
813
+ }
814
+ });
815
+ onUnmounted(() => {
816
+ if (props.fetchFn) {
817
+ window.removeEventListener("scroll", onScroll);
818
+ }
819
+ });
820
+ const addComment = (comment) => {
821
+ internalComments.value.unshift(comment);
822
+ internalCommentCount.value++;
823
+ };
824
+ const addReply = (commentId, reply) => {
825
+ const parent = internalComments.value.find((c) => c.id === commentId);
826
+ if (parent) {
827
+ if (!parent.reply) parent.reply = [];
828
+ parent.reply.push(reply);
829
+ parent.reply_count = (parent.reply_count || 0) + 1;
830
+ internalCommentCount.value++;
831
+ }
832
+ };
833
+ const removeComment = (commentId) => {
834
+ const idx = internalComments.value.findIndex((c) => c.id === commentId);
835
+ if (idx === -1) return;
836
+ const [removed] = internalComments.value.splice(idx, 1);
837
+ if (removed) {
838
+ internalCommentCount.value -= 1 + (removed.reply_count || 0);
839
+ }
840
+ };
841
+ const removeReply = (replyId) => {
842
+ const parent = internalComments.value.find(
843
+ (c) => c.reply.some((r) => r.id === replyId)
844
+ );
845
+ if (!parent) return;
846
+ const idx = parent.reply.findIndex((r) => r.id === replyId);
847
+ if (idx === -1) return;
848
+ parent.reply.splice(idx, 1);
849
+ parent.reply_count--;
850
+ internalCommentCount.value--;
851
+ };
852
+ defineExpose({ addComment, addReply, removeComment, removeReply });
731
853
  </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;
@@ -64,15 +64,15 @@ declare const __VLS_export: import("vue").DefineComponent<ImageCropperProps, {
64
64
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ImageCropperProps> & Readonly<{}>, {
65
65
  src: string;
66
66
  center: boolean;
67
- background: boolean;
68
- modal: boolean;
69
67
  responsive: boolean;
70
68
  restore: boolean;
71
69
  checkCrossOrigin: boolean;
72
70
  checkOrientation: boolean;
73
71
  crossorigin: "" | "anonymous" | "use-credentials";
72
+ modal: boolean;
74
73
  guides: boolean;
75
74
  highlight: boolean;
75
+ background: boolean;
76
76
  autoCrop: boolean;
77
77
  movable: boolean;
78
78
  rotatable: boolean;
@@ -64,15 +64,15 @@ declare const __VLS_export: import("vue").DefineComponent<ImageCropperProps, {
64
64
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ImageCropperProps> & Readonly<{}>, {
65
65
  src: string;
66
66
  center: boolean;
67
- background: boolean;
68
- modal: boolean;
69
67
  responsive: boolean;
70
68
  restore: boolean;
71
69
  checkCrossOrigin: boolean;
72
70
  checkOrientation: boolean;
73
71
  crossorigin: "" | "anonymous" | "use-credentials";
72
+ modal: boolean;
74
73
  guides: boolean;
75
74
  highlight: boolean;
75
+ background: boolean;
76
76
  autoCrop: boolean;
77
77
  movable: boolean;
78
78
  rotatable: boolean;
@@ -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.205.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",