@phonghq/go-chat 1.0.43 → 1.0.44

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 (106) hide show
  1. package/dist/assets/icons/IconPlan.vue.d.ts +13 -1
  2. package/dist/assets/icons/call/IconPhoneCancel.vue.d.ts +13 -1
  3. package/dist/assets/icons/customer-detail/IconPhone.vue.d.ts +13 -1
  4. package/dist/chat/App.vue.d.ts +13 -2
  5. package/dist/chat/page/home/ChatList.vue.d.ts +2 -0
  6. package/dist/chat/page/home/ChatMessageItem.vue.d.ts +1 -0
  7. package/dist/chat/page/home/ChatMessageItem2.vue.d.ts +19 -0
  8. package/dist/chat/page/home/Home.vue.d.ts +2 -0
  9. package/dist/chat/page/home/InputChat.vue.d.ts +2 -0
  10. package/dist/components/chat/call/Calling.vue.d.ts +4 -2
  11. package/dist/components/chat/common/tabs/TabBase.vue.d.ts +18 -0
  12. package/dist/components/common/drawer/DrawerBaseCustom.vue.d.ts +1 -1
  13. package/dist/components/ui/select/Select.vue.d.ts +20 -0
  14. package/dist/components/ui/select/SelectContent.vue.d.ts +24 -0
  15. package/dist/components/ui/select/SelectGroup.vue.d.ts +10 -0
  16. package/dist/components/ui/select/SelectItem.vue.d.ts +18 -0
  17. package/dist/components/ui/select/SelectItemText.vue.d.ts +10 -0
  18. package/dist/components/ui/select/SelectLabel.vue.d.ts +14 -0
  19. package/dist/components/ui/select/SelectScrollDownButton.vue.d.ts +14 -0
  20. package/dist/components/ui/select/SelectScrollUpButton.vue.d.ts +14 -0
  21. package/dist/components/ui/select/SelectSeparator.vue.d.ts +7 -0
  22. package/dist/components/ui/select/SelectTrigger.vue.d.ts +17 -0
  23. package/dist/components/ui/select/SelectValue.vue.d.ts +10 -0
  24. package/dist/components/ui/select/index.d.ts +11 -0
  25. package/dist/components/ui/tabs/Tabs.vue.d.ts +20 -0
  26. package/dist/components/ui/tabs/TabsContent.vue.d.ts +14 -0
  27. package/dist/components/ui/tabs/TabsList.vue.d.ts +14 -0
  28. package/dist/components/ui/tabs/TabsTrigger.vue.d.ts +14 -0
  29. package/dist/components/ui/tabs/index.d.ts +4 -0
  30. package/dist/composable/useInitData.d.ts +1 -1
  31. package/dist/composable/useListConversations.d.ts +1 -1
  32. package/dist/composable/useListentEvent.d.ts +5 -0
  33. package/dist/composable/usePlivo.d.ts +1 -0
  34. package/dist/constant/color.d.ts +2 -2
  35. package/dist/go-chat.es.js +14752 -14211
  36. package/dist/go-chat.umd.js +15 -15
  37. package/dist/style.css +1 -1
  38. package/dist/test/assets/icons/IconPlan.vue.js +23 -3
  39. package/dist/test/assets/icons/call/IconPhone.vue.js +6 -19
  40. package/dist/test/assets/icons/call/IconPhoneCancel.vue.js +32 -21
  41. package/dist/test/assets/icons/customer-detail/IconPhone.vue.js +23 -3
  42. package/dist/test/chat/App.vue.js +222 -299
  43. package/dist/test/chat/page/customer-check-in/CustomerCheckIn.vue.js +3 -1
  44. package/dist/test/chat/page/customer-detail/CustomerDetail.vue.js +2 -2
  45. package/dist/test/chat/page/home/ChatList.vue.js +64 -34
  46. package/dist/test/chat/page/home/ChatMessage.vue.js +10 -1
  47. package/dist/test/chat/page/home/ChatMessageItem.vue.js +63 -80
  48. package/dist/test/chat/page/home/ChatMessageItem2.vue.js +351 -0
  49. package/dist/test/chat/page/home/Home.vue.js +15 -7
  50. package/dist/test/chat/page/home/HomeHeader.vue.js +8 -4
  51. package/dist/test/chat/page/home/InputChat.vue.js +58 -37
  52. package/dist/test/components/chat/call/Calling.vue.js +111 -67
  53. package/dist/test/components/chat/common/tab/TabBase.vue.js +1 -0
  54. package/dist/test/components/chat/common/tabs/TabBase.vue.js +92 -0
  55. package/dist/test/components/chat/layout/mobile/Footer.vue.js +6 -1
  56. package/dist/test/components/common/drawer/DrawerBaseCustom.vue.js +1 -0
  57. package/dist/test/components/common/select/SelectBase.vue.js +139 -0
  58. package/dist/test/components/ui/select/Select.vue.js +49 -0
  59. package/dist/test/components/ui/select/SelectContent.vue.js +98 -0
  60. package/dist/test/components/ui/select/SelectGroup.vue.js +37 -0
  61. package/dist/test/components/ui/select/SelectItem.vue.js +86 -0
  62. package/dist/test/components/ui/select/SelectItemText.vue.js +37 -0
  63. package/dist/test/components/ui/select/SelectLabel.vue.js +40 -0
  64. package/dist/test/components/ui/select/SelectScrollDownButton.vue.js +58 -0
  65. package/dist/test/components/ui/select/SelectScrollUpButton.vue.js +58 -0
  66. package/dist/test/components/ui/select/SelectSeparator.vue.js +39 -0
  67. package/dist/test/components/ui/select/SelectTrigger.vue.js +76 -0
  68. package/dist/test/components/ui/select/SelectValue.vue.js +37 -0
  69. package/dist/test/components/ui/select/index.js +11 -0
  70. package/dist/test/components/ui/tabs/Tabs.vue.js +54 -0
  71. package/dist/test/components/ui/tabs/TabsContent.vue.js +44 -0
  72. package/dist/test/components/ui/tabs/TabsList.vue.js +44 -0
  73. package/dist/test/components/ui/tabs/TabsTrigger.vue.js +45 -0
  74. package/dist/test/components/ui/tabs/index.js +4 -0
  75. package/dist/test/composable/useInitData.js +5 -5
  76. package/dist/test/composable/useListConversations.js +32 -29
  77. package/dist/test/composable/useListentEvent.js +45 -0
  78. package/dist/test/composable/usePlivo.js +6 -1
  79. package/dist/test/constant/color.js +4 -2
  80. package/dist/test/plugins/axios-gci.js +1 -1
  81. package/dist/test/utils/chat/auth.js +1 -1
  82. package/dist/test/utils/chat/call.js +2 -3
  83. package/dist/test/utils/chat/conversation.js +2 -2
  84. package/dist/test/utils/chat/page-error.js +25 -0
  85. package/dist/test/utils/chat/user.js +7 -2
  86. package/dist/test/utils/string-helper.js +13 -0
  87. package/dist/types/chat/global.d.ts +6 -5
  88. package/dist/types/conversation.d.ts +1 -0
  89. package/dist/utils/chat/auth.d.ts +1 -1
  90. package/dist/utils/chat/conversation.d.ts +1 -0
  91. package/dist/utils/chat/page-error.d.ts +4 -0
  92. package/dist/utils/chat/user.d.ts +3 -0
  93. package/dist/utils/string-helper.d.ts +1 -0
  94. package/package.json +3 -2
  95. package/dist/components/layout/Blank.vue.d.ts +0 -9
  96. package/dist/components/layout/Default.vue.d.ts +0 -9
  97. package/dist/components/modal/Confirm.vue.d.ts +0 -2
  98. package/dist/composable/useError.d.ts +0 -4
  99. package/dist/composable/useModalConfirm.d.ts +0 -5
  100. package/dist/test/components/ListenEvent.vue.js +0 -45
  101. package/dist/test/components/layout/Blank.vue.js +0 -19
  102. package/dist/test/components/layout/Default.vue.js +0 -21
  103. package/dist/test/components/modal/Confirm.vue.js +0 -164
  104. package/dist/test/composable/useError.js +0 -10
  105. package/dist/test/composable/useModalConfirm.js +0 -39
  106. /package/dist/components/{ListenEvent.vue.d.ts → common/select/SelectBase.vue.d.ts} +0 -0
