vueless 0.0.474 → 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 (384) 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 +1 -1
  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} +30 -22
  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/utilsTs/utilHelper.d.ts +9 -0
  370. package/utilsTs/utilHelper.ts +70 -0
  371. package/utilsTs/utilPlatform.d.ts +7 -0
  372. package/utilsTs/utilPlatform.ts +53 -0
  373. package/utilsTs/utilStorybook.d.ts +24 -0
  374. package/utilsTs/utilStorybook.ts +292 -0
  375. package/utilsTs/utilTailwind.d.ts +1 -0
  376. package/utilsTs/utilTailwind.ts +38 -0
  377. package/utilsTs/utilTheme.d.ts +8 -0
  378. package/{utils/utilTheme.js → utilsTs/utilTheme.ts} +31 -27
  379. package/utilsTs/utilUI.d.ts +67 -0
  380. package/utilsTs/utilUI.ts +142 -0
  381. package/web-types.json +30 -120
  382. package/ui.text-block/useAttrs.js +0 -15
  383. /package/ui.text-block/{config.js → config.ts} +0 -0
  384. /package/ui.text-block/{constants.js → constants.ts} +0 -0
@@ -0,0 +1,1869 @@
1
+ declare namespace _default {
2
+ export let id: string;
3
+ export let title: string;
4
+ export { UBadge as component };
5
+ export namespace args {
6
+ let label: string;
7
+ }
8
+ export let argTypes: {
9
+ defaultTemplate?: {
10
+ table: {
11
+ disable: boolean;
12
+ };
13
+ } | undefined;
14
+ slotTemplate?: {
15
+ table: {
16
+ disable: boolean;
17
+ };
18
+ } | undefined;
19
+ };
20
+ }
21
+ export default _default;
22
+ export function Default(args: any): {
23
+ components: {
24
+ UBadge: {
25
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
26
+ wrapperRef: import("vue").Ref<null, null>;
27
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
28
+ label: string;
29
+ rightIcon: string;
30
+ leftIcon: string;
31
+ config: Record<string, any>;
32
+ dataTest: string;
33
+ icon: string;
34
+ color?: string | undefined;
35
+ size?: string | undefined;
36
+ variant?: string | undefined;
37
+ tabindex?: string | number | undefined;
38
+ round?: boolean | undefined;
39
+ bordered?: boolean | undefined;
40
+ $props: {
41
+ readonly label?: string | undefined;
42
+ readonly rightIcon?: string | undefined;
43
+ readonly leftIcon?: string | undefined;
44
+ readonly config?: Record<string, any> | undefined;
45
+ readonly dataTest?: string | undefined;
46
+ readonly icon?: string | undefined;
47
+ readonly color?: string | undefined;
48
+ readonly size?: string | undefined;
49
+ readonly variant?: string | undefined;
50
+ readonly tabindex?: string | number | undefined;
51
+ readonly round?: boolean | undefined;
52
+ readonly bordered?: boolean | undefined;
53
+ };
54
+ }, {}, {}, {}, 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, {
55
+ P: {};
56
+ B: {};
57
+ D: {};
58
+ C: {};
59
+ M: {};
60
+ Defaults: {};
61
+ }, Readonly<{}> & Readonly<{}>, {
62
+ wrapperRef: import("vue").Ref<null, null>;
63
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
64
+ label: string;
65
+ rightIcon: string;
66
+ leftIcon: string;
67
+ config: Record<string, any>;
68
+ dataTest: string;
69
+ icon: string;
70
+ color?: string | undefined;
71
+ size?: string | undefined;
72
+ variant?: string | undefined;
73
+ tabindex?: string | number | undefined;
74
+ round?: boolean | undefined;
75
+ bordered?: boolean | undefined;
76
+ $props: {
77
+ readonly label?: string | undefined;
78
+ readonly rightIcon?: string | undefined;
79
+ readonly leftIcon?: string | undefined;
80
+ readonly config?: Record<string, any> | undefined;
81
+ readonly dataTest?: string | undefined;
82
+ readonly icon?: string | undefined;
83
+ readonly color?: string | undefined;
84
+ readonly size?: string | undefined;
85
+ readonly variant?: string | undefined;
86
+ readonly tabindex?: string | number | undefined;
87
+ readonly round?: boolean | undefined;
88
+ readonly bordered?: boolean | undefined;
89
+ };
90
+ }, {}, {}, {}, {}>;
91
+ __isFragment?: never;
92
+ __isTeleport?: never;
93
+ __isSuspense?: never;
94
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
95
+ wrapperRef: import("vue").Ref<null, null>;
96
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
97
+ label: string;
98
+ rightIcon: string;
99
+ leftIcon: string;
100
+ config: Record<string, any>;
101
+ dataTest: string;
102
+ icon: string;
103
+ color?: string | undefined;
104
+ size?: string | undefined;
105
+ variant?: string | undefined;
106
+ tabindex?: string | number | undefined;
107
+ round?: boolean | undefined;
108
+ bordered?: boolean | undefined;
109
+ $props: {
110
+ readonly label?: string | undefined;
111
+ readonly rightIcon?: string | undefined;
112
+ readonly leftIcon?: string | undefined;
113
+ readonly config?: Record<string, any> | undefined;
114
+ readonly dataTest?: string | undefined;
115
+ readonly icon?: string | undefined;
116
+ readonly color?: string | undefined;
117
+ readonly size?: string | undefined;
118
+ readonly variant?: string | undefined;
119
+ readonly tabindex?: string | number | undefined;
120
+ readonly round?: boolean | undefined;
121
+ readonly bordered?: boolean | undefined;
122
+ };
123
+ }, {}, {}, {}, 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 () => {
124
+ $slots: {
125
+ left?(_: {
126
+ iconName: string;
127
+ iconSize: any;
128
+ iconColor: string | undefined;
129
+ }): any;
130
+ default?(_: {
131
+ label: string;
132
+ iconName: string;
133
+ iconSize: any;
134
+ iconColor: string | undefined;
135
+ }): any;
136
+ right?(_: {
137
+ iconName: string;
138
+ iconSize: any;
139
+ iconColor: string | undefined;
140
+ }): any;
141
+ };
142
+ });
143
+ UIcon: import("vue").DefineComponent<{}, {
144
+ $emit: (event: "click", ...args: any[]) => void;
145
+ config: Record<string, any>;
146
+ name: string;
147
+ src: Record<string, any>;
148
+ tooltip: string;
149
+ tooltipSettings: Record<string, any>;
150
+ dataTest: string;
151
+ internal: boolean;
152
+ color?: string | undefined;
153
+ size?: string | undefined;
154
+ interactive?: boolean | undefined;
155
+ variant?: string | undefined;
156
+ $props: {
157
+ readonly config?: Record<string, any> | undefined;
158
+ readonly name?: string | undefined;
159
+ readonly src?: Record<string, any> | undefined;
160
+ readonly tooltip?: string | undefined;
161
+ readonly tooltipSettings?: Record<string, any> | undefined;
162
+ readonly dataTest?: string | undefined;
163
+ readonly internal?: boolean | undefined;
164
+ readonly color?: string | undefined;
165
+ readonly size?: string | undefined;
166
+ readonly interactive?: boolean | undefined;
167
+ readonly variant?: string | undefined;
168
+ };
169
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
170
+ };
171
+ setup(): {
172
+ args: any;
173
+ slots: any;
174
+ };
175
+ template: string;
176
+ };
177
+ export namespace Default {
178
+ let args_1: {};
179
+ export { args_1 as args };
180
+ }
181
+ export function Variants(args: any, { argTypes }?: {}): {
182
+ components: {
183
+ UBadge: {
184
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
185
+ wrapperRef: import("vue").Ref<null, null>;
186
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
187
+ label: string;
188
+ rightIcon: string;
189
+ leftIcon: string;
190
+ config: Record<string, any>;
191
+ dataTest: string;
192
+ icon: string;
193
+ color?: string | undefined;
194
+ size?: string | undefined;
195
+ variant?: string | undefined;
196
+ tabindex?: string | number | undefined;
197
+ round?: boolean | undefined;
198
+ bordered?: boolean | undefined;
199
+ $props: {
200
+ readonly label?: string | undefined;
201
+ readonly rightIcon?: string | undefined;
202
+ readonly leftIcon?: string | undefined;
203
+ readonly config?: Record<string, any> | undefined;
204
+ readonly dataTest?: string | undefined;
205
+ readonly icon?: string | undefined;
206
+ readonly color?: string | undefined;
207
+ readonly size?: string | undefined;
208
+ readonly variant?: string | undefined;
209
+ readonly tabindex?: string | number | undefined;
210
+ readonly round?: boolean | undefined;
211
+ readonly bordered?: boolean | undefined;
212
+ };
213
+ }, {}, {}, {}, 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, {
214
+ P: {};
215
+ B: {};
216
+ D: {};
217
+ C: {};
218
+ M: {};
219
+ Defaults: {};
220
+ }, Readonly<{}> & Readonly<{}>, {
221
+ wrapperRef: import("vue").Ref<null, null>;
222
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
223
+ label: string;
224
+ rightIcon: string;
225
+ leftIcon: string;
226
+ config: Record<string, any>;
227
+ dataTest: string;
228
+ icon: string;
229
+ color?: string | undefined;
230
+ size?: string | undefined;
231
+ variant?: string | undefined;
232
+ tabindex?: string | number | undefined;
233
+ round?: boolean | undefined;
234
+ bordered?: boolean | undefined;
235
+ $props: {
236
+ readonly label?: string | undefined;
237
+ readonly rightIcon?: string | undefined;
238
+ readonly leftIcon?: string | undefined;
239
+ readonly config?: Record<string, any> | undefined;
240
+ readonly dataTest?: string | undefined;
241
+ readonly icon?: string | undefined;
242
+ readonly color?: string | undefined;
243
+ readonly size?: string | undefined;
244
+ readonly variant?: string | undefined;
245
+ readonly tabindex?: string | number | undefined;
246
+ readonly round?: boolean | undefined;
247
+ readonly bordered?: boolean | undefined;
248
+ };
249
+ }, {}, {}, {}, {}>;
250
+ __isFragment?: never;
251
+ __isTeleport?: never;
252
+ __isSuspense?: never;
253
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
254
+ wrapperRef: import("vue").Ref<null, null>;
255
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
256
+ label: string;
257
+ rightIcon: string;
258
+ leftIcon: string;
259
+ config: Record<string, any>;
260
+ dataTest: string;
261
+ icon: string;
262
+ color?: string | undefined;
263
+ size?: string | undefined;
264
+ variant?: string | undefined;
265
+ tabindex?: string | number | undefined;
266
+ round?: boolean | undefined;
267
+ bordered?: boolean | undefined;
268
+ $props: {
269
+ readonly label?: string | undefined;
270
+ readonly rightIcon?: string | undefined;
271
+ readonly leftIcon?: string | undefined;
272
+ readonly config?: Record<string, any> | undefined;
273
+ readonly dataTest?: string | undefined;
274
+ readonly icon?: string | undefined;
275
+ readonly color?: string | undefined;
276
+ readonly size?: string | undefined;
277
+ readonly variant?: string | undefined;
278
+ readonly tabindex?: string | number | undefined;
279
+ readonly round?: boolean | undefined;
280
+ readonly bordered?: boolean | undefined;
281
+ };
282
+ }, {}, {}, {}, 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 () => {
283
+ $slots: {
284
+ left?(_: {
285
+ iconName: string;
286
+ iconSize: any;
287
+ iconColor: string | undefined;
288
+ }): any;
289
+ default?(_: {
290
+ label: string;
291
+ iconName: string;
292
+ iconSize: any;
293
+ iconColor: string | undefined;
294
+ }): any;
295
+ right?(_: {
296
+ iconName: string;
297
+ iconSize: any;
298
+ iconColor: string | undefined;
299
+ }): any;
300
+ };
301
+ });
302
+ URow: {
303
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
304
+ config: Record<string, any>;
305
+ dataTest: string;
306
+ reverse?: boolean | undefined;
307
+ content?: string | undefined;
308
+ gap?: string | undefined;
309
+ align?: string | undefined;
310
+ justify?: string | undefined;
311
+ wrap?: boolean | undefined;
312
+ noMobile?: boolean | undefined;
313
+ $props: {
314
+ readonly config?: Record<string, any> | undefined;
315
+ readonly dataTest?: string | undefined;
316
+ readonly reverse?: boolean | undefined;
317
+ readonly content?: string | undefined;
318
+ readonly gap?: string | undefined;
319
+ readonly align?: string | undefined;
320
+ readonly justify?: string | undefined;
321
+ readonly wrap?: boolean | undefined;
322
+ readonly noMobile?: boolean | undefined;
323
+ };
324
+ }, {}, {}, {}, 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, {
325
+ P: {};
326
+ B: {};
327
+ D: {};
328
+ C: {};
329
+ M: {};
330
+ Defaults: {};
331
+ }, Readonly<{}> & Readonly<{}>, {
332
+ config: Record<string, any>;
333
+ dataTest: string;
334
+ reverse?: boolean | undefined;
335
+ content?: string | undefined;
336
+ gap?: string | undefined;
337
+ align?: string | undefined;
338
+ justify?: string | undefined;
339
+ wrap?: boolean | undefined;
340
+ noMobile?: boolean | undefined;
341
+ $props: {
342
+ readonly config?: Record<string, any> | undefined;
343
+ readonly dataTest?: string | undefined;
344
+ readonly reverse?: boolean | undefined;
345
+ readonly content?: string | undefined;
346
+ readonly gap?: string | undefined;
347
+ readonly align?: string | undefined;
348
+ readonly justify?: string | undefined;
349
+ readonly wrap?: boolean | undefined;
350
+ readonly noMobile?: boolean | undefined;
351
+ };
352
+ }, {}, {}, {}, {}>;
353
+ __isFragment?: never;
354
+ __isTeleport?: never;
355
+ __isSuspense?: never;
356
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
357
+ config: Record<string, any>;
358
+ dataTest: string;
359
+ reverse?: boolean | undefined;
360
+ content?: string | undefined;
361
+ gap?: string | undefined;
362
+ align?: string | undefined;
363
+ justify?: string | undefined;
364
+ wrap?: boolean | undefined;
365
+ noMobile?: boolean | undefined;
366
+ $props: {
367
+ readonly config?: Record<string, any> | undefined;
368
+ readonly dataTest?: string | undefined;
369
+ readonly reverse?: boolean | undefined;
370
+ readonly content?: string | undefined;
371
+ readonly gap?: string | undefined;
372
+ readonly align?: string | undefined;
373
+ readonly justify?: string | undefined;
374
+ readonly wrap?: boolean | undefined;
375
+ readonly noMobile?: boolean | undefined;
376
+ };
377
+ }, {}, {}, {}, 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 () => {
378
+ $slots: {
379
+ default?(_: {}): any;
380
+ };
381
+ });
382
+ };
383
+ setup(): {
384
+ args: any;
385
+ options: any;
386
+ getText: (value: any) => string;
387
+ };
388
+ template: string;
389
+ };
390
+ export namespace Variants {
391
+ export namespace args_2 {
392
+ let _enum: string;
393
+ export { _enum as enum };
394
+ }
395
+ export { args_2 as args };
396
+ }
397
+ export function Sizes(args: any, { argTypes }?: {}): {
398
+ components: {
399
+ UBadge: {
400
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
401
+ wrapperRef: import("vue").Ref<null, null>;
402
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
403
+ label: string;
404
+ rightIcon: string;
405
+ leftIcon: string;
406
+ config: Record<string, any>;
407
+ dataTest: string;
408
+ icon: string;
409
+ color?: string | undefined;
410
+ size?: string | undefined;
411
+ variant?: string | undefined;
412
+ tabindex?: string | number | undefined;
413
+ round?: boolean | undefined;
414
+ bordered?: boolean | undefined;
415
+ $props: {
416
+ readonly label?: string | undefined;
417
+ readonly rightIcon?: string | undefined;
418
+ readonly leftIcon?: string | undefined;
419
+ readonly config?: Record<string, any> | undefined;
420
+ readonly dataTest?: string | undefined;
421
+ readonly icon?: string | undefined;
422
+ readonly color?: string | undefined;
423
+ readonly size?: string | undefined;
424
+ readonly variant?: string | undefined;
425
+ readonly tabindex?: string | number | undefined;
426
+ readonly round?: boolean | undefined;
427
+ readonly bordered?: boolean | undefined;
428
+ };
429
+ }, {}, {}, {}, 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, {
430
+ P: {};
431
+ B: {};
432
+ D: {};
433
+ C: {};
434
+ M: {};
435
+ Defaults: {};
436
+ }, Readonly<{}> & Readonly<{}>, {
437
+ wrapperRef: import("vue").Ref<null, null>;
438
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
439
+ label: string;
440
+ rightIcon: string;
441
+ leftIcon: string;
442
+ config: Record<string, any>;
443
+ dataTest: string;
444
+ icon: string;
445
+ color?: string | undefined;
446
+ size?: string | undefined;
447
+ variant?: string | undefined;
448
+ tabindex?: string | number | undefined;
449
+ round?: boolean | undefined;
450
+ bordered?: boolean | undefined;
451
+ $props: {
452
+ readonly label?: string | undefined;
453
+ readonly rightIcon?: string | undefined;
454
+ readonly leftIcon?: string | undefined;
455
+ readonly config?: Record<string, any> | undefined;
456
+ readonly dataTest?: string | undefined;
457
+ readonly icon?: string | undefined;
458
+ readonly color?: string | undefined;
459
+ readonly size?: string | undefined;
460
+ readonly variant?: string | undefined;
461
+ readonly tabindex?: string | number | undefined;
462
+ readonly round?: boolean | undefined;
463
+ readonly bordered?: boolean | undefined;
464
+ };
465
+ }, {}, {}, {}, {}>;
466
+ __isFragment?: never;
467
+ __isTeleport?: never;
468
+ __isSuspense?: never;
469
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
470
+ wrapperRef: import("vue").Ref<null, null>;
471
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
472
+ label: string;
473
+ rightIcon: string;
474
+ leftIcon: string;
475
+ config: Record<string, any>;
476
+ dataTest: string;
477
+ icon: string;
478
+ color?: string | undefined;
479
+ size?: string | undefined;
480
+ variant?: string | undefined;
481
+ tabindex?: string | number | undefined;
482
+ round?: boolean | undefined;
483
+ bordered?: boolean | undefined;
484
+ $props: {
485
+ readonly label?: string | undefined;
486
+ readonly rightIcon?: string | undefined;
487
+ readonly leftIcon?: string | undefined;
488
+ readonly config?: Record<string, any> | undefined;
489
+ readonly dataTest?: string | undefined;
490
+ readonly icon?: string | undefined;
491
+ readonly color?: string | undefined;
492
+ readonly size?: string | undefined;
493
+ readonly variant?: string | undefined;
494
+ readonly tabindex?: string | number | undefined;
495
+ readonly round?: boolean | undefined;
496
+ readonly bordered?: boolean | undefined;
497
+ };
498
+ }, {}, {}, {}, 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 () => {
499
+ $slots: {
500
+ left?(_: {
501
+ iconName: string;
502
+ iconSize: any;
503
+ iconColor: string | undefined;
504
+ }): any;
505
+ default?(_: {
506
+ label: string;
507
+ iconName: string;
508
+ iconSize: any;
509
+ iconColor: string | undefined;
510
+ }): any;
511
+ right?(_: {
512
+ iconName: string;
513
+ iconSize: any;
514
+ iconColor: string | undefined;
515
+ }): any;
516
+ };
517
+ });
518
+ URow: {
519
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
520
+ config: Record<string, any>;
521
+ dataTest: string;
522
+ reverse?: boolean | undefined;
523
+ content?: string | undefined;
524
+ gap?: string | undefined;
525
+ align?: string | undefined;
526
+ justify?: string | undefined;
527
+ wrap?: boolean | undefined;
528
+ noMobile?: boolean | undefined;
529
+ $props: {
530
+ readonly config?: Record<string, any> | undefined;
531
+ readonly dataTest?: string | undefined;
532
+ readonly reverse?: boolean | undefined;
533
+ readonly content?: string | undefined;
534
+ readonly gap?: string | undefined;
535
+ readonly align?: string | undefined;
536
+ readonly justify?: string | undefined;
537
+ readonly wrap?: boolean | undefined;
538
+ readonly noMobile?: boolean | undefined;
539
+ };
540
+ }, {}, {}, {}, 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, {
541
+ P: {};
542
+ B: {};
543
+ D: {};
544
+ C: {};
545
+ M: {};
546
+ Defaults: {};
547
+ }, Readonly<{}> & Readonly<{}>, {
548
+ config: Record<string, any>;
549
+ dataTest: string;
550
+ reverse?: boolean | undefined;
551
+ content?: string | undefined;
552
+ gap?: string | undefined;
553
+ align?: string | undefined;
554
+ justify?: string | undefined;
555
+ wrap?: boolean | undefined;
556
+ noMobile?: boolean | undefined;
557
+ $props: {
558
+ readonly config?: Record<string, any> | undefined;
559
+ readonly dataTest?: string | undefined;
560
+ readonly reverse?: boolean | undefined;
561
+ readonly content?: string | undefined;
562
+ readonly gap?: string | undefined;
563
+ readonly align?: string | undefined;
564
+ readonly justify?: string | undefined;
565
+ readonly wrap?: boolean | undefined;
566
+ readonly noMobile?: boolean | undefined;
567
+ };
568
+ }, {}, {}, {}, {}>;
569
+ __isFragment?: never;
570
+ __isTeleport?: never;
571
+ __isSuspense?: never;
572
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
573
+ config: Record<string, any>;
574
+ dataTest: string;
575
+ reverse?: boolean | undefined;
576
+ content?: string | undefined;
577
+ gap?: string | undefined;
578
+ align?: string | undefined;
579
+ justify?: string | undefined;
580
+ wrap?: boolean | undefined;
581
+ noMobile?: boolean | undefined;
582
+ $props: {
583
+ readonly config?: Record<string, any> | undefined;
584
+ readonly dataTest?: string | undefined;
585
+ readonly reverse?: boolean | undefined;
586
+ readonly content?: string | undefined;
587
+ readonly gap?: string | undefined;
588
+ readonly align?: string | undefined;
589
+ readonly justify?: string | undefined;
590
+ readonly wrap?: boolean | undefined;
591
+ readonly noMobile?: boolean | undefined;
592
+ };
593
+ }, {}, {}, {}, 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 () => {
594
+ $slots: {
595
+ default?(_: {}): any;
596
+ };
597
+ });
598
+ };
599
+ setup(): {
600
+ args: any;
601
+ options: any;
602
+ getText: (value: any) => string;
603
+ };
604
+ template: string;
605
+ };
606
+ export namespace Sizes {
607
+ export namespace args_3 {
608
+ let _enum_1: string;
609
+ export { _enum_1 as enum };
610
+ }
611
+ export { args_3 as args };
612
+ }
613
+ export function Colors(args: any, { argTypes }?: {}): {
614
+ components: {
615
+ UBadge: {
616
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
617
+ wrapperRef: import("vue").Ref<null, null>;
618
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
619
+ label: string;
620
+ rightIcon: string;
621
+ leftIcon: string;
622
+ config: Record<string, any>;
623
+ dataTest: string;
624
+ icon: string;
625
+ color?: string | undefined;
626
+ size?: string | undefined;
627
+ variant?: string | undefined;
628
+ tabindex?: string | number | undefined;
629
+ round?: boolean | undefined;
630
+ bordered?: boolean | undefined;
631
+ $props: {
632
+ readonly label?: string | undefined;
633
+ readonly rightIcon?: string | undefined;
634
+ readonly leftIcon?: string | undefined;
635
+ readonly config?: Record<string, any> | undefined;
636
+ readonly dataTest?: string | undefined;
637
+ readonly icon?: string | undefined;
638
+ readonly color?: string | undefined;
639
+ readonly size?: string | undefined;
640
+ readonly variant?: string | undefined;
641
+ readonly tabindex?: string | number | undefined;
642
+ readonly round?: boolean | undefined;
643
+ readonly bordered?: boolean | undefined;
644
+ };
645
+ }, {}, {}, {}, 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, {
646
+ P: {};
647
+ B: {};
648
+ D: {};
649
+ C: {};
650
+ M: {};
651
+ Defaults: {};
652
+ }, Readonly<{}> & Readonly<{}>, {
653
+ wrapperRef: import("vue").Ref<null, null>;
654
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
655
+ label: string;
656
+ rightIcon: string;
657
+ leftIcon: string;
658
+ config: Record<string, any>;
659
+ dataTest: string;
660
+ icon: string;
661
+ color?: string | undefined;
662
+ size?: string | undefined;
663
+ variant?: string | undefined;
664
+ tabindex?: string | number | undefined;
665
+ round?: boolean | undefined;
666
+ bordered?: boolean | undefined;
667
+ $props: {
668
+ readonly label?: string | undefined;
669
+ readonly rightIcon?: string | undefined;
670
+ readonly leftIcon?: string | undefined;
671
+ readonly config?: Record<string, any> | undefined;
672
+ readonly dataTest?: string | undefined;
673
+ readonly icon?: string | undefined;
674
+ readonly color?: string | undefined;
675
+ readonly size?: string | undefined;
676
+ readonly variant?: string | undefined;
677
+ readonly tabindex?: string | number | undefined;
678
+ readonly round?: boolean | undefined;
679
+ readonly bordered?: boolean | undefined;
680
+ };
681
+ }, {}, {}, {}, {}>;
682
+ __isFragment?: never;
683
+ __isTeleport?: never;
684
+ __isSuspense?: never;
685
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
686
+ wrapperRef: import("vue").Ref<null, null>;
687
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
688
+ label: string;
689
+ rightIcon: string;
690
+ leftIcon: string;
691
+ config: Record<string, any>;
692
+ dataTest: string;
693
+ icon: string;
694
+ color?: string | undefined;
695
+ size?: string | undefined;
696
+ variant?: string | undefined;
697
+ tabindex?: string | number | undefined;
698
+ round?: boolean | undefined;
699
+ bordered?: boolean | undefined;
700
+ $props: {
701
+ readonly label?: string | undefined;
702
+ readonly rightIcon?: string | undefined;
703
+ readonly leftIcon?: string | undefined;
704
+ readonly config?: Record<string, any> | undefined;
705
+ readonly dataTest?: string | undefined;
706
+ readonly icon?: string | undefined;
707
+ readonly color?: string | undefined;
708
+ readonly size?: string | undefined;
709
+ readonly variant?: string | undefined;
710
+ readonly tabindex?: string | number | undefined;
711
+ readonly round?: boolean | undefined;
712
+ readonly bordered?: boolean | undefined;
713
+ };
714
+ }, {}, {}, {}, 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 () => {
715
+ $slots: {
716
+ left?(_: {
717
+ iconName: string;
718
+ iconSize: any;
719
+ iconColor: string | undefined;
720
+ }): any;
721
+ default?(_: {
722
+ label: string;
723
+ iconName: string;
724
+ iconSize: any;
725
+ iconColor: string | undefined;
726
+ }): any;
727
+ right?(_: {
728
+ iconName: string;
729
+ iconSize: any;
730
+ iconColor: string | undefined;
731
+ }): any;
732
+ };
733
+ });
734
+ URow: {
735
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
736
+ config: Record<string, any>;
737
+ dataTest: string;
738
+ reverse?: boolean | undefined;
739
+ content?: string | undefined;
740
+ gap?: string | undefined;
741
+ align?: string | undefined;
742
+ justify?: string | undefined;
743
+ wrap?: boolean | undefined;
744
+ noMobile?: boolean | undefined;
745
+ $props: {
746
+ readonly config?: Record<string, any> | undefined;
747
+ readonly dataTest?: string | undefined;
748
+ readonly reverse?: boolean | undefined;
749
+ readonly content?: string | undefined;
750
+ readonly gap?: string | undefined;
751
+ readonly align?: string | undefined;
752
+ readonly justify?: string | undefined;
753
+ readonly wrap?: boolean | undefined;
754
+ readonly noMobile?: boolean | undefined;
755
+ };
756
+ }, {}, {}, {}, 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, {
757
+ P: {};
758
+ B: {};
759
+ D: {};
760
+ C: {};
761
+ M: {};
762
+ Defaults: {};
763
+ }, Readonly<{}> & Readonly<{}>, {
764
+ config: Record<string, any>;
765
+ dataTest: string;
766
+ reverse?: boolean | undefined;
767
+ content?: string | undefined;
768
+ gap?: string | undefined;
769
+ align?: string | undefined;
770
+ justify?: string | undefined;
771
+ wrap?: boolean | undefined;
772
+ noMobile?: boolean | undefined;
773
+ $props: {
774
+ readonly config?: Record<string, any> | undefined;
775
+ readonly dataTest?: string | undefined;
776
+ readonly reverse?: boolean | undefined;
777
+ readonly content?: string | undefined;
778
+ readonly gap?: string | undefined;
779
+ readonly align?: string | undefined;
780
+ readonly justify?: string | undefined;
781
+ readonly wrap?: boolean | undefined;
782
+ readonly noMobile?: boolean | undefined;
783
+ };
784
+ }, {}, {}, {}, {}>;
785
+ __isFragment?: never;
786
+ __isTeleport?: never;
787
+ __isSuspense?: never;
788
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
789
+ config: Record<string, any>;
790
+ dataTest: string;
791
+ reverse?: boolean | undefined;
792
+ content?: string | undefined;
793
+ gap?: string | undefined;
794
+ align?: string | undefined;
795
+ justify?: string | undefined;
796
+ wrap?: boolean | undefined;
797
+ noMobile?: boolean | undefined;
798
+ $props: {
799
+ readonly config?: Record<string, any> | undefined;
800
+ readonly dataTest?: string | undefined;
801
+ readonly reverse?: boolean | undefined;
802
+ readonly content?: string | undefined;
803
+ readonly gap?: string | undefined;
804
+ readonly align?: string | undefined;
805
+ readonly justify?: string | undefined;
806
+ readonly wrap?: boolean | undefined;
807
+ readonly noMobile?: boolean | undefined;
808
+ };
809
+ }, {}, {}, {}, 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 () => {
810
+ $slots: {
811
+ default?(_: {}): any;
812
+ };
813
+ });
814
+ UCol: {
815
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
816
+ config: Record<string, any>;
817
+ dataTest: string;
818
+ reverse?: boolean | undefined;
819
+ content?: string | undefined;
820
+ gap?: string | undefined;
821
+ align?: string | undefined;
822
+ justify?: string | undefined;
823
+ wrap?: boolean | undefined;
824
+ $props: {
825
+ readonly config?: Record<string, any> | undefined;
826
+ readonly dataTest?: string | undefined;
827
+ readonly reverse?: boolean | undefined;
828
+ readonly content?: string | undefined;
829
+ readonly gap?: string | undefined;
830
+ readonly align?: string | undefined;
831
+ readonly justify?: string | undefined;
832
+ readonly wrap?: boolean | undefined;
833
+ };
834
+ }, {}, {}, {}, 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, {
835
+ P: {};
836
+ B: {};
837
+ D: {};
838
+ C: {};
839
+ M: {};
840
+ Defaults: {};
841
+ }, Readonly<{}> & Readonly<{}>, {
842
+ config: Record<string, any>;
843
+ dataTest: string;
844
+ reverse?: boolean | undefined;
845
+ content?: string | undefined;
846
+ gap?: string | undefined;
847
+ align?: string | undefined;
848
+ justify?: string | undefined;
849
+ wrap?: boolean | undefined;
850
+ $props: {
851
+ readonly config?: Record<string, any> | undefined;
852
+ readonly dataTest?: string | undefined;
853
+ readonly reverse?: boolean | undefined;
854
+ readonly content?: string | undefined;
855
+ readonly gap?: string | undefined;
856
+ readonly align?: string | undefined;
857
+ readonly justify?: string | undefined;
858
+ readonly wrap?: boolean | undefined;
859
+ };
860
+ }, {}, {}, {}, {}>;
861
+ __isFragment?: never;
862
+ __isTeleport?: never;
863
+ __isSuspense?: never;
864
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
865
+ config: Record<string, any>;
866
+ dataTest: string;
867
+ reverse?: boolean | undefined;
868
+ content?: string | undefined;
869
+ gap?: string | undefined;
870
+ align?: string | undefined;
871
+ justify?: string | undefined;
872
+ wrap?: boolean | undefined;
873
+ $props: {
874
+ readonly config?: Record<string, any> | undefined;
875
+ readonly dataTest?: string | undefined;
876
+ readonly reverse?: boolean | undefined;
877
+ readonly content?: string | undefined;
878
+ readonly gap?: string | undefined;
879
+ readonly align?: string | undefined;
880
+ readonly justify?: string | undefined;
881
+ readonly wrap?: boolean | undefined;
882
+ };
883
+ }, {}, {}, {}, 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 () => {
884
+ $slots: {
885
+ default?(_: {}): any;
886
+ };
887
+ });
888
+ };
889
+ setup(): {
890
+ args: any;
891
+ variants: any;
892
+ colors: any;
893
+ };
894
+ template: string;
895
+ };
896
+ export namespace Colors {
897
+ let args_4: {};
898
+ export { args_4 as args };
899
+ }
900
+ export function LeftIcon(args: any): {
901
+ components: {
902
+ UBadge: {
903
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
904
+ wrapperRef: import("vue").Ref<null, null>;
905
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
906
+ label: string;
907
+ rightIcon: string;
908
+ leftIcon: string;
909
+ config: Record<string, any>;
910
+ dataTest: string;
911
+ icon: string;
912
+ color?: string | undefined;
913
+ size?: string | undefined;
914
+ variant?: string | undefined;
915
+ tabindex?: string | number | undefined;
916
+ round?: boolean | undefined;
917
+ bordered?: boolean | undefined;
918
+ $props: {
919
+ readonly label?: string | undefined;
920
+ readonly rightIcon?: string | undefined;
921
+ readonly leftIcon?: string | undefined;
922
+ readonly config?: Record<string, any> | undefined;
923
+ readonly dataTest?: string | undefined;
924
+ readonly icon?: string | undefined;
925
+ readonly color?: string | undefined;
926
+ readonly size?: string | undefined;
927
+ readonly variant?: string | undefined;
928
+ readonly tabindex?: string | number | undefined;
929
+ readonly round?: boolean | undefined;
930
+ readonly bordered?: boolean | undefined;
931
+ };
932
+ }, {}, {}, {}, 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, {
933
+ P: {};
934
+ B: {};
935
+ D: {};
936
+ C: {};
937
+ M: {};
938
+ Defaults: {};
939
+ }, Readonly<{}> & Readonly<{}>, {
940
+ wrapperRef: import("vue").Ref<null, null>;
941
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
942
+ label: string;
943
+ rightIcon: string;
944
+ leftIcon: string;
945
+ config: Record<string, any>;
946
+ dataTest: string;
947
+ icon: string;
948
+ color?: string | undefined;
949
+ size?: string | undefined;
950
+ variant?: string | undefined;
951
+ tabindex?: string | number | undefined;
952
+ round?: boolean | undefined;
953
+ bordered?: boolean | undefined;
954
+ $props: {
955
+ readonly label?: string | undefined;
956
+ readonly rightIcon?: string | undefined;
957
+ readonly leftIcon?: string | undefined;
958
+ readonly config?: Record<string, any> | undefined;
959
+ readonly dataTest?: string | undefined;
960
+ readonly icon?: string | undefined;
961
+ readonly color?: string | undefined;
962
+ readonly size?: string | undefined;
963
+ readonly variant?: string | undefined;
964
+ readonly tabindex?: string | number | undefined;
965
+ readonly round?: boolean | undefined;
966
+ readonly bordered?: boolean | undefined;
967
+ };
968
+ }, {}, {}, {}, {}>;
969
+ __isFragment?: never;
970
+ __isTeleport?: never;
971
+ __isSuspense?: never;
972
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
973
+ wrapperRef: import("vue").Ref<null, null>;
974
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
975
+ label: string;
976
+ rightIcon: string;
977
+ leftIcon: string;
978
+ config: Record<string, any>;
979
+ dataTest: string;
980
+ icon: string;
981
+ color?: string | undefined;
982
+ size?: string | undefined;
983
+ variant?: string | undefined;
984
+ tabindex?: string | number | undefined;
985
+ round?: boolean | undefined;
986
+ bordered?: boolean | undefined;
987
+ $props: {
988
+ readonly label?: string | undefined;
989
+ readonly rightIcon?: string | undefined;
990
+ readonly leftIcon?: string | undefined;
991
+ readonly config?: Record<string, any> | undefined;
992
+ readonly dataTest?: string | undefined;
993
+ readonly icon?: string | undefined;
994
+ readonly color?: string | undefined;
995
+ readonly size?: string | undefined;
996
+ readonly variant?: string | undefined;
997
+ readonly tabindex?: string | number | undefined;
998
+ readonly round?: boolean | undefined;
999
+ readonly bordered?: boolean | undefined;
1000
+ };
1001
+ }, {}, {}, {}, 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 () => {
1002
+ $slots: {
1003
+ left?(_: {
1004
+ iconName: string;
1005
+ iconSize: any;
1006
+ iconColor: string | undefined;
1007
+ }): any;
1008
+ default?(_: {
1009
+ label: string;
1010
+ iconName: string;
1011
+ iconSize: any;
1012
+ iconColor: string | undefined;
1013
+ }): any;
1014
+ right?(_: {
1015
+ iconName: string;
1016
+ iconSize: any;
1017
+ iconColor: string | undefined;
1018
+ }): any;
1019
+ };
1020
+ });
1021
+ UIcon: import("vue").DefineComponent<{}, {
1022
+ $emit: (event: "click", ...args: any[]) => void;
1023
+ config: Record<string, any>;
1024
+ name: string;
1025
+ src: Record<string, any>;
1026
+ tooltip: string;
1027
+ tooltipSettings: Record<string, any>;
1028
+ dataTest: string;
1029
+ internal: boolean;
1030
+ color?: string | undefined;
1031
+ size?: string | undefined;
1032
+ interactive?: boolean | undefined;
1033
+ variant?: string | undefined;
1034
+ $props: {
1035
+ readonly config?: Record<string, any> | undefined;
1036
+ readonly name?: string | undefined;
1037
+ readonly src?: Record<string, any> | undefined;
1038
+ readonly tooltip?: string | undefined;
1039
+ readonly tooltipSettings?: Record<string, any> | undefined;
1040
+ readonly dataTest?: string | undefined;
1041
+ readonly internal?: boolean | undefined;
1042
+ readonly color?: string | undefined;
1043
+ readonly size?: string | undefined;
1044
+ readonly interactive?: boolean | undefined;
1045
+ readonly variant?: string | undefined;
1046
+ };
1047
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1048
+ };
1049
+ setup(): {
1050
+ args: any;
1051
+ slots: any;
1052
+ };
1053
+ template: string;
1054
+ };
1055
+ export namespace LeftIcon {
1056
+ export namespace args_5 {
1057
+ let leftIcon: string;
1058
+ }
1059
+ export { args_5 as args };
1060
+ }
1061
+ export function RightIcon(args: any): {
1062
+ components: {
1063
+ UBadge: {
1064
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1065
+ wrapperRef: import("vue").Ref<null, null>;
1066
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1067
+ label: string;
1068
+ rightIcon: string;
1069
+ leftIcon: string;
1070
+ config: Record<string, any>;
1071
+ dataTest: string;
1072
+ icon: string;
1073
+ color?: string | undefined;
1074
+ size?: string | undefined;
1075
+ variant?: string | undefined;
1076
+ tabindex?: string | number | undefined;
1077
+ round?: boolean | undefined;
1078
+ bordered?: boolean | undefined;
1079
+ $props: {
1080
+ readonly label?: string | undefined;
1081
+ readonly rightIcon?: string | undefined;
1082
+ readonly leftIcon?: string | undefined;
1083
+ readonly config?: Record<string, any> | undefined;
1084
+ readonly dataTest?: string | undefined;
1085
+ readonly icon?: string | undefined;
1086
+ readonly color?: string | undefined;
1087
+ readonly size?: string | undefined;
1088
+ readonly variant?: string | undefined;
1089
+ readonly tabindex?: string | number | undefined;
1090
+ readonly round?: boolean | undefined;
1091
+ readonly bordered?: boolean | undefined;
1092
+ };
1093
+ }, {}, {}, {}, 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, {
1094
+ P: {};
1095
+ B: {};
1096
+ D: {};
1097
+ C: {};
1098
+ M: {};
1099
+ Defaults: {};
1100
+ }, Readonly<{}> & Readonly<{}>, {
1101
+ wrapperRef: import("vue").Ref<null, null>;
1102
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1103
+ label: string;
1104
+ rightIcon: string;
1105
+ leftIcon: string;
1106
+ config: Record<string, any>;
1107
+ dataTest: string;
1108
+ icon: string;
1109
+ color?: string | undefined;
1110
+ size?: string | undefined;
1111
+ variant?: string | undefined;
1112
+ tabindex?: string | number | undefined;
1113
+ round?: boolean | undefined;
1114
+ bordered?: boolean | undefined;
1115
+ $props: {
1116
+ readonly label?: string | undefined;
1117
+ readonly rightIcon?: string | undefined;
1118
+ readonly leftIcon?: string | undefined;
1119
+ readonly config?: Record<string, any> | undefined;
1120
+ readonly dataTest?: string | undefined;
1121
+ readonly icon?: string | undefined;
1122
+ readonly color?: string | undefined;
1123
+ readonly size?: string | undefined;
1124
+ readonly variant?: string | undefined;
1125
+ readonly tabindex?: string | number | undefined;
1126
+ readonly round?: boolean | undefined;
1127
+ readonly bordered?: boolean | undefined;
1128
+ };
1129
+ }, {}, {}, {}, {}>;
1130
+ __isFragment?: never;
1131
+ __isTeleport?: never;
1132
+ __isSuspense?: never;
1133
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1134
+ wrapperRef: import("vue").Ref<null, null>;
1135
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1136
+ label: string;
1137
+ rightIcon: string;
1138
+ leftIcon: string;
1139
+ config: Record<string, any>;
1140
+ dataTest: string;
1141
+ icon: string;
1142
+ color?: string | undefined;
1143
+ size?: string | undefined;
1144
+ variant?: string | undefined;
1145
+ tabindex?: string | number | undefined;
1146
+ round?: boolean | undefined;
1147
+ bordered?: boolean | undefined;
1148
+ $props: {
1149
+ readonly label?: string | undefined;
1150
+ readonly rightIcon?: string | undefined;
1151
+ readonly leftIcon?: string | undefined;
1152
+ readonly config?: Record<string, any> | undefined;
1153
+ readonly dataTest?: string | undefined;
1154
+ readonly icon?: string | undefined;
1155
+ readonly color?: string | undefined;
1156
+ readonly size?: string | undefined;
1157
+ readonly variant?: string | undefined;
1158
+ readonly tabindex?: string | number | undefined;
1159
+ readonly round?: boolean | undefined;
1160
+ readonly bordered?: boolean | undefined;
1161
+ };
1162
+ }, {}, {}, {}, 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 () => {
1163
+ $slots: {
1164
+ left?(_: {
1165
+ iconName: string;
1166
+ iconSize: any;
1167
+ iconColor: string | undefined;
1168
+ }): any;
1169
+ default?(_: {
1170
+ label: string;
1171
+ iconName: string;
1172
+ iconSize: any;
1173
+ iconColor: string | undefined;
1174
+ }): any;
1175
+ right?(_: {
1176
+ iconName: string;
1177
+ iconSize: any;
1178
+ iconColor: string | undefined;
1179
+ }): any;
1180
+ };
1181
+ });
1182
+ UIcon: import("vue").DefineComponent<{}, {
1183
+ $emit: (event: "click", ...args: any[]) => void;
1184
+ config: Record<string, any>;
1185
+ name: string;
1186
+ src: Record<string, any>;
1187
+ tooltip: string;
1188
+ tooltipSettings: Record<string, any>;
1189
+ dataTest: string;
1190
+ internal: boolean;
1191
+ color?: string | undefined;
1192
+ size?: string | undefined;
1193
+ interactive?: boolean | undefined;
1194
+ variant?: string | undefined;
1195
+ $props: {
1196
+ readonly config?: Record<string, any> | undefined;
1197
+ readonly name?: string | undefined;
1198
+ readonly src?: Record<string, any> | undefined;
1199
+ readonly tooltip?: string | undefined;
1200
+ readonly tooltipSettings?: Record<string, any> | undefined;
1201
+ readonly dataTest?: string | undefined;
1202
+ readonly internal?: boolean | undefined;
1203
+ readonly color?: string | undefined;
1204
+ readonly size?: string | undefined;
1205
+ readonly interactive?: boolean | undefined;
1206
+ readonly variant?: string | undefined;
1207
+ };
1208
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1209
+ };
1210
+ setup(): {
1211
+ args: any;
1212
+ slots: any;
1213
+ };
1214
+ template: string;
1215
+ };
1216
+ export namespace RightIcon {
1217
+ export namespace args_6 {
1218
+ let rightIcon: string;
1219
+ }
1220
+ export { args_6 as args };
1221
+ }
1222
+ export function LeftIconSlot(args: any): {
1223
+ components: {
1224
+ UBadge: {
1225
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1226
+ wrapperRef: import("vue").Ref<null, null>;
1227
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1228
+ label: string;
1229
+ rightIcon: string;
1230
+ leftIcon: string;
1231
+ config: Record<string, any>;
1232
+ dataTest: string;
1233
+ icon: string;
1234
+ color?: string | undefined;
1235
+ size?: string | undefined;
1236
+ variant?: string | undefined;
1237
+ tabindex?: string | number | undefined;
1238
+ round?: boolean | undefined;
1239
+ bordered?: boolean | undefined;
1240
+ $props: {
1241
+ readonly label?: string | undefined;
1242
+ readonly rightIcon?: string | undefined;
1243
+ readonly leftIcon?: string | undefined;
1244
+ readonly config?: Record<string, any> | undefined;
1245
+ readonly dataTest?: string | undefined;
1246
+ readonly icon?: string | undefined;
1247
+ readonly color?: string | undefined;
1248
+ readonly size?: string | undefined;
1249
+ readonly variant?: string | undefined;
1250
+ readonly tabindex?: string | number | undefined;
1251
+ readonly round?: boolean | undefined;
1252
+ readonly bordered?: boolean | undefined;
1253
+ };
1254
+ }, {}, {}, {}, 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, {
1255
+ P: {};
1256
+ B: {};
1257
+ D: {};
1258
+ C: {};
1259
+ M: {};
1260
+ Defaults: {};
1261
+ }, Readonly<{}> & Readonly<{}>, {
1262
+ wrapperRef: import("vue").Ref<null, null>;
1263
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1264
+ label: string;
1265
+ rightIcon: string;
1266
+ leftIcon: string;
1267
+ config: Record<string, any>;
1268
+ dataTest: string;
1269
+ icon: string;
1270
+ color?: string | undefined;
1271
+ size?: string | undefined;
1272
+ variant?: string | undefined;
1273
+ tabindex?: string | number | undefined;
1274
+ round?: boolean | undefined;
1275
+ bordered?: boolean | undefined;
1276
+ $props: {
1277
+ readonly label?: string | undefined;
1278
+ readonly rightIcon?: string | undefined;
1279
+ readonly leftIcon?: string | undefined;
1280
+ readonly config?: Record<string, any> | undefined;
1281
+ readonly dataTest?: string | undefined;
1282
+ readonly icon?: string | undefined;
1283
+ readonly color?: string | undefined;
1284
+ readonly size?: string | undefined;
1285
+ readonly variant?: string | undefined;
1286
+ readonly tabindex?: string | number | undefined;
1287
+ readonly round?: boolean | undefined;
1288
+ readonly bordered?: boolean | undefined;
1289
+ };
1290
+ }, {}, {}, {}, {}>;
1291
+ __isFragment?: never;
1292
+ __isTeleport?: never;
1293
+ __isSuspense?: never;
1294
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1295
+ wrapperRef: import("vue").Ref<null, null>;
1296
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1297
+ label: string;
1298
+ rightIcon: string;
1299
+ leftIcon: string;
1300
+ config: Record<string, any>;
1301
+ dataTest: string;
1302
+ icon: string;
1303
+ color?: string | undefined;
1304
+ size?: string | undefined;
1305
+ variant?: string | undefined;
1306
+ tabindex?: string | number | undefined;
1307
+ round?: boolean | undefined;
1308
+ bordered?: boolean | undefined;
1309
+ $props: {
1310
+ readonly label?: string | undefined;
1311
+ readonly rightIcon?: string | undefined;
1312
+ readonly leftIcon?: string | undefined;
1313
+ readonly config?: Record<string, any> | undefined;
1314
+ readonly dataTest?: string | undefined;
1315
+ readonly icon?: string | undefined;
1316
+ readonly color?: string | undefined;
1317
+ readonly size?: string | undefined;
1318
+ readonly variant?: string | undefined;
1319
+ readonly tabindex?: string | number | undefined;
1320
+ readonly round?: boolean | undefined;
1321
+ readonly bordered?: boolean | undefined;
1322
+ };
1323
+ }, {}, {}, {}, 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 () => {
1324
+ $slots: {
1325
+ left?(_: {
1326
+ iconName: string;
1327
+ iconSize: any;
1328
+ iconColor: string | undefined;
1329
+ }): any;
1330
+ default?(_: {
1331
+ label: string;
1332
+ iconName: string;
1333
+ iconSize: any;
1334
+ iconColor: string | undefined;
1335
+ }): any;
1336
+ right?(_: {
1337
+ iconName: string;
1338
+ iconSize: any;
1339
+ iconColor: string | undefined;
1340
+ }): any;
1341
+ };
1342
+ });
1343
+ UIcon: import("vue").DefineComponent<{}, {
1344
+ $emit: (event: "click", ...args: any[]) => void;
1345
+ config: Record<string, any>;
1346
+ name: string;
1347
+ src: Record<string, any>;
1348
+ tooltip: string;
1349
+ tooltipSettings: Record<string, any>;
1350
+ dataTest: string;
1351
+ internal: boolean;
1352
+ color?: string | undefined;
1353
+ size?: string | undefined;
1354
+ interactive?: boolean | undefined;
1355
+ variant?: string | undefined;
1356
+ $props: {
1357
+ readonly config?: Record<string, any> | undefined;
1358
+ readonly name?: string | undefined;
1359
+ readonly src?: Record<string, any> | undefined;
1360
+ readonly tooltip?: string | undefined;
1361
+ readonly tooltipSettings?: Record<string, any> | undefined;
1362
+ readonly dataTest?: string | undefined;
1363
+ readonly internal?: boolean | undefined;
1364
+ readonly color?: string | undefined;
1365
+ readonly size?: string | undefined;
1366
+ readonly interactive?: boolean | undefined;
1367
+ readonly variant?: string | undefined;
1368
+ };
1369
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1370
+ };
1371
+ setup(): {
1372
+ args: any;
1373
+ slots: any;
1374
+ };
1375
+ template: string;
1376
+ };
1377
+ export namespace LeftIconSlot {
1378
+ export namespace args_7 {
1379
+ let slotTemplate: string;
1380
+ }
1381
+ export { args_7 as args };
1382
+ }
1383
+ export function RightIconSlot(args: any): {
1384
+ components: {
1385
+ UBadge: {
1386
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1387
+ wrapperRef: import("vue").Ref<null, null>;
1388
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1389
+ label: string;
1390
+ rightIcon: string;
1391
+ leftIcon: string;
1392
+ config: Record<string, any>;
1393
+ dataTest: string;
1394
+ icon: string;
1395
+ color?: string | undefined;
1396
+ size?: string | undefined;
1397
+ variant?: string | undefined;
1398
+ tabindex?: string | number | undefined;
1399
+ round?: boolean | undefined;
1400
+ bordered?: boolean | undefined;
1401
+ $props: {
1402
+ readonly label?: string | undefined;
1403
+ readonly rightIcon?: string | undefined;
1404
+ readonly leftIcon?: string | undefined;
1405
+ readonly config?: Record<string, any> | undefined;
1406
+ readonly dataTest?: string | undefined;
1407
+ readonly icon?: string | undefined;
1408
+ readonly color?: string | undefined;
1409
+ readonly size?: string | undefined;
1410
+ readonly variant?: string | undefined;
1411
+ readonly tabindex?: string | number | undefined;
1412
+ readonly round?: boolean | undefined;
1413
+ readonly bordered?: boolean | undefined;
1414
+ };
1415
+ }, {}, {}, {}, 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, {
1416
+ P: {};
1417
+ B: {};
1418
+ D: {};
1419
+ C: {};
1420
+ M: {};
1421
+ Defaults: {};
1422
+ }, Readonly<{}> & Readonly<{}>, {
1423
+ wrapperRef: import("vue").Ref<null, null>;
1424
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1425
+ label: string;
1426
+ rightIcon: string;
1427
+ leftIcon: string;
1428
+ config: Record<string, any>;
1429
+ dataTest: string;
1430
+ icon: string;
1431
+ color?: string | undefined;
1432
+ size?: string | undefined;
1433
+ variant?: string | undefined;
1434
+ tabindex?: string | number | undefined;
1435
+ round?: boolean | undefined;
1436
+ bordered?: boolean | undefined;
1437
+ $props: {
1438
+ readonly label?: string | undefined;
1439
+ readonly rightIcon?: string | undefined;
1440
+ readonly leftIcon?: string | undefined;
1441
+ readonly config?: Record<string, any> | undefined;
1442
+ readonly dataTest?: string | undefined;
1443
+ readonly icon?: string | undefined;
1444
+ readonly color?: string | undefined;
1445
+ readonly size?: string | undefined;
1446
+ readonly variant?: string | undefined;
1447
+ readonly tabindex?: string | number | undefined;
1448
+ readonly round?: boolean | undefined;
1449
+ readonly bordered?: boolean | undefined;
1450
+ };
1451
+ }, {}, {}, {}, {}>;
1452
+ __isFragment?: never;
1453
+ __isTeleport?: never;
1454
+ __isSuspense?: never;
1455
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1456
+ wrapperRef: import("vue").Ref<null, null>;
1457
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1458
+ label: string;
1459
+ rightIcon: string;
1460
+ leftIcon: string;
1461
+ config: Record<string, any>;
1462
+ dataTest: string;
1463
+ icon: string;
1464
+ color?: string | undefined;
1465
+ size?: string | undefined;
1466
+ variant?: string | undefined;
1467
+ tabindex?: string | number | undefined;
1468
+ round?: boolean | undefined;
1469
+ bordered?: boolean | undefined;
1470
+ $props: {
1471
+ readonly label?: string | undefined;
1472
+ readonly rightIcon?: string | undefined;
1473
+ readonly leftIcon?: string | undefined;
1474
+ readonly config?: Record<string, any> | undefined;
1475
+ readonly dataTest?: string | undefined;
1476
+ readonly icon?: string | undefined;
1477
+ readonly color?: string | undefined;
1478
+ readonly size?: string | undefined;
1479
+ readonly variant?: string | undefined;
1480
+ readonly tabindex?: string | number | undefined;
1481
+ readonly round?: boolean | undefined;
1482
+ readonly bordered?: boolean | undefined;
1483
+ };
1484
+ }, {}, {}, {}, 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 () => {
1485
+ $slots: {
1486
+ left?(_: {
1487
+ iconName: string;
1488
+ iconSize: any;
1489
+ iconColor: string | undefined;
1490
+ }): any;
1491
+ default?(_: {
1492
+ label: string;
1493
+ iconName: string;
1494
+ iconSize: any;
1495
+ iconColor: string | undefined;
1496
+ }): any;
1497
+ right?(_: {
1498
+ iconName: string;
1499
+ iconSize: any;
1500
+ iconColor: string | undefined;
1501
+ }): any;
1502
+ };
1503
+ });
1504
+ UIcon: import("vue").DefineComponent<{}, {
1505
+ $emit: (event: "click", ...args: any[]) => void;
1506
+ config: Record<string, any>;
1507
+ name: string;
1508
+ src: Record<string, any>;
1509
+ tooltip: string;
1510
+ tooltipSettings: Record<string, any>;
1511
+ dataTest: string;
1512
+ internal: boolean;
1513
+ color?: string | undefined;
1514
+ size?: string | undefined;
1515
+ interactive?: boolean | undefined;
1516
+ variant?: string | undefined;
1517
+ $props: {
1518
+ readonly config?: Record<string, any> | undefined;
1519
+ readonly name?: string | undefined;
1520
+ readonly src?: Record<string, any> | undefined;
1521
+ readonly tooltip?: string | undefined;
1522
+ readonly tooltipSettings?: Record<string, any> | undefined;
1523
+ readonly dataTest?: string | undefined;
1524
+ readonly internal?: boolean | undefined;
1525
+ readonly color?: string | undefined;
1526
+ readonly size?: string | undefined;
1527
+ readonly interactive?: boolean | undefined;
1528
+ readonly variant?: string | undefined;
1529
+ };
1530
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1531
+ };
1532
+ setup(): {
1533
+ args: any;
1534
+ slots: any;
1535
+ };
1536
+ template: string;
1537
+ };
1538
+ export namespace RightIconSlot {
1539
+ export namespace args_8 {
1540
+ let slotTemplate_1: string;
1541
+ export { slotTemplate_1 as slotTemplate };
1542
+ }
1543
+ export { args_8 as args };
1544
+ }
1545
+ export function SlotLeft(args: any): {
1546
+ components: {
1547
+ UBadge: {
1548
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1549
+ wrapperRef: import("vue").Ref<null, null>;
1550
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1551
+ label: string;
1552
+ rightIcon: string;
1553
+ leftIcon: string;
1554
+ config: Record<string, any>;
1555
+ dataTest: string;
1556
+ icon: string;
1557
+ color?: string | undefined;
1558
+ size?: string | undefined;
1559
+ variant?: string | undefined;
1560
+ tabindex?: string | number | undefined;
1561
+ round?: boolean | undefined;
1562
+ bordered?: boolean | undefined;
1563
+ $props: {
1564
+ readonly label?: string | undefined;
1565
+ readonly rightIcon?: string | undefined;
1566
+ readonly leftIcon?: string | undefined;
1567
+ readonly config?: Record<string, any> | undefined;
1568
+ readonly dataTest?: string | undefined;
1569
+ readonly icon?: string | undefined;
1570
+ readonly color?: string | undefined;
1571
+ readonly size?: string | undefined;
1572
+ readonly variant?: string | undefined;
1573
+ readonly tabindex?: string | number | undefined;
1574
+ readonly round?: boolean | undefined;
1575
+ readonly bordered?: boolean | undefined;
1576
+ };
1577
+ }, {}, {}, {}, 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, {
1578
+ P: {};
1579
+ B: {};
1580
+ D: {};
1581
+ C: {};
1582
+ M: {};
1583
+ Defaults: {};
1584
+ }, Readonly<{}> & Readonly<{}>, {
1585
+ wrapperRef: import("vue").Ref<null, null>;
1586
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1587
+ label: string;
1588
+ rightIcon: string;
1589
+ leftIcon: string;
1590
+ config: Record<string, any>;
1591
+ dataTest: string;
1592
+ icon: string;
1593
+ color?: string | undefined;
1594
+ size?: string | undefined;
1595
+ variant?: string | undefined;
1596
+ tabindex?: string | number | undefined;
1597
+ round?: boolean | undefined;
1598
+ bordered?: boolean | undefined;
1599
+ $props: {
1600
+ readonly label?: string | undefined;
1601
+ readonly rightIcon?: string | undefined;
1602
+ readonly leftIcon?: string | undefined;
1603
+ readonly config?: Record<string, any> | undefined;
1604
+ readonly dataTest?: string | undefined;
1605
+ readonly icon?: string | undefined;
1606
+ readonly color?: string | undefined;
1607
+ readonly size?: string | undefined;
1608
+ readonly variant?: string | undefined;
1609
+ readonly tabindex?: string | number | undefined;
1610
+ readonly round?: boolean | undefined;
1611
+ readonly bordered?: boolean | undefined;
1612
+ };
1613
+ }, {}, {}, {}, {}>;
1614
+ __isFragment?: never;
1615
+ __isTeleport?: never;
1616
+ __isSuspense?: never;
1617
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1618
+ wrapperRef: import("vue").Ref<null, null>;
1619
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1620
+ label: string;
1621
+ rightIcon: string;
1622
+ leftIcon: string;
1623
+ config: Record<string, any>;
1624
+ dataTest: string;
1625
+ icon: string;
1626
+ color?: string | undefined;
1627
+ size?: string | undefined;
1628
+ variant?: string | undefined;
1629
+ tabindex?: string | number | undefined;
1630
+ round?: boolean | undefined;
1631
+ bordered?: boolean | undefined;
1632
+ $props: {
1633
+ readonly label?: string | undefined;
1634
+ readonly rightIcon?: string | undefined;
1635
+ readonly leftIcon?: string | undefined;
1636
+ readonly config?: Record<string, any> | undefined;
1637
+ readonly dataTest?: string | undefined;
1638
+ readonly icon?: string | undefined;
1639
+ readonly color?: string | undefined;
1640
+ readonly size?: string | undefined;
1641
+ readonly variant?: string | undefined;
1642
+ readonly tabindex?: string | number | undefined;
1643
+ readonly round?: boolean | undefined;
1644
+ readonly bordered?: boolean | undefined;
1645
+ };
1646
+ }, {}, {}, {}, 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 () => {
1647
+ $slots: {
1648
+ left?(_: {
1649
+ iconName: string;
1650
+ iconSize: any;
1651
+ iconColor: string | undefined;
1652
+ }): any;
1653
+ default?(_: {
1654
+ label: string;
1655
+ iconName: string;
1656
+ iconSize: any;
1657
+ iconColor: string | undefined;
1658
+ }): any;
1659
+ right?(_: {
1660
+ iconName: string;
1661
+ iconSize: any;
1662
+ iconColor: string | undefined;
1663
+ }): any;
1664
+ };
1665
+ });
1666
+ UIcon: import("vue").DefineComponent<{}, {
1667
+ $emit: (event: "click", ...args: any[]) => void;
1668
+ config: Record<string, any>;
1669
+ name: string;
1670
+ src: Record<string, any>;
1671
+ tooltip: string;
1672
+ tooltipSettings: Record<string, any>;
1673
+ dataTest: string;
1674
+ internal: boolean;
1675
+ color?: string | undefined;
1676
+ size?: string | undefined;
1677
+ interactive?: boolean | undefined;
1678
+ variant?: string | undefined;
1679
+ $props: {
1680
+ readonly config?: Record<string, any> | undefined;
1681
+ readonly name?: string | undefined;
1682
+ readonly src?: Record<string, any> | undefined;
1683
+ readonly tooltip?: string | undefined;
1684
+ readonly tooltipSettings?: Record<string, any> | undefined;
1685
+ readonly dataTest?: string | undefined;
1686
+ readonly internal?: boolean | undefined;
1687
+ readonly color?: string | undefined;
1688
+ readonly size?: string | undefined;
1689
+ readonly interactive?: boolean | undefined;
1690
+ readonly variant?: string | undefined;
1691
+ };
1692
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1693
+ };
1694
+ setup(): {
1695
+ args: any;
1696
+ slots: any;
1697
+ };
1698
+ template: string;
1699
+ };
1700
+ export namespace SlotLeft {
1701
+ export namespace args_9 {
1702
+ let slotTemplate_2: string;
1703
+ export { slotTemplate_2 as slotTemplate };
1704
+ }
1705
+ export { args_9 as args };
1706
+ }
1707
+ export function SlotRight(args: any): {
1708
+ components: {
1709
+ UBadge: {
1710
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
1711
+ wrapperRef: import("vue").Ref<null, null>;
1712
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1713
+ label: string;
1714
+ rightIcon: string;
1715
+ leftIcon: string;
1716
+ config: Record<string, any>;
1717
+ dataTest: string;
1718
+ icon: string;
1719
+ color?: string | undefined;
1720
+ size?: string | undefined;
1721
+ variant?: string | undefined;
1722
+ tabindex?: string | number | undefined;
1723
+ round?: boolean | undefined;
1724
+ bordered?: boolean | undefined;
1725
+ $props: {
1726
+ readonly label?: string | undefined;
1727
+ readonly rightIcon?: string | undefined;
1728
+ readonly leftIcon?: string | undefined;
1729
+ readonly config?: Record<string, any> | undefined;
1730
+ readonly dataTest?: string | undefined;
1731
+ readonly icon?: string | undefined;
1732
+ readonly color?: string | undefined;
1733
+ readonly size?: string | undefined;
1734
+ readonly variant?: string | undefined;
1735
+ readonly tabindex?: string | number | undefined;
1736
+ readonly round?: boolean | undefined;
1737
+ readonly bordered?: boolean | undefined;
1738
+ };
1739
+ }, {}, {}, {}, 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, {
1740
+ P: {};
1741
+ B: {};
1742
+ D: {};
1743
+ C: {};
1744
+ M: {};
1745
+ Defaults: {};
1746
+ }, Readonly<{}> & Readonly<{}>, {
1747
+ wrapperRef: import("vue").Ref<null, null>;
1748
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1749
+ label: string;
1750
+ rightIcon: string;
1751
+ leftIcon: string;
1752
+ config: Record<string, any>;
1753
+ dataTest: string;
1754
+ icon: string;
1755
+ color?: string | undefined;
1756
+ size?: string | undefined;
1757
+ variant?: string | undefined;
1758
+ tabindex?: string | number | undefined;
1759
+ round?: boolean | undefined;
1760
+ bordered?: boolean | undefined;
1761
+ $props: {
1762
+ readonly label?: string | undefined;
1763
+ readonly rightIcon?: string | undefined;
1764
+ readonly leftIcon?: string | undefined;
1765
+ readonly config?: Record<string, any> | undefined;
1766
+ readonly dataTest?: string | undefined;
1767
+ readonly icon?: string | undefined;
1768
+ readonly color?: string | undefined;
1769
+ readonly size?: string | undefined;
1770
+ readonly variant?: string | undefined;
1771
+ readonly tabindex?: string | number | undefined;
1772
+ readonly round?: boolean | undefined;
1773
+ readonly bordered?: boolean | undefined;
1774
+ };
1775
+ }, {}, {}, {}, {}>;
1776
+ __isFragment?: never;
1777
+ __isTeleport?: never;
1778
+ __isSuspense?: never;
1779
+ } & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
1780
+ wrapperRef: import("vue").Ref<null, null>;
1781
+ $emit: (event: "focus" | "blur" | "click" | "keydown", ...args: any[]) => void;
1782
+ label: string;
1783
+ rightIcon: string;
1784
+ leftIcon: string;
1785
+ config: Record<string, any>;
1786
+ dataTest: string;
1787
+ icon: string;
1788
+ color?: string | undefined;
1789
+ size?: string | undefined;
1790
+ variant?: string | undefined;
1791
+ tabindex?: string | number | undefined;
1792
+ round?: boolean | undefined;
1793
+ bordered?: boolean | undefined;
1794
+ $props: {
1795
+ readonly label?: string | undefined;
1796
+ readonly rightIcon?: string | undefined;
1797
+ readonly leftIcon?: string | undefined;
1798
+ readonly config?: Record<string, any> | undefined;
1799
+ readonly dataTest?: string | undefined;
1800
+ readonly icon?: string | undefined;
1801
+ readonly color?: string | undefined;
1802
+ readonly size?: string | undefined;
1803
+ readonly variant?: string | undefined;
1804
+ readonly tabindex?: string | number | undefined;
1805
+ readonly round?: boolean | undefined;
1806
+ readonly bordered?: boolean | undefined;
1807
+ };
1808
+ }, {}, {}, {}, 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 () => {
1809
+ $slots: {
1810
+ left?(_: {
1811
+ iconName: string;
1812
+ iconSize: any;
1813
+ iconColor: string | undefined;
1814
+ }): any;
1815
+ default?(_: {
1816
+ label: string;
1817
+ iconName: string;
1818
+ iconSize: any;
1819
+ iconColor: string | undefined;
1820
+ }): any;
1821
+ right?(_: {
1822
+ iconName: string;
1823
+ iconSize: any;
1824
+ iconColor: string | undefined;
1825
+ }): any;
1826
+ };
1827
+ });
1828
+ UIcon: import("vue").DefineComponent<{}, {
1829
+ $emit: (event: "click", ...args: any[]) => void;
1830
+ config: Record<string, any>;
1831
+ name: string;
1832
+ src: Record<string, any>;
1833
+ tooltip: string;
1834
+ tooltipSettings: Record<string, any>;
1835
+ dataTest: string;
1836
+ internal: boolean;
1837
+ color?: string | undefined;
1838
+ size?: string | undefined;
1839
+ interactive?: boolean | undefined;
1840
+ variant?: string | undefined;
1841
+ $props: {
1842
+ readonly config?: Record<string, any> | undefined;
1843
+ readonly name?: string | undefined;
1844
+ readonly src?: Record<string, any> | undefined;
1845
+ readonly tooltip?: string | undefined;
1846
+ readonly tooltipSettings?: Record<string, any> | undefined;
1847
+ readonly dataTest?: string | undefined;
1848
+ readonly internal?: boolean | undefined;
1849
+ readonly color?: string | undefined;
1850
+ readonly size?: string | undefined;
1851
+ readonly interactive?: boolean | undefined;
1852
+ readonly variant?: string | undefined;
1853
+ };
1854
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1855
+ };
1856
+ setup(): {
1857
+ args: any;
1858
+ slots: any;
1859
+ };
1860
+ template: string;
1861
+ };
1862
+ export namespace SlotRight {
1863
+ export namespace args_10 {
1864
+ let slotTemplate_3: string;
1865
+ export { slotTemplate_3 as slotTemplate };
1866
+ }
1867
+ export { args_10 as args };
1868
+ }
1869
+ import UBadge from "../../ui.text-badge/UBadge.vue";