create-nala 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +58 -0
  3. package/dist/index.js +227 -0
  4. package/package.json +48 -0
  5. package/template/.env.example +45 -0
  6. package/template/_gitignore +33 -0
  7. package/template/components.json +24 -0
  8. package/template/index.html +30 -0
  9. package/template/package.json +51 -0
  10. package/template/public/favicon.svg +15 -0
  11. package/template/public/icons.svg +24 -0
  12. package/template/public/img/avatar.webp +0 -0
  13. package/template/public/screenshot.png +0 -0
  14. package/template/src/App.vue +15 -0
  15. package/template/src/auto-imports.d.ts +691 -0
  16. package/template/src/components/AppLogo.vue +159 -0
  17. package/template/src/components/EmptyState.vue +60 -0
  18. package/template/src/components/PageHeader.vue +60 -0
  19. package/template/src/components/layout/AppNavbar.vue +159 -0
  20. package/template/src/components/layout/AppSidebar.vue +74 -0
  21. package/template/src/components/layout/CommandSearchDialog.vue +120 -0
  22. package/template/src/components/ui/accordion/Accordion.vue +15 -0
  23. package/template/src/components/ui/accordion/AccordionContent.vue +20 -0
  24. package/template/src/components/ui/accordion/AccordionItem.vue +20 -0
  25. package/template/src/components/ui/accordion/AccordionTrigger.vue +34 -0
  26. package/template/src/components/ui/accordion/index.ts +4 -0
  27. package/template/src/components/ui/alert/Alert.vue +21 -0
  28. package/template/src/components/ui/alert/AlertDescription.vue +17 -0
  29. package/template/src/components/ui/alert/AlertTitle.vue +17 -0
  30. package/template/src/components/ui/alert/index.ts +30 -0
  31. package/template/src/components/ui/alert-dialog/AlertDialog.vue +15 -0
  32. package/template/src/components/ui/alert-dialog/AlertDialogAction.vue +18 -0
  33. package/template/src/components/ui/alert-dialog/AlertDialogCancel.vue +25 -0
  34. package/template/src/components/ui/alert-dialog/AlertDialogContent.vue +44 -0
  35. package/template/src/components/ui/alert-dialog/AlertDialogDescription.vue +23 -0
  36. package/template/src/components/ui/alert-dialog/AlertDialogFooter.vue +22 -0
  37. package/template/src/components/ui/alert-dialog/AlertDialogHeader.vue +17 -0
  38. package/template/src/components/ui/alert-dialog/AlertDialogTitle.vue +21 -0
  39. package/template/src/components/ui/alert-dialog/AlertDialogTrigger.vue +12 -0
  40. package/template/src/components/ui/alert-dialog/index.ts +9 -0
  41. package/template/src/components/ui/avatar/Avatar.vue +50 -0
  42. package/template/src/components/ui/avatar/AvatarFallback.vue +21 -0
  43. package/template/src/components/ui/avatar/AvatarGroup.vue +69 -0
  44. package/template/src/components/ui/avatar/AvatarImage.vue +16 -0
  45. package/template/src/components/ui/avatar/index.ts +4 -0
  46. package/template/src/components/ui/badge/Badge.vue +40 -0
  47. package/template/src/components/ui/badge/index.ts +45 -0
  48. package/template/src/components/ui/breadcrumb/Breadcrumb.vue +17 -0
  49. package/template/src/components/ui/breadcrumb/BreadcrumbEllipsis.vue +23 -0
  50. package/template/src/components/ui/breadcrumb/BreadcrumbItem.vue +17 -0
  51. package/template/src/components/ui/breadcrumb/BreadcrumbLink.vue +21 -0
  52. package/template/src/components/ui/breadcrumb/BreadcrumbList.vue +17 -0
  53. package/template/src/components/ui/breadcrumb/BreadcrumbPage.vue +20 -0
  54. package/template/src/components/ui/breadcrumb/BreadcrumbSeparator.vue +22 -0
  55. package/template/src/components/ui/breadcrumb/index.ts +7 -0
  56. package/template/src/components/ui/button/Button.spec.ts +46 -0
  57. package/template/src/components/ui/button/Button.vue +31 -0
  58. package/template/src/components/ui/button/index.ts +41 -0
  59. package/template/src/components/ui/calendar/Calendar.vue +106 -0
  60. package/template/src/components/ui/calendar/index.ts +1 -0
  61. package/template/src/components/ui/card/Card.vue +29 -0
  62. package/template/src/components/ui/card/CardAction.vue +17 -0
  63. package/template/src/components/ui/card/CardContent.vue +17 -0
  64. package/template/src/components/ui/card/CardDescription.vue +17 -0
  65. package/template/src/components/ui/card/CardFooter.vue +17 -0
  66. package/template/src/components/ui/card/CardHeader.vue +29 -0
  67. package/template/src/components/ui/card/CardTitle.vue +17 -0
  68. package/template/src/components/ui/card/index.ts +7 -0
  69. package/template/src/components/ui/chart/AreaChart.vue +143 -0
  70. package/template/src/components/ui/chart/BarChart.vue +142 -0
  71. package/template/src/components/ui/chart/DonutChart.vue +75 -0
  72. package/template/src/components/ui/chart/LineChart.vue +132 -0
  73. package/template/src/components/ui/chart/index.ts +4 -0
  74. package/template/src/components/ui/checkbox/Checkbox.vue +57 -0
  75. package/template/src/components/ui/checkbox/index.ts +1 -0
  76. package/template/src/components/ui/collapsible/Collapsible.vue +15 -0
  77. package/template/src/components/ui/collapsible/CollapsibleContent.vue +18 -0
  78. package/template/src/components/ui/collapsible/CollapsibleTrigger.vue +12 -0
  79. package/template/src/components/ui/collapsible/index.ts +3 -0
  80. package/template/src/components/ui/command/Command.vue +88 -0
  81. package/template/src/components/ui/command/CommandDialog.vue +31 -0
  82. package/template/src/components/ui/command/CommandEmpty.vue +27 -0
  83. package/template/src/components/ui/command/CommandGroup.vue +45 -0
  84. package/template/src/components/ui/command/CommandInput.vue +39 -0
  85. package/template/src/components/ui/command/CommandItem.vue +76 -0
  86. package/template/src/components/ui/command/CommandList.vue +25 -0
  87. package/template/src/components/ui/command/CommandSeparator.vue +21 -0
  88. package/template/src/components/ui/command/CommandShortcut.vue +17 -0
  89. package/template/src/components/ui/command/index.ts +25 -0
  90. package/template/src/components/ui/context-menu/ContextMenu.vue +15 -0
  91. package/template/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +36 -0
  92. package/template/src/components/ui/context-menu/ContextMenuContent.vue +33 -0
  93. package/template/src/components/ui/context-menu/ContextMenuGroup.vue +12 -0
  94. package/template/src/components/ui/context-menu/ContextMenuItem.vue +36 -0
  95. package/template/src/components/ui/context-menu/ContextMenuLabel.vue +25 -0
  96. package/template/src/components/ui/context-menu/ContextMenuRadioGroup.vue +18 -0
  97. package/template/src/components/ui/context-menu/ContextMenuRadioItem.vue +36 -0
  98. package/template/src/components/ui/context-menu/ContextMenuSeparator.vue +18 -0
  99. package/template/src/components/ui/context-menu/ContextMenuShortcut.vue +17 -0
  100. package/template/src/components/ui/context-menu/ContextMenuSub.vue +15 -0
  101. package/template/src/components/ui/context-menu/ContextMenuSubContent.vue +36 -0
  102. package/template/src/components/ui/context-menu/ContextMenuSubTrigger.vue +32 -0
  103. package/template/src/components/ui/context-menu/ContextMenuTrigger.vue +13 -0
  104. package/template/src/components/ui/context-menu/index.ts +14 -0
  105. package/template/src/components/ui/date-picker/DatePicker.vue +233 -0
  106. package/template/src/components/ui/date-picker/index.ts +1 -0
  107. package/template/src/components/ui/dialog/Dialog.vue +19 -0
  108. package/template/src/components/ui/dialog/DialogClose.vue +15 -0
  109. package/template/src/components/ui/dialog/DialogContent.vue +53 -0
  110. package/template/src/components/ui/dialog/DialogDescription.vue +23 -0
  111. package/template/src/components/ui/dialog/DialogFooter.vue +27 -0
  112. package/template/src/components/ui/dialog/DialogHeader.vue +17 -0
  113. package/template/src/components/ui/dialog/DialogOverlay.vue +21 -0
  114. package/template/src/components/ui/dialog/DialogScrollContent.vue +59 -0
  115. package/template/src/components/ui/dialog/DialogTitle.vue +23 -0
  116. package/template/src/components/ui/dialog/DialogTrigger.vue +15 -0
  117. package/template/src/components/ui/dialog/index.ts +10 -0
  118. package/template/src/components/ui/dropdown-menu/DropdownMenu.vue +19 -0
  119. package/template/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +39 -0
  120. package/template/src/components/ui/dropdown-menu/DropdownMenuContent.vue +41 -0
  121. package/template/src/components/ui/dropdown-menu/DropdownMenuGroup.vue +15 -0
  122. package/template/src/components/ui/dropdown-menu/DropdownMenuItem.vue +31 -0
  123. package/template/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +23 -0
  124. package/template/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +21 -0
  125. package/template/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
  126. package/template/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +23 -0
  127. package/template/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +17 -0
  128. package/template/src/components/ui/dropdown-menu/DropdownMenuSub.vue +18 -0
  129. package/template/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +27 -0
  130. package/template/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +31 -0
  131. package/template/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue +17 -0
  132. package/template/src/components/ui/dropdown-menu/index.ts +16 -0
  133. package/template/src/components/ui/form/FormControl.vue +17 -0
  134. package/template/src/components/ui/form/FormDescription.vue +21 -0
  135. package/template/src/components/ui/form/FormItem.vue +23 -0
  136. package/template/src/components/ui/form/FormLabel.vue +25 -0
  137. package/template/src/components/ui/form/FormMessage.vue +23 -0
  138. package/template/src/components/ui/form/index.ts +7 -0
  139. package/template/src/components/ui/form/injectionKeys.ts +4 -0
  140. package/template/src/components/ui/form/useFormField.ts +30 -0
  141. package/template/src/components/ui/hover-card/HoverCard.vue +19 -0
  142. package/template/src/components/ui/hover-card/HoverCardContent.vue +43 -0
  143. package/template/src/components/ui/hover-card/HoverCardTrigger.vue +15 -0
  144. package/template/src/components/ui/hover-card/index.ts +3 -0
  145. package/template/src/components/ui/index.ts +47 -0
  146. package/template/src/components/ui/input/Input.vue +33 -0
  147. package/template/src/components/ui/input/InputAddon.vue +29 -0
  148. package/template/src/components/ui/input/InputGroup.vue +17 -0
  149. package/template/src/components/ui/input/InputIcon.vue +29 -0
  150. package/template/src/components/ui/input/index.ts +4 -0
  151. package/template/src/components/ui/kbd/Kbd.vue +30 -0
  152. package/template/src/components/ui/kbd/index.ts +1 -0
  153. package/template/src/components/ui/label/Label.vue +26 -0
  154. package/template/src/components/ui/label/index.ts +1 -0
  155. package/template/src/components/ui/loading-bar/LoadingBar.vue +41 -0
  156. package/template/src/components/ui/loading-bar/index.ts +2 -0
  157. package/template/src/components/ui/pagination/Pagination.vue +26 -0
  158. package/template/src/components/ui/pagination/PaginationContent.vue +22 -0
  159. package/template/src/components/ui/pagination/PaginationEllipsis.vue +25 -0
  160. package/template/src/components/ui/pagination/PaginationFirst.vue +33 -0
  161. package/template/src/components/ui/pagination/PaginationItem.vue +34 -0
  162. package/template/src/components/ui/pagination/PaginationLast.vue +33 -0
  163. package/template/src/components/ui/pagination/PaginationNext.vue +33 -0
  164. package/template/src/components/ui/pagination/PaginationPrevious.vue +33 -0
  165. package/template/src/components/ui/pagination/index.ts +8 -0
  166. package/template/src/components/ui/pin-input/PinInput.vue +28 -0
  167. package/template/src/components/ui/pin-input/PinInputGroup.vue +18 -0
  168. package/template/src/components/ui/pin-input/PinInputInput.vue +24 -0
  169. package/template/src/components/ui/pin-input/PinInputSeparator.vue +21 -0
  170. package/template/src/components/ui/pin-input/index.ts +4 -0
  171. package/template/src/components/ui/popover/Popover.vue +19 -0
  172. package/template/src/components/ui/popover/PopoverAnchor.vue +15 -0
  173. package/template/src/components/ui/popover/PopoverContent.vue +45 -0
  174. package/template/src/components/ui/popover/PopoverTrigger.vue +15 -0
  175. package/template/src/components/ui/popover/index.ts +4 -0
  176. package/template/src/components/ui/progress/Progress.vue +35 -0
  177. package/template/src/components/ui/progress/index.ts +1 -0
  178. package/template/src/components/ui/radio-group/RadioGroup.vue +23 -0
  179. package/template/src/components/ui/radio-group/RadioGroupItem.vue +30 -0
  180. package/template/src/components/ui/radio-group/index.ts +2 -0
  181. package/template/src/components/ui/scroll-area/ScrollArea.vue +40 -0
  182. package/template/src/components/ui/scroll-area/ScrollBar.vue +44 -0
  183. package/template/src/components/ui/scroll-area/index.ts +2 -0
  184. package/template/src/components/ui/select/Select.vue +19 -0
  185. package/template/src/components/ui/select/SelectContent.vue +51 -0
  186. package/template/src/components/ui/select/SelectGroup.vue +15 -0
  187. package/template/src/components/ui/select/SelectItem.vue +44 -0
  188. package/template/src/components/ui/select/SelectItemText.vue +15 -0
  189. package/template/src/components/ui/select/SelectLabel.vue +17 -0
  190. package/template/src/components/ui/select/SelectScrollDownButton.vue +26 -0
  191. package/template/src/components/ui/select/SelectScrollUpButton.vue +26 -0
  192. package/template/src/components/ui/select/SelectSeparator.vue +19 -0
  193. package/template/src/components/ui/select/SelectTrigger.vue +33 -0
  194. package/template/src/components/ui/select/SelectValue.vue +15 -0
  195. package/template/src/components/ui/select/index.ts +11 -0
  196. package/template/src/components/ui/separator/Separator.vue +29 -0
  197. package/template/src/components/ui/separator/index.ts +1 -0
  198. package/template/src/components/ui/sheet/Sheet.vue +19 -0
  199. package/template/src/components/ui/sheet/SheetClose.vue +15 -0
  200. package/template/src/components/ui/sheet/SheetContent.vue +62 -0
  201. package/template/src/components/ui/sheet/SheetDescription.vue +21 -0
  202. package/template/src/components/ui/sheet/SheetFooter.vue +16 -0
  203. package/template/src/components/ui/sheet/SheetHeader.vue +15 -0
  204. package/template/src/components/ui/sheet/SheetOverlay.vue +21 -0
  205. package/template/src/components/ui/sheet/SheetTitle.vue +21 -0
  206. package/template/src/components/ui/sheet/SheetTrigger.vue +15 -0
  207. package/template/src/components/ui/sheet/index.ts +8 -0
  208. package/template/src/components/ui/sidebar/Sidebar.vue +113 -0
  209. package/template/src/components/ui/sidebar/SidebarContent.vue +18 -0
  210. package/template/src/components/ui/sidebar/SidebarControl.vue +53 -0
  211. package/template/src/components/ui/sidebar/SidebarFooter.vue +18 -0
  212. package/template/src/components/ui/sidebar/SidebarGroup.vue +18 -0
  213. package/template/src/components/ui/sidebar/SidebarGroupAction.vue +27 -0
  214. package/template/src/components/ui/sidebar/SidebarGroupContent.vue +18 -0
  215. package/template/src/components/ui/sidebar/SidebarGroupLabel.vue +25 -0
  216. package/template/src/components/ui/sidebar/SidebarHeader.vue +18 -0
  217. package/template/src/components/ui/sidebar/SidebarInput.vue +22 -0
  218. package/template/src/components/ui/sidebar/SidebarInset.vue +21 -0
  219. package/template/src/components/ui/sidebar/SidebarMenu.vue +18 -0
  220. package/template/src/components/ui/sidebar/SidebarMenuAction.vue +35 -0
  221. package/template/src/components/ui/sidebar/SidebarMenuBadge.vue +26 -0
  222. package/template/src/components/ui/sidebar/SidebarMenuButton.vue +48 -0
  223. package/template/src/components/ui/sidebar/SidebarMenuButtonChild.vue +36 -0
  224. package/template/src/components/ui/sidebar/SidebarMenuItem.vue +18 -0
  225. package/template/src/components/ui/sidebar/SidebarMenuSkeleton.vue +35 -0
  226. package/template/src/components/ui/sidebar/SidebarMenuSub.vue +22 -0
  227. package/template/src/components/ui/sidebar/SidebarMenuSubButton.vue +36 -0
  228. package/template/src/components/ui/sidebar/SidebarMenuSubItem.vue +18 -0
  229. package/template/src/components/ui/sidebar/SidebarProvider.vue +136 -0
  230. package/template/src/components/ui/sidebar/SidebarRail.vue +33 -0
  231. package/template/src/components/ui/sidebar/SidebarSeparator.vue +19 -0
  232. package/template/src/components/ui/sidebar/SidebarTrigger.vue +27 -0
  233. package/template/src/components/ui/sidebar/index.ts +61 -0
  234. package/template/src/components/ui/sidebar/utils.ts +27 -0
  235. package/template/src/components/ui/skeleton/Skeleton.vue +17 -0
  236. package/template/src/components/ui/skeleton/index.ts +1 -0
  237. package/template/src/components/ui/slider/Slider.vue +42 -0
  238. package/template/src/components/ui/slider/index.ts +1 -0
  239. package/template/src/components/ui/sonner/Sonner.vue +42 -0
  240. package/template/src/components/ui/sonner/index.ts +2 -0
  241. package/template/src/components/ui/stepper/Stepper.vue +102 -0
  242. package/template/src/components/ui/stepper/index.ts +1 -0
  243. package/template/src/components/ui/switch/Switch.vue +38 -0
  244. package/template/src/components/ui/switch/index.ts +1 -0
  245. package/template/src/components/ui/table/Table.vue +16 -0
  246. package/template/src/components/ui/table/TableBody.vue +17 -0
  247. package/template/src/components/ui/table/TableCaption.vue +17 -0
  248. package/template/src/components/ui/table/TableCell.vue +22 -0
  249. package/template/src/components/ui/table/TableEmpty.vue +34 -0
  250. package/template/src/components/ui/table/TableFooter.vue +17 -0
  251. package/template/src/components/ui/table/TableHead.vue +17 -0
  252. package/template/src/components/ui/table/TableHeader.vue +17 -0
  253. package/template/src/components/ui/table/TableRow.vue +17 -0
  254. package/template/src/components/ui/table/index.ts +9 -0
  255. package/template/src/components/ui/table/utils.ts +10 -0
  256. package/template/src/components/ui/tabs/Tabs.vue +24 -0
  257. package/template/src/components/ui/tabs/TabsContent.vue +21 -0
  258. package/template/src/components/ui/tabs/TabsList.vue +24 -0
  259. package/template/src/components/ui/tabs/TabsTrigger.vue +26 -0
  260. package/template/src/components/ui/tabs/index.ts +4 -0
  261. package/template/src/components/ui/textarea/Textarea.vue +28 -0
  262. package/template/src/components/ui/textarea/index.ts +1 -0
  263. package/template/src/components/ui/timeline/Timeline.vue +73 -0
  264. package/template/src/components/ui/timeline/index.ts +1 -0
  265. package/template/src/components/ui/toggle/Toggle.vue +35 -0
  266. package/template/src/components/ui/toggle/index.ts +28 -0
  267. package/template/src/components/ui/toggle-group/ToggleGroup.vue +41 -0
  268. package/template/src/components/ui/toggle-group/ToggleGroupItem.vue +43 -0
  269. package/template/src/components/ui/toggle-group/index.ts +12 -0
  270. package/template/src/components/ui/tooltip/Tooltip.vue +19 -0
  271. package/template/src/components/ui/tooltip/TooltipContent.vue +34 -0
  272. package/template/src/components/ui/tooltip/TooltipProvider.vue +14 -0
  273. package/template/src/components/ui/tooltip/TooltipTrigger.vue +15 -0
  274. package/template/src/components/ui/tooltip/index.ts +4 -0
  275. package/template/src/components.d.ts +228 -0
  276. package/template/src/composables/useFormatter.ts +105 -0
  277. package/template/src/composables/useThemeConfig.ts +252 -0
  278. package/template/src/layouts/AdminLayout.vue +55 -0
  279. package/template/src/layouts/AuthLayout.vue +42 -0
  280. package/template/src/lib/axios.spec.ts +46 -0
  281. package/template/src/lib/axios.ts +243 -0
  282. package/template/src/lib/formatters.spec.ts +137 -0
  283. package/template/src/lib/formatters.ts +332 -0
  284. package/template/src/lib/loading-bar.ts +103 -0
  285. package/template/src/lib/utils.spec.ts +26 -0
  286. package/template/src/lib/utils.ts +7 -0
  287. package/template/src/lib/validation.spec.ts +78 -0
  288. package/template/src/main.ts +13 -0
  289. package/template/src/router/index.ts +147 -0
  290. package/template/src/services/auth.service.spec.ts +93 -0
  291. package/template/src/services/auth.service.ts +243 -0
  292. package/template/src/services/index.ts +3 -0
  293. package/template/src/services/types.ts +28 -0
  294. package/template/src/services/user.service.spec.ts +91 -0
  295. package/template/src/services/user.service.ts +283 -0
  296. package/template/src/stores/auth.spec.ts +52 -0
  297. package/template/src/stores/auth.ts +130 -0
  298. package/template/src/style.css +587 -0
  299. package/template/src/views/_starter/BlankView.vue +47 -0
  300. package/template/src/views/auth/ConfirmEmailView.vue +209 -0
  301. package/template/src/views/auth/ForgotPasswordView.vue +151 -0
  302. package/template/src/views/auth/LockScreenView.vue +175 -0
  303. package/template/src/views/auth/LoginView.vue +54 -0
  304. package/template/src/views/auth/RegisterView.vue +265 -0
  305. package/template/src/views/auth/ResetPasswordView.vue +260 -0
  306. package/template/src/views/auth/VerifyOtpView.vue +261 -0
  307. package/template/src/views/dashboard/IndexView.vue +159 -0
  308. package/template/src/views/errors/ComingSoonView.vue +241 -0
  309. package/template/src/views/errors/MaintenanceView.vue +252 -0
  310. package/template/src/views/errors/NotFoundView.vue +81 -0
  311. package/template/src/views/errors/ServerErrorView.vue +101 -0
  312. package/template/src/views/errors/UnauthorizedView.vue +64 -0
  313. package/template/tsconfig.app.json +27 -0
  314. package/template/tsconfig.json +19 -0
  315. package/template/tsconfig.node.json +23 -0
  316. package/template/vite.config.ts +46 -0
