@mframework/ui 0.0.2 → 0.0.5

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 (291) hide show
  1. package/dist/runtime/design/tokens.d.ts +22 -0
  2. package/dist/runtime/design/tokens.js +22 -0
  3. package/dist/runtime/plugins/icon-switcher.d.ts +2 -0
  4. package/dist/runtime/plugins/icon-switcher.js +18 -0
  5. package/dist/runtime/plugins/icons.d.ts +4 -0
  6. package/dist/runtime/plugins/icons.js +13 -0
  7. package/dist/runtime/plugins/theme.d.ts +2 -0
  8. package/dist/runtime/plugins/theme.js +28 -0
  9. package/dist/runtime/plugins/vuetify.d.ts +88 -0
  10. package/dist/runtime/plugins/vuetify.js +60 -0
  11. package/dist/runtime/search/client.d.ts +2 -0
  12. package/dist/runtime/search/client.js +21 -0
  13. package/dist/runtime/search/plugin.d.ts +2 -0
  14. package/dist/runtime/search/plugin.js +8 -0
  15. package/dist/types/ui/api/global-search.d.ts +8 -0
  16. package/dist/types/ui/blocks/block-button-group.d.ts +6 -0
  17. package/dist/types/ui/blocks/block-button.d.ts +13 -0
  18. package/dist/types/ui/blocks/block-column.d.ts +18 -0
  19. package/dist/types/ui/blocks/block-cta.d.ts +11 -0
  20. package/dist/types/ui/blocks/block-divider.d.ts +4 -0
  21. package/dist/types/ui/blocks/block-faq.d.ts +11 -0
  22. package/dist/types/ui/blocks/block-form.d.ts +7 -0
  23. package/dist/types/ui/blocks/block-gallery.d.ts +13 -0
  24. package/dist/types/ui/blocks/block-hero.d.ts +11 -0
  25. package/dist/types/ui/blocks/block-html.d.ts +4 -0
  26. package/dist/types/ui/blocks/block-logocloud.d.ts +13 -0
  27. package/dist/types/ui/blocks/block-quote.d.ts +10 -0
  28. package/dist/types/ui/blocks/block-richtext.d.ts +7 -0
  29. package/dist/types/ui/blocks/block-steps.d.ts +21 -0
  30. package/dist/types/ui/blocks/block-team.d.ts +6 -0
  31. package/dist/types/ui/blocks/block-testimonial.d.ts +13 -0
  32. package/dist/types/ui/blocks/block-video.d.ts +9 -0
  33. package/dist/types/ui/blocks/block.d.ts +17 -0
  34. package/dist/types/ui/component.d.ts +6 -0
  35. package/dist/types/ui/content/category.d.ts +10 -0
  36. package/dist/types/ui/content/form.d.ts +21 -0
  37. package/dist/types/ui/content/page.d.ts +38 -0
  38. package/dist/types/ui/content/post.d.ts +38 -0
  39. package/dist/types/ui/content/team.d.ts +17 -0
  40. package/dist/types/ui/content/testimonial.d.ts +18 -0
  41. package/dist/types/ui/form.d.ts +12 -0
  42. package/dist/types/ui/help/index.d.ts +51 -0
  43. package/dist/types/ui/meta/analytics.d.ts +21 -0
  44. package/dist/types/ui/meta/config.d.ts +22 -0
  45. package/dist/types/ui/meta/globals.d.ts +33 -0
  46. package/dist/types/ui/meta/navigation.d.ts +31 -0
  47. package/dist/types/ui/meta/redirect.d.ts +12 -0
  48. package/dist/types/ui/meta/seo.d.ts +19 -0
  49. package/dist/types/ui/os/contact.d.ts +22 -0
  50. package/dist/types/ui/os/conversation.d.ts +23 -0
  51. package/dist/types/ui/os/organization.d.ts +51 -0
  52. package/dist/types/ui/os/os-activity.d.ts +26 -0
  53. package/dist/types/ui/os/os-deal.d.ts +42 -0
  54. package/dist/types/ui/os/os-expense.d.ts +21 -0
  55. package/dist/types/ui/os/os-invoice.d.ts +46 -0
  56. package/dist/types/ui/os/os-item.d.ts +17 -0
  57. package/dist/types/ui/os/os-payment.d.ts +27 -0
  58. package/dist/types/ui/os/os-project.d.ts +45 -0
  59. package/dist/types/ui/os/os-proposal.d.ts +61 -0
  60. package/dist/types/ui/os/os-settings.d.ts +17 -0
  61. package/dist/types/ui/os/os-subscription.d.ts +12 -0
  62. package/dist/types/ui/os/os-task.d.ts +32 -0
  63. package/dist/types/ui/os/os-tax-rate.d.ts +12 -0
  64. package/dist/types/ui/pageComponentMap.d.ts +2 -0
  65. package/dist/types/ui/pagination.d.ts +6 -0
  66. package/dist/types/ui/schema.d.ts +78 -0
  67. package/dist/types/ui/state.d.ts +5 -0
  68. package/dist/types/ui/system/file.d.ts +47 -0
  69. package/dist/types/ui/system/folder.d.ts +8 -0
  70. package/dist/types/ui/system/role.d.ts +20 -0
  71. package/dist/types/ui/system/user.d.ts +57 -0
  72. package/dist/types/ui/system/user.js +1 -0
  73. package/dist/types/ui.d.ts +21 -0
  74. package/module.ts +95 -6
  75. package/package.json +10 -12
  76. package/runtime/assets/config/tailwind.conifg.js +11 -0
  77. package/runtime/assets/css/tailwind.css +11 -0
  78. package/runtime/design/tokens.ts +22 -0
  79. package/runtime/plugins/icon-switcher.ts +21 -0
  80. package/runtime/plugins/theme.ts +29 -0
  81. package/runtime/plugins/vuetify.js +12 -0
  82. package/runtime/plugins/vuetify.ts +58 -6
  83. package/runtime/search/client.ts +25 -0
  84. package/runtime/search/components/MSearch.vue +19 -0
  85. package/runtime/search/plugin.ts +10 -0
  86. package/tsconfig.json +11 -8
  87. package/type.d.ts +5 -0
  88. package/types/ui/api/global-search.js +1 -0
  89. package/types/ui/blocks/block-button-group.js +1 -0
  90. package/types/ui/blocks/block-button.js +1 -0
  91. package/types/ui/blocks/block-column.js +1 -0
  92. package/types/ui/blocks/block-cta.js +1 -0
  93. package/types/ui/blocks/block-divider.js +1 -0
  94. package/types/ui/blocks/block-faq.js +1 -0
  95. package/types/ui/blocks/block-form.js +1 -0
  96. package/types/ui/blocks/block-gallery.js +1 -0
  97. package/types/ui/blocks/block-hero.js +1 -0
  98. package/types/ui/blocks/block-html.js +1 -0
  99. package/types/ui/blocks/block-logocloud.js +1 -0
  100. package/types/ui/blocks/block-quote.js +1 -0
  101. package/types/ui/blocks/block-richtext.js +1 -0
  102. package/types/ui/blocks/block-steps.js +1 -0
  103. package/types/ui/blocks/block-team.js +1 -0
  104. package/types/ui/blocks/block-testimonial.js +1 -0
  105. package/types/ui/blocks/block-video.js +1 -0
  106. package/types/ui/blocks/block.js +1 -0
  107. package/types/ui/blocks/index.js +1 -0
  108. package/types/ui/blocks/index.ts +18 -0
  109. package/types/ui/component.js +1 -0
  110. package/types/ui/content/category.js +1 -0
  111. package/types/ui/content/form.js +1 -0
  112. package/types/ui/content/index.js +1 -0
  113. package/types/ui/content/index.ts +6 -0
  114. package/types/ui/content/page.js +1 -0
  115. package/types/ui/content/post.js +1 -0
  116. package/types/ui/content/team.js +1 -0
  117. package/types/ui/content/testimonial.js +1 -0
  118. package/types/ui/form.js +1 -0
  119. package/types/ui/help/index.js +1 -0
  120. package/types/ui/meta/analytics.js +1 -0
  121. package/types/ui/meta/config.js +1 -0
  122. package/types/ui/meta/globals.js +1 -0
  123. package/types/ui/meta/index.js +1 -0
  124. package/types/ui/meta/index.ts +6 -0
  125. package/types/ui/meta/navigation.js +1 -0
  126. package/types/ui/meta/redirect.js +1 -0
  127. package/types/ui/meta/seo.js +1 -0
  128. package/types/ui/os/contact.js +1 -0
  129. package/types/ui/os/conversation.js +1 -0
  130. package/types/ui/os/index.js +1 -0
  131. package/types/ui/os/index.ts +16 -0
  132. package/types/ui/os/organization.js +1 -0
  133. package/types/ui/os/os-activity.js +1 -0
  134. package/types/ui/os/os-deal.js +1 -0
  135. package/types/ui/os/os-expense.js +1 -0
  136. package/types/ui/os/os-invoice.js +1 -0
  137. package/types/ui/os/os-item.js +1 -0
  138. package/types/ui/os/os-payment.js +1 -0
  139. package/types/ui/os/os-project.js +1 -0
  140. package/types/ui/os/os-proposal.js +1 -0
  141. package/types/ui/os/os-settings.js +1 -0
  142. package/types/ui/os/os-subscription.js +1 -0
  143. package/types/ui/os/os-task.js +1 -0
  144. package/types/ui/os/os-tax-rate.js +1 -0
  145. package/types/ui/pageComponentMap.js +7 -0
  146. package/types/ui/pagination.js +1 -0
  147. package/types/ui/schema.js +1 -0
  148. package/types/ui/state.js +1 -0
  149. package/types/ui/system/file.js +1 -0
  150. package/types/ui/system/folder.js +1 -0
  151. package/types/ui/system/index.js +1 -0
  152. package/types/ui/system/index.ts +4 -0
  153. package/types/ui/system/role.js +1 -0
  154. package/types/ui/system/user.js +1 -0
  155. package/types/ui.js +1 -0
  156. package/tailwind.conifg.js +0 -1
  157. /package/{src/types/ui/blocks/block-button-group.js → dist/types/ui/api/global-search.js} +0 -0
  158. /package/{src/types/ui/blocks/block-button.js → dist/types/ui/blocks/block-button-group.js} +0 -0
  159. /package/{src/types/ui/blocks/block-column.js → dist/types/ui/blocks/block-button.js} +0 -0
  160. /package/{src/types/ui/blocks/block-cta.js → dist/types/ui/blocks/block-column.js} +0 -0
  161. /package/{src/types/ui/blocks/block-divider.js → dist/types/ui/blocks/block-cta.js} +0 -0
  162. /package/{src/types/ui/blocks/block-faq.js → dist/types/ui/blocks/block-divider.js} +0 -0
  163. /package/{src/types/ui/blocks/block-form.js → dist/types/ui/blocks/block-faq.js} +0 -0
  164. /package/{src/types/ui/blocks/block-gallery.js → dist/types/ui/blocks/block-form.js} +0 -0
  165. /package/{src/types/ui/blocks/block-hero.js → dist/types/ui/blocks/block-gallery.js} +0 -0
  166. /package/{src/types/ui/blocks/block-html.js → dist/types/ui/blocks/block-hero.js} +0 -0
  167. /package/{src/types/ui/blocks/block-logocloud.js → dist/types/ui/blocks/block-html.js} +0 -0
  168. /package/{src/types/ui/blocks/block-quote.js → dist/types/ui/blocks/block-logocloud.js} +0 -0
  169. /package/{src/types/ui/blocks/block-richtext.js → dist/types/ui/blocks/block-quote.js} +0 -0
  170. /package/{src/types/ui/blocks/block-steps.js → dist/types/ui/blocks/block-richtext.js} +0 -0
  171. /package/{src/types/ui/blocks/block-team.js → dist/types/ui/blocks/block-steps.js} +0 -0
  172. /package/{src/types/ui/blocks/block-testimonial.js → dist/types/ui/blocks/block-team.js} +0 -0
  173. /package/{src/types/ui/blocks/block-video.js → dist/types/ui/blocks/block-testimonial.js} +0 -0
  174. /package/{src/types/ui/blocks/block.js → dist/types/ui/blocks/block-video.js} +0 -0
  175. /package/{src/types/ui/blocks/index.js → dist/types/ui/blocks/block.js} +0 -0
  176. /package/{src/types/ui/blocks/index.ts → dist/types/ui/blocks/index.d.ts} +0 -0
  177. /package/{src/types/ui/content → dist/types/ui/blocks}/index.js +0 -0
  178. /package/{src → dist}/types/ui/component.js +0 -0
  179. /package/{src → dist}/types/ui/content/category.js +0 -0
  180. /package/{src → dist}/types/ui/content/form.js +0 -0
  181. /package/{src/types/ui/content/index.ts → dist/types/ui/content/index.d.ts} +0 -0
  182. /package/{src/types/ui/help → dist/types/ui/content}/index.js +0 -0
  183. /package/{src → dist}/types/ui/content/page.js +0 -0
  184. /package/{src → dist}/types/ui/content/post.js +0 -0
  185. /package/{src → dist}/types/ui/content/team.js +0 -0
  186. /package/{src → dist}/types/ui/content/testimonial.js +0 -0
  187. /package/{src → dist}/types/ui/form.js +0 -0
  188. /package/{src/types/ui/meta → dist/types/ui/help}/index.js +0 -0
  189. /package/{src → dist}/types/ui/meta/analytics.js +0 -0
  190. /package/{src → dist}/types/ui/meta/config.js +0 -0
  191. /package/{src → dist}/types/ui/meta/globals.js +0 -0
  192. /package/{src/types/ui/meta/index.ts → dist/types/ui/meta/index.d.ts} +0 -0
  193. /package/{src/types/ui/os → dist/types/ui/meta}/index.js +0 -0
  194. /package/{src → dist}/types/ui/meta/navigation.js +0 -0
  195. /package/{src → dist}/types/ui/meta/redirect.js +0 -0
  196. /package/{src → dist}/types/ui/meta/seo.js +0 -0
  197. /package/{src → dist}/types/ui/os/contact.js +0 -0
  198. /package/{src → dist}/types/ui/os/conversation.js +0 -0
  199. /package/{src/types/ui/os/index.ts → dist/types/ui/os/index.d.ts} +0 -0
  200. /package/{src/types/ui/system → dist/types/ui/os}/index.js +0 -0
  201. /package/{src → dist}/types/ui/os/organization.js +0 -0
  202. /package/{src → dist}/types/ui/os/os-activity.js +0 -0
  203. /package/{src → dist}/types/ui/os/os-deal.js +0 -0
  204. /package/{src → dist}/types/ui/os/os-expense.js +0 -0
  205. /package/{src → dist}/types/ui/os/os-invoice.js +0 -0
  206. /package/{src → dist}/types/ui/os/os-item.js +0 -0
  207. /package/{src → dist}/types/ui/os/os-payment.js +0 -0
  208. /package/{src → dist}/types/ui/os/os-project.js +0 -0
  209. /package/{src → dist}/types/ui/os/os-proposal.js +0 -0
  210. /package/{src → dist}/types/ui/os/os-settings.js +0 -0
  211. /package/{src → dist}/types/ui/os/os-subscription.js +0 -0
  212. /package/{src → dist}/types/ui/os/os-task.js +0 -0
  213. /package/{src → dist}/types/ui/os/os-tax-rate.js +0 -0
  214. /package/{src → dist}/types/ui/pageComponentMap.js +0 -0
  215. /package/{src → dist}/types/ui/pagination.js +0 -0
  216. /package/{src → dist}/types/ui/schema.js +0 -0
  217. /package/{src → dist}/types/ui/state.js +0 -0
  218. /package/{src → dist}/types/ui/system/file.js +0 -0
  219. /package/{src → dist}/types/ui/system/folder.js +0 -0
  220. /package/{src/types/ui/system/index.ts → dist/types/ui/system/index.d.ts} +0 -0
  221. /package/{src/types/ui/system/role.js → dist/types/ui/system/index.js} +0 -0
  222. /package/{src/types/ui/system/user.js → dist/types/ui/system/role.js} +0 -0
  223. /package/{src/types/ui/api/global-search.js → dist/types/ui.js} +0 -0
  224. /package/{src/types → types}/ui/api/global-search.ts +0 -0
  225. /package/{src/types → types}/ui/blocks/block-button-group.ts +0 -0
  226. /package/{src/types → types}/ui/blocks/block-button.ts +0 -0
  227. /package/{src/types → types}/ui/blocks/block-column.ts +0 -0
  228. /package/{src/types → types}/ui/blocks/block-cta.ts +0 -0
  229. /package/{src/types → types}/ui/blocks/block-divider.ts +0 -0
  230. /package/{src/types → types}/ui/blocks/block-faq.ts +0 -0
  231. /package/{src/types → types}/ui/blocks/block-form.ts +0 -0
  232. /package/{src/types → types}/ui/blocks/block-gallery.ts +0 -0
  233. /package/{src/types → types}/ui/blocks/block-hero.ts +0 -0
  234. /package/{src/types → types}/ui/blocks/block-html.ts +0 -0
  235. /package/{src/types → types}/ui/blocks/block-logocloud.ts +0 -0
  236. /package/{src/types → types}/ui/blocks/block-quote.ts +0 -0
  237. /package/{src/types → types}/ui/blocks/block-richtext.ts +0 -0
  238. /package/{src/types → types}/ui/blocks/block-steps.ts +0 -0
  239. /package/{src/types → types}/ui/blocks/block-team.ts +0 -0
  240. /package/{src/types → types}/ui/blocks/block-testimonial.ts +0 -0
  241. /package/{src/types → types}/ui/blocks/block-video.ts +0 -0
  242. /package/{src/types → types}/ui/blocks/block.ts +0 -0
  243. /package/{src/types → types}/ui/component.ts +0 -0
  244. /package/{src/types → types}/ui/content/category.ts +0 -0
  245. /package/{src/types → types}/ui/content/form.ts +0 -0
  246. /package/{src/types → types}/ui/content/page.ts +0 -0
  247. /package/{src/types → types}/ui/content/post.ts +0 -0
  248. /package/{src/types → types}/ui/content/team.ts +0 -0
  249. /package/{src/types → types}/ui/content/testimonial.ts +0 -0
  250. /package/{src/types → types}/ui/env.d.ts +0 -0
  251. /package/{src/types → types}/ui/form.ts +0 -0
  252. /package/{src/types → types}/ui/help/index.ts +0 -0
  253. /package/{src/types → types}/ui/meta/analytics.ts +0 -0
  254. /package/{src/types → types}/ui/meta/config.ts +0 -0
  255. /package/{src/types → types}/ui/meta/globals.ts +0 -0
  256. /package/{src/types → types}/ui/meta/navigation.ts +0 -0
  257. /package/{src/types → types}/ui/meta/redirect.ts +0 -0
  258. /package/{src/types → types}/ui/meta/seo.ts +0 -0
  259. /package/{src/types → types}/ui/os/contact.ts +0 -0
  260. /package/{src/types → types}/ui/os/conversation.ts +0 -0
  261. /package/{src/types → types}/ui/os/organization.ts +0 -0
  262. /package/{src/types → types}/ui/os/os-activity.ts +0 -0
  263. /package/{src/types → types}/ui/os/os-deal.ts +0 -0
  264. /package/{src/types → types}/ui/os/os-expense.ts +0 -0
  265. /package/{src/types → types}/ui/os/os-invoice.ts +0 -0
  266. /package/{src/types → types}/ui/os/os-item.ts +0 -0
  267. /package/{src/types → types}/ui/os/os-payment.ts +0 -0
  268. /package/{src/types → types}/ui/os/os-project.ts +0 -0
  269. /package/{src/types → types}/ui/os/os-proposal.ts +0 -0
  270. /package/{src/types → types}/ui/os/os-settings.ts +0 -0
  271. /package/{src/types → types}/ui/os/os-subscription.ts +0 -0
  272. /package/{src/types → types}/ui/os/os-task.ts +0 -0
  273. /package/{src/types → types}/ui/os/os-tax-rate.ts +0 -0
  274. /package/{src/types → types}/ui/pageComponentMap.ts +0 -0
  275. /package/{src/types → types}/ui/pagination.ts +0 -0
  276. /package/{src/types → types}/ui/schema.d.ts +0 -0
  277. /package/{src/types → types}/ui/schema.ts +0 -0
  278. /package/{src/types → types}/ui/state.ts +0 -0
  279. /package/{src/types → types}/ui/system/file.ts +0 -0
  280. /package/{src/types → types}/ui/system/folder.ts +0 -0
  281. /package/{src/types → types}/ui/system/role.ts +0 -0
  282. /package/{src/types → types}/ui/system/user.ts +0 -0
  283. /package/{src/types → types}/ui.ts +0 -0
  284. /package/{src/utils → utils}/color.js +0 -0
  285. /package/{src/utils → utils}/color.ts +0 -0
  286. /package/{src/utils → utils}/fonts.js +0 -0
  287. /package/{src/utils → utils}/fonts.ts +0 -0
  288. /package/{src/utils → utils}/formkit.js +0 -0
  289. /package/{src/utils → utils}/formkit.ts +0 -0
  290. /package/{src/utils → utils}/icons.js +0 -0
  291. /package/{src/utils → utils}/icons.ts +0 -0
