@sakoa/ui 0.1.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 (345) hide show
  1. package/README.md +171 -0
  2. package/dist/App.d.ts +2 -0
  3. package/dist/cli/index.js +9243 -0
  4. package/dist/components/DemoSection.d.ts +30 -0
  5. package/dist/components/SApiKeyboard.d.ts +22 -0
  6. package/dist/components/SApiSection.d.ts +21 -0
  7. package/dist/components/SApiTable.d.ts +46 -0
  8. package/dist/components/STableOfContents.d.ts +2 -0
  9. package/dist/components/ui/SAlert.d.ts +76 -0
  10. package/dist/components/ui/SBadge.d.ts +56 -0
  11. package/dist/components/ui/SButton.d.ts +67 -0
  12. package/dist/components/ui/SCheckbox.d.ts +64 -0
  13. package/dist/components/ui/SChip.d.ts +43 -0
  14. package/dist/components/ui/SDatePicker.d.ts +77 -0
  15. package/dist/components/ui/SGlassButton.d.ts +70 -0
  16. package/dist/components/ui/SIcon.d.ts +29 -0
  17. package/dist/components/ui/SInput.d.ts +129 -0
  18. package/dist/components/ui/SKbd.d.ts +24 -0
  19. package/dist/components/ui/SKbdShortcut.d.ts +14 -0
  20. package/dist/components/ui/SSelect.d.ts +148 -0
  21. package/dist/components/ui/SSkeleton.d.ts +37 -0
  22. package/dist/components/ui/SSwitch.d.ts +61 -0
  23. package/dist/components/ui/STooltip.d.ts +82 -0
  24. package/dist/components/ui/accordion/SAccordionContent.d.ts +23 -0
  25. package/dist/components/ui/accordion/SAccordionItem.d.ts +70 -0
  26. package/dist/components/ui/accordion/SAccordionTrigger.d.ts +37 -0
  27. package/dist/components/ui/accordion/index.d.ts +4 -0
  28. package/dist/components/ui/avatar/SAvatar.d.ts +36 -0
  29. package/dist/components/ui/avatar/SAvatarFallback.d.ts +26 -0
  30. package/dist/components/ui/avatar/SAvatarGroup.d.ts +30 -0
  31. package/dist/components/ui/avatar/SAvatarImage.d.ts +23 -0
  32. package/dist/components/ui/avatar/index.d.ts +4 -0
  33. package/dist/components/ui/breadcrumb/SBreadcrumb.d.ts +22 -0
  34. package/dist/components/ui/breadcrumb/SBreadcrumbEllipsis.d.ts +17 -0
  35. package/dist/components/ui/breadcrumb/SBreadcrumbItem.d.ts +17 -0
  36. package/dist/components/ui/breadcrumb/SBreadcrumbLink.d.ts +26 -0
  37. package/dist/components/ui/breadcrumb/SBreadcrumbList.d.ts +17 -0
  38. package/dist/components/ui/breadcrumb/SBreadcrumbPage.d.ts +17 -0
  39. package/dist/components/ui/breadcrumb/SBreadcrumbSeparator.d.ts +17 -0
  40. package/dist/components/ui/breadcrumb/index.d.ts +7 -0
  41. package/dist/components/ui/card/SCard.d.ts +103 -0
  42. package/dist/components/ui/card/SCardActions.d.ts +44 -0
  43. package/dist/components/ui/card/SCardContent.d.ts +35 -0
  44. package/dist/components/ui/card/SCardFooter.d.ts +38 -0
  45. package/dist/components/ui/card/SCardHeader.d.ts +53 -0
  46. package/dist/components/ui/card/SCardMedia.d.ts +83 -0
  47. package/dist/components/ui/card/SGlassCard.d.ts +103 -0
  48. package/dist/components/ui/card/SMorphingCardContent.d.ts +18 -0
  49. package/dist/components/ui/card/index.d.ts +24 -0
  50. package/dist/components/ui/carousel/SCarousel.d.ts +166 -0
  51. package/dist/components/ui/carousel/index.d.ts +2 -0
  52. package/dist/components/ui/color-picker/SColorPickerAlphaSlider.d.ts +4 -0
  53. package/dist/components/ui/color-picker/SColorPickerCopy.d.ts +19 -0
  54. package/dist/components/ui/color-picker/SColorPickerEyeDropper.d.ts +17 -0
  55. package/dist/components/ui/color-picker/SColorPickerHueSlider.d.ts +4 -0
  56. package/dist/components/ui/color-picker/SColorPickerInputs.d.ts +2 -0
  57. package/dist/components/ui/color-picker/SColorPickerPresets.d.ts +9 -0
  58. package/dist/components/ui/color-picker/SColorPickerPreview.d.ts +2 -0
  59. package/dist/components/ui/color-picker/SColorPickerRecent.d.ts +7 -0
  60. package/dist/components/ui/color-picker/SColorPickerSpectrum.d.ts +4 -0
  61. package/dist/components/ui/color-picker/index.d.ts +11 -0
  62. package/dist/components/ui/drawer/index.d.ts +11 -0
  63. package/dist/components/ui/dropdown/SDropdownDivider.d.ts +8 -0
  64. package/dist/components/ui/dropdown/SDropdownGroup.d.ts +25 -0
  65. package/dist/components/ui/dropdown/SDropdownItem.d.ts +56 -0
  66. package/dist/components/ui/dropdown/index.d.ts +4 -0
  67. package/dist/components/ui/form/SForm.d.ts +38 -0
  68. package/dist/components/ui/form/SFormField.d.ts +31 -0
  69. package/dist/components/ui/form/index.d.ts +5 -0
  70. package/dist/components/ui/modal/index.d.ts +19 -0
  71. package/dist/components/ui/option/SOption.d.ts +32 -0
  72. package/dist/components/ui/option/SOptionGroup.d.ts +28 -0
  73. package/dist/components/ui/option/index.d.ts +2 -0
  74. package/dist/components/ui/otp/SOTP.d.ts +122 -0
  75. package/dist/components/ui/otp/SOTPGroup.d.ts +23 -0
  76. package/dist/components/ui/otp/SOTPSeparator.d.ts +17 -0
  77. package/dist/components/ui/otp/SOTPSlot.d.ts +49 -0
  78. package/dist/components/ui/otp/index.d.ts +7 -0
  79. package/dist/components/ui/otp/types.d.ts +26 -0
  80. package/dist/components/ui/otp/useOTPContext.d.ts +42 -0
  81. package/dist/components/ui/pagination/SPagination.d.ts +151 -0
  82. package/dist/components/ui/pagination/index.d.ts +2 -0
  83. package/dist/components/ui/progress/SProgress.d.ts +62 -0
  84. package/dist/components/ui/progress/SProgressRange.d.ts +91 -0
  85. package/dist/components/ui/progress/index.d.ts +4 -0
  86. package/dist/components/ui/radio/SRadio.d.ts +58 -0
  87. package/dist/components/ui/radio/SRadioGroup.d.ts +52 -0
  88. package/dist/components/ui/radio/index.d.ts +2 -0
  89. package/dist/components/ui/stepper/SStepper.d.ts +83 -0
  90. package/dist/components/ui/stepper/SStepperContent.d.ts +24 -0
  91. package/dist/components/ui/stepper/SStepperDescription.d.ts +20 -0
  92. package/dist/components/ui/stepper/SStepperIndicator.d.ts +37 -0
  93. package/dist/components/ui/stepper/SStepperItem.d.ts +37 -0
  94. package/dist/components/ui/stepper/SStepperSeparator.d.ts +5 -0
  95. package/dist/components/ui/stepper/SStepperTitle.d.ts +20 -0
  96. package/dist/components/ui/stepper/SStepperTrigger.d.ts +22 -0
  97. package/dist/components/ui/stepper/index.d.ts +11 -0
  98. package/dist/components/ui/table/STableBody.d.ts +27 -0
  99. package/dist/components/ui/table/STableCell.d.ts +55 -0
  100. package/dist/components/ui/table/STableColumn.d.ts +87 -0
  101. package/dist/components/ui/table/STableEmpty.d.ts +54 -0
  102. package/dist/components/ui/table/STableHeader.d.ts +25 -0
  103. package/dist/components/ui/table/STableRow.d.ts +38 -0
  104. package/dist/components/ui/table/STableSkeleton.d.ts +29 -0
  105. package/dist/components/ui/table/index.d.ts +98 -0
  106. package/dist/components/ui/table/useDataTable.d.ts +80 -0
  107. package/dist/components/ui/tabs/STabPane.d.ts +31 -0
  108. package/dist/components/ui/tabs/STabsContent.d.ts +21 -0
  109. package/dist/components/ui/tabs/STabsIndicator.d.ts +9 -0
  110. package/dist/components/ui/tabs/STabsTrigger.d.ts +28 -0
  111. package/dist/components/ui/tabs/index.d.ts +6 -0
  112. package/dist/components/ui/toast/SToast.d.ts +49 -0
  113. package/dist/components/ui/toast/SToastContainer.d.ts +21 -0
  114. package/dist/components/ui/toast/index.d.ts +2 -0
  115. package/dist/composables/useAsync.d.ts +134 -0
  116. package/dist/composables/useClickOutside.d.ts +69 -0
  117. package/dist/composables/useClipboard.d.ts +46 -0
  118. package/dist/composables/useDebounce.d.ts +150 -0
  119. package/dist/composables/useDialog.d.ts +118 -0
  120. package/dist/composables/useForm.d.ts +204 -0
  121. package/dist/composables/useHotkey.d.ts +128 -0
  122. package/dist/composables/useIntersectionObserver.d.ts +156 -0
  123. package/dist/composables/useLocalStorage.d.ts +120 -0
  124. package/dist/composables/useMediaQuery.d.ts +115 -0
  125. package/dist/composables/useTheme.d.ts +8 -0
  126. package/dist/composables/useToast.d.ts +1619 -0
  127. package/dist/index.d.ts +71 -0
  128. package/dist/layouts/UILayout.d.ts +2 -0
  129. package/dist/lib/utils.d.ts +2 -0
  130. package/dist/main.d.ts +0 -0
  131. package/dist/router.d.ts +2 -0
  132. package/dist/saka-ui.css +1 -0
  133. package/dist/saka-ui.js +18513 -0
  134. package/dist/saka-ui.umd.cjs +38 -0
  135. package/dist/views/docs/CustomizationView.d.ts +2 -0
  136. package/dist/views/docs/FormValidationView.d.ts +2 -0
  137. package/dist/views/docs/StylingGuideView.d.ts +2 -0
  138. package/dist/views/docs/UseAsyncView.d.ts +2 -0
  139. package/dist/views/docs/UseClickOutsideView.d.ts +124 -0
  140. package/dist/views/docs/UseClipboardView.d.ts +4 -0
  141. package/dist/views/docs/UseDebounceView.d.ts +2 -0
  142. package/dist/views/docs/UseHotkeyView.d.ts +205 -0
  143. package/dist/views/docs/UseIntersectionObserverView.d.ts +5 -0
  144. package/dist/views/docs/UseLocalStorageView.d.ts +2 -0
  145. package/dist/views/docs/UseMediaQueryView.d.ts +2 -0
  146. package/dist/views/docs/UseThemeView.d.ts +2 -0
  147. package/dist/views/examples/AuthFormView.d.ts +2 -0
  148. package/dist/views/examples/CreditCardFormView.d.ts +6 -0
  149. package/dist/views/examples/FormFieldExampleView.d.ts +2 -0
  150. package/dist/views/examples/ProjectFormView.d.ts +2 -0
  151. package/dist/views/ui/AccordionView.d.ts +2 -0
  152. package/dist/views/ui/AlertView.d.ts +2 -0
  153. package/dist/views/ui/AvatarView.d.ts +2 -0
  154. package/dist/views/ui/BadgeView.d.ts +2 -0
  155. package/dist/views/ui/BreadcrumbView.d.ts +2 -0
  156. package/dist/views/ui/ButtonView.d.ts +2 -0
  157. package/dist/views/ui/CardView.d.ts +2 -0
  158. package/dist/views/ui/CarouselView.d.ts +274 -0
  159. package/dist/views/ui/CheckboxView.d.ts +2 -0
  160. package/dist/views/ui/ChipView.d.ts +2 -0
  161. package/dist/views/ui/ColorPickerView.d.ts +2 -0
  162. package/dist/views/ui/DatePickerView.d.ts +2 -0
  163. package/dist/views/ui/DialogView.d.ts +2 -0
  164. package/dist/views/ui/DrawerView.d.ts +2 -0
  165. package/dist/views/ui/DropdownView.d.ts +2 -0
  166. package/dist/views/ui/GlassButtonView.d.ts +2 -0
  167. package/dist/views/ui/GlassCardView.d.ts +2 -0
  168. package/dist/views/ui/HomeView.d.ts +2 -0
  169. package/dist/views/ui/IconsView.d.ts +2 -0
  170. package/dist/views/ui/InputView.d.ts +2 -0
  171. package/dist/views/ui/KbdView.d.ts +2 -0
  172. package/dist/views/ui/ModalView.d.ts +2 -0
  173. package/dist/views/ui/MorphingCardView.d.ts +2 -0
  174. package/dist/views/ui/MorphingModalView.d.ts +2 -0
  175. package/dist/views/ui/OTPView.d.ts +206 -0
  176. package/dist/views/ui/PaginationView.d.ts +2 -0
  177. package/dist/views/ui/ProgressView.d.ts +2 -0
  178. package/dist/views/ui/RadioView.d.ts +2 -0
  179. package/dist/views/ui/SelectView.d.ts +2 -0
  180. package/dist/views/ui/SkeletonView.d.ts +2 -0
  181. package/dist/views/ui/StepperView.d.ts +2 -0
  182. package/dist/views/ui/SwitchView.d.ts +2 -0
  183. package/dist/views/ui/TableView.d.ts +2 -0
  184. package/dist/views/ui/TabsView.d.ts +2 -0
  185. package/dist/views/ui/ToastView.d.ts +2 -0
  186. package/dist/views/ui/TooltipView.d.ts +2 -0
  187. package/dist/vite.svg +1 -0
  188. package/package.json +64 -0
  189. package/registry/components/accordion.json +19 -0
  190. package/registry/components/alert.json +17 -0
  191. package/registry/components/avatar.json +18 -0
  192. package/registry/components/badge.json +14 -0
  193. package/registry/components/breadcrumb.json +24 -0
  194. package/registry/components/button.json +17 -0
  195. package/registry/components/card.json +23 -0
  196. package/registry/components/carousel.json +19 -0
  197. package/registry/components/checkbox.json +17 -0
  198. package/registry/components/chip.json +17 -0
  199. package/registry/components/color-picker.json +24 -0
  200. package/registry/components/date-picker.json +17 -0
  201. package/registry/components/drawer.json +26 -0
  202. package/registry/components/dropdown.json +21 -0
  203. package/registry/components/form.json +16 -0
  204. package/registry/components/glass-button.json +17 -0
  205. package/registry/components/icon.json +17 -0
  206. package/registry/components/input.json +17 -0
  207. package/registry/components/kbd.json +16 -0
  208. package/registry/components/modal.json +32 -0
  209. package/registry/components/option.json +16 -0
  210. package/registry/components/otp.json +23 -0
  211. package/registry/components/pagination.json +18 -0
  212. package/registry/components/progress.json +16 -0
  213. package/registry/components/radio.json +19 -0
  214. package/registry/components/select.json +17 -0
  215. package/registry/components/skeleton.json +14 -0
  216. package/registry/components/switch.json +17 -0
  217. package/registry/components/table.json +26 -0
  218. package/registry/components/tabs.json +19 -0
  219. package/registry/components/toast.json +19 -0
  220. package/registry/components/tooltip.json +14 -0
  221. package/registry/index.json +4 -0
  222. package/registry/source/components/ui/SAlert.vue +388 -0
  223. package/registry/source/components/ui/SBadge.vue +243 -0
  224. package/registry/source/components/ui/SButton.vue +387 -0
  225. package/registry/source/components/ui/SCheckbox.vue +310 -0
  226. package/registry/source/components/ui/SChip.vue +130 -0
  227. package/registry/source/components/ui/SDatePicker.vue +1290 -0
  228. package/registry/source/components/ui/SGlassButton.vue +547 -0
  229. package/registry/source/components/ui/SIcon.vue +78 -0
  230. package/registry/source/components/ui/SInput.vue +1054 -0
  231. package/registry/source/components/ui/SKbd.vue +96 -0
  232. package/registry/source/components/ui/SKbdShortcut.vue +36 -0
  233. package/registry/source/components/ui/SSelect.vue +1290 -0
  234. package/registry/source/components/ui/SSkeleton.vue +185 -0
  235. package/registry/source/components/ui/SSwitch.vue +275 -0
  236. package/registry/source/components/ui/STooltip.vue +491 -0
  237. package/registry/source/components/ui/accordion/SAccordion.vue +248 -0
  238. package/registry/source/components/ui/accordion/SAccordionItem.vue +353 -0
  239. package/registry/source/components/ui/accordion/index.ts +5 -0
  240. package/registry/source/components/ui/avatar/SAvatar.vue +169 -0
  241. package/registry/source/components/ui/avatar/SAvatarFallback.vue +66 -0
  242. package/registry/source/components/ui/avatar/SAvatarGroup.vue +69 -0
  243. package/registry/source/components/ui/avatar/SAvatarImage.vue +92 -0
  244. package/registry/source/components/ui/avatar/index.ts +5 -0
  245. package/registry/source/components/ui/breadcrumb/SBreadcrumb.vue +23 -0
  246. package/registry/source/components/ui/breadcrumb/SBreadcrumbEllipsis.vue +17 -0
  247. package/registry/source/components/ui/breadcrumb/SBreadcrumbItem.vue +14 -0
  248. package/registry/source/components/ui/breadcrumb/SBreadcrumbLink.vue +46 -0
  249. package/registry/source/components/ui/breadcrumb/SBreadcrumbList.vue +17 -0
  250. package/registry/source/components/ui/breadcrumb/SBreadcrumbPage.vue +15 -0
  251. package/registry/source/components/ui/breadcrumb/SBreadcrumbSeparator.vue +18 -0
  252. package/registry/source/components/ui/breadcrumb/index.ts +7 -0
  253. package/registry/source/components/ui/card/SCard.vue +517 -0
  254. package/registry/source/components/ui/card/SCardActions.vue +129 -0
  255. package/registry/source/components/ui/card/SCardContent.vue +117 -0
  256. package/registry/source/components/ui/card/SCardFooter.vue +103 -0
  257. package/registry/source/components/ui/card/SCardHeader.vue +163 -0
  258. package/registry/source/components/ui/card/SCardMedia.vue +312 -0
  259. package/registry/source/components/ui/card/index.ts +34 -0
  260. package/registry/source/components/ui/carousel/SCarousel.vue +1069 -0
  261. package/registry/source/components/ui/carousel/SCarouselSlide.vue +107 -0
  262. package/registry/source/components/ui/carousel/index.ts +3 -0
  263. package/registry/source/components/ui/color-picker/SColorPicker.vue +772 -0
  264. package/registry/source/components/ui/color-picker/SColorPickerAlphaSlider.vue +158 -0
  265. package/registry/source/components/ui/color-picker/SColorPickerCopy.vue +76 -0
  266. package/registry/source/components/ui/color-picker/SColorPickerEyeDropper.vue +68 -0
  267. package/registry/source/components/ui/color-picker/SColorPickerHueSlider.vue +138 -0
  268. package/registry/source/components/ui/color-picker/SColorPickerInputs.vue +227 -0
  269. package/registry/source/components/ui/color-picker/SColorPickerPresets.vue +87 -0
  270. package/registry/source/components/ui/color-picker/SColorPickerPreview.vue +46 -0
  271. package/registry/source/components/ui/color-picker/SColorPickerRecent.vue +74 -0
  272. package/registry/source/components/ui/color-picker/SColorPickerSpectrum.vue +149 -0
  273. package/registry/source/components/ui/color-picker/index.ts +11 -0
  274. package/registry/source/components/ui/drawer/SDrawer.vue +797 -0
  275. package/registry/source/components/ui/drawer/SDrawerClose.vue +64 -0
  276. package/registry/source/components/ui/drawer/SDrawerContent.vue +81 -0
  277. package/registry/source/components/ui/drawer/SDrawerDescription.vue +40 -0
  278. package/registry/source/components/ui/drawer/SDrawerFooter.vue +97 -0
  279. package/registry/source/components/ui/drawer/SDrawerHandle.vue +79 -0
  280. package/registry/source/components/ui/drawer/SDrawerHeader.vue +117 -0
  281. package/registry/source/components/ui/drawer/SDrawerTitle.vue +40 -0
  282. package/registry/source/components/ui/drawer/SDrawerTrigger.vue +51 -0
  283. package/registry/source/components/ui/drawer/index.ts +20 -0
  284. package/registry/source/components/ui/dropdown/SDropdown.vue +843 -0
  285. package/registry/source/components/ui/dropdown/SDropdownDivider.vue +23 -0
  286. package/registry/source/components/ui/dropdown/SDropdownGroup.vue +53 -0
  287. package/registry/source/components/ui/dropdown/SDropdownItem.vue +179 -0
  288. package/registry/source/components/ui/dropdown/index.ts +5 -0
  289. package/registry/source/components/ui/form/SForm.vue +84 -0
  290. package/registry/source/components/ui/form/SFormField.vue +78 -0
  291. package/registry/source/components/ui/form/index.ts +8 -0
  292. package/registry/source/components/ui/modal/SModal.vue +648 -0
  293. package/registry/source/components/ui/modal/SModalClose.vue +49 -0
  294. package/registry/source/components/ui/modal/SModalContent.vue +74 -0
  295. package/registry/source/components/ui/modal/SModalDescription.vue +39 -0
  296. package/registry/source/components/ui/modal/SModalFooter.vue +84 -0
  297. package/registry/source/components/ui/modal/SModalHeader.vue +107 -0
  298. package/registry/source/components/ui/modal/SModalTitle.vue +39 -0
  299. package/registry/source/components/ui/modal/SModalTrigger.vue +61 -0
  300. package/registry/source/components/ui/modal/SMorphingModal.vue +429 -0
  301. package/registry/source/components/ui/modal/SMorphingModalClose.vue +42 -0
  302. package/registry/source/components/ui/modal/SMorphingModalDescription.vue +49 -0
  303. package/registry/source/components/ui/modal/SMorphingModalImage.vue +44 -0
  304. package/registry/source/components/ui/modal/SMorphingModalSubtitle.vue +29 -0
  305. package/registry/source/components/ui/modal/SMorphingModalTitle.vue +34 -0
  306. package/registry/source/components/ui/modal/SMorphingModalTrigger.vue +95 -0
  307. package/registry/source/components/ui/modal/index.ts +32 -0
  308. package/registry/source/components/ui/option/SOption.vue +180 -0
  309. package/registry/source/components/ui/option/SOptionGroup.vue +77 -0
  310. package/registry/source/components/ui/option/index.ts +3 -0
  311. package/registry/source/components/ui/otp/SOTP.vue +843 -0
  312. package/registry/source/components/ui/otp/SOTPGroup.vue +29 -0
  313. package/registry/source/components/ui/otp/SOTPSeparator.vue +15 -0
  314. package/registry/source/components/ui/otp/SOTPSlot.vue +462 -0
  315. package/registry/source/components/ui/otp/index.ts +7 -0
  316. package/registry/source/components/ui/otp/types.ts +27 -0
  317. package/registry/source/components/ui/otp/useOTPContext.ts +62 -0
  318. package/registry/source/components/ui/pagination/SPagination.vue +923 -0
  319. package/registry/source/components/ui/pagination/index.ts +8 -0
  320. package/registry/source/components/ui/progress/SProgress.vue +635 -0
  321. package/registry/source/components/ui/progress/SProgressRange.vue +715 -0
  322. package/registry/source/components/ui/progress/index.ts +4 -0
  323. package/registry/source/components/ui/radio/SRadio.vue +407 -0
  324. package/registry/source/components/ui/radio/SRadioGroup.vue +200 -0
  325. package/registry/source/components/ui/radio/index.ts +3 -0
  326. package/registry/source/components/ui/table/SDataTable.vue +828 -0
  327. package/registry/source/components/ui/table/STableBody.vue +70 -0
  328. package/registry/source/components/ui/table/STableCell.vue +147 -0
  329. package/registry/source/components/ui/table/STableColumn.vue +120 -0
  330. package/registry/source/components/ui/table/STableEmpty.vue +159 -0
  331. package/registry/source/components/ui/table/STableHeader.vue +132 -0
  332. package/registry/source/components/ui/table/STableRow.vue +106 -0
  333. package/registry/source/components/ui/table/STableSkeleton.vue +208 -0
  334. package/registry/source/components/ui/table/index.ts +126 -0
  335. package/registry/source/components/ui/table/useDataTable.ts +519 -0
  336. package/registry/source/components/ui/tabs/STabPane.vue +130 -0
  337. package/registry/source/components/ui/tabs/STabs.vue +467 -0
  338. package/registry/source/components/ui/tabs/index.ts +7 -0
  339. package/registry/source/components/ui/toast/SToast.vue +261 -0
  340. package/registry/source/components/ui/toast/SToastContainer.vue +209 -0
  341. package/registry/source/components/ui/toast/index.ts +2 -0
  342. package/registry/source/composables/useForm.ts +960 -0
  343. package/registry/source/composables/useTheme.ts +86 -0
  344. package/registry/source/composables/useToast.ts +440 -0
  345. package/registry/source/lib/utils.ts +6 -0
