@vc-shell/framework 1.1.0-alpha.1 → 1.1.0-alpha.10

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 (880) hide show
  1. package/CHANGELOG.md +129 -0
  2. package/core/api/platform.ts +9883 -9883
  3. package/core/composables/index.ts +11 -7
  4. package/core/composables/useApiClient/index.ts +22 -22
  5. package/core/composables/useAppBarMobileButtons/index.ts +17 -0
  6. package/core/composables/useAppBarWidget/index.ts +19 -0
  7. package/core/composables/useAssets/index.ts +2 -2
  8. package/core/composables/useBeforeUnload/index.ts +25 -25
  9. package/core/composables/useDashboard/index.ts +19 -0
  10. package/core/composables/useFunctions/debounce.ts +16 -16
  11. package/core/composables/useFunctions/delay.ts +4 -4
  12. package/core/composables/useFunctions/index.ts +21 -21
  13. package/core/composables/useFunctions/once.ts +12 -12
  14. package/core/composables/useFunctions/sleep.ts +4 -4
  15. package/core/composables/useFunctions/throttle.ts +14 -14
  16. package/core/composables/useGlobalSearch/index.ts +19 -0
  17. package/core/composables/useKeyboardNavigation/index.ts +211 -0
  18. package/core/composables/useLanguages/index.ts +78 -78
  19. package/core/composables/useLoading/index.ts +9 -9
  20. package/core/composables/useMenuService/index.ts +15 -105
  21. package/core/composables/useSettings/index.ts +6 -2
  22. package/core/composables/useSettingsMenu/index.ts +23 -0
  23. package/core/composables/useTheme/index.ts +62 -61
  24. package/core/composables/useWidgets/index.ts +20 -0
  25. package/core/constants/index.ts +2 -0
  26. package/core/directives/autofocus/index.ts +9 -9
  27. package/core/directives/loading/index.ts +30 -1
  28. package/core/directives/loading/styles.css +36 -7
  29. package/core/plugins/i18n/index.ts +11 -11
  30. package/core/plugins/modularity/README.md +152 -0
  31. package/core/plugins/modularity/extensions-helper.ts +209 -0
  32. package/core/plugins/modularity/index.ts +33 -30
  33. package/core/plugins/modularity/loader.ts +102 -45
  34. package/core/plugins/moment/humanize.ts +74 -74
  35. package/core/plugins/moment/index.ts +1 -1
  36. package/core/plugins/permissions/index.ts +10 -10
  37. package/core/plugins/signalR/index.ts +2 -3
  38. package/core/plugins/validation/index.ts +1 -1
  39. package/core/plugins/validation/rules.ts +145 -145
  40. package/core/services/app-bar-menu-service.ts +87 -0
  41. package/core/services/app-bar-mobile-buttons-service.ts +57 -0
  42. package/core/services/dashboard-service.ts +121 -0
  43. package/core/services/global-search-service.ts +36 -0
  44. package/core/services/menu-service.ts +235 -0
  45. package/core/services/settings-menu-service.ts +75 -0
  46. package/core/services/widget-service.ts +147 -0
  47. package/core/types/index.ts +29 -10
  48. package/core/types/widget.ts +15 -0
  49. package/core/utilities/camelToSnake.ts +7 -7
  50. package/core/utilities/camelize.ts +5 -5
  51. package/core/utilities/generateId.ts +3 -3
  52. package/core/utilities/kebabToCamel.ts +7 -7
  53. package/dist/{asn1-DF4fnRHj.js → asn1-jKiBa2Ya.js} +20 -18
  54. package/dist/{clike-l4mx49Q1.js → clike-BUuHEmgZ.js} +0 -1
  55. package/dist/{cobol-CJVkMW0i.js → cobol-BlTKFDRj.js} +0 -1
  56. package/dist/core/composables/index.d.ts +11 -7
  57. package/dist/core/composables/index.d.ts.map +1 -1
  58. package/dist/core/composables/useAppBarMobileButtons/index.d.ts +3 -0
  59. package/dist/core/composables/useAppBarMobileButtons/index.d.ts.map +1 -0
  60. package/dist/core/composables/useAppBarWidget/index.d.ts +5 -0
  61. package/dist/core/composables/useAppBarWidget/index.d.ts.map +1 -0
  62. package/dist/core/composables/useDashboard/index.d.ts +5 -0
  63. package/dist/core/composables/useDashboard/index.d.ts.map +1 -0
  64. package/dist/core/composables/useGlobalSearch/index.d.ts +4 -0
  65. package/dist/core/composables/useGlobalSearch/index.d.ts.map +1 -0
  66. package/dist/core/composables/useKeyboardNavigation/index.d.ts +24 -0
  67. package/dist/core/composables/useKeyboardNavigation/index.d.ts.map +1 -0
  68. package/dist/core/composables/useMenuService/index.d.ts +4 -10
  69. package/dist/core/composables/useMenuService/index.d.ts.map +1 -1
  70. package/dist/core/composables/useSettings/index.d.ts.map +1 -1
  71. package/dist/core/composables/useSettingsMenu/index.d.ts +5 -0
  72. package/dist/core/composables/useSettingsMenu/index.d.ts.map +1 -0
  73. package/dist/core/composables/useTheme/index.d.ts.map +1 -1
  74. package/dist/core/composables/useWidgets/index.d.ts +5 -0
  75. package/dist/core/composables/useWidgets/index.d.ts.map +1 -0
  76. package/dist/core/constants/index.d.ts +1 -0
  77. package/dist/core/constants/index.d.ts.map +1 -1
  78. package/dist/core/directives/loading/index.d.ts.map +1 -1
  79. package/dist/core/plugins/modularity/extensions-helper.d.ts +43 -0
  80. package/dist/core/plugins/modularity/extensions-helper.d.ts.map +1 -0
  81. package/dist/core/plugins/modularity/index.d.ts +8 -7
  82. package/dist/core/plugins/modularity/index.d.ts.map +1 -1
  83. package/dist/core/plugins/modularity/loader.d.ts +8 -1
  84. package/dist/core/plugins/modularity/loader.d.ts.map +1 -1
  85. package/dist/core/plugins/signalR/index.d.ts.map +1 -1
  86. package/dist/core/services/app-bar-menu-service.d.ts +29 -0
  87. package/dist/core/services/app-bar-menu-service.d.ts.map +1 -0
  88. package/dist/core/services/app-bar-mobile-buttons-service.d.ts +24 -0
  89. package/dist/core/services/app-bar-mobile-buttons-service.d.ts.map +1 -0
  90. package/dist/core/services/dashboard-service.d.ts +33 -0
  91. package/dist/core/services/dashboard-service.d.ts.map +1 -0
  92. package/dist/core/services/global-search-service.d.ts +10 -0
  93. package/dist/core/services/global-search-service.d.ts.map +1 -0
  94. package/dist/core/services/menu-service.d.ts +17 -0
  95. package/dist/core/services/menu-service.d.ts.map +1 -0
  96. package/dist/core/services/settings-menu-service.d.ts +25 -0
  97. package/dist/core/services/settings-menu-service.d.ts.map +1 -0
  98. package/dist/core/services/widget-service.d.ts +39 -0
  99. package/dist/core/services/widget-service.d.ts.map +1 -0
  100. package/dist/core/types/index.d.ts +29 -10
  101. package/dist/core/types/index.d.ts.map +1 -1
  102. package/dist/core/types/widget.d.ts +12 -0
  103. package/dist/core/types/widget.d.ts.map +1 -0
  104. package/dist/{dockerfile-CFG_IPGn.js → dockerfile-DIy8NleC.js} +1 -1
  105. package/dist/{factor-DJHfQ4a1.js → factor-DDOC7X6P.js} +1 -1
  106. package/dist/framework.js +276 -228
  107. package/dist/{haxe-pdDS1aE8.js → haxe-70NVW1pR.js} +1 -1
  108. package/dist/index-Bi0kJi5Z.js +137 -0
  109. package/dist/{index-DQP89JB7.js → index-C21NKea4.js} +9 -9
  110. package/dist/{index-lQO4lsVu.js → index-C9n6vRCl.js} +6 -6
  111. package/dist/{index-C2fcXLd3.js → index-CBdNNVCt.js} +8 -8
  112. package/dist/{index-Df8tA8qI.js → index-CNEtPeAi.js} +9 -9
  113. package/dist/index-CPkPLIZF.js +243 -0
  114. package/dist/{index-DaD28rcu.js → index-CUwa-7vt.js} +10 -10
  115. package/dist/{index-Dg25Tarq.js → index-ClEfeR5e.js} +7 -7
  116. package/dist/{index-6afjoxl_.js → index-CtUvgwL1.js} +9 -9
  117. package/dist/{index-DrxadmGH.js → index-D7TQzX3d.js} +7 -7
  118. package/dist/{index-Y1Vd-H3g.js → index-DSYfAsS3.js} +94840 -91585
  119. package/dist/{index-D0rhsYYW.js → index-Dg1vmmpj.js} +5 -5
  120. package/dist/{index-BrmiwSoL.js → index-Dzz7ZfO9.js} +19 -19
  121. package/dist/index-dZEaziXz.js +607 -0
  122. package/dist/{index-BbQdOYmi.js → index-kg3-UkAr.js} +16 -16
  123. package/dist/{index-BrkL9UJR.js → index-vc0H8rq-.js} +42 -42
  124. package/dist/index-vegt24rG.js +308 -0
  125. package/dist/index.css +1 -1
  126. package/dist/index.d.ts +8 -0
  127. package/dist/index.d.ts.map +1 -1
  128. package/dist/injection-keys.d.ts +46 -0
  129. package/dist/injection-keys.d.ts.map +1 -0
  130. package/dist/{javascript-CWGekh08.js → javascript-WMWNx-Vj.js} +1 -1
  131. package/dist/{livescript-CE_BxZmN.js → livescript-CanGTf8u.js} +25 -25
  132. package/dist/locales/de.json +8 -2
  133. package/dist/locales/en.json +8 -3
  134. package/dist/{mllike-1yy7Y7jE.js → mllike-BSnXJBGA.js} +0 -3
  135. package/dist/{nsis-BtA0qkjU.js → nsis-fePjrhq7.js} +1 -1
  136. package/dist/{pascal-ixanSKUz.js → pascal-De0D6mP7.js} +1 -1
  137. package/dist/{pug-CW1q1xhQ.js → pug-BqUR2bBq.js} +1 -1
  138. package/dist/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue.d.ts.map +1 -1
  139. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts +19 -0
  140. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts.map +1 -0
  141. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue.d.ts.map +1 -1
  142. package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts +17 -1
  143. package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts.map +1 -1
  144. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts +5 -1
  145. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
  146. package/dist/shared/components/blade-navigation/types/index.d.ts +9 -0
  147. package/dist/shared/components/blade-navigation/types/index.d.ts.map +1 -1
  148. package/dist/shared/components/change-password-button/change-password-button.vue.d.ts +3 -0
  149. package/dist/shared/components/change-password-button/change-password-button.vue.d.ts.map +1 -0
  150. package/dist/shared/components/change-password-button/index.d.ts +2 -0
  151. package/dist/shared/components/change-password-button/index.d.ts.map +1 -0
  152. package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts +6 -2
  153. package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts.map +1 -1
  154. package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts +6 -2
  155. package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts.map +1 -1
  156. package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts +6 -2
  157. package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts.map +1 -1
  158. package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts +25 -0
  159. package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts.map +1 -0
  160. package/dist/shared/components/dashboard-widget-card/index.d.ts +2 -0
  161. package/dist/shared/components/dashboard-widget-card/index.d.ts.map +1 -0
  162. package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts +8 -0
  163. package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts.map +1 -0
  164. package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts +20 -0
  165. package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts.map +1 -0
  166. package/dist/shared/components/draggable-dashboard/composables/useCellSizeCalculator.d.ts +25 -0
  167. package/dist/shared/components/draggable-dashboard/composables/useCellSizeCalculator.d.ts.map +1 -0
  168. package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts +27 -0
  169. package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts.map +1 -0
  170. package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts +376 -0
  171. package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts.map +1 -0
  172. package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts +20 -0
  173. package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts.map +1 -0
  174. package/dist/shared/components/draggable-dashboard/composables/useDragClone.d.ts +15 -0
  175. package/dist/shared/components/draggable-dashboard/composables/useDragClone.d.ts.map +1 -0
  176. package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts +33 -0
  177. package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts.map +1 -0
  178. package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts +57 -0
  179. package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts.map +1 -0
  180. package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts +22 -0
  181. package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts.map +1 -0
  182. package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts +19 -0
  183. package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts.map +1 -0
  184. package/dist/shared/components/draggable-dashboard/composables/useResizeObserver.d.ts +18 -0
  185. package/dist/shared/components/draggable-dashboard/composables/useResizeObserver.d.ts.map +1 -0
  186. package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts +14 -0
  187. package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts.map +1 -0
  188. package/dist/shared/components/draggable-dashboard/composables/useWidgetStyles.d.ts +21 -0
  189. package/dist/shared/components/draggable-dashboard/composables/useWidgetStyles.d.ts.map +1 -0
  190. package/dist/shared/components/draggable-dashboard/index.d.ts +2 -0
  191. package/dist/shared/components/draggable-dashboard/index.d.ts.map +1 -0
  192. package/dist/shared/components/draggable-dashboard/types.d.ts +84 -0
  193. package/dist/shared/components/draggable-dashboard/types.d.ts.map +1 -0
  194. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts +46 -24
  195. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts.map +1 -1
  196. package/dist/shared/components/index.d.ts +3 -2
  197. package/dist/shared/components/index.d.ts.map +1 -1
  198. package/dist/shared/components/language-selector/language-selector.vue.d.ts.map +1 -1
  199. package/dist/shared/components/logout-button/index.d.ts +2 -0
  200. package/dist/shared/components/logout-button/index.d.ts.map +1 -0
  201. package/dist/shared/components/logout-button/logout-button.vue.d.ts +3 -0
  202. package/dist/shared/components/logout-button/logout-button.vue.d.ts.map +1 -0
  203. package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts +2 -0
  204. package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts.map +1 -0
  205. package/dist/shared/components/notification-dropdown/_internal/notification/notification.vue.d.ts +3 -3
  206. package/dist/shared/components/notification-dropdown/_internal/notification/notification.vue.d.ts.map +1 -1
  207. package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts.map +1 -1
  208. package/dist/shared/components/notifications/components/notification-container/index.d.ts +1 -1
  209. package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
  210. package/dist/shared/components/settings-menu/index.d.ts +2 -0
  211. package/dist/shared/components/settings-menu/index.d.ts.map +1 -0
  212. package/dist/shared/components/settings-menu/settings-menu.vue.d.ts +3 -0
  213. package/dist/shared/components/settings-menu/settings-menu.vue.d.ts.map +1 -0
  214. package/dist/shared/components/settings-menu-item/index.d.ts +2 -0
  215. package/dist/shared/components/settings-menu-item/index.d.ts.map +1 -0
  216. package/dist/shared/components/{menu-item/menu-item.vue.d.ts → settings-menu-item/settings-menu-item.vue.d.ts} +22 -22
  217. package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts.map +1 -0
  218. package/dist/shared/components/sidebar/sidebar.vue.d.ts +6 -2
  219. package/dist/shared/components/sidebar/sidebar.vue.d.ts.map +1 -1
  220. package/dist/shared/components/theme-selector/theme-selector.vue.d.ts.map +1 -1
  221. package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts +1 -0
  222. package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts.map +1 -1
  223. package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts +1 -3
  224. package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts.map +1 -1
  225. package/dist/shared/components/user-dropdown-button/index.d.ts +9 -25
  226. package/dist/shared/components/user-dropdown-button/index.d.ts.map +1 -1
  227. package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts +1 -18
  228. package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts.map +1 -1
  229. package/dist/shared/composables/useMenuExpanded.d.ts +7 -0
  230. package/dist/shared/composables/useMenuExpanded.d.ts.map +1 -0
  231. package/dist/shared/modules/assets/index.d.ts.map +1 -1
  232. package/dist/shared/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts.map +1 -1
  233. package/dist/shared/modules/assets-manager/components/assets-manager/index.d.ts +16 -16
  234. package/dist/shared/modules/dynamic/components/fields/Button.d.ts +1 -1
  235. package/dist/shared/modules/dynamic/components/fields/Card.d.ts +1 -1
  236. package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +1 -1
  237. package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +1 -1
  238. package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts +1 -1
  239. package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +1 -1
  240. package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +1 -1
  241. package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +1 -1
  242. package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +1 -1
  243. package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +1 -1
  244. package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +1 -1
  245. package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +1 -1
  246. package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts +1 -1
  247. package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts +1 -1
  248. package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts +1 -1
  249. package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +1 -1
  250. package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +1 -1
  251. package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts +1 -1
  252. package/dist/shared/modules/dynamic/components/fields/Table.d.ts +1 -1
  253. package/dist/shared/modules/dynamic/components/fields/Table.d.ts.map +1 -1
  254. package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts +1 -1
  255. package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +1 -1
  256. package/dist/shared/modules/dynamic/components/fields/props.d.ts +1 -1
  257. package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts +3 -44
  258. package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts.map +1 -1
  259. package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts +3 -3
  260. package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts.map +1 -1
  261. package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +3 -3
  262. package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts +3 -3
  263. package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +3 -3
  264. package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts +3 -3
  265. package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts +3 -3
  266. package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts +3 -3
  267. package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +3 -3
  268. package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +3 -3
  269. package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts +3 -3
  270. package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts +3 -3
  271. package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts +3 -3
  272. package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts +3 -3
  273. package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts +3 -3
  274. package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +3 -3
  275. package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts +3 -3
  276. package/dist/shared/modules/dynamic/components/fields/storybook/common/templates.d.ts +1 -1
  277. package/dist/shared/modules/dynamic/components/fields/storybook/common/templates.d.ts.map +1 -1
  278. package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts +3 -3
  279. package/dist/shared/modules/dynamic/composables/useFilterBuilder/index.d.ts.map +1 -1
  280. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +2 -2
  281. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts.map +1 -1
  282. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +4 -29
  283. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
  284. package/dist/shared/modules/dynamic/types/index.d.ts +6 -0
  285. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  286. package/dist/shared/pages/InvitePage/components/invite/index.d.ts +8 -8
  287. package/dist/shared/pages/LoginPage/components/login/Login.vue.d.ts.map +1 -1
  288. package/dist/shared/pages/ResetPasswordPage/components/reset-password/index.d.ts +8 -8
  289. package/dist/{simple-mode-HGTvdazT.js → simple-mode-B0dvCdAA.js} +15 -14
  290. package/dist/{sql-uoWIYwDX.js → sql-mMre1Bo3.js} +0 -2
  291. package/dist/tailwind.config.d.ts +1 -81
  292. package/dist/tailwind.config.d.ts.map +1 -1
  293. package/dist/tsconfig.tsbuildinfo +1 -1
  294. package/dist/{ttcn-DmjTzZb6.js → ttcn-Bsa4sfRm.js} +20 -22
  295. package/dist/{ttcn-cfg-B2U3U7dn.js → ttcn-cfg-Bac_acMi.js} +15 -17
  296. package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts.map +1 -1
  297. package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts +169 -734
  298. package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts.map +1 -1
  299. package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts +18 -2
  300. package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts.map +1 -1
  301. package/dist/ui/components/atoms/vc-card/index.d.ts +2 -0
  302. package/dist/ui/components/atoms/vc-card/index.d.ts.map +1 -1
  303. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +36 -24
  304. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +1 -1
  305. package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts +2 -0
  306. package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts.map +1 -1
  307. package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts +18 -0
  308. package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts.map +1 -0
  309. package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts +18 -0
  310. package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts.map +1 -0
  311. package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts +18 -0
  312. package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts.map +1 -0
  313. package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts +18 -0
  314. package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts.map +1 -0
  315. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts +18 -0
  316. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts.map +1 -0
  317. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts +18 -0
  318. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts.map +1 -0
  319. package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts +18 -0
  320. package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts.map +1 -0
  321. package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts +18 -0
  322. package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts.map +1 -0
  323. package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts +18 -0
  324. package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts.map +1 -0
  325. package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts +18 -0
  326. package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts.map +1 -0
  327. package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts +18 -0
  328. package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts.map +1 -0
  329. package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts +18 -0
  330. package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts.map +1 -0
  331. package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts +18 -0
  332. package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts.map +1 -0
  333. package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts +18 -0
  334. package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts.map +1 -0
  335. package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts +18 -0
  336. package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts.map +1 -0
  337. package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts +18 -0
  338. package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts.map +1 -0
  339. package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts +18 -0
  340. package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts.map +1 -0
  341. package/dist/ui/components/atoms/vc-icon/icons/index.d.ts +16 -0
  342. package/dist/ui/components/atoms/vc-icon/icons/index.d.ts.map +1 -1
  343. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
  344. package/dist/ui/components/atoms/vc-image/vc-image.vue.d.ts.map +1 -1
  345. package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts +9 -0
  346. package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts.map +1 -1
  347. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts +1 -0
  348. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
  349. package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts +35 -0
  350. package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts.map +1 -0
  351. package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts +15 -0
  352. package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts.map +1 -1
  353. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts +7 -0
  354. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts.map +1 -1
  355. package/dist/ui/components/atoms/vc-widget/index.d.ts +6 -0
  356. package/dist/ui/components/atoms/vc-widget/index.d.ts.map +1 -1
  357. package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts +6 -0
  358. package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts.map +1 -1
  359. package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts +1 -3
  360. package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts.map +1 -1
  361. package/dist/ui/components/index.d.ts +1 -0
  362. package/dist/ui/components/index.d.ts.map +1 -1
  363. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts +67 -33
  364. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts.map +1 -1
  365. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts +25 -11
  366. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts.map +1 -1
  367. package/dist/ui/components/molecules/vc-checkbox/index.d.ts +21 -4
  368. package/dist/ui/components/molecules/vc-checkbox/index.d.ts.map +1 -1
  369. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts +210 -40
  370. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts.map +1 -1
  371. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts +10 -4
  372. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
  373. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
  374. package/dist/ui/components/molecules/vc-field/vc-field.stories.d.ts +3 -3
  375. package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +1 -1
  376. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.stories.d.ts +12 -12
  377. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +24 -24
  378. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
  379. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
  380. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +18 -18
  381. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
  382. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts +84 -84
  383. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +12 -12
  384. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
  385. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
  386. package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +240 -240
  387. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +24 -24
  388. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  389. package/dist/ui/components/molecules/vc-slider/index.d.ts +9 -9
  390. package/dist/ui/components/molecules/vc-slider/vc-slider.stories.d.ts +9 -9
  391. package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts +63 -0
  392. package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts.map +1 -1
  393. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +1 -0
  394. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
  395. package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts +19 -0
  396. package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts.map +1 -0
  397. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts +25 -0
  398. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts.map +1 -0
  399. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts +32 -0
  400. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts.map +1 -0
  401. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts +17 -0
  402. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts.map +1 -0
  403. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts +30 -0
  404. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts.map +1 -0
  405. package/dist/{shared/components/app-bar-button/app-bar-button.vue.d.ts → ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts} +18 -24
  406. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts.map +1 -0
  407. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue.d.ts +3 -0
  408. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue.d.ts.map +1 -0
  409. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts +40 -0
  410. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts.map +1 -0
  411. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.d.ts +9 -0
  412. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.d.ts.map +1 -0
  413. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.d.ts +8 -0
  414. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.d.ts.map +1 -0
  415. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.d.ts +23 -0
  416. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.d.ts.map +1 -0
  417. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts +6 -13
  418. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts.map +1 -1
  419. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue.d.ts +3 -2
  420. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue.d.ts.map +1 -1
  421. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts +2 -1
  422. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts.map +1 -1
  423. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts +3 -12
  424. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts.map +1 -1
  425. package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts +13 -107
  426. package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts.map +1 -1
  427. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts +5 -105
  428. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts.map +1 -1
  429. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts +1 -0
  430. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts.map +1 -1
  431. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue.d.ts +48 -0
  432. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue.d.ts.map +1 -0
  433. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/{vc-blade-toolbar-button → vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button}/vc-blade-toolbar-button.vue.d.ts +10 -1
  434. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue.d.ts.map +1 -0
  435. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue.d.ts +40 -0
  436. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue.d.ts.map +1 -0
  437. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue.d.ts +19 -0
  438. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue.d.ts.map +1 -0
  439. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue.d.ts +17 -0
  440. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue.d.ts.map +1 -0
  441. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue.d.ts +19 -0
  442. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue.d.ts.map +1 -0
  443. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts +2 -6
  444. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts.map +1 -1
  445. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts +3 -0
  446. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts.map +1 -0
  447. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts +16 -0
  448. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts.map +1 -0
  449. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts +16 -0
  450. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts.map +1 -0
  451. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts +15 -0
  452. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts.map +1 -0
  453. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts +2 -0
  454. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts.map +1 -1
  455. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +56 -0
  456. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
  457. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts +3 -3
  458. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts.map +1 -1
  459. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts +2 -2
  460. package/dist/ui/components/organisms/vc-gallery/vc-gallery.stories.d.ts +13 -13
  461. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +1 -1
  462. package/dist/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue.d.ts.map +1 -1
  463. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +3 -2
  464. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
  465. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts +2 -1
  466. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
  467. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts +218 -0
  468. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts.map +1 -0
  469. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts +118 -0
  470. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts.map +1 -0
  471. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +236 -0
  472. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts.map +1 -0
  473. package/dist/{shared/components/user-dropdown-button/_internal/user-actions.vue.d.ts → ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-select-all-header/vc-table-select-all-header.vue.d.ts} +9 -6
  474. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-select-all-header/vc-table-select-all-header.vue.d.ts.map +1 -0
  475. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +314 -0
  476. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts.map +1 -0
  477. package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts +1 -1
  478. package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts.map +1 -1
  479. package/dist/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue.d.ts.map +1 -1
  480. package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts +32 -0
  481. package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts.map +1 -0
  482. package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts +66 -0
  483. package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts.map +1 -0
  484. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts +6 -13
  485. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts.map +1 -1
  486. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts +229 -0
  487. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts.map +1 -0
  488. package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts +38 -0
  489. package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts.map +1 -0
  490. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts +17 -0
  491. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts.map +1 -0
  492. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts +407 -0
  493. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts.map +1 -0
  494. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts +9 -0
  495. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts.map +1 -0
  496. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts +16 -0
  497. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts.map +1 -0
  498. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts +23 -0
  499. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts.map +1 -0
  500. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts +20 -0
  501. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts.map +1 -0
  502. package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts +12 -0
  503. package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts.map +1 -0
  504. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +120 -735
  505. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
  506. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +44 -135
  507. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  508. package/dist/ui/composables/useVisibleElements.d.ts +19 -0
  509. package/dist/ui/composables/useVisibleElements.d.ts.map +1 -0
  510. package/dist/{xquery-xQxle02u.js → xquery-BUQdORAS.js} +72 -76
  511. package/package.json +13 -6
  512. package/shared/components/app-switcher/components/vc-app-switcher/index.ts +1 -1
  513. package/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +1 -3
  514. package/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue +77 -0
  515. package/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue +17 -5
  516. package/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.ts +16 -4
  517. package/shared/components/blade-navigation/composables/useBladeNavigation/index.ts +14 -4
  518. package/shared/components/blade-navigation/types/index.ts +10 -0
  519. package/shared/components/change-password/change-password.vue +2 -2
  520. package/shared/components/change-password-button/change-password-button.vue +20 -0
  521. package/shared/components/change-password-button/index.ts +1 -0
  522. package/shared/components/common/popup/vc-popup-error.vue +11 -0
  523. package/shared/components/common/popup/vc-popup-info.vue +11 -0
  524. package/shared/components/common/popup/vc-popup-warning.vue +11 -0
  525. package/shared/components/dashboard-widget-card/dashboard-widget-card.vue +67 -0
  526. package/shared/components/dashboard-widget-card/index.ts +1 -0
  527. package/shared/components/draggable-dashboard/DraggableDashboard.vue +332 -0
  528. package/shared/components/draggable-dashboard/_internal/DashboardWidget.vue +117 -0
  529. package/shared/components/draggable-dashboard/composables/useCellSizeCalculator.ts +121 -0
  530. package/shared/components/draggable-dashboard/composables/useCollisionDetection.ts +219 -0
  531. package/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.ts +342 -0
  532. package/shared/components/draggable-dashboard/composables/useDashboardGrid.ts +104 -0
  533. package/shared/components/draggable-dashboard/composables/useDragClone.ts +97 -0
  534. package/shared/components/draggable-dashboard/composables/useEventCoordinates.ts +91 -0
  535. package/shared/components/draggable-dashboard/composables/useGridPosition.ts +150 -0
  536. package/shared/components/draggable-dashboard/composables/useGridSystem.ts +169 -0
  537. package/shared/components/draggable-dashboard/composables/useLayoutPersistence.ts +89 -0
  538. package/shared/components/draggable-dashboard/composables/useResizeObserver.ts +105 -0
  539. package/shared/components/draggable-dashboard/composables/useWidgetLayout.ts +264 -0
  540. package/shared/components/draggable-dashboard/composables/useWidgetStyles.ts +120 -0
  541. package/shared/components/draggable-dashboard/index.ts +1 -0
  542. package/shared/components/draggable-dashboard/types.ts +96 -0
  543. package/shared/components/error-interceptor/interceptor.ts +44 -44
  544. package/shared/components/generic-dropdown/generic-dropdown.vue +83 -35
  545. package/shared/components/index.ts +3 -2
  546. package/shared/components/language-selector/language-selector.vue +68 -42
  547. package/shared/components/logout-button/index.ts +1 -0
  548. package/shared/components/logout-button/logout-button.vue +27 -0
  549. package/shared/components/notification-dropdown/_internal/notification/index.ts +1 -0
  550. package/shared/components/notification-dropdown/_internal/notification/notification.vue +23 -22
  551. package/shared/components/notification-dropdown/notification-dropdown.vue +45 -52
  552. package/shared/components/notifications/styles/index.scss +10 -10
  553. package/shared/components/settings-menu/index.ts +1 -0
  554. package/shared/components/settings-menu/settings-menu.vue +25 -0
  555. package/shared/components/settings-menu-item/index.ts +1 -0
  556. package/shared/components/settings-menu-item/settings-menu-item.vue +136 -0
  557. package/shared/components/sidebar/sidebar.vue +68 -42
  558. package/shared/components/theme-selector/theme-selector.vue +59 -28
  559. package/shared/components/user-dropdown-button/_internal/user-info.vue +34 -13
  560. package/shared/components/user-dropdown-button/_internal/user-sidebar.vue +4 -29
  561. package/shared/components/user-dropdown-button/user-dropdown-button.vue +37 -51
  562. package/shared/composables/useMenuExpanded.ts +40 -0
  563. package/shared/modules/assets/components/assets-details/assets-details.vue +2 -2
  564. package/shared/modules/assets/index.ts +0 -1
  565. package/shared/modules/assets-manager/components/assets-manager/assets-manager.vue +0 -1
  566. package/shared/modules/dynamic/components/FIELD_MAP.ts +53 -53
  567. package/shared/modules/dynamic/components/SchemaRender.ts +102 -102
  568. package/shared/modules/dynamic/components/factories.ts +244 -244
  569. package/shared/modules/dynamic/components/fields/Button.ts +44 -44
  570. package/shared/modules/dynamic/components/fields/Card.ts +119 -119
  571. package/shared/modules/dynamic/components/fields/Checkbox.ts +53 -53
  572. package/shared/modules/dynamic/components/fields/ContentField.ts +33 -33
  573. package/shared/modules/dynamic/components/fields/CustomComponent.ts +29 -29
  574. package/shared/modules/dynamic/components/fields/DynamicProperty.ts +141 -141
  575. package/shared/modules/dynamic/components/fields/EditorField.ts +46 -46
  576. package/shared/modules/dynamic/components/fields/Fieldset.ts +65 -65
  577. package/shared/modules/dynamic/components/fields/GalleryField.ts +161 -161
  578. package/shared/modules/dynamic/components/fields/ImageField.ts +35 -35
  579. package/shared/modules/dynamic/components/fields/InputCurrency.ts +79 -79
  580. package/shared/modules/dynamic/components/fields/InputField.ts +81 -81
  581. package/shared/modules/dynamic/components/fields/MultivalueField.ts +68 -68
  582. package/shared/modules/dynamic/components/fields/RadioButtonGroup.ts +82 -82
  583. package/shared/modules/dynamic/components/fields/RatingField.ts +28 -28
  584. package/shared/modules/dynamic/components/fields/SelectField.ts +72 -72
  585. package/shared/modules/dynamic/components/fields/StatusField.ts +110 -110
  586. package/shared/modules/dynamic/components/fields/SwitchField.ts +29 -29
  587. package/shared/modules/dynamic/components/fields/Table.ts +1 -2
  588. package/shared/modules/dynamic/components/fields/TextareaField.ts +46 -46
  589. package/shared/modules/dynamic/components/fields/ValidationField.ts +54 -54
  590. package/shared/modules/dynamic/components/fields/VideoField.ts +30 -30
  591. package/shared/modules/dynamic/components/fields/props.ts +39 -39
  592. package/shared/modules/dynamic/components/fields/storybook/Button.stories.ts +2 -63
  593. package/shared/modules/dynamic/components/fields/storybook/Card.stories.ts +1 -2
  594. package/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.ts +185 -185
  595. package/shared/modules/dynamic/components/fields/storybook/ContentField.stories.ts +245 -245
  596. package/shared/modules/dynamic/components/fields/storybook/EditorField.stories.ts +192 -192
  597. package/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.ts +347 -347
  598. package/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.ts +239 -239
  599. package/shared/modules/dynamic/components/fields/storybook/ImageField.stories.ts +186 -186
  600. package/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.ts +281 -281
  601. package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +312 -312
  602. package/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.ts +361 -361
  603. package/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.ts +224 -224
  604. package/shared/modules/dynamic/components/fields/storybook/RatingField.stories.ts +131 -131
  605. package/shared/modules/dynamic/components/fields/storybook/SelectField.stories.ts +666 -666
  606. package/shared/modules/dynamic/components/fields/storybook/StatusField.stories.ts +202 -202
  607. package/shared/modules/dynamic/components/fields/storybook/SwitchField.stories.ts +178 -178
  608. package/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.ts +203 -203
  609. package/shared/modules/dynamic/components/fields/storybook/VideoField.stories.ts +92 -92
  610. package/shared/modules/dynamic/components/fields/storybook/common/args.ts +130 -130
  611. package/shared/modules/dynamic/components/fields/storybook/common/templates.ts +1 -1
  612. package/shared/modules/dynamic/components/index.ts +4 -4
  613. package/shared/modules/dynamic/composables/index.ts +4 -4
  614. package/shared/modules/dynamic/composables/useDynamicViewsUtils/index.ts +46 -46
  615. package/shared/modules/dynamic/composables/useFilterBuilder/index.ts +31 -22
  616. package/shared/modules/dynamic/composables/useTableTemplates/index.ts +67 -67
  617. package/shared/modules/dynamic/composables/useToolbarReducer/index.ts +70 -70
  618. package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +144 -144
  619. package/shared/modules/dynamic/factories/base/useListFactory.ts +68 -68
  620. package/shared/modules/dynamic/factories/index.ts +4 -4
  621. package/shared/modules/dynamic/factories/types/index.ts +229 -229
  622. package/shared/modules/dynamic/helpers/getters.ts +12 -12
  623. package/shared/modules/dynamic/helpers/methodHandler.ts +22 -22
  624. package/shared/modules/dynamic/helpers/nodeBuilder.ts +1 -1
  625. package/shared/modules/dynamic/helpers/override.ts +153 -153
  626. package/shared/modules/dynamic/helpers/safeIn.ts +6 -6
  627. package/shared/modules/dynamic/helpers/setters.ts +24 -24
  628. package/shared/modules/dynamic/helpers/unrefNested.ts +14 -14
  629. package/shared/modules/dynamic/helpers/unwrapInterpolation.ts +16 -16
  630. package/shared/modules/dynamic/pages/dynamic-blade-form.vue +69 -31
  631. package/shared/modules/dynamic/pages/dynamic-blade-list.vue +170 -202
  632. package/shared/modules/dynamic/types/index.ts +6 -0
  633. package/shared/pages/ChangePasswordPage/components/change-password/index.ts +3 -3
  634. package/shared/pages/ChangePasswordPage/components/index.ts +1 -1
  635. package/shared/pages/ChangePasswordPage/index.ts +1 -1
  636. package/shared/pages/ChangePasswordPage/plugin.ts +4 -4
  637. package/shared/pages/InvitePage/components/index.ts +1 -1
  638. package/shared/pages/InvitePage/components/invite/Invite.vue +216 -216
  639. package/shared/pages/InvitePage/components/invite/index.ts +3 -3
  640. package/shared/pages/InvitePage/index.ts +1 -1
  641. package/shared/pages/InvitePage/plugin.ts +4 -4
  642. package/shared/pages/LoginPage/components/index.ts +1 -1
  643. package/shared/pages/LoginPage/components/login/Login.vue +27 -4
  644. package/shared/pages/LoginPage/components/login/README.md +52 -0
  645. package/shared/pages/LoginPage/components/login/index.ts +3 -3
  646. package/shared/pages/LoginPage/index.ts +1 -1
  647. package/shared/pages/LoginPage/plugin.ts +4 -4
  648. package/shared/pages/ResetPasswordPage/components/index.ts +1 -1
  649. package/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue +1 -1
  650. package/shared/pages/ResetPasswordPage/components/reset-password/index.ts +3 -3
  651. package/shared/pages/ResetPasswordPage/index.ts +1 -1
  652. package/shared/pages/ResetPasswordPage/plugin.ts +4 -4
  653. package/shared/pages/index.ts +4 -4
  654. package/shared/pages/plugin.ts +4 -4
  655. package/shared/utilities/assets.ts +42 -42
  656. package/shared/utilities/vueUtils.ts +50 -50
  657. package/tailwind.config.ts +4 -3
  658. package/ui/components/atoms/vc-badge/index.ts +1 -1
  659. package/ui/components/atoms/vc-badge/vc-badge.stories.ts +53 -53
  660. package/ui/components/atoms/vc-badge/vc-badge.vue +26 -10
  661. package/ui/components/atoms/vc-button/vc-button.stories.ts +1 -16
  662. package/ui/components/atoms/vc-button/vc-button.vue +78 -64
  663. package/ui/components/atoms/vc-card/index.ts +3 -3
  664. package/ui/components/atoms/vc-card/vc-card.stories.ts +1 -1
  665. package/ui/components/atoms/vc-card/vc-card.vue +15 -10
  666. package/ui/components/atoms/vc-col/index.ts +1 -1
  667. package/ui/components/atoms/vc-col/vc-col.stories.ts +22 -22
  668. package/ui/components/atoms/vc-col/vc-col.vue +29 -29
  669. package/ui/components/atoms/vc-container/index.ts +10 -10
  670. package/ui/components/atoms/vc-container/vc-container.stories.ts +29 -29
  671. package/ui/components/atoms/vc-hint/index.ts +10 -10
  672. package/ui/components/atoms/vc-hint/vc-hint.stories.ts +23 -23
  673. package/ui/components/atoms/vc-hint/vc-hint.vue +1 -1
  674. package/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue +9 -26
  675. package/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue +14 -18
  676. package/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue +7 -18
  677. package/ui/components/atoms/vc-icon/icons/BellIcon.vue +8 -23
  678. package/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue +13 -0
  679. package/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue +13 -0
  680. package/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue +13 -0
  681. package/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue +13 -0
  682. package/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue +10 -35
  683. package/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue +14 -18
  684. package/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue +14 -0
  685. package/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue +14 -0
  686. package/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue +27 -0
  687. package/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue +22 -0
  688. package/ui/components/atoms/vc-icon/icons/LogoutIcon.vue +7 -18
  689. package/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue +14 -18
  690. package/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue +8 -18
  691. package/ui/components/atoms/vc-icon/icons/OffersIcon.vue +23 -0
  692. package/ui/components/atoms/vc-icon/icons/OrdersIcon.vue +19 -0
  693. package/ui/components/atoms/vc-icon/icons/PeopleIcon.vue +21 -0
  694. package/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue +14 -18
  695. package/ui/components/atoms/vc-icon/icons/ProductsIcon.vue +23 -0
  696. package/ui/components/atoms/vc-icon/icons/ProfileIcon.vue +18 -0
  697. package/ui/components/atoms/vc-icon/icons/SearchIcon.vue +14 -0
  698. package/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue +15 -25
  699. package/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue +16 -0
  700. package/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue +26 -0
  701. package/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue +19 -0
  702. package/ui/components/atoms/vc-icon/icons/index.ts +27 -11
  703. package/ui/components/atoms/vc-icon/vc-icon.vue +35 -13
  704. package/ui/components/atoms/vc-image/index.ts +1 -1
  705. package/ui/components/atoms/vc-image/vc-image.stories.ts +85 -85
  706. package/ui/components/atoms/vc-image/vc-image.vue +18 -2
  707. package/ui/components/atoms/vc-label/index.ts +1 -1
  708. package/ui/components/atoms/vc-label/vc-label.stories.ts +31 -31
  709. package/ui/components/atoms/vc-label/vc-label.vue +12 -1
  710. package/ui/components/atoms/vc-link/index.ts +10 -10
  711. package/ui/components/atoms/vc-link/vc-link.stories.ts +37 -37
  712. package/ui/components/atoms/vc-link/vc-link.vue +54 -54
  713. package/ui/components/atoms/vc-loading/index.ts +3 -3
  714. package/ui/components/atoms/vc-loading/vc-loading.stories.ts +18 -18
  715. package/ui/components/atoms/vc-loading/vc-loading.vue +58 -58
  716. package/ui/components/atoms/vc-progress/index.ts +10 -10
  717. package/ui/components/atoms/vc-progress/vc-progress.stories.ts +30 -30
  718. package/ui/components/atoms/vc-progress/vc-progress.vue +1 -1
  719. package/ui/components/atoms/vc-row/index.ts +1 -1
  720. package/ui/components/atoms/vc-row/vc-row.stories.ts +20 -20
  721. package/ui/components/atoms/vc-row/vc-row.vue +22 -22
  722. package/ui/components/atoms/vc-skeleton/vc-skeleton.vue +51 -0
  723. package/ui/components/atoms/vc-status/index.ts +1 -1
  724. package/ui/components/atoms/vc-status/vc-status.stories.ts +85 -85
  725. package/ui/components/atoms/vc-status/vc-status.vue +57 -23
  726. package/ui/components/atoms/vc-status-icon/index.ts +1 -1
  727. package/ui/components/atoms/vc-switch/index.ts +1 -1
  728. package/ui/components/atoms/vc-switch/vc-switch.vue +5 -7
  729. package/ui/components/atoms/vc-tooltip/index.ts +1 -1
  730. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +7 -7
  731. package/ui/components/atoms/vc-video/index.ts +1 -1
  732. package/ui/components/atoms/vc-video/vc-video.stories.ts +19 -19
  733. package/ui/components/atoms/vc-widget/index.ts +3 -3
  734. package/ui/components/atoms/vc-widget/vc-widget.stories.ts +20 -20
  735. package/ui/components/atoms/vc-widget/vc-widget.vue +73 -55
  736. package/ui/components/index.ts +2 -0
  737. package/ui/components/molecules/index.ts +16 -16
  738. package/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue +89 -92
  739. package/ui/components/molecules/vc-breadcrumbs/index.ts +1 -1
  740. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.ts +43 -43
  741. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +157 -121
  742. package/ui/components/molecules/vc-checkbox/index.ts +3 -3
  743. package/ui/components/molecules/vc-checkbox/vc-checkbox.stories.ts +84 -84
  744. package/ui/components/molecules/vc-checkbox/vc-checkbox.vue +185 -119
  745. package/ui/components/molecules/vc-editor/index.ts +1 -1
  746. package/ui/components/molecules/vc-editor/vc-editor.stories.ts +29 -29
  747. package/ui/components/molecules/vc-editor/vc-editor.vue +33 -3
  748. package/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue +96 -96
  749. package/ui/components/molecules/vc-field/index.ts +1 -1
  750. package/ui/components/molecules/vc-field/vc-field.stories.ts +114 -114
  751. package/ui/components/molecules/vc-field/vc-field.vue +1 -1
  752. package/ui/components/molecules/vc-file-upload/index.ts +1 -1
  753. package/ui/components/molecules/vc-file-upload/vc-file-upload.stories.ts +39 -39
  754. package/ui/components/molecules/vc-file-upload/vc-file-upload.vue +2 -2
  755. package/ui/components/molecules/vc-form/index.ts +10 -10
  756. package/ui/components/molecules/vc-form/vc-form.stories.ts +25 -25
  757. package/ui/components/molecules/vc-form/vc-form.vue +5 -5
  758. package/ui/components/molecules/vc-input/index.ts +1 -1
  759. package/ui/components/molecules/vc-input/vc-input.stories.ts +165 -165
  760. package/ui/components/molecules/vc-input/vc-input.vue +57 -13
  761. package/ui/components/molecules/vc-input-currency/index.ts +1 -1
  762. package/ui/components/molecules/vc-input-currency/vc-input-currency.stories.ts +83 -83
  763. package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +20 -0
  764. package/ui/components/molecules/vc-multivalue/index.ts +1 -1
  765. package/ui/components/molecules/vc-multivalue/vc-multivalue.stories.ts +120 -120
  766. package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +69 -16
  767. package/ui/components/molecules/vc-notification/index.ts +1 -1
  768. package/ui/components/molecules/vc-notification/vc-notification.vue +1 -1
  769. package/ui/components/molecules/vc-pagination/index.ts +3 -3
  770. package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +24 -24
  771. package/ui/components/molecules/vc-pagination/vc-pagination.vue +44 -98
  772. package/ui/components/molecules/vc-radio-button/index.ts +1 -1
  773. package/ui/components/molecules/vc-radio-button/vc-radio-button.stories.ts +97 -97
  774. package/ui/components/molecules/vc-radio-button/vc-radio-button.vue +13 -8
  775. package/ui/components/molecules/vc-rating/index.ts +1 -1
  776. package/ui/components/molecules/vc-rating/vc-rating.stories.ts +59 -59
  777. package/ui/components/molecules/vc-select/index.ts +1 -1
  778. package/ui/components/molecules/vc-select/vc-select.stories.ts +685 -685
  779. package/ui/components/molecules/vc-select/vc-select.vue +85 -26
  780. package/ui/components/molecules/vc-slider/index.ts +13 -13
  781. package/ui/components/molecules/vc-slider/vc-slider.stories.ts +61 -61
  782. package/ui/components/molecules/vc-slider/vc-slider.vue +118 -118
  783. package/ui/components/molecules/vc-textarea/index.ts +1 -1
  784. package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +53 -53
  785. package/ui/components/molecules/vc-textarea/vc-textarea.vue +37 -8
  786. package/ui/components/organisms/index.ts +7 -7
  787. package/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.ts +97 -0
  788. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue +48 -0
  789. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue +173 -0
  790. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue +102 -0
  791. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue +90 -0
  792. package/{shared/components/app-bar-button/app-bar-button.vue → ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue} +55 -78
  793. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue +110 -0
  794. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue +172 -0
  795. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.ts +51 -0
  796. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.ts +27 -0
  797. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.ts +66 -0
  798. package/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue +347 -266
  799. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue +152 -84
  800. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue +2 -2
  801. package/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue +83 -104
  802. package/ui/components/organisms/vc-app/vc-app.stories.ts +214 -214
  803. package/ui/components/organisms/vc-app/vc-app.vue +102 -76
  804. package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +135 -86
  805. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue +136 -0
  806. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/{vc-blade-toolbar-button → vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button}/vc-blade-toolbar-button.vue +54 -18
  807. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue +101 -0
  808. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue +182 -0
  809. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue +146 -0
  810. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue +32 -0
  811. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue +20 -206
  812. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.ts +2 -0
  813. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue +96 -0
  814. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue +184 -0
  815. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue +113 -0
  816. package/ui/components/organisms/vc-blade/index.ts +1 -1
  817. package/ui/components/organisms/vc-blade/vc-blade.stories.ts +83 -83
  818. package/ui/components/organisms/vc-blade/vc-blade.vue +145 -167
  819. package/ui/components/organisms/vc-dynamic-property/index.ts +1 -1
  820. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue +163 -163
  821. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue +1 -1
  822. package/ui/components/organisms/vc-gallery/index.ts +1 -1
  823. package/ui/components/organisms/vc-gallery/vc-gallery.stories.ts +91 -91
  824. package/ui/components/organisms/vc-gallery/vc-gallery.vue +348 -348
  825. package/ui/components/organisms/vc-login-form/index.ts +1 -1
  826. package/ui/components/organisms/vc-popup/index.ts +3 -3
  827. package/ui/components/organisms/vc-popup/vc-popup.vue +5 -5
  828. package/ui/components/organisms/vc-table/_internal/vc-table-add-new/vc-table-add-new.vue +63 -63
  829. package/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue +21 -17
  830. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +7 -6
  831. package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +4 -3
  832. package/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue +4 -3
  833. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue +133 -0
  834. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue +250 -0
  835. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue +238 -0
  836. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-select-all-header/vc-table-select-all-header.vue +54 -0
  837. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue +214 -0
  838. package/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue +2 -7
  839. package/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue +50 -22
  840. package/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue +62 -0
  841. package/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue +160 -0
  842. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +47 -69
  843. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue +386 -0
  844. package/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue +118 -0
  845. package/ui/components/organisms/vc-table/composables/useTableActions.ts +56 -0
  846. package/ui/components/organisms/vc-table/composables/useTableColumnReorder.ts +255 -0
  847. package/ui/components/organisms/vc-table/composables/useTableColumnResize.ts +147 -0
  848. package/ui/components/organisms/vc-table/composables/useTableRowReorder.ts +175 -0
  849. package/ui/components/organisms/vc-table/composables/useTableSelection.ts +118 -0
  850. package/ui/components/organisms/vc-table/composables/useTableState.ts +230 -0
  851. package/ui/components/organisms/vc-table/composables/useTableSwipe.ts +32 -0
  852. package/ui/components/organisms/vc-table/index.ts +1 -1
  853. package/ui/components/organisms/vc-table/vc-table.stories.ts +214 -214
  854. package/ui/components/organisms/vc-table/vc-table.vue +278 -1314
  855. package/ui/composables/useVisibleElements.ts +148 -0
  856. package/dist/index-CUGEM4hi.js +0 -243
  857. package/dist/index-D8jMD-EZ.js +0 -312
  858. package/dist/index-DrL4GDih.js +0 -135
  859. package/dist/index-DulPT6l3.js +0 -598
  860. package/dist/shared/components/app-bar-button/app-bar-button.vue.d.ts.map +0 -1
  861. package/dist/shared/components/app-bar-button/index.d.ts +0 -2
  862. package/dist/shared/components/app-bar-button/index.d.ts.map +0 -1
  863. package/dist/shared/components/blade-navigation/injectionKeys.d.ts +0 -4
  864. package/dist/shared/components/blade-navigation/injectionKeys.d.ts.map +0 -1
  865. package/dist/shared/components/menu-item/index.d.ts +0 -2
  866. package/dist/shared/components/menu-item/index.d.ts.map +0 -1
  867. package/dist/shared/components/menu-item/menu-item.vue.d.ts.map +0 -1
  868. package/dist/shared/components/user-dropdown-button/_internal/user-actions.vue.d.ts.map +0 -1
  869. package/dist/shared/components/user-dropdown-button/composables/useUserActions.d.ts +0 -3921
  870. package/dist/shared/components/user-dropdown-button/composables/useUserActions.d.ts.map +0 -1
  871. package/dist/ui/components/organisms/vc-app/composables/useToolbarSlots.d.ts +0 -5
  872. package/dist/ui/components/organisms/vc-app/composables/useToolbarSlots.d.ts.map +0 -1
  873. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue.d.ts.map +0 -1
  874. package/shared/components/app-bar-button/index.ts +0 -1
  875. package/shared/components/blade-navigation/injectionKeys.ts +0 -4
  876. package/shared/components/menu-item/index.ts +0 -1
  877. package/shared/components/menu-item/menu-item.vue +0 -111
  878. package/shared/components/user-dropdown-button/_internal/user-actions.vue +0 -68
  879. package/shared/components/user-dropdown-button/composables/useUserActions.ts +0 -56
  880. package/ui/components/organisms/vc-app/composables/useToolbarSlots.ts +0 -37
