vueless 0.0.328 → 0.0.329

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 (435) hide show
  1. package/adatper.locale/locales/en.js +11 -11
  2. package/adatper.locale/vueless.js +1 -1
  3. package/{composable.ui/index.js → composables/useUI.js} +3 -3
  4. package/{directive.tooltip/index.js → directives/vTooltip.js} +2 -2
  5. package/index.js +14 -14
  6. package/package.json +3 -3
  7. package/preset.tailwind.js +120 -2
  8. package/ui.button/{index.vue → UButton.vue} +7 -8
  9. package/{ui.button-toggle → ui.button/storybook}/Docs.mdx +3 -3
  10. package/ui.button/{index.stories.js → storybook/stories.js} +7 -7
  11. package/ui.button/{composables/attrs.composable.js → useAttrs.js} +3 -3
  12. package/ui.button-link/{index.vue → ULink.vue} +5 -6
  13. package/{ui.button-toggle-item → ui.button-link/storybook}/Docs.mdx +3 -3
  14. package/ui.button-link/{index.stories.js → storybook/stories.js} +7 -7
  15. package/ui.button-link/{composables/attrs.composable.js → useAttrs.js} +3 -3
  16. package/ui.button-toggle/{index.vue → UToggle.vue} +7 -8
  17. package/{ui.button → ui.button-toggle/storybook}/Docs.mdx +3 -3
  18. package/ui.button-toggle/{index.stories.js → storybook/stories.js} +7 -7
  19. package/ui.button-toggle/{composables/attrs.composable.js → useAttrs.js} +3 -3
  20. package/ui.button-toggle-item/{index.vue → UToggleItem.vue} +6 -7
  21. package/ui.button-toggle-item/{configs/default.config.js → config.js} +3 -3
  22. package/{ui.button-link → ui.button-toggle-item/storybook}/Docs.mdx +3 -3
  23. package/ui.button-toggle-item/{index.stories.js → storybook/stories.js} +5 -5
  24. package/ui.button-toggle-item/{composables/attrs.composable.js → useAttrs.js} +3 -3
  25. package/ui.container-accordion/{index.vue → UAccordion.vue} +7 -8
  26. package/ui.container-accordion/storybook/Docs.mdx +16 -0
  27. package/ui.container-accordion/{index.stories.js → storybook/stories.js} +5 -5
  28. package/ui.container-accordion/{composables/attrs.composable.js → useAttrs.js} +3 -3
  29. package/ui.container-card/{index.vue → UCard.vue} +8 -9
  30. package/ui.container-card/storybook/Docs.mdx +16 -0
  31. package/ui.container-card/{index.stories.js → storybook/stories.js} +9 -9
  32. package/ui.container-card/{composable/attrs.composable.js → useAttrs.js} +3 -3
  33. package/ui.container-col/{index.vue → UCol.vue} +5 -6
  34. package/ui.container-col/storybook/Docs.mdx +16 -0
  35. package/ui.container-col/{index.stories.js → storybook/stories.js} +6 -6
  36. package/{ui.form-input-number/composables/attrs.composable.js → ui.container-col/useAttrs.js} +3 -3
  37. package/ui.container-divider/{index.vue → UDivider.vue} +5 -6
  38. package/ui.container-divider/storybook/Docs.mdx +16 -0
  39. package/ui.container-divider/{index.stories.js → storybook/stories.js} +5 -5
  40. package/ui.container-divider/{composables/attrs.composable.js → useAttrs.js} +3 -3
  41. package/ui.container-group/{index.vue → UGroup.vue} +7 -8
  42. package/ui.container-group/storybook/Docs.mdx +16 -0
  43. package/ui.container-group/{index.stories.js → storybook/stories.js} +7 -7
  44. package/{ui.navigation-tabs/composables/attrs.composable.js → ui.container-group/useAttrs.js} +3 -3
  45. package/ui.container-modal/{index.vue → UModal.vue} +9 -10
  46. package/ui.container-modal/storybook/Docs.mdx +16 -0
  47. package/ui.container-modal/{index.stories.js → storybook/stories.js} +10 -10
  48. package/ui.container-modal/{composables/attrs.composable.js → useAttrs.js} +4 -4
  49. package/ui.container-modal-confirm/{index.vue → UModalConfirm.vue} +8 -9
  50. package/ui.container-modal-confirm/storybook/Docs.mdx +16 -0
  51. package/ui.container-modal-confirm/{index.stories.js → storybook/stories.js} +8 -8
  52. package/ui.container-modal-confirm/{composable/attrs.composable.js → useAttrs.js} +3 -3
  53. package/ui.container-page/{index.vue → UPage.vue} +9 -10
  54. package/ui.container-page/storybook/Docs.mdx +16 -0
  55. package/ui.container-page/{index.stories.js → storybook/stories.js} +11 -11
  56. package/ui.container-page/{composables/attrs.composable.js → useAttrs.js} +4 -4
  57. package/ui.container-row/{index.vue → URow.vue} +5 -6
  58. package/ui.container-row/storybook/Docs.mdx +16 -0
  59. package/ui.container-row/{index.stories.js → storybook/stories.js} +7 -7
  60. package/{ui.form-checkbox-group/composables/attrs.composable.js → ui.container-row/useAttrs.js} +3 -3
  61. package/ui.data-list/{index.vue → UDataList.vue} +11 -12
  62. package/ui.data-list/{Docs.mdx → storybook/Docs.mdx} +3 -3
  63. package/ui.data-list/{index.stories.js → storybook/stories.js} +7 -7
  64. package/ui.data-list/{composables/attrs.composable.js → useAttrs.js} +3 -3
  65. package/ui.data-table/{components/TableRow.vue → TableRow.vue} +12 -5
  66. package/ui.data-table/{index.vue → UTable.vue} +14 -15
  67. package/ui.data-table/storybook/Docs.mdx +16 -0
  68. package/ui.data-table/{index.stories.js → storybook/stories.js} +11 -11
  69. package/ui.data-table/{composables/attrs.composable.js → useAttrs.js} +3 -3
  70. package/ui.dropdown-badge/{index.vue → UDropdownBadge.vue} +9 -10
  71. package/ui.dropdown-badge/storybook/Docs.mdx +16 -0
  72. package/ui.dropdown-badge/{index.stories.js → storybook/stories.js} +6 -6
  73. package/ui.dropdown-badge/{composables/attrs.composable.js → useAttrs.js} +3 -3
  74. package/ui.dropdown-button/{index.vue → UDropdownButton.vue} +9 -10
  75. package/ui.dropdown-button/storybook/Docs.mdx +16 -0
  76. package/ui.dropdown-button/{index.stories.js → storybook/stories.js} +7 -7
  77. package/ui.dropdown-button/{composables/attrs.composable.js → useAttrs.js} +3 -3
  78. package/ui.dropdown-link/{index.vue → UDropdownLink.vue} +9 -10
  79. package/ui.dropdown-link/storybook/Docs.mdx +16 -0
  80. package/ui.dropdown-link/{index.stories.js → storybook/stories.js} +6 -6
  81. package/ui.dropdown-link/{composables/attrs.composable.js → useAttrs.js} +3 -3
  82. package/ui.dropdown-list/{index.vue → UDropdownList.vue} +10 -11
  83. package/ui.dropdown-list/{configs/default.config.js → config.js} +2 -1
  84. package/ui.dropdown-list/storybook/Docs.mdx +16 -0
  85. package/ui.dropdown-list/{index.stories.js → storybook/stories.js} +5 -5
  86. package/ui.dropdown-list/{composables/attrs.composable.js → useAttrs.js} +3 -3
  87. package/ui.form-calendar/{index.vue → UCalendar.vue} +12 -18
  88. package/ui.form-calendar/{components/DayView.vue → UCalendarDayView.vue} +5 -5
  89. package/ui.form-calendar/{components/MonthView.vue → UCalendarMonthView.vue} +6 -6
  90. package/ui.form-calendar/{components/YearView.vue → UCalendarYearView.vue} +6 -6
  91. package/ui.form-calendar/{configs/default.config.js → config.js} +4 -1
  92. package/ui.form-calendar/{Docs.mdx → storybook/Docs.mdx} +3 -3
  93. package/ui.form-calendar/{index.stories.js → storybook/stories.js} +4 -4
  94. package/ui.form-calendar/{composables/attrs.composable.js → useAttrs.js} +3 -3
  95. package/ui.form-calendar/{services/calendar.service.js → utilCalendar.js} +3 -3
  96. package/ui.form-calendar/{services/date.service.js → utilDate.js} +1 -1
  97. package/ui.form-checkbox/{index.vue → UCheckbox.vue} +7 -8
  98. package/ui.form-checkbox/storybook/Docs.mdx +16 -0
  99. package/ui.form-checkbox/{index.stories.js → storybook/stories.js} +7 -7
  100. package/ui.form-checkbox/{composables/attrs.composable.js → useAttrs.js} +3 -3
  101. package/ui.form-checkbox-group/{index.vue → UCheckboxGroup.vue} +7 -8
  102. package/ui.form-checkbox-group/storybook/Docs.mdx +16 -0
  103. package/ui.form-checkbox-group/{index.stories.js → storybook/stories.js} +8 -8
  104. package/{ui.container-row/composables/attrs.composable.js → ui.form-checkbox-group/useAttrs.js} +3 -3
  105. package/ui.form-checkbox-multi-state/{index.vue → UCheckboxMultiState.vue} +6 -7
  106. package/ui.form-checkbox-multi-state/storybook/Docs.mdx +16 -0
  107. package/ui.form-checkbox-multi-state/{index.stories.js → storybook/stories.js} +5 -5
  108. package/ui.form-checkbox-multi-state/{composables/attrs.composable.js → useAttrs.js} +7 -7
  109. package/ui.form-color-picker/{index.vue → UColorPicker.vue} +8 -9
  110. package/ui.form-color-picker/storybook/Docs.mdx +16 -0
  111. package/ui.form-color-picker/{index.stories.js → storybook/stories.js} +6 -5
  112. package/ui.form-color-picker/{composables/attrs.composable.js → useAttrs.js} +3 -3
  113. package/ui.form-date-picker/{index.vue → UDatePicker.vue} +11 -12
  114. package/ui.form-date-picker/index.js +5 -0
  115. package/ui.form-date-picker/{Docs.mdx → storybook/Docs.mdx} +3 -3
  116. package/ui.form-date-picker/{index.stories.js → storybook/stories.js} +6 -6
  117. package/ui.form-date-picker/{composables/attrs.composable.js → useAttrs.js} +4 -4
  118. package/ui.form-date-picker-range/{index.vue → UDatePickerRange.vue} +18 -27
  119. package/ui.form-date-picker-range/{configs/default.config.js → config.js} +4 -1
  120. package/ui.form-date-picker-range/storybook/Docs.mdx +16 -0
  121. package/ui.form-date-picker-range/{index.stories.js → storybook/stories.js} +34 -34
  122. package/ui.form-date-picker-range/{composables/attrs.composable.js → useAttrs.js} +4 -4
  123. package/ui.form-date-picker-range/{services/dateRange.service.js → utilDateRange.js} +1 -1
  124. package/ui.form-date-picker-range/{services/validation.service.js → utilValidation.js} +1 -1
  125. package/ui.form-input/{index.vue → UInput.vue} +7 -8
  126. package/ui.form-input/{configs/default.config.js → config.js} +2 -2
  127. package/ui.form-input/storybook/Docs.mdx +16 -0
  128. package/ui.form-input/{index.stories.js → storybook/stories.js} +7 -7
  129. package/ui.form-input/{composables/attrs.composable.js → useAttrs.js} +3 -3
  130. package/ui.form-input-file/{index.vue → UInputFile.vue} +11 -12
  131. package/ui.form-input-file/storybook/Docs.mdx +16 -0
  132. package/ui.form-input-file/{index.stories.js → storybook/stories.js} +5 -5
  133. package/ui.form-input-file/{composables/attrs.composable.js → useAttrs.js} +3 -3
  134. package/ui.form-input-money/{index.vue → UMoney.vue} +21 -13
  135. package/ui.form-input-money/{configs/default.config.js → config.js} +2 -1
  136. package/ui.form-input-money/storybook/Docs.mdx +16 -0
  137. package/ui.form-input-money/{index.stories.js → storybook/stories.js} +12 -9
  138. package/ui.form-input-money/{composables/attrs.composable.js → useAttrs.js} +3 -3
  139. package/ui.form-input-money/{composables/useFormatCurrency.js → useFormatCurrency.js} +1 -1
  140. package/ui.form-input-money/{services/format.service.js → utilFormat.js} +12 -4
  141. package/ui.form-input-number/{index.vue → UInputNumber.vue} +7 -8
  142. package/ui.form-input-number/storybook/Docs.mdx +16 -0
  143. package/ui.form-input-number/{index.stories.js → storybook/stories.js} +5 -5
  144. package/{ui.container-col/composables/attrs.composable.js → ui.form-input-number/useAttrs.js} +3 -3
  145. package/ui.form-input-rating/{index.vue → UInputRating.vue} +7 -8
  146. package/ui.form-input-rating/storybook/Docs.mdx +16 -0
  147. package/ui.form-input-rating/{index.stories.js → storybook/stories.js} +5 -5
  148. package/ui.form-input-rating/{composables/attrs.composable.js → useAttrs.js} +3 -3
  149. package/ui.form-input-search/{index.vue → UInputSearch.vue} +11 -12
  150. package/ui.form-input-search/storybook/Docs.mdx +16 -0
  151. package/ui.form-input-search/{index.stories.js → storybook/stories.js} +7 -7
  152. package/ui.form-input-search/{composables/attrs.composable.js → useAttrs.js} +3 -3
  153. package/ui.form-label/{index.vue → ULabel.vue} +5 -6
  154. package/ui.form-label/storybook/Docs.mdx +16 -0
  155. package/ui.form-label/{index.stories.js → storybook/stories.js} +7 -7
  156. package/ui.form-label/{composables/attrs.composable.js → useAttrs.js} +3 -3
  157. package/ui.form-radio/{index.vue → URadio.vue} +6 -7
  158. package/ui.form-radio/storybook/Docs.mdx +16 -0
  159. package/ui.form-radio/{index.stories.js → storybook/stories.js} +5 -5
  160. package/ui.form-radio/{composables/attrs.composable.js → useAttrs.js} +3 -3
  161. package/ui.form-radio-group/{index.vue → URadioGroup.vue} +7 -8
  162. package/ui.form-radio-group/{Docs.mdx → storybook/Docs.mdx} +3 -3
  163. package/ui.form-radio-group/{index.stories.js → storybook/stories.js} +7 -7
  164. package/ui.form-radio-group/{composables/attrs.composable.js → useAttrs.js} +3 -3
  165. package/ui.form-select/{index.vue → USelect.vue} +11 -12
  166. package/ui.form-select/storybook/Docs.mdx +16 -0
  167. package/ui.form-select/{index.stories.js → storybook/stories.js} +8 -8
  168. package/ui.form-select/{composables/attrs.composable.js → useAttrs.js} +3 -3
  169. package/ui.form-switch/{index.vue → USwitch.vue} +8 -9
  170. package/ui.form-switch/{configs/default.config.js → config.js} +15 -3
  171. package/ui.form-switch/storybook/Docs.mdx +16 -0
  172. package/ui.form-switch/{index.stories.js → storybook/stories.js} +6 -6
  173. package/ui.form-switch/{composables/attrs.composable.js → useAttrs.js} +3 -3
  174. package/ui.form-switch/{services/variant.service.js → utilVariant.js} +1 -1
  175. package/ui.form-textarea/{index.vue → UTextarea.vue} +6 -7
  176. package/ui.form-textarea/{configs/default.config.js → config.js} +4 -3
  177. package/ui.form-textarea/storybook/Docs.mdx +16 -0
  178. package/ui.form-textarea/{index.stories.js → storybook/stories.js} +6 -6
  179. package/ui.form-textarea/{composables/attrs.composable.js → useAttrs.js} +3 -3
  180. package/ui.image-avatar/{index.vue → UAvatar.vue} +6 -7
  181. package/ui.image-avatar/storybook/Docs.mdx +16 -0
  182. package/ui.image-avatar/{index.stories.js → storybook/stories.js} +7 -7
  183. package/{ui.image-icon/composables/attrs.composable.js → ui.image-avatar/useAttrs.js} +3 -3
  184. package/ui.image-icon/{index.vue → UIcon.vue} +6 -10
  185. package/ui.image-icon/storybook/Docs.mdx +16 -0
  186. package/ui.image-icon/{index.stories.js → storybook/stories.js} +5 -5
  187. package/{ui.loader-top/composables/attrs.composable.js → ui.image-icon/useAttrs.js} +3 -3
  188. package/ui.loader/{index.vue → ULoader.vue} +5 -6
  189. package/ui.loader/storybook/Docs.mdx +16 -0
  190. package/ui.loader/{index.stories.js → storybook/stories.js} +7 -7
  191. package/ui.loader/{composables/attrs.composable.js → useAttrs.js} +3 -3
  192. package/ui.loader-rendering/{index.vue → ULoaderRendering.vue} +7 -8
  193. package/ui.loader-rendering/{Docs.mdx → storybook/Docs.mdx} +3 -3
  194. package/ui.loader-rendering/{index.stories.js → storybook/stories.js} +7 -7
  195. package/ui.loader-rendering/{composables/attrs.composable.js → useAttrs.js} +3 -3
  196. package/ui.loader-top/{index.vue → ULoaderTop.vue} +8 -9
  197. package/ui.loader-top/{Docs.mdx → storybook/Docs.mdx} +3 -3
  198. package/ui.loader-top/{index.stories.js → storybook/stories.js} +10 -10
  199. package/{ui.image-avatar/composables/attrs.composable.js → ui.loader-top/useAttrs.js} +3 -3
  200. package/ui.loader-top/{composables/useLoaderTop.js → useLoaderTop.js} +1 -1
  201. package/ui.navigation-pagination/{index.vue → UPagination.vue} +7 -8
  202. package/ui.navigation-pagination/storybook/Docs.mdx +16 -0
  203. package/ui.navigation-pagination/{index.stories.js → storybook/stories.js} +4 -4
  204. package/ui.navigation-pagination/{composables/attrs.composable.js → useAttrs.js} +3 -3
  205. package/ui.navigation-progress/{components/StepperProgress.vue → StepperProgress.vue} +2 -2
  206. package/ui.navigation-progress/{index.vue → UProgress.vue} +7 -8
  207. package/ui.navigation-progress/{configs/default.config.js → config.js} +4 -1
  208. package/ui.navigation-progress/storybook/Docs.mdx +16 -0
  209. package/ui.navigation-progress/{index.stories.js → storybook/stories.js} +7 -7
  210. package/ui.navigation-progress/{composables/attrs.composable.js → useAttrs.js} +3 -3
  211. package/ui.navigation-tab/{index.vue → UTab.vue} +5 -6
  212. package/ui.navigation-tab/storybook/Docs.mdx +16 -0
  213. package/ui.navigation-tab/{index.stories.js → storybook/stories.js} +5 -5
  214. package/ui.navigation-tab/{composables/attrs.composable.js → useAttrs.js} +3 -3
  215. package/ui.navigation-tabs/{index.vue → UTabs.vue} +6 -7
  216. package/ui.navigation-tabs/storybook/Docs.mdx +16 -0
  217. package/ui.navigation-tabs/{index.stories.js → storybook/stories.js} +4 -4
  218. package/{ui.container-group/composables/attrs.composable.js → ui.navigation-tabs/useAttrs.js} +3 -3
  219. package/ui.other-dot/{index.vue → UDot.vue} +5 -6
  220. package/ui.other-dot/storybook/Docs.mdx +16 -0
  221. package/ui.other-dot/{index.stories.js → storybook/stories.js} +8 -9
  222. package/ui.other-dot/useAttrs.js +38 -0
  223. package/ui.text-alert/{index.vue → UAlert.vue} +8 -9
  224. package/ui.text-alert/storybook/Docs.mdx +16 -0
  225. package/ui.text-alert/{index.stories.js → storybook/stories.js} +8 -8
  226. package/ui.text-alert/{composables/attrs.composable.js → useAttrs.js} +3 -3
  227. package/ui.text-badge/{index.vue → UBadge.vue} +6 -7
  228. package/ui.text-badge/storybook/Docs.mdx +16 -0
  229. package/ui.text-badge/{index.stories.js → storybook/stories.js} +7 -7
  230. package/ui.text-badge/{composables/attrs.composable.js → useAttrs.js} +3 -3
  231. package/ui.text-block/{index.vue → UText.vue} +5 -6
  232. package/ui.text-block/storybook/Docs.mdx +16 -0
  233. package/ui.text-block/{index.stories.js → storybook/stories.js} +5 -5
  234. package/ui.text-block/{composables/attrs.composable.js → useAttrs.js} +3 -3
  235. package/ui.text-empty/{index.vue → UEmpty.vue} +7 -8
  236. package/ui.text-empty/storybook/Docs.mdx +16 -0
  237. package/ui.text-empty/{index.stories.js → storybook/stories.js} +7 -7
  238. package/ui.text-empty/useAttrs.js +37 -0
  239. package/ui.text-file/{index.vue → UFile.vue} +7 -8
  240. package/ui.text-file/storybook/Docs.mdx +16 -0
  241. package/ui.text-file/{index.stories.js → storybook/stories.js} +4 -4
  242. package/ui.text-file/{composables/attrs.composable.js → useAttrs.js} +3 -3
  243. package/ui.text-files/{index.vue → UFiles.vue} +8 -9
  244. package/ui.text-files/storybook/Docs.mdx +16 -0
  245. package/ui.text-files/{index.stories.js → storybook/stories.js} +4 -4
  246. package/ui.text-files/{composables/attrs.composable.js → useAttrs.js} +3 -3
  247. package/ui.text-header/{index.vue → UHeader.vue} +5 -6
  248. package/ui.text-header/{configs/default.config.js → config.js} +1 -1
  249. package/ui.text-header/storybook/Docs.mdx +16 -0
  250. package/ui.text-header/{index.stories.js → storybook/stories.js} +5 -5
  251. package/ui.text-header/useAttrs.js +38 -0
  252. package/ui.text-money/{index.vue → UMoney.vue} +6 -7
  253. package/ui.text-money/storybook/Docs.mdx +16 -0
  254. package/ui.text-money/{index.stories.js → storybook/stories.js} +9 -9
  255. package/ui.text-money/{composables/attrs.composable.js → useAttrs.js} +3 -3
  256. package/ui.text-notify/{index.vue → UNotify.vue} +7 -8
  257. package/ui.text-notify/{Docs.mdx → storybook/Docs.mdx} +3 -3
  258. package/ui.text-notify/{index.stories.js → storybook/stories.js} +7 -7
  259. package/ui.text-notify/{composables/attrs.composable.js → useAttrs.js} +3 -3
  260. package/ui.text-notify/{services/index.js → utilNotify.js} +2 -2
  261. package/{service.theme/index.js → utils/utilTheme.js} +2 -2
  262. package/{service.ui/index.js → utils/utilUI.js} +2 -2
  263. package/web-types.json +702 -701
  264. package/preset.tailwind/index.js +0 -120
  265. package/ui.container-accordion/Docs.mdx +0 -16
  266. package/ui.container-card/Docs.mdx +0 -16
  267. package/ui.container-col/Docs.mdx +0 -16
  268. package/ui.container-divider/Docs.mdx +0 -16
  269. package/ui.container-group/Docs.mdx +0 -16
  270. package/ui.container-modal/Docs.mdx +0 -16
  271. package/ui.container-modal-confirm/Docs.mdx +0 -16
  272. package/ui.container-page/Docs.mdx +0 -16
  273. package/ui.container-row/Docs.mdx +0 -16
  274. package/ui.data-table/Docs.mdx +0 -16
  275. package/ui.dropdown-badge/Docs.mdx +0 -16
  276. package/ui.dropdown-button/Docs.mdx +0 -16
  277. package/ui.dropdown-link/Docs.mdx +0 -16
  278. package/ui.dropdown-list/Docs.mdx +0 -16
  279. package/ui.form-checkbox/Docs.mdx +0 -16
  280. package/ui.form-checkbox-group/Docs.mdx +0 -16
  281. package/ui.form-checkbox-multi-state/Docs.mdx +0 -16
  282. package/ui.form-color-picker/Docs.mdx +0 -16
  283. package/ui.form-date-picker-range/Docs.mdx +0 -16
  284. package/ui.form-input/Docs.mdx +0 -16
  285. package/ui.form-input-file/Docs.mdx +0 -16
  286. package/ui.form-input-money/Docs.mdx +0 -16
  287. package/ui.form-input-number/Docs.mdx +0 -16
  288. package/ui.form-input-rating/Docs.mdx +0 -16
  289. package/ui.form-input-search/Docs.mdx +0 -16
  290. package/ui.form-label/Docs.mdx +0 -16
  291. package/ui.form-radio/Docs.mdx +0 -16
  292. package/ui.form-select/Docs.mdx +0 -16
  293. package/ui.form-switch/Docs.mdx +0 -16
  294. package/ui.form-textarea/Docs.mdx +0 -16
  295. package/ui.image-avatar/Docs.mdx +0 -16
  296. package/ui.image-icon/Docs.mdx +0 -16
  297. package/ui.loader/Docs.mdx +0 -16
  298. package/ui.navigation-pagination/Docs.mdx +0 -16
  299. package/ui.navigation-progress/Docs.mdx +0 -16
  300. package/ui.navigation-tab/Docs.mdx +0 -16
  301. package/ui.navigation-tabs/Docs.mdx +0 -16
  302. package/ui.other-dot/Docs.mdx +0 -16
  303. package/ui.other-dot/composables/attrs.composable.js +0 -38
  304. package/ui.text-alert/Docs.mdx +0 -16
  305. package/ui.text-badge/Docs.mdx +0 -16
  306. package/ui.text-block/Docs.mdx +0 -16
  307. package/ui.text-empty/Docs.mdx +0 -16
  308. package/ui.text-empty/composables/attrs.composable.js +0 -37
  309. package/ui.text-file/Docs.mdx +0 -16
  310. package/ui.text-files/Docs.mdx +0 -16
  311. package/ui.text-header/Docs.mdx +0 -16
  312. package/ui.text-header/composables/attrs.composable.js +0 -38
  313. package/ui.text-money/Docs.mdx +0 -16
  314. /package/{composable.autoPosition/index.js → composables/useAutoPosition.js} +0 -0
  315. /package/{composable.breakpoint/index.js → composables/useBreakpoint.js} +0 -0
  316. /package/{composable.locale/index.js → composables/useLocale.js} +0 -0
  317. /package/{composable.mutationObserver/index.js → composables/useMutationObserver.js} +0 -0
  318. /package/{constants/index.js → constants.js} +0 -0
  319. /package/{directive.clickOutside/index.js → directives/vClickOutside.js} +0 -0
  320. /package/ui.button/{configs/default.config.js → config.js} +0 -0
  321. /package/ui.button/{constants/index.js → constants.js} +0 -0
  322. /package/ui.button-link/{configs/default.config.js → config.js} +0 -0
  323. /package/ui.button-link/{constants/index.js → constants.js} +0 -0
  324. /package/ui.button-toggle/{configs/default.config.js → config.js} +0 -0
  325. /package/ui.button-toggle/{constants/index.js → constants.js} +0 -0
  326. /package/ui.button-toggle-item/{constants/index.js → constants.js} +0 -0
  327. /package/ui.container-accordion/{configs/default.config.js → config.js} +0 -0
  328. /package/ui.container-accordion/{constants/index.js → constants.js} +0 -0
  329. /package/ui.container-card/{configs/default.config.js → config.js} +0 -0
  330. /package/ui.container-card/{constants/index.js → constants.js} +0 -0
  331. /package/ui.container-col/{configs/default.config.js → config.js} +0 -0
  332. /package/ui.container-col/{constants/index.js → constants.js} +0 -0
  333. /package/ui.container-divider/{configs/default.config.js → config.js} +0 -0
  334. /package/ui.container-divider/{constants/index.js → constants.js} +0 -0
  335. /package/ui.container-group/{configs/default.config.js → config.js} +0 -0
  336. /package/ui.container-group/{constants/index.js → constants.js} +0 -0
  337. /package/ui.container-modal/{configs/default.config.js → config.js} +0 -0
  338. /package/ui.container-modal/{constants/index.js → constants.js} +0 -0
  339. /package/ui.container-modal-confirm/{configs/default.config.js → config.js} +0 -0
  340. /package/ui.container-modal-confirm/{constants/index.js → constants.js} +0 -0
  341. /package/ui.container-page/{configs/default.config.js → config.js} +0 -0
  342. /package/ui.container-page/{constants/index.js → constants.js} +0 -0
  343. /package/ui.container-row/{configs/default.config.js → config.js} +0 -0
  344. /package/ui.container-row/{constants/index.js → constants.js} +0 -0
  345. /package/ui.data-list/{configs/default.config.js → config.js} +0 -0
  346. /package/ui.data-list/{constants/index.js → constants.js} +0 -0
  347. /package/ui.data-table/{configs/default.config.js → config.js} +0 -0
  348. /package/ui.data-table/{constants/index.js → constants.js} +0 -0
  349. /package/ui.data-table/{services/table.service.js → utilTable.js} +0 -0
  350. /package/ui.dropdown-badge/{configs/default.config.js → config.js} +0 -0
  351. /package/ui.dropdown-badge/{constants/index.js → constants.js} +0 -0
  352. /package/ui.dropdown-button/{configs/default.config.js → config.js} +0 -0
  353. /package/ui.dropdown-button/{constants/index.js → constants.js} +0 -0
  354. /package/ui.dropdown-link/{configs/default.config.js → config.js} +0 -0
  355. /package/ui.dropdown-link/{constants/index.js → constants.js} +0 -0
  356. /package/ui.dropdown-list/{constants/index.js → constants.js} +0 -0
  357. /package/ui.dropdown-list/{composables/usePointer.js → usePointer.js} +0 -0
  358. /package/ui.form-calendar/{constants/index.js → constants.js} +0 -0
  359. /package/ui.form-calendar/{services/formatting.service.js → utilFormatting.js} +0 -0
  360. /package/ui.form-checkbox/{configs/default.config.js → config.js} +0 -0
  361. /package/ui.form-checkbox/{constants/index.js → constants.js} +0 -0
  362. /package/ui.form-checkbox-group/{configs/default.config.js → config.js} +0 -0
  363. /package/ui.form-checkbox-group/{constants/index.js → constants.js} +0 -0
  364. /package/ui.form-checkbox-multi-state/{configs/default.config.js → config.js} +0 -0
  365. /package/ui.form-checkbox-multi-state/{constants/index.js → constants.js} +0 -0
  366. /package/ui.form-color-picker/{configs/default.config.js → config.js} +0 -0
  367. /package/ui.form-color-picker/{constants/index.js → constants.js} +0 -0
  368. /package/ui.form-date-picker/{configs/default.config.js → config.js} +0 -0
  369. /package/ui.form-date-picker/{constants/index.js → constants.js} +0 -0
  370. /package/ui.form-date-picker-range/{constants/index.js → constants.js} +0 -0
  371. /package/ui.form-input/{constants/index.js → constants.js} +0 -0
  372. /package/ui.form-input-file/{configs/default.config.js → config.js} +0 -0
  373. /package/ui.form-input-file/{constants/index.js → constants.js} +0 -0
  374. /package/ui.form-input-file/{services/fileForm.service.js → utilFileForm.js} +0 -0
  375. /package/ui.form-input-money/{constants/index.js → constants.js} +0 -0
  376. /package/ui.form-input-number/{configs/default.config.js → config.js} +0 -0
  377. /package/ui.form-input-number/{constants/index.js → constants.js} +0 -0
  378. /package/ui.form-input-rating/{configs/default.config.js → config.js} +0 -0
  379. /package/ui.form-input-rating/{constants/index.js → constants.js} +0 -0
  380. /package/ui.form-input-search/{configs/default.config.js → config.js} +0 -0
  381. /package/ui.form-input-search/{constants/index.js → constants.js} +0 -0
  382. /package/ui.form-label/{configs/default.config.js → config.js} +0 -0
  383. /package/ui.form-label/{constants/index.js → constants.js} +0 -0
  384. /package/ui.form-radio/{configs/default.config.js → config.js} +0 -0
  385. /package/ui.form-radio/{constants/index.js → constants.js} +0 -0
  386. /package/ui.form-radio-group/{configs/default.config.js → config.js} +0 -0
  387. /package/ui.form-radio-group/{constants/index.js → constants.js} +0 -0
  388. /package/ui.form-select/{configs/default.config.js → config.js} +0 -0
  389. /package/ui.form-select/{constants/index.js → constants.js} +0 -0
  390. /package/ui.form-select/{services/select.service.js → utilSelect.js} +0 -0
  391. /package/ui.form-switch/{constants/index.js → constants.js} +0 -0
  392. /package/ui.form-textarea/{constants/index.js → constants.js} +0 -0
  393. /package/ui.image-avatar/{configs/default.config.js → config.js} +0 -0
  394. /package/ui.image-avatar/{constants/index.js → constants.js} +0 -0
  395. /package/ui.image-icon/{configs/default.config.js → config.js} +0 -0
  396. /package/ui.image-icon/{constants/index.js → constants.js} +0 -0
  397. /package/ui.loader/{configs/default.config.js → config.js} +0 -0
  398. /package/ui.loader/{constants/index.js → constants.js} +0 -0
  399. /package/ui.loader-rendering/{configs/default.config.js → config.js} +0 -0
  400. /package/ui.loader-rendering/{constants/index.js → constants.js} +0 -0
  401. /package/ui.loader-rendering/{composables/useLoaderRendering.js → useLoaderRendering.js} +0 -0
  402. /package/ui.loader-rendering/{services/loaderRedering.service.js → utilLoaderRedering.js} +0 -0
  403. /package/ui.loader-top/{configs/default.config.js → config.js} +0 -0
  404. /package/ui.loader-top/{constants/index.js → constants.js} +0 -0
  405. /package/ui.loader-top/{services/loaderTop.service.js → utilLoaderTop.js} +0 -0
  406. /package/ui.navigation-pagination/{configs/default.config.js → config.js} +0 -0
  407. /package/ui.navigation-pagination/{constants/index.js → constants.js} +0 -0
  408. /package/ui.navigation-progress/{constants/index.js → constants.js} +0 -0
  409. /package/ui.navigation-tab/{configs/default.config.js → config.js} +0 -0
  410. /package/ui.navigation-tab/{constants/index.js → constants.js} +0 -0
  411. /package/ui.navigation-tabs/{configs/default.config.js → config.js} +0 -0
  412. /package/ui.navigation-tabs/{constants/index.js → constants.js} +0 -0
  413. /package/ui.other-dot/{configs/default.config.js → config.js} +0 -0
  414. /package/ui.other-dot/{constants/index.js → constants.js} +0 -0
  415. /package/ui.text-alert/{configs/default.config.js → config.js} +0 -0
  416. /package/ui.text-alert/{constatns/index.js → constants.js} +0 -0
  417. /package/ui.text-badge/{configs/default.config.js → config.js} +0 -0
  418. /package/ui.text-badge/{constants/index.js → constants.js} +0 -0
  419. /package/ui.text-block/{configs/default.config.js → config.js} +0 -0
  420. /package/ui.text-block/{constatns/index.js → constants.js} +0 -0
  421. /package/ui.text-empty/{configs/default.config.js → config.js} +0 -0
  422. /package/ui.text-empty/{constants/index.js → constants.js} +0 -0
  423. /package/ui.text-file/{configs/default.config.js → config.js} +0 -0
  424. /package/ui.text-file/{constants/index.js → constants.js} +0 -0
  425. /package/ui.text-files/{configs/default.config.js → config.js} +0 -0
  426. /package/ui.text-files/{constants/index.js → constants.js} +0 -0
  427. /package/ui.text-header/{constants/index.js → constants.js} +0 -0
  428. /package/ui.text-money/{configs/default.config.js → config.js} +0 -0
  429. /package/ui.text-money/{constants/index.js → constants.js} +0 -0
  430. /package/ui.text-money/{services/money.services.js → utilMoney.js} +0 -0
  431. /package/ui.text-notify/{configs/default.config.js → config.js} +0 -0
  432. /package/ui.text-notify/{constants/index.js → constants.js} +0 -0
  433. /package/{service.helper/index.js → utils/utilHelper.js} +0 -0
  434. /package/{service.platform/index.js → utils/utilPlatform.js} +0 -0
  435. /package/{service.storybook/index.js → utils/utilStorybook.js} +0 -0
