@eslamdevui/ui 3.3.4 → 4.0.0-beta

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 (622) hide show
  1. package/.nuxt/ui/alert.ts +0 -5
  2. package/.nuxt/ui/badge.ts +1 -6
  3. package/.nuxt/ui/banner.ts +4 -1
  4. package/.nuxt/ui/blog-post.ts +3 -1
  5. package/.nuxt/ui/blog-posts.ts +0 -5
  6. package/.nuxt/ui/button.ts +1 -6
  7. package/.nuxt/ui/carousel.ts +0 -5
  8. package/.nuxt/ui/changelog-version.ts +1 -1
  9. package/.nuxt/ui/changelog-versions.ts +2 -2
  10. package/.nuxt/ui/chat-message.ts +1 -1
  11. package/.nuxt/ui/content/content-navigation.ts +110 -83
  12. package/.nuxt/ui/content/content-surround.ts +0 -5
  13. package/.nuxt/ui/content/content-toc.ts +12 -7
  14. package/.nuxt/ui/dashboard-navbar.ts +0 -5
  15. package/.nuxt/ui/dashboard-sidebar-collapse.ts +0 -5
  16. package/.nuxt/ui/dashboard-sidebar-toggle.ts +0 -5
  17. package/.nuxt/ui/dashboard-sidebar.ts +0 -10
  18. package/.nuxt/ui/drawer.ts +1 -1
  19. package/.nuxt/ui/{button-group.ts → field-group.ts} +0 -13
  20. package/.nuxt/ui/file-upload.ts +0 -5
  21. package/.nuxt/ui/header.ts +0 -5
  22. package/.nuxt/ui/index.ts +10 -11
  23. package/.nuxt/ui/input-menu.ts +1 -10
  24. package/.nuxt/ui/input-number.ts +1 -6
  25. package/.nuxt/ui/input-tags.ts +1 -10
  26. package/.nuxt/ui/input.ts +2 -11
  27. package/.nuxt/ui/{page-marquee.ts → marquee.ts} +1 -1
  28. package/.nuxt/ui/page-card.ts +23 -20
  29. package/.nuxt/ui/page-cta.ts +4 -6
  30. package/.nuxt/ui/page-feature.ts +0 -5
  31. package/.nuxt/ui/page-hero.ts +4 -6
  32. package/.nuxt/ui/page-section.ts +0 -4
  33. package/.nuxt/ui/pricing-plans.ts +0 -5
  34. package/.nuxt/ui/progress.ts +3 -3
  35. package/.nuxt/ui/prose/code-tree.ts +1 -1
  36. package/.nuxt/ui/prose/img.ts +20 -1
  37. package/.nuxt/ui/select-menu.ts +1 -10
  38. package/.nuxt/ui/select.ts +8 -17
  39. package/.nuxt/ui/table.ts +0 -6
  40. package/.nuxt/ui/textarea.ts +2 -11
  41. package/.nuxt/ui/toast.ts +0 -5
  42. package/.nuxt/ui/tree.ts +1 -1
  43. package/.nuxt/ui/user.ts +0 -5
  44. package/README.md +21 -12
  45. package/cli/commands/make/component.mjs +2 -15
  46. package/cli/templates.mjs +32 -48
  47. package/dist/module.d.mts +8 -8
  48. package/dist/module.json +4 -4
  49. package/dist/module.mjs +48 -60
  50. package/dist/runtime/components/Accordion.d.vue.ts +79 -0
  51. package/dist/runtime/components/Accordion.vue +4 -4
  52. package/dist/runtime/components/Accordion.vue.d.ts +8 -6
  53. package/dist/runtime/components/Alert.d.vue.ts +81 -0
  54. package/dist/runtime/components/Alert.vue +2 -2
  55. package/dist/runtime/components/Alert.vue.d.ts +5 -5
  56. package/dist/runtime/components/App.d.vue.ts +25 -0
  57. package/dist/runtime/components/App.vue +1 -1
  58. package/dist/runtime/components/App.vue.d.ts +3 -2
  59. package/dist/runtime/components/AuthForm.d.vue.ts +128 -0
  60. package/dist/runtime/components/AuthForm.vue +31 -12
  61. package/dist/runtime/components/AuthForm.vue.d.ts +63 -20
  62. package/dist/runtime/components/Avatar.d.vue.ts +41 -0
  63. package/dist/runtime/components/Avatar.vue +1 -1
  64. package/dist/runtime/components/Avatar.vue.d.ts +4 -4
  65. package/dist/runtime/components/AvatarGroup.d.vue.ts +31 -0
  66. package/dist/runtime/components/AvatarGroup.vue.d.ts +2 -2
  67. package/dist/runtime/components/Badge.d.vue.ts +43 -0
  68. package/dist/runtime/components/Badge.vue +7 -7
  69. package/dist/runtime/components/Badge.vue.d.ts +2 -2
  70. package/dist/runtime/components/Banner.d.vue.ts +72 -0
  71. package/dist/runtime/components/Banner.vue +9 -5
  72. package/dist/runtime/components/Banner.vue.d.ts +13 -5
  73. package/dist/runtime/components/BlogPost.d.vue.ts +60 -0
  74. package/dist/runtime/components/BlogPost.vue +5 -1
  75. package/dist/runtime/components/BlogPost.vue.d.ts +4 -3
  76. package/dist/runtime/components/BlogPosts.d.vue.ts +31 -0
  77. package/dist/runtime/components/BlogPosts.vue.d.ts +4 -3
  78. package/dist/runtime/components/Breadcrumb.d.vue.ts +67 -0
  79. package/dist/runtime/components/Breadcrumb.vue +2 -2
  80. package/dist/runtime/components/Breadcrumb.vue.d.ts +7 -6
  81. package/dist/runtime/components/Button.d.vue.ts +44 -0
  82. package/dist/runtime/components/Button.vue +7 -7
  83. package/dist/runtime/components/Button.vue.d.ts +2 -2
  84. package/dist/runtime/components/Calendar.d.vue.ts +112 -0
  85. package/dist/runtime/components/Calendar.vue +5 -5
  86. package/dist/runtime/components/Calendar.vue.d.ts +9 -8
  87. package/dist/runtime/components/Card.d.vue.ts +29 -0
  88. package/dist/runtime/components/Card.vue.d.ts +2 -2
  89. package/dist/runtime/components/Carousel.d.vue.ts +127 -0
  90. package/dist/runtime/components/Carousel.vue +3 -3
  91. package/dist/runtime/components/Carousel.vue.d.ts +15 -15
  92. package/dist/runtime/components/ChangelogVersion.d.vue.ts +59 -0
  93. package/dist/runtime/components/ChangelogVersion.vue +3 -2
  94. package/dist/runtime/components/ChangelogVersion.vue.d.ts +4 -3
  95. package/dist/runtime/components/ChangelogVersions.d.vue.ts +78 -0
  96. package/dist/runtime/components/ChangelogVersions.vue +3 -3
  97. package/dist/runtime/components/ChangelogVersions.vue.d.ts +15 -11
  98. package/dist/runtime/components/ChatMessage.d.vue.ts +67 -0
  99. package/dist/runtime/components/ChatMessage.vue +58 -56
  100. package/dist/runtime/components/ChatMessage.vue.d.ts +25 -84
  101. package/dist/runtime/components/ChatMessages.d.vue.ts +83 -0
  102. package/dist/runtime/components/ChatMessages.vue +20 -36
  103. package/dist/runtime/components/ChatMessages.vue.d.ts +10 -9
  104. package/dist/runtime/components/ChatPalette.d.vue.ts +24 -0
  105. package/dist/runtime/components/ChatPalette.vue.d.ts +3 -3
  106. package/dist/runtime/components/ChatPrompt.d.vue.ts +61 -0
  107. package/dist/runtime/components/ChatPrompt.vue +25 -22
  108. package/dist/runtime/components/ChatPrompt.vue.d.ts +8 -7
  109. package/dist/runtime/components/ChatPromptSubmit.d.vue.ts +100 -0
  110. package/dist/runtime/components/ChatPromptSubmit.vue +43 -38
  111. package/dist/runtime/components/ChatPromptSubmit.vue.d.ts +15 -14
  112. package/dist/runtime/components/Checkbox.d.vue.ts +74 -0
  113. package/dist/runtime/components/Checkbox.vue +2 -2
  114. package/dist/runtime/components/Checkbox.vue.d.ts +8 -7
  115. package/dist/runtime/components/CheckboxGroup.d.vue.ts +89 -0
  116. package/dist/runtime/components/CheckboxGroup.vue +9 -9
  117. package/dist/runtime/components/CheckboxGroup.vue.d.ts +23 -18
  118. package/dist/runtime/components/Chip.d.vue.ts +57 -0
  119. package/dist/runtime/components/Chip.vue.d.ts +3 -3
  120. package/dist/runtime/components/Collapsible.d.vue.ts +35 -0
  121. package/dist/runtime/components/Collapsible.vue.d.ts +2 -2
  122. package/dist/runtime/components/ColorPicker.d.vue.ts +48 -0
  123. package/dist/runtime/components/ColorPicker.vue.d.ts +3 -3
  124. package/dist/runtime/components/CommandPalette.d.vue.ts +193 -0
  125. package/dist/runtime/components/CommandPalette.vue +11 -10
  126. package/dist/runtime/components/CommandPalette.vue.d.ts +12 -11
  127. package/dist/runtime/components/Container.d.vue.ts +18 -0
  128. package/dist/runtime/components/Container.vue.d.ts +1 -1
  129. package/dist/runtime/components/ContextMenu.d.vue.ts +110 -0
  130. package/dist/runtime/components/ContextMenu.vue +6 -5
  131. package/dist/runtime/components/ContextMenu.vue.d.ts +9 -8
  132. package/dist/runtime/components/ContextMenuContent.d.vue.ts +50 -0
  133. package/dist/runtime/components/ContextMenuContent.vue +10 -8
  134. package/dist/runtime/components/ContextMenuContent.vue.d.ts +8 -7
  135. package/dist/runtime/components/DashboardGroup.d.vue.ts +24 -0
  136. package/dist/runtime/components/DashboardGroup.vue +14 -12
  137. package/dist/runtime/components/DashboardGroup.vue.d.ts +2 -5
  138. package/dist/runtime/components/DashboardNavbar.d.vue.ts +52 -0
  139. package/dist/runtime/components/DashboardNavbar.vue +21 -23
  140. package/dist/runtime/components/DashboardNavbar.vue.d.ts +7 -8
  141. package/dist/runtime/components/DashboardPanel.d.vue.ts +30 -0
  142. package/dist/runtime/components/DashboardPanel.vue +19 -13
  143. package/dist/runtime/components/DashboardPanel.vue.d.ts +5 -3
  144. package/dist/runtime/components/DashboardResizeHandle.d.vue.ts +18 -0
  145. package/dist/runtime/components/DashboardResizeHandle.vue +1 -6
  146. package/dist/runtime/components/DashboardResizeHandle.vue.d.ts +1 -5
  147. package/dist/runtime/components/DashboardSearch.d.vue.ts +91 -0
  148. package/dist/runtime/components/DashboardSearch.vue +58 -57
  149. package/dist/runtime/components/DashboardSearch.vue.d.ts +53 -10
  150. package/dist/runtime/components/DashboardSearchButton.d.vue.ts +59 -0
  151. package/dist/runtime/components/DashboardSearchButton.vue +35 -47
  152. package/dist/runtime/components/DashboardSearchButton.vue.d.ts +7 -6
  153. package/dist/runtime/components/DashboardSidebar.d.vue.ts +75 -0
  154. package/dist/runtime/components/DashboardSidebar.vue +58 -66
  155. package/dist/runtime/components/DashboardSidebar.vue.d.ts +41 -38
  156. package/dist/runtime/components/DashboardSidebarCollapse.d.vue.ts +19 -0
  157. package/dist/runtime/components/DashboardSidebarCollapse.vue +9 -19
  158. package/dist/runtime/components/DashboardSidebarCollapse.vue.d.ts +8 -4
  159. package/dist/runtime/components/DashboardSidebarToggle.d.vue.ts +19 -0
  160. package/dist/runtime/components/DashboardSidebarToggle.vue +6 -4
  161. package/dist/runtime/components/DashboardSidebarToggle.vue.d.ts +3 -6
  162. package/dist/runtime/components/DashboardToolbar.d.vue.ts +25 -0
  163. package/dist/runtime/components/DashboardToolbar.vue.d.ts +3 -3
  164. package/dist/runtime/components/Drawer.d.vue.ts +84 -0
  165. package/dist/runtime/components/Drawer.vue.d.ts +3 -2
  166. package/dist/runtime/components/DropdownMenu.d.vue.ts +120 -0
  167. package/dist/runtime/components/DropdownMenu.vue +5 -5
  168. package/dist/runtime/components/DropdownMenu.vue.d.ts +9 -8
  169. package/dist/runtime/components/DropdownMenuContent.d.vue.ts +56 -0
  170. package/dist/runtime/components/DropdownMenuContent.vue +10 -8
  171. package/dist/runtime/components/DropdownMenuContent.vue.d.ts +8 -7
  172. package/dist/runtime/components/Error.d.vue.ts +47 -0
  173. package/dist/runtime/components/Error.vue +34 -31
  174. package/dist/runtime/components/Error.vue.d.ts +5 -10
  175. package/dist/runtime/components/FieldGroup.d.vue.ts +34 -0
  176. package/dist/runtime/components/{ButtonGroup.vue → FieldGroup.vue} +4 -4
  177. package/dist/runtime/components/FieldGroup.vue.d.ts +34 -0
  178. package/dist/runtime/components/FileUpload.d.vue.ts +166 -0
  179. package/dist/runtime/components/FileUpload.vue +12 -5
  180. package/dist/runtime/components/FileUpload.vue.d.ts +10 -11
  181. package/dist/runtime/components/Footer.d.vue.ts +29 -0
  182. package/dist/runtime/components/Footer.vue +1 -0
  183. package/dist/runtime/components/Footer.vue.d.ts +3 -3
  184. package/dist/runtime/components/FooterColumns.d.vue.ts +57 -0
  185. package/dist/runtime/components/FooterColumns.vue +4 -1
  186. package/dist/runtime/components/FooterColumns.vue.d.ts +16 -11
  187. package/dist/runtime/components/Form.d.vue.ts +114 -0
  188. package/dist/runtime/components/Form.vue +145 -61
  189. package/dist/runtime/components/Form.vue.d.ts +60 -17
  190. package/dist/runtime/components/FormField.d.vue.ts +61 -0
  191. package/dist/runtime/components/FormField.vue +10 -4
  192. package/dist/runtime/components/FormField.vue.d.ts +2 -2
  193. package/dist/runtime/components/Header.d.vue.ts +68 -0
  194. package/dist/runtime/components/Header.vue +12 -8
  195. package/dist/runtime/components/Header.vue.d.ts +19 -23
  196. package/dist/runtime/components/Icon.d.vue.ts +8 -0
  197. package/dist/runtime/components/Icon.vue +3 -2
  198. package/dist/runtime/components/Icon.vue.d.ts +2 -2
  199. package/dist/runtime/components/Input.d.vue.ts +74 -0
  200. package/dist/runtime/components/Input.vue +12 -9
  201. package/dist/runtime/components/Input.vue.d.ts +12 -15
  202. package/dist/runtime/components/InputMenu.d.vue.ts +330 -0
  203. package/dist/runtime/components/InputMenu.vue +24 -19
  204. package/dist/runtime/components/InputMenu.vue.d.ts +24 -231
  205. package/dist/runtime/components/InputNumber.d.vue.ts +188 -0
  206. package/dist/runtime/components/InputNumber.vue +16 -9
  207. package/dist/runtime/components/InputNumber.vue.d.ts +15 -87
  208. package/dist/runtime/components/InputTags.d.vue.ts +186 -0
  209. package/dist/runtime/components/InputTags.vue +11 -11
  210. package/dist/runtime/components/InputTags.vue.d.ts +8 -7
  211. package/dist/runtime/components/Kbd.d.vue.ts +38 -0
  212. package/dist/runtime/components/Kbd.vue.d.ts +2 -2
  213. package/dist/runtime/components/Link.d.vue.ts +91 -0
  214. package/dist/runtime/components/Link.vue.d.ts +1 -1
  215. package/dist/runtime/components/LinkBase.d.vue.ts +25 -0
  216. package/dist/runtime/components/LinkBase.vue.d.ts +1 -1
  217. package/dist/runtime/components/Main.d.vue.ts +20 -0
  218. package/dist/runtime/components/Main.vue.d.ts +1 -1
  219. package/dist/runtime/components/Marquee.d.vue.ts +32 -0
  220. package/dist/runtime/components/{PageMarquee.vue → Marquee.vue} +4 -4
  221. package/dist/runtime/components/Marquee.vue.d.ts +32 -0
  222. package/dist/runtime/components/Modal.d.vue.ts +107 -0
  223. package/dist/runtime/components/Modal.vue +1 -1
  224. package/dist/runtime/components/Modal.vue.d.ts +6 -5
  225. package/dist/runtime/components/NavigationMenu.d.vue.ts +171 -0
  226. package/dist/runtime/components/NavigationMenu.vue +2 -2
  227. package/dist/runtime/components/NavigationMenu.vue.d.ts +9 -8
  228. package/dist/runtime/components/OverlayProvider.d.vue.ts +2 -0
  229. package/dist/runtime/components/OverlayProvider.vue.d.ts +1 -1
  230. package/dist/runtime/components/Page.d.vue.ts +25 -0
  231. package/dist/runtime/components/Page.vue.d.ts +3 -3
  232. package/dist/runtime/components/PageAnchors.d.vue.ts +47 -0
  233. package/dist/runtime/components/PageAnchors.vue +4 -1
  234. package/dist/runtime/components/PageAnchors.vue.d.ts +16 -11
  235. package/dist/runtime/components/PageAside.d.vue.ts +27 -0
  236. package/dist/runtime/components/PageAside.vue.d.ts +3 -3
  237. package/dist/runtime/components/PageBody.d.vue.ts +18 -0
  238. package/dist/runtime/components/PageBody.vue.d.ts +1 -1
  239. package/dist/runtime/components/PageCTA.d.vue.ts +56 -0
  240. package/dist/runtime/components/PageCTA.vue +31 -13
  241. package/dist/runtime/components/PageCTA.vue.d.ts +11 -4
  242. package/dist/runtime/components/PageCard.d.vue.ts +72 -0
  243. package/dist/runtime/components/PageCard.vue +4 -3
  244. package/dist/runtime/components/PageCard.vue.d.ts +5 -4
  245. package/dist/runtime/components/PageColumns.d.vue.ts +18 -0
  246. package/dist/runtime/components/PageColumns.vue.d.ts +1 -1
  247. package/dist/runtime/components/PageFeature.d.vue.ts +44 -0
  248. package/dist/runtime/components/PageFeature.vue +4 -2
  249. package/dist/runtime/components/PageFeature.vue.d.ts +5 -4
  250. package/dist/runtime/components/PageGrid.d.vue.ts +18 -0
  251. package/dist/runtime/components/PageGrid.vue.d.ts +1 -1
  252. package/dist/runtime/components/PageHeader.d.vue.ts +36 -0
  253. package/dist/runtime/components/PageHeader.vue +1 -0
  254. package/dist/runtime/components/PageHeader.vue.d.ts +4 -3
  255. package/dist/runtime/components/PageHero.d.vue.ts +53 -0
  256. package/dist/runtime/components/PageHero.vue +31 -17
  257. package/dist/runtime/components/PageHero.vue.d.ts +9 -5
  258. package/dist/runtime/components/PageLinks.d.vue.ts +49 -0
  259. package/dist/runtime/components/PageLinks.vue +4 -1
  260. package/dist/runtime/components/PageLinks.vue.d.ts +16 -11
  261. package/dist/runtime/components/PageList.d.vue.ts +21 -0
  262. package/dist/runtime/components/PageList.vue.d.ts +1 -1
  263. package/dist/runtime/components/PageLogos.d.vue.ts +33 -0
  264. package/dist/runtime/components/PageLogos.vue +5 -4
  265. package/dist/runtime/components/PageLogos.vue.d.ts +6 -5
  266. package/dist/runtime/components/PageSection.d.vue.ts +68 -0
  267. package/dist/runtime/components/PageSection.vue +49 -33
  268. package/dist/runtime/components/PageSection.vue.d.ts +12 -8
  269. package/dist/runtime/components/Pagination.d.vue.ts +118 -0
  270. package/dist/runtime/components/Pagination.vue +5 -5
  271. package/dist/runtime/components/Pagination.vue.d.ts +10 -10
  272. package/dist/runtime/components/PinInput.d.vue.ts +60 -0
  273. package/dist/runtime/components/PinInput.vue +3 -1
  274. package/dist/runtime/components/PinInput.vue.d.ts +10 -10
  275. package/dist/runtime/components/Popover.d.vue.ts +71 -0
  276. package/dist/runtime/components/Popover.vue.d.ts +3 -2
  277. package/dist/runtime/components/PricingPlan.d.vue.ts +112 -0
  278. package/dist/runtime/components/PricingPlan.vue +17 -9
  279. package/dist/runtime/components/PricingPlan.vue.d.ts +7 -4
  280. package/dist/runtime/components/PricingPlans.d.vue.ts +44 -0
  281. package/dist/runtime/components/PricingPlans.vue +2 -2
  282. package/dist/runtime/components/PricingPlans.vue.d.ts +6 -3
  283. package/dist/runtime/components/PricingTable.d.vue.ts +105 -0
  284. package/dist/runtime/components/PricingTable.vue +22 -77
  285. package/dist/runtime/components/PricingTable.vue.d.ts +15 -8
  286. package/dist/runtime/components/Progress.d.vue.ts +66 -0
  287. package/dist/runtime/components/Progress.vue +2 -3
  288. package/dist/runtime/components/Progress.vue.d.ts +2 -2
  289. package/dist/runtime/components/RadioGroup.d.vue.ts +99 -0
  290. package/dist/runtime/components/RadioGroup.vue +13 -11
  291. package/dist/runtime/components/RadioGroup.vue.d.ts +21 -16
  292. package/dist/runtime/components/Select.d.vue.ts +254 -0
  293. package/dist/runtime/components/Select.vue +28 -18
  294. package/dist/runtime/components/Select.vue.d.ts +22 -21
  295. package/dist/runtime/components/SelectMenu.d.vue.ts +303 -0
  296. package/dist/runtime/components/SelectMenu.vue +19 -14
  297. package/dist/runtime/components/SelectMenu.vue.d.ts +22 -21
  298. package/dist/runtime/components/Separator.d.vue.ts +54 -0
  299. package/dist/runtime/components/Separator.vue +1 -1
  300. package/dist/runtime/components/Separator.vue.d.ts +4 -4
  301. package/dist/runtime/components/Skeleton.d.vue.ts +17 -0
  302. package/dist/runtime/components/Skeleton.vue.d.ts +1 -1
  303. package/dist/runtime/components/Slideover.d.vue.ts +108 -0
  304. package/dist/runtime/components/Slideover.vue +1 -1
  305. package/dist/runtime/components/Slideover.vue.d.ts +6 -5
  306. package/dist/runtime/components/Slider.d.vue.ts +57 -0
  307. package/dist/runtime/components/Slider.vue +1 -1
  308. package/dist/runtime/components/Slider.vue.d.ts +7 -8
  309. package/dist/runtime/components/Stepper.d.vue.ts +87 -0
  310. package/dist/runtime/components/Stepper.vue.d.ts +11 -9
  311. package/dist/runtime/components/Switch.d.vue.ts +71 -0
  312. package/dist/runtime/components/Switch.vue +3 -3
  313. package/dist/runtime/components/Switch.vue.d.ts +9 -8
  314. package/dist/runtime/components/Table.d.vue.ts +201 -0
  315. package/dist/runtime/components/Table.vue +2 -2
  316. package/dist/runtime/components/Table.vue.d.ts +28 -28
  317. package/dist/runtime/components/Tabs.d.vue.ts +99 -0
  318. package/dist/runtime/components/Tabs.vue +17 -30
  319. package/dist/runtime/components/Tabs.vue.d.ts +6 -5
  320. package/dist/runtime/components/Textarea.d.vue.ts +74 -0
  321. package/dist/runtime/components/Textarea.vue +8 -5
  322. package/dist/runtime/components/Textarea.vue.d.ts +7 -12
  323. package/dist/runtime/components/Timeline.d.vue.ts +71 -0
  324. package/dist/runtime/components/Timeline.vue.d.ts +5 -4
  325. package/dist/runtime/components/Toast.d.vue.ts +165 -0
  326. package/dist/runtime/components/Toast.vue +2 -2
  327. package/dist/runtime/components/Toast.vue.d.ts +9 -8
  328. package/dist/runtime/components/Toaster.d.vue.ts +44 -0
  329. package/dist/runtime/components/Toaster.vue.d.ts +2 -2
  330. package/dist/runtime/components/Tooltip.d.vue.ts +57 -0
  331. package/dist/runtime/components/Tooltip.vue +2 -2
  332. package/dist/runtime/components/Tooltip.vue.d.ts +3 -2
  333. package/dist/runtime/components/Tree.d.vue.ts +112 -0
  334. package/dist/runtime/components/Tree.vue +77 -34
  335. package/dist/runtime/components/Tree.vue.d.ts +27 -28
  336. package/dist/runtime/components/User.d.vue.ts +47 -0
  337. package/dist/runtime/components/User.vue +3 -0
  338. package/dist/runtime/components/User.vue.d.ts +4 -3
  339. package/dist/runtime/components/color-mode/ColorModeAvatar.d.vue.ts +7 -0
  340. package/dist/runtime/components/color-mode/ColorModeAvatar.vue +1 -0
  341. package/dist/runtime/components/color-mode/ColorModeAvatar.vue.d.ts +2 -2
  342. package/dist/runtime/components/color-mode/ColorModeButton.d.vue.ts +23 -0
  343. package/dist/runtime/components/color-mode/ColorModeButton.vue +3 -2
  344. package/dist/runtime/components/color-mode/ColorModeButton.vue.d.ts +6 -7
  345. package/dist/runtime/components/color-mode/ColorModeImage.d.vue.ts +6 -0
  346. package/dist/runtime/components/color-mode/ColorModeImage.vue +0 -4
  347. package/dist/runtime/components/color-mode/ColorModeImage.vue.d.ts +3 -3
  348. package/dist/runtime/components/color-mode/ColorModeSelect.d.vue.ts +5 -0
  349. package/dist/runtime/components/color-mode/ColorModeSelect.vue +5 -3
  350. package/dist/runtime/components/color-mode/ColorModeSelect.vue.d.ts +3 -5
  351. package/dist/runtime/components/color-mode/ColorModeSwitch.d.vue.ts +5 -0
  352. package/dist/runtime/components/color-mode/ColorModeSwitch.vue +3 -2
  353. package/dist/runtime/components/color-mode/ColorModeSwitch.vue.d.ts +3 -5
  354. package/dist/runtime/components/content/ContentNavigation.d.vue.ts +102 -0
  355. package/dist/runtime/components/content/ContentNavigation.vue +44 -81
  356. package/dist/runtime/components/content/ContentNavigation.vue.d.ts +76 -27
  357. package/dist/runtime/components/content/ContentSearch.d.vue.ts +114 -0
  358. package/dist/runtime/components/content/ContentSearch.vue +40 -58
  359. package/dist/runtime/components/content/ContentSearch.vue.d.ts +28 -29
  360. package/dist/runtime/components/content/ContentSearchButton.d.vue.ts +59 -0
  361. package/dist/runtime/components/content/ContentSearchButton.vue +21 -35
  362. package/dist/runtime/components/content/ContentSearchButton.vue.d.ts +6 -5
  363. package/dist/runtime/components/content/ContentSurround.d.vue.ts +59 -0
  364. package/dist/runtime/components/content/ContentSurround.vue +15 -14
  365. package/dist/runtime/components/content/ContentSurround.vue.d.ts +18 -11
  366. package/dist/runtime/components/content/ContentToc.d.vue.ts +88 -0
  367. package/dist/runtime/components/content/ContentToc.vue +18 -28
  368. package/dist/runtime/components/content/ContentToc.vue.d.ts +19 -17
  369. package/dist/runtime/components/locale/LocaleSelect.d.vue.ts +15 -0
  370. package/dist/runtime/components/locale/LocaleSelect.vue +34 -5
  371. package/dist/runtime/components/locale/LocaleSelect.vue.d.ts +6 -7
  372. package/dist/runtime/components/prose/A.d.vue.ts +15 -0
  373. package/dist/runtime/components/prose/A.vue.d.ts +1 -1
  374. package/dist/runtime/components/prose/Accordion.d.vue.ts +16 -0
  375. package/dist/runtime/components/prose/Accordion.vue +2 -1
  376. package/dist/runtime/components/prose/Accordion.vue.d.ts +1 -1
  377. package/dist/runtime/components/prose/AccordionItem.d.vue.ts +15 -0
  378. package/dist/runtime/components/prose/AccordionItem.vue.d.ts +1 -1
  379. package/dist/runtime/components/prose/Badge.d.vue.ts +13 -0
  380. package/dist/runtime/components/prose/Badge.vue +1 -0
  381. package/dist/runtime/components/prose/Badge.vue.d.ts +1 -1
  382. package/dist/runtime/components/prose/Blockquote.d.vue.ts +13 -0
  383. package/dist/runtime/components/prose/Blockquote.vue.d.ts +1 -1
  384. package/dist/runtime/components/prose/Callout.d.vue.ts +26 -0
  385. package/dist/runtime/components/prose/Callout.vue +5 -19
  386. package/dist/runtime/components/prose/Callout.vue.d.ts +9 -9
  387. package/dist/runtime/components/prose/Card.d.vue.ts +29 -0
  388. package/dist/runtime/components/prose/Card.vue +15 -37
  389. package/dist/runtime/components/prose/Card.vue.d.ts +7 -8
  390. package/dist/runtime/components/prose/CardGroup.d.vue.ts +13 -0
  391. package/dist/runtime/components/prose/CardGroup.vue.d.ts +1 -1
  392. package/dist/runtime/components/prose/Code.d.vue.ts +22 -0
  393. package/dist/runtime/components/prose/Code.vue.d.ts +3 -3
  394. package/dist/runtime/components/prose/CodeCollapse.d.vue.ts +47 -0
  395. package/dist/runtime/components/prose/CodeCollapse.vue +4 -3
  396. package/dist/runtime/components/prose/CodeCollapse.vue.d.ts +7 -6
  397. package/dist/runtime/components/prose/CodeGroup.d.vue.ts +37 -0
  398. package/dist/runtime/components/prose/CodeGroup.vue +3 -3
  399. package/dist/runtime/components/prose/CodeGroup.vue.d.ts +5 -5
  400. package/dist/runtime/components/prose/CodeIcon.d.vue.ts +7 -0
  401. package/dist/runtime/components/prose/CodeIcon.vue +11 -7
  402. package/dist/runtime/components/prose/CodeIcon.vue.d.ts +3 -20
  403. package/dist/runtime/components/prose/CodePreview.d.vue.ts +19 -0
  404. package/dist/runtime/components/prose/CodePreview.vue.d.ts +3 -3
  405. package/dist/runtime/components/prose/CodeTree.d.vue.ts +28 -0
  406. package/dist/runtime/components/prose/CodeTree.vue +74 -78
  407. package/dist/runtime/components/prose/CodeTree.vue.d.ts +3 -5
  408. package/dist/runtime/components/prose/Collapsible.d.vue.ts +39 -0
  409. package/dist/runtime/components/prose/Collapsible.vue +5 -3
  410. package/dist/runtime/components/prose/Collapsible.vue.d.ts +5 -4
  411. package/dist/runtime/components/prose/Em.d.vue.ts +13 -0
  412. package/dist/runtime/components/prose/Em.vue.d.ts +1 -1
  413. package/dist/runtime/components/prose/Field.d.vue.ts +39 -0
  414. package/dist/runtime/components/prose/Field.vue.d.ts +3 -3
  415. package/dist/runtime/components/prose/FieldGroup.d.vue.ts +18 -0
  416. package/dist/runtime/components/prose/FieldGroup.vue.d.ts +1 -1
  417. package/dist/runtime/components/prose/H1.d.vue.ts +19 -0
  418. package/dist/runtime/components/prose/H1.vue +1 -1
  419. package/dist/runtime/components/prose/H1.vue.d.ts +3 -3
  420. package/dist/runtime/components/prose/H2.d.vue.ts +19 -0
  421. package/dist/runtime/components/prose/H2.vue +2 -1
  422. package/dist/runtime/components/prose/H2.vue.d.ts +3 -3
  423. package/dist/runtime/components/prose/H3.d.vue.ts +19 -0
  424. package/dist/runtime/components/prose/H3.vue +2 -1
  425. package/dist/runtime/components/prose/H3.vue.d.ts +3 -3
  426. package/dist/runtime/components/prose/H4.d.vue.ts +19 -0
  427. package/dist/runtime/components/prose/H4.vue +1 -1
  428. package/dist/runtime/components/prose/H4.vue.d.ts +3 -3
  429. package/dist/runtime/components/prose/Hr.d.vue.ts +5 -0
  430. package/dist/runtime/components/prose/Hr.vue.d.ts +1 -1
  431. package/dist/runtime/components/prose/Icon.d.vue.ts +6 -0
  432. package/dist/runtime/components/prose/Icon.vue +1 -0
  433. package/dist/runtime/components/prose/Icon.vue.d.ts +1 -1
  434. package/dist/runtime/components/prose/Img.d.vue.ts +21 -0
  435. package/dist/runtime/components/prose/Img.vue +53 -11
  436. package/dist/runtime/components/prose/Img.vue.d.ts +13 -1
  437. package/dist/runtime/components/prose/Kbd.d.vue.ts +6 -0
  438. package/dist/runtime/components/prose/Kbd.vue +1 -0
  439. package/dist/runtime/components/prose/Kbd.vue.d.ts +1 -1
  440. package/dist/runtime/components/prose/Li.d.vue.ts +13 -0
  441. package/dist/runtime/components/prose/Li.vue.d.ts +1 -1
  442. package/dist/runtime/components/prose/Ol.d.vue.ts +13 -0
  443. package/dist/runtime/components/prose/Ol.vue.d.ts +1 -1
  444. package/dist/runtime/components/prose/P.d.vue.ts +13 -0
  445. package/dist/runtime/components/prose/P.vue.d.ts +1 -1
  446. package/dist/runtime/components/prose/Pre.d.vue.ts +26 -0
  447. package/dist/runtime/components/prose/Pre.vue +9 -16
  448. package/dist/runtime/components/prose/Pre.vue.d.ts +4 -3
  449. package/dist/runtime/components/prose/Script.d.vue.ts +5 -0
  450. package/dist/runtime/components/prose/Script.vue.d.ts +4 -11
  451. package/dist/runtime/components/prose/Steps.d.vue.ts +22 -0
  452. package/dist/runtime/components/prose/Steps.vue.d.ts +2 -2
  453. package/dist/runtime/components/prose/Strong.d.vue.ts +13 -0
  454. package/dist/runtime/components/prose/Strong.vue.d.ts +1 -1
  455. package/dist/runtime/components/prose/Table.d.vue.ts +18 -0
  456. package/dist/runtime/components/prose/Table.vue.d.ts +3 -3
  457. package/dist/runtime/components/prose/Tabs.d.vue.ts +36 -0
  458. package/dist/runtime/components/prose/Tabs.vue +2 -1
  459. package/dist/runtime/components/prose/Tabs.vue.d.ts +3 -3
  460. package/dist/runtime/components/prose/TabsItem.d.vue.ts +15 -0
  461. package/dist/runtime/components/prose/TabsItem.vue.d.ts +1 -1
  462. package/dist/runtime/components/prose/Tbody.d.vue.ts +13 -0
  463. package/dist/runtime/components/prose/Tbody.vue.d.ts +1 -1
  464. package/dist/runtime/components/prose/Td.d.vue.ts +13 -0
  465. package/dist/runtime/components/prose/Td.vue.d.ts +1 -1
  466. package/dist/runtime/components/prose/Th.d.vue.ts +13 -0
  467. package/dist/runtime/components/prose/Th.vue.d.ts +1 -1
  468. package/dist/runtime/components/prose/Thead.d.vue.ts +13 -0
  469. package/dist/runtime/components/prose/Thead.vue.d.ts +1 -1
  470. package/dist/runtime/components/prose/Tr.d.vue.ts +13 -0
  471. package/dist/runtime/components/prose/Tr.vue.d.ts +1 -1
  472. package/dist/runtime/components/prose/Ul.d.vue.ts +13 -0
  473. package/dist/runtime/components/prose/Ul.vue.d.ts +1 -1
  474. package/dist/runtime/components/prose/callout/Caution.d.vue.ts +14 -0
  475. package/dist/runtime/components/prose/callout/Caution.vue.d.ts +1 -1
  476. package/dist/runtime/components/prose/callout/Note.d.vue.ts +14 -0
  477. package/dist/runtime/components/prose/callout/Note.vue.d.ts +1 -1
  478. package/dist/runtime/components/prose/callout/Tip.d.vue.ts +14 -0
  479. package/dist/runtime/components/prose/callout/Tip.vue.d.ts +1 -1
  480. package/dist/runtime/components/prose/callout/Warning.d.vue.ts +14 -0
  481. package/dist/runtime/components/prose/callout/Warning.vue.d.ts +1 -1
  482. package/dist/runtime/composables/useAvatarGroup.js +1 -1
  483. package/dist/runtime/composables/useComponentIcons.d.ts +5 -5
  484. package/dist/runtime/composables/useContentSearch.d.ts +1 -2
  485. package/dist/runtime/composables/{useButtonGroup.d.ts → useFieldGroup.d.ts} +5 -5
  486. package/dist/runtime/composables/useFieldGroup.js +9 -0
  487. package/dist/runtime/composables/useFileUpload.js +7 -1
  488. package/dist/runtime/composables/useFormField.d.ts +3 -1
  489. package/dist/runtime/composables/useFormField.js +8 -10
  490. package/dist/runtime/composables/useLocale.js +1 -1
  491. package/dist/runtime/composables/useOverlay.d.ts +1 -1
  492. package/dist/runtime/composables/useOverlay.js +4 -3
  493. package/dist/runtime/composables/usePortal.js +1 -1
  494. package/dist/runtime/composables/useResizable.d.ts +49 -0
  495. package/dist/runtime/composables/useResizable.js +77 -47
  496. package/dist/runtime/composables/useScrollspy.d.ts +2 -3
  497. package/dist/runtime/composables/useScrollspy.js +16 -13
  498. package/dist/runtime/index.css +1 -1
  499. package/dist/runtime/inertia/components/Link.d.vue.ts +63 -0
  500. package/dist/runtime/inertia/components/Link.vue +3 -0
  501. package/dist/runtime/inertia/components/Link.vue.d.ts +1 -1
  502. package/dist/runtime/inertia/components/LinkBase.d.vue.ts +25 -0
  503. package/dist/runtime/inertia/components/LinkBase.vue.d.ts +1 -1
  504. package/dist/runtime/inertia/stubs.d.ts +1 -1
  505. package/dist/runtime/locale/ar.js +101 -28
  506. package/dist/runtime/locale/az.js +101 -28
  507. package/dist/runtime/locale/bg.js +101 -28
  508. package/dist/runtime/locale/bn.js +101 -28
  509. package/dist/runtime/locale/ca.js +101 -28
  510. package/dist/runtime/locale/ckb.js +101 -28
  511. package/dist/runtime/locale/cs.js +101 -28
  512. package/dist/runtime/locale/da.js +101 -28
  513. package/dist/runtime/locale/de.js +101 -28
  514. package/dist/runtime/locale/de_ch.d.ts +3 -0
  515. package/dist/runtime/locale/de_ch.js +129 -0
  516. package/dist/runtime/locale/el.js +101 -28
  517. package/dist/runtime/locale/en.js +60 -57
  518. package/dist/runtime/locale/es.js +101 -28
  519. package/dist/runtime/locale/et.js +101 -28
  520. package/dist/runtime/locale/fa_ir.js +101 -28
  521. package/dist/runtime/locale/fi.js +101 -28
  522. package/dist/runtime/locale/fr.js +101 -28
  523. package/dist/runtime/locale/he.js +101 -26
  524. package/dist/runtime/locale/hi.js +101 -28
  525. package/dist/runtime/locale/hu.js +101 -28
  526. package/dist/runtime/locale/hy.js +101 -28
  527. package/dist/runtime/locale/id.js +102 -29
  528. package/dist/runtime/locale/index.d.ts +2 -0
  529. package/dist/runtime/locale/index.js +2 -0
  530. package/dist/runtime/locale/it.js +101 -28
  531. package/dist/runtime/locale/ja.js +101 -28
  532. package/dist/runtime/locale/ka.d.ts +3 -0
  533. package/dist/runtime/locale/ka.js +132 -0
  534. package/dist/runtime/locale/kk.js +100 -27
  535. package/dist/runtime/locale/km.js +101 -28
  536. package/dist/runtime/locale/ko.js +101 -28
  537. package/dist/runtime/locale/ky.js +101 -28
  538. package/dist/runtime/locale/lb.js +101 -28
  539. package/dist/runtime/locale/lt.js +101 -28
  540. package/dist/runtime/locale/mn.js +101 -28
  541. package/dist/runtime/locale/ms.js +101 -28
  542. package/dist/runtime/locale/nb_no.js +101 -28
  543. package/dist/runtime/locale/nl.js +101 -28
  544. package/dist/runtime/locale/pl.js +101 -28
  545. package/dist/runtime/locale/pt.js +101 -28
  546. package/dist/runtime/locale/pt_br.js +101 -28
  547. package/dist/runtime/locale/ro.js +101 -28
  548. package/dist/runtime/locale/ru.js +101 -28
  549. package/dist/runtime/locale/sk.js +101 -28
  550. package/dist/runtime/locale/sl.js +101 -28
  551. package/dist/runtime/locale/sv.js +101 -28
  552. package/dist/runtime/locale/th.js +101 -28
  553. package/dist/runtime/locale/tj.js +101 -28
  554. package/dist/runtime/locale/tr.js +101 -28
  555. package/dist/runtime/locale/ug_cn.js +100 -27
  556. package/dist/runtime/locale/uk.js +101 -28
  557. package/dist/runtime/locale/ur.js +101 -28
  558. package/dist/runtime/locale/uz.js +101 -28
  559. package/dist/runtime/locale/vi.js +101 -28
  560. package/dist/runtime/locale/zh_cn.js +101 -28
  561. package/dist/runtime/locale/zh_tw.js +101 -28
  562. package/dist/runtime/plugins/colors.js +3 -3
  563. package/dist/runtime/types/form.d.ts +12 -13
  564. package/dist/runtime/types/form.js +1 -3
  565. package/dist/runtime/types/index.d.ts +12 -15
  566. package/dist/runtime/types/index.js +12 -15
  567. package/dist/runtime/types/input.d.ts +8 -0
  568. package/dist/runtime/types/input.js +0 -0
  569. package/dist/runtime/types/locale.d.ts +84 -71
  570. package/dist/runtime/types/tv.d.ts +9 -2
  571. package/dist/runtime/types/utils.d.ts +9 -5
  572. package/dist/runtime/types/utils.js +0 -1
  573. package/dist/runtime/utils/ai.d.ts +2 -0
  574. package/dist/runtime/utils/ai.js +3 -0
  575. package/dist/runtime/utils/content.d.ts +2 -13
  576. package/dist/runtime/utils/content.js +7 -59
  577. package/dist/runtime/utils/dashboard.js +1 -4
  578. package/dist/runtime/utils/form.d.ts +2 -6
  579. package/dist/runtime/utils/form.js +28 -60
  580. package/dist/runtime/utils/fuse.d.ts +2 -1
  581. package/dist/runtime/utils/index.d.ts +8 -4
  582. package/dist/runtime/utils/index.js +59 -27
  583. package/dist/runtime/utils/tv.d.ts +1 -1
  584. package/dist/runtime/vue/components/Icon.d.vue.ts +6 -0
  585. package/dist/runtime/vue/components/Icon.vue +3 -2
  586. package/dist/runtime/vue/components/Icon.vue.d.ts +3 -2
  587. package/dist/runtime/vue/components/Link.d.vue.ts +93 -0
  588. package/dist/runtime/vue/components/Link.vue.d.ts +1 -1
  589. package/dist/runtime/vue/components/color-mode/ColorModeButton.d.vue.ts +16 -0
  590. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue +3 -2
  591. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue.d.ts +4 -26
  592. package/dist/runtime/vue/components/color-mode/ColorModeSelect.d.vue.ts +5 -0
  593. package/dist/runtime/vue/components/color-mode/ColorModeSelect.vue +4 -3
  594. package/dist/runtime/vue/components/color-mode/ColorModeSelect.vue.d.ts +1 -1
  595. package/dist/runtime/vue/components/color-mode/ColorModeSwitch.d.vue.ts +5 -0
  596. package/dist/runtime/vue/components/color-mode/ColorModeSwitch.vue +3 -2
  597. package/dist/runtime/vue/components/color-mode/ColorModeSwitch.vue.d.ts +1 -1
  598. package/dist/runtime/vue/stubs.d.ts +1 -1
  599. package/dist/shared/{ui.CgUuvRXi.mjs → ui.BBlr3wu_.mjs} +1053 -1166
  600. package/dist/unplugin.d.mts +14 -14
  601. package/dist/unplugin.mjs +51 -32
  602. package/dist/vite.mjs +4 -4
  603. package/package.json +48 -68
  604. package/.nuxt/ui/content/index.ts +0 -5
  605. package/.nuxt/ui/content-navigation.ts +0 -341
  606. package/.nuxt/ui/content-search-button.ts +0 -6
  607. package/.nuxt/ui/content-search.ts +0 -6
  608. package/.nuxt/ui/content-surround.ts +0 -39
  609. package/.nuxt/ui/content-toc.ts +0 -150
  610. package/.nuxt/ui/page-accordion.ts +0 -7
  611. package/.nuxt/ui/scroll-to-section.ts +0 -3
  612. package/dist/runtime/components/ButtonGroup.vue.d.ts +0 -34
  613. package/dist/runtime/components/PageAccordion.vue +0 -26
  614. package/dist/runtime/components/PageAccordion.vue.d.ts +0 -21
  615. package/dist/runtime/components/PageMarquee.vue.d.ts +0 -32
  616. package/dist/runtime/components/ScrollToSection.vue +0 -62
  617. package/dist/runtime/components/ScrollToSection.vue.d.ts +0 -36
  618. package/dist/runtime/composables/useBreakpoint.d.ts +0 -11
  619. package/dist/runtime/composables/useBreakpoint.js +0 -53
  620. package/dist/runtime/composables/useButtonGroup.js +0 -9
  621. package/dist/runtime/composables/useLocalePro.d.ts +0 -3
  622. package/dist/runtime/composables/useLocalePro.js +0 -11
