@meistrari/tela-build 1.0.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 (295) hide show
  1. package/README.md +75 -0
  2. package/app.config.ts +73 -0
  3. package/components/tela/animated/animated-calculating-number.vue +16 -0
  4. package/components/tela/animated/animated-number.mdx +248 -0
  5. package/components/tela/animated/animated-number.stories.ts +52 -0
  6. package/components/tela/animated/animated-number.vue +23 -0
  7. package/components/tela/animated/animated-text.vue +124 -0
  8. package/components/tela/animated/animated-value.vue +68 -0
  9. package/components/tela/avatar/avatar.mdx +117 -0
  10. package/components/tela/avatar/avatar.stories.ts +62 -0
  11. package/components/tela/avatar/avatar.vue +71 -0
  12. package/components/tela/avatar/group/avatar-group.stories.ts +78 -0
  13. package/components/tela/avatar/group/avatar-group.vue +46 -0
  14. package/components/tela/badge/badge.mdx +154 -0
  15. package/components/tela/badge/badge.stories.ts +82 -0
  16. package/components/tela/badge/badge.vue +41 -0
  17. package/components/tela/button/button.mdx +155 -0
  18. package/components/tela/button/button.stories.ts +202 -0
  19. package/components/tela/button/button.vue +107 -0
  20. package/components/tela/card.vue +30 -0
  21. package/components/tela/chart/chart-bar.vue +58 -0
  22. package/components/tela/chat/chat.mdx +268 -0
  23. package/components/tela/chat/chat.stories.ts +253 -0
  24. package/components/tela/chat/command/index.vue +41 -0
  25. package/components/tela/chat/command/mention/index.vue +138 -0
  26. package/components/tela/chat/index.vue +112 -0
  27. package/components/tela/chat/pure-text-input/chat-text-input.vue +190 -0
  28. package/components/tela/chat/text-input/chat-text-input.stories.ts +128 -0
  29. package/components/tela/chat/text-input/index.vue +217 -0
  30. package/components/tela/chat/text-message/chat-text-message.stories.ts +138 -0
  31. package/components/tela/chat/text-message/index.vue +355 -0
  32. package/components/tela/chat/types.ts +19 -0
  33. package/components/tela/checkbox/checkbox-card.vue +30 -0
  34. package/components/tela/checkbox/checkbox.mdx +164 -0
  35. package/components/tela/checkbox/checkbox.stories.ts +104 -0
  36. package/components/tela/checkbox/checkbox.vue +43 -0
  37. package/components/tela/collapsible/Collapsible.vue +15 -0
  38. package/components/tela/collapsible/CollapsibleContent.vue +59 -0
  39. package/components/tela/collapsible/CollapsibleTrigger.vue +12 -0
  40. package/components/tela/collapsible/collapsible.mdx +157 -0
  41. package/components/tela/collapsible-section/collapsible-section.mdx +180 -0
  42. package/components/tela/collapsible-section/collapsible-section.stories.ts +53 -0
  43. package/components/tela/collapsible-section/collapsible-section.vue +51 -0
  44. package/components/tela/collapsible-section-with-actions.vue +98 -0
  45. package/components/tela/combobox/combobox-anchor.vue +24 -0
  46. package/components/tela/combobox/combobox-empty.vue +19 -0
  47. package/components/tela/combobox/combobox-group.vue +24 -0
  48. package/components/tela/combobox/combobox-indicator.vue +22 -0
  49. package/components/tela/combobox/combobox-input.vue +31 -0
  50. package/components/tela/combobox/combobox-item.vue +28 -0
  51. package/components/tela/combobox/combobox-label.vue +24 -0
  52. package/components/tela/combobox/combobox-list.vue +90 -0
  53. package/components/tela/combobox/combobox-module-selector.vue +366 -0
  54. package/components/tela/combobox/combobox-root.vue +15 -0
  55. package/components/tela/combobox/combobox-trigger.vue +12 -0
  56. package/components/tela/combobox/combobox.mdx +285 -0
  57. package/components/tela/combobox/combobox.stories.ts +232 -0
  58. package/components/tela/combobox/combobox.vue +497 -0
  59. package/components/tela/command/command-dialog.vue +22 -0
  60. package/components/tela/command/command-empty.vue +25 -0
  61. package/components/tela/command/command-group.vue +46 -0
  62. package/components/tela/command/command-input.vue +38 -0
  63. package/components/tela/command/command-item.vue +78 -0
  64. package/components/tela/command/command-list.vue +78 -0
  65. package/components/tela/command/command-separator.vue +23 -0
  66. package/components/tela/command/command-shortcut.vue +13 -0
  67. package/components/tela/command/command.vue +88 -0
  68. package/components/tela/command/dialog-base.vue +15 -0
  69. package/components/tela/command/dialog-content.vue +50 -0
  70. package/components/tela/command/utils.ts +15 -0
  71. package/components/tela/complex-table/complex-table-cell.stories.ts +145 -0
  72. package/components/tela/complex-table/complex-table-cell.vue +45 -0
  73. package/components/tela/complex-table/complex-table-header-cell.stories.ts +103 -0
  74. package/components/tela/complex-table/complex-table-header-cell.vue +48 -0
  75. package/components/tela/complex-table/complex-table-header.stories.ts +89 -0
  76. package/components/tela/complex-table/complex-table-header.vue +70 -0
  77. package/components/tela/complex-table/complex-table-row.vue +199 -0
  78. package/components/tela/complex-table/complex-table-virtualized.vue +326 -0
  79. package/components/tela/complex-table/complex-table.stories.ts +358 -0
  80. package/components/tela/complex-table/complex-table.vue +237 -0
  81. package/components/tela/complex-table/composables/table-common.ts +93 -0
  82. package/components/tela/complex-table/composables/table-selection.ts +87 -0
  83. package/components/tela/complex-table/composables/virtual-scroll.ts +252 -0
  84. package/components/tela/complex-table/styles/table-shared.css +170 -0
  85. package/components/tela/complex-table/types.ts +63 -0
  86. package/components/tela/complex-table/utils.ts +35 -0
  87. package/components/tela/confirm-button/confirm-button.vue +137 -0
  88. package/components/tela/confirmation-modal/confirmation-modal.vue +72 -0
  89. package/components/tela/copy-button.vue +86 -0
  90. package/components/tela/date-range-picker.vue +221 -0
  91. package/components/tela/dialog/dialog.mdx +170 -0
  92. package/components/tela/dialog/dialog.vue +182 -0
  93. package/components/tela/disabled-area.vue +16 -0
  94. package/components/tela/disclaimer/disclaimer.mdx +238 -0
  95. package/components/tela/disclaimer/disclaimer.stories.ts +196 -0
  96. package/components/tela/disclaimer/disclaimer.vue +125 -0
  97. package/components/tela/dropdown-menu/DropdownMenu.vue +121 -0
  98. package/components/tela/dropdown-menu/DropdownMenuCheckboxItem.vue +40 -0
  99. package/components/tela/dropdown-menu/DropdownMenuContent.vue +75 -0
  100. package/components/tela/dropdown-menu/DropdownMenuGroup.vue +12 -0
  101. package/components/tela/dropdown-menu/DropdownMenuItem.vue +137 -0
  102. package/components/tela/dropdown-menu/DropdownMenuLabel.vue +26 -0
  103. package/components/tela/dropdown-menu/DropdownMenuRadioGroup.vue +18 -0
  104. package/components/tela/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
  105. package/components/tela/dropdown-menu/DropdownMenuRoot.vue +15 -0
  106. package/components/tela/dropdown-menu/DropdownMenuSeparator.vue +21 -0
  107. package/components/tela/dropdown-menu/DropdownMenuShortcut.vue +14 -0
  108. package/components/tela/dropdown-menu/DropdownMenuSub.vue +18 -0
  109. package/components/tela/dropdown-menu/DropdownMenuSubContent.vue +30 -0
  110. package/components/tela/dropdown-menu/DropdownMenuSubTrigger.vue +35 -0
  111. package/components/tela/dropdown-menu/DropdownMenuTrigger.vue +14 -0
  112. package/components/tela/dropdown-menu/dropdown-menu.mdx +265 -0
  113. package/components/tela/dropdown-menu/dropdown-menu.stories.ts +156 -0
  114. package/components/tela/expandable-input.vue +96 -0
  115. package/components/tela/file-drop.vue +37 -0
  116. package/components/tela/file-upload/file-upload.mdx +189 -0
  117. package/components/tela/file-upload/file-upload.stories.ts +48 -0
  118. package/components/tela/file-upload/file-upload.vue +205 -0
  119. package/components/tela/filters/checkbox-filter.stories.ts +218 -0
  120. package/components/tela/filters/checkbox-filter.vue +165 -0
  121. package/components/tela/filters/date-filter.stories.ts +258 -0
  122. package/components/tela/filters/date-filter.vue +200 -0
  123. package/components/tela/filters/user-filter.stories.ts +344 -0
  124. package/components/tela/filters/user-filter.vue +271 -0
  125. package/components/tela/hover-card/hover-card.mdx +221 -0
  126. package/components/tela/hover-card/hover-card.stories.ts +87 -0
  127. package/components/tela/hover-card/hover-card.vue +61 -0
  128. package/components/tela/icon/custom.vue +319 -0
  129. package/components/tela/icon/spinner.vue +12 -0
  130. package/components/tela/icon-button/icon-button.vue +114 -0
  131. package/components/tela/icon.vue +37 -0
  132. package/components/tela/initials.vue +28 -0
  133. package/components/tela/inline-input.vue +77 -0
  134. package/components/tela/input/input.mdx +182 -0
  135. package/components/tela/input/input.stories.ts +153 -0
  136. package/components/tela/input/tela-input.vue +240 -0
  137. package/components/tela/kbd/kbd-return.vue +6 -0
  138. package/components/tela/kbd/kbd.mdx +238 -0
  139. package/components/tela/kbd/kbd.vue +18 -0
  140. package/components/tela/label/label.mdx +121 -0
  141. package/components/tela/label/label.stories.ts +37 -0
  142. package/components/tela/label/label.vue +25 -0
  143. package/components/tela/link-decoration/link-decoration.vue +19 -0
  144. package/components/tela/live-label.vue +32 -0
  145. package/components/tela/long-press-button.vue +98 -0
  146. package/components/tela/menubar/menubar-content.vue +77 -0
  147. package/components/tela/menubar/menubar-item.vue +32 -0
  148. package/components/tela/menubar/menubar-label.vue +14 -0
  149. package/components/tela/menubar/menubar-menu.vue +12 -0
  150. package/components/tela/menubar/menubar-root.vue +30 -0
  151. package/components/tela/menubar/menubar-separator.vue +17 -0
  152. package/components/tela/menubar/menubar-shortcut.vue +14 -0
  153. package/components/tela/menubar/menubar-sub-content.vue +36 -0
  154. package/components/tela/menubar/menubar-sub-trigger.vue +28 -0
  155. package/components/tela/menubar/menubar-sub.vue +20 -0
  156. package/components/tela/menubar/menubar-trigger.vue +27 -0
  157. package/components/tela/menubar/menubar.vue +298 -0
  158. package/components/tela/modal/modal.mdx +145 -0
  159. package/components/tela/modal/modal.vue +242 -0
  160. package/components/tela/multiple-select/multiple-select.mdx +274 -0
  161. package/components/tela/multiple-select/multiple-select.stories.ts +325 -0
  162. package/components/tela/multiple-select/multiple-select.vue +666 -0
  163. package/components/tela/pane.vue +110 -0
  164. package/components/tela/popover/popover-content.vue +48 -0
  165. package/components/tela/popover/popover-trigger.vue +12 -0
  166. package/components/tela/popover/popover.mdx +239 -0
  167. package/components/tela/popover/popover.stories.ts +150 -0
  168. package/components/tela/popover/popover.vue +15 -0
  169. package/components/tela/popover-list/popover-list-nested.vue +104 -0
  170. package/components/tela/popover-list/popover-list.stories.ts +330 -0
  171. package/components/tela/popover-list/popover-list.vue +191 -0
  172. package/components/tela/radio-button.vue +66 -0
  173. package/components/tela/radio-group/radio-group-item.vue +40 -0
  174. package/components/tela/radio-group/radio-group-root.vue +26 -0
  175. package/components/tela/radio-group/radio-group.mdx +78 -0
  176. package/components/tela/radio-group/radio-group.stories.ts +106 -0
  177. package/components/tela/radio-group/radio-group.vue +23 -0
  178. package/components/tela/range-calendar.stories.ts +110 -0
  179. package/components/tela/range-calendar.vue +109 -0
  180. package/components/tela/scroll-area/scroll-area.mdx +183 -0
  181. package/components/tela/scroll-area/scroll-area.vue +30 -0
  182. package/components/tela/scroll-area/scroll-bar.vue +31 -0
  183. package/components/tela/segment-toggle.stories.ts +114 -0
  184. package/components/tela/segment-toggle.vue +66 -0
  185. package/components/tela/select-menu/select-menu-content.vue +106 -0
  186. package/components/tela/select-menu/select-menu-down-button.vue +20 -0
  187. package/components/tela/select-menu/select-menu-group.vue +16 -0
  188. package/components/tela/select-menu/select-menu-item.vue +40 -0
  189. package/components/tela/select-menu/select-menu-root.vue +15 -0
  190. package/components/tela/select-menu/select-menu-trigger.vue +34 -0
  191. package/components/tela/select-menu/select-menu-up-button.vue +20 -0
  192. package/components/tela/select-menu/select-menu-value.vue +12 -0
  193. package/components/tela/select-menu/select-menu.mdx +221 -0
  194. package/components/tela/select-menu/select-menu.stories.ts +91 -0
  195. package/components/tela/select-menu/select-menu.vue +165 -0
  196. package/components/tela/selector/selector.vue +47 -0
  197. package/components/tela/sheet/sheet-close.vue +12 -0
  198. package/components/tela/sheet/sheet-content.vue +57 -0
  199. package/components/tela/sheet/sheet-description.vue +23 -0
  200. package/components/tela/sheet/sheet-footer.vue +18 -0
  201. package/components/tela/sheet/sheet-header.vue +15 -0
  202. package/components/tela/sheet/sheet-root.vue +18 -0
  203. package/components/tela/sheet/sheet-title.vue +23 -0
  204. package/components/tela/sheet/sheet-trigger.vue +12 -0
  205. package/components/tela/sheet/sheet.client.vue +150 -0
  206. package/components/tela/sheet/sheet.mdx +176 -0
  207. package/components/tela/sheet/sheet.stories.ts +201 -0
  208. package/components/tela/sheet/variants.ts +22 -0
  209. package/components/tela/side-sheet/side-sheet.mdx +131 -0
  210. package/components/tela/side-sheet/side-sheet.stories.ts +134 -0
  211. package/components/tela/side-sheet/side-sheet.vue +106 -0
  212. package/components/tela/skeleton/skeleton.mdx +165 -0
  213. package/components/tela/skeleton/skeleton.stories.ts +35 -0
  214. package/components/tela/skeleton/skeleton.vue +45 -0
  215. package/components/tela/skeleton-icon.vue +24 -0
  216. package/components/tela/span.vue +24 -0
  217. package/components/tela/star-button.vue +70 -0
  218. package/components/tela/status/status-lean.vue +30 -0
  219. package/components/tela/status/status.mdx +187 -0
  220. package/components/tela/status/status.stories.ts +160 -0
  221. package/components/tela/status/status.vue +420 -0
  222. package/components/tela/status-bar/status-bar.mdx +178 -0
  223. package/components/tela/status-bar/status-bar.stories.ts +64 -0
  224. package/components/tela/status-bar/status-bar.vue +56 -0
  225. package/components/tela/status-bar/types.ts +5 -0
  226. package/components/tela/switch/switch.mdx +118 -0
  227. package/components/tela/switch/switch.stories.ts +80 -0
  228. package/components/tela/switch/switch.vue +56 -0
  229. package/components/tela/table/table-body.vue +13 -0
  230. package/components/tela/table/table-caption.vue +13 -0
  231. package/components/tela/table/table-cell.vue +20 -0
  232. package/components/tela/table/table-empty.vue +37 -0
  233. package/components/tela/table/table-footer.vue +13 -0
  234. package/components/tela/table/table-head.vue +13 -0
  235. package/components/tela/table/table-header.vue +13 -0
  236. package/components/tela/table/table-row.vue +13 -0
  237. package/components/tela/table/table.mdx +230 -0
  238. package/components/tela/table/table.stories.ts +384 -0
  239. package/components/tela/table/table.vue +15 -0
  240. package/components/tela/tabs/tabs-content.vue +20 -0
  241. package/components/tela/tabs/tabs-indicator.vue +22 -0
  242. package/components/tela/tabs/tabs-list.vue +23 -0
  243. package/components/tela/tabs/tabs-root.vue +15 -0
  244. package/components/tela/tabs/tabs-trigger.vue +27 -0
  245. package/components/tela/tabs/tabs.mdx +138 -0
  246. package/components/tela/tabs/tabs.stories.ts +72 -0
  247. package/components/tela/tabs/tabs.vue +61 -0
  248. package/components/tela/tags/tags-select.mdx +318 -0
  249. package/components/tela/tags/tags-select.stories.ts +47 -0
  250. package/components/tela/tags/tags-select.vue +637 -0
  251. package/components/tela/tags/tags.mdx +151 -0
  252. package/components/tela/tags/tags.stories.ts +118 -0
  253. package/components/tela/tags/tags.vue +112 -0
  254. package/components/tela/textarea/textarea.mdx +102 -0
  255. package/components/tela/textarea/textarea.stories.ts +50 -0
  256. package/components/tela/textarea/textarea.vue +34 -0
  257. package/components/tela/toggle-group.vue +91 -0
  258. package/components/tela/tooltip/tooltip-content.vue +45 -0
  259. package/components/tela/tooltip/tooltip-provider.vue +12 -0
  260. package/components/tela/tooltip/tooltip-root.vue +15 -0
  261. package/components/tela/tooltip/tooltip-trigger.vue +12 -0
  262. package/components/tela/tooltip/tooltip.mdx +196 -0
  263. package/components/tela/tooltip/tooltip.stories.ts +200 -0
  264. package/components/tela/tooltip/tooltip.vue +91 -0
  265. package/components/tela/tooltip-group/tooltip-group-trigger.vue +92 -0
  266. package/components/tela/tooltip-group/tooltip-group.mdx +236 -0
  267. package/components/tela/tooltip-group/tooltip-group.stories.ts +465 -0
  268. package/components/tela/tooltip-group/tooltip-group.vue +35 -0
  269. package/components/tela/transparent-input.vue +151 -0
  270. package/components/tela/variable-icon.vue +28 -0
  271. package/components/tela/variable-input.vue +77 -0
  272. package/components/tela/wide-button/wide-button.vue +40 -0
  273. package/components.json +18 -0
  274. package/composables/status-toast.ts +67 -0
  275. package/css/reset.css +386 -0
  276. package/css/text.css +22 -0
  277. package/lib/doc-generator.ts +903 -0
  278. package/lib/extractors/volar-extract.ts +186 -0
  279. package/lib/type-resolver.ts +402 -0
  280. package/lib/utils.ts +6 -0
  281. package/modules/tela-build-docs/index.ts +139 -0
  282. package/nuxt.config.ts +80 -0
  283. package/package.json +84 -0
  284. package/plugins/test-id.ts +7 -0
  285. package/tsconfig.json +7 -0
  286. package/types/custom-icon.ts +1 -0
  287. package/types/index.ts +2 -0
  288. package/types/status.ts +1 -0
  289. package/unocss.config.ts +89 -0
  290. package/utils/component-utils.ts +30 -0
  291. package/utils/design-tokens.ts +431 -0
  292. package/utils/fold.ts +8 -0
  293. package/utils/select-menu.ts +10 -0
  294. package/utils/status.ts +1 -0
  295. package/utils/without-keys.ts +34 -0