package/web-types.json CHANGED
@@ -1,202 +1,12 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.328",
4
+ "version": "0.0.329",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
8
8
  "types-syntax": "typescript",
9
9
  "tags": [
10
- {
11
- "name": "DayView",
12
- "description": "",
13
- "attributes": [
14
- {
15
- "name": "selectedDate",
16
- "required": true,
17
- "value": {
18
- "kind": "expression",
19
- "type": "date|null"
20
- }
21
- },
22
- {
23
- "name": "selectedDateTo",
24
- "value": {
25
- "kind": "expression",
26
- "type": "date|null"
27
- },
28
- "default": "undefined"
29
- },
30
- {
31
- "name": "activeDate",
32
- "required": true,
33
- "value": {
34
- "kind": "expression",
35
- "type": "date|null"
36
- }
37
- },
38
- {
39
- "name": "activeMonth",
40
- "required": true,
41
- "value": {
42
- "kind": "expression",
43
- "type": "date|null"
44
- }
45
- },
46
- {
47
- "name": "locale",
48
- "required": true,
49
- "value": {
50
- "kind": "expression",
51
- "type": "object"
52
- }
53
- },
54
- {
55
- "name": "dateFormat",
56
- "value": {
57
- "kind": "expression",
58
- "type": "string"
59
- },
60
- "default": "undefined"
61
- },
62
- {
63
- "name": "range",
64
- "value": {
65
- "kind": "expression",
66
- "type": "boolean"
67
- },
68
- "default": "false"
69
- },
70
- {
71
- "name": "maxDate",
72
- "value": {
73
- "kind": "expression",
74
- "type": "date|string"
75
- },
76
- "default": "undefined"
77
- },
78
- {
79
- "name": "minDate",
80
- "value": {
81
- "kind": "expression",
82
- "type": "date|string"
83
- },
84
- "default": "undefined"
85
- },
86
- {
87
- "name": "config",
88
- "value": {
89
- "kind": "expression",
90
- "type": "object"
91
- },
92
- "default": "{}"
93
- }
94
- ],
95
- "events": [
96
- {
97
- "name": "input"
98
- }
99
- ],
100
- "source": {
101
- "module": "./src/ui.form-calendar/components/DayView.vue",
102
- "symbol": "default"
103
- }
104
- },
105
- {
106
- "name": "MonthView",
107
- "description": "",
108
- "attributes": [
109
- {
110
- "name": "selectedDate",
111
- "required": true,
112
- "value": {
113
- "kind": "expression",
114
- "type": "date|null"
115
- }
116
- },
117
- {
118
- "name": "selectedDateTo",
119
- "value": {
120
- "kind": "expression",
121
- "type": "date|null"
122
- },
123
- "default": "undefined"
124
- },
125
- {
126
- "name": "activeDate",
127
- "required": true,
128
- "value": {
129
- "kind": "expression",
130
- "type": "date|null"
131
- }
132
- },
133
- {
134
- "name": "activeMonth",
135
- "required": true,
136
- "value": {
137
- "kind": "expression",
138
- "type": "date|null"
139
- }
140
- },
141
- {
142
- "name": "locale",
143
- "required": true,
144
- "value": {
145
- "kind": "expression",
146
- "type": "object"
147
- }
148
- },
149
- {
150
- "name": "dateFormat",
151
- "value": {
152
- "kind": "expression",
153
- "type": "string"
154
- },
155
- "default": "undefined"
156
- },
157
- {
158
- "name": "range",
159
- "value": {
160
- "kind": "expression",
161
- "type": "boolean"
162
- },
163
- "default": "false"
164
- },
165
- {
166
- "name": "maxDate",
167
- "value": {
168
- "kind": "expression",
169
- "type": "date|string"
170
- },
171
- "default": "undefined"
172
- },
173
- {
174
- "name": "minDate",
175
- "value": {
176
- "kind": "expression",
177
- "type": "date|string"
178
- },
179
- "default": "undefined"
180
- },
181
- {
182
- "name": "config",
183
- "value": {
184
- "kind": "expression",
185
- "type": "object"
186
- },
187
- "default": "{}"
188
- }
189
- ],
190
- "events": [
191
- {
192
- "name": "input"
193
- }
194
- ],
195
- "source": {
196
- "module": "./src/ui.form-calendar/components/MonthView.vue",
197
- "symbol": "default"
198
- }
199
- },
200
10
  {
201
11
  "name": "StepperProgress",
202
12
  "description": "",
@@ -223,7 +33,8 @@
223
33
  "value": {
224
34
  "kind": "expression",
225
35
  "type": "string"
226
- }
36
+ },
37
+ "default": "brand"
227
38
  },
