@privyid/persona 1.2.1 → 1.2.2-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (659) hide show
  1. package/dist/components/accordion/Accordion.vue +111 -0
  2. package/dist/components/accordion/Accordion.vue.d.ts +80 -0
  3. package/dist/components/accordion/AccordionItem.vue +224 -0
  4. package/dist/components/accordion/AccordionItem.vue.d.ts +121 -0
  5. package/dist/components/accordion/AccordionItems.vue +50 -0
  6. package/dist/components/accordion/AccordionItems.vue.d.ts +41 -0
  7. package/dist/components/accordion/index.d.ts +7 -0
  8. package/dist/components/accordion/index.mjs +3 -0
  9. package/dist/components/aspect-ratio/index.d.ts +3 -0
  10. package/dist/components/aspect-ratio/index.mjs +21 -0
  11. package/dist/components/aspect-ratio/utils/calculate-ratio.d.ts +7 -0
  12. package/dist/components/aspect-ratio/utils/calculate-ratio.mjs +10 -0
  13. package/dist/components/aspect-ratio/utils/resize-observer.d.ts +1 -0
  14. package/dist/components/aspect-ratio/utils/resize-observer.mjs +22 -0
  15. package/dist/components/avatar/Avatar.vue +167 -0
  16. package/dist/components/avatar/Avatar.vue.d.ts +91 -0
  17. package/dist/components/avatar/AvatarGroup.vue +39 -0
  18. package/dist/components/avatar/AvatarGroup.vue.d.ts +40 -0
  19. package/dist/components/avatar/AvatarTruncate.vue +33 -0
  20. package/dist/components/avatar/AvatarTruncate.vue.d.ts +31 -0
  21. package/dist/components/avatar/assets/avatar-old.png +0 -0
  22. package/dist/components/avatar/assets/avatar.png +0 -0
  23. package/dist/components/avatar/index.d.ts +2 -0
  24. package/dist/components/avatar/index.mjs +0 -0
  25. package/dist/components/avatar/utils/color-hash.d.ts +2 -0
  26. package/dist/components/avatar/utils/color-hash.mjs +22 -0
  27. package/dist/components/avatar/utils/create-image.d.ts +5 -0
  28. package/dist/components/avatar/utils/create-image.mjs +19 -0
  29. package/dist/components/avatar/utils/load-image.d.ts +1 -0
  30. package/dist/components/avatar/utils/load-image.mjs +22 -0
  31. package/dist/components/badge/Badge.vue +210 -0
  32. package/dist/components/badge/Badge.vue.d.ts +41 -0
  33. package/dist/components/badge/index.d.ts +1 -0
  34. package/dist/components/badge/index.mjs +0 -0
  35. package/dist/components/banner/Banner.vue +183 -0
  36. package/dist/components/banner/Banner.vue.d.ts +91 -0
  37. package/dist/components/banner/index.d.ts +1 -0
  38. package/dist/components/banner/index.mjs +0 -0
  39. package/dist/components/breadcrumbs/Breadcrumb.vue +55 -0
  40. package/dist/components/breadcrumbs/Breadcrumb.vue.d.ts +59 -0
  41. package/dist/components/breadcrumbs/BreadcrumbItem.vue +83 -0
  42. package/dist/components/breadcrumbs/BreadcrumbItem.vue.d.ts +40 -0
  43. package/dist/components/breadcrumbs/BreadcrumbItemDropdown.vue +73 -0
  44. package/dist/components/breadcrumbs/BreadcrumbItemDropdown.vue.d.ts +38 -0
  45. package/dist/components/breadcrumbs/index.d.ts +11 -0
  46. package/dist/components/breadcrumbs/index.mjs +3 -0
  47. package/dist/components/button/Button.vue +391 -0
  48. package/dist/components/button/Button.vue.d.ts +108 -0
  49. package/dist/components/button/index.d.ts +5 -0
  50. package/dist/components/button/index.mjs +0 -0
  51. package/dist/components/button-group/ButtonGroup.vue +211 -0
  52. package/dist/components/button-group/ButtonGroup.vue.d.ts +40 -0
  53. package/dist/components/button-group/index.d.ts +6 -0
  54. package/dist/components/button-group/index.mjs +1 -0
  55. package/dist/components/calendar/Calendar.vue +396 -0
  56. package/dist/components/calendar/Calendar.vue.d.ts +120 -0
  57. package/dist/components/calendar/adapter/adapter.d.ts +32 -0
  58. package/dist/components/calendar/adapter/adapter.mjs +43 -0
  59. package/dist/components/calendar/adapter/date.d.ts +2 -0
  60. package/dist/components/calendar/adapter/date.mjs +86 -0
  61. package/dist/components/calendar/adapter/month.d.ts +2 -0
  62. package/dist/components/calendar/adapter/month.mjs +66 -0
  63. package/dist/components/calendar/adapter/year.d.ts +2 -0
  64. package/dist/components/calendar/adapter/year.mjs +63 -0
  65. package/dist/components/camera/Camera.vue +356 -0
  66. package/dist/components/camera/Camera.vue.d.ts +123 -0
  67. package/dist/components/camera/adapter/adapter.d.ts +41 -0
  68. package/dist/components/camera/adapter/adapter.mjs +3 -0
  69. package/dist/components/camera/adapter/capture.d.ts +5 -0
  70. package/dist/components/camera/adapter/capture.mjs +12 -0
  71. package/dist/components/camera/adapter/liveness.d.ts +5 -0
  72. package/dist/components/camera/adapter/liveness.mjs +46 -0
  73. package/dist/components/camera/adapter/qr-code.d.ts +2 -0
  74. package/dist/components/camera/adapter/qr-code.mjs +19 -0
  75. package/dist/components/camera/assets/shutter.wav +0 -0
  76. package/dist/components/camera/utils/motion.d.ts +29 -0
  77. package/dist/components/camera/utils/motion.mjs +88 -0
  78. package/dist/components/camera/utils/take-picture.d.ts +1 -0
  79. package/dist/components/camera/utils/take-picture.mjs +14 -0
  80. package/dist/components/caption/Caption.vue +112 -0
  81. package/dist/components/caption/Caption.vue.d.ts +50 -0
  82. package/dist/components/caption/index.d.ts +1 -0
  83. package/dist/components/caption/index.mjs +0 -0
  84. package/dist/components/card/Card.vue +330 -0
  85. package/dist/components/card/Card.vue.d.ts +118 -0
  86. package/dist/components/card/CardSection.vue +69 -0
  87. package/dist/components/card/CardSection.vue.d.ts +56 -0
  88. package/dist/components/card/index.d.ts +2 -0
  89. package/dist/components/card/index.mjs +0 -0
  90. package/dist/components/carousel/Carousel.vue +177 -0
  91. package/dist/components/carousel/Carousel.vue.d.ts +123 -0
  92. package/dist/components/carousel/CarouselBody.vue +16 -0
  93. package/dist/components/carousel/CarouselBody.vue.d.ts +17 -0
  94. package/dist/components/carousel/CarouselItem.vue +10 -0
  95. package/dist/components/carousel/CarouselItem.vue.d.ts +17 -0
  96. package/dist/components/carousel/index.d.ts +4 -0
  97. package/dist/components/carousel/index.mjs +1 -0
  98. package/dist/components/chart/Chart.vue +129 -0
  99. package/dist/components/chart/Chart.vue.d.ts +63 -0
  100. package/dist/components/chart/ChartSet.vue +28 -0
  101. package/dist/components/chart/ChartSet.vue.d.ts +57 -0
  102. package/dist/components/chart/ChartVal.vue +32 -0
  103. package/dist/components/chart/ChartVal.vue.d.ts +67 -0
  104. package/dist/components/chart/adapter/adapter.d.ts +7 -0
  105. package/dist/components/chart/adapter/adapter.mjs +3 -0
  106. package/dist/components/chart/adapter/bubble.d.ts +2 -0
  107. package/dist/components/chart/adapter/bubble.mjs +26 -0
  108. package/dist/components/chart/adapter/index.d.ts +3 -0
  109. package/dist/components/chart/adapter/index.mjs +16 -0
  110. package/dist/components/chart/adapter/line.d.ts +2 -0
  111. package/dist/components/chart/adapter/line.mjs +66 -0
  112. package/dist/components/chart/adapter/pie.d.ts +2 -0
  113. package/dist/components/chart/adapter/pie.mjs +34 -0
  114. package/dist/components/chart/index.d.ts +2 -0
  115. package/dist/components/chart/index.mjs +0 -0
  116. package/dist/components/chart/utils/use-chart.d.ts +2 -0
  117. package/dist/components/chart/utils/use-chart.mjs +9 -0
  118. package/dist/components/checkbox/Checkbox.vue +213 -0
  119. package/dist/components/checkbox/Checkbox.vue.d.ts +105 -0
  120. package/dist/components/checkbox/icon/IconCheckbox.vue +13 -0
  121. package/dist/components/checkbox/icon/IconCheckbox.vue.d.ts +2 -0
  122. package/dist/components/checkbox/icon/IconInderteminate.vue +12 -0
  123. package/dist/components/checkbox/icon/IconInderteminate.vue.d.ts +2 -0
  124. package/dist/components/checkbox/index.d.ts +7 -0
  125. package/dist/components/checkbox/index.mjs +34 -0
  126. package/dist/components/collapse/Collapse.vue +58 -0
  127. package/dist/components/collapse/Collapse.vue.d.ts +42 -0
  128. package/dist/components/contextual-bar/ContextualBar.vue +433 -0
  129. package/dist/components/contextual-bar/ContextualBar.vue.d.ts +124 -0
  130. package/dist/components/contextual-bar/index.d.ts +1 -0
  131. package/dist/components/contextual-bar/index.mjs +0 -0
  132. package/dist/components/cropper/Cropper.vue +382 -0
  133. package/dist/components/cropper/Cropper.vue.d.ts +195 -0
  134. package/dist/components/cropper/index.d.ts +1 -0
  135. package/dist/components/cropper/index.mjs +3 -0
  136. package/dist/components/cropper/utils/crop-image.d.ts +44 -0
  137. package/dist/components/cropper/utils/crop-image.mjs +43 -0
  138. package/dist/components/cropper/utils/use-pinch.d.ts +8 -0
  139. package/dist/components/cropper/utils/use-pinch.mjs +50 -0
  140. package/dist/components/cropper/utils/use-preview.d.ts +3 -0
  141. package/dist/components/cropper/utils/use-preview.mjs +21 -0
  142. package/dist/components/cropper/utils/use-ratio.d.ts +9 -0
  143. package/dist/components/cropper/utils/use-ratio.mjs +24 -0
  144. package/dist/components/datepicker/Datepicker.vue +204 -0
  145. package/dist/components/datepicker/Datepicker.vue.d.ts +181 -0
  146. package/dist/components/dialog/Dialog.vue +130 -0
  147. package/dist/components/dialog/Dialog.vue.d.ts +8 -0
  148. package/dist/components/dialog/DialogFooter.vue +121 -0
  149. package/dist/components/dialog/DialogFooter.vue.d.ts +132 -0
  150. package/dist/components/dialog/index.d.ts +52 -0
  151. package/dist/components/dialog/index.mjs +86 -0
  152. package/dist/components/divider/Divider.vue +61 -0
  153. package/dist/components/divider/Divider.vue.d.ts +14 -0
  154. package/dist/components/dot/Dot.vue +95 -0
  155. package/dist/components/dot/Dot.vue.d.ts +26 -0
  156. package/dist/components/dot/index.d.ts +1 -0
  157. package/dist/components/dot/index.mjs +0 -0
  158. package/dist/components/dropdown/Dropdown.vue +381 -0
  159. package/dist/components/dropdown/Dropdown.vue.d.ts +301 -0
  160. package/dist/components/dropdown/DropdownHeader.vue +33 -0
  161. package/dist/components/dropdown/DropdownHeader.vue.d.ts +18 -0
  162. package/dist/components/dropdown/DropdownItem.vue +87 -0
  163. package/dist/components/dropdown/DropdownItem.vue.d.ts +62 -0
  164. package/dist/components/dropdown/DropdownText.vue +34 -0
  165. package/dist/components/dropdown/DropdownText.vue.d.ts +17 -0
  166. package/dist/components/dropdown/index.d.ts +10 -0
  167. package/dist/components/dropdown/index.mjs +1 -0
  168. package/dist/components/dropdown/utils/use-focus.d.ts +5 -0
  169. package/dist/components/dropdown/utils/use-focus.mjs +22 -0
  170. package/dist/components/dropdown-subitem/DropdownSubitem.vue +153 -0
  171. package/dist/components/dropdown-subitem/DropdownSubitem.vue.d.ts +58 -0
  172. package/dist/components/dropdown-subitem/index.d.ts +12 -0
  173. package/dist/components/dropdown-subitem/index.mjs +1 -0
  174. package/dist/components/dropzone/Dropzone.vue +205 -0
  175. package/dist/components/dropzone/Dropzone.vue.d.ts +139 -0
  176. package/dist/components/dropzone/index.d.ts +4 -0
  177. package/dist/components/dropzone/index.mjs +0 -0
  178. package/dist/components/dropzone/utils/accept.d.ts +1 -0
  179. package/dist/components/dropzone/utils/accept.mjs +17 -0
  180. package/dist/components/filterbar/Filterbar.vue +103 -0
  181. package/dist/components/filterbar/Filterbar.vue.d.ts +2495 -0
  182. package/dist/components/filterbar/index.d.ts +45 -0
  183. package/dist/components/filterbar/index.mjs +7 -0
  184. package/dist/components/filterbar/pinned/PinnedDate.vue +100 -0
  185. package/dist/components/filterbar/pinned/PinnedDate.vue.d.ts +508 -0
  186. package/dist/components/filterbar/pinned/PinnedMultiselect.vue +113 -0
  187. package/dist/components/filterbar/pinned/PinnedMultiselect.vue.d.ts +675 -0
  188. package/dist/components/filterbar/pinned/PinnedSelect.vue +100 -0
  189. package/dist/components/filterbar/pinned/PinnedSelect.vue.d.ts +607 -0
  190. package/dist/components/filterbar/pinned/PinnedToggle.vue +77 -0
  191. package/dist/components/filterbar/pinned/PinnedToggle.vue.d.ts +220 -0
  192. package/dist/components/form-group/FormGroup.vue +155 -0
  193. package/dist/components/form-group/FormGroup.vue.d.ts +105 -0
  194. package/dist/components/global/router.d.ts +24 -0
  195. package/dist/components/global/router.mjs +7 -0
  196. package/dist/components/global/store.d.ts +49 -0
  197. package/dist/components/global/store.mjs +52 -0
  198. package/dist/components/global/types.d.ts +4 -0
  199. package/dist/components/global/types.mjs +0 -0
  200. package/dist/components/global/use-singleton.d.ts +21 -0
  201. package/dist/components/global/use-singleton.mjs +60 -0
  202. package/dist/components/global/utils/queue.d.ts +16 -0
  203. package/dist/components/global/utils/queue.mjs +35 -0
  204. package/dist/components/heading/Heading.vue +128 -0
  205. package/dist/components/heading/Heading.vue.d.ts +49 -0
  206. package/dist/components/heading/index.d.ts +3 -0
  207. package/dist/components/heading/index.mjs +0 -0
  208. package/dist/components/input/Input.vue +215 -0
  209. package/dist/components/input/Input.vue.d.ts +111 -0
  210. package/dist/components/input/index.d.ts +6 -0
  211. package/dist/components/input/index.mjs +25 -0
  212. package/dist/components/input/utils/accept.d.ts +26 -0
  213. package/dist/components/input/utils/accept.mjs +81 -0
  214. package/dist/components/input-color/index.d.ts +1 -0
  215. package/dist/components/input-color/index.mjs +0 -0
  216. package/dist/components/input-color/inputColor.vue +245 -0
  217. package/dist/components/input-color/inputColor.vue.d.ts +88 -0
  218. package/dist/components/input-file/InputFile.vue +195 -0
  219. package/dist/components/input-file/InputFile.vue.d.ts +755 -0
  220. package/dist/components/input-group/InputGroup.vue +177 -0
  221. package/dist/components/input-group/InputGroup.vue.d.ts +58 -0
  222. package/dist/components/input-group/InputGroupAddon.vue +42 -0
  223. package/dist/components/input-group/InputGroupAddon.vue.d.ts +17 -0
  224. package/dist/components/input-group/index.d.ts +6 -0
  225. package/dist/components/input-group/index.mjs +1 -0
  226. package/dist/components/input-password/InputPassword.vue +100 -0
  227. package/dist/components/input-password/InputPassword.vue.d.ts +86 -0
  228. package/dist/components/input-password/index.d.ts +2 -0
  229. package/dist/components/input-password/index.mjs +17 -0
  230. package/dist/components/input-pin/InputPin.vue +142 -0
  231. package/dist/components/input-pin/InputPin.vue.d.ts +77 -0
  232. package/dist/components/input-pin/index.d.ts +6 -0
  233. package/dist/components/input-pin/index.mjs +3 -0
  234. package/dist/components/input-range/InputRange.vue +253 -0
  235. package/dist/components/input-range/InputRange.vue.d.ts +106 -0
  236. package/dist/components/input-range/utils/use-drag.d.ts +3 -0
  237. package/dist/components/input-range/utils/use-drag.mjs +26 -0
  238. package/dist/components/label/Label.vue +249 -0
  239. package/dist/components/label/Label.vue.d.ts +63 -0
  240. package/dist/components/label/index.d.ts +1 -0
  241. package/dist/components/label/index.mjs +0 -0
  242. package/dist/components/list-group/ListGroup.vue +73 -0
  243. package/dist/components/list-group/ListGroup.vue.d.ts +56 -0
  244. package/dist/components/list-group/ListGroupItem.vue +79 -0
  245. package/dist/components/list-group/ListGroupItem.vue.d.ts +49 -0
  246. package/dist/components/list-group/index.d.ts +1 -0
  247. package/dist/components/list-group/index.mjs +0 -0
  248. package/dist/components/main/Main.vue +66 -0
  249. package/dist/components/main/Main.vue.d.ts +17 -0
  250. package/dist/components/markdown/index.d.ts +29 -0
  251. package/dist/components/markdown/index.mjs +25 -0
  252. package/dist/components/meta.json +171 -0
  253. package/dist/components/modal/Modal.vue +514 -0
  254. package/dist/components/modal/Modal.vue.d.ts +196 -0
  255. package/dist/components/modal/index.d.ts +1 -0
  256. package/dist/components/modal/index.mjs +0 -0
  257. package/dist/components/nav/Nav.vue +403 -0
  258. package/dist/components/nav/Nav.vue.d.ts +104 -0
  259. package/dist/components/nav/NavCollapse.vue +60 -0
  260. package/dist/components/nav/NavCollapse.vue.d.ts +164 -0
  261. package/dist/components/nav/NavForm.vue +23 -0
  262. package/dist/components/nav/NavForm.vue.d.ts +17 -0
  263. package/dist/components/nav/NavItem.vue +165 -0
  264. package/dist/components/nav/NavItem.vue.d.ts +80 -0
  265. package/dist/components/nav/NavItemDropdown.vue +104 -0
  266. package/dist/components/nav/NavItemDropdown.vue.d.ts +122 -0
  267. package/dist/components/nav/NavSubItem.vue +178 -0
  268. package/dist/components/nav/NavSubItem.vue.d.ts +45 -0
  269. package/dist/components/nav/NavText.vue +19 -0
  270. package/dist/components/nav/NavText.vue.d.ts +17 -0
  271. package/dist/components/nav/index.d.ts +2 -0
  272. package/dist/components/nav/index.mjs +0 -0
  273. package/dist/components/navbar/Navbar.vue +270 -0
  274. package/dist/components/navbar/Navbar.vue.d.ts +70 -0
  275. package/dist/components/navbar/NavbarBrand.vue +30 -0
  276. package/dist/components/navbar/NavbarBrand.vue.d.ts +29 -0
  277. package/dist/components/navbar/NavbarNav.vue +110 -0
  278. package/dist/components/navbar/NavbarNav.vue.d.ts +31 -0
  279. package/dist/components/navbar/NavbarToggle.vue +67 -0
  280. package/dist/components/navbar/NavbarToggle.vue.d.ts +19 -0
  281. package/dist/components/navbar/index.d.ts +9 -0
  282. package/dist/components/navbar/index.mjs +1 -0
  283. package/dist/components/navbar-menu/NavbarNavMenu.vue +56 -0
  284. package/dist/components/navbar-menu/NavbarNavMenu.vue.d.ts +16 -0
  285. package/dist/components/notify/Notify.vue +36 -0
  286. package/dist/components/notify/Notify.vue.d.ts +6 -0
  287. package/dist/components/notify/NotifyGroup.vue +214 -0
  288. package/dist/components/notify/NotifyGroup.vue.d.ts +34 -0
  289. package/dist/components/notify/NotifyItem.vue +33 -0
  290. package/dist/components/notify/NotifyItem.vue.d.ts +22 -0
  291. package/dist/components/notify/index.d.ts +20 -0
  292. package/dist/components/notify/index.mjs +18 -0
  293. package/dist/components/overlay/Overlay.vue +63 -0
  294. package/dist/components/overlay/Overlay.vue.d.ts +19 -0
  295. package/dist/components/overlay/assets/icon-white.svg +1 -0
  296. package/dist/components/overlay/index.d.ts +2 -0
  297. package/dist/components/overlay/index.mjs +8 -0
  298. package/dist/components/overlay/utils/use-loading.d.ts +4 -0
  299. package/dist/components/overlay/utils/use-loading.mjs +28 -0
  300. package/dist/components/page/Page.vue +93 -0
  301. package/dist/components/page/Page.vue.d.ts +54 -0
  302. package/dist/components/pagination/Pagination.vue +373 -0
  303. package/dist/components/pagination/Pagination.vue.d.ts +261 -0
  304. package/dist/components/pagination/index.d.ts +14 -0
  305. package/dist/components/pagination/index.mjs +38 -0
  306. package/dist/components/pagination/utils/calculate-page.d.ts +11 -0
  307. package/dist/components/pagination/utils/calculate-page.mjs +48 -0
  308. package/dist/components/pdf-helipad/PdfHelipad.vue +129 -0
  309. package/dist/components/pdf-helipad/PdfHelipad.vue.d.ts +68 -0
  310. package/dist/components/pdf-helipad/index.d.ts +7 -0
  311. package/dist/components/pdf-helipad/index.mjs +0 -0
  312. package/dist/components/pdf-helipad/utils/use-drag.d.ts +3 -0
  313. package/dist/components/pdf-helipad/utils/use-drag.mjs +38 -0
  314. package/dist/components/pdf-object/PdfObject.vue +304 -0
  315. package/dist/components/pdf-object/PdfObject.vue.d.ts +151 -0
  316. package/dist/components/pdf-object/PdfObjectAddon.vue +49 -0
  317. package/dist/components/pdf-object/PdfObjectAddon.vue.d.ts +31 -0
  318. package/dist/components/pdf-object/PdfObjectDebugger.vue +66 -0
  319. package/dist/components/pdf-object/PdfObjectDebugger.vue.d.ts +2 -0
  320. package/dist/components/pdf-object/PdfObjects.vue +35 -0
  321. package/dist/components/pdf-object/PdfObjects.vue.d.ts +31 -0
  322. package/dist/components/pdf-object/index.d.ts +63 -0
  323. package/dist/components/pdf-object/index.mjs +110 -0
  324. package/dist/components/pdf-object/utils/overlap.d.ts +51 -0
  325. package/dist/components/pdf-object/utils/overlap.mjs +54 -0
  326. package/dist/components/pdf-object/utils/position.d.ts +64 -0
  327. package/dist/components/pdf-object/utils/position.mjs +48 -0
  328. package/dist/components/pdf-object/utils/use-drag.d.ts +9 -0
  329. package/dist/components/pdf-object/utils/use-drag.mjs +69 -0
  330. package/dist/components/pdf-object/utils/use-drop.d.ts +7 -0
  331. package/dist/components/pdf-object/utils/use-drop.mjs +57 -0
  332. package/dist/components/pdf-object/utils/use-resize.d.ts +17 -0
  333. package/dist/components/pdf-object/utils/use-resize.mjs +90 -0
  334. package/dist/components/pdf-object/utils/use-selector.d.ts +4 -0
  335. package/dist/components/pdf-object/utils/use-selector.mjs +26 -0
  336. package/dist/components/pdf-text/PdfText.vue +125 -0
  337. package/dist/components/pdf-text/PdfText.vue.d.ts +170 -0
  338. package/dist/components/pdf-text/utils/text-to-image.d.ts +68 -0
  339. package/dist/components/pdf-text/utils/text-to-image.mjs +120 -0
  340. package/dist/components/pdf-viewer/PdfError.vue +70 -0
  341. package/dist/components/pdf-viewer/PdfError.vue.d.ts +24 -0
  342. package/dist/components/pdf-viewer/PdfLoading.vue +24 -0
  343. package/dist/components/pdf-viewer/PdfLoading.vue.d.ts +2 -0
  344. package/dist/components/pdf-viewer/PdfNavigation.vue +165 -0
  345. package/dist/components/pdf-viewer/PdfNavigation.vue.d.ts +49 -0
  346. package/dist/components/pdf-viewer/PdfViewer.vue +319 -0
  347. package/dist/components/pdf-viewer/PdfViewer.vue.d.ts +187 -0
  348. package/dist/components/pdf-viewer/assets/pdf-loading.svg +1 -0
  349. package/dist/components/pdf-viewer/index.d.ts +25 -0
  350. package/dist/components/pdf-viewer/index.mjs +24 -0
  351. package/dist/components/pdf-viewer/utils/pdfjs.d.ts +69 -0
  352. package/dist/components/pdf-viewer/utils/pdfjs.mjs +76 -0
  353. package/dist/components/pdf-viewer/utils/use-idle.d.ts +2 -0
  354. package/dist/components/pdf-viewer/utils/use-idle.mjs +25 -0
  355. package/dist/components/pdf-viewer/utils/use-sticky.d.ts +6 -0
  356. package/dist/components/pdf-viewer/utils/use-sticky.mjs +49 -0
  357. package/dist/components/pdf-viewer/utils/use-viewer.d.ts +27 -0
  358. package/dist/components/pdf-viewer/utils/use-viewer.mjs +193 -0
  359. package/dist/components/popover/Popover.vue +109 -0
  360. package/dist/components/popover/Popover.vue.d.ts +209 -0
  361. package/dist/components/popover/index.d.ts +17 -0
  362. package/dist/components/popover/index.mjs +52 -0
  363. package/dist/components/popup/Popup.vue +412 -0
  364. package/dist/components/popup/Popup.vue.d.ts +112 -0
  365. package/dist/components/popup/index.d.ts +39 -0
  366. package/dist/components/popup/index.mjs +31 -0
  367. package/dist/components/progress/Progress.vue +198 -0
  368. package/dist/components/progress/Progress.vue.d.ts +53 -0
  369. package/dist/components/progress/ProgressItem.vue +46 -0
  370. package/dist/components/progress/ProgressItem.vue.d.ts +43 -0
  371. package/dist/components/progress/index.d.ts +2 -0
  372. package/dist/components/progress/index.mjs +0 -0
  373. package/dist/components/progress-indicator/ProgressIndicator.vue +114 -0
  374. package/dist/components/progress-indicator/ProgressIndicator.vue.d.ts +40 -0
  375. package/dist/components/progressbar/Progressbar.vue +105 -0
  376. package/dist/components/progressbar/Progressbar.vue.d.ts +59 -0
  377. package/dist/components/progressbar/index.d.ts +7 -0
  378. package/dist/components/progressbar/index.mjs +11 -0
  379. package/dist/components/pspdfkit/PspdfHelipad.vue +142 -0
  380. package/dist/components/pspdfkit/PspdfHelipad.vue.d.ts +68 -0
  381. package/dist/components/pspdfkit/PspdfObject.vue +291 -0
  382. package/dist/components/pspdfkit/PspdfObject.vue.d.ts +151 -0
  383. package/dist/components/pspdfkit/PspdfObjectAddon.vue +24 -0
  384. package/dist/components/pspdfkit/PspdfObjectAddon.vue.d.ts +31 -0
  385. package/dist/components/pspdfkit/PspdfObjects.vue +27 -0
  386. package/dist/components/pspdfkit/PspdfObjects.vue.d.ts +19 -0
  387. package/dist/components/pspdfkit/PspdfViewer.vue +223 -0
  388. package/dist/components/pspdfkit/PspdfViewer.vue.d.ts +142 -0
  389. package/dist/components/pspdfkit/css/custom.css +1 -0
  390. package/dist/components/pspdfkit/index.d.ts +8 -0
  391. package/dist/components/pspdfkit/index.mjs +7 -0
  392. package/dist/components/pspdfkit/utils/position.d.ts +1 -0
  393. package/dist/components/pspdfkit/utils/position.mjs +5 -0
  394. package/dist/components/pspdfkit/utils/pspdfkit.d.ts +17 -0
  395. package/dist/components/pspdfkit/utils/pspdfkit.mjs +53 -0
  396. package/dist/components/pspdfkit/utils/use-drop.d.ts +2 -0
  397. package/dist/components/pspdfkit/utils/use-drop.mjs +41 -0
  398. package/dist/components/pspdfkit/utils/use-viewer.d.ts +17 -0
  399. package/dist/components/pspdfkit/utils/use-viewer.mjs +167 -0
  400. package/dist/components/qrcode/Qrcode.vue +150 -0
  401. package/dist/components/qrcode/Qrcode.vue.d.ts +145 -0
  402. package/dist/components/qrcode/index.d.ts +1 -0
  403. package/dist/components/qrcode/index.mjs +0 -0
  404. package/dist/components/radio/Radio.vue +285 -0
  405. package/dist/components/radio/Radio.vue.d.ts +97 -0
  406. package/dist/components/radio/index.d.ts +7 -0
  407. package/dist/components/radio/index.mjs +16 -0
  408. package/dist/components/richtext/Richtext.vue +271 -0
  409. package/dist/components/richtext/Richtext.vue.d.ts +78 -0
  410. package/dist/components/richtext/RichtextToolbarAdvance.vue +37 -0
  411. package/dist/components/richtext/RichtextToolbarAdvance.vue.d.ts +2 -0
  412. package/dist/components/richtext/RichtextToolbarSimple.vue +146 -0
  413. package/dist/components/richtext/RichtextToolbarSimple.vue.d.ts +2 -0
  414. package/dist/components/richtext/control/RichtextControlFontFamily.vue +52 -0
  415. package/dist/components/richtext/control/RichtextControlFontFamily.vue.d.ts +2 -0
  416. package/dist/components/richtext/control/RichtextControlFontSize.vue +74 -0
  417. package/dist/components/richtext/control/RichtextControlFontSize.vue.d.ts +2 -0
  418. package/dist/components/richtext/control/RichtextControlHighlight.vue +127 -0
  419. package/dist/components/richtext/control/RichtextControlHighlight.vue.d.ts +2 -0
  420. package/dist/components/richtext/control/RichtextControlHistory.vue +26 -0
  421. package/dist/components/richtext/control/RichtextControlHistory.vue.d.ts +2 -0
  422. package/dist/components/richtext/control/RichtextControlImage.vue +32 -0
  423. package/dist/components/richtext/control/RichtextControlImage.vue.d.ts +2 -0
  424. package/dist/components/richtext/control/RichtextControlLink.vue +44 -0
  425. package/dist/components/richtext/control/RichtextControlLink.vue.d.ts +2 -0
  426. package/dist/components/richtext/control/RichtextControlList.vue +43 -0
  427. package/dist/components/richtext/control/RichtextControlList.vue.d.ts +2 -0
  428. package/dist/components/richtext/control/RichtextControlTable.vue +90 -0
  429. package/dist/components/richtext/control/RichtextControlTable.vue.d.ts +2 -0
  430. package/dist/components/richtext/control/RichtextControlTextAlign.vue +78 -0
  431. package/dist/components/richtext/control/RichtextControlTextAlign.vue.d.ts +2 -0
  432. package/dist/components/richtext/control/RichtextControlTextFormat.vue +48 -0
  433. package/dist/components/richtext/control/RichtextControlTextFormat.vue.d.ts +2 -0
  434. package/dist/components/richtext/control/RichtextControlTextHeading.vue +93 -0
  435. package/dist/components/richtext/control/RichtextControlTextHeading.vue.d.ts +2 -0
  436. package/dist/components/richtext/index.d.ts +7 -0
  437. package/dist/components/richtext/index.mjs +7 -0
  438. package/dist/components/richtext/popup/RichtextPopupImageEdit.vue +64 -0
  439. package/dist/components/richtext/popup/RichtextPopupImageEdit.vue.d.ts +2 -0
  440. package/dist/components/richtext/popup/RichtextPopupLinkDetail.vue +79 -0
  441. package/dist/components/richtext/popup/RichtextPopupLinkDetail.vue.d.ts +2 -0
  442. package/dist/components/richtext/popup/RichtextPopupLinkEdit.vue +64 -0
  443. package/dist/components/richtext/popup/RichtextPopupLinkEdit.vue.d.ts +22 -0
  444. package/dist/components/richtext/tiptap/image-align.d.ts +43 -0
  445. package/dist/components/richtext/tiptap/image-align.mjs +60 -0
  446. package/dist/components/ringbar/Ringbar.vue +148 -0
  447. package/dist/components/ringbar/Ringbar.vue.d.ts +62 -0
  448. package/dist/components/ringbar/index.d.ts +1 -0
  449. package/dist/components/ringbar/index.mjs +0 -0
  450. package/dist/components/select/Select.vue +499 -0
  451. package/dist/components/select/Select.vue.d.ts +753 -0
  452. package/dist/components/select/SelectInput.vue +101 -0
  453. package/dist/components/select/SelectInput.vue.d.ts +71 -0
  454. package/dist/components/select/SelectTags.vue +53 -0
  455. package/dist/components/select/SelectTags.vue.d.ts +34 -0
  456. package/dist/components/select/adapter/adapter.d.ts +17 -0
  457. package/dist/components/select/adapter/adapter.mjs +20 -0
  458. package/dist/components/select/adapter/async-adapter.d.ts +17 -0
  459. package/dist/components/select/adapter/async-adapter.mjs +61 -0
  460. package/dist/components/select/adapter/basic-adapter.d.ts +5 -0
  461. package/dist/components/select/adapter/basic-adapter.mjs +13 -0
  462. package/dist/components/select/adapter/fuzzy-adapter.d.ts +2 -0
  463. package/dist/components/select/adapter/fuzzy-adapter.mjs +24 -0
  464. package/dist/components/select/index.d.ts +15 -0
  465. package/dist/components/select/index.mjs +20 -0
  466. package/dist/components/select/utils/use-on-scroll.d.ts +2 -0
  467. package/dist/components/select/utils/use-on-scroll.mjs +9 -0
  468. package/dist/components/select/utils/use-on-typing.d.ts +3 -0
  469. package/dist/components/select/utils/use-on-typing.mjs +8 -0
  470. package/dist/components/sheet/Sheet.vue +210 -0
  471. package/dist/components/sheet/Sheet.vue.d.ts +79 -0
  472. package/dist/components/shimmer/Shimmer.vue +121 -0
  473. package/dist/components/shimmer/Shimmer.vue.d.ts +47 -0
  474. package/dist/components/shimmer/index.d.ts +2 -0
  475. package/dist/components/shimmer/index.mjs +10 -0
  476. package/dist/components/sidebar/Sidebar.vue +225 -0
  477. package/dist/components/sidebar/Sidebar.vue.d.ts +99 -0
  478. package/dist/components/sidebar/SidebarBrand.vue +101 -0
  479. package/dist/components/sidebar/SidebarBrand.vue.d.ts +52 -0
  480. package/dist/components/sidebar/SidebarContent.vue +21 -0
  481. package/dist/components/sidebar/SidebarContent.vue.d.ts +16 -0
  482. package/dist/components/sidebar/SidebarNav.vue +254 -0
  483. package/dist/components/sidebar/SidebarNav.vue.d.ts +77 -0
  484. package/dist/components/sidebar/index.d.ts +9 -0
  485. package/dist/components/sidebar/index.mjs +1 -0
  486. package/dist/components/sidebar-menu/SidebarMenu.vue +112 -0
  487. package/dist/components/sidebar-menu/SidebarMenu.vue.d.ts +112 -0
  488. package/dist/components/sidebar-menu/SidebarMenuItem.vue +67 -0
  489. package/dist/components/sidebar-menu/SidebarMenuItem.vue.d.ts +25 -0
  490. package/dist/components/sidebar-menu/index.d.ts +138 -0
  491. package/dist/components/sidebar-menu/index.mjs +44 -0
  492. package/dist/components/signature-draw/SignatureDraw.vue +91 -0
  493. package/dist/components/signature-draw/SignatureDraw.vue.d.ts +98 -0
  494. package/dist/components/signature-draw/SignatureDrawDesktop.vue +148 -0
  495. package/dist/components/signature-draw/SignatureDrawDesktop.vue.d.ts +76 -0
  496. package/dist/components/signature-draw/SignatureDrawMobile.vue +212 -0
  497. package/dist/components/signature-draw/SignatureDrawMobile.vue.d.ts +94 -0
  498. package/dist/components/signature-draw/utils/canvas.d.ts +41 -0
  499. package/dist/components/signature-draw/utils/canvas.mjs +55 -0
  500. package/dist/components/signature-draw/utils/image.d.ts +7 -0
  501. package/dist/components/signature-draw/utils/image.mjs +23 -0
  502. package/dist/components/signature-draw/utils/smooth-line.d.ts +36 -0
  503. package/dist/components/signature-draw/utils/smooth-line.mjs +56 -0
  504. package/dist/components/signature-draw/utils/straight-line.d.ts +8 -0
  505. package/dist/components/signature-draw/utils/straight-line.mjs +24 -0
  506. package/dist/components/signature-draw/utils/use-draw.d.ts +7 -0
  507. package/dist/components/signature-draw/utils/use-draw.mjs +29 -0
  508. package/dist/components/signature-text/SignatureText.vue +114 -0
  509. package/dist/components/signature-text/SignatureText.vue.d.ts +98 -0
  510. package/dist/components/signature-text/utils/formatter.d.ts +2 -0
  511. package/dist/components/signature-text/utils/formatter.mjs +8 -0
  512. package/dist/components/signature-text/utils/generate-text.d.ts +8 -0
  513. package/dist/components/signature-text/utils/generate-text.mjs +28 -0
  514. package/dist/components/signature-text/utils/load-font.d.ts +1 -0
  515. package/dist/components/signature-text/utils/load-font.mjs +22 -0
  516. package/dist/components/spinner/Spinner.vue +156 -0
  517. package/dist/components/spinner/Spinner.vue.d.ts +2 -0
  518. package/dist/components/spinner/SpinnerRing.vue +34 -0
  519. package/dist/components/spinner/SpinnerRing.vue.d.ts +2 -0
  520. package/dist/components/spinner/SpinnerRinggo.vue +61 -0
  521. package/dist/components/spinner/SpinnerRinggo.vue.d.ts +2 -0
  522. package/dist/components/spread/Spread.vue +52 -0
  523. package/dist/components/spread/Spread.vue.d.ts +29 -0
  524. package/dist/components/steps/Step.vue +42 -0
  525. package/dist/components/steps/Step.vue.d.ts +48 -0
  526. package/dist/components/steps/StepSlider.vue +37 -0
  527. package/dist/components/steps/StepSlider.vue.d.ts +34 -0
  528. package/dist/components/steps/Steps.vue +116 -0
  529. package/dist/components/steps/Steps.vue.d.ts +100 -0
  530. package/dist/components/steps/index.d.ts +30 -0
  531. package/dist/components/steps/index.mjs +53 -0
  532. package/dist/components/steps/utils/hook.d.ts +10 -0
  533. package/dist/components/steps/utils/hook.mjs +35 -0
  534. package/dist/components/strengthbar/Strengthbar.vue +90 -0
  535. package/dist/components/strengthbar/Strengthbar.vue.d.ts +41 -0
  536. package/dist/components/subheading/Subheading.vue +137 -0
  537. package/dist/components/subheading/Subheading.vue.d.ts +59 -0
  538. package/dist/components/subheading/index.d.ts +1 -0
  539. package/dist/components/subheading/index.mjs +0 -0
  540. package/dist/components/table/Table.vue +391 -0
  541. package/dist/components/table/Table.vue.d.ts +337 -0
  542. package/dist/components/table/index.d.ts +49 -0
  543. package/dist/components/table/index.mjs +37 -0
  544. package/dist/components/table-flex/TableFlex.vue +309 -0
  545. package/dist/components/table-flex/TableFlex.vue.d.ts +77 -0
  546. package/dist/components/table-static/TableStatic.vue +406 -0
  547. package/dist/components/table-static/TableStatic.vue.d.ts +90 -0
  548. package/dist/components/table-static/TableStaticRoot.vue +39 -0
  549. package/dist/components/table-static/TableStaticRoot.vue.d.ts +40 -0
  550. package/dist/components/table-static/TableStaticSort.vue +22 -0
  551. package/dist/components/table-static/TableStaticSort.vue.d.ts +14 -0
  552. package/dist/components/table-static/index.d.ts +64 -0
  553. package/dist/components/table-static/index.mjs +24 -0
  554. package/dist/components/tabs/Tab.vue +26 -0
  555. package/dist/components/tabs/Tab.vue.d.ts +45 -0
  556. package/dist/components/tabs/TabContent.vue +53 -0
  557. package/dist/components/tabs/TabContent.vue.d.ts +33 -0
  558. package/dist/components/tabs/Tabs.vue +209 -0
  559. package/dist/components/tabs/Tabs.vue.d.ts +96 -0
  560. package/dist/components/text/Text.vue +220 -0
  561. package/dist/components/text/Text.vue.d.ts +69 -0
  562. package/dist/components/text/index.d.ts +2 -0
  563. package/dist/components/text/index.mjs +0 -0
  564. package/dist/components/textarea/Textarea.vue +162 -0
  565. package/dist/components/textarea/Textarea.vue.d.ts +112 -0
  566. package/dist/components/time/Time.vue +222 -0
  567. package/dist/components/time/Time.vue.d.ts +104 -0
  568. package/dist/components/time/TimeItem.vue +96 -0
  569. package/dist/components/time/TimeItem.vue.d.ts +61 -0
  570. package/dist/components/time/index.d.ts +19 -0
  571. package/dist/components/time/index.mjs +53 -0
  572. package/dist/components/time/utils/index.d.ts +9 -0
  573. package/dist/components/time/utils/index.mjs +82 -0
  574. package/dist/components/timepicker/Timepicker.vue +204 -0
  575. package/dist/components/timepicker/Timepicker.vue.d.ts +182 -0
  576. package/dist/components/toast/Toast.vue +247 -0
  577. package/dist/components/toast/Toast.vue.d.ts +118 -0
  578. package/dist/components/toast/index.d.ts +50 -0
  579. package/dist/components/toast/index.mjs +44 -0
  580. package/dist/components/toggle/Toggle.vue +216 -0
  581. package/dist/components/toggle/Toggle.vue.d.ts +145 -0
  582. package/dist/components/tooltip/Tooltip.vue +154 -0
  583. package/dist/components/tooltip/Tooltip.vue.d.ts +68 -0
  584. package/dist/components/tooltip/TooltipContainer.vue +74 -0
  585. package/dist/components/tooltip/TooltipContainer.vue.d.ts +16 -0
  586. package/dist/components/tooltip/index.d.ts +17 -0
  587. package/dist/components/tooltip/index.mjs +113 -0
  588. package/dist/components/tooltip/utils/create-handler.d.ts +9 -0
  589. package/dist/components/tooltip/utils/create-handler.mjs +16 -0
  590. package/dist/components/tooltip/utils/on-hover.d.ts +23 -0
  591. package/dist/components/tooltip/utils/on-hover.mjs +42 -0
  592. package/dist/components/tooltip/utils/parse-bindings.d.ts +23 -0
  593. package/dist/components/tooltip/utils/parse-bindings.mjs +47 -0
  594. package/dist/components/tour/Tour.vue +99 -0
  595. package/dist/components/tour/Tour.vue.d.ts +9 -0
  596. package/dist/components/tour/TourDialog.vue +201 -0
  597. package/dist/components/tour/TourDialog.vue.d.ts +112 -0
  598. package/dist/components/tour/TourHighlight.vue +51 -0
  599. package/dist/components/tour/TourHighlight.vue.d.ts +15 -0
  600. package/dist/components/tour/core/base.d.ts +59 -0
  601. package/dist/components/tour/core/base.mjs +69 -0
  602. package/dist/components/tour/core/step/action.d.ts +15 -0
  603. package/dist/components/tour/core/step/action.mjs +14 -0
  604. package/dist/components/tour/core/step/conditional.d.ts +25 -0
  605. package/dist/components/tour/core/step/conditional.mjs +57 -0
  606. package/dist/components/tour/core/step/delay.d.ts +8 -0
  607. package/dist/components/tour/core/step/delay.mjs +9 -0
  608. package/dist/components/tour/core/step/dialog.d.ts +11 -0
  609. package/dist/components/tour/core/step/dialog.mjs +25 -0
  610. package/dist/components/tour/core/step/visit.d.ts +9 -0
  611. package/dist/components/tour/core/step/visit.mjs +15 -0
  612. package/dist/components/tour/core/step.d.ts +37 -0
  613. package/dist/components/tour/core/step.mjs +46 -0
  614. package/dist/components/tour/core/story.d.ts +130 -0
  615. package/dist/components/tour/core/story.mjs +166 -0
  616. package/dist/components/tour/core/tour.d.ts +126 -0
  617. package/dist/components/tour/core/tour.mjs +196 -0
  618. package/dist/components/tour/index.d.ts +3 -0
  619. package/dist/components/tour/index.mjs +4 -0
  620. package/dist/components/tour/utils/focus.d.ts +1 -0
  621. package/dist/components/tour/utils/focus.mjs +6 -0
  622. package/dist/components/tour/utils/is-visible.d.ts +1 -0
  623. package/dist/components/tour/utils/is-visible.mjs +29 -0
  624. package/dist/components/tour/utils/wait-element.d.ts +6 -0
  625. package/dist/components/tour/utils/wait-element.mjs +45 -0
  626. package/dist/components/truncate/Truncate.vue +69 -0
  627. package/dist/components/truncate/Truncate.vue.d.ts +68 -0
  628. package/dist/components/utils/array.d.ts +2 -0
  629. package/dist/components/utils/array.mjs +19 -0
  630. package/dist/components/utils/base64.d.ts +8 -0
  631. package/dist/components/utils/base64.mjs +35 -0
  632. package/dist/components/utils/color.d.ts +17 -0
  633. package/dist/components/utils/color.mjs +14 -0
  634. package/dist/components/utils/date.d.ts +22 -0
  635. package/dist/components/utils/date.mjs +14 -0
  636. package/dist/components/utils/value.d.ts +8 -0
  637. package/dist/components/utils/value.mjs +7 -0
  638. package/dist/components/utils/vnode.d.ts +15 -0
  639. package/dist/components/utils/vnode.mjs +18 -0
  640. package/dist/components/wizard/Wizard.vue +76 -0
  641. package/dist/components/wizard/Wizard.vue.d.ts +91 -0
  642. package/dist/components/wizard/WizardBody.vue +38 -0
  643. package/dist/components/wizard/WizardBody.vue.d.ts +36 -0
  644. package/dist/components/wizard/WizardHeader.vue +38 -0
  645. package/dist/components/wizard/WizardHeader.vue.d.ts +16 -0
  646. package/dist/components/wizard/WizardStep.vue +22 -0
  647. package/dist/components/wizard/WizardStep.vue.d.ts +55 -0
  648. package/dist/core/index.d.ts +43 -0
  649. package/dist/core/index.mjs +148 -0
  650. package/dist/directive/index.d.ts +3 -0
  651. package/dist/directive/index.mjs +12 -0
  652. package/dist/module.d.mts +28 -2
  653. package/dist/module.json +1 -1
  654. package/dist/module.mjs +97 -13
  655. package/dist/runtime/plugins/persona.d.ts +2 -0
  656. package/dist/runtime/plugins/persona.js +35 -0
  657. package/dist/types.d.mts +4 -8
  658. package/package.json +2 -5
  659. package/dist/module.d.cts +0 -2
@@ -0,0 +1,753 @@
1
+ import type { PropType, HTMLAttributes, VNode } from 'vue';
2
+ import type { SelectItem } from '.';
3
+ import type { Adapter } from './adapter/adapter';
4
+ import type { SizeVariant } from '../button';
5
+ import type { MenuSizeVariant } from '../dropdown/';
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: Readonly<{
9
+ activator(props: {
10
+ isOpen: boolean;
11
+ open: () => void;
12
+ close: () => void;
13
+ toggle: () => void;
14
+ }): VNode[];
15
+ selected(props: {
16
+ item: unknown;
17
+ multiple: boolean;
18
+ }): VNode[];
19
+ placeholder(): VNode[];
20
+ empty(props: {
21
+ keyword: string;
22
+ }): VNode[];
23
+ option(props: {
24
+ item: SelectItem;
25
+ isSelected: boolean;
26
+ }): VNode[];
27
+ loading(): VNode[];
28
+ caret(): VNode[];
29
+ }> & {
30
+ activator(props: {
31
+ isOpen: boolean;
32
+ open: () => void;
33
+ close: () => void;
34
+ toggle: () => void;
35
+ }): VNode[];
36
+ selected(props: {
37
+ item: unknown;
38
+ multiple: boolean;
39
+ }): VNode[];
40
+ placeholder(): VNode[];
41
+ empty(props: {
42
+ keyword: string;
43
+ }): VNode[];
44
+ option(props: {
45
+ item: SelectItem;
46
+ isSelected: boolean;
47
+ }): VNode[];
48
+ loading(): VNode[];
49
+ caret(): VNode[];
50
+ };
51
+ refs: {
52
+ dropdown: ({
53
+ $: import("vue").ComponentInternalInstance;
54
+ $data: {};
55
+ $props: Partial<{
56
+ text: string;
57
+ size: SizeVariant;
58
+ modelValue: boolean;
59
+ disabled: boolean;
60
+ noCaret: boolean;
61
+ icon: boolean;
62
+ pill: boolean;
63
+ variant: import("../button").StyleVariant;
64
+ divider: boolean;
65
+ color: import("../button").ColorVariant;
66
+ placement: import("@floating-ui/utils").Placement;
67
+ menuClass: string | unknown[] | Record<string, any>;
68
+ buttonClass: string | unknown[] | Record<string, any>;
69
+ menuSize: MenuSizeVariant;
70
+ noAnimation: boolean;
71
+ }> & Omit<{
72
+ readonly text: string;
73
+ readonly size: SizeVariant;
74
+ readonly modelValue: boolean;
75
+ readonly disabled: boolean;
76
+ readonly noCaret: boolean;
77
+ readonly icon: boolean;
78
+ readonly pill: boolean;
79
+ readonly variant: import("../button").StyleVariant;
80
+ readonly divider: boolean;
81
+ readonly color: import("../button").ColorVariant;
82
+ readonly placement: import("@floating-ui/utils").Placement;
83
+ readonly menuSize: MenuSizeVariant;
84
+ readonly noAnimation: boolean;
85
+ readonly menuClass?: string | unknown[] | Record<string, any> | undefined;
86
+ readonly buttonClass?: string | unknown[] | Record<string, any> | undefined;
87
+ readonly "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
88
+ readonly onShow?: (() => any) | undefined;
89
+ readonly onHide?: (() => any) | undefined;
90
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "modelValue" | "disabled" | "noCaret" | "icon" | "pill" | "variant" | "divider" | "color" | "placement" | "menuClass" | "buttonClass" | "menuSize" | "noAnimation">;
91
+ $attrs: {
92
+ [x: string]: unknown;
93
+ };
94
+ $refs: {
95
+ [x: string]: unknown;
96
+ };
97
+ $slots: Readonly<{
98
+ [name: string]: import("vue").Slot<any> | undefined;
99
+ }>;
100
+ $root: import("vue").ComponentPublicInstance | null;
101
+ $parent: import("vue").ComponentPublicInstance | null;
102
+ $host: Element | null;
103
+ $emit: ((event: "update:modelValue", args_0: boolean) => void) & ((event: "show") => void) & ((event: "hide") => void);
104
+ $el: any;
105
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
106
+ modelValue: {
107
+ type: BooleanConstructor;
108
+ default: boolean;
109
+ };
110
+ text: {
111
+ type: StringConstructor;
112
+ default: string;
113
+ };
114
+ placement: {
115
+ type: PropType<import("@floating-ui/utils").Placement>;
116
+ default: string;
117
+ };
118
+ variant: {
119
+ type: PropType<import("../button").StyleVariant>;
120
+ default: string;
121
+ };
122
+ color: {
123
+ type: PropType<import("../button").ColorVariant>;
124
+ default: string;
125
+ };
126
+ size: {
127
+ type: PropType<SizeVariant>;
128
+ default: string;
129
+ };
130
+ icon: {
131
+ type: BooleanConstructor;
132
+ default: boolean;
133
+ };
134
+ pill: {
135
+ type: BooleanConstructor;
136
+ default: boolean;
137
+ };
138
+ disabled: {
139
+ type: BooleanConstructor;
140
+ default: boolean;
141
+ };
142
+ noCaret: {
143
+ type: BooleanConstructor;
144
+ default: boolean;
145
+ };
146
+ divider: {
147
+ type: BooleanConstructor;
148
+ default: boolean;
149
+ };
150
+ menuClass: {
151
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
152
+ default: undefined;
153
+ };
154
+ buttonClass: {
155
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
156
+ default: undefined;
157
+ };
158
+ menuSize: {
159
+ type: PropType<MenuSizeVariant>;
160
+ default: string;
161
+ };
162
+ noAnimation: {
163
+ type: BooleanConstructor;
164
+ default: boolean;
165
+ };
166
+ }>> & Readonly<{
167
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
168
+ onShow?: (() => any) | undefined;
169
+ onHide?: (() => any) | undefined;
170
+ }>, {
171
+ menuBody: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
172
+ menu: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
173
+ root: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
174
+ open: () => void;
175
+ close: () => void;
176
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
177
+ "update:modelValue": (args_0: boolean) => void;
178
+ show: () => void;
179
+ hide: () => void;
180
+ }, string, {
181
+ text: string;
182
+ size: SizeVariant;
183
+ modelValue: boolean;
184
+ disabled: boolean;
185
+ noCaret: boolean;
186
+ icon: boolean;
187
+ pill: boolean;
188
+ variant: import("../button").StyleVariant;
189
+ divider: boolean;
190
+ color: import("../button").ColorVariant;
191
+ placement: import("@floating-ui/utils").Placement;
192
+ menuClass: string | unknown[] | Record<string, any>;
193
+ buttonClass: string | unknown[] | Record<string, any>;
194
+ menuSize: MenuSizeVariant;
195
+ noAnimation: boolean;
196
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
197
+ beforeCreate?: (() => void) | (() => void)[];
198
+ created?: (() => void) | (() => void)[];
199
+ beforeMount?: (() => void) | (() => void)[];
200
+ mounted?: (() => void) | (() => void)[];
201
+ beforeUpdate?: (() => void) | (() => void)[];
202
+ updated?: (() => void) | (() => void)[];
203
+ activated?: (() => void) | (() => void)[];
204
+ deactivated?: (() => void) | (() => void)[];
205
+ beforeDestroy?: (() => void) | (() => void)[];
206
+ beforeUnmount?: (() => void) | (() => void)[];
207
+ destroyed?: (() => void) | (() => void)[];
208
+ unmounted?: (() => void) | (() => void)[];
209
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
210
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
211
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
212
+ };
213
+ $forceUpdate: () => void;
214
+ $nextTick: typeof import("vue").nextTick;
215
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
216
+ } & Readonly<{
217
+ text: string;
218
+ size: SizeVariant;
219
+ modelValue: boolean;
220
+ disabled: boolean;
221
+ noCaret: boolean;
222
+ icon: boolean;
223
+ pill: boolean;
224
+ variant: import("../button").StyleVariant;
225
+ divider: boolean;
226
+ color: import("../button").ColorVariant;
227
+ placement: import("@floating-ui/utils").Placement;
228
+ menuClass: string | unknown[] | Record<string, any>;
229
+ buttonClass: string | unknown[] | Record<string, any>;
230
+ menuSize: MenuSizeVariant;
231
+ noAnimation: boolean;
232
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
233
+ modelValue: {
234
+ type: BooleanConstructor;
235
+ default: boolean;
236
+ };
237
+ text: {
238
+ type: StringConstructor;
239
+ default: string;
240
+ };
241
+ placement: {
242
+ type: PropType<import("@floating-ui/utils").Placement>;
243
+ default: string;
244
+ };
245
+ variant: {
246
+ type: PropType<import("../button").StyleVariant>;
247
+ default: string;
248
+ };
249
+ color: {
250
+ type: PropType<import("../button").ColorVariant>;
251
+ default: string;
252
+ };
253
+ size: {
254
+ type: PropType<SizeVariant>;
255
+ default: string;
256
+ };
257
+ icon: {
258
+ type: BooleanConstructor;
259
+ default: boolean;
260
+ };
261
+ pill: {
262
+ type: BooleanConstructor;
263
+ default: boolean;
264
+ };
265
+ disabled: {
266
+ type: BooleanConstructor;
267
+ default: boolean;
268
+ };
269
+ noCaret: {
270
+ type: BooleanConstructor;
271
+ default: boolean;
272
+ };
273
+ divider: {
274
+ type: BooleanConstructor;
275
+ default: boolean;
276
+ };
277
+ menuClass: {
278
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
279
+ default: undefined;
280
+ };
281
+ buttonClass: {
282
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
283
+ default: undefined;
284
+ };
285
+ menuSize: {
286
+ type: PropType<MenuSizeVariant>;
287
+ default: string;
288
+ };
289
+ noAnimation: {
290
+ type: BooleanConstructor;
291
+ default: boolean;
292
+ };
293
+ }>> & Readonly<{
294
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
295
+ onShow?: (() => any) | undefined;
296
+ onHide?: (() => any) | undefined;
297
+ }>, "menu" | "close" | "menuBody" | "root" | "open" | ("text" | "size" | "modelValue" | "disabled" | "noCaret" | "icon" | "pill" | "variant" | "divider" | "color" | "placement" | "menuClass" | "buttonClass" | "menuSize" | "noAnimation")> & import("vue").ShallowUnwrapRef<{
298
+ menuBody: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
299
+ menu: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
300
+ root: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
301
+ open: () => void;
302
+ close: () => void;
303
+ }> & {} & import("vue").ComponentCustomProperties & {} & {
304
+ $slots: Readonly<{
305
+ activator(props: {
306
+ isOpen: boolean;
307
+ open: () => void;
308
+ close: () => void;
309
+ toggle: () => void;
310
+ }): VNode[];
311
+ 'button-content': () => VNode[];
312
+ prepend: () => VNode[];
313
+ append: () => VNode[];
314
+ }> & {
315
+ activator(props: {
316
+ isOpen: boolean;
317
+ open: () => void;
318
+ close: () => void;
319
+ toggle: () => void;
320
+ }): VNode[];
321
+ 'button-content': () => VNode[];
322
+ prepend: () => VNode[];
323
+ append: () => VNode[];
324
+ };
325
+ }) | null;
326
+ input: ({
327
+ $: import("vue").ComponentInternalInstance;
328
+ $data: {};
329
+ $props: Partial<{
330
+ size: SizeVariant;
331
+ modelValue: string | number;
332
+ disabled: boolean;
333
+ error: boolean;
334
+ readonly: boolean;
335
+ clearable: boolean;
336
+ containerClass: string | unknown[] | Record<string, any>;
337
+ accept: import("../input").AcceptVariant;
338
+ }> & Omit<{
339
+ readonly size: SizeVariant;
340
+ readonly disabled: boolean;
341
+ readonly error: boolean;
342
+ readonly readonly: boolean;
343
+ readonly clearable: boolean;
344
+ readonly modelValue?: string | number | undefined;
345
+ readonly containerClass?: string | unknown[] | Record<string, any> | undefined;
346
+ readonly accept?: import("../input").AcceptVariant | undefined;
347
+ readonly onClear?: ((args_0: MouseEvent) => any) | undefined;
348
+ readonly "onUpdate:modelValue"?: ((args_0: string | number) => any) | undefined;
349
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "modelValue" | "disabled" | "error" | "readonly" | "clearable" | "containerClass" | "accept">;
350
+ $attrs: {
351
+ [x: string]: unknown;
352
+ };
353
+ $refs: {
354
+ [x: string]: unknown;
355
+ };
356
+ $slots: Readonly<{
357
+ [name: string]: import("vue").Slot<any> | undefined;
358
+ }>;
359
+ $root: import("vue").ComponentPublicInstance | null;
360
+ $parent: import("vue").ComponentPublicInstance | null;
361
+ $host: Element | null;
362
+ $emit: ((event: "clear", args_0: MouseEvent) => void) & ((event: "update:modelValue", args_0: string | number) => void);
363
+ $el: any;
364
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
365
+ modelValue: {
366
+ type: (StringConstructor | NumberConstructor)[];
367
+ default: undefined;
368
+ };
369
+ size: {
370
+ type: PropType<SizeVariant>;
371
+ default: string;
372
+ };
373
+ disabled: {
374
+ type: BooleanConstructor;
375
+ default: boolean;
376
+ };
377
+ readonly: {
378
+ type: BooleanConstructor;
379
+ default: boolean;
380
+ };
381
+ error: {
382
+ type: BooleanConstructor;
383
+ default: boolean;
384
+ };
385
+ clearable: {
386
+ type: BooleanConstructor;
387
+ default: boolean;
388
+ };
389
+ containerClass: {
390
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
391
+ default: undefined;
392
+ };
393
+ accept: {
394
+ type: PropType<import("../input").AcceptVariant>;
395
+ default: undefined;
396
+ };
397
+ }>> & Readonly<{
398
+ onClear?: ((args_0: MouseEvent) => any) | undefined;
399
+ "onUpdate:modelValue"?: ((args_0: string | number) => any) | undefined;
400
+ }>, {
401
+ input: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
402
+ clear: (event: MouseEvent) => void;
403
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
404
+ clear: (args_0: MouseEvent) => void;
405
+ "update:modelValue": (args_0: string | number) => void;
406
+ }, string, {
407
+ size: SizeVariant;
408
+ modelValue: string | number;
409
+ disabled: boolean;
410
+ error: boolean;
411
+ readonly: boolean;
412
+ clearable: boolean;
413
+ containerClass: string | unknown[] | Record<string, any>;
414
+ accept: import("../input").AcceptVariant;
415
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
416
+ beforeCreate?: (() => void) | (() => void)[];
417
+ created?: (() => void) | (() => void)[];
418
+ beforeMount?: (() => void) | (() => void)[];
419
+ mounted?: (() => void) | (() => void)[];
420
+ beforeUpdate?: (() => void) | (() => void)[];
421
+ updated?: (() => void) | (() => void)[];
422
+ activated?: (() => void) | (() => void)[];
423
+ deactivated?: (() => void) | (() => void)[];
424
+ beforeDestroy?: (() => void) | (() => void)[];
425
+ beforeUnmount?: (() => void) | (() => void)[];
426
+ destroyed?: (() => void) | (() => void)[];
427
+ unmounted?: (() => void) | (() => void)[];
428
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
429
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
430
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
431
+ };
432
+ $forceUpdate: () => void;
433
+ $nextTick: typeof import("vue").nextTick;
434
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
435
+ } & Readonly<{
436
+ size: SizeVariant;
437
+ modelValue: string | number;
438
+ disabled: boolean;
439
+ error: boolean;
440
+ readonly: boolean;
441
+ clearable: boolean;
442
+ containerClass: string | unknown[] | Record<string, any>;
443
+ accept: import("../input").AcceptVariant;
444
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
445
+ modelValue: {
446
+ type: (StringConstructor | NumberConstructor)[];
447
+ default: undefined;
448
+ };
449
+ size: {
450
+ type: PropType<SizeVariant>;
451
+ default: string;
452
+ };
453
+ disabled: {
454
+ type: BooleanConstructor;
455
+ default: boolean;
456
+ };
457
+ readonly: {
458
+ type: BooleanConstructor;
459
+ default: boolean;
460
+ };
461
+ error: {
462
+ type: BooleanConstructor;
463
+ default: boolean;
464
+ };
465
+ clearable: {
466
+ type: BooleanConstructor;
467
+ default: boolean;
468
+ };
469
+ containerClass: {
470
+ type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
471
+ default: undefined;
472
+ };
473
+ accept: {
474
+ type: PropType<import("../input").AcceptVariant>;
475
+ default: undefined;
476
+ };
477
+ }>> & Readonly<{
478
+ onClear?: ((args_0: MouseEvent) => any) | undefined;
479
+ "onUpdate:modelValue"?: ((args_0: string | number) => any) | undefined;
480
+ }>, "input" | "clear" | ("size" | "modelValue" | "disabled" | "error" | "readonly" | "clearable" | "containerClass" | "accept")> & import("vue").ShallowUnwrapRef<{
481
+ input: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
482
+ clear: (event: MouseEvent) => void;
483
+ }> & {} & import("vue").ComponentCustomProperties & {} & {
484
+ $slots: Readonly<{
485
+ prepend(): VNode[];
486
+ append(): VNode[];
487
+ }> & {
488
+ prepend(): VNode[];
489
+ append(): VNode[];
490
+ };
491
+ }) | null;
492
+ };
493
+ rootEl: any;
494
+ };
495
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
496
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
497
+ modelValue: {
498
+ type: PropType<any>;
499
+ default: undefined;
500
+ };
501
+ selected: {
502
+ type: PropType<SelectItem | SelectItem[]>;
503
+ default: undefined;
504
+ };
505
+ options: {
506
+ type: PropType<string[] | SelectItem[]>;
507
+ default: () => never[];
508
+ };
509
+ placeholder: {
510
+ type: StringConstructor;
511
+ default: string;
512
+ };
513
+ emptyText: {
514
+ type: StringConstructor;
515
+ default: string;
516
+ };
517
+ loadingText: {
518
+ type: StringConstructor;
519
+ default: string;
520
+ };
521
+ searchText: {
522
+ type: StringConstructor;
523
+ default: string;
524
+ };
525
+ adapter: {
526
+ type: PropType<Adapter>;
527
+ default: () => Adapter;
528
+ };
529
+ disabled: {
530
+ type: BooleanConstructor;
531
+ default: boolean;
532
+ };
533
+ readonly: {
534
+ type: BooleanConstructor;
535
+ default: boolean;
536
+ };
537
+ error: {
538
+ type: BooleanConstructor;
539
+ default: boolean;
540
+ };
541
+ clearable: {
542
+ type: BooleanConstructor;
543
+ default: boolean;
544
+ };
545
+ clearLabel: {
546
+ type: StringConstructor;
547
+ default: string;
548
+ };
549
+ size: {
550
+ type: PropType<SizeVariant>;
551
+ default: string;
552
+ };
553
+ sectionLabel: {
554
+ type: StringConstructor;
555
+ default: undefined;
556
+ };
557
+ noCaret: {
558
+ type: BooleanConstructor;
559
+ default: boolean;
560
+ };
561
+ multiple: {
562
+ type: BooleanConstructor;
563
+ default: boolean;
564
+ };
565
+ displayLimit: {
566
+ type: NumberConstructor;
567
+ default: undefined;
568
+ };
569
+ limitText: {
570
+ type: StringConstructor;
571
+ default: undefined;
572
+ };
573
+ searchable: {
574
+ type: BooleanConstructor;
575
+ default: boolean;
576
+ };
577
+ menuSize: {
578
+ type: PropType<MenuSizeVariant>;
579
+ default: undefined;
580
+ };
581
+ menuClass: {
582
+ type: PropType<HTMLAttributes["class"]>;
583
+ default: undefined;
584
+ };
585
+ divider: {
586
+ type: BooleanConstructor;
587
+ default: boolean;
588
+ };
589
+ /**
590
+ * For testing only, disable transition animation
591
+ */
592
+ noAnimation: {
593
+ type: BooleanConstructor;
594
+ default: boolean;
595
+ };
596
+ noCloseAfterSelect: {
597
+ type: BooleanConstructor;
598
+ default: boolean;
599
+ };
600
+ }>, {
601
+ keyword: import("vue").Ref<string, string>;
602
+ isOpen: import("vue").Ref<boolean, boolean>;
603
+ isLoading: import("vue").WritableComputedRef<boolean, boolean>;
604
+ menuEl: import("vue").ComputedRef<HTMLDivElement | undefined>;
605
+ toggle: () => void;
606
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
607
+ "update:modelValue": (args_0: unknown) => void;
608
+ change: (args_0: unknown) => void;
609
+ "update:selected": (args_0: unknown) => void;
610
+ userInput: (args_0: unknown) => void;
611
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
612
+ modelValue: {
613
+ type: PropType<any>;
614
+ default: undefined;
615
+ };
616
+ selected: {
617
+ type: PropType<SelectItem | SelectItem[]>;
618
+ default: undefined;
619
+ };
620
+ options: {
621
+ type: PropType<string[] | SelectItem[]>;
622
+ default: () => never[];
623
+ };
624
+ placeholder: {
625
+ type: StringConstructor;
626
+ default: string;
627
+ };
628
+ emptyText: {
629
+ type: StringConstructor;
630
+ default: string;
631
+ };
632
+ loadingText: {
633
+ type: StringConstructor;
634
+ default: string;
635
+ };
636
+ searchText: {
637
+ type: StringConstructor;
638
+ default: string;
639
+ };
640
+ adapter: {
641
+ type: PropType<Adapter>;
642
+ default: () => Adapter;
643
+ };
644
+ disabled: {
645
+ type: BooleanConstructor;
646
+ default: boolean;
647
+ };
648
+ readonly: {
649
+ type: BooleanConstructor;
650
+ default: boolean;
651
+ };
652
+ error: {
653
+ type: BooleanConstructor;
654
+ default: boolean;
655
+ };
656
+ clearable: {
657
+ type: BooleanConstructor;
658
+ default: boolean;
659
+ };
660
+ clearLabel: {
661
+ type: StringConstructor;
662
+ default: string;
663
+ };
664
+ size: {
665
+ type: PropType<SizeVariant>;
666
+ default: string;
667
+ };
668
+ sectionLabel: {
669
+ type: StringConstructor;
670
+ default: undefined;
671
+ };
672
+ noCaret: {
673
+ type: BooleanConstructor;
674
+ default: boolean;
675
+ };
676
+ multiple: {
677
+ type: BooleanConstructor;
678
+ default: boolean;
679
+ };
680
+ displayLimit: {
681
+ type: NumberConstructor;
682
+ default: undefined;
683
+ };
684
+ limitText: {
685
+ type: StringConstructor;
686
+ default: undefined;
687
+ };
688
+ searchable: {
689
+ type: BooleanConstructor;
690
+ default: boolean;
691
+ };
692
+ menuSize: {
693
+ type: PropType<MenuSizeVariant>;
694
+ default: undefined;
695
+ };
696
+ menuClass: {
697
+ type: PropType<HTMLAttributes["class"]>;
698
+ default: undefined;
699
+ };
700
+ divider: {
701
+ type: BooleanConstructor;
702
+ default: boolean;
703
+ };
704
+ /**
705
+ * For testing only, disable transition animation
706
+ */
707
+ noAnimation: {
708
+ type: BooleanConstructor;
709
+ default: boolean;
710
+ };
711
+ noCloseAfterSelect: {
712
+ type: BooleanConstructor;
713
+ default: boolean;
714
+ };
715
+ }>> & Readonly<{
716
+ "onUpdate:modelValue"?: ((args_0: unknown) => any) | undefined;
717
+ onChange?: ((args_0: unknown) => any) | undefined;
718
+ "onUpdate:selected"?: ((args_0: unknown) => any) | undefined;
719
+ onUserInput?: ((args_0: unknown) => any) | undefined;
720
+ }>, {
721
+ size: SizeVariant;
722
+ modelValue: any;
723
+ disabled: boolean;
724
+ noCaret: boolean;
725
+ error: boolean;
726
+ multiple: boolean;
727
+ divider: boolean;
728
+ menuClass: any;
729
+ menuSize: MenuSizeVariant;
730
+ noAnimation: boolean;
731
+ options: string[] | SelectItem[];
732
+ readonly: boolean;
733
+ clearable: boolean;
734
+ placeholder: string;
735
+ adapter: Adapter;
736
+ selected: SelectItem | SelectItem[];
737
+ displayLimit: number;
738
+ limitText: string;
739
+ emptyText: string;
740
+ loadingText: string;
741
+ searchText: string;
742
+ clearLabel: string;
743
+ sectionLabel: string;
744
+ searchable: boolean;
745
+ noCloseAfterSelect: boolean;
746
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
747
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
748
+ export default _default;
749
+ type __VLS_WithTemplateSlots<T, S> = T & {
750
+ new (): {
751
+ $slots: S;
752
+ };
753
+ };