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