@eslamdevui/ui 3.2.0-beta.1 → 3.2.0-beta.2

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 (302) hide show
  1. package/.nuxt/ui/alert.ts +5 -0
  2. package/.nuxt/ui/badge.ts +5 -0
  3. package/.nuxt/ui/button-group.ts +13 -0
  4. package/.nuxt/ui/button.ts +5 -0
  5. package/.nuxt/ui/carousel.ts +5 -0
  6. package/.nuxt/ui/content/content-navigation.ts +339 -0
  7. package/.nuxt/ui/content/content-search-button.ts +6 -0
  8. package/.nuxt/ui/content/content-search.ts +6 -0
  9. package/.nuxt/ui/content/content-surround.ts +39 -0
  10. package/.nuxt/ui/content/content-toc.ts +150 -0
  11. package/.nuxt/ui/content/index.ts +5 -0
  12. package/.nuxt/ui/content-surround.ts +5 -0
  13. package/.nuxt/ui/content-toc.ts +6 -6
  14. package/.nuxt/ui/dashboard-navbar.ts +5 -0
  15. package/.nuxt/ui/dashboard-sidebar-collapse.ts +5 -0
  16. package/.nuxt/ui/dashboard-sidebar-toggle.ts +5 -0
  17. package/.nuxt/ui/dashboard-sidebar.ts +10 -0
  18. package/.nuxt/ui/error.ts +9 -0
  19. package/.nuxt/ui/index.ts +48 -1
  20. package/.nuxt/ui/input-menu.ts +9 -0
  21. package/.nuxt/ui/input-number.ts +5 -0
  22. package/.nuxt/ui/input-tags.ts +9 -0
  23. package/.nuxt/ui/input.ts +9 -0
  24. package/.nuxt/ui/prose/a.ts +6 -0
  25. package/.nuxt/ui/prose/accordion-item.ts +3 -0
  26. package/.nuxt/ui/prose/accordion.ts +6 -0
  27. package/.nuxt/ui/prose/badge.ts +3 -0
  28. package/.nuxt/ui/prose/blockquote.ts +3 -0
  29. package/.nuxt/ui/prose/callout.ts +129 -0
  30. package/.nuxt/ui/prose/card-group.ts +3 -0
  31. package/.nuxt/ui/prose/card.ts +119 -0
  32. package/.nuxt/ui/prose/code-collapse.ts +19 -0
  33. package/.nuxt/ui/prose/code-group.ts +13 -0
  34. package/.nuxt/ui/prose/code-icon.ts +66 -0
  35. package/.nuxt/ui/prose/code-preview.ts +14 -0
  36. package/.nuxt/ui/prose/code-tree.ts +28 -0
  37. package/.nuxt/ui/prose/code.ts +27 -0
  38. package/.nuxt/ui/prose/collapsible.ts +12 -0
  39. package/.nuxt/ui/prose/em.ts +3 -0
  40. package/.nuxt/ui/prose/field-group.ts +3 -0
  41. package/.nuxt/ui/prose/field.ts +11 -0
  42. package/.nuxt/ui/prose/h1.ts +6 -0
  43. package/.nuxt/ui/prose/h2.ts +14 -0
  44. package/.nuxt/ui/prose/h3.ts +14 -0
  45. package/.nuxt/ui/prose/h4.ts +6 -0
  46. package/.nuxt/ui/prose/hr.ts +3 -0
  47. package/.nuxt/ui/prose/icon.ts +3 -0
  48. package/.nuxt/ui/prose/img.ts +3 -0
  49. package/.nuxt/ui/prose/index.ts +41 -0
  50. package/.nuxt/ui/prose/kbd.ts +3 -0
  51. package/.nuxt/ui/prose/li.ts +3 -0
  52. package/.nuxt/ui/prose/ol.ts +3 -0
  53. package/.nuxt/ui/prose/p.ts +3 -0
  54. package/.nuxt/ui/prose/pre.ts +17 -0
  55. package/.nuxt/ui/prose/steps.ts +19 -0
  56. package/.nuxt/ui/prose/strong.ts +3 -0
  57. package/.nuxt/ui/prose/table.ts +6 -0
  58. package/.nuxt/ui/prose/tabs-item.ts +3 -0
  59. package/.nuxt/ui/prose/tabs.ts +5 -0
  60. package/.nuxt/ui/prose/tbody.ts +3 -0
  61. package/.nuxt/ui/prose/td.ts +3 -0
  62. package/.nuxt/ui/prose/th.ts +3 -0
  63. package/.nuxt/ui/prose/thead.ts +3 -0
  64. package/.nuxt/ui/prose/tr.ts +3 -0
  65. package/.nuxt/ui/prose/ul.ts +3 -0
  66. package/.nuxt/ui/select-menu.ts +9 -0
  67. package/.nuxt/ui/select.ts +9 -0
  68. package/.nuxt/ui/textarea.ts +9 -0
  69. package/.nuxt/ui/toast.ts +5 -0
  70. package/LICENSE.md +9 -9
  71. package/README.md +147 -147
  72. package/cli/commands/make/component.mjs +95 -95
  73. package/cli/commands/make/index.mjs +14 -14
  74. package/cli/commands/make/locale.mjs +64 -64
  75. package/cli/index.mjs +15 -15
  76. package/cli/package.json +13 -13
  77. package/cli/templates.mjs +236 -228
  78. package/cli/utils.mjs +31 -31
  79. package/dist/module.json +1 -1
  80. package/dist/module.mjs +18 -13
  81. package/dist/runtime/components/Accordion.vue +36 -36
  82. package/dist/runtime/components/Alert.vue +46 -46
  83. package/dist/runtime/components/App.vue +10 -10
  84. package/dist/runtime/components/Avatar.vue +27 -27
  85. package/dist/runtime/components/AvatarGroup.vue +4 -4
  86. package/dist/runtime/components/Badge.vue +16 -16
  87. package/dist/runtime/components/Breadcrumb.vue +32 -32
  88. package/dist/runtime/components/Button.vue +28 -28
  89. package/dist/runtime/components/ButtonGroup.vue +3 -3
  90. package/dist/runtime/components/Calendar.vue +74 -74
  91. package/dist/runtime/components/Card.vue +13 -13
  92. package/dist/runtime/components/Carousel.vue +58 -58
  93. package/dist/runtime/components/ChatMessage.vue +35 -35
  94. package/dist/runtime/components/ChatMessages.vue +71 -71
  95. package/dist/runtime/components/ChatMessages.vue.d.ts +1 -2
  96. package/dist/runtime/components/ChatPrompt.vue +30 -31
  97. package/dist/runtime/components/ChatPrompt.vue.d.ts +4 -4
  98. package/dist/runtime/components/ChatPromptSubmit.vue +10 -10
  99. package/dist/runtime/components/Checkbox.vue +33 -33
  100. package/dist/runtime/components/CheckboxGroup.vue +32 -32
  101. package/dist/runtime/components/Chip.vue +11 -11
  102. package/dist/runtime/components/Collapsible.vue +9 -9
  103. package/dist/runtime/components/ColorPicker.vue +30 -30
  104. package/dist/runtime/components/CommandPalette.vue +117 -117
  105. package/dist/runtime/components/Container.vue +3 -3
  106. package/dist/runtime/components/ContextMenu.vue +22 -22
  107. package/dist/runtime/components/ContextMenuContent.vue +105 -105
  108. package/dist/runtime/components/DashboardGroup.vue +3 -3
  109. package/dist/runtime/components/DashboardNavbar.vue +41 -41
  110. package/dist/runtime/components/DashboardNavbar.vue.d.ts +1 -1
  111. package/dist/runtime/components/DashboardPanel.vue +29 -29
  112. package/dist/runtime/components/DashboardPanel.vue.d.ts +1 -1
  113. package/dist/runtime/components/DashboardResizeHandle.vue +7 -7
  114. package/dist/runtime/components/DashboardSearch.vue +24 -25
  115. package/dist/runtime/components/DashboardSearch.vue.d.ts +3 -3
  116. package/dist/runtime/components/DashboardSearchButton.vue +63 -41
  117. package/dist/runtime/components/DashboardSearchButton.vue.d.ts +7 -1
  118. package/dist/runtime/components/DashboardSidebar.vue +77 -77
  119. package/dist/runtime/components/DashboardSidebarCollapse.vue +7 -7
  120. package/dist/runtime/components/DashboardSidebarCollapse.vue.d.ts +1 -1
  121. package/dist/runtime/components/DashboardSidebarToggle.vue +14 -17
  122. package/dist/runtime/components/DashboardSidebarToggle.vue.d.ts +4 -6
  123. package/dist/runtime/components/Drawer.vue +55 -55
  124. package/dist/runtime/components/DropdownMenu.vue +24 -24
  125. package/dist/runtime/components/DropdownMenuContent.vue +107 -107
  126. package/dist/runtime/components/Error.vue +57 -0
  127. package/dist/runtime/components/Error.vue.d.ts +52 -0
  128. package/dist/runtime/components/Form.vue +8 -8
  129. package/dist/runtime/components/Form.vue.d.ts +1 -1
  130. package/dist/runtime/components/FormField.vue +37 -37
  131. package/dist/runtime/components/Icon.vue +1 -1
  132. package/dist/runtime/components/Input.vue +34 -34
  133. package/dist/runtime/components/InputMenu.vue +163 -163
  134. package/dist/runtime/components/InputNumber.vue +49 -49
  135. package/dist/runtime/components/InputTags.vue +55 -55
  136. package/dist/runtime/components/Kbd.vue +5 -5
  137. package/dist/runtime/components/Link.vue +14 -14
  138. package/dist/runtime/components/LinkBase.vue +8 -8
  139. package/dist/runtime/components/Modal.vue +69 -69
  140. package/dist/runtime/components/NavigationMenu.vue +166 -166
  141. package/dist/runtime/components/OverlayProvider.vue +9 -9
  142. package/dist/runtime/components/Pagination.vue +47 -47
  143. package/dist/runtime/components/PinInput.vue +20 -20
  144. package/dist/runtime/components/Popover.vue +17 -17
  145. package/dist/runtime/components/Progress.vue +19 -19
  146. package/dist/runtime/components/RadioGroup.vue +43 -43
  147. package/dist/runtime/components/Select.vue +96 -96
  148. package/dist/runtime/components/SelectMenu.vue +130 -130
  149. package/dist/runtime/components/Separator.vue +15 -15
  150. package/dist/runtime/components/Skeleton.vue +10 -10
  151. package/dist/runtime/components/Slideover.vue +76 -76
  152. package/dist/runtime/components/Slider.vue +27 -27
  153. package/dist/runtime/components/Stepper.vue +51 -51
  154. package/dist/runtime/components/Switch.vue +33 -33
  155. package/dist/runtime/components/Table.vue +77 -77
  156. package/dist/runtime/components/Tabs.vue +37 -37
  157. package/dist/runtime/components/Textarea.vue +33 -33
  158. package/dist/runtime/components/Timeline.vue +38 -38
  159. package/dist/runtime/components/Toast.vue +69 -69
  160. package/dist/runtime/components/Toaster.vue +28 -28
  161. package/dist/runtime/components/Tooltip.vue +19 -19
  162. package/dist/runtime/components/Tree.vue +60 -60
  163. package/dist/runtime/components/color-mode/ColorModeAvatar.vue +2 -2
  164. package/dist/runtime/components/color-mode/ColorModeAvatar.vue.d.ts +2 -2
  165. package/dist/runtime/components/color-mode/ColorModeButton.vue +16 -16
  166. package/dist/runtime/components/color-mode/ColorModeButton.vue.d.ts +3 -3
  167. package/dist/runtime/components/color-mode/ColorModeImage.vue +2 -2
  168. package/dist/runtime/components/color-mode/ColorModeSelect.vue +19 -19
  169. package/dist/runtime/components/color-mode/ColorModeSelect.vue.d.ts +1 -1
  170. package/dist/runtime/components/color-mode/ColorModeSwitch.vue +19 -19
  171. package/dist/runtime/components/color-mode/ColorModeSwitch.vue.d.ts +1 -1
  172. package/dist/runtime/components/content/ContentNavigation.vue +175 -0
  173. package/dist/runtime/components/content/ContentNavigation.vue.d.ts +53 -0
  174. package/dist/runtime/components/content/ContentSearch.vue +184 -0
  175. package/dist/runtime/components/content/ContentSearch.vue.d.ts +111 -0
  176. package/dist/runtime/components/content/ContentSearchButton.vue +95 -0
  177. package/dist/runtime/components/content/ContentSearchButton.vue.d.ts +12 -0
  178. package/dist/runtime/components/content/ContentSurround.vue +61 -0
  179. package/dist/runtime/components/content/ContentSurround.vue.d.ts +59 -0
  180. package/dist/runtime/components/content/ContentToc.vue +146 -0
  181. package/dist/runtime/components/content/ContentToc.vue.d.ts +88 -0
  182. package/dist/runtime/components/locale/LocaleSelect.vue +20 -20
  183. package/dist/runtime/components/locale/LocaleSelect.vue.d.ts +1 -1
  184. package/dist/runtime/components/prose/A.vue +24 -0
  185. package/dist/runtime/components/prose/A.vue.d.ts +15 -0
  186. package/dist/runtime/components/prose/Accordion.vue +43 -0
  187. package/dist/runtime/components/prose/Accordion.vue.d.ts +16 -0
  188. package/dist/runtime/components/prose/AccordionItem.vue +25 -0
  189. package/dist/runtime/components/prose/AccordionItem.vue.d.ts +15 -0
  190. package/dist/runtime/components/prose/Badge.vue +21 -0
  191. package/dist/runtime/components/prose/Badge.vue.d.ts +13 -0
  192. package/dist/runtime/components/prose/Blockquote.vue +21 -0
  193. package/dist/runtime/components/prose/Blockquote.vue.d.ts +13 -0
  194. package/dist/runtime/components/prose/Callout.vue +60 -0
  195. package/dist/runtime/components/prose/Callout.vue.d.ts +26 -0
  196. package/dist/runtime/components/prose/Card.vue +83 -0
  197. package/dist/runtime/components/prose/Card.vue.d.ts +30 -0
  198. package/dist/runtime/components/prose/CardGroup.vue +21 -0
  199. package/dist/runtime/components/prose/CardGroup.vue.d.ts +13 -0
  200. package/dist/runtime/components/prose/Code.vue +23 -0
  201. package/dist/runtime/components/prose/Code.vue.d.ts +22 -0
  202. package/dist/runtime/components/prose/CodeCollapse.vue +44 -0
  203. package/dist/runtime/components/prose/CodeCollapse.vue.d.ts +46 -0
  204. package/dist/runtime/components/prose/CodeGroup.vue +70 -0
  205. package/dist/runtime/components/prose/CodeGroup.vue.d.ts +37 -0
  206. package/dist/runtime/components/prose/CodeIcon.vue +28 -0
  207. package/dist/runtime/components/prose/CodeIcon.vue.d.ts +24 -0
  208. package/dist/runtime/components/prose/CodePreview.vue +28 -0
  209. package/dist/runtime/components/prose/CodePreview.vue.d.ts +19 -0
  210. package/dist/runtime/components/prose/CodeTree.vue +160 -0
  211. package/dist/runtime/components/prose/CodeTree.vue.d.ts +30 -0
  212. package/dist/runtime/components/prose/Collapsible.vue +41 -0
  213. package/dist/runtime/components/prose/Collapsible.vue.d.ts +38 -0
  214. package/dist/runtime/components/prose/Em.vue +19 -0
  215. package/dist/runtime/components/prose/Em.vue.d.ts +13 -0
  216. package/dist/runtime/components/prose/Field.vue +48 -0
  217. package/dist/runtime/components/prose/Field.vue.d.ts +39 -0
  218. package/dist/runtime/components/prose/FieldGroup.vue +23 -0
  219. package/dist/runtime/components/prose/FieldGroup.vue.d.ts +18 -0
  220. package/dist/runtime/components/prose/H1.vue +28 -0
  221. package/dist/runtime/components/prose/H1.vue.d.ts +19 -0
  222. package/dist/runtime/components/prose/H2.vue +32 -0
  223. package/dist/runtime/components/prose/H2.vue.d.ts +19 -0
  224. package/dist/runtime/components/prose/H3.vue +32 -0
  225. package/dist/runtime/components/prose/H3.vue.d.ts +19 -0
  226. package/dist/runtime/components/prose/H4.vue +28 -0
  227. package/dist/runtime/components/prose/H4.vue.d.ts +19 -0
  228. package/dist/runtime/components/prose/Hr.vue +18 -0
  229. package/dist/runtime/components/prose/Hr.vue.d.ts +5 -0
  230. package/dist/runtime/components/prose/Icon.vue +19 -0
  231. package/dist/runtime/components/prose/Icon.vue.d.ts +6 -0
  232. package/dist/runtime/components/prose/Img.vue +40 -0
  233. package/dist/runtime/components/prose/Img.vue.d.ts +9 -0
  234. package/dist/runtime/components/prose/Kbd.vue +19 -0
  235. package/dist/runtime/components/prose/Kbd.vue.d.ts +6 -0
  236. package/dist/runtime/components/prose/Li.vue +21 -0
  237. package/dist/runtime/components/prose/Li.vue.d.ts +13 -0
  238. package/dist/runtime/components/prose/Ol.vue +21 -0
  239. package/dist/runtime/components/prose/Ol.vue.d.ts +13 -0
  240. package/dist/runtime/components/prose/P.vue +21 -0
  241. package/dist/runtime/components/prose/P.vue.d.ts +13 -0
  242. package/dist/runtime/components/prose/Pre.vue +63 -0
  243. package/dist/runtime/components/prose/Pre.vue.d.ts +25 -0
  244. package/dist/runtime/components/prose/Script.vue +12 -0
  245. package/dist/runtime/components/prose/Script.vue.d.ts +12 -0
  246. package/dist/runtime/components/prose/Steps.vue +22 -0
  247. package/dist/runtime/components/prose/Steps.vue.d.ts +22 -0
  248. package/dist/runtime/components/prose/Strong.vue +21 -0
  249. package/dist/runtime/components/prose/Strong.vue.d.ts +13 -0
  250. package/dist/runtime/components/prose/Table.vue +24 -0
  251. package/dist/runtime/components/prose/Table.vue.d.ts +18 -0
  252. package/dist/runtime/components/prose/Tabs.vue +78 -0
  253. package/dist/runtime/components/prose/Tabs.vue.d.ts +36 -0
  254. package/dist/runtime/components/prose/TabsItem.vue +25 -0
  255. package/dist/runtime/components/prose/TabsItem.vue.d.ts +15 -0
  256. package/dist/runtime/components/prose/Tbody.vue +21 -0
  257. package/dist/runtime/components/prose/Tbody.vue.d.ts +13 -0
  258. package/dist/runtime/components/prose/Td.vue +21 -0
  259. package/dist/runtime/components/prose/Td.vue.d.ts +13 -0
  260. package/dist/runtime/components/prose/Th.vue +21 -0
  261. package/dist/runtime/components/prose/Th.vue.d.ts +13 -0
  262. package/dist/runtime/components/prose/Thead.vue +21 -0
  263. package/dist/runtime/components/prose/Thead.vue.d.ts +13 -0
  264. package/dist/runtime/components/prose/Tr.vue +21 -0
  265. package/dist/runtime/components/prose/Tr.vue.d.ts +13 -0
  266. package/dist/runtime/components/prose/Ul.vue +21 -0
  267. package/dist/runtime/components/prose/Ul.vue.d.ts +13 -0
  268. package/dist/runtime/components/prose/callout/Caution.vue +11 -0
  269. package/dist/runtime/components/prose/callout/Caution.vue.d.ts +14 -0
  270. package/dist/runtime/components/prose/callout/Note.vue +11 -0
  271. package/dist/runtime/components/prose/callout/Note.vue.d.ts +14 -0
  272. package/dist/runtime/components/prose/callout/Tip.vue +11 -0
  273. package/dist/runtime/components/prose/callout/Tip.vue.d.ts +14 -0
  274. package/dist/runtime/components/prose/callout/Warning.vue +11 -0
  275. package/dist/runtime/components/prose/callout/Warning.vue.d.ts +14 -0
  276. package/dist/runtime/composables/useAvatarGroup.d.ts +1 -1
  277. package/dist/runtime/composables/useComponentIcons.d.ts +1 -1
  278. package/dist/runtime/composables/useFormField.d.ts +2 -2
  279. package/dist/runtime/composables/usePortal.d.ts +1 -1
  280. package/dist/runtime/composables/useResizable.d.ts +1 -1
  281. package/dist/runtime/inertia/components/Link.vue +12 -12
  282. package/dist/runtime/inertia/components/LinkBase.vue +15 -15
  283. package/dist/runtime/types/app.config.d.ts +6 -6
  284. package/dist/runtime/types/content.d.ts +4 -1
  285. package/dist/runtime/types/content.js +4 -0
  286. package/dist/runtime/types/index.d.ts +1 -0
  287. package/dist/runtime/types/index.js +1 -0
  288. package/dist/runtime/types/prose.d.ts +42 -1
  289. package/dist/runtime/types/prose.js +42 -0
  290. package/dist/runtime/types/tv.d.ts +2 -2
  291. package/dist/runtime/utils/index.d.ts +1 -1
  292. package/dist/runtime/utils/index.js +13 -4
  293. package/dist/runtime/vue/components/Icon.vue +1 -1
  294. package/dist/runtime/vue/components/Link.vue +31 -31
  295. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue +7 -7
  296. package/dist/runtime/vue/components/color-mode/ColorModeSelect.vue +7 -7
  297. package/dist/runtime/vue/components/color-mode/ColorModeSwitch.vue +7 -7
  298. package/dist/shared/{ui.BcVNrqyb.mjs → ui.DQZ75GCP.mjs} +183 -180
  299. package/dist/unplugin.mjs +9 -9
  300. package/dist/vite.mjs +1 -1
  301. package/package.json +8 -9
  302. package/vue-plugin.d.ts +5 -5
