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

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 (710) hide show
  1. package/CHANGELOG.md +129 -0
  2. package/core/api/platform.ts +9883 -9883
  3. package/core/composables/index.ts +17 -16
  4. package/core/composables/useApiClient/index.ts +22 -22
  5. package/core/composables/useAssets/index.ts +2 -2
  6. package/core/composables/useBeforeUnload/index.ts +25 -25
  7. package/core/composables/useFunctions/debounce.ts +16 -16
  8. package/core/composables/useFunctions/delay.ts +4 -4
  9. package/core/composables/useFunctions/index.ts +21 -21
  10. package/core/composables/useFunctions/once.ts +12 -12
  11. package/core/composables/useFunctions/sleep.ts +4 -4
  12. package/core/composables/useFunctions/throttle.ts +14 -14
  13. package/core/composables/useGlobalSearch.ts +44 -0
  14. package/core/composables/useLanguages/index.ts +78 -78
  15. package/core/composables/useLoading/index.ts +9 -9
  16. package/core/composables/useMenuService/index.ts +110 -110
  17. package/core/composables/useSettings/index.ts +6 -2
  18. package/core/composables/useTheme/index.ts +62 -61
  19. package/core/composables/useWidgets/index.ts +18 -0
  20. package/core/directives/autofocus/index.ts +9 -9
  21. package/core/directives/loading/index.ts +30 -1
  22. package/core/directives/loading/styles.css +36 -7
  23. package/core/plugins/i18n/index.ts +11 -11
  24. package/core/plugins/modularity/README.md +152 -0
  25. package/core/plugins/modularity/extensions-helper.ts +209 -0
  26. package/core/plugins/modularity/index.ts +29 -26
  27. package/core/plugins/modularity/loader.ts +101 -45
  28. package/core/plugins/moment/humanize.ts +74 -74
  29. package/core/plugins/moment/index.ts +1 -1
  30. package/core/plugins/permissions/index.ts +10 -10
  31. package/core/plugins/signalR/index.ts +2 -3
  32. package/core/plugins/validation/index.ts +1 -1
  33. package/core/plugins/validation/rules.ts +145 -145
  34. package/core/services/toolbarbus-service.ts +34 -0
  35. package/core/services/widget-service.ts +130 -0
  36. package/core/types/index.ts +8 -8
  37. package/core/types/widget.ts +15 -0
  38. package/core/utilities/camelToSnake.ts +7 -7
  39. package/core/utilities/camelize.ts +5 -5
  40. package/core/utilities/generateId.ts +3 -3
  41. package/core/utilities/kebabToCamel.ts +7 -7
  42. package/dist/{asn1-DF4fnRHj.js → asn1-jKiBa2Ya.js} +20 -18
  43. package/dist/{clike-l4mx49Q1.js → clike-BUuHEmgZ.js} +0 -1
  44. package/dist/{cobol-CJVkMW0i.js → cobol-BlTKFDRj.js} +0 -1
  45. package/dist/core/composables/index.d.ts +8 -7
  46. package/dist/core/composables/index.d.ts.map +1 -1
  47. package/dist/core/composables/useGlobalSearch.d.ts +10 -0
  48. package/dist/core/composables/useGlobalSearch.d.ts.map +1 -0
  49. package/dist/core/composables/useSettings/index.d.ts.map +1 -1
  50. package/dist/core/composables/useTheme/index.d.ts.map +1 -1
  51. package/dist/core/composables/useWidgets/index.d.ts +4 -0
  52. package/dist/core/composables/useWidgets/index.d.ts.map +1 -0
  53. package/dist/core/directives/loading/index.d.ts.map +1 -1
  54. package/dist/core/plugins/modularity/extensions-helper.d.ts +43 -0
  55. package/dist/core/plugins/modularity/extensions-helper.d.ts.map +1 -0
  56. package/dist/core/plugins/modularity/index.d.ts +8 -7
  57. package/dist/core/plugins/modularity/index.d.ts.map +1 -1
  58. package/dist/core/plugins/modularity/loader.d.ts +8 -1
  59. package/dist/core/plugins/modularity/loader.d.ts.map +1 -1
  60. package/dist/core/plugins/signalR/index.d.ts.map +1 -1
  61. package/dist/core/services/toolbarbus-service.d.ts +10 -0
  62. package/dist/core/services/toolbarbus-service.d.ts.map +1 -0
  63. package/dist/core/services/widget-service.d.ts +35 -0
  64. package/dist/core/services/widget-service.d.ts.map +1 -0
  65. package/dist/core/types/index.d.ts +7 -7
  66. package/dist/core/types/index.d.ts.map +1 -1
  67. package/dist/core/types/widget.d.ts +12 -0
  68. package/dist/core/types/widget.d.ts.map +1 -0
  69. package/dist/{dockerfile-CFG_IPGn.js → dockerfile-Bo-KZxHS.js} +1 -1
  70. package/dist/{factor-DJHfQ4a1.js → factor-Bny6SIz6.js} +1 -1
  71. package/dist/framework.js +243 -224
  72. package/dist/{haxe-pdDS1aE8.js → haxe-70NVW1pR.js} +1 -1
  73. package/dist/{index-Y1Vd-H3g.js → index-3eLJLrzP.js} +93503 -91317
  74. package/dist/{index-C2fcXLd3.js → index-B7KsNz2e.js} +8 -8
  75. package/dist/{index-Dg25Tarq.js → index-BbLSuXfB.js} +7 -7
  76. package/dist/{index-DQP89JB7.js → index-CUuop2Pm.js} +9 -9
  77. package/dist/index-D5mVNTjP.js +308 -0
  78. package/dist/index-D7HzlheD.js +243 -0
  79. package/dist/{index-DrL4GDih.js → index-D8YubeMT.js} +9 -9
  80. package/dist/{index-BrmiwSoL.js → index-DQXUkbse.js} +19 -19
  81. package/dist/{index-Df8tA8qI.js → index-DY3kTJtR.js} +9 -9
  82. package/dist/{index-DulPT6l3.js → index-DdgLwPZH.js} +171 -162
  83. package/dist/{index-BrkL9UJR.js → index-DkfZxmI7.js} +42 -42
  84. package/dist/{index-lQO4lsVu.js → index-Dn54TX9M.js} +6 -6
  85. package/dist/{index-D0rhsYYW.js → index-DnpVJexS.js} +5 -5
  86. package/dist/{index-BbQdOYmi.js → index-Yc2AandF.js} +16 -16
  87. package/dist/{index-DrxadmGH.js → index-h6Tp1RYq.js} +7 -7
  88. package/dist/{index-6afjoxl_.js → index-lE5Ov0XL.js} +9 -9
  89. package/dist/{index-DaD28rcu.js → index-q2J1GObW.js} +10 -10
  90. package/dist/index.css +1 -1
  91. package/dist/index.d.ts +5 -0
  92. package/dist/index.d.ts.map +1 -1
  93. package/dist/injection-keys.d.ts +10 -0
  94. package/dist/injection-keys.d.ts.map +1 -0
  95. package/dist/{javascript-CWGekh08.js → javascript-WMWNx-Vj.js} +1 -1
  96. package/dist/{livescript-CE_BxZmN.js → livescript-CanGTf8u.js} +25 -25
  97. package/dist/locales/de.json +5 -2
  98. package/dist/locales/en.json +5 -3
  99. package/dist/{mllike-1yy7Y7jE.js → mllike-BSnXJBGA.js} +0 -3
  100. package/dist/{nsis-BtA0qkjU.js → nsis-BEzMtmb7.js} +1 -1
  101. package/dist/{pascal-ixanSKUz.js → pascal-De0D6mP7.js} +1 -1
  102. package/dist/{pug-CW1q1xhQ.js → pug-BqUR2bBq.js} +1 -1
  103. package/dist/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue.d.ts.map +1 -1
  104. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts +19 -0
  105. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts.map +1 -0
  106. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue.d.ts.map +1 -1
  107. package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts +17 -1
  108. package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts.map +1 -1
  109. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts +5 -1
  110. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
  111. package/dist/shared/components/blade-navigation/types/index.d.ts +9 -0
  112. package/dist/shared/components/blade-navigation/types/index.d.ts.map +1 -1
  113. package/dist/shared/components/change-password-button/change-password-button.vue.d.ts +3 -0
  114. package/dist/shared/components/change-password-button/change-password-button.vue.d.ts.map +1 -0
  115. package/dist/shared/components/change-password-button/index.d.ts +2 -0
  116. package/dist/shared/components/change-password-button/index.d.ts.map +1 -0
  117. package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts +6 -2
  118. package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts.map +1 -1
  119. package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts +6 -2
  120. package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts.map +1 -1
  121. package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts +6 -2
  122. package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts.map +1 -1
  123. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts +36 -24
  124. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts.map +1 -1
  125. package/dist/shared/components/index.d.ts +1 -2
  126. package/dist/shared/components/index.d.ts.map +1 -1
  127. package/dist/shared/components/language-selector/language-selector.vue.d.ts.map +1 -1
  128. package/dist/shared/components/logout-button/index.d.ts +2 -0
  129. package/dist/shared/components/logout-button/index.d.ts.map +1 -0
  130. package/dist/shared/components/logout-button/logout-button.vue.d.ts +3 -0
  131. package/dist/shared/components/logout-button/logout-button.vue.d.ts.map +1 -0
  132. package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts +2 -0
  133. package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts.map +1 -0
  134. package/dist/shared/components/notification-dropdown/_internal/notification/notification.vue.d.ts +3 -3
  135. package/dist/shared/components/notification-dropdown/_internal/notification/notification.vue.d.ts.map +1 -1
  136. package/dist/shared/components/notification-dropdown/index.d.ts +13 -1
  137. package/dist/shared/components/notification-dropdown/index.d.ts.map +1 -1
  138. package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts +27 -1
  139. package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts.map +1 -1
  140. package/dist/shared/components/notifications/components/notification-container/index.d.ts +1 -1
  141. package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
  142. package/dist/shared/components/settings-menu/index.d.ts +2 -0
  143. package/dist/shared/components/settings-menu/index.d.ts.map +1 -0
  144. package/dist/shared/components/settings-menu/settings-menu.vue.d.ts +3 -0
  145. package/dist/shared/components/settings-menu/settings-menu.vue.d.ts.map +1 -0
  146. package/dist/shared/components/settings-menu-item/index.d.ts +2 -0
  147. package/dist/shared/components/settings-menu-item/index.d.ts.map +1 -0
  148. package/dist/shared/components/{menu-item/menu-item.vue.d.ts → settings-menu-item/settings-menu-item.vue.d.ts} +22 -22
  149. package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts.map +1 -0
  150. package/dist/shared/components/sidebar/sidebar.vue.d.ts +6 -2
  151. package/dist/shared/components/sidebar/sidebar.vue.d.ts.map +1 -1
  152. package/dist/shared/components/theme-selector/theme-selector.vue.d.ts.map +1 -1
  153. package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts +1 -0
  154. package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts.map +1 -1
  155. package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts +0 -2
  156. package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts.map +1 -1
  157. package/dist/shared/components/user-dropdown-button/index.d.ts +9 -25
  158. package/dist/shared/components/user-dropdown-button/index.d.ts.map +1 -1
  159. package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts +1 -18
  160. package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts.map +1 -1
  161. package/dist/shared/composables/useMenuExpanded.d.ts +5 -0
  162. package/dist/shared/composables/useMenuExpanded.d.ts.map +1 -0
  163. package/dist/shared/composables/useSettingsMenu.d.ts +180 -0
  164. package/dist/shared/composables/useSettingsMenu.d.ts.map +1 -0
  165. package/dist/shared/modules/assets/index.d.ts.map +1 -1
  166. package/dist/shared/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts.map +1 -1
  167. package/dist/shared/modules/assets-manager/components/assets-manager/index.d.ts +16 -16
  168. package/dist/shared/modules/dynamic/components/fields/Button.d.ts +1 -1
  169. package/dist/shared/modules/dynamic/components/fields/Card.d.ts +1 -1
  170. package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +1 -1
  171. package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +1 -1
  172. package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts +1 -1
  173. package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +1 -1
  174. package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +1 -1
  175. package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +1 -1
  176. package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +1 -1
  177. package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +1 -1
  178. package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +1 -1
  179. package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +1 -1
  180. package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts +1 -1
  181. package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts +1 -1
  182. package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts +1 -1
  183. package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +1 -1
  184. package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +1 -1
  185. package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts +1 -1
  186. package/dist/shared/modules/dynamic/components/fields/Table.d.ts +1 -1
  187. package/dist/shared/modules/dynamic/components/fields/Table.d.ts.map +1 -1
  188. package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts +1 -1
  189. package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +1 -1
  190. package/dist/shared/modules/dynamic/components/fields/props.d.ts +1 -1
  191. package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts +3 -3
  192. package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts +3 -3
  193. package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +3 -3
  194. package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts +3 -3
  195. package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +3 -3
  196. package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts +3 -3
  197. package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts +3 -3
  198. package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts +3 -3
  199. package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +3 -3
  200. package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +3 -3
  201. package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts +3 -3
  202. package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts +3 -3
  203. package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts +3 -3
  204. package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts +3 -3
  205. package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts +3 -3
  206. package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +3 -3
  207. package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts +3 -3
  208. package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts +3 -3
  209. package/dist/shared/modules/dynamic/composables/useFilterBuilder/index.d.ts.map +1 -1
  210. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +2 -2
  211. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts.map +1 -1
  212. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +3 -5
  213. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
  214. package/dist/shared/modules/dynamic/types/index.d.ts +6 -0
  215. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  216. package/dist/shared/pages/InvitePage/components/invite/index.d.ts +8 -8
  217. package/dist/shared/pages/LoginPage/components/login/Login.vue.d.ts.map +1 -1
  218. package/dist/shared/pages/ResetPasswordPage/components/reset-password/index.d.ts +8 -8
  219. package/dist/{simple-mode-HGTvdazT.js → simple-mode-BqqHn0g6.js} +1 -1
  220. package/dist/{sql-uoWIYwDX.js → sql-mMre1Bo3.js} +0 -2
  221. package/dist/tsconfig.tsbuildinfo +1 -1
  222. package/dist/{ttcn-DmjTzZb6.js → ttcn-Bsa4sfRm.js} +20 -22
  223. package/dist/{ttcn-cfg-B2U3U7dn.js → ttcn-cfg-Bac_acMi.js} +15 -17
  224. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +24 -24
  225. package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts +18 -0
  226. package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts.map +1 -0
  227. package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts +18 -0
  228. package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts.map +1 -0
  229. package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts +18 -0
  230. package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts.map +1 -0
  231. package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts +18 -0
  232. package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts.map +1 -0
  233. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts +18 -0
  234. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts.map +1 -0
  235. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts +18 -0
  236. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts.map +1 -0
  237. package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts +18 -0
  238. package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts.map +1 -0
  239. package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts +18 -0
  240. package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts.map +1 -0
  241. package/dist/ui/components/atoms/vc-icon/icons/index.d.ts +8 -0
  242. package/dist/ui/components/atoms/vc-icon/icons/index.d.ts.map +1 -1
  243. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
  244. package/dist/ui/components/atoms/vc-image/vc-image.vue.d.ts.map +1 -1
  245. package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts +35 -0
  246. package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts.map +1 -0
  247. package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts +15 -0
  248. package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts.map +1 -1
  249. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts +7 -0
  250. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts.map +1 -1
  251. package/dist/ui/components/atoms/vc-widget/index.d.ts +6 -0
  252. package/dist/ui/components/atoms/vc-widget/index.d.ts.map +1 -1
  253. package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts +6 -0
  254. package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts.map +1 -1
  255. package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts +1 -3
  256. package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts.map +1 -1
  257. package/dist/ui/components/index.d.ts +1 -0
  258. package/dist/ui/components/index.d.ts.map +1 -1
  259. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts +67 -33
  260. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts.map +1 -1
  261. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts +25 -11
  262. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts.map +1 -1
  263. package/dist/ui/components/molecules/vc-field/vc-field.stories.d.ts +3 -3
  264. package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +1 -1
  265. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.stories.d.ts +12 -12
  266. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +24 -24
  267. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
  268. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +18 -18
  269. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts +84 -84
  270. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +12 -12
  271. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
  272. package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +240 -240
  273. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +24 -24
  274. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  275. package/dist/ui/components/molecules/vc-slider/index.d.ts +9 -9
  276. package/dist/ui/components/molecules/vc-slider/vc-slider.stories.d.ts +9 -9
  277. package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts +23 -0
  278. package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts.map +1 -0
  279. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts +24 -0
  280. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts.map +1 -0
  281. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts +35 -0
  282. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts.map +1 -0
  283. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts +29 -0
  284. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts.map +1 -0
  285. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts +39 -0
  286. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts.map +1 -0
  287. package/dist/{shared → ui/components/organisms/vc-app/_internal/vc-app-bar}/components/app-bar-button/app-bar-button.vue.d.ts +9 -5
  288. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/components/app-bar-button/app-bar-button.vue.d.ts.map +1 -0
  289. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarOverlay.d.ts +19 -0
  290. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarOverlay.d.ts.map +1 -0
  291. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts +9 -13
  292. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts.map +1 -1
  293. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue.d.ts +1 -1
  294. 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
  295. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts +3 -12
  296. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts.map +1 -1
  297. package/dist/ui/components/organisms/vc-app/index.d.ts +1 -0
  298. package/dist/ui/components/organisms/vc-app/index.d.ts.map +1 -1
  299. package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts +24 -62
  300. package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts.map +1 -1
  301. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts +24 -62
  302. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts.map +1 -1
  303. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts +1 -0
  304. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts.map +1 -1
  305. 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
  306. 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
  307. 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
  308. 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
  309. 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
  310. 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
  311. 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
  312. 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
  313. 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
  314. 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
  315. 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
  316. 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
  317. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts +2 -6
  318. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts.map +1 -1
  319. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts +3 -0
  320. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts.map +1 -0
  321. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts +16 -0
  322. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts.map +1 -0
  323. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts +16 -0
  324. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts.map +1 -0
  325. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts +15 -0
  326. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts.map +1 -0
  327. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts +2 -0
  328. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts.map +1 -1
  329. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +56 -0
  330. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
  331. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts +3 -3
  332. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts.map +1 -1
  333. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts +2 -2
  334. package/dist/ui/components/organisms/vc-gallery/vc-gallery.stories.d.ts +13 -13
  335. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +1 -1
  336. package/dist/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue.d.ts.map +1 -1
  337. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +2 -2
  338. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
  339. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts +2 -1
  340. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
  341. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts +219 -0
  342. 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
  343. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-header/vc-table-header.vue.d.ts +114 -0
  344. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-header/vc-table-header.vue.d.ts.map +1 -0
  345. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +236 -0
  346. 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
  347. 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
  348. 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
  349. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +315 -0
  350. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts.map +1 -0
  351. package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts +1 -1
  352. package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts.map +1 -1
  353. package/dist/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue.d.ts.map +1 -1
  354. package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts +44 -0
  355. package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts.map +1 -0
  356. package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts +66 -0
  357. package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts.map +1 -0
  358. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts +6 -13
  359. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts.map +1 -1
  360. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts +199 -0
  361. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts.map +1 -0
  362. package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts +38 -0
  363. package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts.map +1 -0
  364. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts +17 -0
  365. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts.map +1 -0
  366. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts +407 -0
  367. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts.map +1 -0
  368. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts +9 -0
  369. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts.map +1 -0
  370. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts +16 -0
  371. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts.map +1 -0
  372. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts +23 -0
  373. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts.map +1 -0
  374. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts +19 -0
  375. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts.map +1 -0
  376. package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts +12 -0
  377. package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts.map +1 -0
  378. package/dist/ui/components/organisms/vc-table/types.d.ts +19 -0
  379. package/dist/ui/components/organisms/vc-table/types.d.ts.map +1 -0
  380. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +120 -735
  381. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
  382. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +52 -142
  383. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  384. package/dist/ui/composables/useVisibleElements.d.ts +19 -0
  385. package/dist/ui/composables/useVisibleElements.d.ts.map +1 -0
  386. package/dist/{xquery-xQxle02u.js → xquery-BUQdORAS.js} +72 -76
  387. package/package.json +8 -6
  388. package/shared/components/app-switcher/components/vc-app-switcher/index.ts +1 -1
  389. package/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +2 -2
  390. package/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue +77 -0
  391. package/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue +17 -5
  392. package/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.ts +16 -4
  393. package/shared/components/blade-navigation/composables/useBladeNavigation/index.ts +14 -4
  394. package/shared/components/blade-navigation/types/index.ts +117 -107
  395. package/shared/components/change-password-button/change-password-button.vue +20 -0
  396. package/shared/components/change-password-button/index.ts +1 -0
  397. package/shared/components/common/popup/vc-popup-error.vue +11 -0
  398. package/shared/components/common/popup/vc-popup-info.vue +11 -0
  399. package/shared/components/common/popup/vc-popup-warning.vue +11 -0
  400. package/shared/components/error-interceptor/interceptor.ts +44 -44
  401. package/shared/components/generic-dropdown/generic-dropdown.vue +79 -31
  402. package/shared/components/index.ts +1 -2
  403. package/shared/components/language-selector/language-selector.vue +68 -42
  404. package/shared/components/logout-button/index.ts +1 -0
  405. package/shared/components/logout-button/logout-button.vue +27 -0
  406. package/shared/components/notification-dropdown/_internal/notification/index.ts +1 -0
  407. package/shared/components/notification-dropdown/_internal/notification/notification.vue +23 -22
  408. package/shared/components/notification-dropdown/notification-dropdown.vue +60 -39
  409. package/shared/components/notifications/styles/index.scss +10 -10
  410. package/shared/components/settings-menu/index.ts +1 -0
  411. package/shared/components/settings-menu/settings-menu.vue +24 -0
  412. package/shared/components/settings-menu-item/index.ts +1 -0
  413. package/shared/components/settings-menu-item/settings-menu-item.vue +136 -0
  414. package/shared/components/sidebar/sidebar.vue +32 -11
  415. package/shared/components/theme-selector/theme-selector.vue +59 -28
  416. package/shared/components/user-dropdown-button/_internal/user-info.vue +13 -5
  417. package/shared/components/user-dropdown-button/_internal/user-sidebar.vue +4 -29
  418. package/shared/components/user-dropdown-button/user-dropdown-button.vue +36 -50
  419. package/shared/composables/useMenuExpanded.ts +16 -0
  420. package/shared/composables/useSettingsMenu.ts +44 -0
  421. package/shared/modules/assets/index.ts +0 -1
  422. package/shared/modules/assets-manager/components/assets-manager/assets-manager.vue +0 -1
  423. package/shared/modules/dynamic/components/FIELD_MAP.ts +53 -53
  424. package/shared/modules/dynamic/components/SchemaRender.ts +102 -102
  425. package/shared/modules/dynamic/components/factories.ts +244 -244
  426. package/shared/modules/dynamic/components/fields/Button.ts +44 -44
  427. package/shared/modules/dynamic/components/fields/Card.ts +119 -119
  428. package/shared/modules/dynamic/components/fields/Checkbox.ts +53 -53
  429. package/shared/modules/dynamic/components/fields/ContentField.ts +33 -33
  430. package/shared/modules/dynamic/components/fields/CustomComponent.ts +29 -29
  431. package/shared/modules/dynamic/components/fields/DynamicProperty.ts +141 -141
  432. package/shared/modules/dynamic/components/fields/EditorField.ts +46 -46
  433. package/shared/modules/dynamic/components/fields/Fieldset.ts +65 -65
  434. package/shared/modules/dynamic/components/fields/GalleryField.ts +161 -161
  435. package/shared/modules/dynamic/components/fields/ImageField.ts +35 -35
  436. package/shared/modules/dynamic/components/fields/InputCurrency.ts +79 -79
  437. package/shared/modules/dynamic/components/fields/InputField.ts +81 -81
  438. package/shared/modules/dynamic/components/fields/MultivalueField.ts +68 -68
  439. package/shared/modules/dynamic/components/fields/RadioButtonGroup.ts +82 -82
  440. package/shared/modules/dynamic/components/fields/RatingField.ts +28 -28
  441. package/shared/modules/dynamic/components/fields/SelectField.ts +72 -72
  442. package/shared/modules/dynamic/components/fields/StatusField.ts +110 -110
  443. package/shared/modules/dynamic/components/fields/SwitchField.ts +29 -29
  444. package/shared/modules/dynamic/components/fields/Table.ts +1 -2
  445. package/shared/modules/dynamic/components/fields/TextareaField.ts +46 -46
  446. package/shared/modules/dynamic/components/fields/ValidationField.ts +54 -54
  447. package/shared/modules/dynamic/components/fields/VideoField.ts +30 -30
  448. package/shared/modules/dynamic/components/fields/props.ts +39 -39
  449. package/shared/modules/dynamic/components/fields/storybook/Button.stories.ts +247 -247
  450. package/shared/modules/dynamic/components/fields/storybook/Card.stories.ts +176 -176
  451. package/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.ts +185 -185
  452. package/shared/modules/dynamic/components/fields/storybook/ContentField.stories.ts +245 -245
  453. package/shared/modules/dynamic/components/fields/storybook/EditorField.stories.ts +192 -192
  454. package/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.ts +347 -347
  455. package/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.ts +239 -239
  456. package/shared/modules/dynamic/components/fields/storybook/ImageField.stories.ts +186 -186
  457. package/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.ts +281 -281
  458. package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +312 -312
  459. package/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.ts +361 -361
  460. package/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.ts +224 -224
  461. package/shared/modules/dynamic/components/fields/storybook/RatingField.stories.ts +131 -131
  462. package/shared/modules/dynamic/components/fields/storybook/SelectField.stories.ts +666 -666
  463. package/shared/modules/dynamic/components/fields/storybook/StatusField.stories.ts +202 -202
  464. package/shared/modules/dynamic/components/fields/storybook/SwitchField.stories.ts +178 -178
  465. package/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.ts +203 -203
  466. package/shared/modules/dynamic/components/fields/storybook/VideoField.stories.ts +92 -92
  467. package/shared/modules/dynamic/components/fields/storybook/common/args.ts +130 -130
  468. package/shared/modules/dynamic/components/fields/storybook/common/templates.ts +8 -8
  469. package/shared/modules/dynamic/components/index.ts +4 -4
  470. package/shared/modules/dynamic/composables/index.ts +4 -4
  471. package/shared/modules/dynamic/composables/useDynamicViewsUtils/index.ts +46 -46
  472. package/shared/modules/dynamic/composables/useFilterBuilder/index.ts +31 -22
  473. package/shared/modules/dynamic/composables/useTableTemplates/index.ts +67 -67
  474. package/shared/modules/dynamic/composables/useToolbarReducer/index.ts +70 -70
  475. package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +144 -144
  476. package/shared/modules/dynamic/factories/base/useListFactory.ts +68 -68
  477. package/shared/modules/dynamic/factories/index.ts +4 -4
  478. package/shared/modules/dynamic/factories/types/index.ts +229 -229
  479. package/shared/modules/dynamic/helpers/getters.ts +12 -12
  480. package/shared/modules/dynamic/helpers/methodHandler.ts +22 -22
  481. package/shared/modules/dynamic/helpers/nodeBuilder.ts +242 -242
  482. package/shared/modules/dynamic/helpers/override.ts +153 -153
  483. package/shared/modules/dynamic/helpers/safeIn.ts +6 -6
  484. package/shared/modules/dynamic/helpers/setters.ts +24 -24
  485. package/shared/modules/dynamic/helpers/unrefNested.ts +14 -14
  486. package/shared/modules/dynamic/helpers/unwrapInterpolation.ts +16 -16
  487. package/shared/modules/dynamic/pages/dynamic-blade-form.vue +69 -31
  488. package/shared/modules/dynamic/pages/dynamic-blade-list.vue +18 -16
  489. package/shared/modules/dynamic/types/index.ts +6 -0
  490. package/shared/pages/ChangePasswordPage/components/change-password/index.ts +3 -3
  491. package/shared/pages/ChangePasswordPage/components/index.ts +1 -1
  492. package/shared/pages/ChangePasswordPage/index.ts +1 -1
  493. package/shared/pages/ChangePasswordPage/plugin.ts +4 -4
  494. package/shared/pages/InvitePage/components/index.ts +1 -1
  495. package/shared/pages/InvitePage/components/invite/Invite.vue +216 -216
  496. package/shared/pages/InvitePage/components/invite/index.ts +3 -3
  497. package/shared/pages/InvitePage/index.ts +1 -1
  498. package/shared/pages/InvitePage/plugin.ts +4 -4
  499. package/shared/pages/LoginPage/components/index.ts +1 -1
  500. package/shared/pages/LoginPage/components/login/Login.vue +26 -1
  501. package/shared/pages/LoginPage/components/login/README.md +52 -0
  502. package/shared/pages/LoginPage/components/login/index.ts +3 -3
  503. package/shared/pages/LoginPage/index.ts +1 -1
  504. package/shared/pages/LoginPage/plugin.ts +4 -4
  505. package/shared/pages/ResetPasswordPage/components/index.ts +1 -1
  506. package/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue +218 -218
  507. package/shared/pages/ResetPasswordPage/components/reset-password/index.ts +3 -3
  508. package/shared/pages/ResetPasswordPage/index.ts +1 -1
  509. package/shared/pages/ResetPasswordPage/plugin.ts +4 -4
  510. package/shared/pages/index.ts +4 -4
  511. package/shared/pages/plugin.ts +4 -4
  512. package/shared/utilities/assets.ts +42 -42
  513. package/shared/utilities/vueUtils.ts +50 -50
  514. package/tailwind.config.ts +126 -126
  515. package/ui/components/atoms/vc-badge/index.ts +1 -1
  516. package/ui/components/atoms/vc-badge/vc-badge.stories.ts +53 -53
  517. package/ui/components/atoms/vc-card/index.ts +3 -3
  518. package/ui/components/atoms/vc-card/vc-card.stories.ts +102 -102
  519. package/ui/components/atoms/vc-card/vc-card.vue +159 -159
  520. package/ui/components/atoms/vc-col/index.ts +1 -1
  521. package/ui/components/atoms/vc-col/vc-col.stories.ts +22 -22
  522. package/ui/components/atoms/vc-col/vc-col.vue +29 -29
  523. package/ui/components/atoms/vc-container/index.ts +10 -10
  524. package/ui/components/atoms/vc-container/vc-container.stories.ts +29 -29
  525. package/ui/components/atoms/vc-hint/index.ts +10 -10
  526. package/ui/components/atoms/vc-hint/vc-hint.stories.ts +23 -23
  527. package/ui/components/atoms/vc-hint/vc-hint.vue +17 -17
  528. package/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue +9 -26
  529. package/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue +14 -18
  530. package/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue +7 -18
  531. package/ui/components/atoms/vc-icon/icons/BellIcon.vue +8 -23
  532. package/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue +13 -0
  533. package/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue +13 -0
  534. package/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue +13 -0
  535. package/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue +13 -0
  536. package/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue +10 -35
  537. package/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue +14 -18
  538. package/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue +14 -0
  539. package/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue +14 -0
  540. package/ui/components/atoms/vc-icon/icons/LogoutIcon.vue +7 -18
  541. package/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue +14 -18
  542. package/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue +8 -18
  543. package/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue +14 -18
  544. package/ui/components/atoms/vc-icon/icons/SearchIcon.vue +14 -0
  545. package/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue +15 -25
  546. package/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue +19 -0
  547. package/ui/components/atoms/vc-icon/icons/index.ts +19 -11
  548. package/ui/components/atoms/vc-icon/vc-icon.vue +82 -79
  549. package/ui/components/atoms/vc-image/index.ts +1 -1
  550. package/ui/components/atoms/vc-image/vc-image.stories.ts +85 -85
  551. package/ui/components/atoms/vc-image/vc-image.vue +17 -1
  552. package/ui/components/atoms/vc-label/index.ts +1 -1
  553. package/ui/components/atoms/vc-label/vc-label.stories.ts +31 -31
  554. package/ui/components/atoms/vc-label/vc-label.vue +92 -92
  555. package/ui/components/atoms/vc-link/index.ts +10 -10
  556. package/ui/components/atoms/vc-link/vc-link.stories.ts +37 -37
  557. package/ui/components/atoms/vc-link/vc-link.vue +54 -54
  558. package/ui/components/atoms/vc-loading/index.ts +3 -3
  559. package/ui/components/atoms/vc-loading/vc-loading.stories.ts +18 -18
  560. package/ui/components/atoms/vc-loading/vc-loading.vue +58 -58
  561. package/ui/components/atoms/vc-progress/index.ts +10 -10
  562. package/ui/components/atoms/vc-progress/vc-progress.stories.ts +30 -30
  563. package/ui/components/atoms/vc-progress/vc-progress.vue +68 -68
  564. package/ui/components/atoms/vc-row/index.ts +1 -1
  565. package/ui/components/atoms/vc-row/vc-row.stories.ts +20 -20
  566. package/ui/components/atoms/vc-row/vc-row.vue +22 -22
  567. package/ui/components/atoms/vc-skeleton/vc-skeleton.vue +51 -0
  568. package/ui/components/atoms/vc-status/index.ts +1 -1
  569. package/ui/components/atoms/vc-status/vc-status.stories.ts +85 -85
  570. package/ui/components/atoms/vc-status/vc-status.vue +57 -23
  571. package/ui/components/atoms/vc-status-icon/index.ts +1 -1
  572. package/ui/components/atoms/vc-switch/index.ts +1 -1
  573. package/ui/components/atoms/vc-tooltip/index.ts +1 -1
  574. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +4 -4
  575. package/ui/components/atoms/vc-video/index.ts +1 -1
  576. package/ui/components/atoms/vc-video/vc-video.stories.ts +19 -19
  577. package/ui/components/atoms/vc-widget/index.ts +3 -3
  578. package/ui/components/atoms/vc-widget/vc-widget.stories.ts +20 -20
  579. package/ui/components/atoms/vc-widget/vc-widget.vue +73 -55
  580. package/ui/components/index.ts +2 -0
  581. package/ui/components/molecules/index.ts +16 -16
  582. package/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue +89 -92
  583. package/ui/components/molecules/vc-breadcrumbs/index.ts +1 -1
  584. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.ts +43 -43
  585. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +157 -121
  586. package/ui/components/molecules/vc-checkbox/index.ts +3 -3
  587. package/ui/components/molecules/vc-checkbox/vc-checkbox.stories.ts +84 -84
  588. package/ui/components/molecules/vc-editor/index.ts +1 -1
  589. package/ui/components/molecules/vc-editor/vc-editor.stories.ts +29 -29
  590. package/ui/components/molecules/vc-editor/vc-editor.vue +2 -2
  591. package/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue +96 -96
  592. package/ui/components/molecules/vc-field/index.ts +1 -1
  593. package/ui/components/molecules/vc-field/vc-field.stories.ts +114 -114
  594. package/ui/components/molecules/vc-file-upload/index.ts +1 -1
  595. package/ui/components/molecules/vc-file-upload/vc-file-upload.stories.ts +39 -39
  596. package/ui/components/molecules/vc-form/index.ts +10 -10
  597. package/ui/components/molecules/vc-form/vc-form.stories.ts +25 -25
  598. package/ui/components/molecules/vc-form/vc-form.vue +5 -5
  599. package/ui/components/molecules/vc-input/index.ts +1 -1
  600. package/ui/components/molecules/vc-input/vc-input.stories.ts +165 -165
  601. package/ui/components/molecules/vc-input-currency/index.ts +1 -1
  602. package/ui/components/molecules/vc-input-currency/vc-input-currency.stories.ts +83 -83
  603. package/ui/components/molecules/vc-multivalue/index.ts +1 -1
  604. package/ui/components/molecules/vc-multivalue/vc-multivalue.stories.ts +120 -120
  605. package/ui/components/molecules/vc-notification/index.ts +1 -1
  606. package/ui/components/molecules/vc-pagination/index.ts +3 -3
  607. package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +24 -24
  608. package/ui/components/molecules/vc-pagination/vc-pagination.vue +44 -98
  609. package/ui/components/molecules/vc-radio-button/index.ts +1 -1
  610. package/ui/components/molecules/vc-radio-button/vc-radio-button.stories.ts +97 -97
  611. package/ui/components/molecules/vc-radio-button/vc-radio-button.vue +192 -192
  612. package/ui/components/molecules/vc-rating/index.ts +1 -1
  613. package/ui/components/molecules/vc-rating/vc-rating.stories.ts +59 -59
  614. package/ui/components/molecules/vc-select/index.ts +1 -1
  615. package/ui/components/molecules/vc-select/vc-select.stories.ts +685 -685
  616. package/ui/components/molecules/vc-select/vc-select.vue +4 -1
  617. package/ui/components/molecules/vc-slider/index.ts +13 -13
  618. package/ui/components/molecules/vc-slider/vc-slider.stories.ts +61 -61
  619. package/ui/components/molecules/vc-slider/vc-slider.vue +118 -118
  620. package/ui/components/molecules/vc-textarea/index.ts +1 -1
  621. package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +53 -53
  622. package/ui/components/molecules/vc-textarea/vc-textarea.vue +151 -151
  623. package/ui/components/organisms/index.ts +7 -7
  624. package/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.ts +49 -0
  625. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue +47 -0
  626. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue +175 -0
  627. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue +87 -0
  628. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue +171 -0
  629. package/{shared → ui/components/organisms/vc-app/_internal/vc-app-bar}/components/app-bar-button/app-bar-button.vue +79 -52
  630. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarOverlay.ts +78 -0
  631. package/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue +204 -282
  632. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue +94 -70
  633. package/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue +77 -101
  634. package/ui/components/organisms/vc-app/index.ts +1 -0
  635. package/ui/components/organisms/vc-app/vc-app.stories.ts +214 -214
  636. package/ui/components/organisms/vc-app/vc-app.vue +67 -64
  637. package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +133 -83
  638. 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
  639. 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 +53 -17
  640. 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
  641. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue +182 -0
  642. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue +146 -0
  643. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue +32 -0
  644. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue +21 -204
  645. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.ts +2 -0
  646. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue +96 -0
  647. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue +181 -0
  648. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue +113 -0
  649. package/ui/components/organisms/vc-blade/index.ts +1 -1
  650. package/ui/components/organisms/vc-blade/vc-blade.stories.ts +83 -83
  651. package/ui/components/organisms/vc-blade/vc-blade.vue +138 -165
  652. package/ui/components/organisms/vc-dynamic-property/index.ts +1 -1
  653. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue +163 -163
  654. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue +166 -166
  655. package/ui/components/organisms/vc-gallery/index.ts +1 -1
  656. package/ui/components/organisms/vc-gallery/vc-gallery.stories.ts +91 -91
  657. package/ui/components/organisms/vc-gallery/vc-gallery.vue +348 -348
  658. package/ui/components/organisms/vc-login-form/index.ts +1 -1
  659. package/ui/components/organisms/vc-login-form/vc-login-form.vue +99 -99
  660. package/ui/components/organisms/vc-popup/index.ts +3 -3
  661. package/ui/components/organisms/vc-popup/vc-popup.vue +3 -3
  662. package/ui/components/organisms/vc-table/_internal/vc-table-add-new/vc-table-add-new.vue +63 -63
  663. package/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue +22 -16
  664. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +4 -4
  665. package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +2 -1
  666. package/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue +3 -2
  667. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue +134 -0
  668. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-header/vc-table-header.vue +244 -0
  669. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue +237 -0
  670. 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
  671. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue +215 -0
  672. package/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue +1 -1
  673. package/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue +24 -8
  674. package/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue +70 -0
  675. package/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue +106 -0
  676. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +46 -68
  677. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue +343 -0
  678. package/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue +118 -0
  679. package/ui/components/organisms/vc-table/composables/useTableActions.ts +56 -0
  680. package/ui/components/organisms/vc-table/composables/useTableColumnReorder.ts +255 -0
  681. package/ui/components/organisms/vc-table/composables/useTableColumnResize.ts +147 -0
  682. package/ui/components/organisms/vc-table/composables/useTableRowReorder.ts +174 -0
  683. package/ui/components/organisms/vc-table/composables/useTableSelection.ts +118 -0
  684. package/ui/components/organisms/vc-table/composables/useTableState.ts +229 -0
  685. package/ui/components/organisms/vc-table/composables/useTableSwipe.ts +32 -0
  686. package/ui/components/organisms/vc-table/index.ts +1 -1
  687. package/ui/components/organisms/vc-table/types.ts +25 -0
  688. package/ui/components/organisms/vc-table/vc-table.stories.ts +214 -214
  689. package/ui/components/organisms/vc-table/vc-table.vue +253 -1259
  690. package/ui/composables/useVisibleElements.ts +146 -0
  691. package/dist/index-CUGEM4hi.js +0 -243
  692. package/dist/index-D8jMD-EZ.js +0 -312
  693. package/dist/shared/components/app-bar-button/app-bar-button.vue.d.ts.map +0 -1
  694. package/dist/shared/components/app-bar-button/index.d.ts +0 -2
  695. package/dist/shared/components/app-bar-button/index.d.ts.map +0 -1
  696. package/dist/shared/components/blade-navigation/injectionKeys.d.ts +0 -4
  697. package/dist/shared/components/blade-navigation/injectionKeys.d.ts.map +0 -1
  698. package/dist/shared/components/menu-item/index.d.ts +0 -2
  699. package/dist/shared/components/menu-item/index.d.ts.map +0 -1
  700. package/dist/shared/components/menu-item/menu-item.vue.d.ts.map +0 -1
  701. package/dist/shared/components/user-dropdown-button/_internal/user-actions.vue.d.ts.map +0 -1
  702. package/dist/shared/components/user-dropdown-button/composables/useUserActions.d.ts +0 -3921
  703. package/dist/shared/components/user-dropdown-button/composables/useUserActions.d.ts.map +0 -1
  704. 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
  705. package/shared/components/app-bar-button/index.ts +0 -1
  706. package/shared/components/blade-navigation/injectionKeys.ts +0 -4
  707. package/shared/components/menu-item/index.ts +0 -1
  708. package/shared/components/menu-item/menu-item.vue +0 -111
  709. package/shared/components/user-dropdown-button/_internal/user-actions.vue +0 -68
  710. package/shared/components/user-dropdown-button/composables/useUserActions.ts +0 -56