228
39
  {
229
40
  "name": "config",
@@ -243,7 +54,7 @@
243
54
  }
244
55
  ],
245
56
  "source": {
246
- "module": "./src/ui.navigation-progress/components/StepperProgress.vue",
57
+ "module": "./src/ui.navigation-progress/StepperProgress.vue",
247
58
  "symbol": "default"
248
59
  }
249
60
  },
@@ -342,7 +153,7 @@
342
153
  }
343
154
  ],
344
155
  "source": {
345
- "module": "./src/ui.data-table/components/TableRow.vue",
156
+ "module": "./src/ui.data-table/TableRow.vue",
346
157
  "symbol": "default"
347
158
  }
348
159
  },
@@ -440,7 +251,7 @@
440
251
  }
441
252
  ],
442
253
  "source": {
443
- "module": "./src/ui.container-accordion/index.vue",
254
+ "module": "./src/ui.container-accordion/UAccordion.vue",
444
255
  "symbol": "default"
445
256
  }
446
257
  },
@@ -608,7 +419,7 @@
608
419
  }
609
420
  ],
610
421
  "source": {
611
- "module": "./src/ui.text-alert/index.vue",
422
+ "module": "./src/ui.text-alert/UAlert.vue",
612
423
  "symbol": "default"
613
424
  }