@@ -0,0 +1,160 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/code-tree";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed, ref, watch, onBeforeUpdate } from "vue";
7
+ import { TreeRoot, TreeItem } from "reka-ui";
8
+ import { createReusableTemplate } from "@vueuse/core";
9
+ import { useAppConfig } from "#imports";
10
+ import { tv } from "../../utils/tv";
11
+ import CodeIcon from "./CodeIcon.vue";
12
+ const props = defineProps({
13
+ defaultValue: { type: String, required: false },
14
+ expandAll: { type: Boolean, required: false, default: false },
15
+ class: { type: null, required: false },
16
+ ui: { type: null, required: false }
17
+ });
18
+ const slots = defineSlots();
19
+ const appConfig = useAppConfig();
20
+ const [DefineTreeTemplate, ReuseTreeTemplate] = createReusableTemplate();
21
+ const ui = computed(() => tv({
22
+ extend: tv(theme),
23
+ ...appConfig.ui?.prose?.codeTree || {}
24
+ })());
25
+ const model = ref(props.defaultValue ? { path: props.defaultValue } : void 0);
26
+ const lastSelectedItem = ref();
27
+ const rerenderCount = ref(1);
28
+ const flatItems = computed(() => {
29
+ const _ = rerenderCount.value;
30
+ return slots.default?.()?.flatMap(transformSlot).filter(Boolean) || [];
31
+ });
32
+ const treeItems = computed(() => buildTree(flatItems.value));
33
+ function transformSlot(slot, index) {
34
+ if (typeof slot?.type === "symbol") {
35
+ return slot.children?.flatMap((child, i) => transformSlot(child, i));
36
+ }
37
+ return {
38
+ label: slot.props?.filename || slot.props?.label || `${index}`,
39
+ icon: slot.props?.icon,
40
+ component: slot
41
+ };
42
+ }
43
+ function buildTree(items) {
44
+ const map = /* @__PURE__ */ new Map();
45
+ const root = [];
46
+ items.forEach((item) => {
47
+ const parts = item.label.split("/");
48
+ let path = "";
49
+ parts.forEach((part, i) => {
50
+ path = path ? `${path}/${part}` : part;
51
+ if (!map.has(path)) {
52
+ const node = {
53
+ label: part,
54
+ path,
55
+ ...i < parts.length - 1 ? { children: [] } : { component: item.component, icon: item.icon }
56
+ };
57
+ map.set(path, node);
58
+ if (i === 0) {
59
+ root.push(node);
60
+ } else {
61
+ map.get(parts.slice(0, i).join("/"))?.children?.push(node);
62
+ }
63
+ }
64
+ });
65
+ });
66
+ const sort = (nodes) => nodes.sort(
67
+ (a, b) => !!a.children === !!b.children ? a.label.localeCompare(b.label) : b.children ? 1 : -1
68
+ ).map((n) => ({
69
+ ...n,
70
+ children: n.children && sort(n.children)
71
+ }));
72
+ return sort(root);
73
+ }
74
+ const expanded = computed(() => {
75
+ if (props.expandAll) {
76
+ const allPaths = /* @__PURE__ */ new Set();
77
+ flatItems.value.forEach((item) => {
78
+ const parts = item.label.split("/");
79
+ for (let i = 1; i < parts.length; i++) {
80
+ allPaths.add(parts.slice(0, i).join("/"));
81
+ }
82
+ });
83
+ return Array.from(allPaths);
84
+ }
85
+ const path = model.value?.path;
86
+ if (!path) return [];
87
+ return path.split("/").map((_, i) => path.split("/").slice(0, i + 1).join("/"));
88
+ });
89
+ watch(model, (value) => {
90
+ const item = flatItems.value.find((i) => i.label === value?.path);
91
+ if (item?.component) {
92
+ lastSelectedItem.value = item;
93
+ }
94
+ }, { immediate: true });
95
+ onBeforeUpdate(() => rerenderCount.value++);
96
+ </script>
97
+
98
+ <template>
99
+ <DefineTreeTemplate v-slot="{ items: children, level }">
100
+ <li
101
+ v-for="(item, index) in children"
102
+ :key="`${level}-${index}`"
103
+ :class="level > 0 ? ui.itemWithChildren({ class: props.ui?.itemWithChildren }) : ui.item({ class: props.ui?.item })"
104
+ >
105
+ <TreeItem
106
+ v-slot="{ isExpanded, isSelected }"
107
+ as-child
108
+ :level="level"
109
+ :value="item"
110
+ >
111
+ <button :class="ui.link({ class: props.ui?.link, active: isSelected })">
112
+ <UIcon
113
+ v-if="item.children?.length"
114
+ :name="isExpanded ? appConfig.ui.icons.folderOpen : appConfig.ui.icons.folder"
115
+ :class="ui.linkLeadingIcon({ class: props.ui?.linkLeadingIcon })"
116
+ />
117
+ <CodeIcon
118
+ v-else
119
+ :filename="item.label"
120
+ :class="ui.linkLeadingIcon({ class: props.ui?.linkLeadingIcon })"
121
+ />
122
+ <span :class="ui.linkLabel({ class: props.ui?.linkLabel })">
123
+ {{ item.label }}
124
+ </span>
125
+ <span
126
+ v-if="item.children?.length"
127
+ :class="ui.linkTrailing({ class: props.ui?.linkTrailing })"
128
+ >
129
+ <UIcon
130
+ :name="appConfig.ui.icons.chevronDown"
131
+ :class="ui.linkTrailingIcon({ class: props.ui?.linkTrailingIcon })"
132
+ />
133
+ </span>
134
+ </button>
135
+ <ul
136
+ v-if="item.children?.length && isExpanded"
137
+ :class="ui.listWithChildren({ class: props.ui?.listWithChildren })"
138
+ >
139
+ <ReuseTreeTemplate :items="item.children" :level="level + 1" />
140
+ </ul>
141
+ </TreeItem>
142
+ </li>
143
+ </DefineTreeTemplate>
144
+
145
+ <div :class="ui.root({ class: [props.ui?.root, props.class] })">
146
+ <TreeRoot
147
+ v-model="model"
148
+ :items="treeItems"
149
+ :get-key="(item2) => item2.path"
150
+ :default-expanded="expanded"
151
+ :class="ui.list({ class: props.ui?.list })"
152
+ >
153
+ <ReuseTreeTemplate :items="treeItems" :level="0" />
154
+ </TreeRoot>
155
+
156
+ <div :class="ui.content({ class: props.ui?.content })">
157
+ <component :is="lastSelectedItem?.component" />
158
+ </div>
159
+ </div>
160
+ </template>
@@ -0,0 +1,30 @@
1
+ import theme from '#build/ui/prose/code-tree';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseCodeTree = ComponentConfig<typeof theme, AppConfig, 'codeTree', 'ui.prose'>;
5
+ export interface ProseCodeTreeProps {
6
+ /**
7
+ * The default path to select.
8
+ * @example 'package.json'
9
+ */
10
+ defaultValue?: string;
11
+ /**
12
+ * Expand all directories by default.
13
+ * @defaultValue false
14
+ */
15
+ expandAll?: boolean;
16
+ class?: any;
17
+ ui?: ProseCodeTree['slots'];
18
+ }
19
+ export interface ProseCodeTreeSlots {
20
+ default(props?: {}): any;
21
+ }
22
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseCodeTreeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseCodeTreeProps> & Readonly<{}>, {
23
+ expandAll: boolean;
24
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseCodeTreeSlots>;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,41 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/collapsible";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useAppConfig } from "#imports";
8
+ import { useLocalePro } from "../../composables/useLocalePro";
9
+ import { transformUI } from "../../utils";
10
+ import { tv } from "../../utils/tv";
11
+ const props = defineProps({
12
+ icon: { type: String, required: false },
13
+ name: { type: String, required: false },
14
+ openText: { type: String, required: false },
15
+ closeText: { type: String, required: false },
16
+ class: { type: null, required: false },
17
+ ui: { type: null, required: false }
18
+ });
19
+ defineSlots();
20
+ const { t } = useLocalePro();
21
+ const appConfig = useAppConfig();
22
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.collapsible || {} })());
23
+ </script>
24
+
25
+ <template>
26
+ <UCollapsible :unmount-on-hide="false" :class="props.class" :ui="transformUI(ui)">
27
+ <template #default="{ open }">
28
+ <button :class="ui.trigger({ class: props.ui?.trigger })">
29
+ <UIcon :name="icon || appConfig.ui.icons.chevronDown" :class="ui.triggerIcon({ class: props.ui?.triggerIcon })" />
30
+
31
+ <span :class="ui.triggerLabel({ class: props.ui?.triggerLabel })">
32
+ {{ open ? props.closeText || t("prose.collapsible.closeText") : props.openText || t("prose.collapsible.openText") }} {{ props.name || t("prose.collapsible.name") }}
33
+ </span>
34
+ </button>
35
+ </template>
36
+
37
+ <template #content>
38
+ <slot />
39
+ </template>
40
+ </UCollapsible>
41
+ </template>
@@ -0,0 +1,38 @@
1
+ import theme from '#build/ui/prose/collapsible';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseCollapsible = ComponentConfig<typeof theme, AppConfig, 'collapsible', 'ui.prose'>;
5
+ export interface ProseCollapsibleProps {
6
+ /**
7
+ * The icon displayed to toggle the collapsible.
8
+ * @defaultValue appConfig.ui.icons.chevronDown
9
+ */
10
+ icon?: string;
11
+ /**
12
+ * The name displayed in the trigger label.
13
+ * @defaultValue t('prose.collapsible.name')
14
+ */
15
+ name?: string;
16
+ /**
17
+ * The text displayed when the collapsible is open.
18
+ * @defaultValue t('prose.collapsible.openText')
19
+ */
20
+ openText?: string;
21
+ /**
22
+ * The text displayed when the collapsible is closed.
23
+ * @defaultValue t('prose.collapsible.closeText')
24
+ */
25
+ closeText?: string;
26
+ class?: any;
27
+ ui?: ProseCollapsible['slots'];
28
+ }
29
+ export interface ProseCollapsibleSlots {
30
+ default(props?: {}): any;
31
+ }
32
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseCollapsibleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseCollapsibleProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseCollapsibleSlots>;
33
+ export default _default;
34
+ type __VLS_WithSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,19 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/em";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useAppConfig } from "#imports";
8
+ import { tv } from "../../utils/tv";
9
+ const props = defineProps({
10
+ class: { type: String, required: false }
11
+ });
12
+ defineSlots();
13
+ const appConfig = useAppConfig();
14
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.em || {} }));
15
+ </script>
16
+
17
+ <template>
18
+ <em :class="ui({ class: props.class })"><slot /></em>
19
+ </template>
@@ -0,0 +1,13 @@
1
+ export interface ProseEmProps {
2
+ class?: string;
3
+ }
4
+ export interface ProseEmSlots {
5
+ default(props?: {}): any;
6
+ }
7
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseEmProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseEmProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseEmSlots>;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
@@ -0,0 +1,48 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/field";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { Primitive } from "reka-ui";
8
+ import { useAppConfig } from "#imports";
9
+ import { tv } from "../../utils/tv";
10
+ const props = defineProps({
11
+ as: { type: null, required: false },
12
+ name: { type: String, required: false },
13
+ type: { type: String, required: false },
14
+ description: { type: String, required: false },
15
+ required: { type: Boolean, required: false },
16
+ class: { type: null, required: false },
17
+ ui: { type: null, required: false }
18
+ });
19
+ const slots = defineSlots();
20
+ const appConfig = useAppConfig();
21
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.field || {} })());
22
+ </script>
23
+
24
+ <template>
25
+ <Primitive :as="as" :class="ui.root({ class: [props.ui?.root, props.class] })">
26
+ <div :class="ui.container({ class: props.ui?.container })">
27
+ <span v-if="name" :class="ui.name({ class: props.ui?.name })">
28
+ {{ name }}
29
+ </span>
30
+
31
+ <div v-if="type || required" :class="ui.wrapper({ class: props.ui?.wrapper })">
32
+ <span v-if="type" :class="ui.type({ class: props.ui?.type })">
33
+ {{ type }}
34
+ </span>
35
+
36
+ <span v-if="required" :class="ui.required({ class: props.ui?.required })">
37
+ required
38
+ </span>
39
+ </div>
40
+ </div>
41
+
42
+ <div v-if="!!slots.default || description" :class="ui.description({ class: props.ui?.description })">
43
+ <slot mdc-unwrap="p">
44
+ {{ description }}
45
+ </slot>
46
+ </div>
47
+ </Primitive>
48
+ </template>
@@ -0,0 +1,39 @@
1
+ import theme from '#build/ui/prose/field';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseField = ComponentConfig<typeof theme, AppConfig, 'field', 'ui.prose'>;
5
+ export interface ProseFieldProps {
6
+ /**
7
+ * The element or component this component should render as.
8
+ * @defaultValue 'div'
9
+ */
10
+ as?: any;
11
+ /**
12
+ * The name of the field.
13
+ */
14
+ name?: string;
15
+ /**
16
+ * Expected type of the field’s value
17
+ */
18
+ type?: string;
19
+ /**
20
+ * Description of the field
21
+ */
22
+ description?: string;
23
+ /**
24
+ * Indicate whether the field is required
25
+ */
26
+ required?: boolean;
27
+ class?: any;
28
+ ui?: ProseField['slots'];
29
+ }
30
+ export interface ProseFieldSlots {
31
+ default(props?: {}): any;
32
+ }
33
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseFieldProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseFieldSlots>;
34
+ export default _default;
35
+ type __VLS_WithSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -0,0 +1,23 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/field-group";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { Primitive } from "reka-ui";
8
+ import { useAppConfig } from "#imports";
9
+ import { tv } from "../../utils/tv";
10
+ const props = defineProps({
11
+ as: { type: null, required: false },
12
+ class: { type: null, required: false }
13
+ });
14
+ defineSlots();
15
+ const appConfig = useAppConfig();
16
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.fieldGroup || {} }));
17
+ </script>
18
+
19
+ <template>
20
+ <Primitive :as="as" :class="ui({ class: props.class })">
21
+ <slot />
22
+ </Primitive>
23
+ </template>
@@ -0,0 +1,18 @@
1
+ export interface ProseFieldGroupProps {
2
+ /**
3
+ * The element or component this component should render as.
4
+ * @defaultValue 'div'
5
+ */
6
+ as?: any;
7
+ class?: any;
8
+ }
9
+ export interface ProseFieldGroupSlots {
10
+ default(props?: {}): any;
11
+ }
12
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseFieldGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseFieldGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseFieldGroupSlots>;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,28 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/h1";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useAppConfig, useRuntimeConfig } from "#imports";
8
+ import { tv } from "../../utils/tv";
9
+ const props = defineProps({
10
+ id: { type: String, required: false },
11
+ class: { type: null, required: false },
12
+ ui: { type: null, required: false }
13
+ });
14
+ defineSlots();
15
+ const appConfig = useAppConfig();
16
+ const { headings } = useRuntimeConfig().public.mdc;
17
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.h1 || {} })());
18
+ const generate = computed(() => props.id && typeof headings?.anchorLinks === "object" && headings.anchorLinks.h1);
19
+ </script>
20
+
21
+ <template>
22
+ <h1 :id="id" :class="ui.base({ class: props.class })">
23
+ <a v-if="id && generate" :href="`#${id}`" :class="ui.link({ class: props.ui?.link })">
24
+ <slot />
25
+ </a>
26
+ <slot v-else />
27
+ </h1>
28
+ </template>
@@ -0,0 +1,19 @@
1
+ import theme from '#build/ui/prose/h1';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseH1 = ComponentConfig<typeof theme, AppConfig, 'h1', 'ui.prose'>;
5
+ export interface ProseH1Props {
6
+ id?: string;
7
+ class?: any;
8
+ ui?: ProseH1['slots'];
9
+ }
10
+ export interface ProseH1Slots {
11
+ default(props?: {}): any;
12
+ }
13
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseH1Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseH1Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseH1Slots>;
14
+ export default _default;
15
+ type __VLS_WithSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -0,0 +1,32 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/h2";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useRuntimeConfig, useAppConfig } from "#imports";
8
+ import { tv } from "../../utils/tv";
9
+ const props = defineProps({
10
+ id: { type: String, required: false },
11
+ class: { type: null, required: false },
12
+ ui: { type: null, required: false }
13
+ });
14
+ defineSlots();
15
+ const appConfig = useAppConfig();
16
+ const { headings } = useRuntimeConfig().public.mdc;
17
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.h2 || {} })());
18
+ const generate = computed(() => props.id && typeof headings?.anchorLinks === "object" && headings.anchorLinks.h2);
19
+ </script>
20
+
21
+ <template>
22
+ <h2 :id="id" :class="ui.base({ class: props.class })">
23
+ <a v-if="id && generate" :href="`#${id}`" :class="ui.link({ class: props.ui?.link })">
24
+ <span :class="ui.leading({ class: props.ui?.leading })">
25
+ <UIcon :name="appConfig.ui.icons.hash" :class="ui.leadingIcon({ class: props.ui?.leadingIcon })" />
26
+ </span>
27
+
28
+ <slot />
29
+ </a>
30
+ <slot v-else />
31
+ </h2>
32
+ </template>
@@ -0,0 +1,19 @@
1
+ import theme from '#build/ui/prose/h2';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseH2 = ComponentConfig<typeof theme, AppConfig, 'h2', 'ui.prose'>;
5
+ export interface ProseH2Props {
6
+ id?: string;
7
+ class?: any;
8
+ ui?: ProseH2['slots'];
9
+ }
10
+ export interface ProseH2Slots {
11
+ default(props?: {}): any;
12
+ }
13
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseH2Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseH2Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseH2Slots>;
14
+ export default _default;
15
+ type __VLS_WithSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -0,0 +1,32 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/h3";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useRuntimeConfig, useAppConfig } from "#imports";
8
+ import { tv } from "../../utils/tv";
9
+ const props = defineProps({
10
+ id: { type: String, required: false },
11
+ class: { type: null, required: false },
12
+ ui: { type: null, required: false }
13
+ });
14
+ defineSlots();
15
+ const appConfig = useAppConfig();
16
+ const { headings } = useRuntimeConfig().public.mdc;
17
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.h3 || {} })());
18
+ const generate = computed(() => props.id && typeof headings?.anchorLinks === "object" && headings.anchorLinks.h3);
19
+ </script>
20
+
21
+ <template>
22
+ <h3 :id="id" :class="ui.base({ class: props.class })">
23
+ <a v-if="id && generate" :href="`#${id}`" :class="ui.link({ class: props.ui?.link })">
24
+ <span :class="ui.leading({ class: props.ui?.leading })">
25
+ <UIcon :name="appConfig.ui.icons.hash" :class="ui.leadingIcon({ class: props.ui?.leadingIcon })" />
26
+ </span>
27
+
28
+ <slot />
29
+ </a>
30
+ <slot v-else />
31
+ </h3>
32
+ </template>
@@ -0,0 +1,19 @@
1
+ import theme from '#build/ui/prose/h3';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseH3 = ComponentConfig<typeof theme, AppConfig, 'h3', 'ui.prose'>;
5
+ export interface ProseH3Props {
6
+ id?: string;
7
+ class?: any;
8
+ ui?: ProseH3['slots'];
9
+ }
10
+ export interface ProseH3Slots {
11
+ default(props?: {}): any;
12
+ }
13
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseH3Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseH3Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseH3Slots>;
14
+ export default _default;
15
+ type __VLS_WithSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -0,0 +1,28 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/h4";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useRuntimeConfig, useAppConfig } from "#imports";
8
+ import { tv } from "../../utils/tv";
9
+ const props = defineProps({
10
+ id: { type: String, required: false },
11
+ class: { type: null, required: false },
12
+ ui: { type: null, required: false }
13
+ });
14
+ defineSlots();
15
+ const appConfig = useAppConfig();
16
+ const { headings } = useRuntimeConfig().public.mdc;
17
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.h4 || {} })());
18
+ const generate = computed(() => props.id && typeof headings?.anchorLinks === "object" && headings.anchorLinks.h4);
19
+ </script>
20
+
21
+ <template>
22
+ <h4 :id="id" :class="ui.base({ class: props.class })">
23
+ <a v-if="id && generate" :href="`#${id}`" :class="ui.link({ class: props.ui?.link })">
24
+ <slot />
25
+ </a>
26
+ <slot v-else />
27
+ </h4>
28
+ </template>
@@ -0,0 +1,19 @@
1
+ import theme from '#build/ui/prose/h4';
2
+ import type { AppConfig } from '@nuxt/schema';
3
+ import type { ComponentConfig } from '../../types';
4
+ type ProseH4 = ComponentConfig<typeof theme, AppConfig, 'h4', 'ui.prose'>;
5
+ export interface ProseH4Props {
6
+ id?: string;
7
+ class?: any;
8
+ ui?: ProseH4['slots'];
9
+ }
10
+ export interface ProseH4Slots {
11
+ default(props?: {}): any;
12
+ }
13
+ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseH4Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseH4Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseH4Slots>;
14
+ export default _default;
15
+ type __VLS_WithSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -0,0 +1,18 @@
1
+ <script>
2
+ import theme from "#build/ui/prose/hr";
3
+ </script>
4
+
5
+ <script setup>
6
+ import { computed } from "vue";
7
+ import { useAppConfig } from "#imports";
8
+ import { tv } from "../../utils/tv";
9
+ const props = defineProps({
10
+ class: { type: null, required: false }
11
+ });
12
+ const appConfig = useAppConfig();
13
+ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.prose?.hr || {} }));
14
+ </script>
15
+
16
+ <template>
17
+ <hr :class="ui({ class: props.class })">
18
+ </template>