@@ -1,3 +1,4 @@
1
+ /// <reference types="C:/phonghq/go-chat-v2/node_modules/.vue-global-types/vue_3.5_0.d.ts" />
1
2
  import { computed, onMounted, onUnmounted, ref } from 'vue';
2
3
  import IconPhone from '../../../assets/icons/call/IconPhone.vue';
3
4
  import { dataProfile } from '../../../utils/chat/auth.js';
@@ -12,10 +13,12 @@ import IconClose from '../../../assets/icons/call/IconClose.vue';
12
13
  import { usePlivo } from '../../../composable/usePlivo';
13
14
  import { PLIVO_CALL_STATUS } from '../../../types/chat/call';
14
15
  import IconMic from '../../../assets/icons/call/IconMic.vue';
15
- import { useError } from '../../../composable/useError';
16
16
  import { useDebounce } from '../../../utils/debounce';
17
17
  import { phoneNumberFormat } from '../../../utils/string-helper';
18
- const props = withDefaults(defineProps(), {});
18
+ import { handleMedialPermissionError, showPageError } from '../../../utils/chat/page-error';
19
+ const props = withDefaults(defineProps(), {
20
+ responsive: 'window'
21
+ });
19
22
  const emit = defineEmits();
20
23
  // const {
21
24
  // // call,
@@ -48,11 +51,11 @@ const handlePlivoCallBack = (status, data) => {
48
51
  startTimer();
49
52
  }
50
53
  else if (status == PLIVO_CALL_STATUS.MEDIA_PERMISSION_FAIL) {
51
- emit('error:mediaPermissionFail');
54
+ handleMedialPermissionError();
52
55
  }
53
56
  };
