@vc-shell/framework 1.0.53 → 1.0.54

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 (354) hide show
  1. package/core/composables/index.ts +0 -1
  2. package/core/composables/useApiClient/index.ts +1 -4
  3. package/core/composables/useAsync/index.ts +2 -6
  4. package/core/composables/useAutosave/index.ts +1 -3
  5. package/core/composables/useFunctions/debounce.ts +1 -4
  6. package/core/composables/useFunctions/delay.ts +1 -4
  7. package/core/composables/useFunctions/once.ts +1 -3
  8. package/core/composables/useFunctions/throttle.ts +1 -4
  9. package/core/composables/useI18n/index.ts +3 -24
  10. package/core/composables/useLoading/index.ts +1 -3
  11. package/core/composables/useNotifications/index.ts +5 -12
  12. package/core/composables/useSettings/index.ts +2 -3
  13. package/core/composables/useUser/index.ts +25 -64
  14. package/core/plugins/i18n/index.ts +8 -0
  15. package/core/plugins/index.ts +3 -1
  16. package/core/plugins/modularity/index.ts +32 -0
  17. package/core/plugins/moment/humanize.ts +1 -4
  18. package/core/plugins/validation/index.ts +11 -1
  19. package/core/plugins/validation/rules.ts +48 -170
  20. package/core/types/index.ts +3 -5
  21. package/dist/core/composables/index.d.ts +0 -1
  22. package/dist/core/composables/index.d.ts.map +1 -1
  23. package/dist/core/composables/useApiClient/index.d.ts.map +1 -1
  24. package/dist/core/composables/useAsync/index.d.ts.map +1 -1
  25. package/dist/core/composables/useAutosave/index.d.ts.map +1 -1
  26. package/dist/core/composables/useFunctions/debounce.d.ts.map +1 -1
  27. package/dist/core/composables/useFunctions/delay.d.ts.map +1 -1
  28. package/dist/core/composables/useFunctions/once.d.ts.map +1 -1
  29. package/dist/core/composables/useFunctions/throttle.d.ts.map +1 -1
  30. package/dist/core/composables/useI18n/index.d.ts +2 -4
  31. package/dist/core/composables/useI18n/index.d.ts.map +1 -1
  32. package/dist/core/composables/useLoading/index.d.ts.map +1 -1
  33. package/dist/core/composables/useNotifications/index.d.ts.map +1 -1
  34. package/dist/core/composables/useSettings/index.d.ts.map +1 -1
  35. package/dist/core/composables/useUser/index.d.ts.map +1 -1
  36. package/dist/core/plugins/i18n/index.d.ts +3 -0
  37. package/dist/core/plugins/i18n/index.d.ts.map +1 -0
  38. package/dist/core/plugins/index.d.ts +3 -1
  39. package/dist/core/plugins/index.d.ts.map +1 -1
  40. package/dist/core/plugins/modularity/index.d.ts +8 -0
  41. package/dist/core/plugins/modularity/index.d.ts.map +1 -0
  42. package/dist/core/plugins/moment/humanize.d.ts.map +1 -1
  43. package/dist/core/plugins/validation/index.d.ts +3 -1
  44. package/dist/core/plugins/validation/index.d.ts.map +1 -1
  45. package/dist/core/plugins/validation/rules.d.ts +32 -11
  46. package/dist/core/plugins/validation/rules.d.ts.map +1 -1
  47. package/dist/core/types/index.d.ts +0 -1
  48. package/dist/core/types/index.d.ts.map +1 -1
  49. package/dist/framework.esm.js +42553 -0
  50. package/dist/framework.js +77 -75
  51. package/dist/index.d.ts.map +1 -1
  52. package/dist/shared/app-switcher/composables/useAppSwitcher/index.d.ts.map +1 -1
  53. package/dist/shared/app-switcher/index.d.ts +2 -3
  54. package/dist/shared/app-switcher/index.d.ts.map +1 -1
  55. package/dist/shared/assets/components/index.d.ts +1 -1
  56. package/dist/shared/assets/components/index.d.ts.map +1 -1
  57. package/dist/shared/assets/index.d.ts +2 -3
  58. package/dist/shared/assets/index.d.ts.map +1 -1
  59. package/dist/shared/blade-navigation/composables/index.d.ts +1 -1
  60. package/dist/shared/blade-navigation/composables/index.d.ts.map +1 -1
  61. package/dist/shared/blade-navigation/composables/useBladeNavigation/index.d.ts +1 -1
  62. package/dist/shared/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
  63. package/dist/shared/blade-navigation/index.d.ts +2 -3
  64. package/dist/shared/blade-navigation/index.d.ts.map +1 -1
  65. package/dist/shared/index.d.ts +4 -1
  66. package/dist/shared/index.d.ts.map +1 -1
  67. package/dist/style.css +1 -1
  68. package/dist/tsconfig.tsbuildinfo +1 -1
  69. package/dist/ui/components/atoms/vc-badge/index.d.ts +2 -2
  70. package/dist/ui/components/atoms/vc-badge/index.d.ts.map +1 -1
  71. package/dist/ui/components/atoms/vc-badge/vc-badge-model.d.ts +20 -15
  72. package/dist/ui/components/atoms/vc-badge/vc-badge-model.d.ts.map +1 -1
  73. package/dist/ui/components/atoms/vc-button/index.d.ts +2 -2
  74. package/dist/ui/components/atoms/vc-button/index.d.ts.map +1 -1
  75. package/dist/ui/components/atoms/vc-button/vc-button-model.d.ts +30 -10
  76. package/dist/ui/components/atoms/vc-button/vc-button-model.d.ts.map +1 -1
  77. package/dist/ui/components/atoms/vc-card/index.d.ts +2 -2
  78. package/dist/ui/components/atoms/vc-card/index.d.ts.map +1 -1
  79. package/dist/ui/components/atoms/vc-card/vc-card-model.d.ts +28 -11
  80. package/dist/ui/components/atoms/vc-card/vc-card-model.d.ts.map +1 -1
  81. package/dist/ui/components/atoms/vc-checkbox/index.d.ts +2 -2
  82. package/dist/ui/components/atoms/vc-checkbox/index.d.ts.map +1 -1
  83. package/dist/ui/components/atoms/vc-checkbox/vc-checkbox-model.d.ts +25 -8
  84. package/dist/ui/components/atoms/vc-checkbox/vc-checkbox-model.d.ts.map +1 -1
  85. package/dist/ui/components/atoms/vc-col/index.d.ts.map +1 -1
  86. package/dist/ui/components/atoms/vc-col/vc-col-model.d.ts +8 -3
  87. package/dist/ui/components/atoms/vc-col/vc-col-model.d.ts.map +1 -1
  88. package/dist/ui/components/atoms/vc-container/index.d.ts +2 -2
  89. package/dist/ui/components/atoms/vc-container/index.d.ts.map +1 -1
  90. package/dist/ui/components/atoms/vc-container/vc-container-model.d.ts +20 -6
  91. package/dist/ui/components/atoms/vc-container/vc-container-model.d.ts.map +1 -1
  92. package/dist/ui/components/atoms/vc-hint/vc-hint-model.d.ts +5 -0
  93. package/dist/ui/components/atoms/vc-hint/vc-hint-model.d.ts.map +1 -0
  94. package/dist/ui/components/atoms/vc-icon/index.d.ts.map +1 -1
  95. package/dist/ui/components/atoms/vc-icon/vc-icon-model.d.ts +13 -5
  96. package/dist/ui/components/atoms/vc-icon/vc-icon-model.d.ts.map +1 -1
  97. package/dist/ui/components/atoms/vc-image/index.d.ts +2 -2
  98. package/dist/ui/components/atoms/vc-image/index.d.ts.map +1 -1
  99. package/dist/ui/components/atoms/vc-image/vc-image-model.d.ts +34 -11
  100. package/dist/ui/components/atoms/vc-image/vc-image-model.d.ts.map +1 -1
  101. package/dist/ui/components/atoms/vc-image/vc-image.stories.d.ts.map +1 -1
  102. package/dist/ui/components/atoms/vc-info-row/index.d.ts.map +1 -1
  103. package/dist/ui/components/atoms/vc-info-row/vc-info-row-model.d.ts +21 -7
  104. package/dist/ui/components/atoms/vc-info-row/vc-info-row-model.d.ts.map +1 -1
  105. package/dist/ui/components/atoms/vc-label/index.d.ts.map +1 -1
  106. package/dist/ui/components/atoms/vc-label/vc-label-model.d.ts +12 -4
  107. package/dist/ui/components/atoms/vc-label/vc-label-model.d.ts.map +1 -1
  108. package/dist/ui/components/atoms/vc-link/index.d.ts +2 -2
  109. package/dist/ui/components/atoms/vc-link/index.d.ts.map +1 -1
  110. package/dist/ui/components/atoms/vc-link/vc-link-model.d.ts +16 -5
  111. package/dist/ui/components/atoms/vc-link/vc-link-model.d.ts.map +1 -1
  112. package/dist/ui/components/atoms/vc-loading/index.d.ts.map +1 -1
  113. package/dist/ui/components/atoms/vc-loading/vc-loading-model.d.ts +8 -3
  114. package/dist/ui/components/atoms/vc-loading/vc-loading-model.d.ts.map +1 -1
  115. package/dist/ui/components/atoms/vc-progress/index.d.ts.map +1 -1
  116. package/dist/ui/components/atoms/vc-progress/vc-progress-model.d.ts +13 -5
  117. package/dist/ui/components/atoms/vc-progress/vc-progress-model.d.ts.map +1 -1
  118. package/dist/ui/components/atoms/vc-status/index.d.ts.map +1 -1
  119. package/dist/ui/components/atoms/vc-status/vc-status-model.d.ts +17 -6
  120. package/dist/ui/components/atoms/vc-status/vc-status-model.d.ts.map +1 -1
  121. package/dist/ui/components/atoms/vc-status-icon/index.d.ts.map +1 -1
  122. package/dist/ui/components/atoms/vc-status-icon/vc-status-icon-model.d.ts +8 -3
  123. package/dist/ui/components/atoms/vc-status-icon/vc-status-icon-model.d.ts.map +1 -1
  124. package/dist/ui/components/atoms/vc-switch/index.d.ts +2 -2
  125. package/dist/ui/components/atoms/vc-switch/index.d.ts.map +1 -1
  126. package/dist/ui/components/atoms/vc-switch/vc-switch-model.d.ts +25 -8
  127. package/dist/ui/components/atoms/vc-switch/vc-switch-model.d.ts.map +1 -1
  128. package/dist/ui/components/atoms/vc-widget/index.d.ts +2 -2
  129. package/dist/ui/components/atoms/vc-widget/index.d.ts.map +1 -1
  130. package/dist/ui/components/atoms/vc-widget/vc-widget-model.d.ts +15 -7
  131. package/dist/ui/components/atoms/vc-widget/vc-widget-model.d.ts.map +1 -1
  132. package/dist/ui/components/index.d.ts.map +1 -1
  133. package/dist/ui/components/molecules/vc-breadcrumbs/index.d.ts.map +1 -1
  134. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs-model.d.ts +15 -10
  135. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs-model.d.ts.map +1 -1
  136. package/dist/ui/components/molecules/vc-editor/index.d.ts +2 -2
  137. package/dist/ui/components/molecules/vc-editor/index.d.ts.map +1 -1
  138. package/dist/ui/components/molecules/vc-editor/vc-editor-model.d.ts +28 -11
  139. package/dist/ui/components/molecules/vc-editor/vc-editor-model.d.ts.map +1 -1
  140. package/dist/ui/components/molecules/vc-file-upload/index.d.ts +2 -2
  141. package/dist/ui/components/molecules/vc-file-upload/index.d.ts.map +1 -1
  142. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload-model.d.ts +30 -10
  143. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload-model.d.ts.map +1 -1
  144. package/dist/ui/components/molecules/vc-form/vc-form-model.d.ts +5 -0
  145. package/dist/ui/components/molecules/vc-form/vc-form-model.d.ts.map +1 -0
  146. package/dist/ui/components/molecules/vc-input/index.d.ts +2 -2
  147. package/dist/ui/components/molecules/vc-input/index.d.ts.map +1 -1
  148. package/dist/ui/components/molecules/vc-input/vc-input-model.d.ts +48 -25
  149. package/dist/ui/components/molecules/vc-input/vc-input-model.d.ts.map +1 -1
  150. package/dist/ui/components/molecules/vc-input-currency/index.d.ts +2 -2
  151. package/dist/ui/components/molecules/vc-input-currency/index.d.ts.map +1 -1
  152. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency-model.d.ts +36 -28
  153. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency-model.d.ts.map +1 -1
  154. package/dist/ui/components/molecules/vc-notification/index.d.ts +2 -2
  155. package/dist/ui/components/molecules/vc-notification/index.d.ts.map +1 -1
  156. package/dist/ui/components/molecules/vc-notification/vc-notification-model.d.ts +13 -5
  157. package/dist/ui/components/molecules/vc-notification/vc-notification-model.d.ts.map +1 -1
  158. package/dist/ui/components/molecules/vc-pagination/index.d.ts +2 -2
  159. package/dist/ui/components/molecules/vc-pagination/index.d.ts.map +1 -1
  160. package/dist/ui/components/molecules/vc-pagination/vc-pagination-model.d.ts +20 -6
  161. package/dist/ui/components/molecules/vc-pagination/vc-pagination-model.d.ts.map +1 -1
  162. package/dist/ui/components/molecules/vc-rating/index.d.ts.map +1 -1
  163. package/dist/ui/components/molecules/vc-rating/vc-rating-model.d.ts +17 -9
  164. package/dist/ui/components/molecules/vc-rating/vc-rating-model.d.ts.map +1 -1
  165. package/dist/ui/components/molecules/vc-select/index.d.ts +2 -2
  166. package/dist/ui/components/molecules/vc-select/index.d.ts.map +1 -1
  167. package/dist/ui/components/molecules/vc-select/vc-select-model.d.ts +67 -32
  168. package/dist/ui/components/molecules/vc-select/vc-select-model.d.ts.map +1 -1
  169. package/dist/ui/components/molecules/vc-slider/index.d.ts.map +1 -1
  170. package/dist/ui/components/molecules/vc-slider/vc-slider-model.d.ts +25 -8
  171. package/dist/ui/components/molecules/vc-slider/vc-slider-model.d.ts.map +1 -1
  172. package/dist/ui/components/molecules/vc-textarea/index.d.ts +2 -2
  173. package/dist/ui/components/molecules/vc-textarea/index.d.ts.map +1 -1
  174. package/dist/ui/components/molecules/vc-textarea/vc-textarea-model.d.ts +32 -12
  175. package/dist/ui/components/molecules/vc-textarea/vc-textarea-model.d.ts.map +1 -1
  176. package/dist/ui/components/organisms/vc-app/index.d.ts +2 -2
  177. package/dist/ui/components/organisms/vc-app/index.d.ts.map +1 -1
  178. package/dist/ui/components/organisms/vc-app/vc-app-model.d.ts +52 -17
  179. package/dist/ui/components/organisms/vc-app/vc-app-model.d.ts.map +1 -1
  180. package/dist/ui/components/organisms/vc-blade/index.d.ts +2 -2
  181. package/dist/ui/components/organisms/vc-blade/index.d.ts.map +1 -1
  182. package/dist/ui/components/organisms/vc-blade/vc-blade-model.d.ts +28 -11
  183. package/dist/ui/components/organisms/vc-blade/vc-blade-model.d.ts.map +1 -1
  184. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts.map +1 -1
  185. package/dist/ui/components/organisms/vc-dynamic-property/index.d.ts.map +1 -1
  186. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property-model.d.ts +39 -10
  187. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property-model.d.ts.map +1 -1
  188. package/dist/ui/components/organisms/vc-gallery/index.d.ts +2 -2
  189. package/dist/ui/components/organisms/vc-gallery/index.d.ts.map +1 -1
  190. package/dist/ui/components/organisms/vc-gallery/vc-gallery-model.d.ts +69 -27
  191. package/dist/ui/components/organisms/vc-gallery/vc-gallery-model.d.ts.map +1 -1
  192. package/dist/ui/components/organisms/vc-login-form/index.d.ts.map +1 -1
  193. package/dist/ui/components/organisms/vc-login-form/vc-login-form-model.d.ts +10 -5
  194. package/dist/ui/components/organisms/vc-login-form/vc-login-form-model.d.ts.map +1 -1
  195. package/dist/ui/components/organisms/vc-popup/index.d.ts +2 -2
  196. package/dist/ui/components/organisms/vc-popup/index.d.ts.map +1 -1
  197. package/dist/ui/components/organisms/vc-popup/vc-popup-model.d.ts +18 -7
  198. package/dist/ui/components/organisms/vc-popup/vc-popup-model.d.ts.map +1 -1
  199. package/dist/ui/components/organisms/vc-table/index.d.ts +2 -2
  200. package/dist/ui/components/organisms/vc-table/index.d.ts.map +1 -1
  201. package/dist/ui/components/organisms/vc-table/vc-table-model.d.ts +103 -34
  202. package/dist/ui/components/organisms/vc-table/vc-table-model.d.ts.map +1 -1
  203. package/dist/ui/types/index.d.ts +48 -46
  204. package/dist/ui/types/index.d.ts.map +1 -1
  205. package/dist/ui/types/ts-helpers.d.ts +14 -4
  206. package/dist/ui/types/ts-helpers.d.ts.map +1 -1
  207. package/dist/ui/utils/index.d.ts +2 -0
  208. package/dist/ui/utils/index.d.ts.map +1 -0
  209. package/dist/ui/utils/types.d.ts +3 -0
  210. package/dist/ui/utils/types.d.ts.map +1 -0
  211. package/dist/vite.config.d.ts +1 -1
  212. package/dist/vite.config.d.ts.map +1 -1
  213. package/package.json +8 -11
  214. package/shared/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +2 -5
  215. package/shared/app-switcher/composables/useAppSwitcher/index.ts +2 -7
  216. package/shared/app-switcher/index.ts +3 -10
  217. package/shared/assets/components/assets-details/assets-details.vue +7 -28
  218. package/shared/assets/components/index.ts +1 -1
  219. package/shared/assets/index.ts +3 -15
  220. package/shared/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue +2 -7
  221. package/shared/blade-navigation/composables/index.ts +1 -1
  222. package/shared/blade-navigation/composables/useBladeNavigation/index.ts +7 -36
  223. package/shared/blade-navigation/index.ts +3 -10
  224. package/shared/index.ts +9 -11
  225. package/ui/components/atoms/vc-badge/index.ts +4 -4
  226. package/ui/components/atoms/vc-badge/vc-badge-model.ts +22 -15
  227. package/ui/components/atoms/vc-badge/vc-badge.vue +5 -10
  228. package/ui/components/atoms/vc-button/index.ts +4 -4
  229. package/ui/components/atoms/vc-button/vc-button-model.ts +32 -17
  230. package/ui/components/atoms/vc-button/vc-button.vue +8 -13
  231. package/ui/components/atoms/vc-card/index.ts +3 -4
  232. package/ui/components/atoms/vc-card/vc-card-model.ts +31 -11
  233. package/ui/components/atoms/vc-card/vc-card.vue +20 -11
  234. package/ui/components/atoms/vc-checkbox/index.ts +3 -2
  235. package/ui/components/atoms/vc-checkbox/vc-checkbox-model.ts +28 -8
  236. package/ui/components/atoms/vc-checkbox/vc-checkbox.vue +15 -11
  237. package/ui/components/atoms/vc-col/index.ts +1 -2
  238. package/ui/components/atoms/vc-col/vc-col-model.ts +9 -3
  239. package/ui/components/atoms/vc-col/vc-col.vue +2 -4
  240. package/ui/components/atoms/vc-container/index.ts +3 -2
  241. package/ui/components/atoms/vc-container/vc-container-model.ts +24 -8
  242. package/ui/components/atoms/vc-container/vc-container.vue +6 -14
  243. package/ui/components/atoms/vc-hint/vc-hint-model.ts +5 -0
  244. package/ui/components/atoms/vc-icon/index.ts +1 -3
  245. package/ui/components/atoms/vc-icon/vc-icon-model.ts +15 -6
  246. package/ui/components/atoms/vc-icon/vc-icon.vue +2 -5
  247. package/ui/components/atoms/vc-image/index.ts +4 -4
  248. package/ui/components/atoms/vc-image/vc-image-model.ts +36 -22
  249. package/ui/components/atoms/vc-image/vc-image.stories.ts +1 -2
  250. package/ui/components/atoms/vc-image/vc-image.vue +13 -17
  251. package/ui/components/atoms/vc-info-row/index.ts +1 -3
  252. package/ui/components/atoms/vc-info-row/vc-info-row-model.ts +22 -7
  253. package/ui/components/atoms/vc-info-row/vc-info-row.vue +13 -9
  254. package/ui/components/atoms/vc-label/index.ts +1 -3
  255. package/ui/components/atoms/vc-label/vc-label-model.ts +13 -4
  256. package/ui/components/atoms/vc-label/vc-label.vue +6 -6
  257. package/ui/components/atoms/vc-link/index.ts +3 -4
  258. package/ui/components/atoms/vc-link/vc-link-model.ts +18 -5
  259. package/ui/components/atoms/vc-link/vc-link.vue +4 -6
  260. package/ui/components/atoms/vc-loading/index.ts +1 -3
  261. package/ui/components/atoms/vc-loading/vc-loading-model.ts +9 -3
  262. package/ui/components/atoms/vc-loading/vc-loading.vue +4 -9
  263. package/ui/components/atoms/vc-progress/index.ts +1 -3
  264. package/ui/components/atoms/vc-progress/vc-progress-model.ts +14 -5
  265. package/ui/components/atoms/vc-progress/vc-progress.vue +4 -13
  266. package/ui/components/atoms/vc-status/index.ts +1 -3
  267. package/ui/components/atoms/vc-status/vc-status-model.ts +18 -12
  268. package/ui/components/atoms/vc-status/vc-status.vue +3 -11
  269. package/ui/components/atoms/vc-status-icon/index.ts +1 -3
  270. package/ui/components/atoms/vc-status-icon/vc-status-icon-model.ts +9 -3
  271. package/ui/components/atoms/vc-status-icon/vc-status-icon.vue +2 -4
  272. package/ui/components/atoms/vc-switch/index.ts +4 -4
  273. package/ui/components/atoms/vc-switch/vc-switch-model.ts +28 -8
  274. package/ui/components/atoms/vc-switch/vc-switch.vue +12 -10
  275. package/ui/components/atoms/vc-widget/index.ts +4 -4
  276. package/ui/components/atoms/vc-widget/vc-widget-model.ts +17 -7
  277. package/ui/components/atoms/vc-widget/vc-widget.vue +16 -7
  278. package/ui/components/index.ts +1 -1
  279. package/ui/components/molecules/vc-breadcrumbs/index.ts +1 -3
  280. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs-model.ts +18 -10
  281. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +6 -5
  282. package/ui/components/molecules/vc-editor/index.ts +4 -4
  283. package/ui/components/molecules/vc-editor/vc-editor-model.ts +31 -11
  284. package/ui/components/molecules/vc-editor/vc-editor.vue +17 -11
  285. package/ui/components/molecules/vc-file-upload/index.ts +3 -2
  286. package/ui/components/molecules/vc-file-upload/vc-file-upload-model.ts +33 -11
  287. package/ui/components/molecules/vc-file-upload/vc-file-upload.vue +10 -14
  288. package/ui/components/molecules/vc-form/vc-form-model.ts +5 -0
  289. package/ui/components/molecules/vc-input/index.ts +4 -5
  290. package/ui/components/molecules/vc-input/vc-input-model.ts +53 -35
  291. package/ui/components/molecules/vc-input/vc-input.vue +41 -29
  292. package/ui/components/molecules/vc-input-currency/index.ts +3 -2
  293. package/ui/components/molecules/vc-input-currency/vc-input-currency-model.ts +42 -32
  294. package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +12 -7
  295. package/ui/components/molecules/vc-notification/index.ts +4 -3
  296. package/ui/components/molecules/vc-notification/vc-notification-model.ts +15 -5
  297. package/ui/components/molecules/vc-notification/vc-notification.vue +3 -5
  298. package/ui/components/molecules/vc-pagination/index.ts +4 -3
  299. package/ui/components/molecules/vc-pagination/vc-pagination-model.ts +23 -6
  300. package/ui/components/molecules/vc-pagination/vc-pagination.vue +19 -11
  301. package/ui/components/molecules/vc-rating/index.ts +2 -4
  302. package/ui/components/molecules/vc-rating/vc-rating-model.ts +18 -9
  303. package/ui/components/molecules/vc-rating/vc-rating.vue +10 -4
  304. package/ui/components/molecules/vc-select/index.ts +5 -5
  305. package/ui/components/molecules/vc-select/vc-select-model.ts +74 -44
  306. package/ui/components/molecules/vc-select/vc-select.vue +126 -171
  307. package/ui/components/molecules/vc-slider/index.ts +2 -4
  308. package/ui/components/molecules/vc-slider/vc-slider-model.ts +30 -11
  309. package/ui/components/molecules/vc-slider/vc-slider.vue +2 -8
  310. package/ui/components/molecules/vc-textarea/index.ts +4 -3
  311. package/ui/components/molecules/vc-textarea/vc-textarea-model.ts +35 -12
  312. package/ui/components/molecules/vc-textarea/vc-textarea.vue +16 -12
  313. package/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue +13 -9
  314. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue +12 -3
  315. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue +18 -16
  316. package/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue +8 -2
  317. package/ui/components/organisms/vc-app/index.ts +4 -4
  318. package/ui/components/organisms/vc-app/vc-app-model.ts +55 -17
  319. package/ui/components/organisms/vc-app/vc-app.vue +8 -25
  320. package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +22 -7
  321. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue +19 -13
  322. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue +13 -11
  323. package/ui/components/organisms/vc-blade/index.ts +5 -5
  324. package/ui/components/organisms/vc-blade/vc-blade-model.ts +30 -11
  325. package/ui/components/organisms/vc-blade/vc-blade.stories.ts +1 -2
  326. package/ui/components/organisms/vc-blade/vc-blade.vue +12 -14
  327. package/ui/components/organisms/vc-dynamic-property/index.ts +2 -4
  328. package/ui/components/organisms/vc-dynamic-property/vc-dynamic-property-model.ts +53 -20
  329. package/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue +41 -37
  330. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue +9 -2
  331. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue +14 -9
  332. package/ui/components/organisms/vc-gallery/index.ts +4 -3
  333. package/ui/components/organisms/vc-gallery/vc-gallery-model.ts +72 -27
  334. package/ui/components/organisms/vc-gallery/vc-gallery.vue +7 -20
  335. package/ui/components/organisms/vc-login-form/index.ts +2 -4
  336. package/ui/components/organisms/vc-login-form/vc-login-form-model.ts +10 -5
  337. package/ui/components/organisms/vc-login-form/vc-login-form.vue +2 -4
  338. package/ui/components/organisms/vc-popup/index.ts +5 -5
  339. package/ui/components/organisms/vc-popup/vc-popup-model.ts +20 -7
  340. package/ui/components/organisms/vc-popup/vc-popup.vue +7 -7
  341. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +19 -25
  342. package/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue +2 -6
  343. package/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue +8 -2
  344. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +27 -39
  345. package/ui/components/organisms/vc-table/index.ts +5 -5
  346. package/ui/components/organisms/vc-table/vc-table-model.ts +98 -38
  347. package/ui/components/organisms/vc-table/vc-table.vue +105 -103
  348. package/ui/types/index.ts +64 -160
  349. package/ui/types/ts-helpers.ts +23 -3
  350. package/ui/utils/index.ts +1 -0
  351. package/ui/utils/types.ts +2 -0
  352. package/core/composables/useLogger/index.ts +0 -24
  353. package/dist/core/composables/useLogger/index.d.ts +0 -5
  354. package/dist/core/composables/useLogger/index.d.ts.map +0 -1