@@ -8,7 +8,6 @@ export interface Props {
8
8
  options?: unknown;
9
9
  model?: DynamicGridSchema;
10
10
  composables?: Record<string, (...args: any[]) => Record<string, any>>;
11
- isWidgetView?: boolean;
12
11
  mixinFn?: ((...args: any[]) => any)[];
13
12
  }
14
13
  export interface Emits {
@@ -17,13 +16,8 @@ export interface Emits {
17
16
  (event: "collapse:blade"): void;
18
17
  (event: "expand:blade"): void;
19
18
  (event: "close:children"): void;
20
- (event: "item-click", args: {
21
- param: string | undefined;
22
- }): void;
23
- (event: "add"): void;
24
19
  }
25
- declare function updateActiveWidgetCount(): void;
26
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
20
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
27
21
  expanded: boolean;
28
22
  closable: boolean;
29
23
  param: undefined;
@@ -47,7 +41,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
47
41
  title?: string | undefined;
48
42
  isVisible?: boolean | undefined;
49
43
  clickHandler?: ((app?: Record<string, any> | import("../../../components").CoreBladeExposed | null | undefined) => void) | undefined;
50
- separator?: "right" | "left" | "both" | undefined;
44
+ separator?: "left" | "right" | "both" | undefined;
51
45
  permissions?: string | string[] | undefined;
52
46
  }[] | {
53
47
  [x: string]: import("vue").MaybeRef<import("../../../../core/types").IBladeToolbar[]> | import("vue").MaybeRef<import("../../../../core/types").IBladeToolbar>;
@@ -58,48 +52,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
58
52
  title?: string | undefined;
59
53
  isVisible?: boolean | undefined;
60
54
  clickHandler?: ((app?: Record<string, any> | import("../../../components").CoreBladeExposed | null | undefined) => void) | undefined;
61
- separator?: "right" | "left" | "both" | undefined;
55
+ separator?: "left" | "right" | "both" | undefined;
62
56
  permissions?: string | string[] | undefined;
63
57
  }[] | {
64
58
  [x: string]: import("vue").MaybeRef<import("../../../../core/types").IBladeToolbar[]> | import("vue").MaybeRef<import("../../../../core/types").IBladeToolbar>;
65
59
  } | ((...args: any[]) => any) | undefined> | undefined;