@@ -0,0 +1,98 @@
1
+ <script setup lang="ts">
2
+ const props = defineProps<{
3
+ title?: string
4
+ info?: string
5
+ collapseOnScroll?: boolean
6
+ headerClass?: string
7
+ containerClass?: string
8
+ titleClass?: string
9
+ }>()
10
+
11
+ const emit = defineEmits(['close', 'open'])
12
+
13
+ const isOpen = defineModel<boolean>('open', { default: false, required: true })
14
+
15
+ const headerRef = ref(null)
16
+ const contentRef = ref(null)
17
+
18
+ const headerBounds = useElementBounding(headerRef)
19
+ const contentBounds = useElementBounding(contentRef)
20
+
21
+ const distance = computed(() => contentBounds.bottom.value - headerBounds.bottom.value)
22
+
23
+ const isOpenForAtLeast2Seconds = ref(false)
24
+
25
+ watch(distance, (newVal) => {
26
+ if (isOpen.value && isOpenForAtLeast2Seconds.value && newVal < 50 && props.collapseOnScroll) {
27
+ isOpen.value = false
28
+ }
29
+ })
30
+
31
+ const timer = ref<NodeJS.Timeout | null>(null)
32
+
33
+ watch(isOpen, (newVal) => {
34
+ emit(newVal ? 'open' : 'close')
35
+
36
+ if (timer.value) {
37
+ clearTimeout(timer.value)
38
+ timer.value = null
39
+ }
40
+
41
+ if (!newVal) {
42
+ isOpenForAtLeast2Seconds.value = false
43
+ return
44
+ }
45
+
46
+ timer.value = setTimeout(() => {
47
+ isOpenForAtLeast2Seconds.value = true
48
+ }, 2000)
49
+ }, { immediate: true })
50
+
51
+ // Clean up the timer when component is unmounted
52
+ onUnmounted(() => {
53
+ if (timer.value) {
54
+ clearTimeout(timer.value)
55
+ timer.value = null
56
+ }
57
+ })
58
+ </script>
59
+
60
+ <template>
61
+ <div class="bg-white" :class="[containerClass]">
62
+ <TelaCollapsible v-model:open="isOpen">
63
+ <slot name="trigger" :is-open="isOpen">
64
+ <div ref="headerRef" :class="headerClass" flex items-center justify-between sticky top-0 bg-white z-10 px-32px pt-14px pb-12px>
65
+ <div flex items-center gap-4px :class="titleClass">
66
+ <TelaCollapsibleTrigger relative flex items-center focus:outline-none>
67
+ <div flex items-center gap-2>
68
+ <button
69
+ transition-all pl-2px
70
+ :class="!isOpen && 'rotate--180'"
71
+ >
72
+ <TelaIcon name="i-ph-caret-up" w-10px h-10px text-gray-600 />
73
+ </button>
74
+ <p body-14-semibold text-gray-600>
75
+ {{ title }}
76
+ </p>
77
+ </div>
78
+ </TelaCollapsibleTrigger>
79
+ <TelaTooltip
80
+ v-if="info"
81
+ placement="bottom"
82
+ :content="info"
83
+ w-fit
84
+ content-class="max-w-300px"
85
+ >
86
+ <TelaIcon name="i-ph-question" w-10px h-10px text-gray-600 />
87
+ </TelaTooltip>
88
+ </div>
89
+ <slot name="actions" />
90
+ </div>
91
+ </slot>
92
+
93
+ <TelaCollapsibleContent ref="contentRef" :class="isOpen ? '' : 'hidden'">
94
+ <slot />
95
+ </TelaCollapsibleContent>
96
+ </TelaCollapsible>
97
+ </div>
98
+ </template>
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import { ComboboxAnchor, useForwardProps } from 'reka-ui'
6
+ import type { ComboboxAnchorProps } from 'reka-ui'
7
+
8
+ import { cn } from '@/lib/utils'
9
+
10
+ const props = defineProps<ComboboxAnchorProps & { class?: HTMLAttributes['class'] }>()
11
+
12
+ const delegatedProps = reactiveOmit(props, 'class')
13
+
14
+ const forwarded = useForwardProps(delegatedProps)
15
+ </script>
16
+
17
+ <template>
18
+ <ComboboxAnchor
19
+ v-bind="forwarded"
20
+ :class="cn('relative', props.class)"
21
+ >
22
+ <slot />
23
+ </ComboboxAnchor>
24
+ </template>
@@ -0,0 +1,19 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import { ComboboxEmpty } from 'reka-ui'
6
+ import type { ComboboxEmptyProps } from 'reka-ui'
7
+
8
+ import { cn } from '@/lib/utils'
9
+
10
+ const props = defineProps<ComboboxEmptyProps & { class?: HTMLAttributes['class'] }>()
11
+
12
+ const delegatedProps = reactiveOmit(props, 'class')
13
+ </script>
14
+
15
+ <template>
16
+ <ComboboxEmpty v-bind="delegatedProps" :class="cn('py-6 text-center text-sm', props.class)">
17
+ <slot />
18
+ </ComboboxEmpty>
19
+ </template>
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import { ComboboxGroup } from 'reka-ui'
6
+ import type { ComboboxGroupProps } from 'reka-ui'
7
+
8
+ import { cn } from '@/lib/utils'
9
+
10
+ const props = defineProps<ComboboxGroupProps & {
11
+ class?: HTMLAttributes['class']
12
+ }>()
13
+
14
+ const delegatedProps = reactiveOmit(props, 'class')
15
+ </script>
16
+
17
+ <template>
18
+ <ComboboxGroup
19
+ v-bind="delegatedProps"
20
+ :class="cn('overflow-hidden py-1 px-1', props.class)"
21
+ >
22
+ <slot />
23
+ </ComboboxGroup>
24
+ </template>
@@ -0,0 +1,22 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import { ComboboxItemIndicator } from 'reka-ui'
6
+ import type { ComboboxItemIndicatorProps } from 'reka-ui'
7
+
8
+ import { cn } from '@/lib/utils'
9
+
10
+ const props = defineProps<ComboboxItemIndicatorProps & { class?: HTMLAttributes['class'] }>()
11
+
12
+ const delegatedProps = reactiveOmit(props, 'class')
13
+ </script>
14
+
15
+ <template>
16
+ <ComboboxItemIndicator
17
+ v-bind="delegatedProps"
18
+ :class="cn('text-gray-500', props.class)"
19
+ >
20
+ <slot />
21
+ </ComboboxItemIndicator>
22
+ </template>
@@ -0,0 +1,31 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import {
6
+ ComboboxInput,
7
+ useForwardPropsEmits,
8
+ } from 'reka-ui'
9
+ import type { ComboboxInputEmits, ComboboxInputProps } from 'reka-ui'
10
+
11
+ import { cn } from '@/lib/utils'
12
+
13
+ const props = defineProps<ComboboxInputProps & {
14
+ class?: HTMLAttributes['class']
15
+ }>()
16
+
17
+ const emits = defineEmits<ComboboxInputEmits>()
18
+
19
+ const delegatedProps = reactiveOmit(props, 'class')
20
+
21
+ const forwarded = useForwardPropsEmits(delegatedProps, emits)
22
+ </script>
23
+
24
+ <template>
25
+ <ComboboxInput
26
+ v-bind="forwarded"
27
+ :class="cn('flex h-10 w-full bg-white-1000 border-b-[0.5px] border-gray-200 rounded-xl px-3 py-1 body-14-regular shadow-sm text-gray-900 transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-gray-400 focus-visible:bg-white-1000 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50', props.class)"
28
+ >
29
+ <slot />
30
+ </ComboboxInput>
31
+ </template>
@@ -0,0 +1,28 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import {
6
+ ComboboxItem,
7
+ useForwardPropsEmits,
8
+ } from 'reka-ui'
9
+ import type { ComboboxItemEmits, ComboboxItemProps } from 'reka-ui'
10
+
11
+ import { cn } from '@/lib/utils'
12
+
13
+ const props = defineProps<ComboboxItemProps & { class?: HTMLAttributes['class'] }>()
14
+ const emits = defineEmits<ComboboxItemEmits>()
15
+
16
+ const delegatedProps = reactiveOmit(props, 'class')
17
+
18
+ const forwarded = useForwardPropsEmits(delegatedProps, emits)
19
+ </script>
20
+
21
+ <template>
22
+ <ComboboxItem
23
+ v-bind="forwarded"
24
+ :class="cn('relative flex cursor-pointer gap-2 select-none justify-between items-center rounded-lg px-2 py-1.5 text-sm font-medium outline-none data-[highlighted]:bg-gray-100 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:size-4 [&_svg]:shrink-0', props.class)"
25
+ >
26
+ <slot />
27
+ </ComboboxItem>
28
+ </template>
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import { ComboboxLabel, useForwardProps } from 'reka-ui'
6
+ import type { ComboboxLabelProps } from 'reka-ui'
7
+
8
+ import { cn } from '@/lib/utils'
9
+
10
+ const props = defineProps<ComboboxLabelProps & { class?: HTMLAttributes['class'] }>()
11
+
12
+ const delegatedProps = reactiveOmit(props, 'class')
13
+
14
+ const forwarded = useForwardProps(delegatedProps)
15
+ </script>
16
+
17
+ <template>
18
+ <ComboboxLabel
19
+ v-bind="forwarded"
20
+ :class="cn('px-2 py-1 body-12-semibold text-gray-500', props.class)"
21
+ >
22
+ <slot />
23
+ </ComboboxLabel>
24
+ </template>
@@ -0,0 +1,90 @@
1
+ <script setup lang="ts">
2
+ import type { HTMLAttributes } from 'vue'
3
+ import { reactiveOmit } from '@vueuse/core'
4
+
5
+ import {
6
+ ComboboxContent,
7
+ ComboboxPortal,
8
+ ComboboxViewport,
9
+ useForwardPropsEmits,
10
+ } from 'reka-ui'
11
+ import type { ComboboxContentEmits, ComboboxContentProps } from 'reka-ui'
12
+
13
+ import { cn } from '@/lib/utils'
14
+
15
+ const props = withDefaults(
16
+ defineProps<ComboboxContentProps & { class?: HTMLAttributes['class'], hasAnimate?: boolean, disablePortal?: boolean }>(),
17
+ {
18
+ position: 'popper',
19
+ align: 'center',
20
+ sideOffset: 3,
21
+ hasAnimate: false,
22
+ disablePortal: false,
23
+ },
24
+ )
25
+ const emits = defineEmits<ComboboxContentEmits>()
26
+
27
+ const delegatedProps = reactiveOmit(props, 'class')
28
+
29
+ const forwarded = useForwardPropsEmits(delegatedProps, emits)
30
+ </script>
31
+
32
+ <template>
33
+ <template v-if="props.disablePortal">
34
+ <ComboboxContent
35
+ v-bind="forwarded"
36
+ :class="cn('ComboboxContent z-[9999] w-200px shadow-lg outline-none rounded-xl bg-white-1000 border-[0.5px] border-gray-200 pointer-events-auto', props.class)"
37
+ >
38
+ <ComboboxViewport>
39
+ <slot />
40
+ </ComboboxViewport>
41
+ </ComboboxContent>
42
+ </template>
43
+ <ComboboxPortal v-else>
44
+ <ComboboxContent
45
+ v-bind="forwarded"
46
+ :class="cn('ComboboxContent z-50 w-200px shadow-lg outline-none rounded-xl bg-white-1000 border-[0.5px] border-gray-200 pointer-events-auto', props.class)"
47
+ >
48
+ <ComboboxViewport>
49
+ <slot />
50
+ </ComboboxViewport>
51
+ </ComboboxContent>
52
+ </ComboboxPortal>
53
+ </template>
54
+
55
+ <style>
56
+ .ComboboxContent {
57
+ transform-origin: var(--reka-combobox-content-transform-origin);
58
+
59
+ &[data-state="open"] {
60
+ animation: slideDownAndFade 0.12s ease-out forwards;
61
+ }
62
+
63
+ &[data-state="closed"] {
64
+ animation: slideUpAndFade 0.12s ease-out forwards;
65
+ animation-delay: 0s;
66
+ }
67
+ }
68
+
69
+ @keyframes slideDownAndFade {
70
+ from {
71
+ opacity: 0;
72
+ transform: translateY(2px) scale(0.97);
73
+ }
74
+ to {
75
+ opacity: 1;
76
+ transform: scale(1);
77
+ }
78
+ }
79
+
80
+ @keyframes slideUpAndFade {
81
+ from {
82
+ opacity: 1;
83
+ transform: translateY(0) scale(1);
84
+ }
85
+ to {
86
+ opacity: 0;
87
+ transform: translateY(-2px) scale(0.97);
88
+ }
89
+ }
90
+ </style>