@@ -3,7 +3,6 @@ function o(e) {
3
3
  return t;
4
4
  }
5
5
  const i = {
6
- name: "ttcn",
7
6
  keywords: o("activate address alive all alt altstep and and4b any break case component const continue control deactivate display do else encode enumerated except exception execute extends extension external for from function goto group if import in infinity inout interleave label language length log match message mixed mod modifies module modulepar mtc noblock not not4b nowait of on optional or or4b out override param pattern port procedure record recursive rem repeat return runs select self sender set signature system template testcase to type union value valueof var variant while with xor xor4b"),
8
7
  builtin: o("bit2hex bit2int bit2oct bit2str char2int char2oct encvalue decomp decvalue float2int float2str hex2bit hex2int hex2oct hex2str int2bit int2char int2float int2hex int2oct int2str int2unichar isbound ischosen ispresent isvalue lengthof log2str oct2bit oct2char oct2hex oct2int oct2str regexp replace rnd sizeof str2bit str2float str2hex str2int str2oct substr unichar2int unichar2char enum2int"),
9
8
  types: o("anytype bitstring boolean char charstring default float hexstring integer objid octetstring universal verdicttype timer"),
@@ -17,8 +16,7 @@ const i = {
17
16
  booleanConsts: o("true false"),
18
17
  otherConsts: o("null NULL omit"),
19
18
  visibilityModifiers: o("private public friend"),
20
- templateMatch: o("complement ifpresent subset superset permutation"),
21
- multiLineStrings: !0
19
+ templateMatch: o("complement ifpresent subset superset permutation")
22
20
  };
23
21
  var h = [];
24
22
  function p(e) {
@@ -28,11 +26,11 @@ p(i.keywords);
28
26
  p(i.builtin);
29
27
  p(i.timerOps);
30
28
  p(i.portOps);
31
- var y = i.keywords || {}, v = i.builtin || {}, g = i.timerOps || {}, x = i.portOps || {}, k = i.configOps || {}, O = i.verdictOps || {}, w = i.sutOps || {}, E = i.functionOps || {}, C = i.verdictConsts || {}, I = i.booleanConsts || {}, L = i.otherConsts || {}, z = i.types || {}, S = i.visibilityModifiers || {}, M = i.templateMatch || {}, W = i.multiLineStrings, T = i.indentStatements !== !1, d = /[+\-*&@=<>!\/]/, l;
32
- function N(e, t) {
29
+ var y = i.keywords || {}, v = i.builtin || {}, x = i.timerOps || {}, g = i.portOps || {}, k = i.configOps || {}, O = i.verdictOps || {}, w = i.sutOps || {}, E = i.functionOps || {}, C = i.verdictConsts || {}, I = i.booleanConsts || {}, z = i.otherConsts || {}, L = i.types || {}, M = i.visibilityModifiers || {}, S = i.templateMatch || {}, W = i.indentStatements !== !1, d = /[+\-*&@=<>!\/]/, l;
30
+ function T(e, t) {
33
31
  var n = e.next();
34
32
  if (n == '"' || n == "'")
35
- return t.tokenize = P(n), t.tokenize(e, t);
33
+ return t.tokenize = N(n), t.tokenize(e, t);
36
34
  if (/[\[\]{}\(\),;\\:\?\.]/.test(n))
37
35
  return l = n, "punctuation";
38
36
  if (n == "#")
@@ -51,19 +49,19 @@ function N(e, t) {
51
49
  return n == "@" && (e.match("try") || e.match("catch") || e.match("lazy")) ? "keyword" : (e.eatWhile(d), "operator");
52
50
  e.eatWhile(/[\w\$_\xa1-\uffff]/);
53
51
  var r = e.current();
54
- return y.propertyIsEnumerable(r) ? "keyword" : v.propertyIsEnumerable(r) ? "builtin" : g.propertyIsEnumerable(r) || k.propertyIsEnumerable(r) || O.propertyIsEnumerable(r) || x.propertyIsEnumerable(r) || w.propertyIsEnumerable(r) || E.propertyIsEnumerable(r) ? "def" : C.propertyIsEnumerable(r) || I.propertyIsEnumerable(r) || L.propertyIsEnumerable(r) ? "string" : z.propertyIsEnumerable(r) ? "typeName.standard" : S.propertyIsEnumerable(r) ? "modifier" : M.propertyIsEnumerable(r) ? "atom" : "variable";
52
+ return y.propertyIsEnumerable(r) ? "keyword" : v.propertyIsEnumerable(r) ? "builtin" : x.propertyIsEnumerable(r) || k.propertyIsEnumerable(r) || O.propertyIsEnumerable(r) || g.propertyIsEnumerable(r) || w.propertyIsEnumerable(r) || E.propertyIsEnumerable(r) ? "def" : C.propertyIsEnumerable(r) || I.propertyIsEnumerable(r) || z.propertyIsEnumerable(r) ? "string" : L.propertyIsEnumerable(r) ? "typeName.standard" : M.propertyIsEnumerable(r) ? "modifier" : S.propertyIsEnumerable(r) ? "atom" : "variable";
55
53
  }
56
- function P(e) {
54
+ function N(e) {
57
55
  return function(t, n) {
58
- for (var r = !1, u, f = !1; (u = t.next()) != null; ) {
59
- if (u == e && !r) {
56
+ for (var r = !1, c, f = !1; (c = t.next()) != null; ) {
57
+ if (c == e && !r) {
60
58
  var s = t.peek();
61
59
  s && (s = s.toLowerCase(), (s == "b" || s == "h" || s == "o") && t.next()), f = !0;
62
60
  break;
63
61
  }
64
- r = !r && u == "\\";
62
+ r = !r && c == "\\";
65
63
  }
66
- return (f || !(r || W)) && (n.tokenize = null), "string";
64
+ return f && (n.tokenize = null), "string";
67
65
  };
68
66
  }
69
67
  function m(e, t) {
@@ -76,18 +74,18 @@ function m(e, t) {
76
74
  }
77
75
  return "comment";
78
76
  }
79
- function b(e, t, n, r, u) {
80
- this.indented = e, this.column = t, this.type = n, this.align = r, this.prev = u;
77
+ function b(e, t, n, r, c) {
78
+ this.indented = e, this.column = t, this.type = n, this.align = r, this.prev = c;
81
79
  }
82
80
  function a(e, t, n) {
83
81
  var r = e.indented;
84
82
  return e.context && e.context.type == "statement" && (r = e.context.indented), e.context = new b(r, t, n, null, e.context);
85
83
  }
86
- function c(e) {
84
+ function u(e) {
87
85
  var t = e.context.type;
88
86
  return (t == ")" || t == "]" || t == "}") && (e.indented = e.context.indented), e.context = e.context.prev;
89
87
  }
90
- const $ = {
88
+ const P = {
91
89
  name: "ttcn",
92
90
  startState: function() {
93
91
  return {
@@ -101,17 +99,17 @@ const $ = {
101
99
  var n = t.context;
102
100
  if (e.sol() && (n.align == null && (n.align = !1), t.indented = e.indentation(), t.startOfLine = !0), e.eatSpace()) return null;
103
101
  l = null;
104
- var r = (t.tokenize || N)(e, t);
102
+ var r = (t.tokenize || T)(e, t);
105
103
  if (r == "comment") return r;
106
104
  if (n.align == null && (n.align = !0), (l == ";" || l == ":" || l == ",") && n.type == "statement")
107
- c(t);
105
+ u(t);
108
106
  else if (l == "{") a(t, e.column(), "}");
109
107
  else if (l == "[") a(t, e.column(), "]");
110
108
  else if (l == "(") a(t, e.column(), ")");
111
109
  else if (l == "}") {
112
- for (; n.type == "statement"; ) n = c(t);
113
- for (n.type == "}" && (n = c(t)); n.type == "statement"; ) n = c(t);
114
- } else l == n.type ? c(t) : T && ((n.type == "}" || n.type == "top") && l != ";" || n.type == "statement" && l == "newstatement") && a(t, e.column(), "statement");
110
+ for (; n.type == "statement"; ) n = u(t);
111
+ for (n.type == "}" && (n = u(t)); n.type == "statement"; ) n = u(t);
112
+ } else l == n.type ? u(t) : W && ((n.type == "}" || n.type == "top") && l != ";" || n.type == "statement" && l == "newstatement") && a(t, e.column(), "statement");
115
113
  return t.startOfLine = !1, r;
116
114
  },
117
115
  languageData: {
@@ -121,5 +119,5 @@ const $ = {
121
119
  }
122
120
  };
123
121
  export {
124
- $ as ttcn
122
+ P as ttcn
125
123
  };
@@ -3,18 +3,16 @@ function I(e) {
3
3
  n[T[E]] = !0;
4
4
  return n;
5
5
  }
6
- const N = {
7
- name: "ttcn-cfg",
6
+ const r = {
8
7
  keywords: I("Yes No LogFile FileMask ConsoleMask AppendFile TimeStampFormat LogEventTypes SourceInfoFormat LogEntityName LogSourceInfo DiskFullAction LogFileNumber LogFileSize MatchingHints Detailed Compact SubCategories Stack Single None Seconds DateTime Time Stop Error Retry Delete TCPPort KillTimer NumHCs UnixSocketsEnabled LocalAddress"),
9
8
  fileNCtrlMaskOptions: I("TTCN_EXECUTOR TTCN_ERROR TTCN_WARNING TTCN_PORTEVENT TTCN_TIMEROP TTCN_VERDICTOP TTCN_DEFAULTOP TTCN_TESTCASE TTCN_ACTION TTCN_USER TTCN_FUNCTION TTCN_STATISTICS TTCN_PARALLEL TTCN_MATCHING TTCN_DEBUG EXECUTOR ERROR WARNING PORTEVENT TIMEROP VERDICTOP DEFAULTOP TESTCASE ACTION USER FUNCTION STATISTICS PARALLEL MATCHING DEBUG LOG_ALL LOG_NOTHING ACTION_UNQUALIFIED DEBUG_ENCDEC DEBUG_TESTPORT DEBUG_UNQUALIFIED DEFAULTOP_ACTIVATE DEFAULTOP_DEACTIVATE DEFAULTOP_EXIT DEFAULTOP_UNQUALIFIED ERROR_UNQUALIFIED EXECUTOR_COMPONENT EXECUTOR_CONFIGDATA EXECUTOR_EXTCOMMAND EXECUTOR_LOGOPTIONS EXECUTOR_RUNTIME EXECUTOR_UNQUALIFIED FUNCTION_RND FUNCTION_UNQUALIFIED MATCHING_DONE MATCHING_MCSUCCESS MATCHING_MCUNSUCC MATCHING_MMSUCCESS MATCHING_MMUNSUCC MATCHING_PCSUCCESS MATCHING_PCUNSUCC MATCHING_PMSUCCESS MATCHING_PMUNSUCC MATCHING_PROBLEM MATCHING_TIMEOUT MATCHING_UNQUALIFIED PARALLEL_PORTCONN PARALLEL_PORTMAP PARALLEL_PTC PARALLEL_UNQUALIFIED PORTEVENT_DUALRECV PORTEVENT_DUALSEND PORTEVENT_MCRECV PORTEVENT_MCSEND PORTEVENT_MMRECV PORTEVENT_MMSEND PORTEVENT_MQUEUE PORTEVENT_PCIN PORTEVENT_PCOUT PORTEVENT_PMIN PORTEVENT_PMOUT PORTEVENT_PQUEUE PORTEVENT_STATE PORTEVENT_UNQUALIFIED STATISTICS_UNQUALIFIED STATISTICS_VERDICT TESTCASE_FINISH TESTCASE_START TESTCASE_UNQUALIFIED TIMEROP_GUARD TIMEROP_READ TIMEROP_START TIMEROP_STOP TIMEROP_TIMEOUT TIMEROP_UNQUALIFIED USER_UNQUALIFIED VERDICTOP_FINAL VERDICTOP_GETVERDICT VERDICTOP_SETVERDICT VERDICTOP_UNQUALIFIED WARNING_UNQUALIFIED"),
10
- externalCommands: I("BeginControlPart EndControlPart BeginTestCase EndTestCase"),
11
- multiLineStrings: !0
9
+ externalCommands: I("BeginControlPart EndControlPart BeginTestCase EndTestCase")
12
10
  };
13
- var A = N.keywords, U = N.fileNCtrlMaskOptions, R = N.externalCommands, u = N.multiLineStrings, S = N.indentStatements !== !1, O = /[\|]/, t;
14
- function P(e, n) {
11
+ var A = r.keywords, U = r.fileNCtrlMaskOptions, R = r.externalCommands, S = r.indentStatements !== !1, O = /[\|]/, t;
12
+ function u(e, n) {
15
13
  var T = e.next();
16
14
  if (T == '"' || T == "'")
17
- return n.tokenize = L(T), n.tokenize(e, n);
15
+ return n.tokenize = P(T), n.tokenize(e, n);
18
16
  if (/[:=]/.test(T))
19
17
  return t = T, "punctuation";
20
18
  if (T == "#")
@@ -29,7 +27,7 @@ function P(e, n) {
29
27
  var E = e.current();
30
28
  return A.propertyIsEnumerable(E) ? "keyword" : U.propertyIsEnumerable(E) ? "atom" : R.propertyIsEnumerable(E) ? "deleted" : "variable";
31
29
  }
32
- function L(e) {
30
+ function P(e) {
33
31
  return function(n, T) {
34
32
  for (var E = !1, i, l = !1; (i = n.next()) != null; ) {
35
33
  if (i == e && !E) {
@@ -39,13 +37,13 @@ function L(e) {
39
37
  }
40
38
  E = !E && i == "\\";
41
39
  }
42
- return (l || !(E || u)) && (T.tokenize = null), "string";
40
+ return l && (T.tokenize = null), "string";
43
41
  };
44
42
  }
45
43
  function _(e, n, T, E, i) {
46
44
  this.indented = e, this.column = n, this.type = T, this.align = E, this.prev = i;
47
45
  }
48
- function r(e, n, T) {
46
+ function N(e, n, T) {
49
47
  var E = e.indented;
50
48
  return e.context && e.context.type == "statement" && (E = e.context.indented), e.context = new _(E, n, T, null, e.context);
51
49
  }
@@ -53,7 +51,7 @@ function o(e) {
53
51
  var n = e.context.type;
54
52
  return (n == ")" || n == "]" || n == "}") && (e.indented = e.context.indented), e.context = e.context.prev;
55
53
  }
56
- const D = {
54
+ const L = {
57
55
  name: "ttcn",
58
56
  startState: function() {
59
57
  return {
@@ -67,17 +65,17 @@ const D = {
67
65
  var T = n.context;
68
66
  if (e.sol() && (T.align == null && (T.align = !1), n.indented = e.indentation(), n.startOfLine = !0), e.eatSpace()) return null;
69
67
  t = null;
70
- var E = (n.tokenize || P)(e, n);
68
+ var E = (n.tokenize || u)(e, n);
71
69
  if (E == "comment") return E;
72
70
  if (T.align == null && (T.align = !0), (t == ";" || t == ":" || t == ",") && T.type == "statement")
73
71
  o(n);
74
- else if (t == "{") r(n, e.column(), "}");
75
- else if (t == "[") r(n, e.column(), "]");
76
- else if (t == "(") r(n, e.column(), ")");
72
+ else if (t == "{") N(n, e.column(), "}");
73
+ else if (t == "[") N(n, e.column(), "]");
74
+ else if (t == "(") N(n, e.column(), ")");
77
75
  else if (t == "}") {
78
76
  for (; T.type == "statement"; ) T = o(n);
79
77
  for (T.type == "}" && (T = o(n)); T.type == "statement"; ) T = o(n);
80
- } else t == T.type ? o(n) : S && ((T.type == "}" || T.type == "top") && t != ";" || T.type == "statement" && t == "newstatement") && r(n, e.column(), "statement");
78
+ } else t == T.type ? o(n) : S && ((T.type == "}" || T.type == "top") && t != ";" || T.type == "statement" && t == "newstatement") && N(n, e.column(), "statement");
81
79
  return n.startOfLine = !1, E;
82
80
  },
83
81
  languageData: {
@@ -86,5 +84,5 @@ const D = {
86
84
  }
87
85
  };
88
86
  export {
89
- D as ttcnCfg
87
+ L as ttcnCfg
90
88
  };
@@ -156,13 +156,6 @@ declare const _default: {
156
156
  placeholder: {
157
157
  type: import("vue").PropType<string>;
158
158
  };
159
- errorMessage: {
160
- type: import("vue").PropType<string>;
161
- };
162
- maxlength: {
163
- type: import("vue").PropType<string | number>;
164
- default: string;
165
- };
166
159
  step: {
167
160
  type: import("vue").PropType<string>;
168
161
  default: string;
@@ -188,6 +181,13 @@ declare const _default: {
188
181
  autofocus: {
189
182
  type: import("vue").PropType<boolean>;
190
183
  };
184
+ errorMessage: {
185
+ type: import("vue").PropType<string>;
186
+ };
187
+ maxlength: {
188
+ type: import("vue").PropType<string | number>;
189
+ default: string;
190
+ };
191
191
  datePickerOptions: {
192
192
  type: import("vue").PropType<import("@vuepic/vue-datepicker").VueDatePickerProps>;
193
193
  };
@@ -203,8 +203,8 @@ declare const _default: {
203
203
  size: "default" | "small";
204
204
  type: "number" | "time" | "text" | "date" | "datetime-local" | "email" | "password" | "tel" | "url" | "integer";
205
205
  name: string;
206
- maxlength: string | number;
207
206
  step: string;
207
+ maxlength: string | number;
208
208
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
209
209
  P: {};
210
210
  B: {};
@@ -252,13 +252,6 @@ declare const _default: {
252
252
  placeholder: {
253
253
  type: import("vue").PropType<string>;
254
254
  };
255
- errorMessage: {
256
- type: import("vue").PropType<string>;
257
- };
258
- maxlength: {
259
- type: import("vue").PropType<string | number>;
260
- default: string;
261
- };
262
255
  step: {
263
256
  type: import("vue").PropType<string>;
264
257
  default: string;
@@ -284,6 +277,13 @@ declare const _default: {
284
277
  autofocus: {
285
278
  type: import("vue").PropType<boolean>;
286
279
  };
280
+ errorMessage: {
281
+ type: import("vue").PropType<string>;
282
+ };
283
+ maxlength: {
284
+ type: import("vue").PropType<string | number>;
285
+ default: string;
286
+ };
287
287
  datePickerOptions: {
288
288
  type: import("vue").PropType<import("@vuepic/vue-datepicker").VueDatePickerProps>;
289
289
  };
@@ -295,8 +295,8 @@ declare const _default: {
295
295
  size: "default" | "small";
296
296
  type: "number" | "time" | "text" | "date" | "datetime-local" | "email" | "password" | "tel" | "url" | "integer";
297
297
  name: string;
298
- maxlength: string | number;
299
298
  step: string;
299
+ maxlength: string | number;
300
300
  }>;
301
301
  __isFragment?: undefined;
302
302
  __isTeleport?: undefined;
@@ -341,13 +341,6 @@ declare const _default: {
341
341
  placeholder: {
342
342
  type: import("vue").PropType<string>;
343
343
  };
344
- errorMessage: {
345
- type: import("vue").PropType<string>;
346
- };
347
- maxlength: {
348
- type: import("vue").PropType<string | number>;
349
- default: string;
350
- };
351
344
  step: {
352
345
  type: import("vue").PropType<string>;
353
346
  default: string;
@@ -373,6 +366,13 @@ declare const _default: {
373
366
  autofocus: {
374
367
  type: import("vue").PropType<boolean>;
375
368
  };
369
+ errorMessage: {
370
+ type: import("vue").PropType<string>;
371
+ };
372
+ maxlength: {
373
+ type: import("vue").PropType<string | number>;
374
+ default: string;
375
+ };
376
376
  datePickerOptions: {
377
377
  type: import("vue").PropType<import("@vuepic/vue-datepicker").VueDatePickerProps>;
378
378
  };
@@ -388,8 +388,8 @@ declare const _default: {
388
388
  size: "default" | "small";
389
389
  type: "number" | "time" | "text" | "date" | "datetime-local" | "email" | "password" | "tel" | "url" | "integer";
390
390
  name: string;
391
- maxlength: string | number;
392
391
  step: string;
392
+ maxlength: string | number;
393
393
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
394
394
  $slots: Readonly<{
395
395
  control: (scope: {
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=ChevronDownIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChevronDownIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=ChevronLeftIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChevronLeftIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=ChevronRightIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChevronRightIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=ChevronUpIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChevronUpIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=DoubleArrowLeftIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DoubleArrowLeftIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=DoubleArrowRightIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DoubleArrowRightIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=SearchIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SearchIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/SearchIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAgEA,wBASG;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"}
@@ -0,0 +1,18 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ width?: string | number | undefined;
3
+ height?: string | number | undefined;
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ width?: string | number | undefined;
6
+ height?: string | number | undefined;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
18
+ //# sourceMappingURL=VertDotsIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VertDotsIcon.vue.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.ts"],"names":[],"mappings":";;;;;;;AAwGA,wBASG;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"}
@@ -2,11 +2,19 @@ export { default as AppWindowIcon } from "./AppWindowIcon.vue";
2
2
  export { default as ArrowLeftIcon } from "./ArrowLeftIcon.vue";
3
3
  export { default as ArrowRightIcon } from "./ArrowRightIcon.vue";
4
4
  export { default as BellIcon } from "./BellIcon.vue";
5
+ export { default as ChevronDownIcon } from "./ChevronDownIcon.vue";
6
+ export { default as ChevronLeftIcon } from "./ChevronLeftIcon.vue";
7
+ export { default as ChevronRightIcon } from "./ChevronRightIcon.vue";
8
+ export { default as ChevronUpIcon } from "./ChevronUpIcon.vue";
5
9
  export { default as CircleDotsIcon } from "./CircleDotsIcon.vue";
6
10
  export { default as CrossSignIcon } from "./CrossSignIcon.vue";
11
+ export { default as DoubleArrowLeftIcon } from "./DoubleArrowLeftIcon.vue";
12
+ export { default as DoubleArrowRightIcon } from "./DoubleArrowRightIcon.vue";
7
13
  export { default as LogoutIcon } from "./LogoutIcon.vue";
8
14
  export { default as MenuBurgerIcon } from "./MenuBurgerIcon.vue";
9
15
  export { default as MinusSignIcon } from "./MinusSignIcon.vue";
10
16
  export { default as PlusSignIcon } from "./PlusSignIcon.vue";
17
+ export { default as SearchIcon } from "./SearchIcon.vue";
11
18
  export { default as SettingsBoltIcon } from "./SettingsBoltIcon.vue";
19
+ export { default as VertDotsIcon } from "./VertDotsIcon.vue";
12
20
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../ui/components/atoms/vc-icon/icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,2BAA2B,CAAA;AAC1E,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,4BAA4B,CAAA;AAC5E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAChE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAC5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AACpE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"vc-icon.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/atoms/vc-icon/vc-icon.vue.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAErC,MAAM,WAAW,KAAK;IACpB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,KAAK,GAAG,MAAM,CAAC;IACtD,OAAO,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;CAC5C;;;;;;;;;;;AA4ED,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;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"}
1
+ {"version":3,"file":"vc-icon.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/atoms/vc-icon/vc-icon.vue.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAErC,MAAM,WAAW,KAAK;IACpB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,KAAK,GAAG,MAAM,CAAC;IACtD,OAAO,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAC;CAC5C;;;;;;;;;;;AA+ED,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;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"}
@@ -1 +1 @@
1
- {"version":3,"file":"vc-image.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/atoms/vc-image/vc-image.vue.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,KAAK;IACpB,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,KAAK,CAAC;IAC9D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;CACxB;;;;;;;;;;;;;;;;;;;;;AAoID,wBAOG;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"}
1
+ {"version":3,"file":"vc-image.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/atoms/vc-image/vc-image.vue.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,KAAK;IACpB,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,KAAK,CAAC;IAC9D,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,KAAK;IACpB,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;CACxB;;;;;;;;;;;;;;;;;;;;;AAoJD,wBAOG;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"}
@@ -0,0 +1,35 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ rows?: number | undefined;
3
+ animated?: boolean | undefined;
4
+ }>, {
5
+ rows: number;
6
+ animated: boolean;
7
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
+ rows?: number | undefined;
9
+ animated?: boolean | undefined;
10
+ }>, {
11
+ rows: number;
12
+ animated: boolean;
13
+ }>>> & Readonly<{}>, {
14
+ rows: number;
15
+ animated: boolean;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
+ export default _default;
18
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
+ type __VLS_TypePropsToRuntimeProps<T> = {
20
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
21
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
+ } : {
23
+ type: import('vue').PropType<T[K]>;
24
+ required: true;
25
+ };
26
+ };
27
+ type __VLS_WithDefaults<P, D> = {
28
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
29
+ default: D[K];
30
+ }> : P[K];
31
+ };
32
+ type __VLS_Prettify<T> = {
33
+ [K in keyof T]: T[K];
34
+ } & {};
35
+ //# sourceMappingURL=vc-skeleton.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vc-skeleton.vue.d.ts","sourceRoot":"","sources":["../../../../../ui/components/atoms/vc-skeleton/vc-skeleton.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;UAgGW,MAAM;cACF,OAAO;;AAPtB,wBASG;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"}