@@ -0,0 +1,201 @@
1
+ import type { Ref, WatchOptions } from 'vue';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { Cell, Header, RowData, TableMeta } from '@tanstack/table-core';
4
+ import type { CellContext, ColumnDef, ColumnFiltersOptions, ColumnFiltersState, ColumnOrderState, ColumnPinningOptions, ColumnPinningState, ColumnSizingInfoState, ColumnSizingOptions, ColumnSizingState, CoreOptions, ExpandedOptions, ExpandedState, FacetedOptions, GlobalFilterOptions, GroupingOptions, GroupingState, HeaderContext, PaginationOptions, PaginationState, Row, RowPinningOptions, RowPinningState, RowSelectionOptions, RowSelectionState, SortingOptions, SortingState, VisibilityOptions, VisibilityState } from '@tanstack/vue-table';
5
+ import theme from '#build/ui/table';
6
+ import type { ComponentConfig } from '../types/tv';
7
+ declare module '@tanstack/table-core' {
8
+ interface ColumnMeta<TData extends RowData, TValue> {
9
+ class?: {
10
+ th?: string | ((cell: Header<TData, TValue>) => string);
11
+ td?: string | ((cell: Cell<TData, TValue>) => string);
12
+ };
13
+ style?: {
14
+ th?: string | Record<string, string> | ((cell: Header<TData, TValue>) => string | Record<string, string>);
15
+ td?: string | Record<string, string> | ((cell: Cell<TData, TValue>) => string | Record<string, string>);
16
+ };
17
+ colspan?: {
18
+ td?: string | ((cell: Cell<TData, TValue>) => string);
19
+ };
20
+ rowspan?: {
21
+ td?: string | ((cell: Cell<TData, TValue>) => string);
22
+ };
23
+ }
24
+ interface TableMeta<TData> {
25
+ class?: {
26
+ tr?: string | ((row: Row<TData>) => string);
27
+ };
28
+ style?: {
29
+ tr?: string | Record<string, string> | ((row: Row<TData>) => string | Record<string, string>);
30
+ };
31
+ }
32
+ }
33
+ type Table = ComponentConfig<typeof theme, AppConfig, 'table'>;
34
+ export type TableRow<T> = Row<T>;
35
+ export type TableData = RowData;
36
+ export type TableColumn<T extends TableData, D = unknown> = ColumnDef<T, D>;
37
+ export interface TableOptions<T extends TableData = TableData> extends Omit<CoreOptions<T>, 'data' | 'columns' | 'getCoreRowModel' | 'state' | 'onStateChange' | 'renderFallbackValue'> {
38
+ state?: CoreOptions<T>['state'];
39
+ onStateChange?: CoreOptions<T>['onStateChange'];
40
+ renderFallbackValue?: CoreOptions<T>['renderFallbackValue'];
41
+ }
42
+ export interface TableProps<T extends TableData = TableData> extends TableOptions<T> {
43
+ /**
44
+ * The element or component this component should render as.
45
+ * @defaultValue 'div'
46
+ */
47
+ as?: any;
48
+ data?: T[];
49
+ columns?: TableColumn<T>[];
50
+ caption?: string;
51
+ meta?: TableMeta<T>;
52
+ /**
53
+ * The text to display when the table is empty.
54
+ * @defaultValue t('table.noData')
55
+ */
56
+ empty?: string;
57
+ /**
58
+ * Whether the table should have a sticky header or footer. True for both, 'header' for header only, 'footer' for footer only.
59
+ * @defaultValue false
60
+ */
61
+ sticky?: boolean | 'header' | 'footer';
62
+ /** Whether the table should be in loading state. */
63
+ loading?: boolean;
64
+ /**
65
+ * @defaultValue 'primary'
66
+ */
67
+ loadingColor?: Table['variants']['loadingColor'];
68
+ /**
69
+ * @defaultValue 'carousel'
70
+ */
71
+ loadingAnimation?: Table['variants']['loadingAnimation'];
72
+ /**
73
+ * Use the `watchOptions` prop to customize reactivity (for ex: disable deep watching for changes in your data or limiting the max traversal depth). This can improve performance by reducing unnecessary re-renders, but it should be used with caution as it may lead to unexpected behavior if not managed properly.
74
+ * @see [API](https://vuejs.org/api/options-state.html#watch)
75
+ * @see [Guide](https://vuejs.org/guide/essentials/watchers.html)
76
+ * @defaultValue { deep: true }
77
+ */
78
+ watchOptions?: WatchOptions;
79
+ /**
80
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/global-filtering#table-options)
81
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/global-filtering)
82
+ */
83
+ globalFilterOptions?: Omit<GlobalFilterOptions<T>, 'onGlobalFilterChange'>;
84
+ /**
85
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-filtering#table-options)
86
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-filtering)
87
+ */
88
+ columnFiltersOptions?: Omit<ColumnFiltersOptions<T>, 'getFilteredRowModel' | 'onColumnFiltersChange'>;
89
+ /**
90
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-pinning#table-options)
91
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-pinning)
92
+ */
93
+ columnPinningOptions?: Omit<ColumnPinningOptions, 'onColumnPinningChange'>;
94
+ /**
95
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-sizing#table-options)
96
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-sizing)
97
+ */
98
+ columnSizingOptions?: Omit<ColumnSizingOptions, 'onColumnSizingChange' | 'onColumnSizingInfoChange'>;
99
+ /**
100
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-visibility#table-options)
101
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-visibility)
102
+ */
103
+ visibilityOptions?: Omit<VisibilityOptions, 'onColumnVisibilityChange'>;
104
+ /**
105
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/sorting#table-options)
106
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/sorting)
107
+ */
108
+ sortingOptions?: Omit<SortingOptions<T>, 'getSortedRowModel' | 'onSortingChange'>;
109
+ /**
110
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/grouping#table-options)
111
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/grouping)
112
+ */
113
+ groupingOptions?: Omit<GroupingOptions, 'onGroupingChange'>;
114
+ /**
115
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/expanding#table-options)
116
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/expanding)
117
+ */
118
+ expandedOptions?: Omit<ExpandedOptions<T>, 'getExpandedRowModel' | 'onExpandedChange'>;
119
+ /**
120
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/row-selection#table-options)
121
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/row-selection)
122
+ */
123
+ rowSelectionOptions?: Omit<RowSelectionOptions<T>, 'onRowSelectionChange'>;
124
+ /**
125
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/row-pinning#table-options)
126
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/row-pinning)
127
+ */
128
+ rowPinningOptions?: Omit<RowPinningOptions<T>, 'onRowPinningChange'>;
129
+ /**
130
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/pagination#table-options)
131
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/pagination)
132
+ */
133
+ paginationOptions?: Omit<PaginationOptions, 'onPaginationChange'>;
134
+ /**
135
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-faceting#table-options)
136
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-faceting)
137
+ */
138
+ facetedOptions?: FacetedOptions<T>;
139
+ onSelect?: (row: TableRow<T>, e?: Event) => void;
140
+ onHover?: (e: Event, row: TableRow<T> | null) => void;
141
+ onContextmenu?: ((e: Event, row: TableRow<T>) => void) | Array<((e: Event, row: TableRow<T>) => void)>;
142
+ class?: any;
143
+ ui?: Table['slots'];
144
+ }
145
+ type DynamicHeaderSlots<T, K = keyof T> = Record<string, (props: HeaderContext<T, unknown>) => any> & Record<`${K extends string ? K : never}-header`, (props: HeaderContext<T, unknown>) => any>;
146
+ type DynamicFooterSlots<T, K = keyof T> = Record<string, (props: HeaderContext<T, unknown>) => any> & Record<`${K extends string ? K : never}-footer`, (props: HeaderContext<T, unknown>) => any>;
147
+ type DynamicCellSlots<T, K = keyof T> = Record<string, (props: CellContext<T, unknown>) => any> & Record<`${K extends string ? K : never}-cell`, (props: CellContext<T, unknown>) => any>;
148
+ export type TableSlots<T extends TableData = TableData> = {
149
+ 'expanded': (props: {
150
+ row: Row<T>;
151
+ }) => any;
152
+ 'empty': (props?: {}) => any;
153
+ 'loading': (props?: {}) => any;
154
+ 'caption': (props?: {}) => any;
155
+ 'body-top': (props?: {}) => any;
156
+ 'body-bottom': (props?: {}) => any;
157
+ } & DynamicHeaderSlots<T> & DynamicFooterSlots<T> & DynamicCellSlots<T>;
158
+ declare const _default: <T extends TableData>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
159
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
160
+ readonly "onUpdate:globalFilter"?: ((value: string) => any) | undefined;
161
+ readonly "onUpdate:columnFilters"?: ((value: ColumnFiltersState) => any) | undefined;
162
+ readonly "onUpdate:columnOrder"?: ((value: ColumnOrderState) => any) | undefined;
163
+ readonly "onUpdate:columnVisibility"?: ((value: VisibilityState) => any) | undefined;
164
+ readonly "onUpdate:columnPinning"?: ((value: ColumnPinningState) => any) | undefined;
165
+ readonly "onUpdate:columnSizing"?: ((value: ColumnSizingState) => any) | undefined;
166
+ readonly "onUpdate:columnSizingInfo"?: ((value: ColumnSizingInfoState) => any) | undefined;
167
+ readonly "onUpdate:rowSelection"?: ((value: RowSelectionState) => any) | undefined;
168
+ readonly "onUpdate:rowPinning"?: ((value: RowPinningState) => any) | undefined;
169
+ readonly "onUpdate:sorting"?: ((value: SortingState) => any) | undefined;
170
+ readonly "onUpdate:grouping"?: ((value: GroupingState) => any) | undefined;
171
+ readonly "onUpdate:expanded"?: ((value: ExpandedState) => any) | undefined;
172
+ readonly "onUpdate:pagination"?: ((value: PaginationState) => any) | undefined;
173
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:globalFilter" | "onUpdate:columnFilters" | "onUpdate:columnOrder" | "onUpdate:columnVisibility" | "onUpdate:columnPinning" | "onUpdate:columnSizing" | "onUpdate:columnSizingInfo" | "onUpdate:rowSelection" | "onUpdate:rowPinning" | "onUpdate:sorting" | "onUpdate:grouping" | "onUpdate:expanded" | "onUpdate:pagination"> & (TableProps<T> & {
174
+ globalFilter?: string;
175
+ columnFilters?: ColumnFiltersState;
176
+ columnOrder?: ColumnOrderState;
177
+ columnVisibility?: VisibilityState;
178
+ columnPinning?: ColumnPinningState;
179
+ columnSizing?: ColumnSizingState;
180
+ columnSizingInfo?: ColumnSizingInfoState;
181
+ rowSelection?: RowSelectionState;
182
+ rowPinning?: RowPinningState;
183
+ sorting?: SortingState;
184
+ grouping?: GroupingState;
185
+ expanded?: ExpandedState;
186
+ pagination?: PaginationState;
187
+ }) & {}> & import("vue").PublicProps;
188
+ expose(exposed: import("vue").ShallowUnwrapRef<{
189
+ tableRef: Ref<HTMLTableElement | null, HTMLTableElement | null>;
190
+ tableApi: import("@tanstack/table-core").Table<T>;
191
+ }>): void;
192
+ attrs: any;
193
+ slots: TableSlots<T>;
194
+ emit: ((evt: "update:globalFilter", value: string) => void) & ((evt: "update:columnFilters", value: ColumnFiltersState) => void) & ((evt: "update:columnOrder", value: ColumnOrderState) => void) & ((evt: "update:columnVisibility", value: VisibilityState) => void) & ((evt: "update:columnPinning", value: ColumnPinningState) => void) & ((evt: "update:columnSizing", value: ColumnSizingState) => void) & ((evt: "update:columnSizingInfo", value: ColumnSizingInfoState) => void) & ((evt: "update:rowSelection", value: RowSelectionState) => void) & ((evt: "update:rowPinning", value: RowPinningState) => void) & ((evt: "update:sorting", value: SortingState) => void) & ((evt: "update:grouping", value: GroupingState) => void) & ((evt: "update:expanded", value: ExpandedState) => void) & ((evt: "update:pagination", value: PaginationState) => void);
195
+ }>) => import("vue").VNode & {
196
+ __ctx?: Awaited<typeof __VLS_setup>;
197
+ };
198
+ export default _default;
199
+ type __VLS_PrettifyLocal<T> = {
200
+ [K in keyof T as K]: T[K];
201
+ } & {};
@@ -315,13 +315,13 @@ defineExpose({
315
315
  </template>
316
316
 
317
317
  <tr v-else-if="loading && !!slots['loading']">
318
- <td :colspan="columns?.length" :class="ui.loading({ class: props.ui?.loading })">
318
+ <td :colspan="tableApi.getAllLeafColumns().length" :class="ui.loading({ class: props.ui?.loading })">
319
319
  <slot name="loading" />
320
320
  </td>
321
321
  </tr>
322
322
 
323
323
  <tr v-else>
324
- <td :colspan="columns?.length" :class="ui.empty({ class: props.ui?.empty })">
324
+ <td :colspan="tableApi.getAllLeafColumns().length" :class="ui.empty({ class: props.ui?.empty })">
325
325
  <slot name="empty">
326
326
  {{ empty || t("table.noData") }}
327
327
  </slot>
@@ -3,7 +3,7 @@ import type { AppConfig } from '@nuxt/schema';
3
3
  import type { Cell, Header, RowData, TableMeta } from '@tanstack/table-core';
4
4
  import type { CellContext, ColumnDef, ColumnFiltersOptions, ColumnFiltersState, ColumnOrderState, ColumnPinningOptions, ColumnPinningState, ColumnSizingInfoState, ColumnSizingOptions, ColumnSizingState, CoreOptions, ExpandedOptions, ExpandedState, FacetedOptions, GlobalFilterOptions, GroupingOptions, GroupingState, HeaderContext, PaginationOptions, PaginationState, Row, RowPinningOptions, RowPinningState, RowSelectionOptions, RowSelectionState, SortingOptions, SortingState, VisibilityOptions, VisibilityState } from '@tanstack/vue-table';
5
5
  import theme from '#build/ui/table';
6
- import type { ComponentConfig } from '../types/utils';
6
+ import type { ComponentConfig } from '../types/tv';
7
7
  declare module '@tanstack/table-core' {
8
8
  interface ColumnMeta<TData extends RowData, TValue> {
9
9
  class?: {
@@ -71,69 +71,69 @@ export interface TableProps<T extends TableData = TableData> extends TableOption
71
71
  loadingAnimation?: Table['variants']['loadingAnimation'];
72
72
  /**
73
73
  * Use the `watchOptions` prop to customize reactivity (for ex: disable deep watching for changes in your data or limiting the max traversal depth). This can improve performance by reducing unnecessary re-renders, but it should be used with caution as it may lead to unexpected behavior if not managed properly.
74
- * @link [API Docs](https://vuejs.org/api/options-state.html#watch)
75
- * @link [Guide](https://vuejs.org/guide/essentials/watchers.html)
74
+ * @see [API](https://vuejs.org/api/options-state.html#watch)
75
+ * @see [Guide](https://vuejs.org/guide/essentials/watchers.html)
76
76
  * @defaultValue { deep: true }
77
77
  */
78
78
  watchOptions?: WatchOptions;
79
79
  /**
80
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/global-filtering#table-options)
81
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/global-filtering)
80
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/global-filtering#table-options)
81
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/global-filtering)
82
82
  */
83
83
  globalFilterOptions?: Omit<GlobalFilterOptions<T>, 'onGlobalFilterChange'>;
84
84
  /**
85
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/column-filtering#table-options)
86
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/column-filtering)
85
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-filtering#table-options)
86
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-filtering)
87
87
  */
88
88
  columnFiltersOptions?: Omit<ColumnFiltersOptions<T>, 'getFilteredRowModel' | 'onColumnFiltersChange'>;
89
89
  /**
90
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/column-pinning#table-options)
91
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/column-pinning)
90
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-pinning#table-options)
91
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-pinning)
92
92
  */
93
93
  columnPinningOptions?: Omit<ColumnPinningOptions, 'onColumnPinningChange'>;
94
94
  /**
95
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/column-sizing#table-options)
96
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/column-sizing)
95
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-sizing#table-options)
96
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-sizing)
97
97
  */
98
98
  columnSizingOptions?: Omit<ColumnSizingOptions, 'onColumnSizingChange' | 'onColumnSizingInfoChange'>;
99
99
  /**
100
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/column-visibility#table-options)
101
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/column-visibility)
100
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-visibility#table-options)
101
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-visibility)
102
102
  */
103
103
  visibilityOptions?: Omit<VisibilityOptions, 'onColumnVisibilityChange'>;
104
104
  /**
105
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/sorting#table-options)
106
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/sorting)
105
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/sorting#table-options)
106
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/sorting)
107
107
  */
108
108
  sortingOptions?: Omit<SortingOptions<T>, 'getSortedRowModel' | 'onSortingChange'>;
109
109
  /**
110
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/grouping#table-options)
111
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/grouping)
110
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/grouping#table-options)
111
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/grouping)
112
112
  */
113
113
  groupingOptions?: Omit<GroupingOptions, 'onGroupingChange'>;
114
114
  /**
115
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/expanding#table-options)
116
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/expanding)
115
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/expanding#table-options)
116
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/expanding)
117
117
  */
118
118
  expandedOptions?: Omit<ExpandedOptions<T>, 'getExpandedRowModel' | 'onExpandedChange'>;
119
119
  /**
120
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/row-selection#table-options)
121
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/row-selection)
120
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/row-selection#table-options)
121
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/row-selection)
122
122
  */
123
123
  rowSelectionOptions?: Omit<RowSelectionOptions<T>, 'onRowSelectionChange'>;
124
124
  /**
125
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/row-pinning#table-options)
126
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/row-pinning)
125
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/row-pinning#table-options)
126
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/row-pinning)
127
127
  */
128
128
  rowPinningOptions?: Omit<RowPinningOptions<T>, 'onRowPinningChange'>;
129
129
  /**
130
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/pagination#table-options)
131
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/pagination)
130
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/pagination#table-options)
131
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/pagination)
132
132
  */
133
133
  paginationOptions?: Omit<PaginationOptions, 'onPaginationChange'>;
134
134
  /**
135
- * @link [API Docs](https://tanstack.com/table/v8/docs/api/features/column-faceting#table-options)
136
- * @link [Guide](https://tanstack.com/table/v8/docs/guide/column-faceting)
135
+ * @see [API](https://tanstack.com/table/v8/docs/api/features/column-faceting#table-options)
136
+ * @see [Guide](https://tanstack.com/table/v8/docs/guide/column-faceting)
137
137
  */
138
138
  facetedOptions?: FacetedOptions<T>;
139
139
  onSelect?: (row: TableRow<T>, e?: Event) => void;
@@ -184,7 +184,7 @@ declare const _default: <T extends TableData>(__VLS_props: NonNullable<Awaited<t
184
184
  grouping?: GroupingState;
185
185
  expanded?: ExpandedState;
186
186
  pagination?: PaginationState;
187
- }) & Partial<{}>> & import("vue").PublicProps;
187
+ }) & {}> & import("vue").PublicProps;
188
188
  expose(exposed: import("vue").ShallowUnwrapRef<{
189
189
  tableRef: Ref<HTMLTableElement | null, HTMLTableElement | null>;
190
190
  tableApi: import("@tanstack/table-core").Table<T>;
@@ -0,0 +1,99 @@
1
+ import type { ComponentPublicInstance } from 'vue';
2
+ import type { TabsRootProps, TabsRootEmits } from 'reka-ui';
3
+ import type { AppConfig } from '@nuxt/schema';
4
+ import theme from '#build/ui/tabs';
5
+ import type { AvatarProps, BadgeProps, IconProps } from '../types';
6
+ import type { DynamicSlots, GetItemKeys } from '../types/utils';
7
+ import type { ComponentConfig } from '../types/tv';
8
+ type Tabs = ComponentConfig<typeof theme, AppConfig, 'tabs'>;
9
+ export interface TabsItem {
10
+ label?: string;
11
+ /**
12
+ * @IconifyIcon
13
+ */
14
+ icon?: IconProps['name'];
15
+ avatar?: AvatarProps;
16
+ /**
17
+ * Display a badge on the item.
18
+ * `{ size: 'sm', color: 'neutral', variant: 'outline' }`{lang="ts-type"}
19
+ */
20
+ badge?: string | number | BadgeProps;
21
+ slot?: string;
22
+ content?: string;
23
+ /** A unique value for the tab item. Defaults to the index. */
24
+ value?: string | number;
25
+ disabled?: boolean;
26
+ class?: any;
27
+ ui?: Pick<Tabs['slots'], 'trigger' | 'leadingIcon' | 'leadingAvatar' | 'leadingAvatarSize' | 'label' | 'trailingBadge' | 'trailingBadgeSize' | 'content'>;
28
+ [key: string]: any;
29
+ }
30
+ export interface TabsProps<T extends TabsItem = TabsItem> extends Pick<TabsRootProps<string | number>, 'defaultValue' | 'modelValue' | 'activationMode' | 'unmountOnHide'> {
31
+ /**
32
+ * The element or component this component should render as.
33
+ * @defaultValue 'div'
34
+ */
35
+ as?: any;
36
+ items?: T[];
37
+ /**
38
+ * @defaultValue 'primary'
39
+ */
40
+ color?: Tabs['variants']['color'];
41
+ /**
42
+ * @defaultValue 'pill'
43
+ */
44
+ variant?: Tabs['variants']['variant'];
45
+ /**
46
+ * @defaultValue 'md'
47
+ */
48
+ size?: Tabs['variants']['size'];
49
+ /**
50
+ * The orientation of the tabs.
51
+ * @defaultValue 'horizontal'
52
+ */
53
+ orientation?: TabsRootProps['orientation'];
54
+ /**
55
+ * The content of the tabs, can be disabled to prevent rendering the content.
56
+ * @defaultValue true
57
+ */
58
+ content?: boolean;
59
+ /**
60
+ * The key used to get the label from the item.
61
+ * @defaultValue 'label'
62
+ */
63
+ labelKey?: GetItemKeys<T>;
64
+ class?: any;
65
+ ui?: Tabs['slots'];
66
+ }
67
+ export interface TabsEmits extends TabsRootEmits<string | number> {
68
+ }
69
+ type SlotProps<T extends TabsItem> = (props: {
70
+ item: T;
71
+ index: number;
72
+ }) => any;
73
+ export type TabsSlots<T extends TabsItem = TabsItem> = {
74
+ 'leading': SlotProps<T>;
75
+ 'default': SlotProps<T>;
76
+ 'trailing': SlotProps<T>;
77
+ 'content': SlotProps<T>;
78
+ 'list-leading': (props?: {}) => any;
79
+ 'list-trailing': (props?: {}) => any;
80
+ } & DynamicSlots<T, undefined, {
81
+ index: number;
82
+ }>;
83
+ declare const _default: <T extends TabsItem>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
84
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
85
+ readonly "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
86
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsProps<T> & {}> & import("vue").PublicProps;
87
+ expose(exposed: import("vue").ShallowUnwrapRef<{
88
+ triggersRef: import("vue").Ref<ComponentPublicInstance[], ComponentPublicInstance[]>;
89
+ }>): void;
90
+ attrs: any;
91
+ slots: TabsSlots<T>;
92
+ emit: (evt: "update:modelValue", payload: string | number) => void;
93
+ }>) => import("vue").VNode & {
94
+ __ctx?: Awaited<typeof __VLS_setup>;
95
+ };
96
+ export default _default;
97
+ type __VLS_PrettifyLocal<T> = {
98
+ [K in keyof T as K]: T[K];
99
+ } & {};
@@ -11,6 +11,7 @@ import { get } from "../utils";
11
11
  import { tv } from "../utils/tv";
12
12
  import UIcon from "./Icon.vue";
13
13
  import UAvatar from "./Avatar.vue";
14
+ import UBadge from "./Badge.vue";
14
15
  const props = defineProps({
15
16
  as: { type: null, required: false },
16
17
  items: { type: Array, required: false },
@@ -19,7 +20,7 @@ const props = defineProps({
19
20
  size: { type: null, required: false },
20
21
  orientation: { type: null, required: false, default: "horizontal" },
21
22
  content: { type: Boolean, required: false, default: true },
22
- labelKey: { type: String, required: false, default: "label" },
23
+ labelKey: { type: null, required: false, default: "label" },
23
24
  class: { type: null, required: false },
24
25
  ui: { type: null, required: false },
25
26
  defaultValue: { type: null, required: false, default: "0" },
@@ -30,7 +31,7 @@ const props = defineProps({
30
31
  const emits = defineEmits(["update:modelValue"]);
31
32
  const slots = defineSlots();
32
33
  const appConfig = useAppConfig();
33
- const rootProps = useForwardPropsEmits(reactivePick(props, "as", "modelValue", "defaultValue", "orientation", "activationMode", "unmountOnHide"), emits);
34
+ const rootProps = useForwardPropsEmits(reactivePick(props, "as", "unmountOnHide"), emits);
34
35
  const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.tabs || {} })({
35
36
  color: props.color,
36
37
  variant: props.variant,
@@ -44,7 +45,14 @@ defineExpose({
44
45
  </script>
45
46
 
46
47
  <template>
47
- <TabsRoot v-bind="rootProps" :class="ui.root({ class: [props.ui?.root, props.class] })">
48
+ <TabsRoot
49
+ v-bind="rootProps"
50
+ :model-value="modelValue"
51
+ :default-value="defaultValue"
52
+ :orientation="orientation"
53
+ :activation-mode="activationMode"
54
+ :class="ui.root({ class: [props.ui?.root, props.class] })"
55
+ >
48
56
  <TabsList :class="ui.list({ class: props.ui?.list })">
49
57
  <TabsIndicator :class="ui.indicator({ class: props.ui?.indicator })" />
50
58
 
@@ -54,28 +62,16 @@ defineExpose({
54
62
  v-for="(item, index) of items"
55
63
  :key="index"
56
64
  :ref="(el) => triggersRef[index] = el"
57
- :value="item.value || String(index)"
65
+ :value="item.value ?? String(index)"
58
66
  :disabled="item.disabled"
59
67
  :class="ui.trigger({ class: [props.ui?.trigger, item.ui?.trigger] })"
60
68
  >
61
69
  <slot name="leading" :item="item" :index="index">
62
- <UIcon
63
- v-if="item.icon"
64
- :name="item.icon"
65
- :class="ui.leadingIcon({ class: [props.ui?.leadingIcon, item.ui?.leadingIcon] })"
66
- />
67
- <UAvatar
68
- v-else-if="item.avatar"
69
- :size="item.ui?.leadingAvatarSize || props.ui?.leadingAvatarSize || ui.leadingAvatarSize()"
70
- v-bind="item.avatar"
71
- :class="ui.leadingAvatar({ class: [props.ui?.leadingAvatar, item.ui?.leadingAvatar] })"
72
- />
70
+ <UIcon v-if="item.icon" :name="item.icon" :class="ui.leadingIcon({ class: [props.ui?.leadingIcon, item.ui?.leadingIcon] })" />
71
+ <UAvatar v-else-if="item.avatar" :size="item.ui?.leadingAvatarSize || props.ui?.leadingAvatarSize || ui.leadingAvatarSize()" v-bind="item.avatar" :class="ui.leadingAvatar({ class: [props.ui?.leadingAvatar, item.ui?.leadingAvatar] })" />
73
72
  </slot>
74
73
 
75
- <span
76
- v-if="get(item, props.labelKey) || !!slots.default"
77
- :class="ui.label({ class: [props.ui?.label, item.ui?.label] })"
78
- >
74
+ <span v-if="get(item, props.labelKey) || !!slots.default" :class="ui.label({ class: [props.ui?.label, item.ui?.label] })">
79
75
  <slot :item="item" :index="index">{{ get(item, props.labelKey) }}</slot>
80
76
  </span>
81
77
 
@@ -95,17 +91,8 @@ defineExpose({
95
91
  </TabsList>
96
92
 
97
93
  <template v-if="!!content">
98
- <TabsContent
99
- v-for="(item, index) of items || []"
100
- :key="index"
101
- :value="item.value || String(index)"
102
- :class="ui.content({ class: [props.ui?.content, item.ui?.content, item.class] })"
103
- >
104
- <slot
105
- :name="item.slot || 'content'"
106
- :item="item"
107
- :index="index"
108
- >
94
+ <TabsContent v-for="(item, index) of items" :key="index" :value="item.value ?? String(index)" :class="ui.content({ class: [props.ui?.content, item.ui?.content, item.class] })">
95
+ <slot :name="item.slot || 'content'" :item="item" :index="index">
109
96
  {{ item.content }}
110
97
  </slot>
111
98
  </TabsContent>
@@ -2,15 +2,16 @@ import type { ComponentPublicInstance } from 'vue';
2
2
  import type { TabsRootProps, TabsRootEmits } from 'reka-ui';
3
3
  import type { AppConfig } from '@nuxt/schema';
4
4
  import theme from '#build/ui/tabs';
5
- import type { AvatarProps, BadgeProps } from '../types';
6
- import type { DynamicSlots, ComponentConfig } from '../types/utils';
5
+ import type { AvatarProps, BadgeProps, IconProps } from '../types';
6
+ import type { DynamicSlots, GetItemKeys } from '../types/utils';
7
+ import type { ComponentConfig } from '../types/tv';
7
8
  type Tabs = ComponentConfig<typeof theme, AppConfig, 'tabs'>;
8
9
  export interface TabsItem {
9
10
  label?: string;
10
11
  /**
11
12
  * @IconifyIcon
12
13
  */
13
- icon?: string;
14
+ icon?: IconProps['name'];
14
15
  avatar?: AvatarProps;
15
16
  /**
16
17
  * Display a badge on the item.
@@ -59,7 +60,7 @@ export interface TabsProps<T extends TabsItem = TabsItem> extends Pick<TabsRootP
59
60
  * The key used to get the label from the item.
60
61
  * @defaultValue 'label'
61
62
  */
62
- labelKey?: string;
63
+ labelKey?: GetItemKeys<T>;
63
64
  class?: any;
64
65
  ui?: Tabs['slots'];
65
66
  }
@@ -82,7 +83,7 @@ export type TabsSlots<T extends TabsItem = TabsItem> = {
82
83
  declare const _default: <T extends TabsItem>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
83
84
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
84
85
  readonly "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
85
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsProps<T> & Partial<{}>> & import("vue").PublicProps;
86
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & TabsProps<T> & {}> & import("vue").PublicProps;
86
87
  expose(exposed: import("vue").ShallowUnwrapRef<{
87
88
  triggersRef: import("vue").Ref<ComponentPublicInstance[], ComponentPublicInstance[]>;
88
89
  }>): void;
@@ -0,0 +1,74 @@
1
+ import type { AppConfig } from '@nuxt/schema';
2
+ import theme from '#build/ui/textarea';
3
+ import type { UseComponentIconsProps } from '../composables/useComponentIcons';
4
+ import type { ModelModifiers } from '../types/input';
5
+ import type { ComponentConfig } from '../types/tv';
6
+ type Textarea = ComponentConfig<typeof theme, AppConfig, 'textarea'>;
7
+ type TextareaValue = string | number | null;
8
+ export interface TextareaProps<T extends TextareaValue = TextareaValue> extends UseComponentIconsProps {
9
+ /**
10
+ * The element or component this component should render as.
11
+ * @defaultValue 'div'
12
+ */
13
+ as?: any;
14
+ id?: string;
15
+ name?: string;
16
+ /** The placeholder text when the textarea is empty. */
17
+ placeholder?: string;
18
+ /**
19
+ * @defaultValue 'primary'
20
+ */
21
+ color?: Textarea['variants']['color'];
22
+ /**
23
+ * @defaultValue 'outline'
24
+ */
25
+ variant?: Textarea['variants']['variant'];
26
+ /**
27
+ * @defaultValue 'md'
28
+ */
29
+ size?: Textarea['variants']['size'];
30
+ required?: boolean;
31
+ autofocus?: boolean;
32
+ autofocusDelay?: number;
33
+ autoresize?: boolean;
34
+ autoresizeDelay?: number;
35
+ disabled?: boolean;
36
+ rows?: number;
37
+ maxrows?: number;
38
+ /** Highlight the ring color like a focus state. */
39
+ highlight?: boolean;
40
+ modelValue?: T;
41
+ defaultValue?: T;
42
+ modelModifiers?: ModelModifiers;
43
+ class?: any;
44
+ ui?: Textarea['slots'];
45
+ }
46
+ export interface TextareaEmits<T extends TextareaValue = TextareaValue> {
47
+ 'update:modelValue': [value: T];
48
+ 'blur': [event: FocusEvent];
49
+ 'change': [event: Event];
50
+ }
51
+ export interface TextareaSlots {
52
+ leading(props?: {}): any;
53
+ default(props?: {}): any;
54
+ trailing(props?: {}): any;
55
+ }
56
+ declare const _default: <T extends TextareaValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
57
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
58
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
59
+ readonly onChange?: ((event: Event) => any) | undefined;
60
+ readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
61
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onBlur" | "onChange" | "onUpdate:modelValue"> & TextareaProps<T> & {}> & import("vue").PublicProps;
62
+ expose(exposed: import("vue").ShallowUnwrapRef<{
63
+ textareaRef: import("vue").Ref<HTMLTextAreaElement | null, HTMLTextAreaElement | null>;
64
+ }>): void;
65
+ attrs: any;
66
+ slots: TextareaSlots;
67
+ emit: ((evt: "blur", event: FocusEvent) => void) & ((evt: "change", event: Event) => void) & ((evt: "update:modelValue", value: T) => void);
68
+ }>) => import("vue").VNode & {
69
+ __ctx?: Awaited<typeof __VLS_setup>;
70
+ };
71
+ export default _default;
72
+ type __VLS_PrettifyLocal<T> = {
73
+ [K in keyof T as K]: T[K];
74
+ } & {};