@@ -0,0 +1,1619 @@
1
+ import { Component } from 'vue';
2
+ export type ToastType = 'success' | 'error' | 'warning' | 'info' | 'loading' | 'custom';
3
+ export type ToastPosition = 'top-left' | 'top-right' | 'top-center' | 'bottom-left' | 'bottom-right' | 'bottom-center';
4
+ export interface ToastOptions {
5
+ /** Toast title */
6
+ title?: string;
7
+ /** Toast description/message */
8
+ description?: string;
9
+ /** Duration in ms before auto-dismiss (0 = no auto-dismiss) */
10
+ duration?: number;
11
+ /** Position on screen */
12
+ position?: ToastPosition;
13
+ /** Show progress bar */
14
+ showProgress?: boolean;
15
+ /** Show close button */
16
+ closable?: boolean;
17
+ /** Custom icon (mdi icon name, or false to hide) */
18
+ icon?: string | boolean;
19
+ /** Custom color for 'custom' type */
20
+ color?: string;
21
+ /** Callback when toast is clicked */
22
+ onClick?: () => void;
23
+ /** Callback when toast is closed */
24
+ onClose?: () => void;
25
+ /** Custom component to render */
26
+ component?: Component;
27
+ /** Props for custom component */
28
+ componentProps?: Record<string, unknown>;
29
+ }
30
+ export interface ToastInstance {
31
+ /** Unique toast ID */
32
+ id: string;
33
+ /** Toast type */
34
+ type: ToastType;
35
+ /** Toast options */
36
+ options: ToastOptions;
37
+ /** Creation timestamp */
38
+ createdAt: number;
39
+ /** Whether toast is paused */
40
+ paused: boolean;
41
+ /** Remaining time when paused */
42
+ remainingTime: number;
43
+ /** Progress percentage (0-100) */
44
+ progress: number;
45
+ /** Dismiss this toast */
46
+ dismiss: () => void;
47
+ /** Pause auto-dismiss */
48
+ pause: () => void;
49
+ /** Resume auto-dismiss */
50
+ resume: () => void;
51
+ /** Update toast content */
52
+ update: (options: Partial<ToastOptions>) => void;
53
+ }
54
+ export interface ToastPromiseOptions<T> {
55
+ loading: string | ToastOptions;
56
+ success: string | ToastOptions | ((data: T) => string | ToastOptions);
57
+ error: string | ToastOptions | ((err: unknown) => string | ToastOptions);
58
+ }
59
+ export interface ToastConfig {
60
+ /** Default position for all toasts */
61
+ position?: ToastPosition;
62
+ /** Default duration in ms */
63
+ duration?: number;
64
+ /** Maximum toasts per position */
65
+ maxToasts?: number;
66
+ /** Gap between toasts in px */
67
+ gap?: number;
68
+ /** Whether to show progress bar by default */
69
+ showProgress?: boolean;
70
+ /** Whether toasts are closable by default */
71
+ closable?: boolean;
72
+ }
73
+ /**
74
+ * Toast notification composable
75
+ *
76
+ * @example
77
+ * const toast = useToast()
78
+ *
79
+ * // Basic usage
80
+ * toast.success('Saved successfully!')
81
+ * toast.error('Failed to save')
82
+ *
83
+ * // With options
84
+ * toast.success({
85
+ * title: 'Success',
86
+ * description: 'Your changes have been saved',
87
+ * duration: 3000
88
+ * })
89
+ *
90
+ * // Promise-based
91
+ * toast.promise(saveData(), {
92
+ * loading: 'Saving...',
93
+ * success: 'Saved!',
94
+ * error: 'Failed to save'
95
+ * })
96
+ */
97
+ export declare function useToast(): {
98
+ success: (messageOrOptions: string | ToastOptions) => ToastInstance;
99
+ error: (messageOrOptions: string | ToastOptions) => ToastInstance;
100
+ warning: (messageOrOptions: string | ToastOptions) => ToastInstance;
101
+ info: (messageOrOptions: string | ToastOptions) => ToastInstance;
102
+ loading: (messageOrOptions: string | ToastOptions) => ToastInstance;
103
+ custom: (options: ToastOptions) => ToastInstance;
104
+ promise: <T>(promiseOrFn: Promise<T> | (() => Promise<T>), options: ToastPromiseOptions<T>) => Promise<T>;
105
+ dismiss: (toastId: string) => void;
106
+ dismissAll: () => void;
107
+ configure: (config: ToastConfig) => void;
108
+ toasts: Readonly<import('vue').Ref<readonly {
109
+ readonly id: string;
110
+ readonly type: ToastType;
111
+ readonly options: {
112
+ readonly title?: string
113
+ /** Toast description/message */
114
+ | undefined;
115
+ readonly description?: string
116
+ /** Duration in ms before auto-dismiss (0 = no auto-dismiss) */
117
+ | undefined;
118
+ readonly duration?: number
119
+ /** Position on screen */
120
+ | undefined;
121
+ readonly position?: ToastPosition
122
+ /** Show progress bar */
123
+ | undefined;
124
+ readonly showProgress?: boolean
125
+ /** Show close button */
126
+ | undefined;
127
+ readonly closable?: boolean
128
+ /** Custom icon (mdi icon name, or false to hide) */
129
+ | undefined;
130
+ readonly icon?: string | boolean
131
+ /** Custom color for 'custom' type */
132
+ | undefined;
133
+ readonly color?: string
134
+ /** Callback when toast is clicked */
135
+ | undefined;
136
+ readonly onClick?: (() => void) | undefined;
137
+ readonly onClose?: (() => void) | undefined;
138
+ readonly component?: import('vue').FunctionalComponent<any, {}, any, {}> | {
139
+ new (...args: any[]): any;
140
+ __isFragment?: never;
141
+ __isTeleport?: never;
142
+ __isSuspense?: never;
143
+ } | {
144
+ readonly [x: string]: any;
145
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
146
+ attrs: {
147
+ [x: string]: unknown;
148
+ };
149
+ slots: Readonly<{
150
+ [name: string]: import('vue').Slot<any> | undefined;
151
+ }>;
152
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
153
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
154
+ }) => any) | undefined;
155
+ readonly name?: string | undefined;
156
+ readonly template?: string | object | undefined;
157
+ readonly render?: Function | undefined;
158
+ readonly components?: {
159
+ readonly [x: string]: import('vue').FunctionalComponent<any, {}, any, {}> | {
160
+ new (...args: any[]): any;
161
+ __isFragment?: never;
162
+ __isTeleport?: never;
163
+ __isSuspense?: never;
164
+ } | {
165
+ readonly [x: string]: any;
166
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
167
+ attrs: {
168
+ [x: string]: unknown;
169
+ };
170
+ slots: Readonly<{
171
+ [name: string]: import('vue').Slot<any> | undefined;
172
+ }>;
173
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
174
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
175
+ }) => any) | undefined;
176
+ readonly name?: string | undefined;
177
+ readonly template?: string | object | undefined;
178
+ readonly render?: Function | undefined;
179
+ readonly components?: /*elided*/ any | undefined;
180
+ readonly directives?: {
181
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
182
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
183
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
184
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
185
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
186
+ [key: string]: any;
187
+ }>, any, string, any> | undefined;
188
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
189
+ [key: string]: any;
190
+ }>, any, string, any> | undefined;
191
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
192
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
193
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
194
+ [x: string]: unknown;
195
+ } | undefined) | undefined;
196
+ readonly deep?: boolean | undefined;
197
+ };
198
+ } | undefined;
199
+ readonly inheritAttrs?: boolean | undefined;
200
+ readonly emits?: any;
201
+ readonly slots?: {} | undefined;
202
+ readonly expose?: readonly string[] | undefined;
203
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
204
+ readonly compilerOptions?: {
205
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
206
+ readonly whitespace?: "preserve" | "condense" | undefined;
207
+ readonly comments?: boolean | undefined;
208
+ readonly delimiters?: readonly [string, string] | undefined;
209
+ } | undefined;
210
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
211
+ readonly __isFragment?: never | undefined;
212
+ readonly __isTeleport?: never | undefined;
213
+ readonly __isSuspense?: never | undefined;
214
+ readonly __defaults?: {} | undefined;
215
+ readonly compatConfig?: {
216
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
217
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
218
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
219
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
220
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
221
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
222
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
223
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
224
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
225
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
226
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
227
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
228
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
229
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
230
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
231
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
232
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
233
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
234
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
235
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
236
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
237
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
238
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
239
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
240
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
241
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
242
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
243
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
244
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
245
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
246
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
247
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
248
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
249
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
250
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
251
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
252
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
253
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
254
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
255
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
256
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
257
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
258
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
259
+ } | undefined;
260
+ readonly data?: ((this: any, vm: any) => any) | undefined;
261
+ readonly computed?: {
262
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
263
+ readonly get: import('vue').ComputedGetter<any>;
264
+ readonly set: import('vue').ComputedSetter<any>;
265
+ };
266
+ } | undefined;
267
+ readonly methods?: {
268
+ readonly [x: string]: Function;
269
+ } | undefined;
270
+ readonly watch?: {
271
+ readonly [x: string]: string | import('vue').WatchCallback | {
272
+ readonly handler: import('vue').WatchCallback | string;
273
+ readonly immediate?: boolean | undefined;
274
+ readonly deep?: boolean | number | undefined;
275
+ readonly once?: boolean | undefined;
276
+ readonly flush?: "pre" | "post" | "sync" | undefined;
277
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
278
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
279
+ } | readonly (string | import('vue').WatchCallback | {
280
+ readonly handler: import('vue').WatchCallback | string;
281
+ readonly immediate?: boolean | undefined;
282
+ readonly deep?: boolean | number | undefined;
283
+ readonly once?: boolean | undefined;
284
+ readonly flush?: "pre" | "post" | "sync" | undefined;
285
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
286
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
287
+ })[];
288
+ } | undefined;
289
+ readonly provide?: Function | {
290
+ readonly [x: string]: Readonly<unknown>;
291
+ readonly [x: symbol]: Readonly<unknown>;
292
+ } | undefined;
293
+ readonly inject?: readonly string[] | {} | undefined;
294
+ readonly filters?: {
295
+ readonly [x: string]: Function;
296
+ } | undefined;
297
+ readonly mixins?: readonly any[] | undefined;
298
+ readonly extends?: any;
299
+ readonly beforeCreate?: (() => any) | undefined;
300
+ readonly created?: (() => any) | undefined;
301
+ readonly beforeMount?: (() => any) | undefined;
302
+ readonly mounted?: (() => any) | undefined;
303
+ readonly beforeUpdate?: (() => any) | undefined;
304
+ readonly updated?: (() => any) | undefined;
305
+ readonly activated?: (() => any) | undefined;
306
+ readonly deactivated?: (() => any) | undefined;
307
+ readonly beforeDestroy?: (() => any) | undefined;
308
+ readonly beforeUnmount?: (() => any) | undefined;
309
+ readonly destroyed?: (() => any) | undefined;
310
+ readonly unmounted?: (() => any) | undefined;
311
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
312
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
313
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
314
+ readonly delimiters?: readonly [string, string] | undefined;
315
+ readonly __differentiator?: string | number | symbol | undefined;
316
+ readonly __isBuiltIn?: boolean | undefined;
317
+ readonly __file?: string | undefined;
318
+ readonly __name?: string | undefined;
319
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
320
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
321
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
322
+ };
323
+ } | undefined;
324
+ readonly directives?: {
325
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
326
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
327
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
328
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
329
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
330
+ [key: string]: any;
331
+ }>, any, string, any> | undefined;
332
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
333
+ [key: string]: any;
334
+ }>, any, string, any> | undefined;
335
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
336
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
337
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
338
+ [x: string]: unknown;
339
+ } | undefined) | undefined;
340
+ readonly deep?: boolean | undefined;
341
+ };
342
+ } | undefined;
343
+ readonly inheritAttrs?: boolean | undefined;
344
+ readonly emits?: any;
345
+ readonly slots?: {} | undefined;
346
+ readonly expose?: readonly string[] | undefined;
347
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
348
+ readonly compilerOptions?: {
349
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
350
+ readonly whitespace?: "preserve" | "condense" | undefined;
351
+ readonly comments?: boolean | undefined;
352
+ readonly delimiters?: readonly [string, string] | undefined;
353
+ } | undefined;
354
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
355
+ readonly __isFragment?: never | undefined;
356
+ readonly __isTeleport?: never | undefined;
357
+ readonly __isSuspense?: never | undefined;
358
+ readonly __defaults?: {} | undefined;
359
+ readonly compatConfig?: {
360
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
361
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
362
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
363
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
364
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
365
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
366
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
367
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
368
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
369
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
370
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
371
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
372
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
373
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
374
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
375
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
376
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
377
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
378
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
379
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
380
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
381
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
382
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
383
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
384
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
385
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
386
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
387
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
388
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
389
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
390
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
391
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
392
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
393
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
394
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
395
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
396
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
397
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
398
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
399
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
400
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
401
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
402
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
403
+ } | undefined;
404
+ readonly data?: ((this: any, vm: any) => any) | undefined;
405
+ readonly computed?: {
406
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
407
+ readonly get: import('vue').ComputedGetter<any>;
408
+ readonly set: import('vue').ComputedSetter<any>;
409
+ };
410
+ } | undefined;
411
+ readonly methods?: {
412
+ readonly [x: string]: Function;
413
+ } | undefined;
414
+ readonly watch?: {
415
+ readonly [x: string]: string | import('vue').WatchCallback | {
416
+ readonly handler: import('vue').WatchCallback | string;
417
+ readonly immediate?: boolean | undefined;
418
+ readonly deep?: boolean | number | undefined;
419
+ readonly once?: boolean | undefined;
420
+ readonly flush?: "pre" | "post" | "sync" | undefined;
421
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
422
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
423
+ } | readonly (string | import('vue').WatchCallback | {
424
+ readonly handler: import('vue').WatchCallback | string;
425
+ readonly immediate?: boolean | undefined;
426
+ readonly deep?: boolean | number | undefined;
427
+ readonly once?: boolean | undefined;
428
+ readonly flush?: "pre" | "post" | "sync" | undefined;
429
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
430
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
431
+ })[];
432
+ } | undefined;
433
+ readonly provide?: Function | {
434
+ readonly [x: string]: Readonly<unknown>;
435
+ readonly [x: symbol]: Readonly<unknown>;
436
+ } | undefined;
437
+ readonly inject?: readonly string[] | {} | undefined;
438
+ readonly filters?: {
439
+ readonly [x: string]: Function;
440
+ } | undefined;
441
+ readonly mixins?: readonly any[] | undefined;
442
+ readonly extends?: any;
443
+ readonly beforeCreate?: (() => any) | undefined;
444
+ readonly created?: (() => any) | undefined;
445
+ readonly beforeMount?: (() => any) | undefined;
446
+ readonly mounted?: (() => any) | undefined;
447
+ readonly beforeUpdate?: (() => any) | undefined;
448
+ readonly updated?: (() => any) | undefined;
449
+ readonly activated?: (() => any) | undefined;
450
+ readonly deactivated?: (() => any) | undefined;
451
+ readonly beforeDestroy?: (() => any) | undefined;
452
+ readonly beforeUnmount?: (() => any) | undefined;
453
+ readonly destroyed?: (() => any) | undefined;
454
+ readonly unmounted?: (() => any) | undefined;
455
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
456
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
457
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
458
+ readonly delimiters?: readonly [string, string] | undefined;
459
+ readonly __differentiator?: string | number | symbol | undefined;
460
+ readonly __isBuiltIn?: boolean | undefined;
461
+ readonly __file?: string | undefined;
462
+ readonly __name?: string | undefined;
463
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
464
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
465
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
466
+ } | undefined;
467
+ readonly componentProps?: {
468
+ readonly [x: string]: Readonly<unknown>;
469
+ } | undefined;
470
+ };
471
+ readonly createdAt: number;
472
+ readonly paused: boolean;
473
+ readonly remainingTime: number;
474
+ readonly progress: number;
475
+ readonly dismiss: () => void;
476
+ readonly pause: () => void;
477
+ readonly resume: () => void;
478
+ readonly update: (options: Partial<ToastOptions>) => void;
479
+ }[], readonly {
480
+ readonly id: string;
481
+ readonly type: ToastType;
482
+ readonly options: {
483
+ readonly title?: string
484
+ /** Toast description/message */
485
+ | undefined;
486
+ readonly description?: string
487
+ /** Duration in ms before auto-dismiss (0 = no auto-dismiss) */
488
+ | undefined;
489
+ readonly duration?: number
490
+ /** Position on screen */
491
+ | undefined;
492
+ readonly position?: ToastPosition
493
+ /** Show progress bar */
494
+ | undefined;
495
+ readonly showProgress?: boolean
496
+ /** Show close button */
497
+ | undefined;
498
+ readonly closable?: boolean
499
+ /** Custom icon (mdi icon name, or false to hide) */
500
+ | undefined;
501
+ readonly icon?: string | boolean
502
+ /** Custom color for 'custom' type */
503
+ | undefined;
504
+ readonly color?: string
505
+ /** Callback when toast is clicked */
506
+ | undefined;
507
+ readonly onClick?: (() => void) | undefined;
508
+ readonly onClose?: (() => void) | undefined;
509
+ readonly component?: import('vue').FunctionalComponent<any, {}, any, {}> | {
510
+ new (...args: any[]): any;
511
+ __isFragment?: never;
512
+ __isTeleport?: never;
513
+ __isSuspense?: never;
514
+ } | {
515
+ readonly [x: string]: any;
516
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
517
+ attrs: {
518
+ [x: string]: unknown;
519
+ };
520
+ slots: Readonly<{
521
+ [name: string]: import('vue').Slot<any> | undefined;
522
+ }>;
523
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
524
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
525
+ }) => any) | undefined;
526
+ readonly name?: string | undefined;
527
+ readonly template?: string | object | undefined;
528
+ readonly render?: Function | undefined;
529
+ readonly components?: {
530
+ readonly [x: string]: import('vue').FunctionalComponent<any, {}, any, {}> | {
531
+ new (...args: any[]): any;
532
+ __isFragment?: never;
533
+ __isTeleport?: never;
534
+ __isSuspense?: never;
535
+ } | {
536
+ readonly [x: string]: any;
537
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
538
+ attrs: {
539
+ [x: string]: unknown;
540
+ };
541
+ slots: Readonly<{
542
+ [name: string]: import('vue').Slot<any> | undefined;
543
+ }>;
544
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
545
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
546
+ }) => any) | undefined;
547
+ readonly name?: string | undefined;
548
+ readonly template?: string | object | undefined;
549
+ readonly render?: Function | undefined;
550
+ readonly components?: /*elided*/ any | undefined;
551
+ readonly directives?: {
552
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
553
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
554
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
555
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
556
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
557
+ [key: string]: any;
558
+ }>, any, string, any> | undefined;
559
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
560
+ [key: string]: any;
561
+ }>, any, string, any> | undefined;
562
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
563
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
564
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
565
+ [x: string]: unknown;
566
+ } | undefined) | undefined;
567
+ readonly deep?: boolean | undefined;
568
+ };
569
+ } | undefined;
570
+ readonly inheritAttrs?: boolean | undefined;
571
+ readonly emits?: any;
572
+ readonly slots?: {} | undefined;
573
+ readonly expose?: readonly string[] | undefined;
574
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
575
+ readonly compilerOptions?: {
576
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
577
+ readonly whitespace?: "preserve" | "condense" | undefined;
578
+ readonly comments?: boolean | undefined;
579
+ readonly delimiters?: readonly [string, string] | undefined;
580
+ } | undefined;
581
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
582
+ readonly __isFragment?: never | undefined;
583
+ readonly __isTeleport?: never | undefined;
584
+ readonly __isSuspense?: never | undefined;
585
+ readonly __defaults?: {} | undefined;
586
+ readonly compatConfig?: {
587
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
588
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
589
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
590
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
591
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
592
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
593
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
594
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
595
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
596
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
597
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
598
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
599
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
600
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
601
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
602
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
603
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
604
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
605
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
606
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
607
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
608
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
609
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
610
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
611
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
612
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
613
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
614
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
615
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
616
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
617
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
618
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
619
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
620
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
621
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
622
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
623
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
624
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
625
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
626
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
627
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
628
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
629
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
630
+ } | undefined;
631
+ readonly data?: ((this: any, vm: any) => any) | undefined;
632
+ readonly computed?: {
633
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
634
+ readonly get: import('vue').ComputedGetter<any>;
635
+ readonly set: import('vue').ComputedSetter<any>;
636
+ };
637
+ } | undefined;
638
+ readonly methods?: {
639
+ readonly [x: string]: Function;
640
+ } | undefined;
641
+ readonly watch?: {
642
+ readonly [x: string]: string | import('vue').WatchCallback | {
643
+ readonly handler: import('vue').WatchCallback | string;
644
+ readonly immediate?: boolean | undefined;
645
+ readonly deep?: boolean | number | undefined;
646
+ readonly once?: boolean | undefined;
647
+ readonly flush?: "pre" | "post" | "sync" | undefined;
648
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
649
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
650
+ } | readonly (string | import('vue').WatchCallback | {
651
+ readonly handler: import('vue').WatchCallback | string;
652
+ readonly immediate?: boolean | undefined;
653
+ readonly deep?: boolean | number | undefined;
654
+ readonly once?: boolean | undefined;
655
+ readonly flush?: "pre" | "post" | "sync" | undefined;
656
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
657
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
658
+ })[];
659
+ } | undefined;
660
+ readonly provide?: Function | {
661
+ readonly [x: string]: Readonly<unknown>;
662
+ readonly [x: symbol]: Readonly<unknown>;
663
+ } | undefined;
664
+ readonly inject?: readonly string[] | {} | undefined;
665
+ readonly filters?: {
666
+ readonly [x: string]: Function;
667
+ } | undefined;
668
+ readonly mixins?: readonly any[] | undefined;
669
+ readonly extends?: any;
670
+ readonly beforeCreate?: (() => any) | undefined;
671
+ readonly created?: (() => any) | undefined;
672
+ readonly beforeMount?: (() => any) | undefined;
673
+ readonly mounted?: (() => any) | undefined;
674
+ readonly beforeUpdate?: (() => any) | undefined;
675
+ readonly updated?: (() => any) | undefined;
676
+ readonly activated?: (() => any) | undefined;
677
+ readonly deactivated?: (() => any) | undefined;
678
+ readonly beforeDestroy?: (() => any) | undefined;
679
+ readonly beforeUnmount?: (() => any) | undefined;
680
+ readonly destroyed?: (() => any) | undefined;
681
+ readonly unmounted?: (() => any) | undefined;
682
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
683
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
684
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
685
+ readonly delimiters?: readonly [string, string] | undefined;
686
+ readonly __differentiator?: string | number | symbol | undefined;
687
+ readonly __isBuiltIn?: boolean | undefined;
688
+ readonly __file?: string | undefined;
689
+ readonly __name?: string | undefined;
690
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
691
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
692
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
693
+ };
694
+ } | undefined;
695
+ readonly directives?: {
696
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
697
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
698
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
699
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
700
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
701
+ [key: string]: any;
702
+ }>, any, string, any> | undefined;
703
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
704
+ [key: string]: any;
705
+ }>, any, string, any> | undefined;
706
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
707
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
708
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
709
+ [x: string]: unknown;
710
+ } | undefined) | undefined;
711
+ readonly deep?: boolean | undefined;
712
+ };
713
+ } | undefined;
714
+ readonly inheritAttrs?: boolean | undefined;
715
+ readonly emits?: any;
716
+ readonly slots?: {} | undefined;
717
+ readonly expose?: readonly string[] | undefined;
718
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
719
+ readonly compilerOptions?: {
720
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
721
+ readonly whitespace?: "preserve" | "condense" | undefined;
722
+ readonly comments?: boolean | undefined;
723
+ readonly delimiters?: readonly [string, string] | undefined;
724
+ } | undefined;
725
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
726
+ readonly __isFragment?: never | undefined;
727
+ readonly __isTeleport?: never | undefined;
728
+ readonly __isSuspense?: never | undefined;
729
+ readonly __defaults?: {} | undefined;
730
+ readonly compatConfig?: {
731
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
732
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
733
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
734
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
735
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
736
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
737
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
738
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
739
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
740
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
741
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
742
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
743
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
744
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
745
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
746
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
747
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
748
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
749
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
750
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
751
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
752
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
753
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
754
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
755
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
756
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
757
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
758
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
759
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
760
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
761
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
762
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
763
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
764
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
765
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
766
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
767
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
768
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
769
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
770
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
771
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
772
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
773
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
774
+ } | undefined;
775
+ readonly data?: ((this: any, vm: any) => any) | undefined;
776
+ readonly computed?: {
777
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
778
+ readonly get: import('vue').ComputedGetter<any>;
779
+ readonly set: import('vue').ComputedSetter<any>;
780
+ };
781
+ } | undefined;
782
+ readonly methods?: {
783
+ readonly [x: string]: Function;
784
+ } | undefined;
785
+ readonly watch?: {
786
+ readonly [x: string]: string | import('vue').WatchCallback | {
787
+ readonly handler: import('vue').WatchCallback | string;
788
+ readonly immediate?: boolean | undefined;
789
+ readonly deep?: boolean | number | undefined;
790
+ readonly once?: boolean | undefined;
791
+ readonly flush?: "pre" | "post" | "sync" | undefined;
792
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
793
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
794
+ } | readonly (string | import('vue').WatchCallback | {
795
+ readonly handler: import('vue').WatchCallback | string;
796
+ readonly immediate?: boolean | undefined;
797
+ readonly deep?: boolean | number | undefined;
798
+ readonly once?: boolean | undefined;
799
+ readonly flush?: "pre" | "post" | "sync" | undefined;
800
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
801
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
802
+ })[];
803
+ } | undefined;
804
+ readonly provide?: Function | {
805
+ readonly [x: string]: Readonly<unknown>;
806
+ readonly [x: symbol]: Readonly<unknown>;
807
+ } | undefined;
808
+ readonly inject?: readonly string[] | {} | undefined;
809
+ readonly filters?: {
810
+ readonly [x: string]: Function;
811
+ } | undefined;
812
+ readonly mixins?: readonly any[] | undefined;
813
+ readonly extends?: any;
814
+ readonly beforeCreate?: (() => any) | undefined;
815
+ readonly created?: (() => any) | undefined;
816
+ readonly beforeMount?: (() => any) | undefined;
817
+ readonly mounted?: (() => any) | undefined;
818
+ readonly beforeUpdate?: (() => any) | undefined;
819
+ readonly updated?: (() => any) | undefined;
820
+ readonly activated?: (() => any) | undefined;
821
+ readonly deactivated?: (() => any) | undefined;
822
+ readonly beforeDestroy?: (() => any) | undefined;
823
+ readonly beforeUnmount?: (() => any) | undefined;
824
+ readonly destroyed?: (() => any) | undefined;
825
+ readonly unmounted?: (() => any) | undefined;
826
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
827
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
828
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
829
+ readonly delimiters?: readonly [string, string] | undefined;
830
+ readonly __differentiator?: string | number | symbol | undefined;
831
+ readonly __isBuiltIn?: boolean | undefined;
832
+ readonly __file?: string | undefined;
833
+ readonly __name?: string | undefined;
834
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
835
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
836
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
837
+ } | undefined;
838
+ readonly componentProps?: {
839
+ readonly [x: string]: Readonly<unknown>;
840
+ } | undefined;
841
+ };
842
+ readonly createdAt: number;
843
+ readonly paused: boolean;
844
+ readonly remainingTime: number;
845
+ readonly progress: number;
846
+ readonly dismiss: () => void;
847
+ readonly pause: () => void;
848
+ readonly resume: () => void;
849
+ readonly update: (options: Partial<ToastOptions>) => void;
850
+ }[]>>;
851
+ config: {
852
+ readonly position: ToastPosition;
853
+ readonly duration: number;
854
+ readonly maxToasts: number;
855
+ readonly gap: number;
856
+ readonly showProgress: boolean;
857
+ readonly closable: boolean;
858
+ };
859
+ };
860
+ /** Get all active toasts (for use in SToastContainer) */
861
+ export declare function getToasts(): Readonly<import('vue').Ref<readonly {
862
+ readonly id: string;
863
+ readonly type: ToastType;
864
+ readonly options: {
865
+ readonly title?: string
866
+ /** Toast description/message */
867
+ | undefined;
868
+ readonly description?: string
869
+ /** Duration in ms before auto-dismiss (0 = no auto-dismiss) */
870
+ | undefined;
871
+ readonly duration?: number
872
+ /** Position on screen */
873
+ | undefined;
874
+ readonly position?: ToastPosition
875
+ /** Show progress bar */
876
+ | undefined;
877
+ readonly showProgress?: boolean
878
+ /** Show close button */
879
+ | undefined;
880
+ readonly closable?: boolean
881
+ /** Custom icon (mdi icon name, or false to hide) */
882
+ | undefined;
883
+ readonly icon?: string | boolean
884
+ /** Custom color for 'custom' type */
885
+ | undefined;
886
+ readonly color?: string
887
+ /** Callback when toast is clicked */
888
+ | undefined;
889
+ readonly onClick?: (() => void) | undefined;
890
+ readonly onClose?: (() => void) | undefined;
891
+ readonly component?: import('vue').FunctionalComponent<any, {}, any, {}> | {
892
+ new (...args: any[]): any;
893
+ __isFragment?: never;
894
+ __isTeleport?: never;
895
+ __isSuspense?: never;
896
+ } | {
897
+ readonly [x: string]: any;
898
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
899
+ attrs: {
900
+ [x: string]: unknown;
901
+ };
902
+ slots: Readonly<{
903
+ [name: string]: import('vue').Slot<any> | undefined;
904
+ }>;
905
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
906
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
907
+ }) => any) | undefined;
908
+ readonly name?: string | undefined;
909
+ readonly template?: string | object | undefined;
910
+ readonly render?: Function | undefined;
911
+ readonly components?: {
912
+ readonly [x: string]: import('vue').FunctionalComponent<any, {}, any, {}> | {
913
+ new (...args: any[]): any;
914
+ __isFragment?: never;
915
+ __isTeleport?: never;
916
+ __isSuspense?: never;
917
+ } | {
918
+ readonly [x: string]: any;
919
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
920
+ attrs: {
921
+ [x: string]: unknown;
922
+ };
923
+ slots: Readonly<{
924
+ [name: string]: import('vue').Slot<any> | undefined;
925
+ }>;
926
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
927
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
928
+ }) => any) | undefined;
929
+ readonly name?: string | undefined;
930
+ readonly template?: string | object | undefined;
931
+ readonly render?: Function | undefined;
932
+ readonly components?: /*elided*/ any | undefined;
933
+ readonly directives?: {
934
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
935
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
936
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
937
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
938
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
939
+ [key: string]: any;
940
+ }>, any, string, any> | undefined;
941
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
942
+ [key: string]: any;
943
+ }>, any, string, any> | undefined;
944
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
945
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
946
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
947
+ [x: string]: unknown;
948
+ } | undefined) | undefined;
949
+ readonly deep?: boolean | undefined;
950
+ };
951
+ } | undefined;
952
+ readonly inheritAttrs?: boolean | undefined;
953
+ readonly emits?: any;
954
+ readonly slots?: {} | undefined;
955
+ readonly expose?: readonly string[] | undefined;
956
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
957
+ readonly compilerOptions?: {
958
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
959
+ readonly whitespace?: "preserve" | "condense" | undefined;
960
+ readonly comments?: boolean | undefined;
961
+ readonly delimiters?: readonly [string, string] | undefined;
962
+ } | undefined;
963
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
964
+ readonly __isFragment?: never | undefined;
965
+ readonly __isTeleport?: never | undefined;
966
+ readonly __isSuspense?: never | undefined;
967
+ readonly __defaults?: {} | undefined;
968
+ readonly compatConfig?: {
969
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
970
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
971
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
972
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
973
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
974
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
975
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
976
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
977
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
978
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
979
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
980
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
981
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
982
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
983
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
984
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
985
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
986
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
987
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
988
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
989
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
990
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
991
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
992
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
993
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
994
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
995
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
996
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
997
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
998
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
999
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1000
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1001
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1002
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1003
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1004
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1005
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1006
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1007
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1008
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1009
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
1010
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1011
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
1012
+ } | undefined;
1013
+ readonly data?: ((this: any, vm: any) => any) | undefined;
1014
+ readonly computed?: {
1015
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
1016
+ readonly get: import('vue').ComputedGetter<any>;
1017
+ readonly set: import('vue').ComputedSetter<any>;
1018
+ };
1019
+ } | undefined;
1020
+ readonly methods?: {
1021
+ readonly [x: string]: Function;
1022
+ } | undefined;
1023
+ readonly watch?: {
1024
+ readonly [x: string]: string | import('vue').WatchCallback | {
1025
+ readonly handler: import('vue').WatchCallback | string;
1026
+ readonly immediate?: boolean | undefined;
1027
+ readonly deep?: boolean | number | undefined;
1028
+ readonly once?: boolean | undefined;
1029
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1030
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1031
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1032
+ } | readonly (string | import('vue').WatchCallback | {
1033
+ readonly handler: import('vue').WatchCallback | string;
1034
+ readonly immediate?: boolean | undefined;
1035
+ readonly deep?: boolean | number | undefined;
1036
+ readonly once?: boolean | undefined;
1037
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1038
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1039
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1040
+ })[];
1041
+ } | undefined;
1042
+ readonly provide?: Function | {
1043
+ readonly [x: string]: Readonly<unknown>;
1044
+ readonly [x: symbol]: Readonly<unknown>;
1045
+ } | undefined;
1046
+ readonly inject?: readonly string[] | {} | undefined;
1047
+ readonly filters?: {
1048
+ readonly [x: string]: Function;
1049
+ } | undefined;
1050
+ readonly mixins?: readonly any[] | undefined;
1051
+ readonly extends?: any;
1052
+ readonly beforeCreate?: (() => any) | undefined;
1053
+ readonly created?: (() => any) | undefined;
1054
+ readonly beforeMount?: (() => any) | undefined;
1055
+ readonly mounted?: (() => any) | undefined;
1056
+ readonly beforeUpdate?: (() => any) | undefined;
1057
+ readonly updated?: (() => any) | undefined;
1058
+ readonly activated?: (() => any) | undefined;
1059
+ readonly deactivated?: (() => any) | undefined;
1060
+ readonly beforeDestroy?: (() => any) | undefined;
1061
+ readonly beforeUnmount?: (() => any) | undefined;
1062
+ readonly destroyed?: (() => any) | undefined;
1063
+ readonly unmounted?: (() => any) | undefined;
1064
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1065
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1066
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
1067
+ readonly delimiters?: readonly [string, string] | undefined;
1068
+ readonly __differentiator?: string | number | symbol | undefined;
1069
+ readonly __isBuiltIn?: boolean | undefined;
1070
+ readonly __file?: string | undefined;
1071
+ readonly __name?: string | undefined;
1072
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
1073
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1074
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1075
+ };
1076
+ } | undefined;
1077
+ readonly directives?: {
1078
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
1079
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1080
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1081
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1082
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
1083
+ [key: string]: any;
1084
+ }>, any, string, any> | undefined;
1085
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
1086
+ [key: string]: any;
1087
+ }>, any, string, any> | undefined;
1088
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1089
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1090
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
1091
+ [x: string]: unknown;
1092
+ } | undefined) | undefined;
1093
+ readonly deep?: boolean | undefined;
1094
+ };
1095
+ } | undefined;
1096
+ readonly inheritAttrs?: boolean | undefined;
1097
+ readonly emits?: any;
1098
+ readonly slots?: {} | undefined;
1099
+ readonly expose?: readonly string[] | undefined;
1100
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
1101
+ readonly compilerOptions?: {
1102
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
1103
+ readonly whitespace?: "preserve" | "condense" | undefined;
1104
+ readonly comments?: boolean | undefined;
1105
+ readonly delimiters?: readonly [string, string] | undefined;
1106
+ } | undefined;
1107
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1108
+ readonly __isFragment?: never | undefined;
1109
+ readonly __isTeleport?: never | undefined;
1110
+ readonly __isSuspense?: never | undefined;
1111
+ readonly __defaults?: {} | undefined;
1112
+ readonly compatConfig?: {
1113
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1114
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1115
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1116
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1117
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1118
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1119
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1120
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1121
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1122
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1123
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1124
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1125
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1126
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1127
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1128
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1129
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1130
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1131
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1132
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1133
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1134
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1135
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1136
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1137
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1138
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1139
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1140
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1141
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1142
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1143
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1144
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1145
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1146
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1147
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1148
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1149
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1150
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1151
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1152
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1153
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
1154
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1155
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
1156
+ } | undefined;
1157
+ readonly data?: ((this: any, vm: any) => any) | undefined;
1158
+ readonly computed?: {
1159
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
1160
+ readonly get: import('vue').ComputedGetter<any>;
1161
+ readonly set: import('vue').ComputedSetter<any>;
1162
+ };
1163
+ } | undefined;
1164
+ readonly methods?: {
1165
+ readonly [x: string]: Function;
1166
+ } | undefined;
1167
+ readonly watch?: {
1168
+ readonly [x: string]: string | import('vue').WatchCallback | {
1169
+ readonly handler: import('vue').WatchCallback | string;
1170
+ readonly immediate?: boolean | undefined;
1171
+ readonly deep?: boolean | number | undefined;
1172
+ readonly once?: boolean | undefined;
1173
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1174
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1175
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1176
+ } | readonly (string | import('vue').WatchCallback | {
1177
+ readonly handler: import('vue').WatchCallback | string;
1178
+ readonly immediate?: boolean | undefined;
1179
+ readonly deep?: boolean | number | undefined;
1180
+ readonly once?: boolean | undefined;
1181
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1182
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1183
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1184
+ })[];
1185
+ } | undefined;
1186
+ readonly provide?: Function | {
1187
+ readonly [x: string]: Readonly<unknown>;
1188
+ readonly [x: symbol]: Readonly<unknown>;
1189
+ } | undefined;
1190
+ readonly inject?: readonly string[] | {} | undefined;
1191
+ readonly filters?: {
1192
+ readonly [x: string]: Function;
1193
+ } | undefined;
1194
+ readonly mixins?: readonly any[] | undefined;
1195
+ readonly extends?: any;
1196
+ readonly beforeCreate?: (() => any) | undefined;
1197
+ readonly created?: (() => any) | undefined;
1198
+ readonly beforeMount?: (() => any) | undefined;
1199
+ readonly mounted?: (() => any) | undefined;
1200
+ readonly beforeUpdate?: (() => any) | undefined;
1201
+ readonly updated?: (() => any) | undefined;
1202
+ readonly activated?: (() => any) | undefined;
1203
+ readonly deactivated?: (() => any) | undefined;
1204
+ readonly beforeDestroy?: (() => any) | undefined;
1205
+ readonly beforeUnmount?: (() => any) | undefined;
1206
+ readonly destroyed?: (() => any) | undefined;
1207
+ readonly unmounted?: (() => any) | undefined;
1208
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1209
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1210
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
1211
+ readonly delimiters?: readonly [string, string] | undefined;
1212
+ readonly __differentiator?: string | number | symbol | undefined;
1213
+ readonly __isBuiltIn?: boolean | undefined;
1214
+ readonly __file?: string | undefined;
1215
+ readonly __name?: string | undefined;
1216
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
1217
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1218
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1219
+ } | undefined;
1220
+ readonly componentProps?: {
1221
+ readonly [x: string]: Readonly<unknown>;
1222
+ } | undefined;
1223
+ };
1224
+ readonly createdAt: number;
1225
+ readonly paused: boolean;
1226
+ readonly remainingTime: number;
1227
+ readonly progress: number;
1228
+ readonly dismiss: () => void;
1229
+ readonly pause: () => void;
1230
+ readonly resume: () => void;
1231
+ readonly update: (options: Partial<ToastOptions>) => void;
1232
+ }[], readonly {
1233
+ readonly id: string;
1234
+ readonly type: ToastType;
1235
+ readonly options: {
1236
+ readonly title?: string
1237
+ /** Toast description/message */
1238
+ | undefined;
1239
+ readonly description?: string
1240
+ /** Duration in ms before auto-dismiss (0 = no auto-dismiss) */
1241
+ | undefined;
1242
+ readonly duration?: number
1243
+ /** Position on screen */
1244
+ | undefined;
1245
+ readonly position?: ToastPosition
1246
+ /** Show progress bar */
1247
+ | undefined;
1248
+ readonly showProgress?: boolean
1249
+ /** Show close button */
1250
+ | undefined;
1251
+ readonly closable?: boolean
1252
+ /** Custom icon (mdi icon name, or false to hide) */
1253
+ | undefined;
1254
+ readonly icon?: string | boolean
1255
+ /** Custom color for 'custom' type */
1256
+ | undefined;
1257
+ readonly color?: string
1258
+ /** Callback when toast is clicked */
1259
+ | undefined;
1260
+ readonly onClick?: (() => void) | undefined;
1261
+ readonly onClose?: (() => void) | undefined;
1262
+ readonly component?: import('vue').FunctionalComponent<any, {}, any, {}> | {
1263
+ new (...args: any[]): any;
1264
+ __isFragment?: never;
1265
+ __isTeleport?: never;
1266
+ __isSuspense?: never;
1267
+ } | {
1268
+ readonly [x: string]: any;
1269
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
1270
+ attrs: {
1271
+ [x: string]: unknown;
1272
+ };
1273
+ slots: Readonly<{
1274
+ [name: string]: import('vue').Slot<any> | undefined;
1275
+ }>;
1276
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1277
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
1278
+ }) => any) | undefined;
1279
+ readonly name?: string | undefined;
1280
+ readonly template?: string | object | undefined;
1281
+ readonly render?: Function | undefined;
1282
+ readonly components?: {
1283
+ readonly [x: string]: import('vue').FunctionalComponent<any, {}, any, {}> | {
1284
+ new (...args: any[]): any;
1285
+ __isFragment?: never;
1286
+ __isTeleport?: never;
1287
+ __isSuspense?: never;
1288
+ } | {
1289
+ readonly [x: string]: any;
1290
+ readonly setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
1291
+ attrs: {
1292
+ [x: string]: unknown;
1293
+ };
1294
+ slots: Readonly<{
1295
+ [name: string]: import('vue').Slot<any> | undefined;
1296
+ }>;
1297
+ emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
1298
+ expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
1299
+ }) => any) | undefined;
1300
+ readonly name?: string | undefined;
1301
+ readonly template?: string | object | undefined;
1302
+ readonly render?: Function | undefined;
1303
+ readonly components?: /*elided*/ any | undefined;
1304
+ readonly directives?: {
1305
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
1306
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1307
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1308
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1309
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
1310
+ [key: string]: any;
1311
+ }>, any, string, any> | undefined;
1312
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
1313
+ [key: string]: any;
1314
+ }>, any, string, any> | undefined;
1315
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1316
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1317
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
1318
+ [x: string]: unknown;
1319
+ } | undefined) | undefined;
1320
+ readonly deep?: boolean | undefined;
1321
+ };
1322
+ } | undefined;
1323
+ readonly inheritAttrs?: boolean | undefined;
1324
+ readonly emits?: any;
1325
+ readonly slots?: {} | undefined;
1326
+ readonly expose?: readonly string[] | undefined;
1327
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
1328
+ readonly compilerOptions?: {
1329
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
1330
+ readonly whitespace?: "preserve" | "condense" | undefined;
1331
+ readonly comments?: boolean | undefined;
1332
+ readonly delimiters?: readonly [string, string] | undefined;
1333
+ } | undefined;
1334
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1335
+ readonly __isFragment?: never | undefined;
1336
+ readonly __isTeleport?: never | undefined;
1337
+ readonly __isSuspense?: never | undefined;
1338
+ readonly __defaults?: {} | undefined;
1339
+ readonly compatConfig?: {
1340
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1341
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1342
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1343
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1344
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1345
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1346
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1347
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1348
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1349
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1350
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1351
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1352
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1353
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1354
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1355
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1356
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1357
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1358
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1359
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1360
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1361
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1362
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1363
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1364
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1365
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1366
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1367
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1368
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1369
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1370
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1371
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1372
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1373
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1374
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1375
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1376
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1377
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1378
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1379
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1380
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
1381
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1382
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
1383
+ } | undefined;
1384
+ readonly data?: ((this: any, vm: any) => any) | undefined;
1385
+ readonly computed?: {
1386
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
1387
+ readonly get: import('vue').ComputedGetter<any>;
1388
+ readonly set: import('vue').ComputedSetter<any>;
1389
+ };
1390
+ } | undefined;
1391
+ readonly methods?: {
1392
+ readonly [x: string]: Function;
1393
+ } | undefined;
1394
+ readonly watch?: {
1395
+ readonly [x: string]: string | import('vue').WatchCallback | {
1396
+ readonly handler: import('vue').WatchCallback | string;
1397
+ readonly immediate?: boolean | undefined;
1398
+ readonly deep?: boolean | number | undefined;
1399
+ readonly once?: boolean | undefined;
1400
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1401
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1402
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1403
+ } | readonly (string | import('vue').WatchCallback | {
1404
+ readonly handler: import('vue').WatchCallback | string;
1405
+ readonly immediate?: boolean | undefined;
1406
+ readonly deep?: boolean | number | undefined;
1407
+ readonly once?: boolean | undefined;
1408
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1409
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1410
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1411
+ })[];
1412
+ } | undefined;
1413
+ readonly provide?: Function | {
1414
+ readonly [x: string]: Readonly<unknown>;
1415
+ readonly [x: symbol]: Readonly<unknown>;
1416
+ } | undefined;
1417
+ readonly inject?: readonly string[] | {} | undefined;
1418
+ readonly filters?: {
1419
+ readonly [x: string]: Function;
1420
+ } | undefined;
1421
+ readonly mixins?: readonly any[] | undefined;
1422
+ readonly extends?: any;
1423
+ readonly beforeCreate?: (() => any) | undefined;
1424
+ readonly created?: (() => any) | undefined;
1425
+ readonly beforeMount?: (() => any) | undefined;
1426
+ readonly mounted?: (() => any) | undefined;
1427
+ readonly beforeUpdate?: (() => any) | undefined;
1428
+ readonly updated?: (() => any) | undefined;
1429
+ readonly activated?: (() => any) | undefined;
1430
+ readonly deactivated?: (() => any) | undefined;
1431
+ readonly beforeDestroy?: (() => any) | undefined;
1432
+ readonly beforeUnmount?: (() => any) | undefined;
1433
+ readonly destroyed?: (() => any) | undefined;
1434
+ readonly unmounted?: (() => any) | undefined;
1435
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1436
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1437
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
1438
+ readonly delimiters?: readonly [string, string] | undefined;
1439
+ readonly __differentiator?: string | number | symbol | undefined;
1440
+ readonly __isBuiltIn?: boolean | undefined;
1441
+ readonly __file?: string | undefined;
1442
+ readonly __name?: string | undefined;
1443
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
1444
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1445
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1446
+ };
1447
+ } | undefined;
1448
+ readonly directives?: {
1449
+ readonly [x: string]: import('vue').FunctionDirective<any, any, string, any> | {
1450
+ readonly created?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1451
+ readonly beforeMount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1452
+ readonly mounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1453
+ readonly beforeUpdate?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
1454
+ [key: string]: any;
1455
+ }>, any, string, any> | undefined;
1456
+ readonly updated?: import('vue').DirectiveHook<any, import('vue').VNode<any, any, {
1457
+ [key: string]: any;
1458
+ }>, any, string, any> | undefined;
1459
+ readonly beforeUnmount?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1460
+ readonly unmounted?: import('vue').DirectiveHook<any, null, any, string, any> | undefined;
1461
+ readonly getSSRProps?: ((binding: import('vue').DirectiveBinding<any, string, any>, vnode: import('vue').VNode) => {
1462
+ [x: string]: unknown;
1463
+ } | undefined) | undefined;
1464
+ readonly deep?: boolean | undefined;
1465
+ };
1466
+ } | undefined;
1467
+ readonly inheritAttrs?: boolean | undefined;
1468
+ readonly emits?: any;
1469
+ readonly slots?: {} | undefined;
1470
+ readonly expose?: readonly string[] | undefined;
1471
+ readonly serverPrefetch?: (() => void | Promise<any>) | undefined;
1472
+ readonly compilerOptions?: {
1473
+ readonly isCustomElement?: ((tag: string) => boolean) | undefined;
1474
+ readonly whitespace?: "preserve" | "condense" | undefined;
1475
+ readonly comments?: boolean | undefined;
1476
+ readonly delimiters?: readonly [string, string] | undefined;
1477
+ } | undefined;
1478
+ readonly call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
1479
+ readonly __isFragment?: never | undefined;
1480
+ readonly __isTeleport?: never | undefined;
1481
+ readonly __isSuspense?: never | undefined;
1482
+ readonly __defaults?: {} | undefined;
1483
+ readonly compatConfig?: {
1484
+ readonly GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
1485
+ readonly GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
1486
+ readonly GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
1487
+ readonly GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
1488
+ readonly GLOBAL_SET?: boolean | "suppress-warning" | undefined;
1489
+ readonly GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
1490
+ readonly GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
1491
+ readonly GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
1492
+ readonly CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
1493
+ readonly CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
1494
+ readonly CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
1495
+ readonly CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
1496
+ readonly CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
1497
+ readonly CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
1498
+ readonly CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
1499
+ readonly INSTANCE_SET?: boolean | "suppress-warning" | undefined;
1500
+ readonly INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
1501
+ readonly INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
1502
+ readonly INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
1503
+ readonly INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
1504
+ readonly INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
1505
+ readonly INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
1506
+ readonly INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
1507
+ readonly INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
1508
+ readonly OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
1509
+ readonly OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
1510
+ readonly OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
1511
+ readonly OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
1512
+ readonly WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
1513
+ readonly PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
1514
+ readonly V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
1515
+ readonly CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
1516
+ readonly ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
1517
+ readonly ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
1518
+ readonly TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
1519
+ readonly TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
1520
+ readonly COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
1521
+ readonly COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
1522
+ readonly COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
1523
+ readonly RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
1524
+ readonly FILTERS?: boolean | "suppress-warning" | undefined;
1525
+ readonly PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
1526
+ readonly MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
1527
+ } | undefined;
1528
+ readonly data?: ((this: any, vm: any) => any) | undefined;
1529
+ readonly computed?: {
1530
+ readonly [x: string]: import('vue').ComputedGetter<any> | {
1531
+ readonly get: import('vue').ComputedGetter<any>;
1532
+ readonly set: import('vue').ComputedSetter<any>;
1533
+ };
1534
+ } | undefined;
1535
+ readonly methods?: {
1536
+ readonly [x: string]: Function;
1537
+ } | undefined;
1538
+ readonly watch?: {
1539
+ readonly [x: string]: string | import('vue').WatchCallback | {
1540
+ readonly handler: import('vue').WatchCallback | string;
1541
+ readonly immediate?: boolean | undefined;
1542
+ readonly deep?: boolean | number | undefined;
1543
+ readonly once?: boolean | undefined;
1544
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1545
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1546
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1547
+ } | readonly (string | import('vue').WatchCallback | {
1548
+ readonly handler: import('vue').WatchCallback | string;
1549
+ readonly immediate?: boolean | undefined;
1550
+ readonly deep?: boolean | number | undefined;
1551
+ readonly once?: boolean | undefined;
1552
+ readonly flush?: "pre" | "post" | "sync" | undefined;
1553
+ readonly onTrack?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1554
+ readonly onTrigger?: ((event: import('vue').DebuggerEvent) => void) | undefined;
1555
+ })[];
1556
+ } | undefined;
1557
+ readonly provide?: Function | {
1558
+ readonly [x: string]: Readonly<unknown>;
1559
+ readonly [x: symbol]: Readonly<unknown>;
1560
+ } | undefined;
1561
+ readonly inject?: readonly string[] | {} | undefined;
1562
+ readonly filters?: {
1563
+ readonly [x: string]: Function;
1564
+ } | undefined;
1565
+ readonly mixins?: readonly any[] | undefined;
1566
+ readonly extends?: any;
1567
+ readonly beforeCreate?: (() => any) | undefined;
1568
+ readonly created?: (() => any) | undefined;
1569
+ readonly beforeMount?: (() => any) | undefined;
1570
+ readonly mounted?: (() => any) | undefined;
1571
+ readonly beforeUpdate?: (() => any) | undefined;
1572
+ readonly updated?: (() => any) | undefined;
1573
+ readonly activated?: (() => any) | undefined;
1574
+ readonly deactivated?: (() => any) | undefined;
1575
+ readonly beforeDestroy?: (() => any) | undefined;
1576
+ readonly beforeUnmount?: (() => any) | undefined;
1577
+ readonly destroyed?: (() => any) | undefined;
1578
+ readonly unmounted?: (() => any) | undefined;
1579
+ readonly renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1580
+ readonly renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
1581
+ readonly errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
1582
+ readonly delimiters?: readonly [string, string] | undefined;
1583
+ readonly __differentiator?: string | number | symbol | undefined;
1584
+ readonly __isBuiltIn?: boolean | undefined;
1585
+ readonly __file?: string | undefined;
1586
+ readonly __name?: string | undefined;
1587
+ readonly beforeRouteEnter?: (import('vue-router').TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import('vue-router').NavigationGuardWithThis<undefined>) | undefined;
1588
+ readonly beforeRouteUpdate?: (import('vue-router').TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1589
+ readonly beforeRouteLeave?: (import('vue-router').TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import('vue-router').NavigationGuard) | undefined;
1590
+ } | undefined;
1591
+ readonly componentProps?: {
1592
+ readonly [x: string]: Readonly<unknown>;
1593
+ } | undefined;
1594
+ };
1595
+ readonly createdAt: number;
1596
+ readonly paused: boolean;
1597
+ readonly remainingTime: number;
1598
+ readonly progress: number;
1599
+ readonly dismiss: () => void;
1600
+ readonly pause: () => void;
1601
+ readonly resume: () => void;
1602
+ readonly update: (options: Partial<ToastOptions>) => void;
1603
+ }[]>>;
1604
+ /** Get global toast config */
1605
+ export declare function getToastConfig(): {
1606
+ readonly position: ToastPosition;
1607
+ readonly duration: number;
1608
+ readonly maxToasts: number;
1609
+ readonly gap: number;
1610
+ readonly showProgress: boolean;
1611
+ readonly closable: boolean;
1612
+ };
1613
+ /** Dismiss a toast by ID (for use in SToast) */
1614
+ export declare function dismissToast(id: string): void;
1615
+ /** Pause a toast by ID */
1616
+ export declare function pauseToast(id: string): void;
1617
+ /** Resume a toast by ID */
1618
+ export declare function resumeToast(id: string): void;
1619
+ export default useToast;