@@ -0,0 +1,25 @@
1
+ import type { SearchClient } from 'instantsearch.js'
2
+
3
+ export function getSearchClient(): SearchClient | null {
4
+ let mod: any
5
+ try {
6
+ mod = require('@searchkit/instantsearch-client')
7
+ } catch {
8
+ console.warn('[mframework-ui] Searchkit client missing')
9
+ return null
10
+ }
11
+
12
+ const candidate =
13
+ mod?.default?.default ||
14
+ mod?.default?.createClient ||
15
+ mod?.default ||
16
+ mod?.createClient ||
17
+ mod
18
+
19
+ if (typeof candidate !== 'function') return null
20
+
21
+ const host = process.env.NUXT_PUBLIC_SEARCHKIT_HOST
22
+ if (!host) return null
23
+
24
+ return candidate({ host })
25
+ }
@@ -0,0 +1,19 @@
1
+ <template>
2
+ <ais-instant-search :search-client="client" :index-name="index">
3
+ <ais-search-box />
4
+ <ais-hits>
5
+ <template #item="{ item }">
6
+ <slot name="hit" :item="item">
7
+ <div class="p-2 border rounded">
8
+ <ais-highlight attribute="title" :hit="item" />
9
+ </div>
10
+ </slot>
11
+ </template>
12
+ </ais-hits>
13
+ </ais-instant-search>
14
+ </template>
15
+
16
+ <script setup lang="ts">
17
+ const client = inject('mSearchClient')
18
+ const index = inject('mSearchIndex')
19
+ </script>
@@ -0,0 +1,10 @@
1
+ import { defineNuxtPlugin } from '#app'
2
+ import { getSearchClient } from './client'
3
+
4
+ export default defineNuxtPlugin((nuxtApp) => {
5
+ const client = getSearchClient()
6
+ const indexName = process.env.NUXT_PUBLIC_SEARCH_INDEX || 'default'
7
+
8
+ nuxtApp.provide('mSearchClient', client)
9
+ nuxtApp.provide('mSearchIndex', indexName)
10
+ })
package/tsconfig.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ES2020",
3
+ "declaration": true,
4
+ "emitDeclarationOnly": false,
5
+ "outDir": "dist",
6
+ "moduleResolution": "bundler",
4
7
  "module": "ESNext",