@@ -0,0 +1,691 @@
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+ /* oxlint-disable */
4
+ /* oxfmt-ignore */
5
+ // @ts-nocheck
6
+ // noinspection JSUnusedGlobalSymbols
7
+ // Generated by unplugin-auto-import
8
+ // biome-ignore lint: disable
9
+ export {}
10
+ declare global {
11
+ const EffectScope: typeof import('vue').EffectScope
12
+ const PRIMARY_COLORS: typeof import('./composables/useThemeConfig').PRIMARY_COLORS
13
+ const RADIUS_PRESETS: typeof import('./composables/useThemeConfig').RADIUS_PRESETS
14
+ const REFRESH_TOKEN_KEY: typeof import('./lib/axios').REFRESH_TOKEN_KEY
15
+ const TOKEN_KEY: typeof import('./lib/axios').TOKEN_KEY
16
+ const acceptHMRUpdate: typeof import('pinia').acceptHMRUpdate
17
+ const api: typeof import('./lib/axios').api
18
+ const apiClient: typeof import('./lib/axios').apiClient
19
+ const asyncComputed: typeof import('@vueuse/core').asyncComputed
20
+ const autoResetRef: typeof import('@vueuse/core').autoResetRef
21
+ const axios: typeof import('./lib/axios').default
22
+ const cn: typeof import('./lib/utils').cn
23
+ const computed: typeof import('vue').computed
24
+ const computedAsync: typeof import('@vueuse/core').computedAsync
25
+ const computedEager: typeof import('@vueuse/core').computedEager
26
+ const computedInject: typeof import('@vueuse/core').computedInject
27
+ const computedWithControl: typeof import('@vueuse/core').computedWithControl
28
+ const controlledComputed: typeof import('@vueuse/core').controlledComputed
29
+ const controlledRef: typeof import('@vueuse/core').controlledRef
30
+ const createApp: typeof import('vue').createApp
31
+ const createDisposableDirective: typeof import('@vueuse/core').createDisposableDirective
32
+ const createEventHook: typeof import('@vueuse/core').createEventHook
33
+ const createGlobalState: typeof import('@vueuse/core').createGlobalState
34
+ const createInjectionState: typeof import('@vueuse/core').createInjectionState
35
+ const createPinia: typeof import('pinia').createPinia
36
+ const createReactiveFn: typeof import('@vueuse/core').createReactiveFn
37
+ const createRef: typeof import('@vueuse/core').createRef
38
+ const createReusableTemplate: typeof import('@vueuse/core').createReusableTemplate
39
+ const createSharedComposable: typeof import('@vueuse/core').createSharedComposable
40
+ const createTemplatePromise: typeof import('@vueuse/core').createTemplatePromise
41
+ const createUnrefFn: typeof import('@vueuse/core').createUnrefFn
42
+ const customRef: typeof import('vue').customRef
43
+ const debouncedRef: typeof import('@vueuse/core').debouncedRef
44
+ const debouncedWatch: typeof import('@vueuse/core').debouncedWatch
45
+ const defineAsyncComponent: typeof import('vue').defineAsyncComponent
46
+ const defineComponent: typeof import('vue').defineComponent
47
+ const defineStore: typeof import('pinia').defineStore
48
+ const eagerComputed: typeof import('@vueuse/core').eagerComputed
49
+ const effectScope: typeof import('vue').effectScope
50
+ const extendRef: typeof import('@vueuse/core').extendRef
51
+ const formatBytes: typeof import('./lib/formatters').formatBytes
52
+ const formatCompactNumber: typeof import('./lib/formatters').formatCompactNumber
53
+ const formatCurrency: typeof import('./lib/formatters').formatCurrency
54
+ const formatDate: typeof import('./lib/formatters').formatDate
55
+ const formatDateTime: typeof import('./lib/formatters').formatDateTime
56
+ const formatDateTimeWithTz: typeof import('./lib/formatters').formatDateTimeWithTz
57
+ const formatNumber: typeof import('./lib/formatters').formatNumber
58
+ const formatRelativeTime: typeof import('./lib/formatters').formatRelativeTime
59
+ const formatTime: typeof import('./lib/formatters').formatTime
60
+ const getActivePinia: typeof import('pinia').getActivePinia
61
+ const getCurrentInstance: typeof import('vue').getCurrentInstance
62
+ const getCurrentScope: typeof import('vue').getCurrentScope
63
+ const getCurrentWatcher: typeof import('vue').getCurrentWatcher
64
+ const getInitials: typeof import('./lib/formatters').getInitials
65
+ const h: typeof import('vue').h
66
+ const ignorableWatch: typeof import('@vueuse/core').ignorableWatch
67
+ const inject: typeof import('vue').inject
68
+ const injectLocal: typeof import('@vueuse/core').injectLocal
69
+ const isDefined: typeof import('@vueuse/core').isDefined
70
+ const isProxy: typeof import('vue').isProxy
71
+ const isReactive: typeof import('vue').isReactive
72
+ const isReadonly: typeof import('vue').isReadonly
73
+ const isRef: typeof import('vue').isRef
74
+ const isShallow: typeof import('vue').isShallow
75
+ const loadingBar: typeof import('./lib/loading-bar').loadingBar
76
+ const makeDestructurable: typeof import('@vueuse/core').makeDestructurable
77
+ const mapActions: typeof import('pinia').mapActions
78
+ const mapGetters: typeof import('pinia').mapGetters
79
+ const mapState: typeof import('pinia').mapState
80
+ const mapStores: typeof import('pinia').mapStores
81
+ const mapWritableState: typeof import('pinia').mapWritableState
82
+ const markRaw: typeof import('vue').markRaw
83
+ const nextTick: typeof import('vue').nextTick
84
+ const onActivated: typeof import('vue').onActivated
85
+ const onBeforeMount: typeof import('vue').onBeforeMount
86
+ const onBeforeRouteLeave: typeof import('vue-router').onBeforeRouteLeave
87
+ const onBeforeRouteUpdate: typeof import('vue-router').onBeforeRouteUpdate
88
+ const onBeforeUnmount: typeof import('vue').onBeforeUnmount
89
+ const onBeforeUpdate: typeof import('vue').onBeforeUpdate
90
+ const onClickOutside: typeof import('@vueuse/core').onClickOutside
91
+ const onDeactivated: typeof import('vue').onDeactivated
92
+ const onElementRemoval: typeof import('@vueuse/core').onElementRemoval
93
+ const onErrorCaptured: typeof import('vue').onErrorCaptured
94
+ const onKeyStroke: typeof import('@vueuse/core').onKeyStroke
95
+ const onLongPress: typeof import('@vueuse/core').onLongPress
96
+ const onMounted: typeof import('vue').onMounted
97
+ const onRenderTracked: typeof import('vue').onRenderTracked
98
+ const onRenderTriggered: typeof import('vue').onRenderTriggered
99
+ const onScopeDispose: typeof import('vue').onScopeDispose
100
+ const onServerPrefetch: typeof import('vue').onServerPrefetch
101
+ const onStartTyping: typeof import('@vueuse/core').onStartTyping
102
+ const onUnmounted: typeof import('vue').onUnmounted
103
+ const onUpdated: typeof import('vue').onUpdated
104
+ const onWatcherCleanup: typeof import('vue').onWatcherCleanup
105
+ const pausableWatch: typeof import('@vueuse/core').pausableWatch
106
+ const provide: typeof import('vue').provide
107
+ const provideLocal: typeof import('@vueuse/core').provideLocal
108
+ const reactify: typeof import('@vueuse/core').reactify
109
+ const reactifyObject: typeof import('@vueuse/core').reactifyObject
110
+ const reactive: typeof import('vue').reactive
111
+ const reactiveComputed: typeof import('@vueuse/core').reactiveComputed
112
+ const reactiveOmit: typeof import('@vueuse/core').reactiveOmit
113
+ const reactivePick: typeof import('@vueuse/core').reactivePick
114
+ const readonly: typeof import('vue').readonly
115
+ const ref: typeof import('vue').ref
116
+ const refAutoReset: typeof import('@vueuse/core').refAutoReset
117
+ const refDebounced: typeof import('@vueuse/core').refDebounced
118
+ const refDefault: typeof import('@vueuse/core').refDefault
119
+ const refManualReset: typeof import('@vueuse/core').refManualReset
120
+ const refThrottled: typeof import('@vueuse/core').refThrottled
121
+ const refWithControl: typeof import('@vueuse/core').refWithControl
122
+ const resolveComponent: typeof import('vue').resolveComponent
123
+ const setActivePinia: typeof import('pinia').setActivePinia
124
+ const setMapStoreSuffix: typeof import('pinia').setMapStoreSuffix
125
+ const shallowReactive: typeof import('vue').shallowReactive
126
+ const shallowReadonly: typeof import('vue').shallowReadonly
127
+ const shallowRef: typeof import('vue').shallowRef
128
+ const storeToRefs: typeof import('pinia').storeToRefs
129
+ const syncRef: typeof import('@vueuse/core').syncRef
130
+ const syncRefs: typeof import('@vueuse/core').syncRefs
131
+ const templateRef: typeof import('@vueuse/core').templateRef
132
+ const throttledRef: typeof import('@vueuse/core').throttledRef
133
+ const throttledWatch: typeof import('@vueuse/core').throttledWatch
134
+ const toRaw: typeof import('vue').toRaw
135
+ const toReactive: typeof import('@vueuse/core').toReactive
136
+ const toRef: typeof import('vue').toRef
137
+ const toRefs: typeof import('vue').toRefs
138
+ const toValue: typeof import('vue').toValue
139
+ const tokenStorage: typeof import('./lib/axios').tokenStorage
140
+ const triggerRef: typeof import('vue').triggerRef
141
+ const truncate: typeof import('./lib/formatters').truncate
142
+ const tryOnBeforeMount: typeof import('@vueuse/core').tryOnBeforeMount
143
+ const tryOnBeforeUnmount: typeof import('@vueuse/core').tryOnBeforeUnmount
144
+ const tryOnMounted: typeof import('@vueuse/core').tryOnMounted
145
+ const tryOnScopeDispose: typeof import('@vueuse/core').tryOnScopeDispose
146
+ const tryOnUnmounted: typeof import('@vueuse/core').tryOnUnmounted
147
+ const unref: typeof import('vue').unref
148
+ const unrefElement: typeof import('@vueuse/core').unrefElement
149
+ const until: typeof import('@vueuse/core').until
150
+ const useActiveElement: typeof import('@vueuse/core').useActiveElement
151
+ const useAnimate: typeof import('@vueuse/core').useAnimate
152
+ const useArrayDifference: typeof import('@vueuse/core').useArrayDifference
153
+ const useArrayEvery: typeof import('@vueuse/core').useArrayEvery
154
+ const useArrayFilter: typeof import('@vueuse/core').useArrayFilter
155
+ const useArrayFind: typeof import('@vueuse/core').useArrayFind
156
+ const useArrayFindIndex: typeof import('@vueuse/core').useArrayFindIndex
157
+ const useArrayFindLast: typeof import('@vueuse/core').useArrayFindLast
158
+ const useArrayIncludes: typeof import('@vueuse/core').useArrayIncludes
159
+ const useArrayJoin: typeof import('@vueuse/core').useArrayJoin
160
+ const useArrayMap: typeof import('@vueuse/core').useArrayMap
161
+ const useArrayReduce: typeof import('@vueuse/core').useArrayReduce
162
+ const useArraySome: typeof import('@vueuse/core').useArraySome
163
+ const useArrayUnique: typeof import('@vueuse/core').useArrayUnique
164
+ const useAsyncQueue: typeof import('@vueuse/core').useAsyncQueue
165
+ const useAsyncState: typeof import('@vueuse/core').useAsyncState
166
+ const useAttrs: typeof import('vue').useAttrs
167
+ const useBase64: typeof import('@vueuse/core').useBase64
168
+ const useBattery: typeof import('@vueuse/core').useBattery
169
+ const useBluetooth: typeof import('@vueuse/core').useBluetooth
170
+ const useBreakpoints: typeof import('@vueuse/core').useBreakpoints
171
+ const useBroadcastChannel: typeof import('@vueuse/core').useBroadcastChannel
172
+ const useBrowserLocation: typeof import('@vueuse/core').useBrowserLocation
173
+ const useCached: typeof import('@vueuse/core').useCached
174
+ const useClipboard: typeof import('@vueuse/core').useClipboard
175
+ const useClipboardItems: typeof import('@vueuse/core').useClipboardItems
176
+ const useCloned: typeof import('@vueuse/core').useCloned
177
+ const useColorMode: typeof import('@vueuse/core').useColorMode
178
+ const useConfirmDialog: typeof import('@vueuse/core').useConfirmDialog
179
+ const useCountdown: typeof import('@vueuse/core').useCountdown
180
+ const useCounter: typeof import('@vueuse/core').useCounter
181
+ const useCssModule: typeof import('vue').useCssModule
182
+ const useCssSupports: typeof import('@vueuse/core').useCssSupports
183
+ const useCssVar: typeof import('@vueuse/core').useCssVar
184
+ const useCssVars: typeof import('vue').useCssVars
185
+ const useCurrentElement: typeof import('@vueuse/core').useCurrentElement
186
+ const useCycleList: typeof import('@vueuse/core').useCycleList
187
+ const useDark: typeof import('@vueuse/core').useDark
188
+ const useDateFormat: typeof import('@vueuse/core').useDateFormat
189
+ const useDebounce: typeof import('@vueuse/core').useDebounce
190
+ const useDebounceFn: typeof import('@vueuse/core').useDebounceFn
191
+ const useDebouncedRefHistory: typeof import('@vueuse/core').useDebouncedRefHistory
192
+ const useDeviceMotion: typeof import('@vueuse/core').useDeviceMotion
193
+ const useDeviceOrientation: typeof import('@vueuse/core').useDeviceOrientation
194
+ const useDevicePixelRatio: typeof import('@vueuse/core').useDevicePixelRatio
195
+ const useDevicesList: typeof import('@vueuse/core').useDevicesList
196
+ const useDisplayMedia: typeof import('@vueuse/core').useDisplayMedia
197
+ const useDocumentVisibility: typeof import('@vueuse/core').useDocumentVisibility
198
+ const useDraggable: typeof import('@vueuse/core').useDraggable
199
+ const useDropZone: typeof import('@vueuse/core').useDropZone
200
+ const useElementBounding: typeof import('@vueuse/core').useElementBounding
201
+ const useElementByPoint: typeof import('@vueuse/core').useElementByPoint
202
+ const useElementHover: typeof import('@vueuse/core').useElementHover
203
+ const useElementOverflow: typeof import('@vueuse/core').useElementOverflow
204
+ const useElementSize: typeof import('@vueuse/core').useElementSize
205
+ const useElementVisibility: typeof import('@vueuse/core').useElementVisibility
206
+ const useEventBus: typeof import('@vueuse/core').useEventBus
207
+ const useEventListener: typeof import('@vueuse/core').useEventListener
208
+ const useEventSource: typeof import('@vueuse/core').useEventSource
209
+ const useEyeDropper: typeof import('@vueuse/core').useEyeDropper
210
+ const useFavicon: typeof import('@vueuse/core').useFavicon
211
+ const useFetch: typeof import('@vueuse/core').useFetch
212
+ const useFileDialog: typeof import('@vueuse/core').useFileDialog
213
+ const useFileSystemAccess: typeof import('@vueuse/core').useFileSystemAccess
214
+ const useFocus: typeof import('@vueuse/core').useFocus
215
+ const useFocusWithin: typeof import('@vueuse/core').useFocusWithin
216
+ const useFormatter: typeof import('./composables/useFormatter').useFormatter
217
+ const useFps: typeof import('@vueuse/core').useFps
218
+ const useFullscreen: typeof import('@vueuse/core').useFullscreen
219
+ const useGamepad: typeof import('@vueuse/core').useGamepad
220
+ const useGeolocation: typeof import('@vueuse/core').useGeolocation
221
+ const useId: typeof import('vue').useId
222
+ const useIdle: typeof import('@vueuse/core').useIdle
223
+ const useImage: typeof import('@vueuse/core').useImage
224
+ const useInfiniteScroll: typeof import('@vueuse/core').useInfiniteScroll
225
+ const useIntersectionObserver: typeof import('@vueuse/core').useIntersectionObserver
226
+ const useInterval: typeof import('@vueuse/core').useInterval
227
+ const useIntervalFn: typeof import('@vueuse/core').useIntervalFn
228
+ const useKeyModifier: typeof import('@vueuse/core').useKeyModifier
229
+ const useLastChanged: typeof import('@vueuse/core').useLastChanged
230
+ const useLink: typeof import('vue-router').useLink
231
+ const useLocalStorage: typeof import('@vueuse/core').useLocalStorage
232
+ const useMagicKeys: typeof import('@vueuse/core').useMagicKeys
233
+ const useManualRefHistory: typeof import('@vueuse/core').useManualRefHistory
234
+ const useMediaControls: typeof import('@vueuse/core').useMediaControls
235
+ const useMediaQuery: typeof import('@vueuse/core').useMediaQuery
236
+ const useMemoize: typeof import('@vueuse/core').useMemoize
237
+ const useMemory: typeof import('@vueuse/core').useMemory
238
+ const useModel: typeof import('vue').useModel
239
+ const useMounted: typeof import('@vueuse/core').useMounted
240
+ const useMouse: typeof import('@vueuse/core').useMouse
241
+ const useMouseInElement: typeof import('@vueuse/core').useMouseInElement
242
+ const useMousePressed: typeof import('@vueuse/core').useMousePressed
243
+ const useMutationObserver: typeof import('@vueuse/core').useMutationObserver
244
+ const useNavigatorLanguage: typeof import('@vueuse/core').useNavigatorLanguage
245
+ const useNetwork: typeof import('@vueuse/core').useNetwork
246
+ const useNow: typeof import('@vueuse/core').useNow
247
+ const useObjectUrl: typeof import('@vueuse/core').useObjectUrl
248
+ const useOffsetPagination: typeof import('@vueuse/core').useOffsetPagination
249
+ const useOnline: typeof import('@vueuse/core').useOnline
250
+ const usePageLeave: typeof import('@vueuse/core').usePageLeave
251
+ const useParallax: typeof import('@vueuse/core').useParallax
252
+ const useParentElement: typeof import('@vueuse/core').useParentElement
253
+ const usePerformanceObserver: typeof import('@vueuse/core').usePerformanceObserver
254
+ const usePermission: typeof import('@vueuse/core').usePermission
255
+ const usePointer: typeof import('@vueuse/core').usePointer
256
+ const usePointerLock: typeof import('@vueuse/core').usePointerLock
257
+ const usePointerSwipe: typeof import('@vueuse/core').usePointerSwipe
258
+ const usePreferredColorScheme: typeof import('@vueuse/core').usePreferredColorScheme
259
+ const usePreferredContrast: typeof import('@vueuse/core').usePreferredContrast
260
+ const usePreferredDark: typeof import('@vueuse/core').usePreferredDark
261
+ const usePreferredLanguages: typeof import('@vueuse/core').usePreferredLanguages
262
+ const usePreferredReducedMotion: typeof import('@vueuse/core').usePreferredReducedMotion
263
+ const usePreferredReducedTransparency: typeof import('@vueuse/core').usePreferredReducedTransparency
264
+ const usePrevious: typeof import('@vueuse/core').usePrevious
265
+ const useRafFn: typeof import('@vueuse/core').useRafFn
266
+ const useRefHistory: typeof import('@vueuse/core').useRefHistory
267
+ const useResizeObserver: typeof import('@vueuse/core').useResizeObserver
268
+ const useRoute: typeof import('vue-router').useRoute
269
+ const useRouter: typeof import('vue-router').useRouter
270
+ const useSSRWidth: typeof import('@vueuse/core').useSSRWidth
271
+ const useScreenOrientation: typeof import('@vueuse/core').useScreenOrientation
272
+ const useScreenSafeArea: typeof import('@vueuse/core').useScreenSafeArea
273
+ const useScriptTag: typeof import('@vueuse/core').useScriptTag
274
+ const useScroll: typeof import('@vueuse/core').useScroll
275
+ const useScrollLock: typeof import('@vueuse/core').useScrollLock
276
+ const useSessionStorage: typeof import('@vueuse/core').useSessionStorage
277
+ const useShare: typeof import('@vueuse/core').useShare
278
+ const useSlots: typeof import('vue').useSlots
279
+ const useSorted: typeof import('@vueuse/core').useSorted
280
+ const useSpeechRecognition: typeof import('@vueuse/core').useSpeechRecognition
281
+ const useSpeechSynthesis: typeof import('@vueuse/core').useSpeechSynthesis
282
+ const useStepper: typeof import('@vueuse/core').useStepper
283
+ const useStorage: typeof import('@vueuse/core').useStorage
284
+ const useStorageAsync: typeof import('@vueuse/core').useStorageAsync
285
+ const useStyleTag: typeof import('@vueuse/core').useStyleTag
286
+ const useSupported: typeof import('@vueuse/core').useSupported
287
+ const useSwipe: typeof import('@vueuse/core').useSwipe
288
+ const useTemplateRef: typeof import('vue').useTemplateRef
289
+ const useTemplateRefsList: typeof import('@vueuse/core').useTemplateRefsList
290
+ const useTextDirection: typeof import('@vueuse/core').useTextDirection
291
+ const useTextSelection: typeof import('@vueuse/core').useTextSelection
292
+ const useTextareaAutosize: typeof import('@vueuse/core').useTextareaAutosize
293
+ const useThemeConfig: typeof import('./composables/useThemeConfig').useThemeConfig
294
+ const useThrottle: typeof import('@vueuse/core').useThrottle
295
+ const useThrottleFn: typeof import('@vueuse/core').useThrottleFn
296
+ const useThrottledRefHistory: typeof import('@vueuse/core').useThrottledRefHistory
297
+ const useTimeAgo: typeof import('@vueuse/core').useTimeAgo
298
+ const useTimeAgoIntl: typeof import('@vueuse/core').useTimeAgoIntl
299
+ const useTimeout: typeof import('@vueuse/core').useTimeout
300
+ const useTimeoutFn: typeof import('@vueuse/core').useTimeoutFn
301
+ const useTimeoutPoll: typeof import('@vueuse/core').useTimeoutPoll
302
+ const useTimestamp: typeof import('@vueuse/core').useTimestamp
303
+ const useTitle: typeof import('@vueuse/core').useTitle
304
+ const useToNumber: typeof import('@vueuse/core').useToNumber
305
+ const useToString: typeof import('@vueuse/core').useToString
306
+ const useToggle: typeof import('@vueuse/core').useToggle
307
+ const useTransition: typeof import('@vueuse/core').useTransition
308
+ const useUrlSearchParams: typeof import('@vueuse/core').useUrlSearchParams
309
+ const useUserMedia: typeof import('@vueuse/core').useUserMedia
310
+ const useVModel: typeof import('@vueuse/core').useVModel
311
+ const useVModels: typeof import('@vueuse/core').useVModels
312
+ const useVibrate: typeof import('@vueuse/core').useVibrate
313
+ const useVirtualList: typeof import('@vueuse/core').useVirtualList
314
+ const useWakeLock: typeof import('@vueuse/core').useWakeLock
315
+ const useWebNotification: typeof import('@vueuse/core').useWebNotification
316
+ const useWebSocket: typeof import('@vueuse/core').useWebSocket
317
+ const useWebWorker: typeof import('@vueuse/core').useWebWorker
318
+ const useWebWorkerFn: typeof import('@vueuse/core').useWebWorkerFn
319
+ const useWindowFocus: typeof import('@vueuse/core').useWindowFocus
320
+ const useWindowScroll: typeof import('@vueuse/core').useWindowScroll
321
+ const useWindowSize: typeof import('@vueuse/core').useWindowSize
322
+ const watch: typeof import('vue').watch
323
+ const watchArray: typeof import('@vueuse/core').watchArray
324
+ const watchAtMost: typeof import('@vueuse/core').watchAtMost
325
+ const watchDebounced: typeof import('@vueuse/core').watchDebounced
326
+ const watchDeep: typeof import('@vueuse/core').watchDeep
327
+ const watchEffect: typeof import('vue').watchEffect
328
+ const watchIgnorable: typeof import('@vueuse/core').watchIgnorable
329
+ const watchImmediate: typeof import('@vueuse/core').watchImmediate
330
+ const watchOnce: typeof import('@vueuse/core').watchOnce
331
+ const watchPausable: typeof import('@vueuse/core').watchPausable
332
+ const watchPostEffect: typeof import('vue').watchPostEffect
333
+ const watchSyncEffect: typeof import('vue').watchSyncEffect
334
+ const watchThrottled: typeof import('@vueuse/core').watchThrottled
335
+ const watchTriggerable: typeof import('@vueuse/core').watchTriggerable
336
+ const watchWithFilter: typeof import('@vueuse/core').watchWithFilter
337
+ const whenever: typeof import('@vueuse/core').whenever
338
+ }
339
+ // for type re-export
340
+ declare global {
341
+ // @ts-ignore
342
+ export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, ShallowRef, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
343
+ import('vue')
344
+ // @ts-ignore
345
+ export type { CustomRequestConfig } from './lib/axios'
346
+ import('./lib/axios')
347
+ // @ts-ignore
348
+ export type { TimeFormat, CurrencyFormatOptions, DateTimeFormatOptions, TimeOnlyFormatOptions } from './lib/formatters'
349
+ import('./lib/formatters')
350
+ // @ts-ignore
351
+ export type { LoadingBarState } from './lib/loading-bar'
352
+ import('./lib/loading-bar')
353
+ // @ts-ignore
354
+ export type { PrimaryColorKey, RadiusKey, ContentWidthKey, PrimaryColorDefinition, RadiusDefinition, ThemeConfig } from './composables/useThemeConfig'
355
+ import('./composables/useThemeConfig')
356
+ }
357
+
358
+ // for vue template auto import
359
+ import { UnwrapRef } from 'vue'
360
+ declare module 'vue' {
361
+ interface GlobalComponents {}
362
+ interface ComponentCustomProperties {
363
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
364
+ readonly PRIMARY_COLORS: UnwrapRef<typeof import('./composables/useThemeConfig')['PRIMARY_COLORS']>
365
+ readonly RADIUS_PRESETS: UnwrapRef<typeof import('./composables/useThemeConfig')['RADIUS_PRESETS']>
366
+ readonly REFRESH_TOKEN_KEY: UnwrapRef<typeof import('./lib/axios')['REFRESH_TOKEN_KEY']>
367
+ readonly TOKEN_KEY: UnwrapRef<typeof import('./lib/axios')['TOKEN_KEY']>
368
+ readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
369
+ readonly api: UnwrapRef<typeof import('./lib/axios')['api']>
370
+ readonly apiClient: UnwrapRef<typeof import('./lib/axios')['apiClient']>
371
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
372
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
373
+ readonly axios: UnwrapRef<typeof import('./lib/axios')['default']>
374
+ readonly cn: UnwrapRef<typeof import('./lib/utils')['cn']>
375
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
376
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
377
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
378
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
379
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
380
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
381
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
382
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
383
+ readonly createDisposableDirective: UnwrapRef<typeof import('@vueuse/core')['createDisposableDirective']>
384
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
385
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
386
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
387
+ readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
388
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
389
+ readonly createRef: UnwrapRef<typeof import('@vueuse/core')['createRef']>
390
+ readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
391
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
392
+ readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
393
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
394
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
395
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
396
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
397
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
398
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
399
+ readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
400
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
401
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
402
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
403
+ readonly formatBytes: UnwrapRef<typeof import('./lib/formatters')['formatBytes']>
404
+ readonly formatCompactNumber: UnwrapRef<typeof import('./lib/formatters')['formatCompactNumber']>
405
+ readonly formatCurrency: UnwrapRef<typeof import('./lib/formatters')['formatCurrency']>
406
+ readonly formatDate: UnwrapRef<typeof import('./lib/formatters')['formatDate']>
407
+ readonly formatDateTime: UnwrapRef<typeof import('./lib/formatters')['formatDateTime']>
408
+ readonly formatDateTimeWithTz: UnwrapRef<typeof import('./lib/formatters')['formatDateTimeWithTz']>
409
+ readonly formatNumber: UnwrapRef<typeof import('./lib/formatters')['formatNumber']>
410
+ readonly formatRelativeTime: UnwrapRef<typeof import('./lib/formatters')['formatRelativeTime']>
411
+ readonly formatTime: UnwrapRef<typeof import('./lib/formatters')['formatTime']>
412
+ readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
413
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
414
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
415
+ readonly getCurrentWatcher: UnwrapRef<typeof import('vue')['getCurrentWatcher']>
416
+ readonly getInitials: UnwrapRef<typeof import('./lib/formatters')['getInitials']>
417
+ readonly h: UnwrapRef<typeof import('vue')['h']>
418
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
419
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
420
+ readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
421
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
422
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
423
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
424
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
425
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
426
+ readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
427
+ readonly loadingBar: UnwrapRef<typeof import('./lib/loading-bar')['loadingBar']>
428
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
429
+ readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
430
+ readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
431
+ readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
432
+ readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
433
+ readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
434
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
435
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
436
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
437
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
438
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
439
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
440
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
441
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
442
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
443
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
444
+ readonly onElementRemoval: UnwrapRef<typeof import('@vueuse/core')['onElementRemoval']>
445
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
446
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
447
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
448
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
449
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
450
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
451
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
452
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
453
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
454
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
455
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
456
+ readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
457
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
458
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
459
+ readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
460
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
461
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
462
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
463
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
464
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
465
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
466
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
467
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
468
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
469
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
470
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
471
+ readonly refManualReset: UnwrapRef<typeof import('@vueuse/core')['refManualReset']>
472
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
473
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
474
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
475
+ readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
476
+ readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
477
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
478
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
479
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
480
+ readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
481
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
482
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
483
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
484
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
485
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
486
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
487
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
488
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
489
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
490
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
491
+ readonly tokenStorage: UnwrapRef<typeof import('./lib/axios')['tokenStorage']>
492
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
493
+ readonly truncate: UnwrapRef<typeof import('./lib/formatters')['truncate']>
494
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
495
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
496
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
497
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
498
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
499
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
500
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
501
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
502
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
503
+ readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
504
+ readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
505
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
506
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
507
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
508
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
509
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
510
+ readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
511
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
512
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
513
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
514
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
515
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
516
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
517
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
518
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
519
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
520
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
521
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
522
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
523
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
524
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
525
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
526
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
527
+ readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
528
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
529
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
530
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
531
+ readonly useCountdown: UnwrapRef<typeof import('@vueuse/core')['useCountdown']>
532
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
533
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
534
+ readonly useCssSupports: UnwrapRef<typeof import('@vueuse/core')['useCssSupports']>
535
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
536
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
537
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
538
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
539
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
540
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
541
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
542
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
543
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
544
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
545
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
546
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
547
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
548
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
549
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
550
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
551
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
552
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
553
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
554
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
555
+ readonly useElementOverflow: UnwrapRef<typeof import('@vueuse/core')['useElementOverflow']>
556
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
557
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
558
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
559
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
560
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
561
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
562
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
563
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
564
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
565
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
566
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
567
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
568
+ readonly useFormatter: UnwrapRef<typeof import('./composables/useFormatter')['useFormatter']>
569
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
570
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
571
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
572
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
573
+ readonly useId: UnwrapRef<typeof import('vue')['useId']>
574
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
575
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
576
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
577
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
578
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
579
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
580
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
581
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
582
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
583
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
584
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
585
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
586
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
587
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
588
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
589
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
590
+ readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
591
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
592
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
593
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
594
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
595
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
596
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
597
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
598
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
599
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
600
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
601
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
602
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
603
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
604
+ readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
605
+ readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
606
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
607
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
608
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
609
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
610
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
611
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
612
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
613
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
614
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
615
+ readonly usePreferredReducedTransparency: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedTransparency']>
616
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
617
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
618
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
619
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
620
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
621
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
622
+ readonly useSSRWidth: UnwrapRef<typeof import('@vueuse/core')['useSSRWidth']>
623
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
624
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
625
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
626
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
627
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
628
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
629
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
630
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
631
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
632
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
633
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
634
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
635
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
636
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
637
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
638
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
639
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
640
+ readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
641
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
642
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
643
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
644
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
645
+ readonly useThemeConfig: UnwrapRef<typeof import('./composables/useThemeConfig')['useThemeConfig']>
646
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
647
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
648
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
649
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
650
+ readonly useTimeAgoIntl: UnwrapRef<typeof import('@vueuse/core')['useTimeAgoIntl']>
651
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
652
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
653
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
654
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
655
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
656
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
657
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
658
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
659
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
660
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
661
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
662
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
663
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
664
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
665
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
666
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
667
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
668
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
669
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
670
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
671
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
672
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
673
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
674
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
675
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
676
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
677
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
678
+ readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
679
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
680
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
681
+ readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
682
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
683
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
684
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
685
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
686
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
687
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
688
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
689
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
690
+ }
691
+ }