66
60
  reload: () => Promise<void>;
67
61
  title: ComputedRef<string>;
68
- updateActiveWidgetCount: typeof updateActiveWidgetCount;
69
62
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
70
63
  "parent:call": (args: IParentCallArgs) => void;
71
64
  "close:blade": () => void;
72
65
  "collapse:blade": () => void;
73
66
  "expand:blade": () => void;
74
67
  "close:children": () => void;
75
- "item-click": (args: {
76
- param: string | undefined;
77
- }) => void;
78
- add: () => void;
79
68
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
80
69
  expanded: boolean;
81
70
  closable: boolean;
82
71
  param: undefined;
83
72
  }>>> & Readonly<{
84
- onAdd?: (() => any) | undefined;
85
73
  "onClose:blade"?: (() => any) | undefined;
86
74
  "onExpand:blade"?: (() => any) | undefined;
87
75
  "onCollapse:blade"?: (() => any) | undefined;
88
76
  "onParent:call"?: ((args: IParentCallArgs) => any) | undefined;
89
- "onItem-click"?: ((args: {
90
- param: string | undefined;
91
- }) => any) | undefined;
92
77
  "onClose:children"?: (() => any) | undefined;
93
78
  }>, {
94
79
  param: any;
95
80
  expanded: boolean;
96
81
  closable: boolean;
97
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
98
- "widget-mobile"?(_: {
99
- totalCount: number;
100
- loading: boolean;
101
- }): any;
102
- }>;
82
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
103
83
  export default _default;