5
- "moduleResolution": "Node",
6
- "esModuleInterop": true,
7
- "skipLibCheck": true,
8
- "strict": false,
9
- "lib": ["ES2020", "DOM"],
10
- "resolveJsonModule": true
8
+ "target": "ESNext",
9
+ "strict": true,
10
+ "jsx": "react-jsx",
11
+ "skipLibCheck": true,
12
+ "noEmitOnError": false
11
13
  },
12
- "include": ["**/*.ts", "**/*.d.ts"]
14
+ "include": ["runtime/**/*", "src/**/*", "types/**/*"],
15
+ "exclude": ["node_modules", "dist"]
13
16
  }
package/type.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /// <reference types="nuxt/app" />
2
+ /// <reference types="nuxt/schema" />
3
+ /// <reference types="nuxt" />
4
+
5
+ export {}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,18 @@
1
+ export type * from './block-column';
2
+ export type * from './block-cta';
3
+ export type * from './block-faq';
4
+ export type * from './block-form';
5
+ export type * from './block-gallery';
6
+ export type * from './block-hero';
7
+ export type * from './block-html';
8
+ export type * from './block-logocloud';
9
+ export type * from './block-quote';
10
+ export type * from './block-richtext';
11
+ export type * from './block-steps';
12
+ export type * from './block-team';
13
+ export type * from './block-testimonial';
14
+ export type * from './block-video';
15
+ export type * from './block-button-group';
16
+ export type * from './block-button';
17
+ export type * from './block-divider';
18
+ export type * from './block';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export type * from './page';
2
+ export type * from './team';
3
+ export type * from './testimonial';
4
+ export type * from './category';
5
+ export type * from './post';
6
+ export type * from './form';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export type * from './globals';
2
+ export type * from './navigation';
3
+ export type * from './redirect';
4
+ export type * from './seo';
5
+ export type * from './analytics';
6
+ export type * from './config';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,16 @@
1
+ export type * from './contact';
2
+ export type * from './conversation';
3
+ export type * from './index';
4
+ export type * from './organization';
5
+ export type * from './os-activity';
6
+ export type * from './os-deal';
7
+ export type * from './os-expense';
8
+ export type * from './os-invoice';
9
+ export type * from './os-item';
10
+ export type * from './os-payment';
11
+ export type * from './os-project';
12
+ export type * from './os-proposal';
13
+ export type * from './os-settings';
14
+ export type * from './os-subscription';
15
+ export type * from './os-task';
16
+ export type * from './os-tax-rate';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ // types/pageComponentMap.ts
2
+ // Typed mapping for page name/slug -> async component loader
3
+ // Simplified pageComponentMap: dynamic page-to-component mapping is optional.
4
+ // Keeping an empty map avoids build-time resolution of many optional components
5
+ // that may not be present in all installations.
6
+ export const pageComponentMap = {};
7
+ export default pageComponentMap;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ export type * from './file.js';
2
+ export type * from './folder.js';
3
+ export type * from './role.js';
4
+ export type * from './user.js';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
package/types/ui.js ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -1 +0,0 @@
1
- export const content = ['components/**/*.{vue,js}', 'pages/**/*.vue'];
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes