vueless 0.0.473 → 0.0.475

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 (385) hide show
  1. package/adatper.locale/locales/en.d.ts +289 -0
  2. package/adatper.locale/vue-i18n.d.ts +9 -0
  3. package/adatper.locale/vueless.d.ts +11 -0
  4. package/composables/useAutoPosition.d.ts +15 -0
  5. package/composables/useBreakpoint.d.ts +7 -0
  6. package/composables/useBreakpoint.js +1 -1
  7. package/composables/useLocale.d.ts +3 -0
  8. package/composables/useMutationObserver.d.ts +7 -0
  9. package/composables/useUI.d.ts +17 -0
  10. package/composablesTs/useAutoPosition.d.ts +28 -0
  11. package/composablesTs/useAutoPosition.ts +115 -0
  12. package/composablesTs/useBreakpoint.d.ts +7 -0
  13. package/composablesTs/useBreakpoint.ts +106 -0
  14. package/composablesTs/useLocale.d.ts +3 -0
  15. package/composablesTs/useLocale.ts +25 -0
  16. package/composablesTs/useMutationObserver.d.ts +8 -0
  17. package/composablesTs/useMutationObserver.ts +50 -0
  18. package/composablesTs/useUI.d.ts +68 -0
  19. package/composablesTs/useUI.ts +566 -0
  20. package/constants.d.ts +42 -0
  21. package/constants.js +2 -0
  22. package/constants.ts +73 -0
  23. package/directives/clickOutside/storybook/stories.d.ts +653 -0
  24. package/directives/clickOutside/vClickOutside.d.ts +6 -0
  25. package/directives/clickOutside/vClickOutside.js +2 -2
  26. package/directives/index.d.ts +2 -0
  27. package/directives/tooltip/storybook/stories.d.ts +252 -0
  28. package/directives/tooltip/storybook/stories.js +5 -5
  29. package/directives/tooltip/vTooltip.d.ts +6 -0
  30. package/index.d.ts +15 -0
  31. package/{index.js → index.ts} +9 -6
  32. package/package.json +28 -17
  33. package/preset.tailwind.d.ts +116 -0
  34. package/{preset.tailwind.js → preset.tailwind.ts} +33 -24
  35. package/types.d.ts +131 -0
  36. package/types.ts +218 -0
  37. package/ui.button/UButton.vue.d.ts +73 -0
  38. package/ui.button/config.d.ts +130 -0
  39. package/ui.button/constants.d.ts +1 -0
  40. package/ui.button/storybook/stories.d.ts +3062 -0
  41. package/ui.button/useAttrs.d.ts +11 -0
  42. package/ui.button-link/ULink.vue +1 -1
  43. package/ui.button-link/ULink.vue.d.ts +66 -0
  44. package/ui.button-link/config.d.ts +101 -0
  45. package/ui.button-link/constants.d.ts +1 -0
  46. package/ui.button-link/storybook/stories.d.ts +4567 -0
  47. package/ui.button-link/useAttrs.d.ts +14 -0
  48. package/ui.button-toggle/UToggle.vue.d.ts +50 -0
  49. package/ui.button-toggle/config.d.ts +65 -0
  50. package/ui.button-toggle/constants.d.ts +3 -0
  51. package/ui.button-toggle/storybook/stories.d.ts +2683 -0
  52. package/ui.button-toggle/useAttrs.d.ts +11 -0
  53. package/ui.button-toggle-item/UToggleItem.vue.d.ts +36 -0
  54. package/ui.button-toggle-item/config.d.ts +41 -0
  55. package/ui.button-toggle-item/constants.d.ts +1 -0
  56. package/ui.button-toggle-item/storybook/stories.d.ts +495 -0
  57. package/ui.button-toggle-item/useAttrs.d.ts +15 -0
  58. package/ui.container-accordion/UAccordion.vue.d.ts +32 -0
  59. package/ui.container-accordion/config.d.ts +40 -0
  60. package/ui.container-accordion/constants.d.ts +1 -0
  61. package/ui.container-accordion/storybook/stories.d.ts +732 -0
  62. package/ui.container-accordion/useAttrs.d.ts +13 -0
  63. package/ui.container-card/UCard.vue.d.ts +31 -0
  64. package/ui.container-card/config.d.ts +13 -0
  65. package/ui.container-card/constants.d.ts +1 -0
  66. package/ui.container-card/storybook/stories.d.ts +3906 -0
  67. package/ui.container-card/useAttrs.d.ts +11 -0
  68. package/ui.container-col/UCol.vue.d.ts +33 -0
  69. package/ui.container-col/config.d.ts +81 -0
  70. package/ui.container-col/constants.d.ts +1 -0
  71. package/ui.container-col/storybook/stories.d.ts +840 -0
  72. package/ui.container-col/useAttrs.d.ts +11 -0
  73. package/ui.container-divider/UDivider.vue.d.ts +25 -0
  74. package/ui.container-divider/config.d.ts +102 -0
  75. package/ui.container-divider/constants.d.ts +1 -0
  76. package/ui.container-divider/storybook/stories.d.ts +577 -0
  77. package/ui.container-divider/useAttrs.d.ts +11 -0
  78. package/ui.container-group/UGroup.vue.d.ts +33 -0
  79. package/ui.container-group/config.d.ts +38 -0
  80. package/ui.container-group/constants.d.ts +1 -0
  81. package/ui.container-group/storybook/stories.d.ts +2869 -0
  82. package/ui.container-group/useAttrs.d.ts +11 -0
  83. package/ui.container-modal/UModal.vue.d.ts +59 -0
  84. package/ui.container-modal/config.d.ts +77 -0
  85. package/ui.container-modal/constants.d.ts +1 -0
  86. package/ui.container-modal/storybook/stories.d.ts +8377 -0
  87. package/ui.container-modal/useAttrs.d.ts +11 -0
  88. package/ui.container-modal-confirm/UModalConfirm.vue.d.ts +59 -0
  89. package/ui.container-modal-confirm/config.d.ts +23 -0
  90. package/ui.container-modal-confirm/constants.d.ts +1 -0
  91. package/ui.container-modal-confirm/storybook/stories.d.ts +4494 -0
  92. package/ui.container-modal-confirm/useAttrs.d.ts +11 -0
  93. package/ui.container-page/UPage.vue.d.ts +47 -0
  94. package/ui.container-page/config.d.ts +85 -0
  95. package/ui.container-page/constants.d.ts +1 -0
  96. package/ui.container-page/storybook/stories.d.ts +8723 -0
  97. package/ui.container-page/useAttrs.d.ts +13 -0
  98. package/ui.container-row/URow.vue.d.ts +35 -0
  99. package/ui.container-row/config.d.ts +85 -0
  100. package/ui.container-row/constants.d.ts +1 -0
  101. package/ui.container-row/storybook/stories.d.ts +2619 -0
  102. package/ui.container-row/useAttrs.d.ts +11 -0
  103. package/ui.data-list/UDataList.vue +4 -4
  104. package/ui.data-list/UDataList.vue.d.ts +74 -0
  105. package/ui.data-list/config.d.ts +48 -0
  106. package/ui.data-list/constants.d.ts +1 -0
  107. package/ui.data-list/storybook/stories.d.ts +3342 -0
  108. package/ui.data-list/useAttrs.d.ts +11 -0
  109. package/ui.data-table/UTable.vue.d.ts +90 -0
  110. package/ui.data-table/UTableRow.vue.d.ts +61 -0
  111. package/ui.data-table/config.d.ts +128 -0
  112. package/ui.data-table/constants.d.ts +1 -0
  113. package/ui.data-table/storybook/stories.d.ts +13069 -0
  114. package/ui.data-table/useAttrs.d.ts +17 -0
  115. package/ui.data-table/utilTable.d.ts +9 -0
  116. package/ui.dropdown-badge/UDropdownBadge.vue.d.ts +145 -0
  117. package/ui.dropdown-badge/config.d.ts +39 -0
  118. package/ui.dropdown-badge/constants.d.ts +1 -0
  119. package/ui.dropdown-badge/storybook/stories.d.ts +1246 -0
  120. package/ui.dropdown-badge/useAttrs.d.ts +13 -0
  121. package/ui.dropdown-button/UDropdownButton.vue.d.ts +151 -0
  122. package/ui.dropdown-button/config.d.ts +52 -0
  123. package/ui.dropdown-button/constants.d.ts +4 -0
  124. package/ui.dropdown-button/storybook/stories.d.ts +1912 -0
  125. package/ui.dropdown-button/useAttrs.d.ts +13 -0
  126. package/ui.dropdown-link/UDropdownLink.vue.d.ts +149 -0
  127. package/ui.dropdown-link/config.d.ts +37 -0
  128. package/ui.dropdown-link/constants.d.ts +1 -0
  129. package/ui.dropdown-link/storybook/stories.d.ts +1333 -0
  130. package/ui.dropdown-link/useAttrs.d.ts +13 -0
  131. package/ui.dropdown-list/UDropdownList.vue.d.ts +59 -0
  132. package/ui.dropdown-list/config.d.ts +77 -0
  133. package/ui.dropdown-list/constants.d.ts +1 -0
  134. package/ui.dropdown-list/storybook/stories.d.ts +783 -0
  135. package/ui.dropdown-list/useAttrs.d.ts +11 -0
  136. package/ui.dropdown-list/usePointer.d.ts +8 -0
  137. package/ui.form-calendar/UCalendar.vue.d.ts +31 -0
  138. package/ui.form-calendar/UCalendarDayView.vue.d.ts +26 -0
  139. package/ui.form-calendar/UCalendarMonthView.vue.d.ts +26 -0
  140. package/ui.form-calendar/UCalendarYearView.vue.d.ts +26 -0
  141. package/ui.form-calendar/config.d.ts +207 -0
  142. package/ui.form-calendar/constants.d.ts +66 -0
  143. package/ui.form-calendar/storybook/stories.d.ts +262 -0
  144. package/ui.form-calendar/useAttrs.d.ts +11 -0
  145. package/ui.form-calendar/utilCalendar.d.ts +8 -0
  146. package/ui.form-calendar/utilDate.d.ts +30 -0
  147. package/ui.form-calendar/utilFormatting.d.ts +68 -0
  148. package/ui.form-checkbox/UCheckbox.vue.d.ts +50 -0
  149. package/ui.form-checkbox/config.d.ts +67 -0
  150. package/ui.form-checkbox/constants.d.ts +1 -0
  151. package/ui.form-checkbox/storybook/stories.d.ts +1589 -0
  152. package/ui.form-checkbox/useAttrs.d.ts +14 -0
  153. package/ui.form-checkbox-group/UCheckboxGroup.vue.d.ts +40 -0
  154. package/ui.form-checkbox-group/config.d.ts +21 -0
  155. package/ui.form-checkbox-group/constants.d.ts +1 -0
  156. package/ui.form-checkbox-group/storybook/stories.d.ts +2441 -0
  157. package/ui.form-checkbox-group/useAttrs.d.ts +11 -0
  158. package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue.d.ts +24 -0
  159. package/ui.form-checkbox-multi-state/config.d.ts +10 -0
  160. package/ui.form-checkbox-multi-state/constants.d.ts +1 -0
  161. package/ui.form-checkbox-multi-state/storybook/stories.d.ts +187 -0
  162. package/ui.form-checkbox-multi-state/useAttrs.d.ts +13 -0
  163. package/ui.form-color-picker/UColorPicker.vue.d.ts +28 -0
  164. package/ui.form-color-picker/config.d.ts +42 -0
  165. package/ui.form-color-picker/constants.d.ts +1 -0
  166. package/ui.form-color-picker/storybook/stories.d.ts +316 -0
  167. package/ui.form-color-picker/useAttrs.d.ts +11 -0
  168. package/ui.form-date-picker/UDatePicker.vue.d.ts +135 -0
  169. package/ui.form-date-picker/config.d.ts +184 -0
  170. package/ui.form-date-picker/constants.d.ts +1 -0
  171. package/ui.form-date-picker/index.d.ts +1 -0
  172. package/ui.form-date-picker/storybook/stories.d.ts +3242 -0
  173. package/ui.form-date-picker/useAttrs.d.ts +14 -0
  174. package/ui.form-date-picker-range/UDatePickerRange.vue.d.ts +545 -0
  175. package/ui.form-date-picker-range/UDatePickerRangeInputs.vue.d.ts +6 -0
  176. package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue.d.ts +7 -0
  177. package/ui.form-date-picker-range/config.d.ts +265 -0
  178. package/ui.form-date-picker-range/constants.d.ts +20 -0
  179. package/ui.form-date-picker-range/storybook/stories.d.ts +5545 -0
  180. package/ui.form-date-picker-range/useAttrs.d.ts +17 -0
  181. package/ui.form-date-picker-range/useUserFormat.d.ts +3 -0
  182. package/ui.form-date-picker-range/utilDateRange.d.ts +20 -0
  183. package/ui.form-date-picker-range/utilValidation.d.ts +3 -0
  184. package/ui.form-input/UInput.vue +1 -1
  185. package/ui.form-input/UInput.vue.d.ts +59 -0
  186. package/ui.form-input/config.d.ts +59 -0
  187. package/ui.form-input/constants.d.ts +1 -0
  188. package/ui.form-input/storybook/stories.d.ts +5734 -0
  189. package/ui.form-input/useAttrs.d.ts +11 -0
  190. package/ui.form-input-file/UInputFile.vue.d.ts +57 -0
  191. package/ui.form-input-file/config.d.ts +94 -0
  192. package/ui.form-input-file/constants.d.ts +1 -0
  193. package/ui.form-input-file/storybook/stories.d.ts +1116 -0
  194. package/ui.form-input-file/useAttrs.d.ts +11 -0
  195. package/ui.form-input-file/utilFileForm.d.ts +1 -0
  196. package/ui.form-input-money/UInputMoney.vue.d.ts +183 -0
  197. package/ui.form-input-money/config.d.ts +17 -0
  198. package/ui.form-input-money/constants.d.ts +1 -0
  199. package/ui.form-input-money/storybook/stories.d.ts +7519 -0
  200. package/ui.form-input-money/useAttrs.d.ts +11 -0
  201. package/ui.form-input-money/useFormatCurrency.d.ts +5 -0
  202. package/ui.form-input-money/useFormatCurrency.js +1 -1
  203. package/ui.form-input-money/utilFormat.d.ts +7 -0
  204. package/ui.form-input-number/UInputNumber.vue +4 -3
  205. package/ui.form-input-number/UInputNumber.vue.d.ts +30 -0
  206. package/ui.form-input-number/config.d.ts +40 -0
  207. package/ui.form-input-number/constants.d.ts +1 -0
  208. package/ui.form-input-number/storybook/stories.d.ts +363 -0
  209. package/ui.form-input-number/useAttrs.d.ts +11 -0
  210. package/ui.form-input-rating/UInputRating.vue.d.ts +49 -0
  211. package/ui.form-input-rating/config.d.ts +56 -0
  212. package/ui.form-input-rating/constants.d.ts +1 -0
  213. package/ui.form-input-rating/storybook/stories.d.ts +1336 -0
  214. package/ui.form-input-rating/useAttrs.d.ts +11 -0
  215. package/ui.form-input-search/UInputSearch.vue.d.ts +177 -0
  216. package/ui.form-input-search/config.d.ts +21 -0
  217. package/ui.form-input-search/constants.d.ts +1 -0
  218. package/ui.form-input-search/storybook/stories.d.ts +3325 -0
  219. package/ui.form-input-search/useAttrs.d.ts +11 -0
  220. package/ui.form-label/ULabel.vue.d.ts +46 -0
  221. package/ui.form-label/config.d.ts +139 -0
  222. package/ui.form-label/config.js +2 -2
  223. package/ui.form-label/constants.d.ts +8 -0
  224. package/ui.form-label/storybook/stories.d.ts +1133 -0
  225. package/ui.form-label/useAttrs.d.ts +11 -0
  226. package/ui.form-radio/URadio.vue.d.ts +46 -0
  227. package/ui.form-radio/config.d.ts +30 -0
  228. package/ui.form-radio/constants.d.ts +1 -0
  229. package/ui.form-radio/storybook/stories.d.ts +1270 -0
  230. package/ui.form-radio/useAttrs.d.ts +14 -0
  231. package/ui.form-radio-group/URadioGroup.vue.d.ts +40 -0
  232. package/ui.form-radio-group/config.d.ts +21 -0
  233. package/ui.form-radio-group/constants.d.ts +1 -0
  234. package/ui.form-radio-group/storybook/stories.d.ts +1239 -0
  235. package/ui.form-radio-group/useAttrs.d.ts +11 -0
  236. package/ui.form-select/USelect.vue.d.ts +405 -0
  237. package/ui.form-select/config.d.ts +146 -0
  238. package/ui.form-select/constants.d.ts +13 -0
  239. package/ui.form-select/storybook/stories.d.ts +19025 -0
  240. package/ui.form-select/useAttrs.d.ts +15 -0
  241. package/ui.form-select/utilSelect.d.ts +11 -0
  242. package/ui.form-switch/USwitch.vue.d.ts +30 -0
  243. package/ui.form-switch/config.d.ts +106 -0
  244. package/ui.form-switch/constants.d.ts +1 -0
  245. package/ui.form-switch/storybook/stories.d.ts +703 -0
  246. package/ui.form-switch/useAttrs.d.ts +13 -0
  247. package/ui.form-switch/utilVariant.d.ts +169 -0
  248. package/ui.form-textarea/UTextarea.vue.d.ts +132 -0
  249. package/ui.form-textarea/config.d.ts +55 -0
  250. package/ui.form-textarea/constants.d.ts +1 -0
  251. package/ui.form-textarea/storybook/stories.d.ts +2175 -0
  252. package/ui.form-textarea/useAttrs.d.ts +11 -0
  253. package/ui.image-avatar/UAvatar.vue.d.ts +40 -0
  254. package/ui.image-avatar/config.d.ts +51 -0
  255. package/ui.image-avatar/constants.d.ts +1 -0
  256. package/ui.image-avatar/storybook/stories.d.ts +1640 -0
  257. package/ui.image-avatar/useAttrs.d.ts +11 -0
  258. package/ui.image-icon/UIcon.vue.d.ts +28 -0
  259. package/ui.image-icon/config.d.ts +52 -0
  260. package/ui.image-icon/constants.d.ts +1 -0
  261. package/ui.image-icon/storybook/stories.d.ts +516 -0
  262. package/ui.image-icon/useAttrs.d.ts +11 -0
  263. package/ui.loader/ULoader.vue.d.ts +23 -0
  264. package/ui.loader/config.d.ts +49 -0
  265. package/ui.loader/constants.d.ts +2 -0
  266. package/ui.loader/storybook/stories.d.ts +655 -0
  267. package/ui.loader/useAttrs.d.ts +11 -0
  268. package/ui.loader-overlay/ULoaderOverlay.vue.d.ts +21 -0
  269. package/ui.loader-overlay/config.d.ts +25 -0
  270. package/ui.loader-overlay/constants.d.ts +1 -0
  271. package/ui.loader-overlay/storybook/stories.d.ts +362 -0
  272. package/ui.loader-overlay/useAttrs.d.ts +11 -0
  273. package/ui.loader-overlay/useLoaderOverlay.d.ts +10 -0
  274. package/ui.loader-overlay/utilLoaderOverlay.d.ts +2 -0
  275. package/ui.loader-progress/ULoaderProgress.vue.d.ts +11 -0
  276. package/ui.loader-progress/config.d.ts +24 -0
  277. package/ui.loader-progress/constants.d.ts +3 -0
  278. package/ui.loader-progress/storybook/stories.d.ts +742 -0
  279. package/ui.loader-progress/useAttrs.d.ts +11 -0
  280. package/ui.loader-progress/useLoaderProgress.d.ts +15 -0
  281. package/ui.loader-progress/utilLoaderProgress.d.ts +5 -0
  282. package/ui.navigation-pagination/UPagination.vue.d.ts +54 -0
  283. package/ui.navigation-pagination/config.d.ts +41 -0
  284. package/ui.navigation-pagination/constants.d.ts +1 -0
  285. package/ui.navigation-pagination/storybook/stories.d.ts +1033 -0
  286. package/ui.navigation-pagination/useAttrs.d.ts +11 -0
  287. package/ui.navigation-progress/StepperProgress.vue.d.ts +15 -0
  288. package/ui.navigation-progress/UProgress.vue.d.ts +41 -0
  289. package/ui.navigation-progress/config.d.ts +139 -0
  290. package/ui.navigation-progress/constants.d.ts +5 -0
  291. package/ui.navigation-progress/storybook/stories.d.ts +2827 -0
  292. package/ui.navigation-progress/useAttrs.d.ts +11 -0
  293. package/ui.navigation-tab/UTab.vue.d.ts +27 -0
  294. package/ui.navigation-tab/config.d.ts +24 -0
  295. package/ui.navigation-tab/constants.d.ts +1 -0
  296. package/ui.navigation-tab/storybook/stories.d.ts +316 -0
  297. package/ui.navigation-tab/useAttrs.d.ts +14 -0
  298. package/ui.navigation-tabs/UTabs.vue.d.ts +30 -0
  299. package/ui.navigation-tabs/config.d.ts +24 -0
  300. package/ui.navigation-tabs/constants.d.ts +1 -0
  301. package/ui.navigation-tabs/storybook/stories.d.ts +354 -0
  302. package/ui.navigation-tabs/useAttrs.d.ts +11 -0
  303. package/ui.other-dot/UDot.vue.d.ts +13 -0
  304. package/ui.other-dot/config.d.ts +28 -0
  305. package/ui.other-dot/constants.d.ts +1 -0
  306. package/ui.other-dot/storybook/stories.d.ts +645 -0
  307. package/ui.other-dot/useAttrs.d.ts +11 -0
  308. package/ui.text-alert/UAlert.vue.d.ts +53 -0
  309. package/ui.text-alert/config.d.ts +75 -0
  310. package/ui.text-alert/constants.d.ts +1 -0
  311. package/ui.text-alert/storybook/stories.d.ts +4845 -0
  312. package/ui.text-alert/useAttrs.d.ts +11 -0
  313. package/ui.text-badge/UBadge.vue.d.ts +60 -0
  314. package/ui.text-badge/config.d.ts +102 -0
  315. package/ui.text-badge/constants.d.ts +1 -0
  316. package/ui.text-badge/storybook/stories.d.ts +1869 -0
  317. package/ui.text-badge/useAttrs.d.ts +11 -0
  318. package/ui.text-block/UText.vue +18 -62
  319. package/ui.text-block/UText.vue.d.ts +21 -0
  320. package/ui.text-block/config.d.ts +27 -0
  321. package/ui.text-block/constants.d.ts +1 -0
  322. package/ui.text-block/storybook/Docs.mdx +2 -2
  323. package/ui.text-block/storybook/stories.d.ts +12 -0
  324. package/ui.text-block/storybook/{stories.js → stories.ts} +12 -7
  325. package/ui.text-block/types.d.ts +9 -0
  326. package/ui.text-block/types.ts +33 -0
  327. package/ui.text-block/useAttrs.d.ts +3 -0
  328. package/ui.text-block/useAttrs.ts +18 -0
  329. package/ui.text-empty/UEmpty.vue.d.ts +29 -0
  330. package/ui.text-empty/config.d.ts +55 -0
  331. package/ui.text-empty/constants.d.ts +1 -0
  332. package/ui.text-empty/storybook/stories.d.ts +1212 -0
  333. package/ui.text-empty/useAttrs.d.ts +11 -0
  334. package/ui.text-file/UFile.vue +12 -14
  335. package/ui.text-file/UFile.vue.d.ts +57 -0
  336. package/ui.text-file/config.d.ts +42 -0
  337. package/ui.text-file/config.js +12 -2
  338. package/ui.text-file/constants.d.ts +1 -0
  339. package/ui.text-file/storybook/stories.d.ts +136 -0
  340. package/ui.text-file/useAttrs.d.ts +11 -0
  341. package/ui.text-files/UFiles.vue.d.ts +52 -0
  342. package/ui.text-files/config.d.ts +10 -0
  343. package/ui.text-files/config.js +1 -1
  344. package/ui.text-files/constants.d.ts +1 -0
  345. package/ui.text-files/storybook/stories.d.ts +131 -0
  346. package/ui.text-files/useAttrs.d.ts +11 -0
  347. package/ui.text-header/UHeader.vue.d.ts +33 -0
  348. package/ui.text-header/config.d.ts +54 -0
  349. package/ui.text-header/constants.d.ts +1 -0
  350. package/ui.text-header/storybook/stories.d.ts +694 -0
  351. package/ui.text-header/useAttrs.d.ts +11 -0
  352. package/ui.text-money/UMoney.vue.d.ts +48 -0
  353. package/ui.text-money/config.d.ts +77 -0
  354. package/ui.text-money/constants.d.ts +1 -0
  355. package/ui.text-money/storybook/stories.d.ts +2090 -0
  356. package/ui.text-money/useAttrs.d.ts +11 -0
  357. package/ui.text-money/utilMoney.d.ts +14 -0
  358. package/ui.text-money/utilMoney.js +2 -2
  359. package/ui.text-notify/UNotify.vue.d.ts +13 -0
  360. package/ui.text-notify/config.d.ts +58 -0
  361. package/ui.text-notify/constants.d.ts +20 -0
  362. package/ui.text-notify/storybook/stories.d.ts +653 -0
  363. package/ui.text-notify/useAttrs.d.ts +11 -0
  364. package/ui.text-notify/utilNotify.d.ts +7 -0
  365. package/utils/utilHelper.d.ts +9 -0
  366. package/utils/utilPlatform.d.ts +6 -0
  367. package/utils/utilStorybook.d.ts +15 -0
  368. package/utils/utilUI.d.ts +68 -0
  369. package/utils/utilUI.js +1 -0
  370. package/utilsTs/utilHelper.d.ts +9 -0
  371. package/utilsTs/utilHelper.ts +70 -0
  372. package/utilsTs/utilPlatform.d.ts +7 -0
  373. package/utilsTs/utilPlatform.ts +53 -0
  374. package/utilsTs/utilStorybook.d.ts +24 -0
  375. package/utilsTs/utilStorybook.ts +292 -0
  376. package/utilsTs/utilTailwind.d.ts +1 -0
  377. package/utilsTs/utilTailwind.ts +38 -0
  378. package/utilsTs/utilTheme.d.ts +8 -0
  379. package/{utils/utilTheme.js → utilsTs/utilTheme.ts} +44 -23
  380. package/utilsTs/utilUI.d.ts +67 -0
  381. package/utilsTs/utilUI.ts +142 -0
  382. package/web-types.json +30 -120
  383. package/ui.text-block/useAttrs.js +0 -15
  384. /package/ui.text-block/{config.js → config.ts} +0 -0
  385. /package/ui.text-block/{constants.js → constants.ts} +0 -0