@@ -1,26 +1,25 @@
1
1
  <template>
2
- <div
3
- class="tw-relative tw-overflow-hidden tw-flex tw-flex-col tw-grow tw-basis-0"
4
- >
2
+ <div class="tw-relative tw-overflow-hidden tw-flex tw-flex-col tw-grow tw-basis-0">
5
3
  <!-- Header slot with filter and searchbar -->
6
4
  <slot
7
5
  name="header"
8
6
  v-if="
9
7
  ($slots['header'] || header) &&
10
- ((items && items.length) ||
11
- searchValue ||
12
- searchValue === '' ||
13
- activeFilterCount)
8
+ ((items && items.length) || searchValue || searchValue === '' || activeFilterCount)
14
9
  "
15
10
  >
16
- <div
17
- class="tw-shrink-0 tw-flex tw-items-center tw-justify-between tw-p-4"
18
- >
11
+ <div class="tw-shrink-0 tw-flex tw-items-center tw-justify-between tw-p-4">
19
12
  <!-- Table filter mobile button -->
20
- <div v-if="$isMobile.value && $slots['filters']" class="tw-mr-3">
13
+ <div
14
+ v-if="$isMobile.value && $slots['filters']"
15
+ class="tw-mr-3"
16
+ >
21
17
  <VcTableFilter :counter="activeFilterCount">