54
- const { plivoLogin, plivoCallAnswer, plivoCall, plivoEndCall, plivoCallSwishMute } = usePlivo(handlePlivoCallBack);
55
- const { showError } = useError();
57
+ const { plivoLogin, plivoCallAnswer, plivoCall, plivoEndCall, plivoCallSwishMute, plivoCallSwishSpeaker } = usePlivo(handlePlivoCallBack);
58
+ // const { showError } = useError()
56
59
  const STATUS_LABEL = computed(() => {
57
60
  return {
58
61
  [PLIVO_CALL_STATUS.CONNECTING]: 'Connecting...',
@@ -93,7 +96,7 @@ onMounted(async () => {
93
96
  }
94
97
  }
95
98
  catch {
96
- showError('We’re having trouble connecting the call. Please try again in a moment');
99
+ showPageError('We’re having trouble connecting the call. Please try again in a moment');
97
100
  }
98
101
  });
99
102
  onUnmounted(() => {
@@ -157,7 +160,7 @@ const refreshToken = async () => {
157
160
  setTimeout(() => refreshToken(), 60 * 1000);
158
161
  }
159
162
  else {
160
- showError('We’re having trouble connecting the call. Please try again in a moment');
163
+ showPageError('We’re having trouble connecting the call. Please try again in a moment');
161
164
  }
162
165
  console.log(e);
163
166
  }
@@ -167,9 +170,14 @@ const open = () => {
167
170
  disable.value = true;
168
171
  drawerVisibleRef.value?.open();
169
172
  };
170
- const handleMute = () => {
171
- plivoCallSwishMute(!isMute.value);
172
- isMute.value = !isMute.value;
173
+ const handleMute = async () => {
174
+ try {
175
+ plivoCallSwishMute(!isMute.value);
176
+ isMute.value = !isMute.value;
177
+ }
178
+ catch (e) {
179
+ alert(e);
180
+ }
173
181
  };
174
182
  const startCall = async (data) => {
175
183
  try {
@@ -274,7 +282,9 @@ const handleAfterClose = () => {
274
282
  let __VLS_exposed;
275
283
  defineExpose({ startCall, endCall, userRemoter, callStatus, answer, label });
276
284
  debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
277
- const __VLS_defaults = {};
285
+ const __VLS_defaults = {
286
+ responsive: 'window'
287
+ };
278
288
  const __VLS_ctx = {
279
289
  ...{},
280
290
  ...{},
@@ -285,6 +295,11 @@ const __VLS_ctx = {
285
295
  let __VLS_elements;
286
296
  let __VLS_components;
287
297
  let __VLS_directives;
298
+ /** @type {__VLS_StyleScopedClasses['call-avatar']} */ ;
299
+ /** @type {__VLS_StyleScopedClasses['call-avatar']} */ ;
300
+ /** @type {__VLS_StyleScopedClasses['call-avatar']} */ ;
301
+ /** @type {__VLS_StyleScopedClasses['call-avatar']} */ ;
302
+ /** @type {__VLS_StyleScopedClasses['call-avatar']} */ ;
288
303
  /** @type {[typeof DrawerBaseCustom, typeof DrawerBaseCustom, ]} */ ;
289
304
  // @ts-ignore
290
305
  const __VLS_0 = __VLS_asFunctionalComponent(DrawerBaseCustom, new DrawerBaseCustom({
@@ -315,15 +330,19 @@ const { default: __VLS_8 } = __VLS_2.slots;
315
330
  {
316
331
  const { content: __VLS_9 } = __VLS_2.slots;
317
332
  __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
318
- ...{ class: "flex flex-col items-center justify-center h-full bg-chat-haze-300 text-white relative" },
333
+ ...{ class: "flex flex-col items-center justify-center h-full relative bg-white" },
334
+ ...{ style: {} },
335
+ });
336
+ __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
337
+ ...{ class: "h-40 w-40 call-avatar mb-8" },
319
338
  });
320
339
  __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
321
- ...{ class: "h-40 w-40 rounded-full overflow-hidden mb-4 border-4 border-gray-700 flex-center" },
340
+ ...{ class: "h-40 w-40 rounded-full overflow-hidden mb-4 border-4 border-white flex-center" },
322
341
  });
323
342
  /** @type {[typeof Avatar, ]} */ ;
324
343
  // @ts-ignore
325
344
  const __VLS_10 = __VLS_asFunctionalComponent(Avatar, new Avatar({
326
- ...{ class: "" },
345
+ ...{ class: "bg-white z-[2]" },
327
346
  src: (__VLS_ctx.userRemoter?.avatar ?? ''),
328
347
  id: (__VLS_ctx.userRemoter?.id ?? ''),
329
348
  color: (__VLS_ctx.userRemoter?.color),
@@ -331,7 +350,7 @@ const { default: __VLS_8 } = __VLS_2.slots;
331
350
  size: "xxl",
332
351
  }));
333
352
  const __VLS_11 = __VLS_10({
334
- ...{ class: "" },
353
+ ...{ class: "bg-white z-[2]" },
335
354
  src: (__VLS_ctx.userRemoter?.avatar ?? ''),
336
355
  id: (__VLS_ctx.userRemoter?.id ?? ''),
337
356
  color: (__VLS_ctx.userRemoter?.color),
@@ -340,6 +359,19 @@ const { default: __VLS_8 } = __VLS_2.slots;
340
359
  }, ...__VLS_functionalComponentArgsRest(__VLS_10));
341
360
  // @ts-ignore
342
361
  [userRemoter, userRemoter, userRemoter, userRemoter,];
362
+ if (__VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.RINGING || __VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.CALLING) {
363
+ // @ts-ignore
364
+ [callStatus, callStatus, PLIVO_CALL_STATUS, PLIVO_CALL_STATUS,];
365
+ __VLS_asFunctionalElement(__VLS_elements.span, __VLS_elements.span)({
366
+ ...{ class: "bubble bubble-1" },
367
+ });
368
+ __VLS_asFunctionalElement(__VLS_elements.span, __VLS_elements.span)({
369
+ ...{ class: "bubble bubble-2" },
370
+ });
371
+ __VLS_asFunctionalElement(__VLS_elements.span, __VLS_elements.span)({
372
+ ...{ class: "bubble bubble-3" },
373
+ });
374
+ }
343
375
  __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
344
376
  ...{ class: "text-center" },
345
377
  });
@@ -352,26 +384,12 @@ const { default: __VLS_8 } = __VLS_2.slots;
352
384
  __VLS_asFunctionalElement(__VLS_elements.p, __VLS_elements.p)({
353
385
  ...{ class: "text-gray-400 mt-1" },
354
386
  });
355
- (__VLS_ctx.STATUS_LABEL[__VLS_ctx.callStatus]);
387
+ (__VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.CALL_START ? __VLS_ctx.duration : __VLS_ctx.STATUS_LABEL[__VLS_ctx.callStatus]);
356
388
  // @ts-ignore
357
- [STATUS_LABEL, callStatus,];
389
+ [callStatus, callStatus, PLIVO_CALL_STATUS, duration, STATUS_LABEL,];
358
390
  __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
359
391
  ...{ class: "flex items-center justify-center gap-8 mt-10" },
360
392
  });
361
- if (__VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.RINGING) {
362
- // @ts-ignore
363
- [callStatus, PLIVO_CALL_STATUS,];
364
- __VLS_asFunctionalElement(__VLS_elements.button, __VLS_elements.button)({
365
- ...{ onClick: (__VLS_ctx.answer) },
366
- ...{ class: "w-16 h-16 bg-chat-success hover:bg-green-600 text-white rounded-full flex items-center justify-center shadow-lg transition" },
367
- });
368
- // @ts-ignore
369
- [answer,];
370
- /** @type {[typeof IconPhone, ]} */ ;
371
- // @ts-ignore
372
- const __VLS_14 = __VLS_asFunctionalComponent(IconPhone, new IconPhone({}));
373
- const __VLS_15 = __VLS_14({}, ...__VLS_functionalComponentArgsRest(__VLS_14));
374
- }
375
393
  if (__VLS_ctx.record_link && __VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.CALL_END) {
376
394
  // @ts-ignore
377
395
  [callStatus, PLIVO_CALL_STATUS, record_link,];
@@ -385,8 +403,8 @@ const { default: __VLS_8 } = __VLS_2.slots;
385
403
  [record_link, exportRecordFile,];
386
404
  /** @type {[typeof IconSoundDownload, ]} */ ;
387
405
  // @ts-ignore
388
- const __VLS_18 = __VLS_asFunctionalComponent(IconSoundDownload, new IconSoundDownload({}));
389
- const __VLS_19 = __VLS_18({}, ...__VLS_functionalComponentArgsRest(__VLS_18));
406
+ const __VLS_14 = __VLS_asFunctionalComponent(IconSoundDownload, new IconSoundDownload({}));
407
+ const __VLS_15 = __VLS_14({}, ...__VLS_functionalComponentArgsRest(__VLS_14));
390
408
  }
391
409
  if (__VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.CALL_START) {
392
410
  // @ts-ignore
@@ -399,16 +417,16 @@ const { default: __VLS_8 } = __VLS_2.slots;
399
417
  // @ts-ignore
400
418
  [handleMute,];
401
419
  } },
402
- ...{ class: "w-16 h-16 bg-white hover:bg-green-600 text-black rounded-full flex items-center justify-center shadow-lg transition" },
420
+ ...{ class: "w-16 h-16 shadow-lg bg-white hover:bg-green-600 text-black rounded-full flex items-center justify-center shadow-3xl transition" },
403
421
  });