614
425
  },
@@ -725,7 +536,7 @@
725
536
  }
726
537
  ],
727
538
  "source": {
728
- "module": "./src/ui.image-avatar/index.vue",
539
+ "module": "./src/ui.image-avatar/UAvatar.vue",
729
540
  "symbol": "default"
730
541
  }
731
542
  },
@@ -924,7 +735,7 @@
924
735
  }
925
736
  ],
926
737
  "source": {
927
- "module": "./src/ui.text-badge/index.vue",
738
+ "module": "./src/ui.text-badge/UBadge.vue",
928
739
  "symbol": "default"
929
740
  }
930
741
  },
@@ -1168,7 +979,7 @@
1168
979
  }
1169
980
  ],
1170
981
  "source": {
1171
- "module": "./src/ui.button/index.vue",
982
+ "module": "./src/ui.button/UButton.vue",
1172
983
  "symbol": "default"
1173
984
  }
1174
985
  },
@@ -1352,77 +1163,353 @@
1352
1163
  }
1353
1164
  ],
1354
1165
  "source": {
1355
- "module": "./src/ui.form-calendar/index.vue",
1166
+ "module": "./src/ui.form-calendar/UCalendar.vue",
1356
1167
  "symbol": "default"
1357
1168
  }
1358
1169
  },
1359
1170
  {
1360
- "name": "UCard",
1171
+ "name": "UCalendarDayView",
1361
1172
  "description": "",
1362
1173
  "attributes": [
1363
1174
  {
1364
- "name": "title",
1365
- "description": "Card title.",
1175
+ "name": "selectedDate",
1176
+ "required": true,
1366
1177
  "value": {
1367
1178
  "kind": "expression",
1368
- "type": "string"
1369
- },
1370
- "default": "\"\""
1179
+ "type": "date|null"
1180
+ }
1371
1181
  },
1372
1182
  {
1373
- "name": "description",
1374
- "description": "Card description.",
1183
+ "name": "selectedDateTo",
1375
1184
  "value": {
1376
1185
  "kind": "expression",
1377
- "type": "string"
1186
+ "type": "date|null"
1378
1187
  },
1379
- "default": "\"\""
1188
+ "default": "undefined"
1380
1189
  },
1381
1190
  {
1382
- "name": "padding",
1383
- "description": "Card padding.",
1191
+ "name": "activeDate",
1192
+ "required": true,
1384
1193
  "value": {
1385
1194
  "kind": "expression",
1386
- "type": "'sm' | 'md' | 'lg'"
1387
- },
1388
- "default": "md"
1195
+ "type": "date|null"
1196
+ }
1389
1197
  },
1390
1198
  {
1391
- "name": "mobileFooterReverse",
1392
- "description": "Reverse left and right footer blocks (in a mobile version only).",
1199
+ "name": "activeMonth",
1200
+ "required": true,
1393
1201
  "value": {
1394
1202
  "kind": "expression",
1395
- "type": "boolean"
1396
- },
1397
- "default": "false"
1203
+ "type": "date|null"
1204
+ }
1398
1205
  },
1399
1206
  {
1400
- "name": "config",
1401
- "description": "Component ui config object.",
1207
+ "name": "locale",
1208
+ "required": true,
1402
1209
  "value": {
1403
1210
  "kind": "expression",
1404
1211
  "type": "object"
1405
- },
1406
- "default": "{}"
1212
+ }
1407
1213
  },
1408
1214
  {
1409
- "name": "dataTest",
1410
- "description": "Data-test attribute for automated testing.",
1215
+ "name": "dateFormat",
1411
1216
  "value": {
1412
1217
  "kind": "expression",
1413
1218
  "type": "string"
1414
- },
1415
- "default": "\"\""
1416
- }
1417
- ],
1418
- "slots": [
1219
+ }
1220
+ },
1419
1221
  {
1420
- "name": "header-left-before",
1421
- "description": "Use it to add something before left side of the header."
1222
+ "name": "range",
1223
+ "value": {
1224
+ "kind": "expression",
1225
+ "type": "boolean"
1226
+ },
1227
+ "default": "false"
1422
1228
  },