@@ -0,0 +1,3325 @@
1
+ declare namespace _default {
2
+ export let id: string;
3
+ export let title: string;
4
+ export { UInputSearch as component };
5
+ export let argTypes: {
6
+ defaultTemplate?: {
7
+ table: {
8
+ disable: boolean;
9
+ };
10
+ } | undefined;
11
+ slotTemplate?: {
12
+ table: {
13
+ disable: boolean;
14
+ };
15
+ } | undefined;
16
+ };
17
+ }
18
+ export default _default;
19
+ export function Default(args: any): {
20
+ components: {
21
+ UInputSearch: {
22
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
23
+ inputRef: import("vue").Ref<null, null>;
24
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
25
+ label: string;
26
+ id: string;
27
+ description: string;
28
+ error: string;
29
+ rightIcon: string;
30
+ leftIcon: string;
31
+ config: Record<string, any>;
32
+ dataTest: string;
33
+ modelValue: string;
34
+ placeholder: string;
35
+ searchButtonLabel: string;
36
+ disabled?: boolean | undefined;
37
+ size?: string | undefined;
38
+ labelAlign?: string | undefined;
39
+ readonly?: boolean | undefined;
40
+ minLength?: string | number | undefined;
41
+ debounce?: string | number | undefined;
42
+ $props: {
43
+ readonly label?: string | undefined;
44
+ readonly id?: string | undefined;
45
+ readonly description?: string | undefined;
46
+ readonly error?: string | undefined;
47
+ readonly rightIcon?: string | undefined;
48
+ readonly leftIcon?: string | undefined;
49
+ readonly config?: Record<string, any> | undefined;
50
+ readonly dataTest?: string | undefined;
51
+ readonly modelValue?: string | undefined;
52
+ readonly placeholder?: string | undefined;
53
+ readonly searchButtonLabel?: string | undefined;
54
+ readonly disabled?: boolean | undefined;
55
+ readonly size?: string | undefined;
56
+ readonly labelAlign?: string | undefined;
57
+ readonly readonly?: boolean | undefined;
58
+ readonly minLength?: string | number | undefined;
59
+ readonly debounce?: string | number | undefined;
60
+ };
61
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
62
+ P: {};
63
+ B: {};
64
+ D: {};
65
+ C: {};
66
+ M: {};
67
+ Defaults: {};
68
+ }, Readonly<{}> & Readonly<{}>, {
69
+ inputRef: import("vue").Ref<null, null>;
70
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
71
+ label: string;
72
+ id: string;
73
+ description: string;
74
+ error: string;
75
+ rightIcon: string;
76
+ leftIcon: string;
77
+ config: Record<string, any>;
78
+ dataTest: string;
79
+ modelValue: string;
80
+ placeholder: string;
81
+ searchButtonLabel: string;
82
+ disabled?: boolean | undefined;
83
+ size?: string | undefined;
84
+ labelAlign?: string | undefined;
85
+ readonly?: boolean | undefined;
86
+ minLength?: string | number | undefined;
87
+ debounce?: string | number | undefined;
88
+ $props: {
89
+ readonly label?: string | undefined;
90
+ readonly id?: string | undefined;
91
+ readonly description?: string | undefined;
92
+ readonly error?: string | undefined;
93
+ readonly rightIcon?: string | undefined;
94
+ readonly leftIcon?: string | undefined;
95
+ readonly config?: Record<string, any> | undefined;
96
+ readonly dataTest?: string | undefined;
97
+ readonly modelValue?: string | undefined;
98
+ readonly placeholder?: string | undefined;
99
+ readonly searchButtonLabel?: string | undefined;
100
+ readonly disabled?: boolean | undefined;
101
+ readonly size?: string | undefined;
102
+ readonly labelAlign?: string | undefined;
103
+ readonly readonly?: boolean | undefined;
104
+ readonly minLength?: string | number | undefined;
105
+ readonly debounce?: string | number | undefined;
106
+ };
107
+ }, {}, {}, {}, {}>;
108
+ __isFragment?: never;
109
+ __isTeleport?: never;
110
+ __isSuspense?: never;
111
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
112
+ inputRef: import("vue").Ref<null, null>;
113
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
114
+ label: string;
115
+ id: string;
116
+ description: string;
117
+ error: string;
118
+ rightIcon: string;
119
+ leftIcon: string;
120
+ config: Record<string, any>;
121
+ dataTest: string;
122
+ modelValue: string;
123
+ placeholder: string;
124
+ searchButtonLabel: string;
125
+ disabled?: boolean | undefined;
126
+ size?: string | undefined;
127
+ labelAlign?: string | undefined;
128
+ readonly?: boolean | undefined;
129
+ minLength?: string | number | undefined;
130
+ debounce?: string | number | undefined;
131
+ $props: {
132
+ readonly label?: string | undefined;
133
+ readonly id?: string | undefined;
134
+ readonly description?: string | undefined;
135
+ readonly error?: string | undefined;
136
+ readonly rightIcon?: string | undefined;
137
+ readonly leftIcon?: string | undefined;
138
+ readonly config?: Record<string, any> | undefined;
139
+ readonly dataTest?: string | undefined;
140
+ readonly modelValue?: string | undefined;
141
+ readonly placeholder?: string | undefined;
142
+ readonly searchButtonLabel?: string | undefined;
143
+ readonly disabled?: boolean | undefined;
144
+ readonly size?: string | undefined;
145
+ readonly labelAlign?: string | undefined;
146
+ readonly readonly?: boolean | undefined;
147
+ readonly minLength?: string | number | undefined;
148
+ readonly debounce?: string | number | undefined;
149
+ };
150
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
151
+ $slots: {
152
+ left?(_: {}): any;
153
+ "left-icon"?(_: {}): any;
154
+ "right-icon"?(_: {
155
+ iconName: any;
156
+ iconSize: any;
157
+ searchButtonLabel: string;
158
+ }): any;
159
+ right?(_: {}): any;
160
+ };
161
+ });
162
+ UButton: {
163
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
164
+ buttonRef: import("vue").Ref<null, null>;
165
+ label: string;
166
+ id: string;
167
+ rightIcon: string;
168
+ leftIcon: string;
169
+ config: Record<string, any>;
170
+ dataTest: string;
171
+ icon: string;
172
+ color?: string | undefined;
173
+ disabled?: boolean | undefined;
174
+ size?: string | undefined;
175
+ square?: boolean | undefined;
176
+ filled?: boolean | undefined;
177
+ variant?: string | undefined;
178
+ loading?: boolean | undefined;
179
+ tag?: string | undefined;
180
+ tabindex?: string | number | undefined;
181
+ block?: boolean | undefined;
182
+ round?: boolean | undefined;
183
+ noRing?: boolean | undefined;
184
+ $props: {
185
+ readonly label?: string | undefined;
186
+ readonly id?: string | undefined;
187
+ readonly rightIcon?: string | undefined;
188
+ readonly leftIcon?: string | undefined;
189
+ readonly config?: Record<string, any> | undefined;
190
+ readonly dataTest?: string | undefined;
191
+ readonly icon?: string | undefined;
192
+ readonly color?: string | undefined;
193
+ readonly disabled?: boolean | undefined;
194
+ readonly size?: string | undefined;
195
+ readonly square?: boolean | undefined;
196
+ readonly filled?: boolean | undefined;
197
+ readonly variant?: string | undefined;
198
+ readonly loading?: boolean | undefined;
199
+ readonly tag?: string | undefined;
200
+ readonly tabindex?: string | number | undefined;
201
+ readonly block?: boolean | undefined;
202
+ readonly round?: boolean | undefined;
203
+ readonly noRing?: boolean | undefined;
204
+ };
205
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
206
+ P: {};
207
+ B: {};
208
+ D: {};
209
+ C: {};
210
+ M: {};
211
+ Defaults: {};
212
+ }, Readonly<{}> & Readonly<{}>, {
213
+ buttonRef: import("vue").Ref<null, null>;
214
+ label: string;
215
+ id: string;
216
+ rightIcon: string;
217
+ leftIcon: string;
218
+ config: Record<string, any>;
219
+ dataTest: string;
220
+ icon: string;
221
+ color?: string | undefined;
222
+ disabled?: boolean | undefined;
223
+ size?: string | undefined;
224
+ square?: boolean | undefined;
225
+ filled?: boolean | undefined;
226
+ variant?: string | undefined;
227
+ loading?: boolean | undefined;
228
+ tag?: string | undefined;
229
+ tabindex?: string | number | undefined;
230
+ block?: boolean | undefined;
231
+ round?: boolean | undefined;
232
+ noRing?: boolean | undefined;
233
+ $props: {
234
+ readonly label?: string | undefined;
235
+ readonly id?: string | undefined;
236
+ readonly rightIcon?: string | undefined;
237
+ readonly leftIcon?: string | undefined;
238
+ readonly config?: Record<string, any> | undefined;
239
+ readonly dataTest?: string | undefined;
240
+ readonly icon?: string | undefined;
241
+ readonly color?: string | undefined;
242
+ readonly disabled?: boolean | undefined;
243
+ readonly size?: string | undefined;
244
+ readonly square?: boolean | undefined;
245
+ readonly filled?: boolean | undefined;
246
+ readonly variant?: string | undefined;
247
+ readonly loading?: boolean | undefined;
248
+ readonly tag?: string | undefined;
249
+ readonly tabindex?: string | number | undefined;
250
+ readonly block?: boolean | undefined;
251
+ readonly round?: boolean | undefined;
252
+ readonly noRing?: boolean | undefined;
253
+ };
254
+ }, {}, {}, {}, {}>;
255
+ __isFragment?: never;
256
+ __isTeleport?: never;
257
+ __isSuspense?: never;
258
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
259
+ buttonRef: import("vue").Ref<null, null>;
260
+ label: string;
261
+ id: string;
262
+ rightIcon: string;
263
+ leftIcon: string;
264
+ config: Record<string, any>;
265
+ dataTest: string;
266
+ icon: string;
267
+ color?: string | undefined;
268
+ disabled?: boolean | undefined;
269
+ size?: string | undefined;
270
+ square?: boolean | undefined;
271
+ filled?: boolean | undefined;
272
+ variant?: string | undefined;
273
+ loading?: boolean | undefined;
274
+ tag?: string | undefined;
275
+ tabindex?: string | number | undefined;
276
+ block?: boolean | undefined;
277
+ round?: boolean | undefined;
278
+ noRing?: boolean | undefined;
279
+ $props: {
280
+ readonly label?: string | undefined;
281
+ readonly id?: string | undefined;
282
+ readonly rightIcon?: string | undefined;
283
+ readonly leftIcon?: string | undefined;
284
+ readonly config?: Record<string, any> | undefined;
285
+ readonly dataTest?: string | undefined;
286
+ readonly icon?: string | undefined;
287
+ readonly color?: string | undefined;
288
+ readonly disabled?: boolean | undefined;
289
+ readonly size?: string | undefined;
290
+ readonly square?: boolean | undefined;
291
+ readonly filled?: boolean | undefined;
292
+ readonly variant?: string | undefined;
293
+ readonly loading?: boolean | undefined;
294
+ readonly tag?: string | undefined;
295
+ readonly tabindex?: string | number | undefined;
296
+ readonly block?: boolean | undefined;
297
+ readonly round?: boolean | undefined;
298
+ readonly noRing?: boolean | undefined;
299
+ };
300
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
301
+ $slots: {
302
+ left?(_: {
303
+ iconName: string;
304
+ iconSize: any;
305
+ iconColor: string | undefined;
306
+ }): any;
307
+ default?(_: {
308
+ label: string;
309
+ iconName: string;
310
+ iconSize: any;
311
+ iconColor: string | undefined;
312
+ }): any;
313
+ right?(_: {
314
+ iconName: string;
315
+ iconSize: any;
316
+ iconColor: string | undefined;
317
+ }): any;
318
+ };
319
+ });
320
+ UIcon: import("vue").DefineComponent<{}, {
321
+ $emit: (event: "click", ...args: any[]) => void;
322
+ config: Record<string, any>;
323
+ name: string;
324
+ src: Record<string, any>;
325
+ tooltip: string;
326
+ tooltipSettings: Record<string, any>;
327
+ dataTest: string;
328
+ internal: boolean;
329
+ color?: string | undefined;
330
+ size?: string | undefined;
331
+ interactive?: boolean | undefined;
332
+ variant?: string | undefined;
333
+ $props: {
334
+ readonly config?: Record<string, any> | undefined;
335
+ readonly name?: string | undefined;
336
+ readonly src?: Record<string, any> | undefined;
337
+ readonly tooltip?: string | undefined;
338
+ readonly tooltipSettings?: Record<string, any> | undefined;
339
+ readonly dataTest?: string | undefined;
340
+ readonly internal?: boolean | undefined;
341
+ readonly color?: string | undefined;
342
+ readonly size?: string | undefined;
343
+ readonly interactive?: boolean | undefined;
344
+ readonly variant?: string | undefined;
345
+ };
346
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
347
+ };
348
+ setup(): {
349
+ args: any;
350
+ slots: any;
351
+ };
352
+ template: string;
353
+ };
354
+ export namespace Default {
355
+ let args: {};
356
+ }
357
+ export function SearchButton(args: any): {
358
+ components: {
359
+ UInputSearch: {
360
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
361
+ inputRef: import("vue").Ref<null, null>;
362
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
363
+ label: string;
364
+ id: string;
365
+ description: string;
366
+ error: string;
367
+ rightIcon: string;
368
+ leftIcon: string;
369
+ config: Record<string, any>;
370
+ dataTest: string;
371
+ modelValue: string;
372
+ placeholder: string;
373
+ searchButtonLabel: string;
374
+ disabled?: boolean | undefined;
375
+ size?: string | undefined;
376
+ labelAlign?: string | undefined;
377
+ readonly?: boolean | undefined;
378
+ minLength?: string | number | undefined;
379
+ debounce?: string | number | undefined;
380
+ $props: {
381
+ readonly label?: string | undefined;
382
+ readonly id?: string | undefined;
383
+ readonly description?: string | undefined;
384
+ readonly error?: string | undefined;
385
+ readonly rightIcon?: string | undefined;
386
+ readonly leftIcon?: string | undefined;
387
+ readonly config?: Record<string, any> | undefined;
388
+ readonly dataTest?: string | undefined;
389
+ readonly modelValue?: string | undefined;
390
+ readonly placeholder?: string | undefined;
391
+ readonly searchButtonLabel?: string | undefined;
392
+ readonly disabled?: boolean | undefined;
393
+ readonly size?: string | undefined;
394
+ readonly labelAlign?: string | undefined;
395
+ readonly readonly?: boolean | undefined;
396
+ readonly minLength?: string | number | undefined;
397
+ readonly debounce?: string | number | undefined;
398
+ };
399
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
400
+ P: {};
401
+ B: {};
402
+ D: {};
403
+ C: {};
404
+ M: {};
405
+ Defaults: {};
406
+ }, Readonly<{}> & Readonly<{}>, {
407
+ inputRef: import("vue").Ref<null, null>;
408
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
409
+ label: string;
410
+ id: string;
411
+ description: string;
412
+ error: string;
413
+ rightIcon: string;
414
+ leftIcon: string;
415
+ config: Record<string, any>;
416
+ dataTest: string;
417
+ modelValue: string;
418
+ placeholder: string;
419
+ searchButtonLabel: string;
420
+ disabled?: boolean | undefined;
421
+ size?: string | undefined;
422
+ labelAlign?: string | undefined;
423
+ readonly?: boolean | undefined;
424
+ minLength?: string | number | undefined;
425
+ debounce?: string | number | undefined;
426
+ $props: {
427
+ readonly label?: string | undefined;
428
+ readonly id?: string | undefined;
429
+ readonly description?: string | undefined;
430
+ readonly error?: string | undefined;
431
+ readonly rightIcon?: string | undefined;
432
+ readonly leftIcon?: string | undefined;
433
+ readonly config?: Record<string, any> | undefined;
434
+ readonly dataTest?: string | undefined;
435
+ readonly modelValue?: string | undefined;
436
+ readonly placeholder?: string | undefined;
437
+ readonly searchButtonLabel?: string | undefined;
438
+ readonly disabled?: boolean | undefined;
439
+ readonly size?: string | undefined;
440
+ readonly labelAlign?: string | undefined;
441
+ readonly readonly?: boolean | undefined;
442
+ readonly minLength?: string | number | undefined;
443
+ readonly debounce?: string | number | undefined;
444
+ };
445
+ }, {}, {}, {}, {}>;
446
+ __isFragment?: never;
447
+ __isTeleport?: never;
448
+ __isSuspense?: never;
449
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
450
+ inputRef: import("vue").Ref<null, null>;
451
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
452
+ label: string;
453
+ id: string;
454
+ description: string;
455
+ error: string;
456
+ rightIcon: string;
457
+ leftIcon: string;
458
+ config: Record<string, any>;
459
+ dataTest: string;
460
+ modelValue: string;
461
+ placeholder: string;
462
+ searchButtonLabel: string;
463
+ disabled?: boolean | undefined;
464
+ size?: string | undefined;
465
+ labelAlign?: string | undefined;
466
+ readonly?: boolean | undefined;
467
+ minLength?: string | number | undefined;
468
+ debounce?: string | number | undefined;
469
+ $props: {
470
+ readonly label?: string | undefined;
471
+ readonly id?: string | undefined;
472
+ readonly description?: string | undefined;
473
+ readonly error?: string | undefined;
474
+ readonly rightIcon?: string | undefined;
475
+ readonly leftIcon?: string | undefined;
476
+ readonly config?: Record<string, any> | undefined;
477
+ readonly dataTest?: string | undefined;
478
+ readonly modelValue?: string | undefined;
479
+ readonly placeholder?: string | undefined;
480
+ readonly searchButtonLabel?: string | undefined;
481
+ readonly disabled?: boolean | undefined;
482
+ readonly size?: string | undefined;
483
+ readonly labelAlign?: string | undefined;
484
+ readonly readonly?: boolean | undefined;
485
+ readonly minLength?: string | number | undefined;
486
+ readonly debounce?: string | number | undefined;
487
+ };
488
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
489
+ $slots: {
490
+ left?(_: {}): any;
491
+ "left-icon"?(_: {}): any;
492
+ "right-icon"?(_: {
493
+ iconName: any;
494
+ iconSize: any;
495
+ searchButtonLabel: string;
496
+ }): any;
497
+ right?(_: {}): any;
498
+ };
499
+ });
500
+ UButton: {
501
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
502
+ buttonRef: import("vue").Ref<null, null>;
503
+ label: string;
504
+ id: string;
505
+ rightIcon: string;
506
+ leftIcon: string;
507
+ config: Record<string, any>;
508
+ dataTest: string;
509
+ icon: string;
510
+ color?: string | undefined;
511
+ disabled?: boolean | undefined;
512
+ size?: string | undefined;
513
+ square?: boolean | undefined;
514
+ filled?: boolean | undefined;
515
+ variant?: string | undefined;
516
+ loading?: boolean | undefined;
517
+ tag?: string | undefined;
518
+ tabindex?: string | number | undefined;
519
+ block?: boolean | undefined;
520
+ round?: boolean | undefined;
521
+ noRing?: boolean | undefined;
522
+ $props: {
523
+ readonly label?: string | undefined;
524
+ readonly id?: string | undefined;
525
+ readonly rightIcon?: string | undefined;
526
+ readonly leftIcon?: string | undefined;
527
+ readonly config?: Record<string, any> | undefined;
528
+ readonly dataTest?: string | undefined;
529
+ readonly icon?: string | undefined;
530
+ readonly color?: string | undefined;
531
+ readonly disabled?: boolean | undefined;
532
+ readonly size?: string | undefined;
533
+ readonly square?: boolean | undefined;
534
+ readonly filled?: boolean | undefined;
535
+ readonly variant?: string | undefined;
536
+ readonly loading?: boolean | undefined;
537
+ readonly tag?: string | undefined;
538
+ readonly tabindex?: string | number | undefined;
539
+ readonly block?: boolean | undefined;
540
+ readonly round?: boolean | undefined;
541
+ readonly noRing?: boolean | undefined;
542
+ };
543
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
544
+ P: {};
545
+ B: {};
546
+ D: {};
547
+ C: {};
548
+ M: {};
549
+ Defaults: {};
550
+ }, Readonly<{}> & Readonly<{}>, {
551
+ buttonRef: import("vue").Ref<null, null>;
552
+ label: string;
553
+ id: string;
554
+ rightIcon: string;
555
+ leftIcon: string;
556
+ config: Record<string, any>;
557
+ dataTest: string;
558
+ icon: string;
559
+ color?: string | undefined;
560
+ disabled?: boolean | undefined;
561
+ size?: string | undefined;
562
+ square?: boolean | undefined;
563
+ filled?: boolean | undefined;
564
+ variant?: string | undefined;
565
+ loading?: boolean | undefined;
566
+ tag?: string | undefined;
567
+ tabindex?: string | number | undefined;
568
+ block?: boolean | undefined;
569
+ round?: boolean | undefined;
570
+ noRing?: boolean | undefined;
571
+ $props: {
572
+ readonly label?: string | undefined;
573
+ readonly id?: string | undefined;
574
+ readonly rightIcon?: string | undefined;
575
+ readonly leftIcon?: string | undefined;
576
+ readonly config?: Record<string, any> | undefined;
577
+ readonly dataTest?: string | undefined;
578
+ readonly icon?: string | undefined;
579
+ readonly color?: string | undefined;
580
+ readonly disabled?: boolean | undefined;
581
+ readonly size?: string | undefined;
582
+ readonly square?: boolean | undefined;
583
+ readonly filled?: boolean | undefined;
584
+ readonly variant?: string | undefined;
585
+ readonly loading?: boolean | undefined;
586
+ readonly tag?: string | undefined;
587
+ readonly tabindex?: string | number | undefined;
588
+ readonly block?: boolean | undefined;
589
+ readonly round?: boolean | undefined;
590
+ readonly noRing?: boolean | undefined;
591
+ };
592
+ }, {}, {}, {}, {}>;
593
+ __isFragment?: never;
594
+ __isTeleport?: never;
595
+ __isSuspense?: never;
596
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
597
+ buttonRef: import("vue").Ref<null, null>;
598
+ label: string;
599
+ id: string;
600
+ rightIcon: string;
601
+ leftIcon: string;
602
+ config: Record<string, any>;
603
+ dataTest: string;
604
+ icon: string;
605
+ color?: string | undefined;
606
+ disabled?: boolean | undefined;
607
+ size?: string | undefined;
608
+ square?: boolean | undefined;
609
+ filled?: boolean | undefined;
610
+ variant?: string | undefined;
611
+ loading?: boolean | undefined;
612
+ tag?: string | undefined;
613
+ tabindex?: string | number | undefined;
614
+ block?: boolean | undefined;
615
+ round?: boolean | undefined;
616
+ noRing?: boolean | undefined;
617
+ $props: {
618
+ readonly label?: string | undefined;
619
+ readonly id?: string | undefined;
620
+ readonly rightIcon?: string | undefined;
621
+ readonly leftIcon?: string | undefined;
622
+ readonly config?: Record<string, any> | undefined;
623
+ readonly dataTest?: string | undefined;
624
+ readonly icon?: string | undefined;
625
+ readonly color?: string | undefined;
626
+ readonly disabled?: boolean | undefined;
627
+ readonly size?: string | undefined;
628
+ readonly square?: boolean | undefined;
629
+ readonly filled?: boolean | undefined;
630
+ readonly variant?: string | undefined;
631
+ readonly loading?: boolean | undefined;
632
+ readonly tag?: string | undefined;
633
+ readonly tabindex?: string | number | undefined;
634
+ readonly block?: boolean | undefined;
635
+ readonly round?: boolean | undefined;
636
+ readonly noRing?: boolean | undefined;
637
+ };
638
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
639
+ $slots: {
640
+ left?(_: {
641
+ iconName: string;
642
+ iconSize: any;
643
+ iconColor: string | undefined;
644
+ }): any;
645
+ default?(_: {
646
+ label: string;
647
+ iconName: string;
648
+ iconSize: any;
649
+ iconColor: string | undefined;
650
+ }): any;
651
+ right?(_: {
652
+ iconName: string;
653
+ iconSize: any;
654
+ iconColor: string | undefined;
655
+ }): any;
656
+ };
657
+ });
658
+ UIcon: import("vue").DefineComponent<{}, {
659
+ $emit: (event: "click", ...args: any[]) => void;
660
+ config: Record<string, any>;
661
+ name: string;
662
+ src: Record<string, any>;
663
+ tooltip: string;
664
+ tooltipSettings: Record<string, any>;
665
+ dataTest: string;
666
+ internal: boolean;
667
+ color?: string | undefined;
668
+ size?: string | undefined;
669
+ interactive?: boolean | undefined;
670
+ variant?: string | undefined;
671
+ $props: {
672
+ readonly config?: Record<string, any> | undefined;
673
+ readonly name?: string | undefined;
674
+ readonly src?: Record<string, any> | undefined;
675
+ readonly tooltip?: string | undefined;
676
+ readonly tooltipSettings?: Record<string, any> | undefined;
677
+ readonly dataTest?: string | undefined;
678
+ readonly internal?: boolean | undefined;
679
+ readonly color?: string | undefined;
680
+ readonly size?: string | undefined;
681
+ readonly interactive?: boolean | undefined;
682
+ readonly variant?: string | undefined;
683
+ };
684
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
685
+ };
686
+ setup(): {
687
+ args: any;
688
+ slots: any;
689
+ };
690
+ template: string;
691
+ };
692
+ export namespace SearchButton {
693
+ export namespace args_1 {
694
+ let searchButtonLabel: string;
695
+ }
696
+ export { args_1 as args };
697
+ }
698
+ export function MinLength(args: any): {
699
+ components: {
700
+ UInputSearch: {
701
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
702
+ inputRef: import("vue").Ref<null, null>;
703
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
704
+ label: string;
705
+ id: string;
706
+ description: string;
707
+ error: string;
708
+ rightIcon: string;
709
+ leftIcon: string;
710
+ config: Record<string, any>;
711
+ dataTest: string;
712
+ modelValue: string;
713
+ placeholder: string;
714
+ searchButtonLabel: string;
715
+ disabled?: boolean | undefined;
716
+ size?: string | undefined;
717
+ labelAlign?: string | undefined;
718
+ readonly?: boolean | undefined;
719
+ minLength?: string | number | undefined;
720
+ debounce?: string | number | undefined;
721
+ $props: {
722
+ readonly label?: string | undefined;
723
+ readonly id?: string | undefined;
724
+ readonly description?: string | undefined;
725
+ readonly error?: string | undefined;
726
+ readonly rightIcon?: string | undefined;
727
+ readonly leftIcon?: string | undefined;
728
+ readonly config?: Record<string, any> | undefined;
729
+ readonly dataTest?: string | undefined;
730
+ readonly modelValue?: string | undefined;
731
+ readonly placeholder?: string | undefined;
732
+ readonly searchButtonLabel?: string | undefined;
733
+ readonly disabled?: boolean | undefined;
734
+ readonly size?: string | undefined;
735
+ readonly labelAlign?: string | undefined;
736
+ readonly readonly?: boolean | undefined;
737
+ readonly minLength?: string | number | undefined;
738
+ readonly debounce?: string | number | undefined;
739
+ };
740
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
741
+ P: {};
742
+ B: {};
743
+ D: {};
744
+ C: {};
745
+ M: {};
746
+ Defaults: {};
747
+ }, Readonly<{}> & Readonly<{}>, {
748
+ inputRef: import("vue").Ref<null, null>;
749
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
750
+ label: string;
751
+ id: string;
752
+ description: string;
753
+ error: string;
754
+ rightIcon: string;
755
+ leftIcon: string;
756
+ config: Record<string, any>;
757
+ dataTest: string;
758
+ modelValue: string;
759
+ placeholder: string;
760
+ searchButtonLabel: string;
761
+ disabled?: boolean | undefined;
762
+ size?: string | undefined;
763
+ labelAlign?: string | undefined;
764
+ readonly?: boolean | undefined;
765
+ minLength?: string | number | undefined;
766
+ debounce?: string | number | undefined;
767
+ $props: {
768
+ readonly label?: string | undefined;
769
+ readonly id?: string | undefined;
770
+ readonly description?: string | undefined;
771
+ readonly error?: string | undefined;
772
+ readonly rightIcon?: string | undefined;
773
+ readonly leftIcon?: string | undefined;
774
+ readonly config?: Record<string, any> | undefined;
775
+ readonly dataTest?: string | undefined;
776
+ readonly modelValue?: string | undefined;
777
+ readonly placeholder?: string | undefined;
778
+ readonly searchButtonLabel?: string | undefined;
779
+ readonly disabled?: boolean | undefined;
780
+ readonly size?: string | undefined;
781
+ readonly labelAlign?: string | undefined;
782
+ readonly readonly?: boolean | undefined;
783
+ readonly minLength?: string | number | undefined;
784
+ readonly debounce?: string | number | undefined;
785
+ };
786
+ }, {}, {}, {}, {}>;
787
+ __isFragment?: never;
788
+ __isTeleport?: never;
789
+ __isSuspense?: never;
790
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
791
+ inputRef: import("vue").Ref<null, null>;
792
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
793
+ label: string;
794
+ id: string;
795
+ description: string;
796
+ error: string;
797
+ rightIcon: string;
798
+ leftIcon: string;
799
+ config: Record<string, any>;
800
+ dataTest: string;
801
+ modelValue: string;
802
+ placeholder: string;
803
+ searchButtonLabel: string;
804
+ disabled?: boolean | undefined;
805
+ size?: string | undefined;
806
+ labelAlign?: string | undefined;
807
+ readonly?: boolean | undefined;
808
+ minLength?: string | number | undefined;
809
+ debounce?: string | number | undefined;
810
+ $props: {
811
+ readonly label?: string | undefined;
812
+ readonly id?: string | undefined;
813
+ readonly description?: string | undefined;
814
+ readonly error?: string | undefined;
815
+ readonly rightIcon?: string | undefined;
816
+ readonly leftIcon?: string | undefined;
817
+ readonly config?: Record<string, any> | undefined;
818
+ readonly dataTest?: string | undefined;
819
+ readonly modelValue?: string | undefined;
820
+ readonly placeholder?: string | undefined;
821
+ readonly searchButtonLabel?: string | undefined;
822
+ readonly disabled?: boolean | undefined;
823
+ readonly size?: string | undefined;
824
+ readonly labelAlign?: string | undefined;
825
+ readonly readonly?: boolean | undefined;
826
+ readonly minLength?: string | number | undefined;
827
+ readonly debounce?: string | number | undefined;
828
+ };
829
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
830
+ $slots: {
831
+ left?(_: {}): any;
832
+ "left-icon"?(_: {}): any;
833
+ "right-icon"?(_: {
834
+ iconName: any;
835
+ iconSize: any;
836
+ searchButtonLabel: string;
837
+ }): any;
838
+ right?(_: {}): any;
839
+ };
840
+ });
841
+ UButton: {
842
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
843
+ buttonRef: import("vue").Ref<null, null>;
844
+ label: string;
845
+ id: string;
846
+ rightIcon: string;
847
+ leftIcon: string;
848
+ config: Record<string, any>;
849
+ dataTest: string;
850
+ icon: string;
851
+ color?: string | undefined;
852
+ disabled?: boolean | undefined;
853
+ size?: string | undefined;
854
+ square?: boolean | undefined;
855
+ filled?: boolean | undefined;
856
+ variant?: string | undefined;
857
+ loading?: boolean | undefined;
858
+ tag?: string | undefined;
859
+ tabindex?: string | number | undefined;
860
+ block?: boolean | undefined;
861
+ round?: boolean | undefined;
862
+ noRing?: boolean | undefined;
863
+ $props: {
864
+ readonly label?: string | undefined;
865
+ readonly id?: string | undefined;
866
+ readonly rightIcon?: string | undefined;
867
+ readonly leftIcon?: string | undefined;
868
+ readonly config?: Record<string, any> | undefined;
869
+ readonly dataTest?: string | undefined;
870
+ readonly icon?: string | undefined;
871
+ readonly color?: string | undefined;
872
+ readonly disabled?: boolean | undefined;
873
+ readonly size?: string | undefined;
874
+ readonly square?: boolean | undefined;
875
+ readonly filled?: boolean | undefined;
876
+ readonly variant?: string | undefined;
877
+ readonly loading?: boolean | undefined;
878
+ readonly tag?: string | undefined;
879
+ readonly tabindex?: string | number | undefined;
880
+ readonly block?: boolean | undefined;
881
+ readonly round?: boolean | undefined;
882
+ readonly noRing?: boolean | undefined;
883
+ };
884
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
885
+ P: {};
886
+ B: {};
887
+ D: {};
888
+ C: {};
889
+ M: {};
890
+ Defaults: {};
891
+ }, Readonly<{}> & Readonly<{}>, {
892
+ buttonRef: import("vue").Ref<null, null>;
893
+ label: string;
894
+ id: string;
895
+ rightIcon: string;
896
+ leftIcon: string;
897
+ config: Record<string, any>;
898
+ dataTest: string;
899
+ icon: string;
900
+ color?: string | undefined;
901
+ disabled?: boolean | undefined;
902
+ size?: string | undefined;
903
+ square?: boolean | undefined;
904
+ filled?: boolean | undefined;
905
+ variant?: string | undefined;
906
+ loading?: boolean | undefined;
907
+ tag?: string | undefined;
908
+ tabindex?: string | number | undefined;
909
+ block?: boolean | undefined;
910
+ round?: boolean | undefined;
911
+ noRing?: boolean | undefined;
912
+ $props: {
913
+ readonly label?: string | undefined;
914
+ readonly id?: string | undefined;
915
+ readonly rightIcon?: string | undefined;
916
+ readonly leftIcon?: string | undefined;
917
+ readonly config?: Record<string, any> | undefined;
918
+ readonly dataTest?: string | undefined;
919
+ readonly icon?: string | undefined;
920
+ readonly color?: string | undefined;
921
+ readonly disabled?: boolean | undefined;
922
+ readonly size?: string | undefined;
923
+ readonly square?: boolean | undefined;
924
+ readonly filled?: boolean | undefined;
925
+ readonly variant?: string | undefined;
926
+ readonly loading?: boolean | undefined;
927
+ readonly tag?: string | undefined;
928
+ readonly tabindex?: string | number | undefined;
929
+ readonly block?: boolean | undefined;
930
+ readonly round?: boolean | undefined;
931
+ readonly noRing?: boolean | undefined;
932
+ };
933
+ }, {}, {}, {}, {}>;
934
+ __isFragment?: never;
935
+ __isTeleport?: never;
936
+ __isSuspense?: never;
937
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
938
+ buttonRef: import("vue").Ref<null, null>;
939
+ label: string;
940
+ id: string;
941
+ rightIcon: string;
942
+ leftIcon: string;
943
+ config: Record<string, any>;
944
+ dataTest: string;
945
+ icon: string;
946
+ color?: string | undefined;
947
+ disabled?: boolean | undefined;
948
+ size?: string | undefined;
949
+ square?: boolean | undefined;
950
+ filled?: boolean | undefined;
951
+ variant?: string | undefined;
952
+ loading?: boolean | undefined;
953
+ tag?: string | undefined;
954
+ tabindex?: string | number | undefined;
955
+ block?: boolean | undefined;
956
+ round?: boolean | undefined;
957
+ noRing?: boolean | undefined;
958
+ $props: {
959
+ readonly label?: string | undefined;
960
+ readonly id?: string | undefined;
961
+ readonly rightIcon?: string | undefined;
962
+ readonly leftIcon?: string | undefined;
963
+ readonly config?: Record<string, any> | undefined;
964
+ readonly dataTest?: string | undefined;
965
+ readonly icon?: string | undefined;
966
+ readonly color?: string | undefined;
967
+ readonly disabled?: boolean | undefined;
968
+ readonly size?: string | undefined;
969
+ readonly square?: boolean | undefined;
970
+ readonly filled?: boolean | undefined;
971
+ readonly variant?: string | undefined;
972
+ readonly loading?: boolean | undefined;
973
+ readonly tag?: string | undefined;
974
+ readonly tabindex?: string | number | undefined;
975
+ readonly block?: boolean | undefined;
976
+ readonly round?: boolean | undefined;
977
+ readonly noRing?: boolean | undefined;
978
+ };
979
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
980
+ $slots: {
981
+ left?(_: {
982
+ iconName: string;
983
+ iconSize: any;
984
+ iconColor: string | undefined;
985
+ }): any;
986
+ default?(_: {
987
+ label: string;
988
+ iconName: string;
989
+ iconSize: any;
990
+ iconColor: string | undefined;
991
+ }): any;
992
+ right?(_: {
993
+ iconName: string;
994
+ iconSize: any;
995
+ iconColor: string | undefined;
996
+ }): any;
997
+ };
998
+ });
999
+ UIcon: import("vue").DefineComponent<{}, {
1000
+ $emit: (event: "click", ...args: any[]) => void;
1001
+ config: Record<string, any>;
1002
+ name: string;
1003
+ src: Record<string, any>;
1004
+ tooltip: string;
1005
+ tooltipSettings: Record<string, any>;
1006
+ dataTest: string;
1007
+ internal: boolean;
1008
+ color?: string | undefined;
1009
+ size?: string | undefined;
1010
+ interactive?: boolean | undefined;
1011
+ variant?: string | undefined;
1012
+ $props: {
1013
+ readonly config?: Record<string, any> | undefined;
1014
+ readonly name?: string | undefined;
1015
+ readonly src?: Record<string, any> | undefined;
1016
+ readonly tooltip?: string | undefined;
1017
+ readonly tooltipSettings?: Record<string, any> | undefined;
1018
+ readonly dataTest?: string | undefined;
1019
+ readonly internal?: boolean | undefined;
1020
+ readonly color?: string | undefined;
1021
+ readonly size?: string | undefined;
1022
+ readonly interactive?: boolean | undefined;
1023
+ readonly variant?: string | undefined;
1024
+ };
1025
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1026
+ };
1027
+ setup(): {
1028
+ args: any;
1029
+ slots: any;
1030
+ };
1031
+ template: string;
1032
+ };
1033
+ export namespace MinLength {
1034
+ export namespace args_2 {
1035
+ let minLength: number;
1036
+ }
1037
+ export { args_2 as args };
1038
+ }
1039
+ export function Sizes(args: any, { argTypes }?: {}): {
1040
+ components: {
1041
+ UInputSearch: {
1042
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1043
+ inputRef: import("vue").Ref<null, null>;
1044
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1045
+ label: string;
1046
+ id: string;
1047
+ description: string;
1048
+ error: string;
1049
+ rightIcon: string;
1050
+ leftIcon: string;
1051
+ config: Record<string, any>;
1052
+ dataTest: string;
1053
+ modelValue: string;
1054
+ placeholder: string;
1055
+ searchButtonLabel: string;
1056
+ disabled?: boolean | undefined;
1057
+ size?: string | undefined;
1058
+ labelAlign?: string | undefined;
1059
+ readonly?: boolean | undefined;
1060
+ minLength?: string | number | undefined;
1061
+ debounce?: string | number | undefined;
1062
+ $props: {
1063
+ readonly label?: string | undefined;
1064
+ readonly id?: string | undefined;
1065
+ readonly description?: string | undefined;
1066
+ readonly error?: string | undefined;
1067
+ readonly rightIcon?: string | undefined;
1068
+ readonly leftIcon?: string | undefined;
1069
+ readonly config?: Record<string, any> | undefined;
1070
+ readonly dataTest?: string | undefined;
1071
+ readonly modelValue?: string | undefined;
1072
+ readonly placeholder?: string | undefined;
1073
+ readonly searchButtonLabel?: string | undefined;
1074
+ readonly disabled?: boolean | undefined;
1075
+ readonly size?: string | undefined;
1076
+ readonly labelAlign?: string | undefined;
1077
+ readonly readonly?: boolean | undefined;
1078
+ readonly minLength?: string | number | undefined;
1079
+ readonly debounce?: string | number | undefined;
1080
+ };
1081
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1082
+ P: {};
1083
+ B: {};
1084
+ D: {};
1085
+ C: {};
1086
+ M: {};
1087
+ Defaults: {};
1088
+ }, Readonly<{}> & Readonly<{}>, {
1089
+ inputRef: import("vue").Ref<null, null>;
1090
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1091
+ label: string;
1092
+ id: string;
1093
+ description: string;
1094
+ error: string;
1095
+ rightIcon: string;
1096
+ leftIcon: string;
1097
+ config: Record<string, any>;
1098
+ dataTest: string;
1099
+ modelValue: string;
1100
+ placeholder: string;
1101
+ searchButtonLabel: string;
1102
+ disabled?: boolean | undefined;
1103
+ size?: string | undefined;
1104
+ labelAlign?: string | undefined;
1105
+ readonly?: boolean | undefined;
1106
+ minLength?: string | number | undefined;
1107
+ debounce?: string | number | undefined;
1108
+ $props: {
1109
+ readonly label?: string | undefined;
1110
+ readonly id?: string | undefined;
1111
+ readonly description?: string | undefined;
1112
+ readonly error?: string | undefined;
1113
+ readonly rightIcon?: string | undefined;
1114
+ readonly leftIcon?: string | undefined;
1115
+ readonly config?: Record<string, any> | undefined;
1116
+ readonly dataTest?: string | undefined;
1117
+ readonly modelValue?: string | undefined;
1118
+ readonly placeholder?: string | undefined;
1119
+ readonly searchButtonLabel?: string | undefined;
1120
+ readonly disabled?: boolean | undefined;
1121
+ readonly size?: string | undefined;
1122
+ readonly labelAlign?: string | undefined;
1123
+ readonly readonly?: boolean | undefined;
1124
+ readonly minLength?: string | number | undefined;
1125
+ readonly debounce?: string | number | undefined;
1126
+ };
1127
+ }, {}, {}, {}, {}>;
1128
+ __isFragment?: never;
1129
+ __isTeleport?: never;
1130
+ __isSuspense?: never;
1131
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1132
+ inputRef: import("vue").Ref<null, null>;
1133
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1134
+ label: string;
1135
+ id: string;
1136
+ description: string;
1137
+ error: string;
1138
+ rightIcon: string;
1139
+ leftIcon: string;
1140
+ config: Record<string, any>;
1141
+ dataTest: string;
1142
+ modelValue: string;
1143
+ placeholder: string;
1144
+ searchButtonLabel: string;
1145
+ disabled?: boolean | undefined;
1146
+ size?: string | undefined;
1147
+ labelAlign?: string | undefined;
1148
+ readonly?: boolean | undefined;
1149
+ minLength?: string | number | undefined;
1150
+ debounce?: string | number | undefined;
1151
+ $props: {
1152
+ readonly label?: string | undefined;
1153
+ readonly id?: string | undefined;
1154
+ readonly description?: string | undefined;
1155
+ readonly error?: string | undefined;
1156
+ readonly rightIcon?: string | undefined;
1157
+ readonly leftIcon?: string | undefined;
1158
+ readonly config?: Record<string, any> | undefined;
1159
+ readonly dataTest?: string | undefined;
1160
+ readonly modelValue?: string | undefined;
1161
+ readonly placeholder?: string | undefined;
1162
+ readonly searchButtonLabel?: string | undefined;
1163
+ readonly disabled?: boolean | undefined;
1164
+ readonly size?: string | undefined;
1165
+ readonly labelAlign?: string | undefined;
1166
+ readonly readonly?: boolean | undefined;
1167
+ readonly minLength?: string | number | undefined;
1168
+ readonly debounce?: string | number | undefined;
1169
+ };
1170
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1171
+ $slots: {
1172
+ left?(_: {}): any;
1173
+ "left-icon"?(_: {}): any;
1174
+ "right-icon"?(_: {
1175
+ iconName: any;
1176
+ iconSize: any;
1177
+ searchButtonLabel: string;
1178
+ }): any;
1179
+ right?(_: {}): any;
1180
+ };
1181
+ });
1182
+ URow: {
1183
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1184
+ config: Record<string, any>;
1185
+ dataTest: string;
1186
+ reverse?: boolean | undefined;
1187
+ content?: string | undefined;
1188
+ gap?: string | undefined;
1189
+ align?: string | undefined;
1190
+ justify?: string | undefined;
1191
+ wrap?: boolean | undefined;
1192
+ noMobile?: boolean | undefined;
1193
+ $props: {
1194
+ readonly config?: Record<string, any> | undefined;
1195
+ readonly dataTest?: string | undefined;
1196
+ readonly reverse?: boolean | undefined;
1197
+ readonly content?: string | undefined;
1198
+ readonly gap?: string | undefined;
1199
+ readonly align?: string | undefined;
1200
+ readonly justify?: string | undefined;
1201
+ readonly wrap?: boolean | undefined;
1202
+ readonly noMobile?: boolean | undefined;
1203
+ };
1204
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1205
+ P: {};
1206
+ B: {};
1207
+ D: {};
1208
+ C: {};
1209
+ M: {};
1210
+ Defaults: {};
1211
+ }, Readonly<{}> & Readonly<{}>, {
1212
+ config: Record<string, any>;
1213
+ dataTest: string;
1214
+ reverse?: boolean | undefined;
1215
+ content?: string | undefined;
1216
+ gap?: string | undefined;
1217
+ align?: string | undefined;
1218
+ justify?: string | undefined;
1219
+ wrap?: boolean | undefined;
1220
+ noMobile?: boolean | undefined;
1221
+ $props: {
1222
+ readonly config?: Record<string, any> | undefined;
1223
+ readonly dataTest?: string | undefined;
1224
+ readonly reverse?: boolean | undefined;
1225
+ readonly content?: string | undefined;
1226
+ readonly gap?: string | undefined;
1227
+ readonly align?: string | undefined;
1228
+ readonly justify?: string | undefined;
1229
+ readonly wrap?: boolean | undefined;
1230
+ readonly noMobile?: boolean | undefined;
1231
+ };
1232
+ }, {}, {}, {}, {}>;
1233
+ __isFragment?: never;
1234
+ __isTeleport?: never;
1235
+ __isSuspense?: never;
1236
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1237
+ config: Record<string, any>;
1238
+ dataTest: string;
1239
+ reverse?: boolean | undefined;
1240
+ content?: string | undefined;
1241
+ gap?: string | undefined;
1242
+ align?: string | undefined;
1243
+ justify?: string | undefined;
1244
+ wrap?: boolean | undefined;
1245
+ noMobile?: boolean | undefined;
1246
+ $props: {
1247
+ readonly config?: Record<string, any> | undefined;
1248
+ readonly dataTest?: string | undefined;
1249
+ readonly reverse?: boolean | undefined;
1250
+ readonly content?: string | undefined;
1251
+ readonly gap?: string | undefined;
1252
+ readonly align?: string | undefined;
1253
+ readonly justify?: string | undefined;
1254
+ readonly wrap?: boolean | undefined;
1255
+ readonly noMobile?: boolean | undefined;
1256
+ };
1257
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1258
+ $slots: {
1259
+ default?(_: {}): any;
1260
+ };
1261
+ });
1262
+ };
1263
+ setup(): {
1264
+ args: any;
1265
+ options: any;
1266
+ };
1267
+ template: string;
1268
+ };
1269
+ export namespace Sizes {
1270
+ export namespace args_3 {
1271
+ let _enum: string;
1272
+ export { _enum as enum };
1273
+ }
1274
+ export { args_3 as args };
1275
+ }
1276
+ export function LeftIcon(args: any): {
1277
+ components: {
1278
+ UInputSearch: {
1279
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1280
+ inputRef: import("vue").Ref<null, null>;
1281
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1282
+ label: string;
1283
+ id: string;
1284
+ description: string;
1285
+ error: string;
1286
+ rightIcon: string;
1287
+ leftIcon: string;
1288
+ config: Record<string, any>;
1289
+ dataTest: string;
1290
+ modelValue: string;
1291
+ placeholder: string;
1292
+ searchButtonLabel: string;
1293
+ disabled?: boolean | undefined;
1294
+ size?: string | undefined;
1295
+ labelAlign?: string | undefined;
1296
+ readonly?: boolean | undefined;
1297
+ minLength?: string | number | undefined;
1298
+ debounce?: string | number | undefined;
1299
+ $props: {
1300
+ readonly label?: string | undefined;
1301
+ readonly id?: string | undefined;
1302
+ readonly description?: string | undefined;
1303
+ readonly error?: string | undefined;
1304
+ readonly rightIcon?: string | undefined;
1305
+ readonly leftIcon?: string | undefined;
1306
+ readonly config?: Record<string, any> | undefined;
1307
+ readonly dataTest?: string | undefined;
1308
+ readonly modelValue?: string | undefined;
1309
+ readonly placeholder?: string | undefined;
1310
+ readonly searchButtonLabel?: string | undefined;
1311
+ readonly disabled?: boolean | undefined;
1312
+ readonly size?: string | undefined;
1313
+ readonly labelAlign?: string | undefined;
1314
+ readonly readonly?: boolean | undefined;
1315
+ readonly minLength?: string | number | undefined;
1316
+ readonly debounce?: string | number | undefined;
1317
+ };
1318
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1319
+ P: {};
1320
+ B: {};
1321
+ D: {};
1322
+ C: {};
1323
+ M: {};
1324
+ Defaults: {};
1325
+ }, Readonly<{}> & Readonly<{}>, {
1326
+ inputRef: import("vue").Ref<null, null>;
1327
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1328
+ label: string;
1329
+ id: string;
1330
+ description: string;
1331
+ error: string;
1332
+ rightIcon: string;
1333
+ leftIcon: string;
1334
+ config: Record<string, any>;
1335
+ dataTest: string;
1336
+ modelValue: string;
1337
+ placeholder: string;
1338
+ searchButtonLabel: string;
1339
+ disabled?: boolean | undefined;
1340
+ size?: string | undefined;
1341
+ labelAlign?: string | undefined;
1342
+ readonly?: boolean | undefined;
1343
+ minLength?: string | number | undefined;
1344
+ debounce?: string | number | undefined;
1345
+ $props: {
1346
+ readonly label?: string | undefined;
1347
+ readonly id?: string | undefined;
1348
+ readonly description?: string | undefined;
1349
+ readonly error?: string | undefined;
1350
+ readonly rightIcon?: string | undefined;
1351
+ readonly leftIcon?: string | undefined;
1352
+ readonly config?: Record<string, any> | undefined;
1353
+ readonly dataTest?: string | undefined;
1354
+ readonly modelValue?: string | undefined;
1355
+ readonly placeholder?: string | undefined;
1356
+ readonly searchButtonLabel?: string | undefined;
1357
+ readonly disabled?: boolean | undefined;
1358
+ readonly size?: string | undefined;
1359
+ readonly labelAlign?: string | undefined;
1360
+ readonly readonly?: boolean | undefined;
1361
+ readonly minLength?: string | number | undefined;
1362
+ readonly debounce?: string | number | undefined;
1363
+ };
1364
+ }, {}, {}, {}, {}>;
1365
+ __isFragment?: never;
1366
+ __isTeleport?: never;
1367
+ __isSuspense?: never;
1368
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1369
+ inputRef: import("vue").Ref<null, null>;
1370
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1371
+ label: string;
1372
+ id: string;
1373
+ description: string;
1374
+ error: string;
1375
+ rightIcon: string;
1376
+ leftIcon: string;
1377
+ config: Record<string, any>;
1378
+ dataTest: string;
1379
+ modelValue: string;
1380
+ placeholder: string;
1381
+ searchButtonLabel: string;
1382
+ disabled?: boolean | undefined;
1383
+ size?: string | undefined;
1384
+ labelAlign?: string | undefined;
1385
+ readonly?: boolean | undefined;
1386
+ minLength?: string | number | undefined;
1387
+ debounce?: string | number | undefined;
1388
+ $props: {
1389
+ readonly label?: string | undefined;
1390
+ readonly id?: string | undefined;
1391
+ readonly description?: string | undefined;
1392
+ readonly error?: string | undefined;
1393
+ readonly rightIcon?: string | undefined;
1394
+ readonly leftIcon?: string | undefined;
1395
+ readonly config?: Record<string, any> | undefined;
1396
+ readonly dataTest?: string | undefined;
1397
+ readonly modelValue?: string | undefined;
1398
+ readonly placeholder?: string | undefined;
1399
+ readonly searchButtonLabel?: string | undefined;
1400
+ readonly disabled?: boolean | undefined;
1401
+ readonly size?: string | undefined;
1402
+ readonly labelAlign?: string | undefined;
1403
+ readonly readonly?: boolean | undefined;
1404
+ readonly minLength?: string | number | undefined;
1405
+ readonly debounce?: string | number | undefined;
1406
+ };
1407
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1408
+ $slots: {
1409
+ left?(_: {}): any;
1410
+ "left-icon"?(_: {}): any;
1411
+ "right-icon"?(_: {
1412
+ iconName: any;
1413
+ iconSize: any;
1414
+ searchButtonLabel: string;
1415
+ }): any;
1416
+ right?(_: {}): any;
1417
+ };
1418
+ });
1419
+ UButton: {
1420
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1421
+ buttonRef: import("vue").Ref<null, null>;
1422
+ label: string;
1423
+ id: string;
1424
+ rightIcon: string;
1425
+ leftIcon: string;
1426
+ config: Record<string, any>;
1427
+ dataTest: string;
1428
+ icon: string;
1429
+ color?: string | undefined;
1430
+ disabled?: boolean | undefined;
1431
+ size?: string | undefined;
1432
+ square?: boolean | undefined;
1433
+ filled?: boolean | undefined;
1434
+ variant?: string | undefined;
1435
+ loading?: boolean | undefined;
1436
+ tag?: string | undefined;
1437
+ tabindex?: string | number | undefined;
1438
+ block?: boolean | undefined;
1439
+ round?: boolean | undefined;
1440
+ noRing?: boolean | undefined;
1441
+ $props: {
1442
+ readonly label?: string | undefined;
1443
+ readonly id?: string | undefined;
1444
+ readonly rightIcon?: string | undefined;
1445
+ readonly leftIcon?: string | undefined;
1446
+ readonly config?: Record<string, any> | undefined;
1447
+ readonly dataTest?: string | undefined;
1448
+ readonly icon?: string | undefined;
1449
+ readonly color?: string | undefined;
1450
+ readonly disabled?: boolean | undefined;
1451
+ readonly size?: string | undefined;
1452
+ readonly square?: boolean | undefined;
1453
+ readonly filled?: boolean | undefined;
1454
+ readonly variant?: string | undefined;
1455
+ readonly loading?: boolean | undefined;
1456
+ readonly tag?: string | undefined;
1457
+ readonly tabindex?: string | number | undefined;
1458
+ readonly block?: boolean | undefined;
1459
+ readonly round?: boolean | undefined;
1460
+ readonly noRing?: boolean | undefined;
1461
+ };
1462
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1463
+ P: {};
1464
+ B: {};
1465
+ D: {};
1466
+ C: {};
1467
+ M: {};
1468
+ Defaults: {};
1469
+ }, Readonly<{}> & Readonly<{}>, {
1470
+ buttonRef: import("vue").Ref<null, null>;
1471
+ label: string;
1472
+ id: string;
1473
+ rightIcon: string;
1474
+ leftIcon: string;
1475
+ config: Record<string, any>;
1476
+ dataTest: string;
1477
+ icon: string;
1478
+ color?: string | undefined;
1479
+ disabled?: boolean | undefined;
1480
+ size?: string | undefined;
1481
+ square?: boolean | undefined;
1482
+ filled?: boolean | undefined;
1483
+ variant?: string | undefined;
1484
+ loading?: boolean | undefined;
1485
+ tag?: string | undefined;
1486
+ tabindex?: string | number | undefined;
1487
+ block?: boolean | undefined;
1488
+ round?: boolean | undefined;
1489
+ noRing?: boolean | undefined;
1490
+ $props: {
1491
+ readonly label?: string | undefined;
1492
+ readonly id?: string | undefined;
1493
+ readonly rightIcon?: string | undefined;
1494
+ readonly leftIcon?: string | undefined;
1495
+ readonly config?: Record<string, any> | undefined;
1496
+ readonly dataTest?: string | undefined;
1497
+ readonly icon?: string | undefined;
1498
+ readonly color?: string | undefined;
1499
+ readonly disabled?: boolean | undefined;
1500
+ readonly size?: string | undefined;
1501
+ readonly square?: boolean | undefined;
1502
+ readonly filled?: boolean | undefined;
1503
+ readonly variant?: string | undefined;
1504
+ readonly loading?: boolean | undefined;
1505
+ readonly tag?: string | undefined;
1506
+ readonly tabindex?: string | number | undefined;
1507
+ readonly block?: boolean | undefined;
1508
+ readonly round?: boolean | undefined;
1509
+ readonly noRing?: boolean | undefined;
1510
+ };
1511
+ }, {}, {}, {}, {}>;
1512
+ __isFragment?: never;
1513
+ __isTeleport?: never;
1514
+ __isSuspense?: never;
1515
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1516
+ buttonRef: import("vue").Ref<null, null>;
1517
+ label: string;
1518
+ id: string;
1519
+ rightIcon: string;
1520
+ leftIcon: string;
1521
+ config: Record<string, any>;
1522
+ dataTest: string;
1523
+ icon: string;
1524
+ color?: string | undefined;
1525
+ disabled?: boolean | undefined;
1526
+ size?: string | undefined;
1527
+ square?: boolean | undefined;
1528
+ filled?: boolean | undefined;
1529
+ variant?: string | undefined;
1530
+ loading?: boolean | undefined;
1531
+ tag?: string | undefined;
1532
+ tabindex?: string | number | undefined;
1533
+ block?: boolean | undefined;
1534
+ round?: boolean | undefined;
1535
+ noRing?: boolean | undefined;
1536
+ $props: {
1537
+ readonly label?: string | undefined;
1538
+ readonly id?: string | undefined;
1539
+ readonly rightIcon?: string | undefined;
1540
+ readonly leftIcon?: string | undefined;
1541
+ readonly config?: Record<string, any> | undefined;
1542
+ readonly dataTest?: string | undefined;
1543
+ readonly icon?: string | undefined;
1544
+ readonly color?: string | undefined;
1545
+ readonly disabled?: boolean | undefined;
1546
+ readonly size?: string | undefined;
1547
+ readonly square?: boolean | undefined;
1548
+ readonly filled?: boolean | undefined;
1549
+ readonly variant?: string | undefined;
1550
+ readonly loading?: boolean | undefined;
1551
+ readonly tag?: string | undefined;
1552
+ readonly tabindex?: string | number | undefined;
1553
+ readonly block?: boolean | undefined;
1554
+ readonly round?: boolean | undefined;
1555
+ readonly noRing?: boolean | undefined;
1556
+ };
1557
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1558
+ $slots: {
1559
+ left?(_: {
1560
+ iconName: string;
1561
+ iconSize: any;
1562
+ iconColor: string | undefined;
1563
+ }): any;
1564
+ default?(_: {
1565
+ label: string;
1566
+ iconName: string;
1567
+ iconSize: any;
1568
+ iconColor: string | undefined;
1569
+ }): any;
1570
+ right?(_: {
1571
+ iconName: string;
1572
+ iconSize: any;
1573
+ iconColor: string | undefined;
1574
+ }): any;
1575
+ };
1576
+ });
1577
+ UIcon: import("vue").DefineComponent<{}, {
1578
+ $emit: (event: "click", ...args: any[]) => void;
1579
+ config: Record<string, any>;
1580
+ name: string;
1581
+ src: Record<string, any>;
1582
+ tooltip: string;
1583
+ tooltipSettings: Record<string, any>;
1584
+ dataTest: string;
1585
+ internal: boolean;
1586
+ color?: string | undefined;
1587
+ size?: string | undefined;
1588
+ interactive?: boolean | undefined;
1589
+ variant?: string | undefined;
1590
+ $props: {
1591
+ readonly config?: Record<string, any> | undefined;
1592
+ readonly name?: string | undefined;
1593
+ readonly src?: Record<string, any> | undefined;
1594
+ readonly tooltip?: string | undefined;
1595
+ readonly tooltipSettings?: Record<string, any> | undefined;
1596
+ readonly dataTest?: string | undefined;
1597
+ readonly internal?: boolean | undefined;
1598
+ readonly color?: string | undefined;
1599
+ readonly size?: string | undefined;
1600
+ readonly interactive?: boolean | undefined;
1601
+ readonly variant?: string | undefined;
1602
+ };
1603
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1604
+ };
1605
+ setup(): {
1606
+ args: any;
1607
+ slots: any;
1608
+ };
1609
+ template: string;
1610
+ };
1611
+ export namespace LeftIcon {
1612
+ export namespace args_4 {
1613
+ let leftIcon: string;
1614
+ }
1615
+ export { args_4 as args };
1616
+ }
1617
+ export function RightIcon(args: any): {
1618
+ components: {
1619
+ UInputSearch: {
1620
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1621
+ inputRef: import("vue").Ref<null, null>;
1622
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1623
+ label: string;
1624
+ id: string;
1625
+ description: string;
1626
+ error: string;
1627
+ rightIcon: string;
1628
+ leftIcon: string;
1629
+ config: Record<string, any>;
1630
+ dataTest: string;
1631
+ modelValue: string;
1632
+ placeholder: string;
1633
+ searchButtonLabel: string;
1634
+ disabled?: boolean | undefined;
1635
+ size?: string | undefined;
1636
+ labelAlign?: string | undefined;
1637
+ readonly?: boolean | undefined;
1638
+ minLength?: string | number | undefined;
1639
+ debounce?: string | number | undefined;
1640
+ $props: {
1641
+ readonly label?: string | undefined;
1642
+ readonly id?: string | undefined;
1643
+ readonly description?: string | undefined;
1644
+ readonly error?: string | undefined;
1645
+ readonly rightIcon?: string | undefined;
1646
+ readonly leftIcon?: string | undefined;
1647
+ readonly config?: Record<string, any> | undefined;
1648
+ readonly dataTest?: string | undefined;
1649
+ readonly modelValue?: string | undefined;
1650
+ readonly placeholder?: string | undefined;
1651
+ readonly searchButtonLabel?: string | undefined;
1652
+ readonly disabled?: boolean | undefined;
1653
+ readonly size?: string | undefined;
1654
+ readonly labelAlign?: string | undefined;
1655
+ readonly readonly?: boolean | undefined;
1656
+ readonly minLength?: string | number | undefined;
1657
+ readonly debounce?: string | number | undefined;
1658
+ };
1659
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1660
+ P: {};
1661
+ B: {};
1662
+ D: {};
1663
+ C: {};
1664
+ M: {};
1665
+ Defaults: {};
1666
+ }, Readonly<{}> & Readonly<{}>, {
1667
+ inputRef: import("vue").Ref<null, null>;
1668
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1669
+ label: string;
1670
+ id: string;
1671
+ description: string;
1672
+ error: string;
1673
+ rightIcon: string;
1674
+ leftIcon: string;
1675
+ config: Record<string, any>;
1676
+ dataTest: string;
1677
+ modelValue: string;
1678
+ placeholder: string;
1679
+ searchButtonLabel: string;
1680
+ disabled?: boolean | undefined;
1681
+ size?: string | undefined;
1682
+ labelAlign?: string | undefined;
1683
+ readonly?: boolean | undefined;
1684
+ minLength?: string | number | undefined;
1685
+ debounce?: string | number | undefined;
1686
+ $props: {
1687
+ readonly label?: string | undefined;
1688
+ readonly id?: string | undefined;
1689
+ readonly description?: string | undefined;
1690
+ readonly error?: string | undefined;
1691
+ readonly rightIcon?: string | undefined;
1692
+ readonly leftIcon?: string | undefined;
1693
+ readonly config?: Record<string, any> | undefined;
1694
+ readonly dataTest?: string | undefined;
1695
+ readonly modelValue?: string | undefined;
1696
+ readonly placeholder?: string | undefined;
1697
+ readonly searchButtonLabel?: string | undefined;
1698
+ readonly disabled?: boolean | undefined;
1699
+ readonly size?: string | undefined;
1700
+ readonly labelAlign?: string | undefined;
1701
+ readonly readonly?: boolean | undefined;
1702
+ readonly minLength?: string | number | undefined;
1703
+ readonly debounce?: string | number | undefined;
1704
+ };
1705
+ }, {}, {}, {}, {}>;
1706
+ __isFragment?: never;
1707
+ __isTeleport?: never;
1708
+ __isSuspense?: never;
1709
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1710
+ inputRef: import("vue").Ref<null, null>;
1711
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1712
+ label: string;
1713
+ id: string;
1714
+ description: string;
1715
+ error: string;
1716
+ rightIcon: string;
1717
+ leftIcon: string;
1718
+ config: Record<string, any>;
1719
+ dataTest: string;
1720
+ modelValue: string;
1721
+ placeholder: string;
1722
+ searchButtonLabel: string;
1723
+ disabled?: boolean | undefined;
1724
+ size?: string | undefined;
1725
+ labelAlign?: string | undefined;
1726
+ readonly?: boolean | undefined;
1727
+ minLength?: string | number | undefined;
1728
+ debounce?: string | number | undefined;
1729
+ $props: {
1730
+ readonly label?: string | undefined;
1731
+ readonly id?: string | undefined;
1732
+ readonly description?: string | undefined;
1733
+ readonly error?: string | undefined;
1734
+ readonly rightIcon?: string | undefined;
1735
+ readonly leftIcon?: string | undefined;
1736
+ readonly config?: Record<string, any> | undefined;
1737
+ readonly dataTest?: string | undefined;
1738
+ readonly modelValue?: string | undefined;
1739
+ readonly placeholder?: string | undefined;
1740
+ readonly searchButtonLabel?: string | undefined;
1741
+ readonly disabled?: boolean | undefined;
1742
+ readonly size?: string | undefined;
1743
+ readonly labelAlign?: string | undefined;
1744
+ readonly readonly?: boolean | undefined;
1745
+ readonly minLength?: string | number | undefined;
1746
+ readonly debounce?: string | number | undefined;
1747
+ };
1748
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1749
+ $slots: {
1750
+ left?(_: {}): any;
1751
+ "left-icon"?(_: {}): any;
1752
+ "right-icon"?(_: {
1753
+ iconName: any;
1754
+ iconSize: any;
1755
+ searchButtonLabel: string;
1756
+ }): any;
1757
+ right?(_: {}): any;
1758
+ };
1759
+ });
1760
+ UButton: {
1761
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1762
+ buttonRef: import("vue").Ref<null, null>;
1763
+ label: string;
1764
+ id: string;
1765
+ rightIcon: string;
1766
+ leftIcon: string;
1767
+ config: Record<string, any>;
1768
+ dataTest: string;
1769
+ icon: string;
1770
+ color?: string | undefined;
1771
+ disabled?: boolean | undefined;
1772
+ size?: string | undefined;
1773
+ square?: boolean | undefined;
1774
+ filled?: boolean | undefined;
1775
+ variant?: string | undefined;
1776
+ loading?: boolean | undefined;
1777
+ tag?: string | undefined;
1778
+ tabindex?: string | number | undefined;
1779
+ block?: boolean | undefined;
1780
+ round?: boolean | undefined;
1781
+ noRing?: boolean | undefined;
1782
+ $props: {
1783
+ readonly label?: string | undefined;
1784
+ readonly id?: string | undefined;
1785
+ readonly rightIcon?: string | undefined;
1786
+ readonly leftIcon?: string | undefined;
1787
+ readonly config?: Record<string, any> | undefined;
1788
+ readonly dataTest?: string | undefined;
1789
+ readonly icon?: string | undefined;
1790
+ readonly color?: string | undefined;
1791
+ readonly disabled?: boolean | undefined;
1792
+ readonly size?: string | undefined;
1793
+ readonly square?: boolean | undefined;
1794
+ readonly filled?: boolean | undefined;
1795
+ readonly variant?: string | undefined;
1796
+ readonly loading?: boolean | undefined;
1797
+ readonly tag?: string | undefined;
1798
+ readonly tabindex?: string | number | undefined;
1799
+ readonly block?: boolean | undefined;
1800
+ readonly round?: boolean | undefined;
1801
+ readonly noRing?: boolean | undefined;
1802
+ };
1803
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1804
+ P: {};
1805
+ B: {};
1806
+ D: {};
1807
+ C: {};
1808
+ M: {};
1809
+ Defaults: {};
1810
+ }, Readonly<{}> & Readonly<{}>, {
1811
+ buttonRef: import("vue").Ref<null, null>;
1812
+ label: string;
1813
+ id: string;
1814
+ rightIcon: string;
1815
+ leftIcon: string;
1816
+ config: Record<string, any>;
1817
+ dataTest: string;
1818
+ icon: string;
1819
+ color?: string | undefined;
1820
+ disabled?: boolean | undefined;
1821
+ size?: string | undefined;
1822
+ square?: boolean | undefined;
1823
+ filled?: boolean | undefined;
1824
+ variant?: string | undefined;
1825
+ loading?: boolean | undefined;
1826
+ tag?: string | undefined;
1827
+ tabindex?: string | number | undefined;
1828
+ block?: boolean | undefined;
1829
+ round?: boolean | undefined;
1830
+ noRing?: boolean | undefined;
1831
+ $props: {
1832
+ readonly label?: string | undefined;
1833
+ readonly id?: string | undefined;
1834
+ readonly rightIcon?: string | undefined;
1835
+ readonly leftIcon?: string | undefined;
1836
+ readonly config?: Record<string, any> | undefined;
1837
+ readonly dataTest?: string | undefined;
1838
+ readonly icon?: string | undefined;
1839
+ readonly color?: string | undefined;
1840
+ readonly disabled?: boolean | undefined;
1841
+ readonly size?: string | undefined;
1842
+ readonly square?: boolean | undefined;
1843
+ readonly filled?: boolean | undefined;
1844
+ readonly variant?: string | undefined;
1845
+ readonly loading?: boolean | undefined;
1846
+ readonly tag?: string | undefined;
1847
+ readonly tabindex?: string | number | undefined;
1848
+ readonly block?: boolean | undefined;
1849
+ readonly round?: boolean | undefined;
1850
+ readonly noRing?: boolean | undefined;
1851
+ };
1852
+ }, {}, {}, {}, {}>;
1853
+ __isFragment?: never;
1854
+ __isTeleport?: never;
1855
+ __isSuspense?: never;
1856
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1857
+ buttonRef: import("vue").Ref<null, null>;
1858
+ label: string;
1859
+ id: string;
1860
+ rightIcon: string;
1861
+ leftIcon: string;
1862
+ config: Record<string, any>;
1863
+ dataTest: string;
1864
+ icon: string;
1865
+ color?: string | undefined;
1866
+ disabled?: boolean | undefined;
1867
+ size?: string | undefined;
1868
+ square?: boolean | undefined;
1869
+ filled?: boolean | undefined;
1870
+ variant?: string | undefined;
1871
+ loading?: boolean | undefined;
1872
+ tag?: string | undefined;
1873
+ tabindex?: string | number | undefined;
1874
+ block?: boolean | undefined;
1875
+ round?: boolean | undefined;
1876
+ noRing?: boolean | undefined;
1877
+ $props: {
1878
+ readonly label?: string | undefined;
1879
+ readonly id?: string | undefined;
1880
+ readonly rightIcon?: string | undefined;
1881
+ readonly leftIcon?: string | undefined;
1882
+ readonly config?: Record<string, any> | undefined;
1883
+ readonly dataTest?: string | undefined;
1884
+ readonly icon?: string | undefined;
1885
+ readonly color?: string | undefined;
1886
+ readonly disabled?: boolean | undefined;
1887
+ readonly size?: string | undefined;
1888
+ readonly square?: boolean | undefined;
1889
+ readonly filled?: boolean | undefined;
1890
+ readonly variant?: string | undefined;
1891
+ readonly loading?: boolean | undefined;
1892
+ readonly tag?: string | undefined;
1893
+ readonly tabindex?: string | number | undefined;
1894
+ readonly block?: boolean | undefined;
1895
+ readonly round?: boolean | undefined;
1896
+ readonly noRing?: boolean | undefined;
1897
+ };
1898
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1899
+ $slots: {
1900
+ left?(_: {
1901
+ iconName: string;
1902
+ iconSize: any;
1903
+ iconColor: string | undefined;
1904
+ }): any;
1905
+ default?(_: {
1906
+ label: string;
1907
+ iconName: string;
1908
+ iconSize: any;
1909
+ iconColor: string | undefined;
1910
+ }): any;
1911
+ right?(_: {
1912
+ iconName: string;
1913
+ iconSize: any;
1914
+ iconColor: string | undefined;
1915
+ }): any;
1916
+ };
1917
+ });
1918
+ UIcon: import("vue").DefineComponent<{}, {
1919
+ $emit: (event: "click", ...args: any[]) => void;
1920
+ config: Record<string, any>;
1921
+ name: string;
1922
+ src: Record<string, any>;
1923
+ tooltip: string;
1924
+ tooltipSettings: Record<string, any>;
1925
+ dataTest: string;
1926
+ internal: boolean;
1927
+ color?: string | undefined;
1928
+ size?: string | undefined;
1929
+ interactive?: boolean | undefined;
1930
+ variant?: string | undefined;
1931
+ $props: {
1932
+ readonly config?: Record<string, any> | undefined;
1933
+ readonly name?: string | undefined;
1934
+ readonly src?: Record<string, any> | undefined;
1935
+ readonly tooltip?: string | undefined;
1936
+ readonly tooltipSettings?: Record<string, any> | undefined;
1937
+ readonly dataTest?: string | undefined;
1938
+ readonly internal?: boolean | undefined;
1939
+ readonly color?: string | undefined;
1940
+ readonly size?: string | undefined;
1941
+ readonly interactive?: boolean | undefined;
1942
+ readonly variant?: string | undefined;
1943
+ };
1944
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1945
+ };
1946
+ setup(): {
1947
+ args: any;
1948
+ slots: any;
1949
+ };
1950
+ template: string;
1951
+ };
1952
+ export namespace RightIcon {
1953
+ export namespace args_5 {
1954
+ let rightIcon: string;
1955
+ }
1956
+ export { args_5 as args };
1957
+ }
1958
+ export function LeftIconSlot(args: any): {
1959
+ components: {
1960
+ UInputSearch: {
1961
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1962
+ inputRef: import("vue").Ref<null, null>;
1963
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
1964
+ label: string;
1965
+ id: string;
1966
+ description: string;
1967
+ error: string;
1968
+ rightIcon: string;
1969
+ leftIcon: string;
1970
+ config: Record<string, any>;
1971
+ dataTest: string;
1972
+ modelValue: string;
1973
+ placeholder: string;
1974
+ searchButtonLabel: string;
1975
+ disabled?: boolean | undefined;
1976
+ size?: string | undefined;
1977
+ labelAlign?: string | undefined;
1978
+ readonly?: boolean | undefined;
1979
+ minLength?: string | number | undefined;
1980
+ debounce?: string | number | undefined;
1981
+ $props: {
1982
+ readonly label?: string | undefined;
1983
+ readonly id?: string | undefined;
1984
+ readonly description?: string | undefined;
1985
+ readonly error?: string | undefined;
1986
+ readonly rightIcon?: string | undefined;
1987
+ readonly leftIcon?: string | undefined;
1988
+ readonly config?: Record<string, any> | undefined;
1989
+ readonly dataTest?: string | undefined;
1990
+ readonly modelValue?: string | undefined;
1991
+ readonly placeholder?: string | undefined;
1992
+ readonly searchButtonLabel?: string | undefined;
1993
+ readonly disabled?: boolean | undefined;
1994
+ readonly size?: string | undefined;
1995
+ readonly labelAlign?: string | undefined;
1996
+ readonly readonly?: boolean | undefined;
1997
+ readonly minLength?: string | number | undefined;
1998
+ readonly debounce?: string | number | undefined;
1999
+ };
2000
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2001
+ P: {};
2002
+ B: {};
2003
+ D: {};
2004
+ C: {};
2005
+ M: {};
2006
+ Defaults: {};
2007
+ }, Readonly<{}> & Readonly<{}>, {
2008
+ inputRef: import("vue").Ref<null, null>;
2009
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2010
+ label: string;
2011
+ id: string;
2012
+ description: string;
2013
+ error: string;
2014
+ rightIcon: string;
2015
+ leftIcon: string;
2016
+ config: Record<string, any>;
2017
+ dataTest: string;
2018
+ modelValue: string;
2019
+ placeholder: string;
2020
+ searchButtonLabel: string;
2021
+ disabled?: boolean | undefined;
2022
+ size?: string | undefined;
2023
+ labelAlign?: string | undefined;
2024
+ readonly?: boolean | undefined;
2025
+ minLength?: string | number | undefined;
2026
+ debounce?: string | number | undefined;
2027
+ $props: {
2028
+ readonly label?: string | undefined;
2029
+ readonly id?: string | undefined;
2030
+ readonly description?: string | undefined;
2031
+ readonly error?: string | undefined;
2032
+ readonly rightIcon?: string | undefined;
2033
+ readonly leftIcon?: string | undefined;
2034
+ readonly config?: Record<string, any> | undefined;
2035
+ readonly dataTest?: string | undefined;
2036
+ readonly modelValue?: string | undefined;
2037
+ readonly placeholder?: string | undefined;
2038
+ readonly searchButtonLabel?: string | undefined;
2039
+ readonly disabled?: boolean | undefined;
2040
+ readonly size?: string | undefined;
2041
+ readonly labelAlign?: string | undefined;
2042
+ readonly readonly?: boolean | undefined;
2043
+ readonly minLength?: string | number | undefined;
2044
+ readonly debounce?: string | number | undefined;
2045
+ };
2046
+ }, {}, {}, {}, {}>;
2047
+ __isFragment?: never;
2048
+ __isTeleport?: never;
2049
+ __isSuspense?: never;
2050
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
2051
+ inputRef: import("vue").Ref<null, null>;
2052
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2053
+ label: string;
2054
+ id: string;
2055
+ description: string;
2056
+ error: string;
2057
+ rightIcon: string;
2058
+ leftIcon: string;
2059
+ config: Record<string, any>;
2060
+ dataTest: string;
2061
+ modelValue: string;
2062
+ placeholder: string;
2063
+ searchButtonLabel: string;
2064
+ disabled?: boolean | undefined;
2065
+ size?: string | undefined;
2066
+ labelAlign?: string | undefined;
2067
+ readonly?: boolean | undefined;
2068
+ minLength?: string | number | undefined;
2069
+ debounce?: string | number | undefined;
2070
+ $props: {
2071
+ readonly label?: string | undefined;
2072
+ readonly id?: string | undefined;
2073
+ readonly description?: string | undefined;
2074
+ readonly error?: string | undefined;
2075
+ readonly rightIcon?: string | undefined;
2076
+ readonly leftIcon?: string | undefined;
2077
+ readonly config?: Record<string, any> | undefined;
2078
+ readonly dataTest?: string | undefined;
2079
+ readonly modelValue?: string | undefined;
2080
+ readonly placeholder?: string | undefined;
2081
+ readonly searchButtonLabel?: string | undefined;
2082
+ readonly disabled?: boolean | undefined;
2083
+ readonly size?: string | undefined;
2084
+ readonly labelAlign?: string | undefined;
2085
+ readonly readonly?: boolean | undefined;
2086
+ readonly minLength?: string | number | undefined;
2087
+ readonly debounce?: string | number | undefined;
2088
+ };
2089
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2090
+ $slots: {
2091
+ left?(_: {}): any;
2092
+ "left-icon"?(_: {}): any;
2093
+ "right-icon"?(_: {
2094
+ iconName: any;
2095
+ iconSize: any;
2096
+ searchButtonLabel: string;
2097
+ }): any;
2098
+ right?(_: {}): any;
2099
+ };
2100
+ });
2101
+ UButton: {
2102
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
2103
+ buttonRef: import("vue").Ref<null, null>;
2104
+ label: string;
2105
+ id: string;
2106
+ rightIcon: string;
2107
+ leftIcon: string;
2108
+ config: Record<string, any>;
2109
+ dataTest: string;
2110
+ icon: string;
2111
+ color?: string | undefined;
2112
+ disabled?: boolean | undefined;
2113
+ size?: string | undefined;
2114
+ square?: boolean | undefined;
2115
+ filled?: boolean | undefined;
2116
+ variant?: string | undefined;
2117
+ loading?: boolean | undefined;
2118
+ tag?: string | undefined;
2119
+ tabindex?: string | number | undefined;
2120
+ block?: boolean | undefined;
2121
+ round?: boolean | undefined;
2122
+ noRing?: boolean | undefined;
2123
+ $props: {
2124
+ readonly label?: string | undefined;
2125
+ readonly id?: string | undefined;
2126
+ readonly rightIcon?: string | undefined;
2127
+ readonly leftIcon?: string | undefined;
2128
+ readonly config?: Record<string, any> | undefined;
2129
+ readonly dataTest?: string | undefined;
2130
+ readonly icon?: string | undefined;
2131
+ readonly color?: string | undefined;
2132
+ readonly disabled?: boolean | undefined;
2133
+ readonly size?: string | undefined;
2134
+ readonly square?: boolean | undefined;
2135
+ readonly filled?: boolean | undefined;
2136
+ readonly variant?: string | undefined;
2137
+ readonly loading?: boolean | undefined;
2138
+ readonly tag?: string | undefined;
2139
+ readonly tabindex?: string | number | undefined;
2140
+ readonly block?: boolean | undefined;
2141
+ readonly round?: boolean | undefined;
2142
+ readonly noRing?: boolean | undefined;
2143
+ };
2144
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2145
+ P: {};
2146
+ B: {};
2147
+ D: {};
2148
+ C: {};
2149
+ M: {};
2150
+ Defaults: {};
2151
+ }, Readonly<{}> & Readonly<{}>, {
2152
+ buttonRef: import("vue").Ref<null, null>;
2153
+ label: string;
2154
+ id: string;
2155
+ rightIcon: string;
2156
+ leftIcon: string;
2157
+ config: Record<string, any>;
2158
+ dataTest: string;
2159
+ icon: string;
2160
+ color?: string | undefined;
2161
+ disabled?: boolean | undefined;
2162
+ size?: string | undefined;
2163
+ square?: boolean | undefined;
2164
+ filled?: boolean | undefined;
2165
+ variant?: string | undefined;
2166
+ loading?: boolean | undefined;
2167
+ tag?: string | undefined;
2168
+ tabindex?: string | number | undefined;
2169
+ block?: boolean | undefined;
2170
+ round?: boolean | undefined;
2171
+ noRing?: boolean | undefined;
2172
+ $props: {
2173
+ readonly label?: string | undefined;
2174
+ readonly id?: string | undefined;
2175
+ readonly rightIcon?: string | undefined;
2176
+ readonly leftIcon?: string | undefined;
2177
+ readonly config?: Record<string, any> | undefined;
2178
+ readonly dataTest?: string | undefined;
2179
+ readonly icon?: string | undefined;
2180
+ readonly color?: string | undefined;
2181
+ readonly disabled?: boolean | undefined;
2182
+ readonly size?: string | undefined;
2183
+ readonly square?: boolean | undefined;
2184
+ readonly filled?: boolean | undefined;
2185
+ readonly variant?: string | undefined;
2186
+ readonly loading?: boolean | undefined;
2187
+ readonly tag?: string | undefined;
2188
+ readonly tabindex?: string | number | undefined;
2189
+ readonly block?: boolean | undefined;
2190
+ readonly round?: boolean | undefined;
2191
+ readonly noRing?: boolean | undefined;
2192
+ };
2193
+ }, {}, {}, {}, {}>;
2194
+ __isFragment?: never;
2195
+ __isTeleport?: never;
2196
+ __isSuspense?: never;
2197
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
2198
+ buttonRef: import("vue").Ref<null, null>;
2199
+ label: string;
2200
+ id: string;
2201
+ rightIcon: string;
2202
+ leftIcon: string;
2203
+ config: Record<string, any>;
2204
+ dataTest: string;
2205
+ icon: string;
2206
+ color?: string | undefined;
2207
+ disabled?: boolean | undefined;
2208
+ size?: string | undefined;
2209
+ square?: boolean | undefined;
2210
+ filled?: boolean | undefined;
2211
+ variant?: string | undefined;
2212
+ loading?: boolean | undefined;
2213
+ tag?: string | undefined;
2214
+ tabindex?: string | number | undefined;
2215
+ block?: boolean | undefined;
2216
+ round?: boolean | undefined;
2217
+ noRing?: boolean | undefined;
2218
+ $props: {
2219
+ readonly label?: string | undefined;
2220
+ readonly id?: string | undefined;
2221
+ readonly rightIcon?: string | undefined;
2222
+ readonly leftIcon?: string | undefined;
2223
+ readonly config?: Record<string, any> | undefined;
2224
+ readonly dataTest?: string | undefined;
2225
+ readonly icon?: string | undefined;
2226
+ readonly color?: string | undefined;
2227
+ readonly disabled?: boolean | undefined;
2228
+ readonly size?: string | undefined;
2229
+ readonly square?: boolean | undefined;
2230
+ readonly filled?: boolean | undefined;
2231
+ readonly variant?: string | undefined;
2232
+ readonly loading?: boolean | undefined;
2233
+ readonly tag?: string | undefined;
2234
+ readonly tabindex?: string | number | undefined;
2235
+ readonly block?: boolean | undefined;
2236
+ readonly round?: boolean | undefined;
2237
+ readonly noRing?: boolean | undefined;
2238
+ };
2239
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2240
+ $slots: {
2241
+ left?(_: {
2242
+ iconName: string;
2243
+ iconSize: any;
2244
+ iconColor: string | undefined;
2245
+ }): any;
2246
+ default?(_: {
2247
+ label: string;
2248
+ iconName: string;
2249
+ iconSize: any;
2250
+ iconColor: string | undefined;
2251
+ }): any;
2252
+ right?(_: {
2253
+ iconName: string;
2254
+ iconSize: any;
2255
+ iconColor: string | undefined;
2256
+ }): any;
2257
+ };
2258
+ });
2259
+ UIcon: import("vue").DefineComponent<{}, {
2260
+ $emit: (event: "click", ...args: any[]) => void;
2261
+ config: Record<string, any>;
2262
+ name: string;
2263
+ src: Record<string, any>;
2264
+ tooltip: string;
2265
+ tooltipSettings: Record<string, any>;
2266
+ dataTest: string;
2267
+ internal: boolean;
2268
+ color?: string | undefined;
2269
+ size?: string | undefined;
2270
+ interactive?: boolean | undefined;
2271
+ variant?: string | undefined;
2272
+ $props: {
2273
+ readonly config?: Record<string, any> | undefined;
2274
+ readonly name?: string | undefined;
2275
+ readonly src?: Record<string, any> | undefined;
2276
+ readonly tooltip?: string | undefined;
2277
+ readonly tooltipSettings?: Record<string, any> | undefined;
2278
+ readonly dataTest?: string | undefined;
2279
+ readonly internal?: boolean | undefined;
2280
+ readonly color?: string | undefined;
2281
+ readonly size?: string | undefined;
2282
+ readonly interactive?: boolean | undefined;
2283
+ readonly variant?: string | undefined;
2284
+ };
2285
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2286
+ };
2287
+ setup(): {
2288
+ args: any;
2289
+ slots: any;
2290
+ };
2291
+ template: string;
2292
+ };
2293
+ export namespace LeftIconSlot {
2294
+ export namespace args_6 {
2295
+ let slotTemplate: string;
2296
+ }
2297
+ export { args_6 as args };
2298
+ }
2299
+ export function RightIconSlot(args: any): {
2300
+ components: {
2301
+ UInputSearch: {
2302
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
2303
+ inputRef: import("vue").Ref<null, null>;
2304
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2305
+ label: string;
2306
+ id: string;
2307
+ description: string;
2308
+ error: string;
2309
+ rightIcon: string;
2310
+ leftIcon: string;
2311
+ config: Record<string, any>;
2312
+ dataTest: string;
2313
+ modelValue: string;
2314
+ placeholder: string;
2315
+ searchButtonLabel: string;
2316
+ disabled?: boolean | undefined;
2317
+ size?: string | undefined;
2318
+ labelAlign?: string | undefined;
2319
+ readonly?: boolean | undefined;
2320
+ minLength?: string | number | undefined;
2321
+ debounce?: string | number | undefined;
2322
+ $props: {
2323
+ readonly label?: string | undefined;
2324
+ readonly id?: string | undefined;
2325
+ readonly description?: string | undefined;
2326
+ readonly error?: string | undefined;
2327
+ readonly rightIcon?: string | undefined;
2328
+ readonly leftIcon?: string | undefined;
2329
+ readonly config?: Record<string, any> | undefined;
2330
+ readonly dataTest?: string | undefined;
2331
+ readonly modelValue?: string | undefined;
2332
+ readonly placeholder?: string | undefined;
2333
+ readonly searchButtonLabel?: string | undefined;
2334
+ readonly disabled?: boolean | undefined;
2335
+ readonly size?: string | undefined;
2336
+ readonly labelAlign?: string | undefined;
2337
+ readonly readonly?: boolean | undefined;
2338
+ readonly minLength?: string | number | undefined;
2339
+ readonly debounce?: string | number | undefined;
2340
+ };
2341
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2342
+ P: {};
2343
+ B: {};
2344
+ D: {};
2345
+ C: {};
2346
+ M: {};
2347
+ Defaults: {};
2348
+ }, Readonly<{}> & Readonly<{}>, {
2349
+ inputRef: import("vue").Ref<null, null>;
2350
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2351
+ label: string;
2352
+ id: string;
2353
+ description: string;
2354
+ error: string;
2355
+ rightIcon: string;
2356
+ leftIcon: string;
2357
+ config: Record<string, any>;
2358
+ dataTest: string;
2359
+ modelValue: string;
2360
+ placeholder: string;
2361
+ searchButtonLabel: string;
2362
+ disabled?: boolean | undefined;
2363
+ size?: string | undefined;
2364
+ labelAlign?: string | undefined;
2365
+ readonly?: boolean | undefined;
2366
+ minLength?: string | number | undefined;
2367
+ debounce?: string | number | undefined;
2368
+ $props: {
2369
+ readonly label?: string | undefined;
2370
+ readonly id?: string | undefined;
2371
+ readonly description?: string | undefined;
2372
+ readonly error?: string | undefined;
2373
+ readonly rightIcon?: string | undefined;
2374
+ readonly leftIcon?: string | undefined;
2375
+ readonly config?: Record<string, any> | undefined;
2376
+ readonly dataTest?: string | undefined;
2377
+ readonly modelValue?: string | undefined;
2378
+ readonly placeholder?: string | undefined;
2379
+ readonly searchButtonLabel?: string | undefined;
2380
+ readonly disabled?: boolean | undefined;
2381
+ readonly size?: string | undefined;
2382
+ readonly labelAlign?: string | undefined;
2383
+ readonly readonly?: boolean | undefined;
2384
+ readonly minLength?: string | number | undefined;
2385
+ readonly debounce?: string | number | undefined;
2386
+ };
2387
+ }, {}, {}, {}, {}>;
2388
+ __isFragment?: never;
2389
+ __isTeleport?: never;
2390
+ __isSuspense?: never;
2391
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
2392
+ inputRef: import("vue").Ref<null, null>;
2393
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2394
+ label: string;
2395
+ id: string;
2396
+ description: string;
2397
+ error: string;
2398
+ rightIcon: string;
2399
+ leftIcon: string;
2400
+ config: Record<string, any>;
2401
+ dataTest: string;
2402
+ modelValue: string;
2403
+ placeholder: string;
2404
+ searchButtonLabel: string;
2405
+ disabled?: boolean | undefined;
2406
+ size?: string | undefined;
2407
+ labelAlign?: string | undefined;
2408
+ readonly?: boolean | undefined;
2409
+ minLength?: string | number | undefined;
2410
+ debounce?: string | number | undefined;
2411
+ $props: {
2412
+ readonly label?: string | undefined;
2413
+ readonly id?: string | undefined;
2414
+ readonly description?: string | undefined;
2415
+ readonly error?: string | undefined;
2416
+ readonly rightIcon?: string | undefined;
2417
+ readonly leftIcon?: string | undefined;
2418
+ readonly config?: Record<string, any> | undefined;
2419
+ readonly dataTest?: string | undefined;
2420
+ readonly modelValue?: string | undefined;
2421
+ readonly placeholder?: string | undefined;
2422
+ readonly searchButtonLabel?: string | undefined;
2423
+ readonly disabled?: boolean | undefined;
2424
+ readonly size?: string | undefined;
2425
+ readonly labelAlign?: string | undefined;
2426
+ readonly readonly?: boolean | undefined;
2427
+ readonly minLength?: string | number | undefined;
2428
+ readonly debounce?: string | number | undefined;
2429
+ };
2430
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2431
+ $slots: {
2432
+ left?(_: {}): any;
2433
+ "left-icon"?(_: {}): any;
2434
+ "right-icon"?(_: {
2435
+ iconName: any;
2436
+ iconSize: any;
2437
+ searchButtonLabel: string;
2438
+ }): any;
2439
+ right?(_: {}): any;
2440
+ };
2441
+ });
2442
+ UButton: {
2443
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
2444
+ buttonRef: import("vue").Ref<null, null>;
2445
+ label: string;
2446
+ id: string;
2447
+ rightIcon: string;
2448
+ leftIcon: string;
2449
+ config: Record<string, any>;
2450
+ dataTest: string;
2451
+ icon: string;
2452
+ color?: string | undefined;
2453
+ disabled?: boolean | undefined;
2454
+ size?: string | undefined;
2455
+ square?: boolean | undefined;
2456
+ filled?: boolean | undefined;
2457
+ variant?: string | undefined;
2458
+ loading?: boolean | undefined;
2459
+ tag?: string | undefined;
2460
+ tabindex?: string | number | undefined;
2461
+ block?: boolean | undefined;
2462
+ round?: boolean | undefined;
2463
+ noRing?: boolean | undefined;
2464
+ $props: {
2465
+ readonly label?: string | undefined;
2466
+ readonly id?: string | undefined;
2467
+ readonly rightIcon?: string | undefined;
2468
+ readonly leftIcon?: string | undefined;
2469
+ readonly config?: Record<string, any> | undefined;
2470
+ readonly dataTest?: string | undefined;
2471
+ readonly icon?: string | undefined;
2472
+ readonly color?: string | undefined;
2473
+ readonly disabled?: boolean | undefined;
2474
+ readonly size?: string | undefined;
2475
+ readonly square?: boolean | undefined;
2476
+ readonly filled?: boolean | undefined;
2477
+ readonly variant?: string | undefined;
2478
+ readonly loading?: boolean | undefined;
2479
+ readonly tag?: string | undefined;
2480
+ readonly tabindex?: string | number | undefined;
2481
+ readonly block?: boolean | undefined;
2482
+ readonly round?: boolean | undefined;
2483
+ readonly noRing?: boolean | undefined;
2484
+ };
2485
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2486
+ P: {};
2487
+ B: {};
2488
+ D: {};
2489
+ C: {};
2490
+ M: {};
2491
+ Defaults: {};
2492
+ }, Readonly<{}> & Readonly<{}>, {
2493
+ buttonRef: import("vue").Ref<null, null>;
2494
+ label: string;
2495
+ id: string;
2496
+ rightIcon: string;
2497
+ leftIcon: string;
2498
+ config: Record<string, any>;
2499
+ dataTest: string;
2500
+ icon: string;
2501
+ color?: string | undefined;
2502
+ disabled?: boolean | undefined;
2503
+ size?: string | undefined;
2504
+ square?: boolean | undefined;
2505
+ filled?: boolean | undefined;
2506
+ variant?: string | undefined;
2507
+ loading?: boolean | undefined;
2508
+ tag?: string | undefined;
2509
+ tabindex?: string | number | undefined;
2510
+ block?: boolean | undefined;
2511
+ round?: boolean | undefined;
2512
+ noRing?: boolean | undefined;
2513
+ $props: {
2514
+ readonly label?: string | undefined;
2515
+ readonly id?: string | undefined;
2516
+ readonly rightIcon?: string | undefined;
2517
+ readonly leftIcon?: string | undefined;
2518
+ readonly config?: Record<string, any> | undefined;
2519
+ readonly dataTest?: string | undefined;
2520
+ readonly icon?: string | undefined;
2521
+ readonly color?: string | undefined;
2522
+ readonly disabled?: boolean | undefined;
2523
+ readonly size?: string | undefined;
2524
+ readonly square?: boolean | undefined;
2525
+ readonly filled?: boolean | undefined;
2526
+ readonly variant?: string | undefined;
2527
+ readonly loading?: boolean | undefined;
2528
+ readonly tag?: string | undefined;
2529
+ readonly tabindex?: string | number | undefined;
2530
+ readonly block?: boolean | undefined;
2531
+ readonly round?: boolean | undefined;
2532
+ readonly noRing?: boolean | undefined;
2533
+ };
2534
+ }, {}, {}, {}, {}>;
2535
+ __isFragment?: never;
2536
+ __isTeleport?: never;
2537
+ __isSuspense?: never;
2538
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
2539
+ buttonRef: import("vue").Ref<null, null>;
2540
+ label: string;
2541
+ id: string;
2542
+ rightIcon: string;
2543
+ leftIcon: string;
2544
+ config: Record<string, any>;
2545
+ dataTest: string;
2546
+ icon: string;
2547
+ color?: string | undefined;
2548
+ disabled?: boolean | undefined;
2549
+ size?: string | undefined;
2550
+ square?: boolean | undefined;
2551
+ filled?: boolean | undefined;
2552
+ variant?: string | undefined;
2553
+ loading?: boolean | undefined;
2554
+ tag?: string | undefined;
2555
+ tabindex?: string | number | undefined;
2556
+ block?: boolean | undefined;
2557
+ round?: boolean | undefined;
2558
+ noRing?: boolean | undefined;
2559
+ $props: {
2560
+ readonly label?: string | undefined;
2561
+ readonly id?: string | undefined;
2562
+ readonly rightIcon?: string | undefined;
2563
+ readonly leftIcon?: string | undefined;
2564
+ readonly config?: Record<string, any> | undefined;
2565
+ readonly dataTest?: string | undefined;
2566
+ readonly icon?: string | undefined;
2567
+ readonly color?: string | undefined;
2568
+ readonly disabled?: boolean | undefined;
2569
+ readonly size?: string | undefined;
2570
+ readonly square?: boolean | undefined;
2571
+ readonly filled?: boolean | undefined;
2572
+ readonly variant?: string | undefined;
2573
+ readonly loading?: boolean | undefined;
2574
+ readonly tag?: string | undefined;
2575
+ readonly tabindex?: string | number | undefined;
2576
+ readonly block?: boolean | undefined;
2577
+ readonly round?: boolean | undefined;
2578
+ readonly noRing?: boolean | undefined;
2579
+ };
2580
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2581
+ $slots: {
2582
+ left?(_: {
2583
+ iconName: string;
2584
+ iconSize: any;
2585
+ iconColor: string | undefined;
2586
+ }): any;
2587
+ default?(_: {
2588
+ label: string;
2589
+ iconName: string;
2590
+ iconSize: any;
2591
+ iconColor: string | undefined;
2592
+ }): any;
2593
+ right?(_: {
2594
+ iconName: string;
2595
+ iconSize: any;
2596
+ iconColor: string | undefined;
2597
+ }): any;
2598
+ };
2599
+ });
2600
+ UIcon: import("vue").DefineComponent<{}, {
2601
+ $emit: (event: "click", ...args: any[]) => void;
2602
+ config: Record<string, any>;
2603
+ name: string;
2604
+ src: Record<string, any>;
2605
+ tooltip: string;
2606
+ tooltipSettings: Record<string, any>;
2607
+ dataTest: string;
2608
+ internal: boolean;
2609
+ color?: string | undefined;
2610
+ size?: string | undefined;
2611
+ interactive?: boolean | undefined;
2612
+ variant?: string | undefined;
2613
+ $props: {
2614
+ readonly config?: Record<string, any> | undefined;
2615
+ readonly name?: string | undefined;
2616
+ readonly src?: Record<string, any> | undefined;
2617
+ readonly tooltip?: string | undefined;
2618
+ readonly tooltipSettings?: Record<string, any> | undefined;
2619
+ readonly dataTest?: string | undefined;
2620
+ readonly internal?: boolean | undefined;
2621
+ readonly color?: string | undefined;
2622
+ readonly size?: string | undefined;
2623
+ readonly interactive?: boolean | undefined;
2624
+ readonly variant?: string | undefined;
2625
+ };
2626
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2627
+ };
2628
+ setup(): {
2629
+ args: any;
2630
+ slots: any;
2631
+ };
2632
+ template: string;
2633
+ };
2634
+ export namespace RightIconSlot {
2635
+ export namespace args_7 {
2636
+ let slotTemplate_1: string;
2637
+ export { slotTemplate_1 as slotTemplate };
2638
+ }
2639
+ export { args_7 as args };
2640
+ }
2641
+ export function LeftSlot(args: any): {
2642
+ components: {
2643
+ UInputSearch: {
2644
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
2645
+ inputRef: import("vue").Ref<null, null>;
2646
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2647
+ label: string;
2648
+ id: string;
2649
+ description: string;
2650
+ error: string;
2651
+ rightIcon: string;
2652
+ leftIcon: string;
2653
+ config: Record<string, any>;
2654
+ dataTest: string;
2655
+ modelValue: string;
2656
+ placeholder: string;
2657
+ searchButtonLabel: string;
2658
+ disabled?: boolean | undefined;
2659
+ size?: string | undefined;
2660
+ labelAlign?: string | undefined;
2661
+ readonly?: boolean | undefined;
2662
+ minLength?: string | number | undefined;
2663
+ debounce?: string | number | undefined;
2664
+ $props: {
2665
+ readonly label?: string | undefined;
2666
+ readonly id?: string | undefined;
2667
+ readonly description?: string | undefined;
2668
+ readonly error?: string | undefined;
2669
+ readonly rightIcon?: string | undefined;
2670
+ readonly leftIcon?: string | undefined;
2671
+ readonly config?: Record<string, any> | undefined;
2672
+ readonly dataTest?: string | undefined;
2673
+ readonly modelValue?: string | undefined;
2674
+ readonly placeholder?: string | undefined;
2675
+ readonly searchButtonLabel?: string | undefined;
2676
+ readonly disabled?: boolean | undefined;
2677
+ readonly size?: string | undefined;
2678
+ readonly labelAlign?: string | undefined;
2679
+ readonly readonly?: boolean | undefined;
2680
+ readonly minLength?: string | number | undefined;
2681
+ readonly debounce?: string | number | undefined;
2682
+ };
2683
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2684
+ P: {};
2685
+ B: {};
2686
+ D: {};
2687
+ C: {};
2688
+ M: {};
2689
+ Defaults: {};
2690
+ }, Readonly<{}> & Readonly<{}>, {
2691
+ inputRef: import("vue").Ref<null, null>;
2692
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2693
+ label: string;
2694
+ id: string;
2695
+ description: string;
2696
+ error: string;
2697
+ rightIcon: string;
2698
+ leftIcon: string;
2699
+ config: Record<string, any>;
2700
+ dataTest: string;
2701
+ modelValue: string;
2702
+ placeholder: string;
2703
+ searchButtonLabel: string;
2704
+ disabled?: boolean | undefined;
2705
+ size?: string | undefined;
2706
+ labelAlign?: string | undefined;
2707
+ readonly?: boolean | undefined;
2708
+ minLength?: string | number | undefined;
2709
+ debounce?: string | number | undefined;
2710
+ $props: {
2711
+ readonly label?: string | undefined;
2712
+ readonly id?: string | undefined;
2713
+ readonly description?: string | undefined;
2714
+ readonly error?: string | undefined;
2715
+ readonly rightIcon?: string | undefined;
2716
+ readonly leftIcon?: string | undefined;
2717
+ readonly config?: Record<string, any> | undefined;
2718
+ readonly dataTest?: string | undefined;
2719
+ readonly modelValue?: string | undefined;
2720
+ readonly placeholder?: string | undefined;
2721
+ readonly searchButtonLabel?: string | undefined;
2722
+ readonly disabled?: boolean | undefined;
2723
+ readonly size?: string | undefined;
2724
+ readonly labelAlign?: string | undefined;
2725
+ readonly readonly?: boolean | undefined;
2726
+ readonly minLength?: string | number | undefined;
2727
+ readonly debounce?: string | number | undefined;
2728
+ };
2729
+ }, {}, {}, {}, {}>;
2730
+ __isFragment?: never;
2731
+ __isTeleport?: never;
2732
+ __isSuspense?: never;
2733
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
2734
+ inputRef: import("vue").Ref<null, null>;
2735
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2736
+ label: string;
2737
+ id: string;
2738
+ description: string;
2739
+ error: string;
2740
+ rightIcon: string;
2741
+ leftIcon: string;
2742
+ config: Record<string, any>;
2743
+ dataTest: string;
2744
+ modelValue: string;
2745
+ placeholder: string;
2746
+ searchButtonLabel: string;
2747
+ disabled?: boolean | undefined;
2748
+ size?: string | undefined;
2749
+ labelAlign?: string | undefined;
2750
+ readonly?: boolean | undefined;
2751
+ minLength?: string | number | undefined;
2752
+ debounce?: string | number | undefined;
2753
+ $props: {
2754
+ readonly label?: string | undefined;
2755
+ readonly id?: string | undefined;
2756
+ readonly description?: string | undefined;
2757
+ readonly error?: string | undefined;
2758
+ readonly rightIcon?: string | undefined;
2759
+ readonly leftIcon?: string | undefined;
2760
+ readonly config?: Record<string, any> | undefined;
2761
+ readonly dataTest?: string | undefined;
2762
+ readonly modelValue?: string | undefined;
2763
+ readonly placeholder?: string | undefined;
2764
+ readonly searchButtonLabel?: string | undefined;
2765
+ readonly disabled?: boolean | undefined;
2766
+ readonly size?: string | undefined;
2767
+ readonly labelAlign?: string | undefined;
2768
+ readonly readonly?: boolean | undefined;
2769
+ readonly minLength?: string | number | undefined;
2770
+ readonly debounce?: string | number | undefined;
2771
+ };
2772
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2773
+ $slots: {
2774
+ left?(_: {}): any;
2775
+ "left-icon"?(_: {}): any;
2776
+ "right-icon"?(_: {
2777
+ iconName: any;
2778
+ iconSize: any;
2779
+ searchButtonLabel: string;
2780
+ }): any;
2781
+ right?(_: {}): any;
2782
+ };
2783
+ });
2784
+ UButton: {
2785
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
2786
+ buttonRef: import("vue").Ref<null, null>;
2787
+ label: string;
2788
+ id: string;
2789
+ rightIcon: string;
2790
+ leftIcon: string;
2791
+ config: Record<string, any>;
2792
+ dataTest: string;
2793
+ icon: string;
2794
+ color?: string | undefined;
2795
+ disabled?: boolean | undefined;
2796
+ size?: string | undefined;
2797
+ square?: boolean | undefined;
2798
+ filled?: boolean | undefined;
2799
+ variant?: string | undefined;
2800
+ loading?: boolean | undefined;
2801
+ tag?: string | undefined;
2802
+ tabindex?: string | number | undefined;
2803
+ block?: boolean | undefined;
2804
+ round?: boolean | undefined;
2805
+ noRing?: boolean | undefined;
2806
+ $props: {
2807
+ readonly label?: string | undefined;
2808
+ readonly id?: string | undefined;
2809
+ readonly rightIcon?: string | undefined;
2810
+ readonly leftIcon?: string | undefined;
2811
+ readonly config?: Record<string, any> | undefined;
2812
+ readonly dataTest?: string | undefined;
2813
+ readonly icon?: string | undefined;
2814
+ readonly color?: string | undefined;
2815
+ readonly disabled?: boolean | undefined;
2816
+ readonly size?: string | undefined;
2817
+ readonly square?: boolean | undefined;
2818
+ readonly filled?: boolean | undefined;
2819
+ readonly variant?: string | undefined;
2820
+ readonly loading?: boolean | undefined;
2821
+ readonly tag?: string | undefined;
2822
+ readonly tabindex?: string | number | undefined;
2823
+ readonly block?: boolean | undefined;
2824
+ readonly round?: boolean | undefined;
2825
+ readonly noRing?: boolean | undefined;
2826
+ };
2827
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
2828
+ P: {};
2829
+ B: {};
2830
+ D: {};
2831
+ C: {};
2832
+ M: {};
2833
+ Defaults: {};
2834
+ }, Readonly<{}> & Readonly<{}>, {
2835
+ buttonRef: import("vue").Ref<null, null>;
2836
+ label: string;
2837
+ id: string;
2838
+ rightIcon: string;
2839
+ leftIcon: string;
2840
+ config: Record<string, any>;
2841
+ dataTest: string;
2842
+ icon: string;
2843
+ color?: string | undefined;
2844
+ disabled?: boolean | undefined;
2845
+ size?: string | undefined;
2846
+ square?: boolean | undefined;
2847
+ filled?: boolean | undefined;
2848
+ variant?: string | undefined;
2849
+ loading?: boolean | undefined;
2850
+ tag?: string | undefined;
2851
+ tabindex?: string | number | undefined;
2852
+ block?: boolean | undefined;
2853
+ round?: boolean | undefined;
2854
+ noRing?: boolean | undefined;
2855
+ $props: {
2856
+ readonly label?: string | undefined;
2857
+ readonly id?: string | undefined;
2858
+ readonly rightIcon?: string | undefined;
2859
+ readonly leftIcon?: string | undefined;
2860
+ readonly config?: Record<string, any> | undefined;
2861
+ readonly dataTest?: string | undefined;
2862
+ readonly icon?: string | undefined;
2863
+ readonly color?: string | undefined;
2864
+ readonly disabled?: boolean | undefined;
2865
+ readonly size?: string | undefined;
2866
+ readonly square?: boolean | undefined;
2867
+ readonly filled?: boolean | undefined;
2868
+ readonly variant?: string | undefined;
2869
+ readonly loading?: boolean | undefined;
2870
+ readonly tag?: string | undefined;
2871
+ readonly tabindex?: string | number | undefined;
2872
+ readonly block?: boolean | undefined;
2873
+ readonly round?: boolean | undefined;
2874
+ readonly noRing?: boolean | undefined;
2875
+ };
2876
+ }, {}, {}, {}, {}>;
2877
+ __isFragment?: never;
2878
+ __isTeleport?: never;
2879
+ __isSuspense?: never;
2880
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
2881
+ buttonRef: import("vue").Ref<null, null>;
2882
+ label: string;
2883
+ id: string;
2884
+ rightIcon: string;
2885
+ leftIcon: string;
2886
+ config: Record<string, any>;
2887
+ dataTest: string;
2888
+ icon: string;
2889
+ color?: string | undefined;
2890
+ disabled?: boolean | undefined;
2891
+ size?: string | undefined;
2892
+ square?: boolean | undefined;
2893
+ filled?: boolean | undefined;
2894
+ variant?: string | undefined;
2895
+ loading?: boolean | undefined;
2896
+ tag?: string | undefined;
2897
+ tabindex?: string | number | undefined;
2898
+ block?: boolean | undefined;
2899
+ round?: boolean | undefined;
2900
+ noRing?: boolean | undefined;
2901
+ $props: {
2902
+ readonly label?: string | undefined;
2903
+ readonly id?: string | undefined;
2904
+ readonly rightIcon?: string | undefined;
2905
+ readonly leftIcon?: string | undefined;
2906
+ readonly config?: Record<string, any> | undefined;
2907
+ readonly dataTest?: string | undefined;
2908
+ readonly icon?: string | undefined;
2909
+ readonly color?: string | undefined;
2910
+ readonly disabled?: boolean | undefined;
2911
+ readonly size?: string | undefined;
2912
+ readonly square?: boolean | undefined;
2913
+ readonly filled?: boolean | undefined;
2914
+ readonly variant?: string | undefined;
2915
+ readonly loading?: boolean | undefined;
2916
+ readonly tag?: string | undefined;
2917
+ readonly tabindex?: string | number | undefined;
2918
+ readonly block?: boolean | undefined;
2919
+ readonly round?: boolean | undefined;
2920
+ readonly noRing?: boolean | undefined;
2921
+ };
2922
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2923
+ $slots: {
2924
+ left?(_: {
2925
+ iconName: string;
2926
+ iconSize: any;
2927
+ iconColor: string | undefined;
2928
+ }): any;
2929
+ default?(_: {
2930
+ label: string;
2931
+ iconName: string;
2932
+ iconSize: any;
2933
+ iconColor: string | undefined;
2934
+ }): any;
2935
+ right?(_: {
2936
+ iconName: string;
2937
+ iconSize: any;
2938
+ iconColor: string | undefined;
2939
+ }): any;
2940
+ };
2941
+ });
2942
+ UIcon: import("vue").DefineComponent<{}, {
2943
+ $emit: (event: "click", ...args: any[]) => void;
2944
+ config: Record<string, any>;
2945
+ name: string;
2946
+ src: Record<string, any>;
2947
+ tooltip: string;
2948
+ tooltipSettings: Record<string, any>;
2949
+ dataTest: string;
2950
+ internal: boolean;
2951
+ color?: string | undefined;
2952
+ size?: string | undefined;
2953
+ interactive?: boolean | undefined;
2954
+ variant?: string | undefined;
2955
+ $props: {
2956
+ readonly config?: Record<string, any> | undefined;
2957
+ readonly name?: string | undefined;
2958
+ readonly src?: Record<string, any> | undefined;
2959
+ readonly tooltip?: string | undefined;
2960
+ readonly tooltipSettings?: Record<string, any> | undefined;
2961
+ readonly dataTest?: string | undefined;
2962
+ readonly internal?: boolean | undefined;
2963
+ readonly color?: string | undefined;
2964
+ readonly size?: string | undefined;
2965
+ readonly interactive?: boolean | undefined;
2966
+ readonly variant?: string | undefined;
2967
+ };
2968
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2969
+ };
2970
+ setup(): {
2971
+ args: any;
2972
+ slots: any;
2973
+ };
2974
+ template: string;
2975
+ };
2976
+ export namespace LeftSlot {
2977
+ export namespace args_8 {
2978
+ let slotTemplate_2: string;
2979
+ export { slotTemplate_2 as slotTemplate };
2980
+ }
2981
+ export { args_8 as args };
2982
+ }
2983
+ export function RightSlot(args: any): {
2984
+ components: {
2985
+ UInputSearch: {
2986
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
2987
+ inputRef: import("vue").Ref<null, null>;
2988
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
2989
+ label: string;
2990
+ id: string;
2991
+ description: string;
2992
+ error: string;
2993
+ rightIcon: string;
2994
+ leftIcon: string;
2995
+ config: Record<string, any>;
2996
+ dataTest: string;
2997
+ modelValue: string;
2998
+ placeholder: string;
2999
+ searchButtonLabel: string;
3000
+ disabled?: boolean | undefined;
3001
+ size?: string | undefined;
3002
+ labelAlign?: string | undefined;
3003
+ readonly?: boolean | undefined;
3004
+ minLength?: string | number | undefined;
3005
+ debounce?: string | number | undefined;
3006
+ $props: {
3007
+ readonly label?: string | undefined;
3008
+ readonly id?: string | undefined;
3009
+ readonly description?: string | undefined;
3010
+ readonly error?: string | undefined;
3011
+ readonly rightIcon?: string | undefined;
3012
+ readonly leftIcon?: string | undefined;
3013
+ readonly config?: Record<string, any> | undefined;
3014
+ readonly dataTest?: string | undefined;
3015
+ readonly modelValue?: string | undefined;
3016
+ readonly placeholder?: string | undefined;
3017
+ readonly searchButtonLabel?: string | undefined;
3018
+ readonly disabled?: boolean | undefined;
3019
+ readonly size?: string | undefined;
3020
+ readonly labelAlign?: string | undefined;
3021
+ readonly readonly?: boolean | undefined;
3022
+ readonly minLength?: string | number | undefined;
3023
+ readonly debounce?: string | number | undefined;
3024
+ };
3025
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3026
+ P: {};
3027
+ B: {};
3028
+ D: {};
3029
+ C: {};
3030
+ M: {};
3031
+ Defaults: {};
3032
+ }, Readonly<{}> & Readonly<{}>, {
3033
+ inputRef: import("vue").Ref<null, null>;
3034
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
3035
+ label: string;
3036
+ id: string;
3037
+ description: string;
3038
+ error: string;
3039
+ rightIcon: string;
3040
+ leftIcon: string;
3041
+ config: Record<string, any>;
3042
+ dataTest: string;
3043
+ modelValue: string;
3044
+ placeholder: string;
3045
+ searchButtonLabel: string;
3046
+ disabled?: boolean | undefined;
3047
+ size?: string | undefined;
3048
+ labelAlign?: string | undefined;
3049
+ readonly?: boolean | undefined;
3050
+ minLength?: string | number | undefined;
3051
+ debounce?: string | number | undefined;
3052
+ $props: {
3053
+ readonly label?: string | undefined;
3054
+ readonly id?: string | undefined;
3055
+ readonly description?: string | undefined;
3056
+ readonly error?: string | undefined;
3057
+ readonly rightIcon?: string | undefined;
3058
+ readonly leftIcon?: string | undefined;
3059
+ readonly config?: Record<string, any> | undefined;
3060
+ readonly dataTest?: string | undefined;
3061
+ readonly modelValue?: string | undefined;
3062
+ readonly placeholder?: string | undefined;
3063
+ readonly searchButtonLabel?: string | undefined;
3064
+ readonly disabled?: boolean | undefined;
3065
+ readonly size?: string | undefined;
3066
+ readonly labelAlign?: string | undefined;
3067
+ readonly readonly?: boolean | undefined;
3068
+ readonly minLength?: string | number | undefined;
3069
+ readonly debounce?: string | number | undefined;
3070
+ };
3071
+ }, {}, {}, {}, {}>;
3072
+ __isFragment?: never;
3073
+ __isTeleport?: never;
3074
+ __isSuspense?: never;
3075
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
3076
+ inputRef: import("vue").Ref<null, null>;
3077
+ $emit: (event: "clear" | "search" | "update:modelValue", ...args: any[]) => void;
3078
+ label: string;
3079
+ id: string;
3080
+ description: string;
3081
+ error: string;
3082
+ rightIcon: string;
3083
+ leftIcon: string;
3084
+ config: Record<string, any>;
3085
+ dataTest: string;
3086
+ modelValue: string;
3087
+ placeholder: string;
3088
+ searchButtonLabel: string;
3089
+ disabled?: boolean | undefined;
3090
+ size?: string | undefined;
3091
+ labelAlign?: string | undefined;
3092
+ readonly?: boolean | undefined;
3093
+ minLength?: string | number | undefined;
3094
+ debounce?: string | number | undefined;
3095
+ $props: {
3096
+ readonly label?: string | undefined;
3097
+ readonly id?: string | undefined;
3098
+ readonly description?: string | undefined;
3099
+ readonly error?: string | undefined;
3100
+ readonly rightIcon?: string | undefined;
3101
+ readonly leftIcon?: string | undefined;
3102
+ readonly config?: Record<string, any> | undefined;
3103
+ readonly dataTest?: string | undefined;
3104
+ readonly modelValue?: string | undefined;
3105
+ readonly placeholder?: string | undefined;
3106
+ readonly searchButtonLabel?: string | undefined;
3107
+ readonly disabled?: boolean | undefined;
3108
+ readonly size?: string | undefined;
3109
+ readonly labelAlign?: string | undefined;
3110
+ readonly readonly?: boolean | undefined;
3111
+ readonly minLength?: string | number | undefined;
3112
+ readonly debounce?: string | number | undefined;
3113
+ };
3114
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3115
+ $slots: {
3116
+ left?(_: {}): any;
3117
+ "left-icon"?(_: {}): any;
3118
+ "right-icon"?(_: {
3119
+ iconName: any;
3120
+ iconSize: any;
3121
+ searchButtonLabel: string;
3122
+ }): any;
3123
+ right?(_: {}): any;
3124
+ };
3125
+ });
3126
+ UButton: {
3127
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
3128
+ buttonRef: import("vue").Ref<null, null>;
3129
+ label: string;
3130
+ id: string;
3131
+ rightIcon: string;
3132
+ leftIcon: string;
3133
+ config: Record<string, any>;
3134
+ dataTest: string;
3135
+ icon: string;
3136
+ color?: string | undefined;
3137
+ disabled?: boolean | undefined;
3138
+ size?: string | undefined;
3139
+ square?: boolean | undefined;
3140
+ filled?: boolean | undefined;
3141
+ variant?: string | undefined;
3142
+ loading?: boolean | undefined;
3143
+ tag?: string | undefined;
3144
+ tabindex?: string | number | undefined;
3145
+ block?: boolean | undefined;
3146
+ round?: boolean | undefined;
3147
+ noRing?: boolean | undefined;
3148
+ $props: {
3149
+ readonly label?: string | undefined;
3150
+ readonly id?: string | undefined;
3151
+ readonly rightIcon?: string | undefined;
3152
+ readonly leftIcon?: string | undefined;
3153
+ readonly config?: Record<string, any> | undefined;
3154
+ readonly dataTest?: string | undefined;
3155
+ readonly icon?: string | undefined;
3156
+ readonly color?: string | undefined;
3157
+ readonly disabled?: boolean | undefined;
3158
+ readonly size?: string | undefined;
3159
+ readonly square?: boolean | undefined;
3160
+ readonly filled?: boolean | undefined;
3161
+ readonly variant?: string | undefined;
3162
+ readonly loading?: boolean | undefined;
3163
+ readonly tag?: string | undefined;
3164
+ readonly tabindex?: string | number | undefined;
3165
+ readonly block?: boolean | undefined;
3166
+ readonly round?: boolean | undefined;
3167
+ readonly noRing?: boolean | undefined;
3168
+ };
3169
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3170
+ P: {};
3171
+ B: {};
3172
+ D: {};
3173
+ C: {};
3174
+ M: {};
3175
+ Defaults: {};
3176
+ }, Readonly<{}> & Readonly<{}>, {
3177
+ buttonRef: import("vue").Ref<null, null>;
3178
+ label: string;
3179
+ id: string;
3180
+ rightIcon: string;
3181
+ leftIcon: string;
3182
+ config: Record<string, any>;
3183
+ dataTest: string;
3184
+ icon: string;
3185
+ color?: string | undefined;
3186
+ disabled?: boolean | undefined;
3187
+ size?: string | undefined;
3188
+ square?: boolean | undefined;
3189
+ filled?: boolean | undefined;
3190
+ variant?: string | undefined;
3191
+ loading?: boolean | undefined;
3192
+ tag?: string | undefined;
3193
+ tabindex?: string | number | undefined;
3194
+ block?: boolean | undefined;
3195
+ round?: boolean | undefined;
3196
+ noRing?: boolean | undefined;
3197
+ $props: {
3198
+ readonly label?: string | undefined;
3199
+ readonly id?: string | undefined;
3200
+ readonly rightIcon?: string | undefined;
3201
+ readonly leftIcon?: string | undefined;
3202
+ readonly config?: Record<string, any> | undefined;
3203
+ readonly dataTest?: string | undefined;
3204
+ readonly icon?: string | undefined;
3205
+ readonly color?: string | undefined;
3206
+ readonly disabled?: boolean | undefined;
3207
+ readonly size?: string | undefined;
3208
+ readonly square?: boolean | undefined;
3209
+ readonly filled?: boolean | undefined;
3210
+ readonly variant?: string | undefined;
3211
+ readonly loading?: boolean | undefined;
3212
+ readonly tag?: string | undefined;
3213
+ readonly tabindex?: string | number | undefined;
3214
+ readonly block?: boolean | undefined;
3215
+ readonly round?: boolean | undefined;
3216
+ readonly noRing?: boolean | undefined;
3217
+ };
3218
+ }, {}, {}, {}, {}>;
3219
+ __isFragment?: never;
3220
+ __isTeleport?: never;
3221
+ __isSuspense?: never;
3222
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
3223
+ buttonRef: import("vue").Ref<null, null>;
3224
+ label: string;
3225
+ id: string;
3226
+ rightIcon: string;
3227
+ leftIcon: string;
3228
+ config: Record<string, any>;
3229
+ dataTest: string;
3230
+ icon: string;
3231
+ color?: string | undefined;
3232
+ disabled?: boolean | undefined;
3233
+ size?: string | undefined;
3234
+ square?: boolean | undefined;
3235
+ filled?: boolean | undefined;
3236
+ variant?: string | undefined;
3237
+ loading?: boolean | undefined;
3238
+ tag?: string | undefined;
3239
+ tabindex?: string | number | undefined;
3240
+ block?: boolean | undefined;
3241
+ round?: boolean | undefined;
3242
+ noRing?: boolean | undefined;
3243
+ $props: {
3244
+ readonly label?: string | undefined;
3245
+ readonly id?: string | undefined;
3246
+ readonly rightIcon?: string | undefined;
3247
+ readonly leftIcon?: string | undefined;
3248
+ readonly config?: Record<string, any> | undefined;
3249
+ readonly dataTest?: string | undefined;
3250
+ readonly icon?: string | undefined;
3251
+ readonly color?: string | undefined;
3252
+ readonly disabled?: boolean | undefined;
3253
+ readonly size?: string | undefined;
3254
+ readonly square?: boolean | undefined;
3255
+ readonly filled?: boolean | undefined;
3256
+ readonly variant?: string | undefined;
3257
+ readonly loading?: boolean | undefined;
3258
+ readonly tag?: string | undefined;
3259
+ readonly tabindex?: string | number | undefined;
3260
+ readonly block?: boolean | undefined;
3261
+ readonly round?: boolean | undefined;
3262
+ readonly noRing?: boolean | undefined;
3263
+ };
3264
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3265
+ $slots: {
3266
+ left?(_: {
3267
+ iconName: string;
3268
+ iconSize: any;
3269
+ iconColor: string | undefined;
3270
+ }): any;
3271
+ default?(_: {
3272
+ label: string;
3273
+ iconName: string;
3274
+ iconSize: any;
3275
+ iconColor: string | undefined;
3276
+ }): any;
3277
+ right?(_: {
3278
+ iconName: string;
3279
+ iconSize: any;
3280
+ iconColor: string | undefined;
3281
+ }): any;
3282
+ };
3283
+ });
3284
+ UIcon: import("vue").DefineComponent<{}, {
3285
+ $emit: (event: "click", ...args: any[]) => void;
3286
+ config: Record<string, any>;
3287
+ name: string;
3288
+ src: Record<string, any>;
3289
+ tooltip: string;
3290
+ tooltipSettings: Record<string, any>;
3291
+ dataTest: string;
3292
+ internal: boolean;
3293
+ color?: string | undefined;
3294
+ size?: string | undefined;
3295
+ interactive?: boolean | undefined;
3296
+ variant?: string | undefined;
3297
+ $props: {
3298
+ readonly config?: Record<string, any> | undefined;
3299
+ readonly name?: string | undefined;
3300
+ readonly src?: Record<string, any> | undefined;
3301
+ readonly tooltip?: string | undefined;
3302
+ readonly tooltipSettings?: Record<string, any> | undefined;
3303
+ readonly dataTest?: string | undefined;
3304
+ readonly internal?: boolean | undefined;
3305
+ readonly color?: string | undefined;
3306
+ readonly size?: string | undefined;
3307
+ readonly interactive?: boolean | undefined;
3308
+ readonly variant?: string | undefined;
3309
+ };
3310
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3311
+ };
3312
+ setup(): {
3313
+ args: any;
3314
+ slots: any;
3315
+ };
3316
+ template: string;
3317
+ };
3318
+ export namespace RightSlot {
3319
+ export namespace args_9 {
3320
+ let slotTemplate_3: string;
3321
+ export { slotTemplate_3 as slotTemplate };
3322
+ }
3323
+ export { args_9 as args };
3324
+ }
3325
+ import UInputSearch from "../../ui.form-input-search/UInputSearch.vue";