404
422
  /** @type {[typeof IconMic, ]} */ ;
405
423
  // @ts-ignore
406
- const __VLS_22 = __VLS_asFunctionalComponent(IconMic, new IconMic({
424
+ const __VLS_18 = __VLS_asFunctionalComponent(IconMic, new IconMic({
407
425
  mute: (__VLS_ctx.isMute),
408
426
  }));
409
- const __VLS_23 = __VLS_22({
427
+ const __VLS_19 = __VLS_18({
410
428
  mute: (__VLS_ctx.isMute),
411
- }, ...__VLS_functionalComponentArgsRest(__VLS_22));
429
+ }, ...__VLS_functionalComponentArgsRest(__VLS_18));
412
430
  // @ts-ignore
413
431
  [isMute,];
414
432
  }
@@ -423,12 +441,12 @@ const { default: __VLS_8 } = __VLS_2.slots;
423
441
  // @ts-ignore
424
442
  [endCall,];
425
443
  } },
426
- ...{ class: "w-16 h-16 bg-white hover:bg-green-600 text-white rounded-full flex items-center justify-center shadow-lg transition" },
444
+ ...{ class: "w-16 h-16 bg-white hover:bg-green-600 text-white rounded-full flex items-center justify-center shadow-3xl transition" },
427
445
  });
428
446
  /** @type {[typeof IconClose, ]} */ ;
429
447
  // @ts-ignore
430
- const __VLS_26 = __VLS_asFunctionalComponent(IconClose, new IconClose({}));
431
- const __VLS_27 = __VLS_26({}, ...__VLS_functionalComponentArgsRest(__VLS_26));
448
+ const __VLS_22 = __VLS_asFunctionalComponent(IconClose, new IconClose({}));
449
+ const __VLS_23 = __VLS_22({}, ...__VLS_functionalComponentArgsRest(__VLS_22));
432
450
  }
433
451
  if (__VLS_ctx.callStatus != __VLS_ctx.PLIVO_CALL_STATUS.CALL_END) {
434
452
  // @ts-ignore
@@ -441,38 +459,59 @@ const { default: __VLS_8 } = __VLS_2.slots;
441
459
  // @ts-ignore
442
460
  [endCall,];
443
461
  } },
444
- ...{ class: "w-16 h-16 rounded-full bg-chat-error hover:bg-red-700 flex items-center justify-center" },
462
+ ...{ class: "shadow-3xl w-16 h-16 rounded-full bg-chat-error hover:bg-red-700 flex text-white items-center justify-center" },
445
463
  });
446
464
  /** @type {[typeof IconPhoneCancel, ]} */ ;
447
465
  // @ts-ignore
448
- const __VLS_30 = __VLS_asFunctionalComponent(IconPhoneCancel, new IconPhoneCancel({}));
466
+ const __VLS_26 = __VLS_asFunctionalComponent(IconPhoneCancel, new IconPhoneCancel({}));
467
+ const __VLS_27 = __VLS_26({}, ...__VLS_functionalComponentArgsRest(__VLS_26));
468
+ }
469
+ if (__VLS_ctx.callStatus == __VLS_ctx.PLIVO_CALL_STATUS.RINGING) {
470
+ // @ts-ignore
471
+ [callStatus, PLIVO_CALL_STATUS,];
472
+ __VLS_asFunctionalElement(__VLS_elements.button, __VLS_elements.button)({
473
+ ...{ onClick: (__VLS_ctx.answer) },
474
+ ...{ class: "shadow-3xl w-16 h-16 bg-chat-success hover:bg-green-600 rounded-full text-white flex items-center justify-center shadow-lg transition" },
475
+ });
476
+ // @ts-ignore
477
+ [answer,];
478
+ /** @type {[typeof IconPhone, ]} */ ;
479
+ // @ts-ignore
480
+ const __VLS_30 = __VLS_asFunctionalComponent(IconPhone, new IconPhone({}));
449
481
  const __VLS_31 = __VLS_30({}, ...__VLS_functionalComponentArgsRest(__VLS_30));
450
482
  }
451
- __VLS_asFunctionalElement(__VLS_elements.p, __VLS_elements.p)({
452
- ...{ class: "absolute bottom-6 text-gray-500 text-sm" },
483
+ __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
484
+ ...{ class: "flex items-center justify-center gap-8 mt-10" },
453
485
  });