1423
1229
  {
1424
- "name": "header-left",
1425
- "description": "Use it to customise left side of the header."
1230
+ "name": "maxDate",
1231
+ "value": {
1232
+ "kind": "expression",
1233
+ "type": "date|string"
1234
+ }
1235
+ },
1236
+ {
1237
+ "name": "minDate",
1238
+ "value": {
1239
+ "kind": "expression",
1240
+ "type": "date|string"
1241
+ }
1242
+ },
1243
+ {
1244
+ "name": "config",
1245
+ "value": {
1246
+ "kind": "expression",
1247
+ "type": "object"
1248
+ },
1249
+ "default": "{}"
1250
+ }
1251
+ ],
1252
+ "events": [
1253
+ {
1254
+ "name": "input"
1255
+ }
1256
+ ],
1257
+ "source": {
1258
+ "module": "./src/ui.form-calendar/UCalendarDayView.vue",
1259
+ "symbol": "default"
1260
+ }
1261
+ },
1262
+ {
1263
+ "name": "UCalendarMonthView",
1264
+ "description": "",
1265
+ "attributes": [
1266
+ {
1267
+ "name": "selectedDate",
1268
+ "required": true,
1269
+ "value": {
1270
+ "kind": "expression",
1271
+ "type": "date|null"
1272
+ }
1273
+ },
1274
+ {
1275
+ "name": "selectedDateTo",
1276
+ "value": {
1277
+ "kind": "expression",
1278
+ "type": "date|null"
1279
+ },
1280
+ "default": "undefined"
1281
+ },
1282
+ {
1283
+ "name": "activeDate",
1284
+ "required": true,
1285
+ "value": {
1286
+ "kind": "expression",
1287
+ "type": "date|null"
1288
+ }
1289
+ },
1290
+ {
1291
+ "name": "activeMonth",
1292
+ "required": true,
1293
+ "value": {
1294
+ "kind": "expression",
1295
+ "type": "date|null"
1296
+ }
1297
+ },
1298
+ {
1299
+ "name": "locale",
1300
+ "required": true,
1301
+ "value": {
1302
+ "kind": "expression",
1303
+ "type": "object"
1304
+ }
1305
+ },
1306
+ {
1307
+ "name": "dateFormat",
1308
+ "value": {
1309
+ "kind": "expression",
1310
+ "type": "string"
1311
+ }
1312
+ },
1313
+ {
1314
+ "name": "range",
1315
+ "value": {
1316
+ "kind": "expression",
1317
+ "type": "boolean"
1318
+ },
1319
+ "default": "false"
1320
+ },
1321
+ {
1322
+ "name": "maxDate",
1323
+ "value": {
1324
+ "kind": "expression",
1325
+ "type": "date|string"
1326
+ }
1327
+ },
1328
+ {
1329
+ "name": "minDate",
1330
+ "value": {
1331
+ "kind": "expression",
1332
+ "type": "date|string"
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "config",
1337
+ "value": {
1338
+ "kind": "expression",
1339
+ "type": "object"
1340
+ },
1341
+ "default": "{}"
1342
+ }
1343
+ ],
1344
+ "events": [
1345
+ {
1346
+ "name": "input"
1347
+ }
1348
+ ],
1349
+ "source": {
1350
+ "module": "./src/ui.form-calendar/UCalendarMonthView.vue",
1351
+ "symbol": "default"
1352
+ }
1353
+ },
1354
+ {
1355
+ "name": "UCalendarYearView",
1356
+ "description": "",
1357
+ "attributes": [
1358
+ {
1359
+ "name": "selectedDate",
1360
+ "required": true,
1361
+ "value": {
1362
+ "kind": "expression",
1363
+ "type": "date|null"
1364
+ }
1365
+ },
1366
+ {
1367
+ "name": "selectedDateTo",
1368
+ "value": {
1369
+ "kind": "expression",
1370
+ "type": "date|null"
1371
+ },
1372
+ "default": "undefined"
1373
+ },
1374
+ {
1375
+ "name": "activeDate",
1376
+ "required": true,
1377
+ "value": {
1378
+ "kind": "expression",
1379
+ "type": "date|null"
1380
+ }
1381
+ },
1382
+ {
1383
+ "name": "activeMonth",
1384
+ "required": true,
1385
+ "value": {
1386
+ "kind": "expression",
1387
+ "type": "date|null"
1388
+ }
1389
+ },
1390
+ {
1391
+ "name": "locale",
1392
+ "required": true,
1393
+ "value": {
1394
+ "kind": "expression",
1395
+ "type": "object"
1396
+ }
1397
+ },
1398
+ {
1399
+ "name": "dateFormat",
1400
+ "value": {
1401
+ "kind": "expression",
1402
+ "type": "string"
1403
+ }
1404
+ },
1405
+ {
1406
+ "name": "range",
1407
+ "value": {
1408
+ "kind": "expression",
1409
+ "type": "boolean"
1410
+ },
1411
+ "default": "false"
1412
+ },
1413
+ {
1414
+ "name": "maxDate",
1415
+ "value": {
1416
+ "kind": "expression",
1417
+ "type": "date|string"
1418
+ }
1419
+ },
1420
+ {
1421
+ "name": "minDate",
1422
+ "value": {
1423
+ "kind": "expression",
1424
+ "type": "date|string"
1425
+ }
1426
+ },
1427
+ {
1428
+ "name": "config",
1429
+ "value": {
1430
+ "kind": "expression",
1431
+ "type": "object"
1432
+ },
1433
+ "default": "{}"
1434
+ }
1435
+ ],
1436
+ "events": [
1437
+ {
1438
+ "name": "input"
1439
+ }
1440
+ ],
1441
+ "source": {
1442
+ "module": "./src/ui.form-calendar/UCalendarYearView.vue",
1443
+ "symbol": "default"
1444
+ }
1445
+ },
1446
+ {
1447
+ "name": "UCard",
1448
+ "description": "",
1449
+ "attributes": [
1450
+ {
1451
+ "name": "title",
1452
+ "description": "Card title.",
1453
+ "value": {
1454
+ "kind": "expression",
1455
+ "type": "string"
1456
+ },
1457
+ "default": "\"\""
1458
+ },
1459
+ {
1460
+ "name": "description",
1461
+ "description": "Card description.",
1462
+ "value": {
1463
+ "kind": "expression",
1464
+ "type": "string"
1465
+ },
1466
+ "default": "\"\""
1467
+ },
1468
+ {
1469
+ "name": "padding",
1470
+ "description": "Card padding.",
1471
+ "value": {
1472
+ "kind": "expression",
1473
+ "type": "'sm' | 'md' | 'lg'"
1474
+ },
1475
+ "default": "md"
1476
+ },
1477
+ {
1478
+ "name": "mobileFooterReverse",
1479
+ "description": "Reverse left and right footer blocks (in a mobile version only).",
1480
+ "value": {
1481
+ "kind": "expression",
1482
+ "type": "boolean"
1483
+ },
1484
+ "default": "false"
1485
+ },
1486
+ {
1487
+ "name": "config",
1488
+ "description": "Component ui config object.",
1489
+ "value": {
1490
+ "kind": "expression",
1491
+ "type": "object"
1492
+ },
1493
+ "default": "{}"
1494
+ },
1495
+ {
1496
+ "name": "dataTest",
1497
+ "description": "Data-test attribute for automated testing.",
1498
+ "value": {
1499
+ "kind": "expression",
1500
+ "type": "string"
1501
+ },
1502
+ "default": "\"\""
1503
+ }
1504
+ ],
1505
+ "slots": [
1506
+ {
1507
+ "name": "header-left-before",
1508
+ "description": "Use it to add something before left side of the header."
1509
+ },
1510
+ {
1511
+ "name": "header-left",
1512
+ "description": "Use it to customise left side of the header."
1426
1513
  },
1427
1514
  {
1428
1515
  "name": "header-left-after",
@@ -1445,7 +1532,7 @@
1445
1532
  }
1446
1533
  ],
1447
1534
  "source": {
1448
- "module": "./src/ui.container-card/index.vue",
1535
+ "module": "./src/ui.container-card/UCard.vue",
1449
1536
  "symbol": "default"
1450
1537
  }
1451
1538
  },
@@ -1630,7 +1717,7 @@
1630
1717
  }
1631
1718
  ],
1632
1719
  "source": {
1633
- "module": "./src/ui.form-checkbox/index.vue",
1720
+ "module": "./src/ui.form-checkbox/UCheckbox.vue",
1634
1721
  "symbol": "default"
1635
1722
  }
1636
1723
  },
@@ -1758,7 +1845,7 @@
1758
1845
  }
1759
1846
  ],
1760
1847
  "source": {
1761
- "module": "./src/ui.form-checkbox-group/index.vue",
1848
+ "module": "./src/ui.form-checkbox-group/UCheckboxGroup.vue",
1762
1849
  "symbol": "default"
1763
1850
  }
1764
1851
  },
@@ -1863,7 +1950,7 @@
1863
1950
  }
1864
1951
  ],
1865
1952
  "source": {
1866
- "module": "./src/ui.form-checkbox-multi-state/index.vue",
1953
+ "module": "./src/ui.form-checkbox-multi-state/UCheckboxMultiState.vue",
1867
1954
  "symbol": "default"
1868
1955
  }
1869
1956
  },
@@ -1942,7 +2029,7 @@
1942
2029
  }
1943
2030
  ],
1944
2031
  "source": {
1945
- "module": "./src/ui.container-col/index.vue",
2032
+ "module": "./src/ui.container-col/UCol.vue",
1946
2033
  "symbol": "default"
1947
2034
  }
1948
2035
  },
@@ -2065,7 +2152,7 @@
2065
2152
  }
2066
2153
  ],
2067
2154
  "source": {
2068
- "module": "./src/ui.form-color-picker/index.vue",
2155
+ "module": "./src/ui.form-color-picker/UColorPicker.vue",
2069
2156
  "symbol": "default"
2070
2157
  }
2071
2158
  },
@@ -2307,7 +2394,7 @@
2307
2394
  }
2308
2395
  ],
2309
2396
  "source": {
2310
- "module": "./src/ui.data-list/index.vue",
2397
+ "module": "./src/ui.data-list/UDataList.vue",
2311
2398
  "symbol": "default"
2312
2399
  }
2313
2400
  },
@@ -2555,7 +2642,7 @@
2555
2642
  }
2556
2643
  ],
2557
2644
  "source": {
2558
- "module": "./src/ui.form-date-picker/index.vue",
2645
+ "module": "./src/ui.form-date-picker/UDatePicker.vue",
2559
2646
  "symbol": "default"
2560
2647
  }
2561
2648
  },
@@ -2765,7 +2852,7 @@
2765
2852
  }
2766
2853
  ],
2767
2854
  "source": {
2768
- "module": "./src/ui.form-date-picker-range/index.vue",
2855
+ "module": "./src/ui.form-date-picker-range/UDatePickerRange.vue",
2769
2856
  "symbol": "default"
2770
2857
  }
2771
2858
  },
@@ -2901,7 +2988,7 @@
2901
2988
  }
2902
2989
  ],
2903
2990
  "source": {
2904
- "module": "./src/ui.container-divider/index.vue",
2991
+ "module": "./src/ui.container-divider/UDivider.vue",
2905
2992
  "symbol": "default"
2906
2993
  }
2907
2994
  },
@@ -2947,7 +3034,7 @@
2947
3034
  }
2948
3035
  ],
2949
3036
  "source": {
2950
- "module": "./src/ui.other-dot/index.vue",
3037
+ "module": "./src/ui.other-dot/UDot.vue",
2951
3038
  "symbol": "default"
2952
3039
  }
2953
3040
  },
@@ -3136,7 +3223,7 @@
3136
3223
  }
3137
3224
  ],
3138
3225
  "source": {
3139
- "module": "./src/ui.dropdown-badge/index.vue",
3226
+ "module": "./src/ui.dropdown-badge/UDropdownBadge.vue",
3140
3227
  "symbol": "default"
3141
3228
  }
3142
3229
  },
@@ -3349,7 +3436,7 @@
3349
3436
  }
3350
3437
  ],
3351
3438
  "source": {
3352
- "module": "./src/ui.dropdown-button/index.vue",
3439
+ "module": "./src/ui.dropdown-button/UDropdownButton.vue",
3353
3440
  "symbol": "default"
3354
3441
  }
3355
3442
  },
@@ -3549,7 +3636,7 @@
3549
3636
  }
3550
3637
  ],
