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