104
84
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
105
85
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -118,9 +98,4 @@ type __VLS_WithDefaults<P, D> = {
118
98
  type __VLS_Prettify<T> = {
119
99
  [K in keyof T]: T[K];
120
100
  } & {};
121
- type __VLS_WithTemplateSlots<T, S> = T & {
122
- new (): {
123
- $slots: S;
124
- };
125
- };
126
101
  //# sourceMappingURL=dynamic-blade-list.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dynamic-blade-list.vue.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/pages/dynamic-blade-list.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EASL,WAAW,EAKZ,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,iBAAiB,EAAqC,MAAM,UAAU,CAAC;AAOhF,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAIjD,MAAM,WAAW,KAAK;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;IACtE,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,CAAC;CACvC;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,eAAe,GAAG,IAAI,CAAC;IACpD,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;IAC7B,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAChC,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAAC;IAC9B,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAChC,CAAC,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE;QAAE,KAAK,EAAE,MAAM,GAAG,SAAS,CAAA;KAAE,GAAG,IAAI,CAAC;IACjE,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CACtB;AA4cD,iBAAS,uBAAuB,SAI/B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAshBD,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"dynamic-blade-list.vue.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/pages/dynamic-blade-list.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EASL,WAAW,EAMZ,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,iBAAiB,EAAqC,MAAM,UAAU,CAAC;AAOhF,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAMjD,MAAM,WAAW,KAAK;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;IACtE,OAAO,CAAC,EAAE,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,CAAC;CACvC;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,aAAa,EAAE,IAAI,EAAE,eAAe,GAAG,IAAI,CAAC;IACpD,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI,CAAC;IAC7B,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAChC,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAAC;IAC9B,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAC;CACjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA86BD,wBAQG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -128,12 +128,18 @@ export interface ListContentSchema {
128
128
  component: "vc-table";
129
129
  filter?: FilterSchema;
130
130
  multiselect?: boolean;
131
+ noHeaderCheckbox?: boolean;
131
132
  header?: boolean;
132
133
  footer?: boolean;
133
134
  columns?: ((ITableColumns | {
134
135
  visible?: boolean | {
135
136
  method: string;
136
137
  };
138
+ mobilePosition?: {
139
+ row: 1 | 2;
140
+ order: number;
141
+ };
142
+ mobileVisible?: boolean;
137
143
  }) & {
138
144
  id: string;
139
145
  title: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/types/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/types/index.ts"],"names":[],"mappings":"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"}
@@ -4,11 +4,6 @@ export declare const Invite: import("vue").DefineComponent<import("vue").Extract
4
4
  required: true;
5
5
  default: string;
6
6
  };
7
- logo: {
8
- type: import("vue").PropType<string>;
9
- required: true;
10
- default: string;
11
- };
12
7
  userId: {
13
8
  type: import("vue").PropType<string>;
14
9
  required: true;
@@ -21,13 +16,13 @@ export declare const Invite: import("vue").DefineComponent<import("vue").Extract
21
16
  type: import("vue").PropType<string>;
22
17
  required: true;
23
18
  };
24
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
- background: {
19
+ logo: {
26
20
  type: import("vue").PropType<string>;
27
21
  required: true;
28
22
  default: string;
29
23
  };
30
- logo: {
24
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
+ background: {
31
26
  type: import("vue").PropType<string>;
32
27
  required: true;
33
28
  default: string;
@@ -44,6 +39,11 @@ export declare const Invite: import("vue").DefineComponent<import("vue").Extract
44
39
  type: import("vue").PropType<string>;
45
40
  required: true;
46
41
  };
42
+ logo: {
43
+ type: import("vue").PropType<string>;
44
+ required: true;
45
+ default: string;
46
+ };
47
47
  }>> & Readonly<{}>, {
48
48
  background: string;
49
49
  logo: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Login.vue.d.ts","sourceRoot":"","sources":["../../../../../../shared/pages/LoginPage/components/login/Login.vue.ts"],"names":[],"mappings":"AAcA,KAAK,kBAAkB,GAAG,CAAC,IAAI,EAAE;IAAE,YAAY,EAAE,MAAM,CAAA;CAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAE5E,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM;QAAE,cAAc,EAAE,kBAAkB,CAAA;KAAE,CAAC;CAC3D;;AAkhBD,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
1
+ {"version":3,"file":"Login.vue.d.ts","sourceRoot":"","sources":["../../../../../../shared/pages/LoginPage/components/login/Login.vue.ts"],"names":[],"mappings":"AAeA,KAAK,kBAAkB,GAAG,CAAC,IAAI,EAAE;IAAE,YAAY,EAAE,MAAM,CAAA;CAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAE5E,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM;QAAE,cAAc,EAAE,kBAAkB,CAAA;KAAE,CAAC;CAC3D;;AAkjBD,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
@@ -4,11 +4,6 @@ export declare const ResetPassword: import("vue").DefineComponent<import("vue").
4
4
  required: true;
5
5
  default: string;
6
6
  };
7
- logo: {
8
- type: import("vue").PropType<string>;
9
- required: true;
10
- default: string;
11
- };
12
7
  userId: {
13
8
  type: import("vue").PropType<string>;
14
9
  required: true;
@@ -21,13 +16,13 @@ export declare const ResetPassword: import("vue").DefineComponent<import("vue").
21
16
  type: import("vue").PropType<string>;
22
17
  required: true;
23
18
  };
24
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
- background: {
19
+ logo: {
26
20
  type: import("vue").PropType<string>;
27
21
  required: true;
28
22
  default: string;
29
23
  };
30
- logo: {
24
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
+ background: {
31
26
  type: import("vue").PropType<string>;
32
27
  required: true;
33
28
  default: string;
@@ -44,6 +39,11 @@ export declare const ResetPassword: import("vue").DefineComponent<import("vue").
44
39
  type: import("vue").PropType<string>;
45
40
  required: true;
46
41
  };
42
+ logo: {
43
+ type: import("vue").PropType<string>;
44
+ required: true;
45
+ default: string;
46
+ };
47
47
  }>> & Readonly<{}>, {
48
48
  background: string;
49
49
  logo: string;
@@ -2,9 +2,9 @@ function k(n) {
2
2
  c(n, "start");
3
3
  var i = {}, e = n.languageData || {}, p = !1;
4
4
  for (var d in n) if (d != e && n.hasOwnProperty(d))
5
- for (var u = i[d] = [], r = n[d], t = 0; t < r.length; t++) {
5
+ for (var g = i[d] = [], r = n[d], t = 0; t < r.length; t++) {
6
6
  var f = r[t];
7
- u.push(new l(f, n)), (f.indent || f.dedent) && (p = !0);
7
+ g.push(new s(f, n)), (f.indent || f.dedent) && (p = !0);
8
8
  }
9
9
  return {
10
10
  name: e.name,
@@ -12,11 +12,12 @@ function k(n) {
12
12
  return { state: "start", pending: null, indent: p ? [] : null };
13
13
  },
14
14
  copyState: function(o) {
15
- var g = { state: o.state, pending: o.pending, indent: o.indent && o.indent.slice(0) };
16
- return o.stack && (g.stack = o.stack.slice(0)), g;
15
+ var u = { state: o.state, pending: o.pending, indent: o.indent && o.indent.slice(0) };
16
+ return o.stack && (u.stack = o.stack.slice(0)), u;
17
17
  },
18
- token: s(i),
18
+ token: l(i),
19
19
  indent: x(i, e),
20
+ mergeTokens: e.mergeTokens,
20
21
  languageData: e
21
22
  };
22
23
  }
@@ -37,17 +38,17 @@ function a(n) {
37
38
  i.push(n[e] && n[e].replace(/\./g, " "));
38
39
  return i;
39
40
  }
40
- function l(n, i) {
41
+ function s(n, i) {
41
42
  (n.next || n.push) && c(i, n.next || n.push), this.regex = h(n.regex), this.token = a(n.token), this.data = n;
42
43
  }
43
- function s(n) {
44
+ function l(n) {
44
45
  return function(i, e) {
45
46
  if (e.pending) {
46
47
  var p = e.pending.shift();
47
48
  return e.pending.length == 0 && (e.pending = null), i.pos += p.text.length, p.token;
48
49
  }
49
- for (var d = n[e.state], u = 0; u < d.length; u++) {
50
- var r = d[u], t = (!r.data.sol || i.sol()) && i.match(r.regex);
50
+ for (var d = n[e.state], g = 0; g < d.length; g++) {
51
+ var r = d[g], t = (!r.data.sol || i.sol()) && i.match(r.regex);
51
52
  if (t) {
52
53
  r.data.next ? e.state = r.data.next : r.data.push ? ((e.stack || (e.stack = [])).push(e.state), e.state = r.data.push) : r.data.pop && e.stack && e.stack.length && (e.state = e.stack.pop()), r.data.indent && e.indent.push(i.indentation() + i.indentUnit), r.data.dedent && e.indent.pop();
53
54
  var f = r.token;
@@ -64,16 +65,16 @@ function s(n) {
64
65
  }
65
66
  function x(n, i) {
66
67
  return function(e, p) {
67
- if (e.indent == null || i.dontIndentStates && i.doneIndentState.indexOf(e.state) > -1)
68
+ if (e.indent == null || i.dontIndentStates && i.dontIndentStates.indexOf(e.state) > -1)
68
69
  return null;
69
- var d = e.indent.length - 1, u = n[e.state];
70
+ var d = e.indent.length - 1, g = n[e.state];
70
71
  n: for (; ; ) {
71
- for (var r = 0; r < u.length; r++) {
72
- var t = u[r];
72
+ for (var r = 0; r < g.length; r++) {
73
+ var t = g[r];
73
74
  if (t.data.dedent && t.data.dedentIfLineStart !== !1) {
74
75
  var f = t.regex.exec(p);
75
76
  if (f && f[0]) {
76
- d--, (t.next || t.push) && (u = n[t.next || t.push]), p = p.slice(f[0].length);
77
+ d--, (t.next || t.push) && (g = n[t.next || t.push]), p = p.slice(f[0].length);
77
78
  continue n;
78
79
  }
79
80
  }
@@ -187,8 +187,6 @@ const F = s({
187
187
  // SQLite is weakly typed, ref: http://sqlite.org/datatype3.html. This is just a list of some common types.
188
188
  dateSQL: e("date time timestamp datetime"),
189
189
  support: e("decimallessFloat zerolessFloat"),
190
- identifierQuote: '"',
191
- //ref: http://sqlite.org/lang_keywords.html
192
190
  hooks: {
193
191
  // bind-parameters ref:http://sqlite.org/lang_expr.html#varparam
194
192
  "@": u,
@@ -1,84 +1,4 @@
1
- /** @type { import('tailwindcss').Config } */
2
1
  export declare const content: string[];
3
- declare const _default: {
4
- prefix: string;
5
- theme: {
6
- fontFamily: {
7
- jakarta: string[];
8
- };
9
- fontSize: {
10
- xxs: (string | {
11
- lineHeight: string;
12
- })[];
13
- xs: (string | {
14
- lineHeight: string;
15
- })[];
16
- sm: (string | {
17
- lineHeight: string;
18
- })[];
19
- s: (string | {
20
- lineHeight: string;
21
- })[];
22
- base: (string | {
23
- lineHeight: string;
24
- })[];
25
- lg: (string | {
26
- lineHeight: string;
27
- })[];
28
- xl: (string | {
29
- lineHeight: string;
30
- })[];
31
- "2xl": (string | {
32
- lineHeight: string;
33
- })[];
34
- "3xl": (string | {
35
- lineHeight: string;
36
- })[];
37
- "4xl": (string | {
38
- lineHeight: string;
39
- })[];
40
- "5xl": (string | {
41
- lineHeight: string;
42
- })[];
43
- "6xl": (string | {
44
- lineHeight: string;
45
- })[];
46
- "7xl": (string | {
47
- lineHeight: string;
48
- })[];
49
- "8xl": (string | {
50
- lineHeight: string;
51
- })[];
52
- };
53
- extend: {
54
- keyframes: {
55
- loadingMarker: {
56
- "50%": {
57
- transform: string;
58
- };
59
- };
60
- loadingMarkers: {
61
- "50%": {
62
- transform: string;
63
- };
64
- };
65
- loadingProgress: {
66
- from: {
67
- "background-position": string;
68
- };
69
- to: {
70
- "background-position": string;
71
- };
72
- };
73
- };
74
- animation: {
75
- loadingMarker: string;
76
- loadingMarkers: string;
77
- loadingProgress: string;
78
- };
79
- };
80
- };
81
- content: string[];
82
- };
2
+ declare const _default: import("tailwindcss/types/config").Config;
83
3
  export default _default;
84
4
  //# sourceMappingURL=tailwind.config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tailwind.config.d.ts","sourceRoot":"","sources":["../tailwind.config.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAE7C,eAAO,MAAM,OAAO,UAInB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,wBAqHE"}
1
+ {"version":3,"file":"tailwind.config.d.ts","sourceRoot":"","sources":["../tailwind.config.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,UAInB,CAAC;;AAEF,wBAqHY"}