3551
3638
  "source": {
3552
- "module": "./src/ui.dropdown-link/index.vue",
3639
+ "module": "./src/ui.dropdown-link/UDropdownLink.vue",
3553
3640
  "symbol": "default"
3554
3641
  }
3555
3642
  },
@@ -3702,7 +3789,7 @@
3702
3789
  }
3703
3790
  ],
3704
3791
  "source": {
3705
- "module": "./src/ui.dropdown-list/index.vue",
3792
+ "module": "./src/ui.dropdown-list/UDropdownList.vue",
3706
3793
  "symbol": "default"
3707
3794
  }
3708
3795
  },
@@ -3771,7 +3858,7 @@
3771
3858
  }
3772
3859
  ],
3773
3860
  "source": {
3774
- "module": "./src/ui.text-empty/index.vue",
3861
+ "module": "./src/ui.text-empty/UEmpty.vue",
3775
3862
  "symbol": "default"
3776
3863
  }
3777
3864
  },
@@ -3873,7 +3960,7 @@
3873
3960
  }
3874
3961
  ],
3875
3962
  "source": {
3876
- "module": "./src/ui.text-file/index.vue",
3963
+ "module": "./src/ui.text-file/UFile.vue",
3877
3964
  "symbol": "default"
3878
3965
  }
3879
3966
  },
@@ -3974,7 +4061,7 @@
3974
4061
  }
3975
4062
  ],
3976
4063
  "source": {
3977
- "module": "./src/ui.text-files/index.vue",
4064
+ "module": "./src/ui.text-files/UFiles.vue",
3978
4065
  "symbol": "default"
3979
4066
  }
3980
4067
  },
@@ -4060,7 +4147,7 @@
4060
4147
  }
4061
4148
  ],
4062
4149
  "source": {
4063
- "module": "./src/ui.container-group/index.vue",
4150
+ "module": "./src/ui.container-group/UGroup.vue",
4064
4151
  "symbol": "default"
4065
4152
  }
4066
4153
  },
@@ -4147,7 +4234,7 @@
4147
4234
  }
4148
4235
  ],
4149
4236
  "source": {
4150
- "module": "./src/ui.text-header/index.vue",
4237
+ "module": "./src/ui.text-header/UHeader.vue",
4151
4238
  "symbol": "default"
4152
4239
  }
4153
4240
  },
@@ -4262,7 +4349,7 @@
4262
4349
  }
4263
4350
  ],
4264
4351
  "source": {
4265
- "module": "./src/ui.image-icon/index.vue",
4352
+ "module": "./src/ui.image-icon/UIcon.vue",
4266
4353
  "symbol": "default"
4267
4354
  }
4268
4355
  },
@@ -4535,7 +4622,7 @@
4535
4622
  }
4536
4623
  ],
4537
4624
  "source": {
4538
- "module": "./src/ui.form-input/index.vue",
4625
+ "module": "./src/ui.form-input/UInput.vue",
4539
4626
  "symbol": "default"
4540
4627
  }
4541
4628
  },
@@ -4688,251 +4775,20 @@
4688
4775
  ],
4689
4776
  "slots": [
4690
4777
  {
4691
- "name": "top",
4692
- "description": "Use it to add something at the top of the file block."
4693
- },
4694
- {
4695
- "name": "left",
4696
- "description": "Use it to add something before the placeholder."
4697
- },
4698
- {
4699
- "name": "bottom",
4700
- "description": "Use it to add something at the bottom of the file block."
4701
- }
4702
- ],
4703
- "source": {
4704
- "module": "./src/ui.form-input-file/index.vue",
4705
- "symbol": "default"
4706
- }
4707
- },
4708
- {
4709
- "name": "UInputMoney",
4710
- "description": "",
4711
- "attributes": [
4712
- {
4713
- "name": "modelValue",
4714
- "description": "Input value.",
4715
- "value": {
4716
- "kind": "expression",
4717
- "type": "string|number"
4718
- },
4719
- "default": "\"\""
4720
- },
4721
- {
4722
- "name": "label",
4723
- "description": "Input label.",
4724
- "value": {
4725
- "kind": "expression",
4726
- "type": "string"
4727
- },
4728
- "default": "\"\""
4729
- },
4730
- {
4731
- "name": "labelAlign",
4732
- "description": "Set label placement related from the default slot.",
4733
- "value": {
4734
- "kind": "expression",
4735
- "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
4736
- },
4737
- "default": "topInside"
4738
- },
4739
- {
4740
- "name": "symbol",
4741
- "description": "Currency symbol.",
4742
- "value": {
4743
- "kind": "expression",
4744
- "type": "string"
4745
- },
4746
- "default": "$"
4747
- },
4748
- {
4749
- "name": "placeholder",
4750
- "description": "Input placeholder.",
4751
- "value": {
4752
- "kind": "expression",
4753
- "type": "string"
4754
- },
4755
- "default": "\"\""
4756
- },
4757
- {
4758
- "name": "description",
4759
- "description": "Input description.",
4760
- "value": {
4761
- "kind": "expression",
4762
- "type": "string"
4763
- },
4764
- "default": "\"\""
4765
- },
4766
- {
4767
- "name": "error",
4768
- "description": "Error message.",
4769
- "value": {
4770
- "kind": "expression",
4771
- "type": "string"
4772
- },
4773
- "default": "\"\""
4774
- },
4775
- {
4776
- "name": "size",
4777
- "description": "Input size.",
4778
- "value": {
4779
- "kind": "expression",
4780
- "type": "'sm' | 'md' | 'lg'"
4781
- },
4782
- "default": "md"
4783
- },
4784
- {
4785
- "name": "leftIcon",
4786
- "description": "Left side icon name.",
4787
- "value": {
4788
- "kind": "expression",
4789
- "type": "string"
4790
- },
4791
- "default": "\"\""
4792
- },
4793
- {
4794
- "name": "rightIcon",
4795
- "description": "Right side icon name.",
4796
- "value": {
4797
- "kind": "expression",
4798
- "type": "string"
4799
- },
4800
- "default": "\"\""
4801
- },
4802
- {
4803
- "name": "decimalScale",
4804
- "description": "Number of signs after the comma.",
4805
- "value": {
4806
- "kind": "expression",
4807
- "type": "number"
4808
- },
4809
- "default": "2"
4810
- },
4811
- {
4812
- "name": "decimalSeparator",
4813
- "description": "A symbol used to separate the integer part from the fractional part of a number.",
4814
- "value": {
4815
- "kind": "expression",
4816
- "type": "string"
4817
- },
4818
- "default": ","
4819
- },
4820
- {
4821
- "name": "thousandsSeparator",
4822
- "description": "A symbol used to separate the thousand parts of a number.",
4823
- "value": {
4824
- "kind": "expression",
4825
- "type": "string"
4826
- },
4827
- "default": " "
4828
- },
4829
- {
4830
- "name": "positiveOnly",
4831
- "description": "Allow only positive values.",
4832
- "value": {
4833
- "kind": "expression",
4834
- "type": "boolean"
4835
- },
4836
- "default": "false"
4837
- },
4838
- {
4839
- "name": "rawValuePrefix",
4840
- "description": "Show prefix in the raw value number.",
4841
- "value": {
4842
- "kind": "expression",
4843
- "type": "boolean"
4844
- },
4845
- "default": "false"
4846
- },
4847
- {
4848
- "name": "minus",
4849
- "description": "Show minus sign.",
4850
- "value": {
4851
- "kind": "expression",
4852
- "type": "boolean"
4853
- },
4854
- "default": "false"
4855
- },
4856
- {
4857
- "name": "readonly",
4858
- "description": "Set input read-only.",
4859
- "value": {
4860
- "kind": "expression",
4861
- "type": "boolean"
4862
- },
4863
- "default": "false"
4864
- },
4865
- {
4866
- "name": "disabled",
4867
- "description": "Disable the input.",
4868
- "value": {
4869
- "kind": "expression",
4870
- "type": "boolean"
4871
- },
4872
- "default": "false"
4873
- },
4874
- {
4875
- "name": "id",
4876
- "description": "@ignore: Unique element id.",
4877
- "value": {
4878
- "kind": "expression",
4879
- "type": "string"
4880
- },
4881
- "default": "() => getRandomId()"
4882
- },
4883
- {
4884
- "name": "config",
4885
- "description": "Component ui config object.",
4886
- "value": {
4887
- "kind": "expression",
4888
- "type": "object"
4889
- },
4890
- "default": "{}"
4891
- },
4892
- {
4893
- "name": "dataTest",
4894
- "description": "Data-test attribute for automated testing.",
4895
- "value": {
4896
- "kind": "expression",
4897
- "type": "string"
4898
- },
4899
- "default": "\"\""
4900
- }
4901
- ],
4902
- "events": [
4903
- {
4904
- "name": "update:modelValue"
4905
- },
4906
- {
4907
- "name": "keyup"
4908
- },
4909
- {
4910
- "name": "blur"
4911
- },
4912
- {
4913
- "name": "input"
4914
- }
4915
- ],
4916
- "slots": [
4917
- {
4918
- "name": "left",
4919
- "description": "Use it to add something left."
4920
- },
4921
- {
4922
- "name": "left-icon",
4923
- "description": "Use it to add icon before the text."
4778
+ "name": "top",
4779
+ "description": "Use it to add something at the top of the file block."
4924
4780
  },
4925
4781
  {
4926
- "name": "right-icon",
4927
- "description": "Use it to add icon after the text."
4782
+ "name": "left",
4783
+ "description": "Use it to add something before the placeholder."
4928
4784
  },
4929
4785
  {
4930
- "name": "right",
4931
- "description": "Use it to add something right."
4786
+ "name": "bottom",
4787
+ "description": "Use it to add something at the bottom of the file block."
4932
4788
  }
4933
4789
  ],
4934
4790
  "source": {
4935
- "module": "./src/ui.form-input-money/index.vue",
4791
+ "module": "./src/ui.form-input-file/UInputFile.vue",
4936
4792
  "symbol": "default"
4937
4793
  }
4938
4794
  },
@@ -5028,7 +4884,7 @@
5028
4884
  }
5029
4885
  ],
5030
4886
  "source": {
5031
- "module": "./src/ui.form-input-number/index.vue",
4887
+ "module": "./src/ui.form-input-number/UInputNumber.vue",
5032
4888
  "symbol": "default"
5033
4889
  }
5034
4890
  },
@@ -5192,7 +5048,7 @@
5192
5048
  }
5193
5049
  ],
5194
5050
  "source": {
5195
- "module": "./src/ui.form-input-rating/index.vue",
5051
+ "module": "./src/ui.form-input-rating/UInputRating.vue",
5196
5052
  "symbol": "default"
5197
5053
  }
5198
5054
  },
@@ -5414,7 +5270,7 @@
5414
5270
  }
5415
5271
  ],
5416
5272
  "source": {
5417
- "module": "./src/ui.form-input-search/index.vue",
5273
+ "module": "./src/ui.form-input-search/UInputSearch.vue",
5418
5274
  "symbol": "default"
5419
5275
  }
5420
5276
  },
@@ -5530,7 +5386,7 @@
5530
5386
  }
5531
5387
  ],
5532
5388
  "source": {
5533
- "module": "./src/ui.form-label/index.vue",
5389
+ "module": "./src/ui.form-label/ULabel.vue",
5534
5390
  "symbol": "default"
5535
5391
  }
5536
5392
  },
@@ -5764,7 +5620,7 @@
5764
5620
  }
5765
5621
  ],
5766
5622
  "source": {
5767
- "module": "./src/ui.button-link/index.vue",
5623
+ "module": "./src/ui.button-link/ULink.vue",
5768
5624
  "symbol": "default"
5769
5625
  }
5770
5626
  },
@@ -5807,7 +5663,7 @@
5807
5663
  }
5808
5664
  ],
5809
5665
  "source": {
5810
- "module": "./src/ui.loader/index.vue",
5666
+ "module": "./src/ui.loader/ULoader.vue",
5811
5667
  "symbol": "default"
5812
5668
  }