454
- (__VLS_ctx.duration);
455
- // @ts-ignore
456
- [duration,];
457
486
  }
458
487
  var __VLS_2;
459
- /** @type {__VLS_StyleScopedClasses['']} */ ;
460
488
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
461
489
  /** @type {__VLS_StyleScopedClasses['flex-col']} */ ;
462
490
  /** @type {__VLS_StyleScopedClasses['items-center']} */ ;
463
491
  /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
464
492
  /** @type {__VLS_StyleScopedClasses['h-full']} */ ;
465
- /** @type {__VLS_StyleScopedClasses['bg-chat-haze-300']} */ ;
466
- /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
467
493
  /** @type {__VLS_StyleScopedClasses['relative']} */ ;
494
+ /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
495
+ /** @type {__VLS_StyleScopedClasses['h-40']} */ ;
496
+ /** @type {__VLS_StyleScopedClasses['w-40']} */ ;
497
+ /** @type {__VLS_StyleScopedClasses['call-avatar']} */ ;
498
+ /** @type {__VLS_StyleScopedClasses['mb-8']} */ ;
468
499
  /** @type {__VLS_StyleScopedClasses['h-40']} */ ;
469
500
  /** @type {__VLS_StyleScopedClasses['w-40']} */ ;
470
501
  /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
471
502
  /** @type {__VLS_StyleScopedClasses['overflow-hidden']} */ ;
472
503
  /** @type {__VLS_StyleScopedClasses['mb-4']} */ ;
473
504
  /** @type {__VLS_StyleScopedClasses['border-4']} */ ;
474
- /** @type {__VLS_StyleScopedClasses['border-gray-700']} */ ;
505
+ /** @type {__VLS_StyleScopedClasses['border-white']} */ ;
475
506
  /** @type {__VLS_StyleScopedClasses['flex-center']} */ ;
507
+ /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
508
+ /** @type {__VLS_StyleScopedClasses['z-[2]']} */ ;
509
+ /** @type {__VLS_StyleScopedClasses['bubble']} */ ;
510
+ /** @type {__VLS_StyleScopedClasses['bubble-1']} */ ;
511
+ /** @type {__VLS_StyleScopedClasses['bubble']} */ ;
512
+ /** @type {__VLS_StyleScopedClasses['bubble-2']} */ ;
513
+ /** @type {__VLS_StyleScopedClasses['bubble']} */ ;
514
+ /** @type {__VLS_StyleScopedClasses['bubble-3']} */ ;
476
515
  /** @type {__VLS_StyleScopedClasses['text-center']} */ ;
477
516
  /** @type {__VLS_StyleScopedClasses['text-2xl']} */ ;
478
517
  /** @type {__VLS_StyleScopedClasses['font-semibold']} */ ;
@@ -485,7 +524,7 @@ var __VLS_2;
485
524
  /** @type {__VLS_StyleScopedClasses['mt-10']} */ ;
486
525
  /** @type {__VLS_StyleScopedClasses['w-16']} */ ;
487
526
  /** @type {__VLS_StyleScopedClasses['h-16']} */ ;
488
- /** @type {__VLS_StyleScopedClasses['bg-chat-success']} */ ;
527
+ /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
489
528
  /** @type {__VLS_StyleScopedClasses['hover:bg-green-600']} */ ;
490
529
  /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
491
530
  /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
@@ -496,49 +535,54 @@ var __VLS_2;
496
535
  /** @type {__VLS_StyleScopedClasses['transition']} */ ;
497
536
  /** @type {__VLS_StyleScopedClasses['w-16']} */ ;
498
537
  /** @type {__VLS_StyleScopedClasses['h-16']} */ ;
538
+ /** @type {__VLS_StyleScopedClasses['shadow-lg']} */ ;
499
539
  /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
500
540
  /** @type {__VLS_StyleScopedClasses['hover:bg-green-600']} */ ;
501
- /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
541
+ /** @type {__VLS_StyleScopedClasses['text-black']} */ ;
502
542
  /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
503
543
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
504
544
  /** @type {__VLS_StyleScopedClasses['items-center']} */ ;
505
545
  /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
506
- /** @type {__VLS_StyleScopedClasses['shadow-lg']} */ ;
546
+ /** @type {__VLS_StyleScopedClasses['shadow-3xl']} */ ;
507
547
  /** @type {__VLS_StyleScopedClasses['transition']} */ ;
508
548
  /** @type {__VLS_StyleScopedClasses['w-16']} */ ;
509
549
  /** @type {__VLS_StyleScopedClasses['h-16']} */ ;
510
550
  /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
511
551
  /** @type {__VLS_StyleScopedClasses['hover:bg-green-600']} */ ;
512
- /** @type {__VLS_StyleScopedClasses['text-black']} */ ;
552
+ /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
513
553
  /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
514
554
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
515
555
  /** @type {__VLS_StyleScopedClasses['items-center']} */ ;
516
556
  /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
517
- /** @type {__VLS_StyleScopedClasses['shadow-lg']} */ ;
557
+ /** @type {__VLS_StyleScopedClasses['shadow-3xl']} */ ;
518
558
  /** @type {__VLS_StyleScopedClasses['transition']} */ ;
559
+ /** @type {__VLS_StyleScopedClasses['shadow-3xl']} */ ;
519
560
  /** @type {__VLS_StyleScopedClasses['w-16']} */ ;
520
561
  /** @type {__VLS_StyleScopedClasses['h-16']} */ ;
521
- /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
522
- /** @type {__VLS_StyleScopedClasses['hover:bg-green-600']} */ ;
523
- /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
524
562
  /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
563
+ /** @type {__VLS_StyleScopedClasses['bg-chat-error']} */ ;
564
+ /** @type {__VLS_StyleScopedClasses['hover:bg-red-700']} */ ;
525
565
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
566
+ /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
526
567
  /** @type {__VLS_StyleScopedClasses['items-center']} */ ;
527
568
  /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