22
18
  <template v-slot:default="{ closePanel }">
23
- <slot name="filters" :closePanel="closePanel"></slot>
19
+ <slot
20
+ name="filters"
21
+ :closePanel="closePanel"
22
+ ></slot>
24
23
  </template>
25
24
  </VcTableFilter>
26
25
  </div>
@@ -36,14 +35,20 @@
36
35
  ></VcInput>
37
36
 
38
37
  <!-- Table filter desktop button -->
39
- <div v-if="$isDesktop.value && $slots['filters']" class="tw-ml-3">
38
+ <div
39
+ v-if="$isDesktop.value && $slots['filters']"
40
+ class="tw-ml-3"
41
+ >
40
42
  <VcTableFilter
41
43
  :title="$t('Filters')"
42
44
  :counter="activeFilterCount"
43
45
  :parentExpanded="expanded"
44
46
  >
45
47
  <template v-slot:default="{ closePanel }">
46
- <slot name="filters" :closePanel="closePanel"></slot>
48
+ <slot
49
+ name="filters"
50
+ :closePanel="closePanel"
51
+ ></slot>
47
52
  </template>
48
53
  </VcTableFilter>
49
54
  </div>
@@ -75,7 +80,10 @@
75
80
  @swipeStart="handleSwipe"
76
81
  :swipingItem="mobileSwipeItem"