5813
5669
  },
@@ -5834,7 +5690,7 @@
5834
5690
  }
5835
5691
  ],
5836
5692
  "source": {
5837
- "module": "./src/ui.loader-rendering/index.vue",
5693
+ "module": "./src/ui.loader-rendering/ULoaderRendering.vue",
5838
5694
  "symbol": "default"
5839
5695
  }
5840
5696
  },
@@ -5862,7 +5718,7 @@
5862
5718
  }
5863
5719
  ],
5864
5720
  "source": {
5865
- "module": "./src/ui.loader-top/index.vue",
5721
+ "module": "./src/ui.loader-top/ULoaderTop.vue",
5866
5722
  "symbol": "default"
5867
5723
  }
5868
5724
  },
@@ -6030,89 +5886,342 @@
6030
5886
  "description": "Use it to add something before the left part of the header."
6031
5887
  },
6032
5888
  {
6033
- "name": "header-left",
6034
- "description": "Use it to add something to the left part of the header.."
5889
+ "name": "header-left",
5890
+ "description": "Use it to add something to the left part of the header.."
5891
+ },
5892
+ {
5893
+ "name": "header-left-after",
5894
+ "description": "Use it to add something after the left part of the header."
5895
+ },
5896
+ {
5897
+ "name": "header-right",
5898
+ "description": "Use it to add something to the right part of the header."
5899
+ },
5900
+ {
5901
+ "name": "close-button",
5902
+ "scoped": true,
5903
+ "description": "Use it to add something instead of the close button.",
5904
+ "bindings": [
5905
+ {
5906
+ "type": "string",
5907
+ "name": "icon-name"
5908
+ }
5909
+ ]
5910
+ },
5911
+ {
5912
+ "name": "default",
5913
+ "description": "Use it to add something to the modal body."
5914
+ },
5915
+ {
5916
+ "name": "footer-left",
5917
+ "description": "Use it to add something to the left part of the footer."
5918
+ },
5919
+ {
5920
+ "name": "footer-right",
5921
+ "description": "Use it to add something to the right part of the footer."
5922
+ }
5923
+ ],
5924
+ "source": {
5925
+ "module": "./src/ui.container-modal/UModal.vue",
5926
+ "symbol": "default"
5927
+ }
5928
+ },
5929
+ {
5930
+ "name": "UModalConfirm",
5931
+ "description": "",
5932
+ "attributes": [
5933
+ {
5934
+ "name": "modelValue",
5935
+ "description": "Change modal state (shown / hidden).",
5936
+ "value": {
5937
+ "kind": "expression",
5938
+ "type": "boolean"
5939
+ },
5940
+ "default": "false"
5941
+ },
5942
+ {
5943
+ "name": "title",
5944
+ "description": "Modal title.",
5945
+ "value": {
5946
+ "kind": "expression",
5947
+ "type": "string"
5948
+ },
5949
+ "default": "\"\""
5950
+ },
5951
+ {
5952
+ "name": "confirmLabel",
5953
+ "description": "Confirm button label.",
5954
+ "value": {
5955
+ "kind": "expression",
5956
+ "type": "string"
5957
+ },
5958
+ "default": "\"\""
5959
+ },
5960
+ {
5961
+ "name": "confirmColor",
5962
+ "description": "Confirm button color.",
5963
+ "value": {
5964
+ "kind": "expression",
5965
+ "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose'"
5966
+ },
5967
+ "default": "brand"
5968
+ },
5969
+ {
5970
+ "name": "confirmDisabled",
5971
+ "description": "Set the disabled accept-button.",
5972
+ "value": {
5973
+ "kind": "expression",
5974
+ "type": "boolean"
5975
+ },
5976
+ "default": "false"
5977
+ },
5978
+ {
5979
+ "name": "cancelButton",
5980
+ "description": "Show cancel button.",
5981
+ "value": {
5982
+ "kind": "expression",
5983
+ "type": "boolean"
5984
+ },
5985
+ "default": "true"
5986
+ },
5987
+ {
5988
+ "name": "width",
5989
+ "description": "Modal width.",
5990
+ "value": {
5991
+ "kind": "expression",
5992
+ "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl'"
5993
+ },
5994
+ "default": "sm"
5995
+ },
5996
+ {
5997
+ "name": "config",
5998
+ "description": "Component ui config object.",
5999
+ "value": {
6000
+ "kind": "expression",
6001
+ "type": "object"
6002
+ },
6003
+ "default": "{}"
6004
+ },
6005
+ {
6006
+ "name": "dataTest",
6007
+ "description": "Data-test attribute for automated testing.",
6008
+ "value": {
6009
+ "kind": "expression",
6010
+ "type": "string"
6011
+ },
6012
+ "default": "\"\""
6013
+ }
6014
+ ],
6015
+ "events": [
6016
+ {
6017
+ "name": "update:modelValue",
6018
+ "description": "Triggers when the modal is toggled.",
6019
+ "properties": [
6020
+ {
6021
+ "type": [
6022
+ "Boolean"
6023
+ ],
6024
+ "name": "value"
6025
+ }
6026
+ ]
6027
+ },
6028
+ {
6029
+ "name": "confirm",
6030
+ "description": "Triggers when the action is confirmed."
6031
+ },
6032
+ {
6033
+ "name": "close",
6034
+ "description": "Triggers when the action is declined or modal is closed."
6035
+ }
6036
+ ],
6037
+ "slots": [
6038
+ {
6039
+ "name": "header-left-before"
6040
+ },
6041
+ {
6042
+ "name": "header-left"
6043
+ },
6044
+ {
6045
+ "name": "header-left-after"
6046
+ },
6047
+ {
6048
+ "name": "header-right"
6049
+ },
6050
+ {
6051
+ "name": "default"
6052
+ },
6053
+ {
6054
+ "name": "footer-left"
6055
+ },
6056
+ {
6057
+ "name": "footer-right"
6058
+ }
6059
+ ],
6060
+ "source": {
6061
+ "module": "./src/ui.container-modal-confirm/UModalConfirm.vue",
6062
+ "symbol": "default"
6063
+ }
6064
+ },
6065
+ {
6066
+ "name": "UMoney",
6067
+ "description": "",
6068
+ "attributes": [
6069
+ {
6070
+ "name": "modelValue",
6071
+ "description": "Input value.",
6072
+ "value": {
6073
+ "kind": "expression",
6074
+ "type": "string|number"
6075
+ },
6076
+ "default": "\"\""
6077
+ },
6078
+ {
6079
+ "name": "label",
6080
+ "description": "Input label.",
6081
+ "value": {
6082
+ "kind": "expression",
6083
+ "type": "string"
6084
+ },
6085
+ "default": "\"\""
6086
+ },
6087
+ {
6088
+ "name": "labelAlign",
6089
+ "description": "Set label placement related from the default slot.",
6090
+ "value": {
6091
+ "kind": "expression",
6092
+ "type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
6093
+ },
6094
+ "default": "topInside"
6095
+ },
6096
+ {
6097
+ "name": "symbol",
6098
+ "description": "Currency symbol.",
6099
+ "value": {
6100
+ "kind": "expression",
6101
+ "type": "string"
6102
+ },
6103
+ "default": "$"
6104
+ },
6105
+ {
6106
+ "name": "placeholder",
6107
+ "description": "Input placeholder.",
6108
+ "value": {
6109
+ "kind": "expression",
6110
+ "type": "string"
6111
+ },
6112
+ "default": "\"\""
6113
+ },
6114
+ {
6115
+ "name": "description",
6116
+ "description": "Input description.",
6117
+ "value": {
6118
+ "kind": "expression",
6119
+ "type": "string"
6120
+ },
6121
+ "default": "\"\""
6122
+ },
6123
+ {
6124
+ "name": "error",
6125
+ "description": "Error message.",
6126
+ "value": {
6127
+ "kind": "expression",
6128
+ "type": "string"
6129
+ },
6130
+ "default": "\"\""
6131
+ },
6132
+ {
6133
+ "name": "size",
6134
+ "description": "Input size.",
6135
+ "value": {
6136
+ "kind": "expression",
6137
+ "type": "'sm' | 'md' | 'lg'"
6138
+ },
6139
+ "default": "md"
6035
6140
  },
6036
6141
  {
6037
- "name": "header-left-after",
6038
- "description": "Use it to add something after the left part of the header."
6142
+ "name": "leftIcon",
6143
+ "description": "Left side icon name.",
6144
+ "value": {
6145
+ "kind": "expression",
6146
+ "type": "string"
6147
+ },
6148
+ "default": "\"\""
6039
6149
  },
6040
6150
  {
6041
- "name": "header-right",
6042
- "description": "Use it to add something to the right part of the header."
6151
+ "name": "rightIcon",
6152
+ "description": "Right side icon name.",
6153
+ "value": {
6154
+ "kind": "expression",
6155
+ "type": "string"
6156
+ },
6157
+ "default": "\"\""
6043
6158
  },
6044
6159
  {
6045
- "name": "close-button",
6046
- "scoped": true,
6047
- "description": "Use it to add something instead of the close button.",
6048
- "bindings": [
6049
- {
6050
- "type": "string",
6051
- "name": "icon-name"
6052
- }
6053
- ]
6160
+ "name": "minFractionDigits",
6161
+ "description": "Minimal number of signs after the decimal separator (fractional part of a number).",
6162
+ "value": {
6163
+ "kind": "expression",
6164
+ "type": "number"
6165
+ },
6166
+ "default": "0"
6054
6167
  },
6055
6168
  {
6056
- "name": "default",
6057
- "description": "Use it to add something to the modal body."
6169
+ "name": "maxFractionDigits",
6170
+ "description": "Maximal number of signs after the decimal separator (fractional part of a number).",
6171
+ "value": {
6172
+ "kind": "expression",
6173
+ "type": "number"
6174
+ },
6175
+ "default": "2"
6058
6176
  },
6059
6177
  {
6060
- "name": "footer-left",
6061
- "description": "Use it to add something to the left part of the footer."
6178
+ "name": "decimalSeparator",
6179
+ "description": "A symbol used to separate the integer part from the fractional part of a number.",
6180
+ "value": {
6181
+ "kind": "expression",
6182
+ "type": "string"
6183
+ },
6184
+ "default": ","
6062
6185
  },
6063
6186
  {
6064
- "name": "footer-right",
6065
- "description": "Use it to add something to the right part of the footer."
6066
- }
6067
- ],
6068
- "source": {
6069
- "module": "./src/ui.container-modal/index.vue",
6070
- "symbol": "default"
6071
- }
6072
- },
6073
- {
6074
- "name": "UModalConfirm",
6075
- "description": "",
6076
- "attributes": [
6077
- {
6078
- "name": "modelValue",
6079
- "description": "Change modal state (shown / hidden).",
6187
+ "name": "thousandsSeparator",
6188
+ "description": "A symbol used to separate the thousand parts of a number.",
6080
6189
  "value": {
6081
6190
  "kind": "expression",
6082
- "type": "boolean"
6191
+ "type": "string"
6083
6192
  },
6084
- "default": "false"
6193
+ "default": " "
6085
6194
  },
6086
6195
  {
6087
- "name": "title",
6088
- "description": "Modal title.",
6196
+ "name": "positiveOnly",
6197
+ "description": "Allow only positive values.",
6089
6198
  "value": {
6090
6199
  "kind": "expression",
6091
- "type": "string"
6200
+ "type": "boolean"
6092
6201
  },
6093
- "default": "\"\""
6202
+ "default": "false"
6094
6203
  },
6095
6204
  {
6096
- "name": "confirmLabel",
6097
- "description": "Confirm button label.",
6205
+ "name": "rawValuePrefix",
6206
+ "description": "Show prefix in the raw value number.",
6098
6207
  "value": {
6099
6208
  "kind": "expression",
6100
- "type": "string"
6209
+ "type": "boolean"
6101
6210
  },
6102
- "default": "\"\""
6211
+ "default": "false"
6103
6212
  },
6104
6213
  {
6105
- "name": "confirmColor",
6106
- "description": "Confirm button color.",
6214
+ "name": "minus",
6215
+ "description": "Show minus sign.",
6107
6216
  "value": {
6108
6217
  "kind": "expression",
6109
- "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose'"
6218
+ "type": "boolean"
6110
6219
  },
6111
- "default": "brand"
6220
+ "default": "false"
6112
6221
  },
6113
6222
  {
6114
- "name": "confirmDisabled",
6115
- "description": "Set the disabled accept-button.",
6223
+ "name": "readonly",
6224
+ "description": "Set input read-only.",
6116
6225
  "value": {
6117
6226
  "kind": "expression",
6118
6227
  "type": "boolean"
@@ -6120,22 +6229,22 @@
6120
6229
  "default": "false"
6121
6230
  },
6122
6231
  {
6123
- "name": "cancelButton",
6124
- "description": "Show cancel button.",
6232
+ "name": "disabled",
6233
+ "description": "Disable the input.",
6125
6234
  "value": {
6126
6235
  "kind": "expression",
6127
6236
  "type": "boolean"
6128
6237
  },
6129
- "default": "true"
6238
+ "default": "false"
6130
6239
  },
6131
6240
  {
6132
- "name": "width",
6133
- "description": "Modal width.",
6241
+ "name": "id",
6242
+ "description": "@ignore: Unique element id.",
6134
6243
  "value": {
6135
6244
  "kind": "expression",
6136
- "type": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl'"
6245
+ "type": "string"
6137
6246
  },
6138
- "default": "sm"
6247
+ "default": "() => getRandomId()"
6139
6248
  },
6140
6249
  {
6141
6250
  "name": "config",
@@ -6158,51 +6267,38 @@
6158
6267
  ],
6159
6268
  "events": [
6160
6269
  {
6161
- "name": "update:modelValue",
6162
- "description": "Triggers when the modal is toggled.",
6163
- "properties": [
6164
- {
6165
- "type": [
6166
- "Boolean"
6167
- ],
6168
- "name": "value"
6169
- }
6170
- ]
6270
+ "name": "update:modelValue"
6171
6271
  },
6172
6272
  {
6173
- "name": "confirm",
6174
- "description": "Triggers when the action is confirmed."
6273
+ "name": "keyup"
6175
6274
  },
6176
6275
  {
6177
- "name": "close",
6178
- "description": "Triggers when the action is declined or modal is closed."
6276
+ "name": "blur"
6277
+ },
6278
+ {
6279
+ "name": "input"
6179
6280
  }
6180
6281
  ],
6181
6282
  "slots": [
6182
6283
  {
6183
- "name": "header-left-before"
6184
- },
6185
- {
6186
- "name": "header-left"
6187
- },
6188
- {
6189
- "name": "header-left-after"
6190
- },
6191
- {
6192
- "name": "header-right"
6284
+ "name": "left",
6285
+ "description": "Use it to add something left."
6193
6286
  },
6194
6287
  {
6195
- "name": "default"
6288
+ "name": "left-icon",
6289
+ "description": "Use it to add icon before the text."
6196
6290
  },
6197
6291
  {
6198
- "name": "footer-left"
6292
+ "name": "right-icon",
6293
+ "description": "Use it to add icon after the text."
6199
6294
  },
6200
6295
  {
6201
- "name": "footer-right"
6296
+ "name": "right",
6297
+ "description": "Use it to add something right."
6202
6298
  }
6203
6299
  ],
6204
6300
  "source": {
6205
- "module": "./src/ui.container-modal-confirm/index.vue",
6301
+ "module": "./src/ui.form-input-money/UMoney.vue",
6206
6302
  "symbol": "default"
6207
6303
  }
6208
6304
  },
@@ -6348,7 +6444,7 @@
6348
6444
  }
6349
6445
  ],