528
- /** @type {__VLS_StyleScopedClasses['shadow-lg']} */ ;
529
- /** @type {__VLS_StyleScopedClasses['transition']} */ ;
569
+ /** @type {__VLS_StyleScopedClasses['shadow-3xl']} */ ;
530
570
  /** @type {__VLS_StyleScopedClasses['w-16']} */ ;
531
571
  /** @type {__VLS_StyleScopedClasses['h-16']} */ ;
572
+ /** @type {__VLS_StyleScopedClasses['bg-chat-success']} */ ;
573
+ /** @type {__VLS_StyleScopedClasses['hover:bg-green-600']} */ ;
532
574
  /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
533
- /** @type {__VLS_StyleScopedClasses['bg-chat-error']} */ ;
534
- /** @type {__VLS_StyleScopedClasses['hover:bg-red-700']} */ ;
575
+ /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
535
576
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
536
577
  /** @type {__VLS_StyleScopedClasses['items-center']} */ ;
537
578
  /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
538
- /** @type {__VLS_StyleScopedClasses['absolute']} */ ;
539
- /** @type {__VLS_StyleScopedClasses['bottom-6']} */ ;
540
- /** @type {__VLS_StyleScopedClasses['text-gray-500']} */ ;
541
- /** @type {__VLS_StyleScopedClasses['text-sm']} */ ;
579
+ /** @type {__VLS_StyleScopedClasses['shadow-lg']} */ ;
580
+ /** @type {__VLS_StyleScopedClasses['transition']} */ ;
581
+ /** @type {__VLS_StyleScopedClasses['flex']} */ ;
582
+ /** @type {__VLS_StyleScopedClasses['items-center']} */ ;
583
+ /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
584
+ /** @type {__VLS_StyleScopedClasses['gap-8']} */ ;
585
+ /** @type {__VLS_StyleScopedClasses['mt-10']} */ ;
542
586
  // @ts-ignore
543
587
  var __VLS_7 = __VLS_6;
544
588
  const __VLS_export = (await import('vue')).defineComponent({
@@ -1,3 +1,4 @@
1
+ /// <reference types="C:/phonghq/go-chat-v2/node_modules/.vue-global-types/vue_3.5_0.d.ts" />
1
2
  const props = withDefaults(defineProps(), {});
2
3
  const emit = defineEmits();
3
4
  const active = defineModel('active');
@@ -0,0 +1,92 @@
1
+ import { Tabs, TabsList, TabsTrigger } from '../../../ui/tabs';
2
+ const props = withDefaults(defineProps(), {});
3
+ const active = defineModel('active');
4
+ debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
5
+ const __VLS_modelEmit = defineEmits();
6
+ const __VLS_defaults = {};
7
+ const __VLS_ctx = {
8
+ ...{},
9
+ ...{},
10
+ ...{},
11
+ ...{},
12
+ ...{},
13
+ };
14
+ let __VLS_elements;
15
+ let __VLS_components;
16
+ let __VLS_directives;
17
+ __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
18
+ ...{ class: "flex w-full max-w-sm flex-col gap-6" },
19
+ });
20
+ const __VLS_0 = {}.Tabs;
21
+ /** @type {[typeof __VLS_components.Tabs, typeof __VLS_components.Tabs, ]} */ ;
22
+ // @ts-ignore
23
+ Tabs;
24
+ // @ts-ignore
25
+ const __VLS_1 = __VLS_asFunctionalComponent(__VLS_0, new __VLS_0({
26
+ modelValue: (__VLS_ctx.active),
27
+ }));
28
+ const __VLS_2 = __VLS_1({
29
+ modelValue: (__VLS_ctx.active),
30
+ }, ...__VLS_functionalComponentArgsRest(__VLS_1));
31
+ const { default: __VLS_4 } = __VLS_3.slots;
32
+ // @ts-ignore
33
+ [active,];
34
+ const __VLS_5 = {}.TabsList;
35
+ /** @type {[typeof __VLS_components.TabsList, typeof __VLS_components.TabsList, ]} */ ;
36
+ // @ts-ignore
37
+ TabsList;
38
+ // @ts-ignore
39
+ const __VLS_6 = __VLS_asFunctionalComponent(__VLS_5, new __VLS_5({}));
40
+ const __VLS_7 = __VLS_6({}, ...__VLS_functionalComponentArgsRest(__VLS_6));
41
+ const { default: __VLS_9 } = __VLS_8.slots;
42
+ for (const [item] of __VLS_getVForSourceType((__VLS_ctx.tabs))) {
43
+ // @ts-ignore
44
+ [tabs,];
45
+ const __VLS_10 = {}.TabsTrigger;
46
+ /** @type {[typeof __VLS_components.TabsTrigger, typeof __VLS_components.TabsTrigger, ]} */ ;
47
+ // @ts-ignore
48
+ TabsTrigger;
49
+ // @ts-ignore
50
+ const __VLS_11 = __VLS_asFunctionalComponent(__VLS_10, new __VLS_10({
51
+ ...{ class: "px-4 py-2 relative" },
52
+ value: (item.value),
53
+ key: (item.value),
54
+ }));
55
+ const __VLS_12 = __VLS_11({
56
+ ...{ class: "px-4 py-2 relative" },
57
+ value: (item.value),
58
+ key: (item.value),
59
+ }, ...__VLS_functionalComponentArgsRest(__VLS_11));
60
+ const { default: __VLS_14 } = __VLS_13.slots;
61
+ __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
62
+ ...{ class: "w-5 h-5 bg-chat-error rounded-full absolute -top-[8px] -right-2 text-white" },
63
+ });
64
+ __VLS_asFunctionalDirective(__VLS_directives.vShow)(null, { ...__VLS_directiveBindingRestFields, value: (item.badge) }, null, null);
65
+ (item.badge);
66
+ (item.label);
67
+ var __VLS_13;
68
+ }
69
+ var __VLS_8;
70
+ var __VLS_3;
71
+ /** @type {__VLS_StyleScopedClasses['flex']} */ ;
72
+ /** @type {__VLS_StyleScopedClasses['w-full']} */ ;
73
+ /** @type {__VLS_StyleScopedClasses['max-w-sm']} */ ;
74
+ /** @type {__VLS_StyleScopedClasses['flex-col']} */ ;
75
+ /** @type {__VLS_StyleScopedClasses['gap-6']} */ ;
76
+ /** @type {__VLS_StyleScopedClasses['px-4']} */ ;
77
+ /** @type {__VLS_StyleScopedClasses['py-2']} */ ;
78
+ /** @type {__VLS_StyleScopedClasses['relative']} */ ;
79
+ /** @type {__VLS_StyleScopedClasses['w-5']} */ ;
80
+ /** @type {__VLS_StyleScopedClasses['h-5']} */ ;
81
+ /** @type {__VLS_StyleScopedClasses['bg-chat-error']} */ ;
82
+ /** @type {__VLS_StyleScopedClasses['rounded-full']} */ ;
83
+ /** @type {__VLS_StyleScopedClasses['absolute']} */ ;
84
+ /** @type {__VLS_StyleScopedClasses['-top-[8px]']} */ ;
85
+ /** @type {__VLS_StyleScopedClasses['-right-2']} */ ;
86
+ /** @type {__VLS_StyleScopedClasses['text-white']} */ ;
87
+ const __VLS_export = (await import('vue')).defineComponent({
88
+ __typeEmits: {},
89
+ __typeProps: {},
90
+ props: {},
91
+ });
92
+ export default {};
@@ -52,7 +52,7 @@ let __VLS_elements;
52
52
  let __VLS_components;