77
82
  >
78
- <slot name="mobile-item" :item="item"></slot>
83
+ <slot
84
+ name="mobile-item"
85
+ :item="item"
86
+ ></slot>
79
87
  </VcTableMobileItem>
80
88
  </div>
81
89
  </template>
@@ -89,7 +97,10 @@
89
97
  'vc-table_multiselect': multiselect,
90
98
  }"
91
99
  >
92
- <thead v-if="columns" class="vc-table__header">
100
+ <thead
101
+ v-if="columns"
102
+ class="vc-table__header"
103
+ >
93
104
  <tr class="vc-table__header-row">
94
105
  <th
95
106
  v-if="multiselect"
@@ -121,20 +132,27 @@
121
132
  <div>
122
133
  <slot :name="`header_${item.id}`">{{ item.title }}</slot>
123
134
  </div>
124
- <div v-if="sortField === item.id" class="tw-ml-1">
135
+ <div
136
+ v-if="sortField === item.id"
137
+ class="tw-ml-1"
138
+ >
125
139
  <VcIcon
126
140
  size="xs"
127
- :icon="`fas fa-caret-${
128
- sortDirection === 'DESC' ? 'down' : 'up'
129
- }`"
141
+ :icon="`fas fa-caret-${sortDirection === 'DESC' ? 'down' : 'up'}`"
130
142
  ></VcIcon>
131
143
  </div>
132
144
  <div
133
145
  class="tw-flex tw-flex-col tw-ml-1 tw-invisible group-hover:tw-visible"
134
146
  v-else
135
147
  >
136
- <VcIcon size="xs" icon="fas fa-caret-up"></VcIcon>
137
- <VcIcon size="xs" icon="fas fa-caret-down"></VcIcon>
148
+ <VcIcon
149
+ size="xs"
150
+ icon="fas fa-caret-up"
151
+ ></VcIcon>
152
+ <VcIcon
153
+ size="xs"
154
+ icon="fas fa-caret-down"
155
+ ></VcIcon>
138
156
  </div>
139
157
  </div>
140
158
  </th>
@@ -146,21 +164,26 @@
146
164
  </tr>
147
165
  </thead>
148
166
 
149
- <tbody v-if="items" class="vc-table__body">
167
+ <tbody
168
+ v-if="items"
169
+ class="vc-table__body"
170
+ >
150
171
  <tr
151
172
  v-for="(item, i) in items"
152
173
  :key="item.id"
153
174
  class="vc-table__body-row tw-h-[60px] tw-bg-white hover:tw-bg-[#dfeef9] tw-cursor-pointer"
154
175
  :class="{
155
176
  'tw-bg-[#f8f8f8]': i % 2 === 1,
156
- '!tw-bg-[#dfeef9] hover:tw-bg-[#dfeef9]':
157
- item && item.id ? selectedItemId === item.id : false,
177
+ '!tw-bg-[#dfeef9] hover:tw-bg-[#dfeef9]': item && item.id ? selectedItemId === item.id : false,
158
178
  }"
159
179
  @click="$emit('itemClick', item)"
160
180
  @mouseover="calculateActions(item)"
161
181
  @mouseleave="closeActions"
162
182
  >
163
- <td v-if="multiselect" width="50">
183
+ <td
184
+ v-if="multiselect"
185
+ width="50"
186
+ >
164
187
  <div class="tw-flex tw-justify-center tw-items-center">
165
188
  <VcCheckbox
166
189
  :modelValue="checkboxes[item.id]"
@@ -176,8 +199,15 @@
176
199
  :class="cell.class"
177
200
  :width="cell.width"
178
201
  >
179
- <slot :name="`item_${cell.id}`" :item="item" :cell="cell">
180
- <VcTableCell :cell="cell" :item="item"></VcTableCell>
202
+ <slot
203
+ :name="`item_${cell.id}`"
204
+ :item="item"
205
+ :cell="cell"
206
+ >
207
+ <VcTableCell
208
+ :cell="cell"
209
+ :item="item"
210
+ ></VcTableCell>
181
211
  </slot>
182
212
  </td>
183
213
  <td
@@ -185,9 +215,7 @@
185
215
  width="44"
186
216
  v-if="itemActionBuilder"
187
217
  >
188
- <div
189
- class="vc-table__body-actions-container tw-relative !tw-hidden tw-justify-center tw-items-center"
190
- >
218
+ <div class="vc-table__body-actions-container tw-relative !tw-hidden tw-justify-center tw-items-center">
191
219
  <button
192
220
  class="tw-text-[#319ed4] tw-cursor-pointer tw-border-none tw-bg-transparent disabled:tw-text-[gray]"
193
221
  @click.stop="showActions(item, item.id)"
@@ -195,7 +223,10 @@
195
223
  aria-describedby="tooltip"
196
224
  :disabled="!(itemActions && itemActions.length)"
197
225
  >
198
- <VcIcon icon="fas fa-cog" size="m" />
226
+ <VcIcon
227
+ icon="fas fa-cog"
228
+ size="m"
229
+ />
199
230
  </button>
200
231
  <div
201
232
  class="vc-table__body-tooltip tw-bg-white tw-rounded-l-[4px] tw-p-[15px] tw-z-0 tw-absolute tw-right-0 tw-drop-shadow-[1px_3px_14px_rgba(111,122,131,0.25)]"
@@ -216,7 +247,10 @@
216
247
  ]"
217
248
  @click.stop="itemAction.clickHandler(item)"
218
249
  >
219
- <VcIcon :icon="itemAction.icon" size="m" />
250
+ <VcIcon
251
+ :icon="itemAction.icon"
252
+ size="m"
253
+ />
220
254
  <div
221
255
  class="tw-not-italic tw-font-normal tw-text-base tw-leading-[20px] tw-text-[#3f3f3f] tw-ml-[7px]"
222
256
  >
@@ -246,23 +280,38 @@
246
280
  v-if="notfound"
247
281
  class="tw-w-full tw-h-full tw-box-border tw-flex tw-flex-col tw-items-center tw-justify-center"
248
282
  >
249
- <img v-if="notfound.image" :src="notfound.image" />
283
+ <img
284
+ v-if="notfound.image"
285
+ :src="notfound.image"
286
+ />
250
287
  <div class="tw-m-4 vc-table__empty-text">
251
288
  {{ notfound.text }}
252
289
  </div>
253
- <VcButton v-if="notfound.action" @click="notfound.clickHandler">
290
+ <VcButton
291
+ v-if="notfound.action"
292
+ @click="notfound.clickHandler"
293
+ >
254
294
  {{ notfound.action }}
255
295
  </VcButton>
256
296
  </div>
257
297
  </slot>
258
- <slot v-else name="empty">
298
+ <slot
299
+ v-else
300
+ name="empty"
301
+ >
259
302
  <div
260
303
  v-if="empty"
261
304
  class="tw-w-full tw-h-full tw-box-border tw-flex tw-flex-col tw-items-center tw-justify-center"
262
305
  >
263
- <img v-if="empty.image" :src="empty.image" />
306
+ <img
307
+ v-if="empty.image"
308
+ :src="empty.image"
309
+ />
264
310
  <div class="tw-m-4 tw-text-xl tw-font-medium">{{ empty.text }}</div>
265
- <VcButton v-if="empty.action" @click="empty.clickHandler">
311
+ <VcButton
312
+ v-if="empty.action"
313
+ @click="empty.clickHandler"
314
+ >
266
315
  {{ empty.action }}
267
316
  </VcButton>
268
317
  </div>
@@ -298,62 +347,23 @@
298
347
 
299
348
  <script lang="ts" setup>
300
349
  import { computed, nextTick, ref, watch, onBeforeUpdate } from "vue";
301
- import {
302
- VcIcon,
303
- VcLoading,
304
- VcCheckbox,
305
- VcContainer,
306
- VcInput,
307
- VcPagination,
308
- } from "./../../../components";
350
+ import { VcIcon, VcLoading, VcCheckbox, VcContainer, VcInput, VcPagination } from "./../../../components";
309
351
  import VcTableCounter from "./_internal/vc-table-counter/vc-table-counter.vue";
310
352
  import VcTableFilter from "./_internal/vc-table-filter/vc-table-filter.vue";
311
353
  import VcTableMobileItem from "./_internal/vc-table-mobile-item/vc-table-mobile-item.vue";
312
354
  import VcTableCell from "./_internal/vc-table-cell/vc-table-cell.vue";
313
355
  import { createPopper, Instance } from "@popperjs/core";
314
356
  import { IActionBuilderResult } from "./../../../../core/types";
315
- import { VcTableProps } from "./vc-table-model";
316
-
317
- const props = withDefaults(defineProps<VcTableProps>(), {
318
- columns: () => [],
319
- items: () => [],
320
- itemActionBuilder: undefined,
321
- sort: undefined,
322
- multiselect: false,
323
- expanded: false,
324
- totalLabel: "Totals:",
325
- totalCount: 0,
326
- pages: 0,
327
- currentPage: 0,
328
- searchPlaceholder: "Search...",
329
- searchValue: undefined,
330
- loading: false,
331
- empty: () => ({
332
- text: "List is empty.",
333
- }),
334
- notfound: () => ({
335
- text: "Nothing found.",
336
- }),
337
- header: true,
338
- footer: true,
339
- activeFilterCount: 0,
340
- selectedItemId: undefined,
341
- scrolling: false,
342
- });
357
+ import { tableEmits, tableProps } from "./vc-table-model";
358
+
359
+ const props = defineProps(tableProps);
343
360
 
344
361
  interface ITableItemRef {
345
362
  element: Element;
346
363
  id: string;
347
364
  }
348
365
 
349
- const emit = defineEmits([
350
- "paginationClick",
351
- "selectionChanged",
352
- "search:change",
353
- "headerClick",
354
- "itemClick",
355
- "scroll:ptr",
356
- ]);
366
+ const emit = defineEmits(tableEmits);
357
367
 
358
368
  const checkboxes = ref<Record<string, boolean>>({});
359
369
  const selectedRow = ref<string>();
@@ -388,9 +398,7 @@ const tableAlignment = {
388
398
  evenly: "justify-evenly",
389
399
  };
390
400
 
391
- const headerCheckbox = computed(() =>
392
- Object.values(checkboxes.value).every((value) => value)
393
- );
401
+ const headerCheckbox = computed(() => Object.values(checkboxes.value).every((value) => value));
394
402
 
395
403
  watch(
396
404
  () => props.items,
@@ -421,9 +429,7 @@ function setActionToggleRefs(el: Element, id: string) {
421
429
 
422
430
  function processHeaderCheckbox() {
423
431
  const currentState = Object.values(checkboxes.value).every((value) => value);
424
- Object.keys(checkboxes.value).forEach(
425
- (key) => (checkboxes.value[key] = !currentState)
426
- );
432
+ Object.keys(checkboxes.value).forEach((key) => (checkboxes.value[key] = !currentState));
427
433
  emit("selectionChanged", checkboxes.value);
428
434
  }
429
435
 
@@ -440,22 +446,18 @@ function showActions(item: { id?: string }, index: string) {
440
446
 
441
447
  if (toggleRef && tooltipRef) {
442
448
  nextTick(() => {
443
- tooltip.value = createPopper(
444
- toggleRef.element,
445
- tooltipRef.element as HTMLElement,
446
- {
447
- placement: "bottom",
448
- onFirstUpdate: () => tooltip.value?.update(),
449
- modifiers: [
450
- {
451
- name: "offset",
452
- options: {
453
- offset: [-15, 15],
454
- },
449
+ tooltip.value = createPopper(toggleRef.element, tooltipRef.element as HTMLElement, {
450
+ placement: "bottom",
451
+ onFirstUpdate: () => tooltip.value?.update(),
452
+ modifiers: [
453
+ {
454
+ name: "offset",
455
+ options: {
456
+ offset: [-15, 15],
455
457
  },
456
- ],
457
- }
458
- );
458
+ },
459
+ ],
460
+ });
459
461
  });
460
462
  }
461
463
  }
package/ui/types/index.ts CHANGED
@@ -1,212 +1,116 @@
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
1
2
  import { GlobalComponentConstructor } from "./ts-helpers";
2
- import {
3
- VcInputProps,
4
- VcInputSlots,
5
- } from "../components/molecules/vc-input/vc-input-model";
6
- import {
7
- VcSelectProps,
8
- VcSelectSlots,
9
- } from "../components/molecules/vc-select/vc-select-model";
3
+ import { VcInputProps, VcInputSlots, VcInputEmits } from "../components/molecules/vc-input/vc-input-model";
4
+ import { VcSelectEmits, VcSelectProps, VcSelectSlots } from "../components/molecules/vc-select/vc-select-model";
10
5
  import {
11
6
  VcInputCurrencyProps,
12
7
  VcInputCurrencySlots,
8
+ VcInputCurrencyEmits,
13
9
  } from "../components/molecules/vc-input-currency/vc-input-currency-model";
14
- import {
15
- VcBadgeProps,
16
- VcBadgeSlots,
17
- } from "../components/atoms/vc-badge/vc-badge-model";
18
- import {
19
- VcButtonProps,
20
- VcButtonSlots,
21
- } from "../components/atoms/vc-button/vc-button-model";
22
- import {
23
- VcCardProps,
24
- VcCardSlots,
25
- } from "../components/atoms/vc-card/vc-card-model";
26
- import {
27
- VcCheckboxProps,
28
- VcCheckboxSlots,
29
- } from "../components/atoms/vc-checkbox/vc-checkbox-model";
30
- import {
31
- VcColProps,
32
- VcColSlots,
33
- } from "../components/atoms/vc-col/vc-col-model";
10
+ import { VcBadgeEmits, VcBadgeProps, VcBadgeSlots } from "../components/atoms/vc-badge/vc-badge-model";
11
+ import { VcButtonProps, VcButtonSlots, VcButtonEmits } from "../components/atoms/vc-button/vc-button-model";
12
+ import { VcCardProps, VcCardSlots, VcCardEmits } from "../components/atoms/vc-card/vc-card-model";
13
+ import { VcCheckboxProps, VcCheckboxSlots, VcCheckboxEmits } from "../components/atoms/vc-checkbox/vc-checkbox-model";
14
+ import { VcColProps, VcColSlots } from "../components/atoms/vc-col/vc-col-model";
34
15
  import {
35
16
  VcContainerProps,
36
17
  VcContainerSlots,
18
+ VcContainerEmits,
37
19
  } from "../components/atoms/vc-container/vc-container-model";
38
- import {
39
- VcIconProps,
40
- VcIconSlots,
41
- } from "../components/atoms/vc-icon/vc-icon-model";
42
- import {
43
- VcImageProps,
44
- VcImageSlots,
45
- } from "../components/atoms/vc-image/vc-image-model";
46
- import {
47
- VcInfoRowProps,
48
- VcInfoRowSlots,
49
- } from "../components/atoms/vc-info-row/vc-info-row-model";
50
- import {
51
- VcLabelProps,
52
- VcLabelSlots,
53
- } from "../components/atoms/vc-label/vc-label-model";
54
- import {
55
- VcLinkProps,
56
- VcLinkSlots,
57
- } from "../components/atoms/vc-link/vc-link-model";
58
- import {
59
- VcLoadingProps,
60
- VcLoadingSlots,
61
- } from "../components/atoms/vc-loading/vc-loading-model";
62
- import {
63
- VcProgressProps,
64
- VcProgressSlots,
65
- } from "../components/atoms/vc-progress/vc-progress-model";
20
+ import { VcIconProps, VcIconSlots } from "../components/atoms/vc-icon/vc-icon-model";
21
+ import { VcImageProps, VcImageSlots, VcImageEmits } from "../components/atoms/vc-image/vc-image-model";
22
+ import { VcInfoRowProps, VcInfoRowSlots } from "../components/atoms/vc-info-row/vc-info-row-model";
23
+ import { VcLabelProps, VcLabelSlots } from "../components/atoms/vc-label/vc-label-model";
24
+ import { VcLinkProps, VcLinkSlots, VcLinkEmits } from "../components/atoms/vc-link/vc-link-model";
25
+ import { VcLoadingProps, VcLoadingSlots } from "../components/atoms/vc-loading/vc-loading-model";
26
+ import { VcProgressProps, VcProgressSlots } from "../components/atoms/vc-progress/vc-progress-model";
66
27
  import { VcRowSlots } from "../components/atoms/vc-row/vc-row-model";
67
- import {
68
- VcStatusProps,
69
- VcStatusSlots,
70
- } from "../components/atoms/vc-status/vc-status-model";
71
- import {
72
- VcStatusIconProps,
73
- VcStatusIconSlots,
74
- } from "../components/atoms/vc-status-icon/vc-status-icon-model";
75
- import {
76
- VcSwitchProps,
77
- VcSwitchSlots,
78
- } from "../components/atoms/vc-switch/vc-switch-model";
79
- import {
80
- VcWidgetProps,
81
- VcWidgetSlots,
82
- } from "../components/atoms/vc-widget/vc-widget-model";
83
- import {
84
- VcBreadcrumbsProps,
85
- VcBreadcrumbsSlots,
86
- } from "../components/molecules/vc-breadcrumbs/vc-breadcrumbs-model";
87
- import {
88
- VcEditorProps,
89
- VcEditorSlots,
90
- } from "../components/molecules/vc-editor/vc-editor-model";
28
+ import { VcStatusProps, VcStatusSlots } from "../components/atoms/vc-status/vc-status-model";
29
+ import { VcStatusIconProps, VcStatusIconSlots } from "../components/atoms/vc-status-icon/vc-status-icon-model";
30
+ import { VcSwitchProps, VcSwitchSlots, VcSwitchEmits } from "../components/atoms/vc-switch/vc-switch-model";
31
+ import { VcWidgetProps, VcWidgetSlots, VcWidgetEmits } from "../components/atoms/vc-widget/vc-widget-model";
32
+ import { VcBreadcrumbsProps, VcBreadcrumbsSlots } from "../components/molecules/vc-breadcrumbs/vc-breadcrumbs-model";
33
+ import { VcEditorProps, VcEditorSlots, VcEditorEmits } from "../components/molecules/vc-editor/vc-editor-model";
91
34
  import {
92
35
  VcFileUploadProps,
93
36
  VcFileUploadSlots,
37
+ VcFileUploadEmits,
94
38
  } from "../components/molecules/vc-file-upload/vc-file-upload-model";
95
39
  import {
96
40
  VcNotificationProps,
97
41
  VcNotificationSlots,
42
+ VcNotificationEmits,
98
43
  } from "../components/molecules/vc-notification/vc-notification-model";
99
44
  import {
100
45
  VcPaginationProps,
101
46
  VcPaginationSlots,
47
+ VcPaginationEmits,
102
48
  } from "../components/molecules/vc-pagination/vc-pagination-model";
103
- import {
104
- VcRatingProps,
105
- VcRatingSlots,
106
- } from "../components/molecules/vc-rating/vc-rating-model";
107
- import {
108
- VcSliderProps,
109
- VcSliderSlots,
110
- } from "../components/molecules/vc-slider/vc-slider-model";
49
+ import { VcRatingProps, VcRatingSlots } from "../components/molecules/vc-rating/vc-rating-model";
50
+ import { VcSliderProps, VcSliderSlots } from "../components/molecules/vc-slider/vc-slider-model";
111
51
  import {
112
52
  VcTextareaProps,
113
53
  VcTextareaSlots,
54
+ VcTextareaEmits,
114
55
  } from "../components/molecules/vc-textarea/vc-textarea-model";
115
- import {
116
- VcAppProps,
117
- VcAppSlots,
118
- } from "../components/organisms/vc-app/vc-app-model";
119
- import {
120
- VcBladeProps,
121
- VcBladeSlots,
122
- } from "../components/organisms/vc-blade/vc-blade-model";
56
+ import { VcAppProps, VcAppSlots, VcAppEmits } from "../components/organisms/vc-app/vc-app-model";
57
+ import { VcBladeProps, VcBladeSlots, VcBladeEmits } from "../components/organisms/vc-blade/vc-blade-model";
123
58
  import {
124
59
  VcDynamicPropertyProps,
125
60
  VcDynamicPropertySlots,
126
61
  } from "../components/organisms/vc-dynamic-property/vc-dynamic-property-model";
127
- import {
128
- VcGalleryProps,
129
- VcGallerySlots,
130
- } from "../components/organisms/vc-gallery/vc-gallery-model";
131
- import {
132
- VcLoginFormProps,
133
- VcLoginFormSlots,
134
- } from "../components/organisms/vc-login-form/vc-login-form-model";
135
- import {
136
- VcPopupProps,
137
- VcPopupSlots,
138
- } from "../components/organisms/vc-popup/vc-popup-model";
139
- import {
140
- VcTableProps,
141
- VcTableSlots,
142
- } from "../components/organisms/vc-table/vc-table-model";
62
+ import { VcGalleryProps, VcGallerySlots, VcGalleryEmits } from "../components/organisms/vc-gallery/vc-gallery-model";
63
+ import { VcLoginFormProps, VcLoginFormSlots } from "../components/organisms/vc-login-form/vc-login-form-model";
64
+ import { VcPopupProps, VcPopupSlots, VcPopupEmits } from "../components/organisms/vc-popup/vc-popup-model";
65
+ import { VcTableProps, VcTableSlots, VcTableEmits } from "../components/organisms/vc-table/vc-table-model";
66
+ import { VcHintSlots } from "./../components/atoms/vc-hint/vc-hint-model";
67
+ import { VcFormSlots } from "./../components/molecules/vc-form/vc-form-model";
143
68
 
144
69
  declare module "@vue/runtime-core" {
145
70
  interface GlobalComponents {
146
71
  // atoms
147
- VcBadge: GlobalComponentConstructor<VcBadgeProps, VcBadgeSlots>;
148
- VcButton: GlobalComponentConstructor<VcButtonProps, VcButtonSlots>;
149
- VcCard: GlobalComponentConstructor<VcCardProps, VcCardSlots>;
150
- VcCheckbox: GlobalComponentConstructor<VcCheckboxProps, VcCheckboxSlots>;
72
+ VcBadge: GlobalComponentConstructor<VcBadgeProps, VcBadgeSlots, VcBadgeEmits>;
73
+ VcButton: GlobalComponentConstructor<VcButtonProps, VcButtonSlots, VcButtonEmits>;
74
+ VcCard: GlobalComponentConstructor<VcCardProps, VcCardSlots, VcCardEmits>;
75
+ VcCheckbox: GlobalComponentConstructor<VcCheckboxProps, VcCheckboxSlots, VcCheckboxEmits>;
151
76
  VcCol: GlobalComponentConstructor<VcColProps, VcColSlots>;
152
- VcContainer: GlobalComponentConstructor<VcContainerProps, VcContainerSlots>;
153
- VcHint: GlobalComponentConstructor;
77
+ VcContainer: GlobalComponentConstructor<VcContainerProps, VcContainerSlots, VcContainerEmits>;
78
+ VcHint: GlobalComponentConstructor<any, VcHintSlots>;
154
79
  VcIcon: GlobalComponentConstructor<VcIconProps, VcIconSlots>;
155
- VcImage: GlobalComponentConstructor<VcImageProps, VcImageSlots>;
80
+ VcImage: GlobalComponentConstructor<VcImageProps, VcImageSlots, VcImageEmits>;
156
81
  VcInfoRow: GlobalComponentConstructor<VcInfoRowProps, VcInfoRowSlots>;
157
82
  VcLabel: GlobalComponentConstructor<VcLabelProps, VcLabelSlots>;
158
- VcLink: GlobalComponentConstructor<VcLinkProps, VcLinkSlots>;
83
+ VcLink: GlobalComponentConstructor<VcLinkProps, VcLinkSlots, VcLinkEmits>;
159
84
  VcLoading: GlobalComponentConstructor<VcLoadingProps, VcLoadingSlots>;
160
85
  VcProgress: GlobalComponentConstructor<VcProgressProps, VcProgressSlots>;
161
86
  VcRow: GlobalComponentConstructor<any, VcRowSlots>;
162
87
  VcStatus: GlobalComponentConstructor<VcStatusProps, VcStatusSlots>;
163
- VcStatusIcon: GlobalComponentConstructor<
164
- VcStatusIconProps,
165
- VcStatusIconSlots
166
- >;
167
- VcSwitch: GlobalComponentConstructor<VcSwitchProps, VcSwitchSlots>;
168
- VcWidget: GlobalComponentConstructor<VcWidgetProps, VcWidgetSlots>;
88
+ VcStatusIcon: GlobalComponentConstructor<VcStatusIconProps, VcStatusIconSlots>;
89
+ VcSwitch: GlobalComponentConstructor<VcSwitchProps, VcSwitchSlots, VcSwitchEmits>;
90
+ VcWidget: GlobalComponentConstructor<VcWidgetProps, VcWidgetSlots, VcWidgetEmits>;
169
91
 
170
92
  // molecules
171
- VcBreadcrumbs: GlobalComponentConstructor<
172
- VcBreadcrumbsProps,
173
- VcBreadcrumbsSlots
174
- >;
175
- VcEditor: GlobalComponentConstructor<VcEditorProps, VcEditorSlots>;
176
- VcFileUpload: GlobalComponentConstructor<
177
- VcFileUploadProps,
178
- VcFileUploadSlots
179
- >;
180
- VcForm: GlobalComponentConstructor;
181
- VcInput: GlobalComponentConstructor<VcInputProps, VcInputSlots>;
182
- VcInputCurrency: GlobalComponentConstructor<
183
- VcInputCurrencyProps,
184
- VcInputCurrencySlots
185
- >;
186
- VcNotification: GlobalComponentConstructor<
187
- VcNotificationProps,
188
- VcNotificationSlots
189
- >;
190
- VcPagination: GlobalComponentConstructor<
191
- VcPaginationProps,
192
- VcPaginationSlots
193
- >;
93
+ VcBreadcrumbs: GlobalComponentConstructor<VcBreadcrumbsProps, VcBreadcrumbsSlots>;
94
+ VcEditor: GlobalComponentConstructor<VcEditorProps, VcEditorSlots, VcEditorEmits>;
95
+ VcFileUpload: GlobalComponentConstructor<VcFileUploadProps, VcFileUploadSlots, VcFileUploadEmits>;
96
+ VcForm: GlobalComponentConstructor<any, VcFormSlots>;
97
+ VcInput: GlobalComponentConstructor<VcInputProps, VcInputSlots, VcInputEmits>;
98
+ VcInputCurrency: GlobalComponentConstructor<VcInputCurrencyProps, VcInputCurrencySlots, VcInputCurrencyEmits>;
99
+ VcNotification: GlobalComponentConstructor<VcNotificationProps, VcNotificationSlots, VcNotificationEmits>;
100
+ VcPagination: GlobalComponentConstructor<VcPaginationProps, VcPaginationSlots, VcPaginationEmits>;
194
101
  VcRating: GlobalComponentConstructor<VcRatingProps, VcRatingSlots>;
195
- VcSelect: GlobalComponentConstructor<VcSelectProps, VcSelectSlots>;
102
+ VcSelect: GlobalComponentConstructor<VcSelectProps, VcSelectSlots, VcSelectEmits>;
196
103
  VcSlider: GlobalComponentConstructor<VcSliderProps, VcSliderSlots>;
197
- VcTextarea: GlobalComponentConstructor<VcTextareaProps, VcTextareaSlots>;
104
+ VcTextarea: GlobalComponentConstructor<VcTextareaProps, VcTextareaSlots, VcTextareaEmits>;
198
105
 
199
106
  // organisms
200
- VcApp: GlobalComponentConstructor<VcAppProps, VcAppSlots>;
201
- VcBlade: GlobalComponentConstructor<VcBladeProps, VcBladeSlots>;
202
- VcDynamicProperty: GlobalComponentConstructor<
203
- VcDynamicPropertyProps,
204
- VcDynamicPropertySlots
205
- >;
206
- VcGallery: GlobalComponentConstructor<VcGalleryProps, VcGallerySlots>;
107
+ VcApp: GlobalComponentConstructor<VcAppProps, VcAppSlots, VcAppEmits>;
108
+ VcBlade: GlobalComponentConstructor<VcBladeProps, VcBladeSlots, VcBladeEmits>;
109
+ VcDynamicProperty: GlobalComponentConstructor<VcDynamicPropertyProps, VcDynamicPropertySlots>;
110
+ VcGallery: GlobalComponentConstructor<VcGalleryProps, VcGallerySlots, VcGalleryEmits>;
207
111
  VcLoginForm: GlobalComponentConstructor<VcLoginFormProps, VcLoginFormSlots>;
208
- VcPopup: GlobalComponentConstructor<VcPopupProps, VcPopupSlots>;
209
- VcTable: GlobalComponentConstructor<VcTableProps, VcTableSlots>;
112
+ VcPopup: GlobalComponentConstructor<VcPopupProps, VcPopupSlots, VcPopupEmits>;
113
+ VcTable: GlobalComponentConstructor<VcTableProps, VcTableSlots, VcTableEmits>;
210
114
  }
211
115
  }
212
116