6350
6446
  "source": {
6351
- "module": "./src/ui.text-money/index.vue",
6447
+ "module": "./src/ui.text-money/UMoney.vue",
6352
6448
  "symbol": "default"
6353
6449
  }
6354
6450
  },
@@ -6394,7 +6490,7 @@
6394
6490
  }
6395
6491
  ],
6396
6492
  "source": {
6397
- "module": "./src/ui.text-notify/index.vue",
6493
+ "module": "./src/ui.text-notify/UNotify.vue",
6398
6494
  "symbol": "default"
6399
6495
  }
6400
6496
  },
@@ -6549,7 +6645,7 @@
6549
6645
  }
6550
6646
  ],
6551
6647
  "source": {
6552
- "module": "./src/ui.container-page/index.vue",
6648
+ "module": "./src/ui.container-page/UPage.vue",
6553
6649
  "symbol": "default"
6554
6650
  }
6555
6651
  },
@@ -6751,7 +6847,7 @@
6751
6847
  }
6752
6848
  ],
6753
6849
  "source": {
6754
- "module": "./src/ui.navigation-pagination/index.vue",
6850
+ "module": "./src/ui.navigation-pagination/UPagination.vue",
6755
6851
  "symbol": "default"
6756
6852
  }
6757
6853
  },
@@ -6878,7 +6974,7 @@
6878
6974
  }
6879
6975
  ],
6880
6976
  "source": {
6881
- "module": "./src/ui.navigation-progress/index.vue",
6977
+ "module": "./src/ui.navigation-progress/UProgress.vue",
6882
6978
  "symbol": "default"
6883
6979
  }
6884
6980
  },
@@ -7033,7 +7129,7 @@
7033
7129
  }
7034
7130
  ],
7035
7131
  "source": {
7036
- "module": "./src/ui.form-radio/index.vue",
7132
+ "module": "./src/ui.form-radio/URadio.vue",
7037
7133
  "symbol": "default"
7038
7134
  }
7039
7135
  },
@@ -7161,7 +7257,7 @@
7161
7257
  }
7162
7258
  ],
7163
7259
  "source": {
7164
- "module": "./src/ui.form-radio-group/index.vue",
7260
+ "module": "./src/ui.form-radio-group/URadioGroup.vue",
7165
7261
  "symbol": "default"
7166
7262
  }
7167
7263
  },
@@ -7249,7 +7345,7 @@
7249
7345
  }
7250
7346
  ],
7251
7347
  "source": {
7252
- "module": "./src/ui.container-row/index.vue",
7348
+ "module": "./src/ui.container-row/URow.vue",
7253
7349
  "symbol": "default"
7254
7350
  }
7255
7351
  },
@@ -7731,7 +7827,7 @@
7731
7827
  }
7732
7828
  ],
7733
7829
  "source": {
7734
- "module": "./src/ui.form-select/index.vue",
7830
+ "module": "./src/ui.form-select/USelect.vue",
7735
7831
  "symbol": "default"
7736
7832
  }
7737
7833
  },
@@ -7863,7 +7959,7 @@
7863
7959
  }
7864
7960
  ],
7865
7961
  "source": {
7866
- "module": "./src/ui.form-switch/index.vue",
7962
+ "module": "./src/ui.form-switch/USwitch.vue",
7867
7963
  "symbol": "default"
7868
7964
  }
7869
7965
  },
@@ -7924,7 +8020,7 @@
7924
8020
  }
7925
8021
  ],
7926
8022
  "source": {
7927
- "module": "./src/ui.navigation-tab/index.vue",
8023
+ "module": "./src/ui.navigation-tab/UTab.vue",
7928
8024
  "symbol": "default"
7929
8025
  }
7930
8026
  },
@@ -8142,7 +8238,7 @@
8142
8238
  }
8143
8239
  ],
8144
8240
  "source": {
8145
- "module": "./src/ui.data-table/index.vue",
8241
+ "module": "./src/ui.data-table/UTable.vue",
8146
8242
  "symbol": "default"
8147
8243
  }
8148
8244
  },
@@ -8226,7 +8322,7 @@
8226
8322
  }
8227
8323
  ],
8228
8324
  "source": {
8229
- "module": "./src/ui.navigation-tabs/index.vue",
8325
+ "module": "./src/ui.navigation-tabs/UTabs.vue",
8230
8326
  "symbol": "default"
8231
8327
  }
8232
8328
  },
@@ -8296,7 +8392,7 @@
8296
8392
  }
8297
8393
  ],
8298
8394
  "source": {
8299
- "module": "./src/ui.text-block/index.vue",
8395
+ "module": "./src/ui.text-block/UText.vue",
8300
8396
  "symbol": "default"
8301
8397
  }
8302
8398
  },
@@ -8494,7 +8590,7 @@
8494
8590
  }
8495
8591
  ],
8496
8592
  "source": {
8497
- "module": "./src/ui.form-textarea/index.vue",
8593
+ "module": "./src/ui.form-textarea/UTextarea.vue",
8498
8594
  "symbol": "default"
8499
8595
  }
8500
8596
  },
@@ -8668,7 +8764,7 @@
8668
8764
  }
8669
8765
  ],
8670
8766
  "source": {
8671
- "module": "./src/ui.button-toggle/index.vue",
8767
+ "module": "./src/ui.button-toggle/UToggle.vue",
8672
8768
  "symbol": "default"
8673
8769
  }
8674
8770
  },
@@ -8776,102 +8872,7 @@
8776
8872
  }
8777
8873
  ],
8778
8874
  "source": {
8779
- "module": "./src/ui.button-toggle-item/index.vue",
8780
- "symbol": "default"
8781
- }
8782
- },
8783
- {
8784
- "name": "YearView",
8785
- "description": "",
8786
- "attributes": [
8787
- {
8788
- "name": "selectedDate",
8789
- "required": true,
8790
- "value": {
8791
- "kind": "expression",
8792
- "type": "date|null"
8793
- }
8794
- },
8795
- {
8796
- "name": "selectedDateTo",
8797
- "value": {
8798
- "kind": "expression",
8799
- "type": "date|null"
8800
- },
8801
- "default": "undefined"
8802
- },
8803
- {
8804
- "name": "activeDate",
8805
- "required": true,
8806
- "value": {
8807
- "kind": "expression",
8808
- "type": "date|null"
8809
- }
8810
- },
8811
- {
8812
- "name": "activeMonth",
8813
- "required": true,
8814
- "value": {
8815
- "kind": "expression",
8816
- "type": "date|null"
8817
- }
8818
- },
8819
- {
8820
- "name": "locale",
8821
- "required": true,
8822
- "value": {
8823
- "kind": "expression",
8824
- "type": "object"
8825
- }
8826
- },
8827
- {
8828
- "name": "dateFormat",
8829
- "value": {
8830
- "kind": "expression",
8831
- "type": "string"
8832
- },
8833
- "default": "undefined"
8834
- },
8835
- {
8836
- "name": "range",
8837
- "value": {
8838
- "kind": "expression",
8839
- "type": "boolean"
8840
- },
8841
- "default": "false"
8842
- },
8843
- {
8844
- "name": "maxDate",
8845
- "value": {
8846
- "kind": "expression",
8847
- "type": "date|string"
8848
- },
8849
- "default": "undefined"
8850
- },
8851
- {
8852
- "name": "minDate",
8853
- "value": {
8854
- "kind": "expression",
8855
- "type": "date|string"
8856
- },
8857
- "default": "undefined"
8858
- },
8859
- {
8860
- "name": "config",
8861
- "value": {
8862
- "kind": "expression",
8863
- "type": "object"
8864
- },
8865
- "default": "{}"
8866
- }
8867
- ],
8868
- "events": [
8869
- {
8870
- "name": "input"
8871
- }
8872
- ],
8873
- "source": {
8874
- "module": "./src/ui.form-calendar/components/YearView.vue",
8875
+ "module": "./src/ui.button-toggle-item/UToggleItem.vue",
8875
8876
  "symbol": "default"
8876
8877
  }
8877
8878
  }