@eslamdevui/ui 3.2.0-beta.1

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 (442) hide show
  1. package/.nuxt/ui/accordion.ts +20 -0
  2. package/.nuxt/ui/alert.ts +264 -0
  3. package/.nuxt/ui/avatar-group.ts +52 -0
  4. package/.nuxt/ui/avatar.ts +54 -0
  5. package/.nuxt/ui/badge.ts +263 -0
  6. package/.nuxt/ui/breadcrumb.ts +45 -0
  7. package/.nuxt/ui/button-group.ts +16 -0
  8. package/.nuxt/ui/button.ts +378 -0
  9. package/.nuxt/ui/calendar.ts +103 -0
  10. package/.nuxt/ui/card.ts +34 -0
  11. package/.nuxt/ui/carousel.ts +38 -0
  12. package/.nuxt/ui/chat-message.ts +129 -0
  13. package/.nuxt/ui/chat-messages.ts +14 -0
  14. package/.nuxt/ui/chat-prompt-submit.ts +5 -0
  15. package/.nuxt/ui/chat-prompt.ts +35 -0
  16. package/.nuxt/ui/checkbox-group.ts +204 -0
  17. package/.nuxt/ui/checkbox.ts +236 -0
  18. package/.nuxt/ui/chip.ts +96 -0
  19. package/.nuxt/ui/collapsible.ts +6 -0
  20. package/.nuxt/ui/color-picker.ts +47 -0
  21. package/.nuxt/ui/command-palette.ts +51 -0
  22. package/.nuxt/ui/container.ts +3 -0
  23. package/.nuxt/ui/content-navigation.ts +339 -0
  24. package/.nuxt/ui/content-search-button.ts +6 -0
  25. package/.nuxt/ui/content-search.ts +6 -0
  26. package/.nuxt/ui/content-surround.ts +34 -0
  27. package/.nuxt/ui/content-toc.ts +150 -0
  28. package/.nuxt/ui/context-menu.ts +217 -0
  29. package/.nuxt/ui/dashboard-group.ts +3 -0
  30. package/.nuxt/ui/dashboard-navbar.ts +21 -0
  31. package/.nuxt/ui/dashboard-panel.ts +17 -0
  32. package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
  33. package/.nuxt/ui/dashboard-search-button.ts +6 -0
  34. package/.nuxt/ui/dashboard-search.ts +6 -0
  35. package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
  36. package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
  37. package/.nuxt/ui/dashboard-sidebar.ts +37 -0
  38. package/.nuxt/ui/drawer.ts +126 -0
  39. package/.nuxt/ui/dropdown-menu.ts +218 -0
  40. package/.nuxt/ui/form-field.ts +48 -0
  41. package/.nuxt/ui/form.ts +3 -0
  42. package/.nuxt/ui/index.ts +71 -0
  43. package/.nuxt/ui/input-menu.ts +450 -0
  44. package/.nuxt/ui/input-number.ts +245 -0
  45. package/.nuxt/ui/input-tags.ts +310 -0
  46. package/.nuxt/ui/input.ts +289 -0
  47. package/.nuxt/ui/kbd.ts +31 -0
  48. package/.nuxt/ui/link.ts +22 -0
  49. package/.nuxt/ui/modal.ts +29 -0
  50. package/.nuxt/ui/navigation-menu.ts +510 -0
  51. package/.nuxt/ui/pagination.ts +13 -0
  52. package/.nuxt/ui/pin-input.ts +171 -0
  53. package/.nuxt/ui/popover.ts +6 -0
  54. package/.nuxt/ui/progress.ts +297 -0
  55. package/.nuxt/ui/prose.ts +321 -0
  56. package/.nuxt/ui/radio-group.ts +350 -0
  57. package/.nuxt/ui/select-menu.ts +351 -0
  58. package/.nuxt/ui/select.ts +346 -0
  59. package/.nuxt/ui/separator.ts +172 -0
  60. package/.nuxt/ui/skeleton.ts +3 -0
  61. package/.nuxt/ui/slideover.ts +71 -0
  62. package/.nuxt/ui/slider.ts +171 -0
  63. package/.nuxt/ui/stepper.ts +202 -0
  64. package/.nuxt/ui/switch.ts +131 -0
  65. package/.nuxt/ui/table.ts +148 -0
  66. package/.nuxt/ui/tabs.ts +256 -0
  67. package/.nuxt/ui/textarea.ts +294 -0
  68. package/.nuxt/ui/timeline.ts +321 -0
  69. package/.nuxt/ui/toast.ts +81 -0
  70. package/.nuxt/ui/toaster.ts +91 -0
  71. package/.nuxt/ui/tooltip.ts +9 -0
  72. package/.nuxt/ui/tree.ts +154 -0
  73. package/.nuxt/ui.css +146 -0
  74. package/LICENSE.md +9 -0
  75. package/README.md +147 -0
  76. package/cli/commands/make/component.mjs +95 -0
  77. package/cli/commands/make/index.mjs +14 -0
  78. package/cli/commands/make/locale.mjs +64 -0
  79. package/cli/index.mjs +15 -0
  80. package/cli/package.json +13 -0
  81. package/cli/templates.mjs +228 -0
  82. package/cli/utils.mjs +31 -0
  83. package/dist/module.d.mts +63 -0
  84. package/dist/module.json +13 -0
  85. package/dist/module.mjs +135 -0
  86. package/dist/runtime/components/Accordion.vue +73 -0
  87. package/dist/runtime/components/Accordion.vue.d.ts +77 -0
  88. package/dist/runtime/components/Alert.vue +88 -0
  89. package/dist/runtime/components/Alert.vue.d.ts +81 -0
  90. package/dist/runtime/components/App.vue +44 -0
  91. package/dist/runtime/components/App.vue.d.ts +24 -0
  92. package/dist/runtime/components/Avatar.vue +83 -0
  93. package/dist/runtime/components/Avatar.vue.d.ts +41 -0
  94. package/dist/runtime/components/AvatarGroup.vue +65 -0
  95. package/dist/runtime/components/AvatarGroup.vue.d.ts +31 -0
  96. package/dist/runtime/components/Badge.vue +60 -0
  97. package/dist/runtime/components/Badge.vue.d.ts +43 -0
  98. package/dist/runtime/components/Breadcrumb.vue +65 -0
  99. package/dist/runtime/components/Breadcrumb.vue.d.ts +66 -0
  100. package/dist/runtime/components/Button.vue +147 -0
  101. package/dist/runtime/components/Button.vue.d.ts +48 -0
  102. package/dist/runtime/components/ButtonGroup.vue +31 -0
  103. package/dist/runtime/components/ButtonGroup.vue.d.ts +34 -0
  104. package/dist/runtime/components/Calendar.vue +154 -0
  105. package/dist/runtime/components/Calendar.vue.d.ts +111 -0
  106. package/dist/runtime/components/Card.vue +37 -0
  107. package/dist/runtime/components/Card.vue.d.ts +29 -0
  108. package/dist/runtime/components/Carousel.vue +210 -0
  109. package/dist/runtime/components/Carousel.vue.d.ts +127 -0
  110. package/dist/runtime/components/ChatMessage.vue +87 -0
  111. package/dist/runtime/components/ChatMessage.vue.d.ts +130 -0
  112. package/dist/runtime/components/ChatMessages.vue +225 -0
  113. package/dist/runtime/components/ChatMessages.vue.d.ts +83 -0
  114. package/dist/runtime/components/ChatPrompt.vue +77 -0
  115. package/dist/runtime/components/ChatPrompt.vue.d.ts +60 -0
  116. package/dist/runtime/components/ChatPromptSubmit.vue +74 -0
  117. package/dist/runtime/components/ChatPromptSubmit.vue.d.ts +99 -0
  118. package/dist/runtime/components/Checkbox.vue +90 -0
  119. package/dist/runtime/components/Checkbox.vue.d.ts +73 -0
  120. package/dist/runtime/components/CheckboxGroup.vue +124 -0
  121. package/dist/runtime/components/CheckboxGroup.vue.d.ts +84 -0
  122. package/dist/runtime/components/Chip.vue +48 -0
  123. package/dist/runtime/components/Chip.vue.d.ts +57 -0
  124. package/dist/runtime/components/Collapsible.vue +37 -0
  125. package/dist/runtime/components/Collapsible.vue.d.ts +35 -0
  126. package/dist/runtime/components/ColorPicker.vue +216 -0
  127. package/dist/runtime/components/ColorPicker.vue.d.ts +48 -0
  128. package/dist/runtime/components/CommandPalette.vue +275 -0
  129. package/dist/runtime/components/CommandPalette.vue.d.ts +187 -0
  130. package/dist/runtime/components/Container.vue +23 -0
  131. package/dist/runtime/components/Container.vue.d.ts +18 -0
  132. package/dist/runtime/components/ContextMenu.vue +61 -0
  133. package/dist/runtime/components/ContextMenu.vue.d.ts +109 -0
  134. package/dist/runtime/components/ContextMenuContent.vue +164 -0
  135. package/dist/runtime/components/ContextMenuContent.vue.d.ts +49 -0
  136. package/dist/runtime/components/DashboardGroup.vue +46 -0
  137. package/dist/runtime/components/DashboardGroup.vue.d.ts +27 -0
  138. package/dist/runtime/components/DashboardNavbar.vue +74 -0
  139. package/dist/runtime/components/DashboardNavbar.vue.d.ts +53 -0
  140. package/dist/runtime/components/DashboardPanel.vue +56 -0
  141. package/dist/runtime/components/DashboardPanel.vue.d.ts +28 -0
  142. package/dist/runtime/components/DashboardResizeHandle.vue +32 -0
  143. package/dist/runtime/components/DashboardResizeHandle.vue.d.ts +22 -0
  144. package/dist/runtime/components/DashboardSearch.vue +124 -0
  145. package/dist/runtime/components/DashboardSearch.vue.d.ts +48 -0
  146. package/dist/runtime/components/DashboardSearchButton.vue +72 -0
  147. package/dist/runtime/components/DashboardSearchButton.vue.d.ts +52 -0
  148. package/dist/runtime/components/DashboardSidebar.vue +170 -0
  149. package/dist/runtime/components/DashboardSidebar.vue.d.ts +72 -0
  150. package/dist/runtime/components/DashboardSidebarCollapse.vue +46 -0
  151. package/dist/runtime/components/DashboardSidebarCollapse.vue.d.ts +15 -0
  152. package/dist/runtime/components/DashboardSidebarToggle.vue +43 -0
  153. package/dist/runtime/components/DashboardSidebarToggle.vue.d.ts +19 -0
  154. package/dist/runtime/components/Drawer.vue +112 -0
  155. package/dist/runtime/components/Drawer.vue.d.ts +78 -0
  156. package/dist/runtime/components/DropdownMenu.vue +68 -0
  157. package/dist/runtime/components/DropdownMenu.vue.d.ts +119 -0
  158. package/dist/runtime/components/DropdownMenuContent.vue +171 -0
  159. package/dist/runtime/components/DropdownMenuContent.vue.d.ts +52 -0
  160. package/dist/runtime/components/Form.vue +210 -0
  161. package/dist/runtime/components/Form.vue.d.ts +70 -0
  162. package/dist/runtime/components/FormField.vue +90 -0
  163. package/dist/runtime/components/FormField.vue.d.ts +61 -0
  164. package/dist/runtime/components/Icon.vue +19 -0
  165. package/dist/runtime/components/Icon.vue.d.ts +8 -0
  166. package/dist/runtime/components/Input.vue +147 -0
  167. package/dist/runtime/components/Input.vue.d.ts +77 -0
  168. package/dist/runtime/components/InputMenu.vue +373 -0
  169. package/dist/runtime/components/InputMenu.vue.d.ts +534 -0
  170. package/dist/runtime/components/InputNumber.vue +144 -0
  171. package/dist/runtime/components/InputNumber.vue.d.ts +260 -0
  172. package/dist/runtime/components/InputTags.vue +159 -0
  173. package/dist/runtime/components/InputTags.vue.d.ts +183 -0
  174. package/dist/runtime/components/Kbd.vue +30 -0
  175. package/dist/runtime/components/Kbd.vue.d.ts +34 -0
  176. package/dist/runtime/components/Link.vue +127 -0
  177. package/dist/runtime/components/Link.vue.d.ts +93 -0
  178. package/dist/runtime/components/LinkBase.vue +57 -0
  179. package/dist/runtime/components/LinkBase.vue.d.ts +25 -0
  180. package/dist/runtime/components/Modal.vue +130 -0
  181. package/dist/runtime/components/Modal.vue.d.ts +106 -0
  182. package/dist/runtime/components/NavigationMenu.vue +275 -0
  183. package/dist/runtime/components/NavigationMenu.vue.d.ts +170 -0
  184. package/dist/runtime/components/OverlayProvider.vue +25 -0
  185. package/dist/runtime/components/OverlayProvider.vue.d.ts +2 -0
  186. package/dist/runtime/components/Pagination.vue +97 -0
  187. package/dist/runtime/components/Pagination.vue.d.ts +118 -0
  188. package/dist/runtime/components/PinInput.vue +94 -0
  189. package/dist/runtime/components/PinInput.vue.d.ts +60 -0
  190. package/dist/runtime/components/Popover.vue +73 -0
  191. package/dist/runtime/components/Popover.vue.d.ts +64 -0
  192. package/dist/runtime/components/Progress.vue +132 -0
  193. package/dist/runtime/components/Progress.vue.d.ts +66 -0
  194. package/dist/runtime/components/RadioGroup.vue +133 -0
  195. package/dist/runtime/components/RadioGroup.vue.d.ts +93 -0
  196. package/dist/runtime/components/Select.vue +225 -0
  197. package/dist/runtime/components/Select.vue.d.ts +253 -0
  198. package/dist/runtime/components/SelectMenu.vue +328 -0
  199. package/dist/runtime/components/SelectMenu.vue.d.ts +302 -0
  200. package/dist/runtime/components/Separator.vue +53 -0
  201. package/dist/runtime/components/Separator.vue.d.ts +54 -0
  202. package/dist/runtime/components/Skeleton.vue +29 -0
  203. package/dist/runtime/components/Skeleton.vue.d.ts +17 -0
  204. package/dist/runtime/components/Slideover.vue +137 -0
  205. package/dist/runtime/components/Slideover.vue.d.ts +107 -0
  206. package/dist/runtime/components/Slider.vue +94 -0
  207. package/dist/runtime/components/Slider.vue.d.ts +58 -0
  208. package/dist/runtime/components/Stepper.vue +116 -0
  209. package/dist/runtime/components/Stepper.vue.d.ts +85 -0
  210. package/dist/runtime/components/Switch.vue +89 -0
  211. package/dist/runtime/components/Switch.vue.d.ts +70 -0
  212. package/dist/runtime/components/Table.vue +286 -0
  213. package/dist/runtime/components/Table.vue.d.ts +185 -0
  214. package/dist/runtime/components/Tabs.vue +84 -0
  215. package/dist/runtime/components/Tabs.vue.d.ts +93 -0
  216. package/dist/runtime/components/Textarea.vue +169 -0
  217. package/dist/runtime/components/Textarea.vue.d.ts +78 -0
  218. package/dist/runtime/components/Timeline.vue +92 -0
  219. package/dist/runtime/components/Timeline.vue.d.ts +70 -0
  220. package/dist/runtime/components/Toast.vue +129 -0
  221. package/dist/runtime/components/Toast.vue.d.ts +163 -0
  222. package/dist/runtime/components/Toaster.vue +111 -0
  223. package/dist/runtime/components/Toaster.vue.d.ts +44 -0
  224. package/dist/runtime/components/Tooltip.vue +62 -0
  225. package/dist/runtime/components/Tooltip.vue.d.ts +50 -0
  226. package/dist/runtime/components/Tree.vue +121 -0
  227. package/dist/runtime/components/Tree.vue.d.ts +113 -0
  228. package/dist/runtime/components/color-mode/ColorModeAvatar.vue +16 -0
  229. package/dist/runtime/components/color-mode/ColorModeAvatar.vue.d.ts +7 -0
  230. package/dist/runtime/components/color-mode/ColorModeButton.vue +45 -0
  231. package/dist/runtime/components/color-mode/ColorModeButton.vue.d.ts +24 -0
  232. package/dist/runtime/components/color-mode/ColorModeImage.vue +17 -0
  233. package/dist/runtime/components/color-mode/ColorModeImage.vue.d.ts +6 -0
  234. package/dist/runtime/components/color-mode/ColorModeSelect.vue +49 -0
  235. package/dist/runtime/components/color-mode/ColorModeSelect.vue.d.ts +7 -0
  236. package/dist/runtime/components/color-mode/ColorModeSwitch.vue +44 -0
  237. package/dist/runtime/components/color-mode/ColorModeSwitch.vue.d.ts +7 -0
  238. package/dist/runtime/components/locale/LocaleSelect.vue +61 -0
  239. package/dist/runtime/components/locale/LocaleSelect.vue.d.ts +16 -0
  240. package/dist/runtime/composables/color-mode/useColorMode.d.ts +3 -0
  241. package/dist/runtime/composables/color-mode/useColorMode.js +5 -0
  242. package/dist/runtime/composables/defineLocale.d.ts +11 -0
  243. package/dist/runtime/composables/defineLocale.js +9 -0
  244. package/dist/runtime/composables/defineShortcuts.d.ts +15 -0
  245. package/dist/runtime/composables/defineShortcuts.js +141 -0
  246. package/dist/runtime/composables/useAvatarGroup.d.ts +10 -0
  247. package/dist/runtime/composables/useAvatarGroup.js +10 -0
  248. package/dist/runtime/composables/useButtonGroup.d.ts +15 -0
  249. package/dist/runtime/composables/useButtonGroup.js +9 -0
  250. package/dist/runtime/composables/useComponentIcons.d.ts +39 -0
  251. package/dist/runtime/composables/useComponentIcons.js +26 -0
  252. package/dist/runtime/composables/useContentSearch.d.ts +6 -0
  253. package/dist/runtime/composables/useContentSearch.js +9 -0
  254. package/dist/runtime/composables/useFormField.d.ts +42 -0
  255. package/dist/runtime/composables/useFormField.js +66 -0
  256. package/dist/runtime/composables/useKbd.d.ts +36 -0
  257. package/dist/runtime/composables/useKbd.js +53 -0
  258. package/dist/runtime/composables/useLocale.d.ts +4 -0
  259. package/dist/runtime/composables/useLocale.js +10 -0
  260. package/dist/runtime/composables/useLocalePro.d.ts +3 -0
  261. package/dist/runtime/composables/useLocalePro.js +11 -0
  262. package/dist/runtime/composables/useOverlay.d.ts +38 -0
  263. package/dist/runtime/composables/useOverlay.js +85 -0
  264. package/dist/runtime/composables/usePortal.d.ts +6 -0
  265. package/dist/runtime/composables/usePortal.js +17 -0
  266. package/dist/runtime/composables/useResizable.d.ts +27 -0
  267. package/dist/runtime/composables/useResizable.js +173 -0
  268. package/dist/runtime/composables/useScrollspy.d.ts +6 -0
  269. package/dist/runtime/composables/useScrollspy.js +38 -0
  270. package/dist/runtime/composables/useToast.d.ts +13 -0
  271. package/dist/runtime/composables/useToast.js +62 -0
  272. package/dist/runtime/index.css +1 -0
  273. package/dist/runtime/inertia/components/Link.vue +132 -0
  274. package/dist/runtime/inertia/components/Link.vue.d.ts +63 -0
  275. package/dist/runtime/inertia/components/LinkBase.vue +68 -0
  276. package/dist/runtime/inertia/components/LinkBase.vue.d.ts +25 -0
  277. package/dist/runtime/inertia/stubs.d.ts +43 -0
  278. package/dist/runtime/inertia/stubs.js +82 -0
  279. package/dist/runtime/keyframes.css +1 -0
  280. package/dist/runtime/locale/ar.d.ts +3 -0
  281. package/dist/runtime/locale/ar.js +56 -0
  282. package/dist/runtime/locale/az.d.ts +3 -0
  283. package/dist/runtime/locale/az.js +55 -0
  284. package/dist/runtime/locale/bg.d.ts +3 -0
  285. package/dist/runtime/locale/bg.js +55 -0
  286. package/dist/runtime/locale/bn.d.ts +3 -0
  287. package/dist/runtime/locale/bn.js +55 -0
  288. package/dist/runtime/locale/ca.d.ts +3 -0
  289. package/dist/runtime/locale/ca.js +55 -0
  290. package/dist/runtime/locale/ckb.d.ts +3 -0
  291. package/dist/runtime/locale/ckb.js +56 -0
  292. package/dist/runtime/locale/cs.d.ts +3 -0
  293. package/dist/runtime/locale/cs.js +55 -0
  294. package/dist/runtime/locale/da.d.ts +3 -0
  295. package/dist/runtime/locale/da.js +55 -0
  296. package/dist/runtime/locale/de.d.ts +3 -0
  297. package/dist/runtime/locale/de.js +55 -0
  298. package/dist/runtime/locale/el.d.ts +3 -0
  299. package/dist/runtime/locale/el.js +55 -0
  300. package/dist/runtime/locale/en.d.ts +3 -0
  301. package/dist/runtime/locale/en.js +125 -0
  302. package/dist/runtime/locale/es.d.ts +3 -0
  303. package/dist/runtime/locale/es.js +55 -0
  304. package/dist/runtime/locale/et.d.ts +3 -0
  305. package/dist/runtime/locale/et.js +55 -0
  306. package/dist/runtime/locale/fa_ir.d.ts +3 -0
  307. package/dist/runtime/locale/fa_ir.js +56 -0
  308. package/dist/runtime/locale/fi.d.ts +3 -0
  309. package/dist/runtime/locale/fi.js +55 -0
  310. package/dist/runtime/locale/fr.d.ts +3 -0
  311. package/dist/runtime/locale/fr.js +55 -0
  312. package/dist/runtime/locale/he.d.ts +3 -0
  313. package/dist/runtime/locale/he.js +54 -0
  314. package/dist/runtime/locale/hi.d.ts +3 -0
  315. package/dist/runtime/locale/hi.js +55 -0
  316. package/dist/runtime/locale/hu.d.ts +3 -0
  317. package/dist/runtime/locale/hu.js +55 -0
  318. package/dist/runtime/locale/hy.d.ts +3 -0
  319. package/dist/runtime/locale/hy.js +55 -0
  320. package/dist/runtime/locale/id.d.ts +3 -0
  321. package/dist/runtime/locale/id.js +55 -0
  322. package/dist/runtime/locale/index.d.ts +51 -0
  323. package/dist/runtime/locale/index.js +51 -0
  324. package/dist/runtime/locale/it.d.ts +3 -0
  325. package/dist/runtime/locale/it.js +55 -0
  326. package/dist/runtime/locale/ja.d.ts +3 -0
  327. package/dist/runtime/locale/ja.js +55 -0
  328. package/dist/runtime/locale/kk.d.ts +3 -0
  329. package/dist/runtime/locale/kk.js +55 -0
  330. package/dist/runtime/locale/km.d.ts +3 -0
  331. package/dist/runtime/locale/km.js +55 -0
  332. package/dist/runtime/locale/ko.d.ts +3 -0
  333. package/dist/runtime/locale/ko.js +55 -0
  334. package/dist/runtime/locale/ky.d.ts +3 -0
  335. package/dist/runtime/locale/ky.js +55 -0
  336. package/dist/runtime/locale/lb.d.ts +3 -0
  337. package/dist/runtime/locale/lb.js +55 -0
  338. package/dist/runtime/locale/lt.d.ts +3 -0
  339. package/dist/runtime/locale/lt.js +55 -0
  340. package/dist/runtime/locale/mn.d.ts +3 -0
  341. package/dist/runtime/locale/mn.js +55 -0
  342. package/dist/runtime/locale/ms.d.ts +3 -0
  343. package/dist/runtime/locale/ms.js +55 -0
  344. package/dist/runtime/locale/nb_no.d.ts +3 -0
  345. package/dist/runtime/locale/nb_no.js +55 -0
  346. package/dist/runtime/locale/nl.d.ts +3 -0
  347. package/dist/runtime/locale/nl.js +55 -0
  348. package/dist/runtime/locale/pl.d.ts +3 -0
  349. package/dist/runtime/locale/pl.js +55 -0
  350. package/dist/runtime/locale/pt.d.ts +3 -0
  351. package/dist/runtime/locale/pt.js +55 -0
  352. package/dist/runtime/locale/pt_br.d.ts +3 -0
  353. package/dist/runtime/locale/pt_br.js +55 -0
  354. package/dist/runtime/locale/ro.d.ts +3 -0
  355. package/dist/runtime/locale/ro.js +55 -0
  356. package/dist/runtime/locale/ru.d.ts +3 -0
  357. package/dist/runtime/locale/ru.js +55 -0
  358. package/dist/runtime/locale/sk.d.ts +3 -0
  359. package/dist/runtime/locale/sk.js +55 -0
  360. package/dist/runtime/locale/sl.d.ts +3 -0
  361. package/dist/runtime/locale/sl.js +55 -0
  362. package/dist/runtime/locale/sv.d.ts +3 -0
  363. package/dist/runtime/locale/sv.js +55 -0
  364. package/dist/runtime/locale/th.d.ts +3 -0
  365. package/dist/runtime/locale/th.js +55 -0
  366. package/dist/runtime/locale/tj.d.ts +3 -0
  367. package/dist/runtime/locale/tj.js +55 -0
  368. package/dist/runtime/locale/tr.d.ts +3 -0
  369. package/dist/runtime/locale/tr.js +55 -0
  370. package/dist/runtime/locale/ug_cn.d.ts +3 -0
  371. package/dist/runtime/locale/ug_cn.js +56 -0
  372. package/dist/runtime/locale/uk.d.ts +3 -0
  373. package/dist/runtime/locale/uk.js +55 -0
  374. package/dist/runtime/locale/ur.d.ts +3 -0
  375. package/dist/runtime/locale/ur.js +56 -0
  376. package/dist/runtime/locale/uz.d.ts +3 -0
  377. package/dist/runtime/locale/uz.js +55 -0
  378. package/dist/runtime/locale/vi.d.ts +3 -0
  379. package/dist/runtime/locale/vi.js +55 -0
  380. package/dist/runtime/locale/zh_cn.d.ts +3 -0
  381. package/dist/runtime/locale/zh_cn.js +55 -0
  382. package/dist/runtime/locale/zh_tw.d.ts +3 -0
  383. package/dist/runtime/locale/zh_tw.js +55 -0
  384. package/dist/runtime/plugins/colors.d.ts +2 -0
  385. package/dist/runtime/plugins/colors.js +51 -0
  386. package/dist/runtime/types/app.config.d.ts +6 -0
  387. package/dist/runtime/types/content.d.ts +1 -0
  388. package/dist/runtime/types/content.js +0 -0
  389. package/dist/runtime/types/form.d.ts +87 -0
  390. package/dist/runtime/types/form.js +12 -0
  391. package/dist/runtime/types/index.d.ts +76 -0
  392. package/dist/runtime/types/index.js +76 -0
  393. package/dist/runtime/types/locale.d.ts +127 -0
  394. package/dist/runtime/types/locale.js +0 -0
  395. package/dist/runtime/types/prose.d.ts +1 -0
  396. package/dist/runtime/types/prose.js +0 -0
  397. package/dist/runtime/types/tv.d.ts +53 -0
  398. package/dist/runtime/types/tv.js +0 -0
  399. package/dist/runtime/types/utils.d.ts +41 -0
  400. package/dist/runtime/types/utils.js +1 -0
  401. package/dist/runtime/utils/content.d.ts +13 -0
  402. package/dist/runtime/utils/content.js +51 -0
  403. package/dist/runtime/utils/dashboard.d.ts +10 -0
  404. package/dist/runtime/utils/dashboard.js +5 -0
  405. package/dist/runtime/utils/form.d.ts +13 -0
  406. package/dist/runtime/utils/form.js +108 -0
  407. package/dist/runtime/utils/fuse.d.ts +4 -0
  408. package/dist/runtime/utils/fuse.js +63 -0
  409. package/dist/runtime/utils/index.d.ts +12 -0
  410. package/dist/runtime/utils/index.js +89 -0
  411. package/dist/runtime/utils/link.d.ts +7 -0
  412. package/dist/runtime/utils/link.js +47 -0
  413. package/dist/runtime/utils/locale.d.ts +15 -0
  414. package/dist/runtime/utils/locale.js +25 -0
  415. package/dist/runtime/utils/tv.d.ts +1 -0
  416. package/dist/runtime/utils/tv.js +4 -0
  417. package/dist/runtime/vue/components/Icon.vue +14 -0
  418. package/dist/runtime/vue/components/Icon.vue.d.ts +5 -0
  419. package/dist/runtime/vue/components/Link.vue +169 -0
  420. package/dist/runtime/vue/components/Link.vue.d.ts +93 -0
  421. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue +34 -0
  422. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue.d.ts +38 -0
  423. package/dist/runtime/vue/components/color-mode/ColorModeSelect.vue +37 -0
  424. package/dist/runtime/vue/components/color-mode/ColorModeSelect.vue.d.ts +5 -0
  425. package/dist/runtime/vue/components/color-mode/ColorModeSwitch.vue +32 -0
  426. package/dist/runtime/vue/components/color-mode/ColorModeSwitch.vue.d.ts +5 -0
  427. package/dist/runtime/vue/composables/useAppConfig.d.ts +1 -0
  428. package/dist/runtime/vue/composables/useAppConfig.js +4 -0
  429. package/dist/runtime/vue/plugins/color-mode.d.ts +4 -0
  430. package/dist/runtime/vue/plugins/color-mode.js +6 -0
  431. package/dist/runtime/vue/plugins/head.d.ts +4 -0
  432. package/dist/runtime/vue/plugins/head.js +10 -0
  433. package/dist/runtime/vue/stubs.d.ts +40 -0
  434. package/dist/runtime/vue/stubs.js +74 -0
  435. package/dist/shared/ui.BcVNrqyb.mjs +5374 -0
  436. package/dist/types.d.mts +5 -0
  437. package/dist/unplugin.d.mts +88 -0
  438. package/dist/unplugin.mjs +242 -0
  439. package/dist/vite.d.mts +15 -0
  440. package/dist/vite.mjs +21 -0
  441. package/package.json +255 -0
  442. package/vue-plugin.d.ts +5 -0
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "Sloven\u0161\u010Dina",
4
+ code: "sl",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "Ni ujemanj",
8
+ noData: "Ni podatkov",
9
+ create: 'Ustvari "{label}"'
10
+ },
11
+ calendar: {
12
+ prevYear: "Prej\u0161nje leto",
13
+ nextYear: "Naslednje leto",
14
+ prevMonth: "Prej\u0161nji mesec",
15
+ nextMonth: "Naslednji mesec"
16
+ },
17
+ inputNumber: {
18
+ increment: "Povi\u0161aj",
19
+ decrement: "Zmanj\u0161aj"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "Vpi\u0161i ukaz ali i\u0161\u010Di...",
23
+ noMatch: "Ni ujemanj",
24
+ noData: "Ni podatkov",
25
+ close: "Zapri",
26
+ back: "Nazaj"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "Ni ujemanj",
30
+ noData: "Ni podatkov",
31
+ create: 'Ustvari "{label}"',
32
+ search: "I\u0161\u010Di..."
33
+ },
34
+ toast: {
35
+ close: "Zapri"
36
+ },
37
+ carousel: {
38
+ prev: "Nazaj",
39
+ next: "Naprej",
40
+ goto: "Pojdi na {slide}"
41
+ },
42
+ modal: {
43
+ close: "Zapri"
44
+ },
45
+ slideover: {
46
+ close: "Zapri"
47
+ },
48
+ alert: {
49
+ close: "Zapri"
50
+ },
51
+ table: {
52
+ noData: "Ni podatkov"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "Svenska",
4
+ code: "sv",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "Inga matchande data",
8
+ noData: "Inga data",
9
+ create: 'Skapa "{label}"'
10
+ },
11
+ calendar: {
12
+ prevYear: "F\xF6reg\xE5ende \xE5r",
13
+ nextYear: "N\xE4sta \xE5r",
14
+ prevMonth: "F\xF6reg\xE5ende m\xE5nad",
15
+ nextMonth: "N\xE4sta m\xE5nad"
16
+ },
17
+ inputNumber: {
18
+ increment: "\xD6ka",
19
+ decrement: "Minska"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "Skriv ett kommando eller s\xF6k...",
23
+ noMatch: "Inga matchande data",
24
+ noData: "Inga data",
25
+ close: "St\xE4ng",
26
+ back: "Tillbaka"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "Inga matchande data",
30
+ noData: "Inga data",
31
+ create: 'Skapa "{label}"',
32
+ search: "S\xF6k..."
33
+ },
34
+ toast: {
35
+ close: "St\xE4ng"
36
+ },
37
+ carousel: {
38
+ prev: "F\xF6reg\xE5ende",
39
+ next: "N\xE4sta",
40
+ goto: "G\xE5 till {slide}"
41
+ },
42
+ modal: {
43
+ close: "St\xE4ng"
44
+ },
45
+ slideover: {
46
+ close: "St\xE4ng"
47
+ },
48
+ alert: {
49
+ close: "St\xE4ng"
50
+ },
51
+ table: {
52
+ noData: "Inga data"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "\u0E44\u0E17\u0E22",
4
+ code: "th",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E19",
8
+ noData: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25",
9
+ create: '\u0E2A\u0E23\u0E49\u0E32\u0E07 "{label}"'
10
+ },
11
+ calendar: {
12
+ prevYear: "\u0E1B\u0E35\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32",
13
+ nextYear: "\u0E1B\u0E35\u0E16\u0E31\u0E14\u0E44\u0E1B",
14
+ prevMonth: "\u0E40\u0E14\u0E37\u0E2D\u0E19\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32",
15
+ nextMonth: "\u0E40\u0E14\u0E37\u0E2D\u0E19\u0E16\u0E31\u0E14\u0E44\u0E1B"
16
+ },
17
+ inputNumber: {
18
+ increment: "\u0E40\u0E1E\u0E34\u0E48\u0E21",
19
+ decrement: "\u0E25\u0E14"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "\u0E1E\u0E34\u0E21\u0E1E\u0E4C\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E04\u0E49\u0E19\u0E2B\u0E32...",
23
+ noMatch: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E19",
24
+ noData: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25",
25
+ close: "\u0E1B\u0E34\u0E14",
26
+ back: "\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E19",
30
+ noData: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25",
31
+ create: '\u0E2A\u0E23\u0E49\u0E32\u0E07 "{label}"',
32
+ search: "\u0E04\u0E49\u0E19\u0E2B\u0E32..."
33
+ },
34
+ toast: {
35
+ close: "\u0E1B\u0E34\u0E14"
36
+ },
37
+ carousel: {
38
+ prev: "\u0E22\u0E49\u0E2D\u0E19\u0E01\u0E25\u0E31\u0E1A",
39
+ next: "\u0E16\u0E31\u0E14\u0E44\u0E1B",
40
+ goto: "\u0E44\u0E1B\u0E17\u0E35\u0E48 {slide}"
41
+ },
42
+ modal: {
43
+ close: "\u0E1B\u0E34\u0E14"
44
+ },
45
+ slideover: {
46
+ close: "\u0E1B\u0E34\u0E14"
47
+ },
48
+ alert: {
49
+ close: "\u0E1B\u0E34\u0E14"
50
+ },
51
+ table: {
52
+ noData: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "\u0422\u043E\u04B7\u0438\u043A\u04E3",
4
+ code: "tj",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442\u0438 \u043C\u0443\u0432\u043E\u0444\u0438\u049B \u0451\u0444\u0442 \u043D\u0430\u0448\u0443\u0434",
8
+ noData: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442 \u043D\u0435\u0441\u0442",
9
+ create: '"{label}" \u0441\u043E\u0437\u0435\u0434'
10
+ },
11
+ calendar: {
12
+ prevYear: "\u0421\u043E\u043B\u0438 \u0433\u0443\u0437\u0430\u0448\u0442\u0430",
13
+ nextYear: "\u0421\u043E\u043B\u0438 \u043E\u044F\u043D\u0434\u0430",
14
+ prevMonth: "\u041C\u043E\u04B3\u0438 \u0433\u0443\u0437\u0430\u0448\u0442\u0430",
15
+ nextMonth: "\u041C\u043E\u04B3\u0438 \u043E\u044F\u043D\u0434\u0430"
16
+ },
17
+ inputNumber: {
18
+ increment: "\u0417\u0438\u0451\u0434 \u043A\u0430\u0440\u0434\u0430\u043D",
19
+ decrement: "\u041A\u0430\u043C \u043A\u0430\u0440\u0434\u0430\u043D"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "\u0424\u0430\u0440\u043C\u043E\u043D\u0440\u043E \u043D\u0430\u0432\u0438\u0441\u0435\u0434 \u0451 \u04B7\u0443\u0441\u0442\u0443\u04B7\u04EF \u043A\u0443\u043D\u0435\u0434...",
23
+ noMatch: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442\u0438 \u043C\u0443\u0432\u043E\u0444\u0438\u049B \u0451\u0444\u0442 \u043D\u0430\u0448\u0443\u0434",
24
+ noData: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442 \u043D\u0435\u0441\u0442",
25
+ close: "\u0411\u0430\u0441\u0442\u0430\u043D",
26
+ back: "\u0411\u043E\u0437\u0433\u0430\u0448\u0442"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442\u0438 \u043C\u0443\u0432\u043E\u0444\u0438\u049B \u0451\u0444\u0442 \u043D\u0430\u0448\u0443\u0434",
30
+ noData: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442 \u043D\u0435\u0441\u0442",
31
+ create: '"{label}" \u0441\u043E\u0437\u0435\u0434',
32
+ search: "\u04B6\u0443\u0441\u0442\u0443\u04B7\u04EF..."
33
+ },
34
+ toast: {
35
+ close: "\u0411\u0430\u0441\u0442\u0430\u043D"
36
+ },
37
+ carousel: {
38
+ prev: "\u049A\u0430\u0431\u043B\u04E3",
39
+ next: "\u0411\u0430\u044A\u0434\u04E3",
40
+ goto: "\u0411\u0430 \u0441\u043B\u0430\u0439\u0434\u0438 {slide} \u0433\u0443\u0437\u0430\u0440\u0435\u0434"
41
+ },
42
+ modal: {
43
+ close: "\u0411\u0430\u0441\u0442\u0430\u043D"
44
+ },
45
+ slideover: {
46
+ close: "\u0411\u0430\u0441\u0442\u0430\u043D"
47
+ },
48
+ alert: {
49
+ close: "\u0411\u0430\u0441\u0442\u0430\u043D"
50
+ },
51
+ table: {
52
+ noData: "\u041C\u0430\u044A\u043B\u0443\u043C\u043E\u0442 \u043D\u0435\u0441\u0442"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "T\xFCrk\xE7e",
4
+ code: "tr",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "E\u015Fle\u015Fen veri yok",
8
+ noData: "Veri yok",
9
+ create: '"{label}" olu\u015Ftur'
10
+ },
11
+ calendar: {
12
+ prevYear: "\xD6nceki y\u0131l",
13
+ nextYear: "Sonraki y\u0131l",
14
+ prevMonth: "\xD6nceki ay",
15
+ nextMonth: "Sonraki ay"
16
+ },
17
+ inputNumber: {
18
+ increment: "Artt\u0131r",
19
+ decrement: "Azalt"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "Bir komut yaz\u0131n veya arama yap\u0131n...",
23
+ noMatch: "E\u015Fle\u015Fen veri yok",
24
+ noData: "Veri yok",
25
+ close: "Kapat",
26
+ back: "Geri"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "E\u015Fle\u015Fen veri yok",
30
+ noData: "Veri yok",
31
+ create: '"{label}" olu\u015Ftur',
32
+ search: "Ara..."
33
+ },
34
+ toast: {
35
+ close: "Kapat"
36
+ },
37
+ carousel: {
38
+ prev: "\xD6nceki",
39
+ next: "Sonraki",
40
+ goto: "{slide}. slayda git"
41
+ },
42
+ modal: {
43
+ close: "Kapat"
44
+ },
45
+ slideover: {
46
+ close: "Kapat"
47
+ },
48
+ alert: {
49
+ close: "Kapat"
50
+ },
51
+ table: {
52
+ noData: "Veri yok"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,56 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "\u0626\u06C7\u064A\u063A\u06C7\u0631\u0686\u06D5",
4
+ code: "ug-CN",
5
+ dir: "rtl",
6
+ messages: {
7
+ inputMenu: {
8
+ noMatch: "\u0645\u0627\u0633 \u0643\u06D0\u0644\u0649\u062F\u0649\u063A\u0627\u0646 \u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642",
9
+ noData: "\u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642",
10
+ create: '"{label}" \u0646\u0649 \u0642\u06C7\u0631\u06C7\u0634'
11
+ },
12
+ calendar: {
13
+ prevYear: "\u0626\u0627\u0644\u062F\u0649\u0646\u0642\u0649 \u064A\u0649\u0644",
14
+ nextYear: "\u0643\u06D0\u0644\u06D5\u0631 \u064A\u0649\u0644",
15
+ prevMonth: "\u0626\u0627\u0644\u062F\u0649\u0646\u0642\u0649 \u0626\u0627\u064A",
16
+ nextMonth: "\u0643\u06D0\u0644\u06D5\u0631 \u0626\u0627\u064A"
17
+ },
18
+ inputNumber: {
19
+ increment: "\u0643\u06C6\u067E\u06D5\u064A\u062A\u0649\u0634",
20
+ decrement: "\u0626\u0627\u0632\u0627\u064A\u062A\u0649\u0634"
21
+ },
22
+ commandPalette: {
23
+ placeholder: "\u0628\u06C7\u064A\u0631\u06C7\u0642 \u0643\u0649\u0631\u06AF\u06C8\u0632\u06C8\u06AD \u064A\u0627\u0643\u0649 \u0626\u0649\u0632\u062F\u06D5\u06AD...",
24
+ noMatch: "\u0645\u0627\u0633 \u0643\u06D0\u0644\u0649\u062F\u0649\u063A\u0627\u0646 \u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642",
25
+ noData: "\u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642",
26
+ close: "\u062A\u0627\u0642\u0627\u0634",
27
+ back: "\u0642\u0627\u064A\u062A\u0649\u0634"
28
+ },
29
+ selectMenu: {
30
+ noMatch: "\u0645\u0627\u0633 \u0643\u06D0\u0644\u0649\u062F\u0649\u063A\u0627\u0646 \u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642",
31
+ noData: "\u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642",
32
+ create: '"{label}" \u0646\u0649 \u0642\u06C7\u0631\u06C7\u0634',
33
+ search: "\u0626\u0649\u0632\u062F\u06D5\u0634..."
34
+ },
35
+ toast: {
36
+ close: "\u062A\u0627\u0642\u0627\u0634"
37
+ },
38
+ carousel: {
39
+ prev: "\u0626\u0627\u0644\u062F\u0649\u0646\u0642\u0649 \u0628\u06D5\u062A",
40
+ next: "\u0643\u06D0\u064A\u0649\u0646\u0643\u0649 \u0628\u06D5\u062A",
41
+ goto: "{slide}-\u0628\u06D5\u062A\u0643\u06D5 \u0626\u0627\u062A\u0644\u0627\u0634"
42
+ },
43
+ modal: {
44
+ close: "\u062A\u0627\u0642\u0627\u0634"
45
+ },
46
+ slideover: {
47
+ close: "\u062A\u0627\u0642\u0627\u0634"
48
+ },
49
+ alert: {
50
+ close: "\u062A\u0627\u0642\u0627\u0634"
51
+ },
52
+ table: {
53
+ noData: "\u0633\u0627\u0646\u0644\u0649\u0642 \u0645\u06D5\u0644\u06C7\u0645\u0627\u062A \u064A\u0648\u0642"
54
+ }
55
+ }
56
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "\u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430",
4
+ code: "uk",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "\u0417\u0431\u0456\u0433\u0456\u0432 \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E",
8
+ noData: "\u041D\u0435\u043C\u0430\u0454 \u0434\u0430\u043D\u0438\u0445",
9
+ create: '\u0421\u0442\u0432\u043E\u0440\u0438\u0442\u0438 "{label}"'
10
+ },
11
+ calendar: {
12
+ prevYear: "\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u0440\u0456\u043A",
13
+ nextYear: "\u041D\u0430\u0441\u0442\u0443\u043F\u043D\u0438\u0439 \u0440\u0456\u043A",
14
+ prevMonth: "\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u0456\u0439 \u043C\u0456\u0441\u044F\u0446\u044C",
15
+ nextMonth: "\u041D\u0430\u0441\u0442\u0443\u043F\u043D\u0438\u0439 \u043C\u0456\u0441\u044F\u0446\u044C"
16
+ },
17
+ inputNumber: {
18
+ increment: "\u0417\u0431\u0456\u043B\u044C\u0448\u0438\u0442\u0438",
19
+ decrement: "\u0417\u043C\u0435\u043D\u0448\u0438\u0442\u0438"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u043A\u043E\u043C\u0430\u043D\u0434\u0443 \u0430\u0431\u043E \u0448\u0443\u043A\u0430\u0439\u0442\u0435...",
23
+ noMatch: "\u0417\u0431\u0456\u0433\u0456\u0432 \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E",
24
+ noData: "\u041D\u0435\u043C\u0430\u0454 \u0434\u0430\u043D\u0438\u0445",
25
+ close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438",
26
+ back: "\u041D\u0430\u0437\u0430\u0434"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "\u0417\u0431\u0456\u0433\u0456\u0432 \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E",
30
+ noData: "\u041D\u0435\u043C\u0430\u0454 \u0434\u0430\u043D\u0438\u0445",
31
+ create: '\u0421\u0442\u0432\u043E\u0440\u0438\u0442\u0438 "{label}"',
32
+ search: "\u041F\u043E\u0448\u0443\u043A..."
33
+ },
34
+ toast: {
35
+ close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438"
36
+ },
37
+ carousel: {
38
+ prev: "\u041D\u0430\u0437\u0430\u0434",
39
+ next: "\u0414\u0430\u043B\u0456",
40
+ goto: "\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043E {slide}"
41
+ },
42
+ modal: {
43
+ close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438"
44
+ },
45
+ slideover: {
46
+ close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438"
47
+ },
48
+ alert: {
49
+ close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438"
50
+ },
51
+ table: {
52
+ noData: "\u041D\u0435\u043C\u0430\u0454 \u0434\u0430\u043D\u0438\u0445"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,56 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "Urdu",
4
+ code: "ur",
5
+ dir: "rtl",
6
+ messages: {
7
+ inputMenu: {
8
+ noMatch: "\u06A9\u0648\u0626\u06CC \u0645\u0644\u062A\u0627 \u062C\u0644\u062A\u0627 \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA \u0645\u0644\u0627",
9
+ noData: "\u06A9\u0648\u0626\u06CC \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA",
10
+ create: '"{label}" \u0628\u0646\u0627\u0626\u06CC\u06BA'
11
+ },
12
+ calendar: {
13
+ prevYear: "\u067E\u0686\u06BE\u0644\u0627 \u0633\u0627\u0644",
14
+ nextYear: "\u0627\u06AF\u0644\u0627 \u0633\u0627\u0644",
15
+ prevMonth: "\u067E\u0686\u06BE\u0644\u0627 \u0645\u06C1\u06CC\u0646\u06C1",
16
+ nextMonth: "\u0627\u06AF\u0644\u0627 \u0645\u06C1\u06CC\u0646\u06C1"
17
+ },
18
+ inputNumber: {
19
+ increment: "\u0627\u0636\u0627\u0641\u06C1",
20
+ decrement: "\u06A9\u0645\u06CC"
21
+ },
22
+ commandPalette: {
23
+ placeholder: "\u06A9\u0645\u0627\u0646\u0688 \u0679\u0627\u0626\u067E \u06A9\u0631\u06CC\u06BA \u06CC\u0627 \u062A\u0644\u0627\u0634 \u06A9\u0631\u06CC\u06BA...",
24
+ noMatch: "\u06A9\u0648\u0626\u06CC \u0645\u0644\u062A\u0627 \u062C\u0644\u062A\u0627 \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA \u0645\u0644\u0627",
25
+ noData: "\u06A9\u0648\u0626\u06CC \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA",
26
+ close: "\u0628\u0646\u062F \u06A9\u0631\u06CC\u06BA",
27
+ back: "\u0648\u0627\u067E\u0633"
28
+ },
29
+ selectMenu: {
30
+ noMatch: "\u06A9\u0648\u0626\u06CC \u0645\u0644\u062A\u0627 \u062C\u0644\u062A\u0627 \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA \u0645\u0644\u0627",
31
+ noData: "\u06A9\u0648\u0626\u06CC \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA",
32
+ create: '"{label}" \u0628\u0646\u0627\u0626\u06CC\u06BA',
33
+ search: "\u062A\u0644\u0627\u0634 \u06A9\u0631\u06CC\u06BA..."
34
+ },
35
+ toast: {
36
+ close: "\u0628\u0646\u062F \u06A9\u0631\u06CC\u06BA"
37
+ },
38
+ carousel: {
39
+ prev: "\u067E\u0686\u06BE\u0644\u0627",
40
+ next: "\u0627\u06AF\u0644\u0627",
41
+ goto: "\u0633\u0644\u0627\u0626\u06CC\u0688 {slide} \u067E\u0631 \u062C\u0627\u0626\u06CC\u06BA"
42
+ },
43
+ modal: {
44
+ close: "\u0628\u0646\u062F \u06A9\u0631\u06CC\u06BA"
45
+ },
46
+ slideover: {
47
+ close: "\u0628\u0646\u062F \u06A9\u0631\u06CC\u06BA"
48
+ },
49
+ alert: {
50
+ close: "\u0628\u0646\u062F \u06A9\u0631\u06CC\u06BA"
51
+ },
52
+ table: {
53
+ noData: "\u06A9\u0648\u0626\u06CC \u0688\u06CC\u0679\u0627 \u0646\u06C1\u06CC\u06BA"
54
+ }
55
+ }
56
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "O\u02BBzbek",
4
+ code: "uz",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "Mos keluvchi natija topilmadi",
8
+ noData: "Ma\u02BClumot yo\u02BBq",
9
+ create: '"{label}" yaratish'
10
+ },
11
+ calendar: {
12
+ prevYear: "Oldingi yil",
13
+ nextYear: "Keyingi yil",
14
+ prevMonth: "Oldingi oy",
15
+ nextMonth: "Keyingi oy"
16
+ },
17
+ inputNumber: {
18
+ increment: "Qo\u02BBshish",
19
+ decrement: "Ayirish"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "Buyruq kiriting yoki qidiring...",
23
+ noMatch: "Mos keluvchi natija topilmadi",
24
+ noData: "Ma\u02BClumot yo\u02BBq",
25
+ close: "Yopish",
26
+ back: "Orqaga"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "Mos keluvchi natija topilmadi",
30
+ noData: "Ma\u02BClumot yo\u02BBq",
31
+ create: '"{label}" yaratish',
32
+ search: "Qidirish..."
33
+ },
34
+ toast: {
35
+ close: "Yopish"
36
+ },
37
+ carousel: {
38
+ prev: "Ortga",
39
+ next: "Oldinga",
40
+ goto: "{slide}-slaydga o\u2018tish"
41
+ },
42
+ modal: {
43
+ close: "Yopish"
44
+ },
45
+ slideover: {
46
+ close: "Yopish"
47
+ },
48
+ alert: {
49
+ close: "Yopish"
50
+ },
51
+ table: {
52
+ noData: "Ma\u02BClumot yo\u02BBq"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "Ti\u1EBFng Vi\u1EC7t",
4
+ code: "vi",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "Kh\xF4ng c\xF3 k\u1EBFt qu\u1EA3 ph\xF9 h\u1EE3p",
8
+ noData: "Kh\xF4ng c\xF3 d\u1EEF li\u1EC7u",
9
+ create: 'T\u1EA1o "{label}"'
10
+ },
11
+ calendar: {
12
+ prevYear: "N\u0103m tr\u01B0\u1EDBc",
13
+ nextYear: "N\u0103m sau",
14
+ prevMonth: "Th\xE1ng tr\u01B0\u1EDBc",
15
+ nextMonth: "Th\xE1ng sau"
16
+ },
17
+ inputNumber: {
18
+ increment: "T\u0103ng",
19
+ decrement: "Gi\u1EA3m"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "Nh\u1EADp l\u1EC7nh ho\u1EB7c t\xECm ki\u1EBFm...",
23
+ noMatch: "Kh\xF4ng c\xF3 k\u1EBFt qu\u1EA3 ph\xF9 h\u1EE3p",
24
+ noData: "Kh\xF4ng c\xF3 d\u1EEF li\u1EC7u",
25
+ close: "\u0110\xF3ng",
26
+ back: "Quay l\u1EA1i"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "Kh\xF4ng c\xF3 k\u1EBFt qu\u1EA3 ph\xF9 h\u1EE3p",
30
+ noData: "Kh\xF4ng c\xF3 d\u1EEF li\u1EC7u",
31
+ create: 'T\u1EA1o "{label}"',
32
+ search: "T\xECm ki\u1EBFm..."
33
+ },
34
+ toast: {
35
+ close: "\u0110\xF3ng"
36
+ },
37
+ carousel: {
38
+ prev: "Tr\u01B0\u1EDBc",
39
+ next: "Sau",
40
+ goto: "\u0110i t\u1EDBi \xF4 {slide}"
41
+ },
42
+ modal: {
43
+ close: "\u0110\xF3ng"
44
+ },
45
+ slideover: {
46
+ close: "\u0110\xF3ng"
47
+ },
48
+ alert: {
49
+ close: "\u0110\xF3ng"
50
+ },
51
+ table: {
52
+ noData: "Kh\xF4ng c\xF3 d\u1EEF li\u1EC7u"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;
@@ -0,0 +1,55 @@
1
+ import { defineLocale } from "../composables/defineLocale.js";
2
+ export default defineLocale({
3
+ name: "\u7B80\u4F53\u4E2D\u6587",
4
+ code: "zh-CN",
5
+ messages: {
6
+ inputMenu: {
7
+ noMatch: "\u6CA1\u6709\u5339\u914D\u7684\u6570\u636E",
8
+ noData: "\u6CA1\u6709\u6570\u636E",
9
+ create: '\u521B\u5EFA "{label}"'
10
+ },
11
+ calendar: {
12
+ prevYear: "\u53BB\u5E74",
13
+ nextYear: "\u660E\u5E74",
14
+ prevMonth: "\u4E0A\u4E2A\u6708",
15
+ nextMonth: "\u4E0B\u4E2A\u6708"
16
+ },
17
+ inputNumber: {
18
+ increment: "\u589E\u52A0",
19
+ decrement: "\u51CF\u5C11"
20
+ },
21
+ commandPalette: {
22
+ placeholder: "\u8F93\u5165\u547D\u4EE4\u6216\u641C\u7D22...",
23
+ noMatch: "\u6CA1\u6709\u5339\u914D\u7684\u6570\u636E",
24
+ noData: "\u6CA1\u6709\u6570\u636E",
25
+ close: "\u5173\u95ED",
26
+ back: "\u8FD4\u56DE"
27
+ },
28
+ selectMenu: {
29
+ noMatch: "\u6CA1\u6709\u5339\u914D\u7684\u6570\u636E",
30
+ noData: "\u6CA1\u6709\u6570\u636E",
31
+ create: '\u521B\u5EFA "{label}"',
32
+ search: "\u641C\u7D22..."
33
+ },
34
+ toast: {
35
+ close: "\u5173\u95ED"
36
+ },
37
+ carousel: {
38
+ prev: "\u4E0A\u4E00\u9875",
39
+ next: "\u4E0B\u4E00\u9875",
40
+ goto: "\u8DF3\u8F6C\u5230\u7B2C {slide} \u9875"
41
+ },
42
+ modal: {
43
+ close: "\u5173\u95ED"
44
+ },
45
+ slideover: {
46
+ close: "\u5173\u95ED"
47
+ },
48
+ alert: {
49
+ close: "\u5173\u95ED"
50
+ },
51
+ table: {
52
+ noData: "\u6CA1\u6709\u6570\u636E"
53
+ }
54
+ }
55
+ });
@@ -0,0 +1,3 @@
1
+ import type { Messages } from '../types';
2
+ declare const _default: import("../types").Locale<Messages>;
3
+ export default _default;