53
53
  let __VLS_directives;
54
54
  __VLS_asFunctionalElement(__VLS_elements.div, __VLS_elements.div)({
55
- ...{ class: "bg-white rounded-t-3xl shadow-lg pb-2 flex grid grid-cols-4 h-[80px]" },
55
+ ...{ class: "bg-white rounded-t-3xl sm:rounded-0 shadow-lg pb-2 flex grid grid-cols-4 sm:grid-cols-1 h-[80px] w-full sm:h-full sm:w-[100px]" },
56
56
  });
57
57
  for (const [item] of __VLS_getVForSourceType((__VLS_ctx.LAYOUT_CONFIG))) {
58
58
  // @ts-ignore
@@ -88,12 +88,17 @@ for (const [item] of __VLS_getVForSourceType((__VLS_ctx.LAYOUT_CONFIG))) {
88
88
  }
89
89
  /** @type {__VLS_StyleScopedClasses['bg-white']} */ ;
90
90
  /** @type {__VLS_StyleScopedClasses['rounded-t-3xl']} */ ;
91
+ /** @type {__VLS_StyleScopedClasses['sm:rounded-0']} */ ;
91
92
  /** @type {__VLS_StyleScopedClasses['shadow-lg']} */ ;
92
93
  /** @type {__VLS_StyleScopedClasses['pb-2']} */ ;
93
94
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
94
95
  /** @type {__VLS_StyleScopedClasses['grid']} */ ;
95
96
  /** @type {__VLS_StyleScopedClasses['grid-cols-4']} */ ;
97
+ /** @type {__VLS_StyleScopedClasses['sm:grid-cols-1']} */ ;
96
98
  /** @type {__VLS_StyleScopedClasses['h-[80px]']} */ ;
99
+ /** @type {__VLS_StyleScopedClasses['w-full']} */ ;
100
+ /** @type {__VLS_StyleScopedClasses['sm:h-full']} */ ;
101
+ /** @type {__VLS_StyleScopedClasses['sm:w-[100px]']} */ ;
97
102
  /** @type {__VLS_StyleScopedClasses['flex']} */ ;
98
103
  /** @type {__VLS_StyleScopedClasses['flex-col']} */ ;
99
104
  /** @type {__VLS_StyleScopedClasses['justify-center']} */ ;
@@ -1,3 +1,4 @@
1
+ /// <reference types="C:/phonghq/go-chat-v2/node_modules/.vue-global-types/vue_3.5_0.d.ts" />
1
2
  import { computed, ref } from 'vue';
2
3
  const props = withDefaults(defineProps(), {
3
4
  position: 'right',
@@ -0,0 +1,139 @@
1
+ /// <reference types="C:/phonghq/go-chat-v2/node_modules/.vue-global-types/vue_3.5_0.d.ts" />
2
+ import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from '../../ui/select';
3
+ debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
4
+ const __VLS_ctx = {
5
+ ...{},
6
+ ...{},
7
+ };
8
+ let __VLS_elements;
9
+ let __VLS_components;
10
+ let __VLS_directives;
11
+ const __VLS_0 = {}.Select;
12
+ /** @type {[typeof __VLS_components.Select, typeof __VLS_components.Select, ]} */ ;
13
+ // @ts-ignore
14
+ Select;
15
+ // @ts-ignore
16
+ const __VLS_1 = __VLS_asFunctionalComponent(__VLS_0, new __VLS_0({}));
17
+ const __VLS_2 = __VLS_1({}, ...__VLS_functionalComponentArgsRest(__VLS_1));
18
+ var __VLS_4 = {};
19
+ const { default: __VLS_5 } = __VLS_3.slots;
20
+ const __VLS_6 = {}.SelectTrigger;
21
+ /** @type {[typeof __VLS_components.SelectTrigger, typeof __VLS_components.SelectTrigger, ]} */ ;
22
+ // @ts-ignore
23
+ SelectTrigger;
24
+ // @ts-ignore
25
+ const __VLS_7 = __VLS_asFunctionalComponent(__VLS_6, new __VLS_6({
26
+ ...{ class: "w-[180px]" },
27
+ }));
28
+ const __VLS_8 = __VLS_7({
29
+ ...{ class: "w-[180px]" },
30
+ }, ...__VLS_functionalComponentArgsRest(__VLS_7));
31
+ const { default: __VLS_10 } = __VLS_9.slots;
32
+ const __VLS_11 = {}.SelectValue;
33
+ /** @type {[typeof __VLS_components.SelectValue, ]} */ ;
34
+ // @ts-ignore
35
+ SelectValue;
36
+ // @ts-ignore
37
+ const __VLS_12 = __VLS_asFunctionalComponent(__VLS_11, new __VLS_11({
38
+ placeholder: "Select a fruit",
39
+ }));
40
+ const __VLS_13 = __VLS_12({
41
+ placeholder: "Select a fruit",
42
+ }, ...__VLS_functionalComponentArgsRest(__VLS_12));
43
+ var __VLS_9;
44
+ const __VLS_16 = {}.SelectContent;
45
+ /** @type {[typeof __VLS_components.SelectContent, typeof __VLS_components.SelectContent, ]} */ ;
46
+ // @ts-ignore
47
+ SelectContent;
48
+ // @ts-ignore
49
+ const __VLS_17 = __VLS_asFunctionalComponent(__VLS_16, new __VLS_16({}));
50
+ const __VLS_18 = __VLS_17({}, ...__VLS_functionalComponentArgsRest(__VLS_17));
51
+ const { default: __VLS_20 } = __VLS_19.slots;
52
+ const __VLS_21 = {}.SelectGroup;
53
+ /** @type {[typeof __VLS_components.SelectGroup, typeof __VLS_components.SelectGroup, ]} */ ;
54
+ // @ts-ignore
55
+ SelectGroup;
56
+ // @ts-ignore
57
+ const __VLS_22 = __VLS_asFunctionalComponent(__VLS_21, new __VLS_21({}));
58
+ const __VLS_23 = __VLS_22({}, ...__VLS_functionalComponentArgsRest(__VLS_22));
59
+ const { default: __VLS_25 } = __VLS_24.slots;
60
+ const __VLS_26 = {}.SelectLabel;
61
+ /** @type {[typeof __VLS_components.SelectLabel, typeof __VLS_components.SelectLabel, ]} */ ;
62
+ // @ts-ignore
63
+ SelectLabel;
64
+ // @ts-ignore
65
+ const __VLS_27 = __VLS_asFunctionalComponent(__VLS_26, new __VLS_26({}));
66
+ const __VLS_28 = __VLS_27({}, ...__VLS_functionalComponentArgsRest(__VLS_27));
67
+ const { default: __VLS_30 } = __VLS_29.slots;
68
+ var __VLS_29;
69
+ const __VLS_31 = {}.SelectItem;
70
+ /** @type {[typeof __VLS_components.SelectItem, typeof __VLS_components.SelectItem, ]} */ ;
71
+ // @ts-ignore
72
+ SelectItem;
73
+ // @ts-ignore
74
+ const __VLS_32 = __VLS_asFunctionalComponent(__VLS_31, new __VLS_31({
75
+ value: "apple",
76
+ }));
77
+ const __VLS_33 = __VLS_32({
78
+ value: "apple",
79
+ }, ...__VLS_functionalComponentArgsRest(__VLS_32));
80
+ const { default: __VLS_35 } = __VLS_34.slots;
81
+ var __VLS_34;
82
+ const __VLS_36 = {}.SelectItem;
83
+ /** @type {[typeof __VLS_components.SelectItem, typeof __VLS_components.SelectItem, ]} */ ;
84
+ // @ts-ignore
85
+ SelectItem;
86
+ // @ts-ignore
87
+ const __VLS_37 = __VLS_asFunctionalComponent(__VLS_36, new __VLS_36({
88
+ value: "banana",
89
+ }));
90
+ const __VLS_38 = __VLS_37({
91
+ value: "banana",
92
+ }, ...__VLS_functionalComponentArgsRest(__VLS_37));
93
+ const { default: __VLS_40 } = __VLS_39.slots;
94
+ var __VLS_39;
95
+ const __VLS_41 = {}.SelectItem;
96
+ /** @type {[typeof __VLS_components.SelectItem, typeof __VLS_components.SelectItem, ]} */ ;
97
+ // @ts-ignore
98
+ SelectItem;
99
+ // @ts-ignore
100
+ const __VLS_42 = __VLS_asFunctionalComponent(__VLS_41, new __VLS_41({
101
+ value: "blueberry",
102
+ }));
103
+ const __VLS_43 = __VLS_42({
104
+ value: "blueberry",
105
+ }, ...__VLS_functionalComponentArgsRest(__VLS_42));
106
+ const { default: __VLS_45 } = __VLS_44.slots;
107
+ var __VLS_44;
108
+ const __VLS_46 = {}.SelectItem;
109
+ /** @type {[typeof __VLS_components.SelectItem, typeof __VLS_components.SelectItem, ]} */ ;
110
+ // @ts-ignore
111
+ SelectItem;
112
+ // @ts-ignore
113
+ const __VLS_47 = __VLS_asFunctionalComponent(__VLS_46, new __VLS_46({
114
+ value: "grapes",
115
+ }));
116
+ const __VLS_48 = __VLS_47({
117
+ value: "grapes",
118
+ }, ...__VLS_functionalComponentArgsRest(__VLS_47));
119
+ const { default: __VLS_50 } = __VLS_49.slots;
120
+ var __VLS_49;
121
+ const __VLS_51 = {}.SelectItem;
122
+ /** @type {[typeof __VLS_components.SelectItem, typeof __VLS_components.SelectItem, ]} */ ;
123
+ // @ts-ignore
124
+ SelectItem;
125
+ // @ts-ignore
126
+ const __VLS_52 = __VLS_asFunctionalComponent(__VLS_51, new __VLS_51({
127
+ value: "pineapple",
128
+ }));
129
+ const __VLS_53 = __VLS_52({
130
+ value: "pineapple",
131
+ }, ...__VLS_functionalComponentArgsRest(__VLS_52));
132
+ const { default: __VLS_55 } = __VLS_54.slots;
133
+ var __VLS_54;
134
+ var __VLS_24;
135
+ var __VLS_19;
136
+ var __VLS_3;
137
+ /** @type {__VLS_StyleScopedClasses['w-[180px]']} */ ;
138
+ const __VLS_export = (await import('vue')).defineComponent({});
139
+ export default {};