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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (920) hide show
  1. package/CHANGELOG.md +15 -2
  2. package/core/api/platform.ts +9883 -9883
  3. package/core/composables/index.ts +11 -7
  4. package/core/composables/useApiClient/index.ts +22 -22
  5. package/core/composables/useAppBarMobileButtons/index.ts +17 -0
  6. package/core/composables/useAppBarWidget/index.ts +19 -0
  7. package/core/composables/useBeforeUnload/index.ts +25 -25
  8. package/core/composables/useDashboard/index.ts +19 -0
  9. package/core/composables/useFunctions/debounce.ts +16 -16
  10. package/core/composables/useFunctions/delay.ts +4 -4
  11. package/core/composables/useFunctions/index.ts +21 -21
  12. package/core/composables/useFunctions/once.ts +12 -12
  13. package/core/composables/useFunctions/sleep.ts +4 -4
  14. package/core/composables/useFunctions/throttle.ts +14 -14
  15. package/core/composables/useGlobalSearch/index.ts +19 -0
  16. package/core/composables/useKeyboardNavigation/index.ts +211 -0
  17. package/core/composables/useLanguages/index.ts +78 -78
  18. package/core/composables/useLoading/index.ts +9 -9
  19. package/core/composables/useMenuService/index.ts +15 -105
  20. package/core/composables/useSettingsMenu/index.ts +23 -0
  21. package/core/composables/useTheme/index.ts +62 -61
  22. package/core/composables/useWidgets/index.ts +20 -0
  23. package/core/constants/index.ts +2 -0
  24. package/core/directives/autofocus/index.ts +9 -9
  25. package/core/directives/loading/index.ts +30 -1
  26. package/core/directives/loading/styles.css +36 -7
  27. package/core/plugins/i18n/index.ts +11 -11
  28. package/core/plugins/modularity/index.ts +32 -30
  29. package/core/plugins/modularity/loader.ts +2 -1
  30. package/core/plugins/moment/humanize.ts +74 -74
  31. package/core/plugins/moment/index.ts +1 -1
  32. package/core/plugins/permissions/index.ts +10 -10
  33. package/core/plugins/validation/index.ts +1 -1
  34. package/core/plugins/validation/rules.ts +145 -145
  35. package/core/services/app-bar-menu-service.ts +87 -0
  36. package/core/services/app-bar-mobile-buttons-service.ts +57 -0
  37. package/core/services/dashboard-service.ts +121 -0
  38. package/core/services/global-search-service.ts +36 -0
  39. package/core/services/menu-service.ts +235 -0
  40. package/core/services/settings-menu-service.ts +75 -0
  41. package/core/services/widget-service.ts +147 -0
  42. package/core/types/index.ts +33 -18
  43. package/core/types/widget.ts +15 -0
  44. package/core/utilities/camelToSnake.ts +7 -7
  45. package/core/utilities/camelize.ts +5 -5
  46. package/core/utilities/generateId.ts +3 -3
  47. package/core/utilities/kebabToCamel.ts +7 -7
  48. package/dist/{asn1-DF4fnRHj.js → asn1-jKiBa2Ya.js} +20 -18
  49. package/dist/{clike-l4mx49Q1.js → clike-BUuHEmgZ.js} +0 -1
  50. package/dist/{cobol-CJVkMW0i.js → cobol-BlTKFDRj.js} +0 -1
  51. package/dist/core/composables/index.d.ts +11 -7
  52. package/dist/core/composables/index.d.ts.map +1 -1
  53. package/dist/core/composables/useAppBarMobileButtons/index.d.ts +3 -0
  54. package/dist/core/composables/useAppBarMobileButtons/index.d.ts.map +1 -0
  55. package/dist/core/composables/useAppBarWidget/index.d.ts +5 -0
  56. package/dist/core/composables/useAppBarWidget/index.d.ts.map +1 -0
  57. package/dist/core/composables/useDashboard/index.d.ts +5 -0
  58. package/dist/core/composables/useDashboard/index.d.ts.map +1 -0
  59. package/dist/core/composables/useGlobalSearch/index.d.ts +4 -0
  60. package/dist/core/composables/useGlobalSearch/index.d.ts.map +1 -0
  61. package/dist/core/composables/useKeyboardNavigation/index.d.ts +24 -0
  62. package/dist/core/composables/useKeyboardNavigation/index.d.ts.map +1 -0
  63. package/dist/core/composables/useMenuService/index.d.ts +4 -10
  64. package/dist/core/composables/useMenuService/index.d.ts.map +1 -1
  65. package/dist/core/composables/useSettingsMenu/index.d.ts +5 -0
  66. package/dist/core/composables/useSettingsMenu/index.d.ts.map +1 -0
  67. package/dist/core/composables/useTheme/index.d.ts.map +1 -1
  68. package/dist/core/composables/useWidgets/index.d.ts +5 -0
  69. package/dist/core/composables/useWidgets/index.d.ts.map +1 -0
  70. package/dist/core/constants/index.d.ts +1 -0
  71. package/dist/core/constants/index.d.ts.map +1 -1
  72. package/dist/core/directives/loading/index.d.ts.map +1 -1
  73. package/dist/core/plugins/modularity/index.d.ts +7 -7
  74. package/dist/core/plugins/modularity/index.d.ts.map +1 -1
  75. package/dist/core/plugins/modularity/loader.d.ts.map +1 -1
  76. package/dist/core/services/app-bar-menu-service.d.ts +29 -0
  77. package/dist/core/services/app-bar-menu-service.d.ts.map +1 -0
  78. package/dist/core/services/app-bar-mobile-buttons-service.d.ts +24 -0
  79. package/dist/core/services/app-bar-mobile-buttons-service.d.ts.map +1 -0
  80. package/dist/core/services/dashboard-service.d.ts +33 -0
  81. package/dist/core/services/dashboard-service.d.ts.map +1 -0
  82. package/dist/core/services/global-search-service.d.ts +10 -0
  83. package/dist/core/services/global-search-service.d.ts.map +1 -0
  84. package/dist/core/services/menu-service.d.ts +17 -0
  85. package/dist/core/services/menu-service.d.ts.map +1 -0
  86. package/dist/core/services/settings-menu-service.d.ts +25 -0
  87. package/dist/core/services/settings-menu-service.d.ts.map +1 -0
  88. package/dist/core/services/widget-service.d.ts +39 -0
  89. package/dist/core/services/widget-service.d.ts.map +1 -0
  90. package/dist/core/types/index.d.ts +33 -17
  91. package/dist/core/types/index.d.ts.map +1 -1
  92. package/dist/core/types/widget.d.ts +12 -0
  93. package/dist/core/types/widget.d.ts.map +1 -0
  94. package/dist/{dockerfile-CFG_IPGn.js → dockerfile-DIy8NleC.js} +1 -1
  95. package/dist/{factor-DJHfQ4a1.js → factor-DDOC7X6P.js} +1 -1
  96. package/dist/framework.js +282 -224
  97. package/dist/{haxe-pdDS1aE8.js → haxe-70NVW1pR.js} +1 -1
  98. package/dist/index-Bi0kJi5Z.js +137 -0
  99. package/dist/{index-YvFwPxsI.js → index-C21NKea4.js} +9 -9
  100. package/dist/{index-CV4fOhK1.js → index-C9n6vRCl.js} +6 -6
  101. package/dist/{index-Dho4-wXM.js → index-CBdNNVCt.js} +8 -8
  102. package/dist/{index-n48DzlNW.js → index-CNEtPeAi.js} +9 -9
  103. package/dist/index-CPkPLIZF.js +243 -0
  104. package/dist/{index-CT72nbMk.js → index-CUwa-7vt.js} +10 -10
  105. package/dist/{index-bAD1-blW.js → index-ClEfeR5e.js} +7 -7
  106. package/dist/{index-BON_eF-3.js → index-CtUvgwL1.js} +9 -9
  107. package/dist/{index-wsG2MecP.js → index-D7TQzX3d.js} +7 -7
  108. package/dist/{index-Ce86fM2z.js → index-DSYfAsS3.js} +95775 -92179
  109. package/dist/{index-Dcdjgpoe.js → index-Dg1vmmpj.js} +5 -5
  110. package/dist/{index-DSefVRVC.js → index-Dzz7ZfO9.js} +19 -19
  111. package/dist/index-dZEaziXz.js +607 -0
  112. package/dist/{index-Ck9pr8TI.js → index-kg3-UkAr.js} +16 -16
  113. package/dist/{index-BXTIkfHT.js → index-vc0H8rq-.js} +42 -42
  114. package/dist/index-vegt24rG.js +308 -0
  115. package/dist/index.css +1 -1
  116. package/dist/index.d.ts +9 -0
  117. package/dist/index.d.ts.map +1 -1
  118. package/dist/injection-keys.d.ts +46 -0
  119. package/dist/injection-keys.d.ts.map +1 -0
  120. package/dist/{javascript-CWGekh08.js → javascript-WMWNx-Vj.js} +1 -1
  121. package/dist/{livescript-CE_BxZmN.js → livescript-CanGTf8u.js} +25 -25
  122. package/dist/locales/de.json +8 -2
  123. package/dist/locales/en.json +6 -1
  124. package/dist/{mllike-1yy7Y7jE.js → mllike-BSnXJBGA.js} +0 -3
  125. package/dist/{nsis-BtA0qkjU.js → nsis-fePjrhq7.js} +1 -1
  126. package/dist/{pascal-ixanSKUz.js → pascal-De0D6mP7.js} +1 -1
  127. package/dist/{pug-CW1q1xhQ.js → pug-BqUR2bBq.js} +1 -1
  128. package/dist/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue.d.ts.map +1 -1
  129. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts +19 -0
  130. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts.map +1 -0
  131. package/dist/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue.d.ts.map +1 -1
  132. package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts +32 -2
  133. package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts.map +1 -1
  134. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts +5 -1
  135. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
  136. package/dist/shared/components/blade-navigation/types/index.d.ts +9 -0
  137. package/dist/shared/components/blade-navigation/types/index.d.ts.map +1 -1
  138. package/dist/shared/components/change-password-button/change-password-button.vue.d.ts +3 -0
  139. package/dist/shared/components/change-password-button/change-password-button.vue.d.ts.map +1 -0
  140. package/dist/shared/components/change-password-button/index.d.ts +2 -0
  141. package/dist/shared/components/change-password-button/index.d.ts.map +1 -0
  142. package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts +25 -0
  143. package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts.map +1 -0
  144. package/dist/shared/components/dashboard-widget-card/index.d.ts +2 -0
  145. package/dist/shared/components/dashboard-widget-card/index.d.ts.map +1 -0
  146. package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts +8 -0
  147. package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts.map +1 -0
  148. package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts +20 -0
  149. package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts.map +1 -0
  150. package/dist/shared/components/draggable-dashboard/composables/useCellSizeCalculator.d.ts +25 -0
  151. package/dist/shared/components/draggable-dashboard/composables/useCellSizeCalculator.d.ts.map +1 -0
  152. package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts +27 -0
  153. package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts.map +1 -0
  154. package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts +376 -0
  155. package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts.map +1 -0
  156. package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts +20 -0
  157. package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts.map +1 -0
  158. package/dist/shared/components/draggable-dashboard/composables/useDragClone.d.ts +15 -0
  159. package/dist/shared/components/draggable-dashboard/composables/useDragClone.d.ts.map +1 -0
  160. package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts +33 -0
  161. package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts.map +1 -0
  162. package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts +57 -0
  163. package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts.map +1 -0
  164. package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts +22 -0
  165. package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts.map +1 -0
  166. package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts +19 -0
  167. package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts.map +1 -0
  168. package/dist/shared/components/draggable-dashboard/composables/useResizeObserver.d.ts +18 -0
  169. package/dist/shared/components/draggable-dashboard/composables/useResizeObserver.d.ts.map +1 -0
  170. package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts +14 -0
  171. package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts.map +1 -0
  172. package/dist/shared/components/draggable-dashboard/composables/useWidgetStyles.d.ts +21 -0
  173. package/dist/shared/components/draggable-dashboard/composables/useWidgetStyles.d.ts.map +1 -0
  174. package/dist/shared/components/draggable-dashboard/index.d.ts +2 -0
  175. package/dist/shared/components/draggable-dashboard/index.d.ts.map +1 -0
  176. package/dist/shared/components/draggable-dashboard/types.d.ts +84 -0
  177. package/dist/shared/components/draggable-dashboard/types.d.ts.map +1 -0
  178. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts +132 -0
  179. package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts.map +1 -0
  180. package/dist/shared/components/generic-dropdown/index.d.ts +2 -0
  181. package/dist/shared/components/generic-dropdown/index.d.ts.map +1 -0
  182. package/dist/shared/components/index.d.ts +4 -1
  183. package/dist/shared/components/index.d.ts.map +1 -1
  184. package/dist/shared/components/language-selector/language-selector.vue.d.ts.map +1 -1
  185. package/dist/shared/components/logout-button/index.d.ts +2 -0
  186. package/dist/shared/components/logout-button/index.d.ts.map +1 -0
  187. package/dist/shared/components/logout-button/logout-button.vue.d.ts +3 -0
  188. package/dist/shared/components/logout-button/logout-button.vue.d.ts.map +1 -0
  189. package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts +2 -0
  190. package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts.map +1 -0
  191. package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts.map +1 -1
  192. package/dist/shared/components/notification-template/index.d.ts +4 -31
  193. package/dist/shared/components/notification-template/index.d.ts.map +1 -1
  194. package/dist/shared/components/notification-template/notification-template.vue.d.ts +4 -14
  195. package/dist/shared/components/notification-template/notification-template.vue.d.ts.map +1 -1
  196. package/dist/shared/components/notifications/components/notification-container/index.d.ts +1 -1
  197. package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
  198. package/dist/shared/components/settings-menu/index.d.ts +2 -0
  199. package/dist/shared/components/settings-menu/index.d.ts.map +1 -0
  200. package/dist/shared/components/settings-menu/settings-menu.vue.d.ts +3 -0
  201. package/dist/shared/components/settings-menu/settings-menu.vue.d.ts.map +1 -0
  202. package/dist/shared/components/settings-menu-item/index.d.ts +2 -0
  203. package/dist/shared/components/settings-menu-item/index.d.ts.map +1 -0
  204. package/dist/shared/components/{app-bar-button/app-bar-button.vue.d.ts → settings-menu-item/settings-menu-item.vue.d.ts} +26 -25
  205. package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts.map +1 -0
  206. package/dist/shared/components/sidebar/sidebar.vue.d.ts +7 -2
  207. package/dist/shared/components/sidebar/sidebar.vue.d.ts.map +1 -1
  208. package/dist/shared/components/theme-selector/theme-selector.vue.d.ts.map +1 -1
  209. package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts +18 -0
  210. package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts.map +1 -0
  211. package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts +23 -0
  212. package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts.map +1 -0
  213. package/dist/shared/components/user-dropdown-button/index.d.ts +9 -25
  214. package/dist/shared/components/user-dropdown-button/index.d.ts.map +1 -1
  215. package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts +1 -18
  216. package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts.map +1 -1
  217. package/dist/shared/composables/useMenuExpanded.d.ts +7 -0
  218. package/dist/shared/composables/useMenuExpanded.d.ts.map +1 -0
  219. package/dist/shared/modules/assets/index.d.ts.map +1 -1
  220. package/dist/shared/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts.map +1 -1
  221. package/dist/shared/modules/assets-manager/components/assets-manager/index.d.ts +16 -16
  222. package/dist/shared/modules/dynamic/components/fields/Button.d.ts +1 -7
  223. package/dist/shared/modules/dynamic/components/fields/Button.d.ts.map +1 -1
  224. package/dist/shared/modules/dynamic/components/fields/Card.d.ts +1 -7
  225. package/dist/shared/modules/dynamic/components/fields/Card.d.ts.map +1 -1
  226. package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +1 -7
  227. package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts.map +1 -1
  228. package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +1 -7
  229. package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts.map +1 -1
  230. package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts +1 -7
  231. package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts.map +1 -1
  232. package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +1 -7
  233. package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts.map +1 -1
  234. package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +1 -7
  235. package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts.map +1 -1
  236. package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +1 -7
  237. package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts.map +1 -1
  238. package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +1 -7
  239. package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts.map +1 -1
  240. package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +1 -7
  241. package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts.map +1 -1
  242. package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +1 -7
  243. package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts.map +1 -1
  244. package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +1 -7
  245. package/dist/shared/modules/dynamic/components/fields/InputField.d.ts.map +1 -1
  246. package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts +1 -7
  247. package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts.map +1 -1
  248. package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts +1 -7
  249. package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts.map +1 -1
  250. package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts +1 -7
  251. package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts.map +1 -1
  252. package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +1 -7
  253. package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts.map +1 -1
  254. package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +1 -7
  255. package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts.map +1 -1
  256. package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts +1 -7
  257. package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts.map +1 -1
  258. package/dist/shared/modules/dynamic/components/fields/Table.d.ts +1 -7
  259. package/dist/shared/modules/dynamic/components/fields/Table.d.ts.map +1 -1
  260. package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts +1 -7
  261. package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts.map +1 -1
  262. package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +1 -7
  263. package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts.map +1 -1
  264. package/dist/shared/modules/dynamic/components/fields/props.d.ts +1 -7
  265. package/dist/shared/modules/dynamic/components/fields/props.d.ts.map +1 -1
  266. package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts +3 -62
  267. package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts.map +1 -1
  268. package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts +3 -21
  269. package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts.map +1 -1
  270. package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +3 -21
  271. package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts.map +1 -1
  272. package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts +3 -21
  273. package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts.map +1 -1
  274. package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +3 -21
  275. package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts.map +1 -1
  276. package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts +3 -21
  277. package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts.map +1 -1
  278. package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts +3 -21
  279. package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts.map +1 -1
  280. package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts +3 -21
  281. package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts.map +1 -1
  282. package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +3 -21
  283. package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts.map +1 -1
  284. package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +3 -21
  285. package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts.map +1 -1
  286. package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts +3 -21
  287. package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts.map +1 -1
  288. package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts +3 -21
  289. package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts.map +1 -1
  290. package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts +3 -21
  291. package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts.map +1 -1
  292. package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts +3 -21
  293. package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts.map +1 -1
  294. package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts +3 -21
  295. package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts.map +1 -1
  296. package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +3 -21
  297. package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts.map +1 -1
  298. package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts +3 -21
  299. package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts.map +1 -1
  300. package/dist/shared/modules/dynamic/components/fields/storybook/common/templates.d.ts +1 -1
  301. package/dist/shared/modules/dynamic/components/fields/storybook/common/templates.d.ts.map +1 -1
  302. package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts +3 -21
  303. package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts.map +1 -1
  304. package/dist/shared/modules/dynamic/composables/useFilterBuilder/index.d.ts.map +1 -1
  305. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +2 -14
  306. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts.map +1 -1
  307. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +4 -41
  308. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
  309. package/dist/shared/modules/dynamic/types/index.d.ts +5 -0
  310. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  311. package/dist/shared/pages/InvitePage/components/invite/index.d.ts +10 -10
  312. package/dist/shared/pages/ResetPasswordPage/components/reset-password/index.d.ts +10 -10
  313. package/dist/{simple-mode-HGTvdazT.js → simple-mode-B0dvCdAA.js} +15 -14
  314. package/dist/{sql-uoWIYwDX.js → sql-mMre1Bo3.js} +0 -2
  315. package/dist/tailwind.config.d.ts +1 -81
  316. package/dist/tailwind.config.d.ts.map +1 -1
  317. package/dist/tsconfig.tsbuildinfo +1 -1
  318. package/dist/{ttcn-DmjTzZb6.js → ttcn-Bsa4sfRm.js} +20 -22
  319. package/dist/{ttcn-cfg-B2U3U7dn.js → ttcn-cfg-Bac_acMi.js} +15 -17
  320. package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts.map +1 -1
  321. package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts +266 -831
  322. package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts.map +1 -1
  323. package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts +20 -3
  324. package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts.map +1 -1
  325. package/dist/ui/components/atoms/vc-card/index.d.ts +2 -0
  326. package/dist/ui/components/atoms/vc-card/index.d.ts.map +1 -1
  327. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +36 -24
  328. package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +1 -1
  329. package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts +2 -0
  330. package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts.map +1 -1
  331. package/dist/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue.d.ts +18 -0
  332. package/dist/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue.d.ts.map +1 -0
  333. package/dist/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue.d.ts +18 -0
  334. package/dist/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue.d.ts.map +1 -0
  335. package/dist/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue.d.ts +18 -0
  336. package/dist/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue.d.ts.map +1 -0
  337. package/dist/ui/components/atoms/vc-icon/icons/BellIcon.vue.d.ts +18 -0
  338. package/dist/ui/components/atoms/vc-icon/icons/BellIcon.vue.d.ts.map +1 -0
  339. package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts +18 -0
  340. package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts.map +1 -0
  341. package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts +18 -0
  342. package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts.map +1 -0
  343. package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts +18 -0
  344. package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts.map +1 -0
  345. package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts +18 -0
  346. package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts.map +1 -0
  347. package/dist/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue.d.ts +18 -0
  348. package/dist/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue.d.ts.map +1 -0
  349. package/dist/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue.d.ts +18 -0
  350. package/dist/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue.d.ts.map +1 -0
  351. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts +18 -0
  352. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts.map +1 -0
  353. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts +18 -0
  354. package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts.map +1 -0
  355. package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts +18 -0
  356. package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts.map +1 -0
  357. package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts +18 -0
  358. package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts.map +1 -0
  359. package/dist/ui/components/atoms/vc-icon/icons/LogoutIcon.vue.d.ts +18 -0
  360. package/dist/ui/components/atoms/vc-icon/icons/LogoutIcon.vue.d.ts.map +1 -0
  361. package/dist/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue.d.ts +18 -0
  362. package/dist/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue.d.ts.map +1 -0
  363. package/dist/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue.d.ts +18 -0
  364. package/dist/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue.d.ts.map +1 -0
  365. package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts +18 -0
  366. package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts.map +1 -0
  367. package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts +18 -0
  368. package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts.map +1 -0
  369. package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts +18 -0
  370. package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts.map +1 -0
  371. package/dist/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue.d.ts +18 -0
  372. package/dist/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue.d.ts.map +1 -0
  373. package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts +18 -0
  374. package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts.map +1 -0
  375. package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts +18 -0
  376. package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts.map +1 -0
  377. package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts +18 -0
  378. package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts.map +1 -0
  379. package/dist/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue.d.ts +18 -0
  380. package/dist/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue.d.ts.map +1 -0
  381. package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts +18 -0
  382. package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts.map +1 -0
  383. package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts +18 -0
  384. package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts.map +1 -0
  385. package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts +18 -0
  386. package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts.map +1 -0
  387. package/dist/ui/components/atoms/vc-icon/icons/index.d.ts +28 -0
  388. package/dist/ui/components/atoms/vc-icon/icons/index.d.ts.map +1 -0
  389. package/dist/ui/components/atoms/vc-icon/index.d.ts +1 -0
  390. package/dist/ui/components/atoms/vc-icon/index.d.ts.map +1 -1
  391. package/dist/ui/components/atoms/vc-icon/vc-icon.stories.d.ts +3 -3
  392. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts +3 -2
  393. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
  394. package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts +9 -0
  395. package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts.map +1 -1
  396. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts +1 -0
  397. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
  398. package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts +35 -0
  399. package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts.map +1 -0
  400. package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts +15 -0
  401. package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts.map +1 -1
  402. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts +7 -0
  403. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts.map +1 -1
  404. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts +4 -0
  405. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts.map +1 -1
  406. package/dist/ui/components/atoms/vc-widget/index.d.ts +6 -0
  407. package/dist/ui/components/atoms/vc-widget/index.d.ts.map +1 -1
  408. package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts +6 -0
  409. package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts.map +1 -1
  410. package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts +1 -3
  411. package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts.map +1 -1
  412. package/dist/ui/components/index.d.ts +1 -0
  413. package/dist/ui/components/index.d.ts.map +1 -1
  414. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts +67 -33
  415. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts.map +1 -1
  416. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts +25 -11
  417. package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts.map +1 -1
  418. package/dist/ui/components/molecules/vc-checkbox/index.d.ts +21 -4
  419. package/dist/ui/components/molecules/vc-checkbox/index.d.ts.map +1 -1
  420. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts +210 -40
  421. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts.map +1 -1
  422. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts +10 -4
  423. package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
  424. package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts +996 -0
  425. package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts.map +1 -1
  426. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +332 -0
  427. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
  428. package/dist/ui/components/molecules/vc-field/vc-field.stories.d.ts +3 -3
  429. package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +1 -1
  430. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.stories.d.ts +12 -12
  431. package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +24 -24
  432. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
  433. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
  434. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +18 -18
  435. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
  436. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts +84 -84
  437. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +12 -12
  438. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
  439. package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
  440. package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +240 -240
  441. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +24 -24
  442. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  443. package/dist/ui/components/molecules/vc-slider/index.d.ts +9 -9
  444. package/dist/ui/components/molecules/vc-slider/vc-slider.stories.d.ts +9 -9
  445. package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts +63 -0
  446. package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts.map +1 -1
  447. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +1 -0
  448. package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
  449. package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts +19 -0
  450. package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts.map +1 -0
  451. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts +25 -0
  452. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts.map +1 -0
  453. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts +32 -0
  454. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts.map +1 -0
  455. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts +17 -0
  456. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts.map +1 -0
  457. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts +30 -0
  458. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts.map +1 -0
  459. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts +50 -0
  460. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts.map +1 -0
  461. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue.d.ts +3 -0
  462. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue.d.ts.map +1 -0
  463. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts +40 -0
  464. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts.map +1 -0
  465. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.d.ts +9 -0
  466. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.d.ts.map +1 -0
  467. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.d.ts +8 -0
  468. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.d.ts.map +1 -0
  469. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.d.ts +23 -0
  470. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.d.ts.map +1 -0
  471. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts +6 -16
  472. package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts.map +1 -1
  473. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue.d.ts +3 -2
  474. 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
  475. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts +2 -1
  476. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts.map +1 -1
  477. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts +3 -12
  478. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts.map +1 -1
  479. package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts +13 -199
  480. package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts.map +1 -1
  481. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts +5 -197
  482. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts.map +1 -1
  483. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts +1 -2
  484. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts.map +1 -1
  485. 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
  486. 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
  487. 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 -4
  488. 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
  489. 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
  490. 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
  491. 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
  492. 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
  493. 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
  494. 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
  495. 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
  496. 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
  497. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts +9 -2
  498. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts.map +1 -1
  499. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts +3 -0
  500. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts.map +1 -0
  501. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts +16 -0
  502. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts.map +1 -0
  503. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts +16 -0
  504. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts.map +1 -0
  505. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts +15 -0
  506. package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts.map +1 -0
  507. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts +2 -16
  508. package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts.map +1 -1
  509. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +56 -2
  510. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
  511. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts +3 -3
  512. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts.map +1 -1
  513. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts +2 -2
  514. package/dist/ui/components/organisms/vc-gallery/vc-gallery.stories.d.ts +13 -13
  515. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +1 -1
  516. package/dist/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue.d.ts.map +1 -1
  517. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +3 -2
  518. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
  519. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts +2 -1
  520. package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
  521. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts +218 -0
  522. 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
  523. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts +118 -0
  524. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts.map +1 -0
  525. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +236 -0
  526. 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
  527. 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 +24 -0
  528. 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
  529. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +314 -0
  530. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts.map +1 -0
  531. package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts +1 -1
  532. package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts.map +1 -1
  533. package/dist/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue.d.ts.map +1 -1
  534. package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts +32 -0
  535. package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts.map +1 -0
  536. package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts +66 -0
  537. package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts.map +1 -0
  538. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts +6 -13
  539. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts.map +1 -1
  540. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts +229 -0
  541. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts.map +1 -0
  542. package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts +38 -0
  543. package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts.map +1 -0
  544. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts +17 -0
  545. package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts.map +1 -0
  546. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts +407 -0
  547. package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts.map +1 -0
  548. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts +9 -0
  549. package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts.map +1 -0
  550. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts +16 -0
  551. package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts.map +1 -0
  552. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts +23 -0
  553. package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts.map +1 -0
  554. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts +20 -0
  555. package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts.map +1 -0
  556. package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts +12 -0
  557. package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts.map +1 -0
  558. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +105 -735
  559. package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
  560. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +41 -135
  561. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  562. package/dist/ui/composables/useVisibleElements.d.ts +19 -0
  563. package/dist/ui/composables/useVisibleElements.d.ts.map +1 -0
  564. package/dist/{xquery-xQxle02u.js → xquery-BUQdORAS.js} +72 -76
  565. package/package.json +16 -6
  566. package/shared/components/app-switcher/components/vc-app-switcher/index.ts +1 -1
  567. package/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +30 -135
  568. package/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue +77 -0
  569. package/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue +23 -10
  570. package/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.ts +30 -6
  571. package/shared/components/blade-navigation/composables/useBladeNavigation/index.ts +9 -1
  572. package/shared/components/blade-navigation/types/index.ts +10 -0
  573. package/shared/components/change-password/change-password.vue +3 -2
  574. package/shared/components/change-password-button/change-password-button.vue +20 -0
  575. package/shared/components/change-password-button/index.ts +1 -0
  576. package/shared/components/dashboard-widget-card/dashboard-widget-card.vue +67 -0
  577. package/shared/components/dashboard-widget-card/index.ts +1 -0
  578. package/shared/components/draggable-dashboard/DraggableDashboard.vue +332 -0
  579. package/shared/components/draggable-dashboard/_internal/DashboardWidget.vue +117 -0
  580. package/shared/components/draggable-dashboard/composables/useCellSizeCalculator.ts +121 -0
  581. package/shared/components/draggable-dashboard/composables/useCollisionDetection.ts +219 -0
  582. package/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.ts +342 -0
  583. package/shared/components/draggable-dashboard/composables/useDashboardGrid.ts +104 -0
  584. package/shared/components/draggable-dashboard/composables/useDragClone.ts +97 -0
  585. package/shared/components/draggable-dashboard/composables/useEventCoordinates.ts +91 -0
  586. package/shared/components/draggable-dashboard/composables/useGridPosition.ts +150 -0
  587. package/shared/components/draggable-dashboard/composables/useGridSystem.ts +169 -0
  588. package/shared/components/draggable-dashboard/composables/useLayoutPersistence.ts +89 -0
  589. package/shared/components/draggable-dashboard/composables/useResizeObserver.ts +105 -0
  590. package/shared/components/draggable-dashboard/composables/useWidgetLayout.ts +264 -0
  591. package/shared/components/draggable-dashboard/composables/useWidgetStyles.ts +120 -0
  592. package/shared/components/draggable-dashboard/index.ts +1 -0
  593. package/shared/components/draggable-dashboard/types.ts +96 -0
  594. package/shared/components/error-interceptor/interceptor.ts +44 -44
  595. package/shared/components/generic-dropdown/generic-dropdown.vue +219 -0
  596. package/shared/components/generic-dropdown/index.ts +1 -0
  597. package/shared/components/index.ts +4 -1
  598. package/shared/components/language-selector/language-selector.vue +56 -65
  599. package/shared/components/logout-button/index.ts +1 -0
  600. package/shared/components/logout-button/logout-button.vue +27 -0
  601. package/shared/components/notification-dropdown/_internal/notification/index.ts +1 -0
  602. package/shared/components/notification-dropdown/notification-dropdown.vue +27 -85
  603. package/shared/components/notification-template/notification-template.vue +26 -61
  604. package/shared/components/notifications/styles/index.scss +10 -10
  605. package/shared/components/settings-menu/index.ts +1 -0
  606. package/shared/components/settings-menu/settings-menu.vue +25 -0
  607. package/shared/components/settings-menu-item/index.ts +1 -0
  608. package/shared/components/settings-menu-item/settings-menu-item.vue +136 -0
  609. package/shared/components/sidebar/sidebar.vue +81 -42
  610. package/shared/components/theme-selector/theme-selector.vue +55 -66
  611. package/shared/components/user-dropdown-button/_internal/user-info.vue +95 -0
  612. package/shared/components/user-dropdown-button/_internal/user-sidebar.vue +48 -0
  613. package/shared/components/user-dropdown-button/user-dropdown-button.vue +74 -290
  614. package/shared/composables/useMenuExpanded.ts +40 -0
  615. package/shared/modules/assets/components/assets-details/assets-details.vue +2 -2
  616. package/shared/modules/assets/index.ts +0 -1
  617. package/shared/modules/assets-manager/components/assets-manager/assets-manager.vue +0 -1
  618. package/shared/modules/dynamic/components/FIELD_MAP.ts +53 -53
  619. package/shared/modules/dynamic/components/SchemaRender.ts +102 -102
  620. package/shared/modules/dynamic/components/factories.ts +244 -244
  621. package/shared/modules/dynamic/components/fields/Button.ts +44 -44
  622. package/shared/modules/dynamic/components/fields/Card.ts +119 -119
  623. package/shared/modules/dynamic/components/fields/Checkbox.ts +53 -53
  624. package/shared/modules/dynamic/components/fields/ContentField.ts +33 -33
  625. package/shared/modules/dynamic/components/fields/CustomComponent.ts +29 -29
  626. package/shared/modules/dynamic/components/fields/DynamicProperty.ts +141 -141
  627. package/shared/modules/dynamic/components/fields/EditorField.ts +46 -46
  628. package/shared/modules/dynamic/components/fields/Fieldset.ts +65 -65
  629. package/shared/modules/dynamic/components/fields/GalleryField.ts +161 -161
  630. package/shared/modules/dynamic/components/fields/ImageField.ts +35 -35
  631. package/shared/modules/dynamic/components/fields/InputCurrency.ts +79 -79
  632. package/shared/modules/dynamic/components/fields/InputField.ts +81 -81
  633. package/shared/modules/dynamic/components/fields/MultivalueField.ts +68 -68
  634. package/shared/modules/dynamic/components/fields/RadioButtonGroup.ts +82 -82
  635. package/shared/modules/dynamic/components/fields/RatingField.ts +28 -28
  636. package/shared/modules/dynamic/components/fields/SelectField.ts +72 -72
  637. package/shared/modules/dynamic/components/fields/StatusField.ts +110 -110
  638. package/shared/modules/dynamic/components/fields/SwitchField.ts +29 -29
  639. package/shared/modules/dynamic/components/fields/Table.ts +1 -2
  640. package/shared/modules/dynamic/components/fields/TextareaField.ts +46 -46
  641. package/shared/modules/dynamic/components/fields/ValidationField.ts +54 -54
  642. package/shared/modules/dynamic/components/fields/VideoField.ts +30 -30
  643. package/shared/modules/dynamic/components/fields/props.ts +39 -39
  644. package/shared/modules/dynamic/components/fields/storybook/Button.stories.ts +2 -63
  645. package/shared/modules/dynamic/components/fields/storybook/Card.stories.ts +1 -2
  646. package/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.ts +185 -185
  647. package/shared/modules/dynamic/components/fields/storybook/ContentField.stories.ts +245 -245
  648. package/shared/modules/dynamic/components/fields/storybook/EditorField.stories.ts +192 -192
  649. package/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.ts +347 -347
  650. package/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.ts +239 -239
  651. package/shared/modules/dynamic/components/fields/storybook/ImageField.stories.ts +186 -186
  652. package/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.ts +281 -281
  653. package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +312 -312
  654. package/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.ts +361 -361
  655. package/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.ts +224 -224
  656. package/shared/modules/dynamic/components/fields/storybook/RatingField.stories.ts +131 -131
  657. package/shared/modules/dynamic/components/fields/storybook/SelectField.stories.ts +666 -666
  658. package/shared/modules/dynamic/components/fields/storybook/StatusField.stories.ts +202 -202
  659. package/shared/modules/dynamic/components/fields/storybook/SwitchField.stories.ts +178 -178
  660. package/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.ts +203 -203
  661. package/shared/modules/dynamic/components/fields/storybook/VideoField.stories.ts +92 -92
  662. package/shared/modules/dynamic/components/fields/storybook/common/args.ts +130 -130
  663. package/shared/modules/dynamic/components/fields/storybook/common/templates.ts +1 -1
  664. package/shared/modules/dynamic/components/index.ts +4 -4
  665. package/shared/modules/dynamic/composables/index.ts +4 -4
  666. package/shared/modules/dynamic/composables/useDynamicViewsUtils/index.ts +46 -46
  667. package/shared/modules/dynamic/composables/useFilterBuilder/index.ts +31 -22
  668. package/shared/modules/dynamic/composables/useTableTemplates/index.ts +67 -67
  669. package/shared/modules/dynamic/composables/useToolbarReducer/index.ts +70 -70
  670. package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +144 -144
  671. package/shared/modules/dynamic/factories/base/useListFactory.ts +68 -68
  672. package/shared/modules/dynamic/factories/index.ts +4 -4
  673. package/shared/modules/dynamic/factories/types/index.ts +229 -229
  674. package/shared/modules/dynamic/helpers/getters.ts +12 -12
  675. package/shared/modules/dynamic/helpers/methodHandler.ts +22 -22
  676. package/shared/modules/dynamic/helpers/nodeBuilder.ts +1 -1
  677. package/shared/modules/dynamic/helpers/override.ts +153 -153
  678. package/shared/modules/dynamic/helpers/safeIn.ts +6 -6
  679. package/shared/modules/dynamic/helpers/setters.ts +24 -24
  680. package/shared/modules/dynamic/helpers/unrefNested.ts +14 -14
  681. package/shared/modules/dynamic/helpers/unwrapInterpolation.ts +16 -16
  682. package/shared/modules/dynamic/pages/dynamic-blade-form.vue +69 -31
  683. package/shared/modules/dynamic/pages/dynamic-blade-list.vue +169 -202
  684. package/shared/modules/dynamic/types/index.ts +5 -0
  685. package/shared/pages/ChangePasswordPage/components/change-password/index.ts +3 -3
  686. package/shared/pages/ChangePasswordPage/components/index.ts +1 -1
  687. package/shared/pages/ChangePasswordPage/index.ts +1 -1
  688. package/shared/pages/ChangePasswordPage/plugin.ts +4 -4
  689. package/shared/pages/InvitePage/components/index.ts +1 -1
  690. package/shared/pages/InvitePage/components/invite/Invite.vue +216 -216
  691. package/shared/pages/InvitePage/components/invite/index.ts +3 -3
  692. package/shared/pages/InvitePage/index.ts +1 -1
  693. package/shared/pages/InvitePage/plugin.ts +4 -4
  694. package/shared/pages/LoginPage/components/index.ts +1 -1
  695. package/shared/pages/LoginPage/components/login/Login.vue +1 -3
  696. package/shared/pages/LoginPage/components/login/index.ts +3 -3
  697. package/shared/pages/LoginPage/index.ts +1 -1
  698. package/shared/pages/LoginPage/plugin.ts +4 -4
  699. package/shared/pages/ResetPasswordPage/components/index.ts +1 -1
  700. package/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue +1 -1
  701. package/shared/pages/ResetPasswordPage/components/reset-password/index.ts +3 -3
  702. package/shared/pages/ResetPasswordPage/index.ts +1 -1
  703. package/shared/pages/ResetPasswordPage/plugin.ts +4 -4
  704. package/shared/pages/index.ts +4 -4
  705. package/shared/pages/plugin.ts +4 -4
  706. package/shared/utilities/assets.ts +42 -42
  707. package/shared/utilities/vueUtils.ts +50 -50
  708. package/tailwind.config.ts +5 -4
  709. package/ui/components/atoms/vc-badge/index.ts +1 -1
  710. package/ui/components/atoms/vc-badge/vc-badge.stories.ts +53 -53
  711. package/ui/components/atoms/vc-badge/vc-badge.vue +32 -15
  712. package/ui/components/atoms/vc-button/vc-button.stories.ts +1 -16
  713. package/ui/components/atoms/vc-button/vc-button.vue +80 -66
  714. package/ui/components/atoms/vc-card/index.ts +3 -3
  715. package/ui/components/atoms/vc-card/vc-card.stories.ts +1 -1
  716. package/ui/components/atoms/vc-card/vc-card.vue +18 -16
  717. package/ui/components/atoms/vc-col/index.ts +1 -1
  718. package/ui/components/atoms/vc-col/vc-col.stories.ts +22 -22
  719. package/ui/components/atoms/vc-col/vc-col.vue +29 -29
  720. package/ui/components/atoms/vc-container/index.ts +10 -10
  721. package/ui/components/atoms/vc-container/vc-container.stories.ts +29 -29
  722. package/ui/components/atoms/vc-hint/index.ts +10 -10
  723. package/ui/components/atoms/vc-hint/vc-hint.stories.ts +23 -23
  724. package/ui/components/atoms/vc-hint/vc-hint.vue +1 -1
  725. package/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue +15 -0
  726. package/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue +20 -0
  727. package/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue +13 -0
  728. package/ui/components/atoms/vc-icon/icons/BellIcon.vue +14 -0
  729. package/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue +13 -0
  730. package/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue +13 -0
  731. package/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue +13 -0
  732. package/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue +13 -0
  733. package/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue +16 -0
  734. package/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue +20 -0
  735. package/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue +14 -0
  736. package/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue +14 -0
  737. package/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue +27 -0
  738. package/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue +22 -0
  739. package/ui/components/atoms/vc-icon/icons/LogoutIcon.vue +13 -0
  740. package/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue +20 -0
  741. package/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue +14 -0
  742. package/ui/components/atoms/vc-icon/icons/OffersIcon.vue +23 -0
  743. package/ui/components/atoms/vc-icon/icons/OrdersIcon.vue +19 -0
  744. package/ui/components/atoms/vc-icon/icons/PeopleIcon.vue +21 -0
  745. package/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue +20 -0
  746. package/ui/components/atoms/vc-icon/icons/ProductsIcon.vue +23 -0
  747. package/ui/components/atoms/vc-icon/icons/ProfileIcon.vue +18 -0
  748. package/ui/components/atoms/vc-icon/icons/SearchIcon.vue +14 -0
  749. package/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue +21 -0
  750. package/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue +16 -0
  751. package/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue +26 -0
  752. package/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue +19 -0
  753. package/ui/components/atoms/vc-icon/icons/index.ts +27 -0
  754. package/ui/components/atoms/vc-icon/index.ts +1 -0
  755. package/ui/components/atoms/vc-icon/vc-icon.vue +62 -10
  756. package/ui/components/atoms/vc-image/index.ts +1 -1
  757. package/ui/components/atoms/vc-image/vc-image.stories.ts +85 -85
  758. package/ui/components/atoms/vc-image/vc-image.vue +1 -1
  759. package/ui/components/atoms/vc-label/index.ts +1 -1
  760. package/ui/components/atoms/vc-label/vc-label.stories.ts +31 -31
  761. package/ui/components/atoms/vc-label/vc-label.vue +12 -1
  762. package/ui/components/atoms/vc-link/index.ts +10 -10
  763. package/ui/components/atoms/vc-link/vc-link.stories.ts +37 -37
  764. package/ui/components/atoms/vc-link/vc-link.vue +54 -54
  765. package/ui/components/atoms/vc-loading/index.ts +3 -3
  766. package/ui/components/atoms/vc-loading/vc-loading.stories.ts +18 -18
  767. package/ui/components/atoms/vc-loading/vc-loading.vue +58 -58
  768. package/ui/components/atoms/vc-progress/index.ts +10 -10
  769. package/ui/components/atoms/vc-progress/vc-progress.stories.ts +30 -30
  770. package/ui/components/atoms/vc-progress/vc-progress.vue +1 -1
  771. package/ui/components/atoms/vc-row/index.ts +1 -1
  772. package/ui/components/atoms/vc-row/vc-row.stories.ts +20 -20
  773. package/ui/components/atoms/vc-row/vc-row.vue +22 -22
  774. package/ui/components/atoms/vc-skeleton/vc-skeleton.vue +51 -0
  775. package/ui/components/atoms/vc-status/index.ts +1 -1
  776. package/ui/components/atoms/vc-status/vc-status.stories.ts +85 -85
  777. package/ui/components/atoms/vc-status/vc-status.vue +64 -17
  778. package/ui/components/atoms/vc-status-icon/index.ts +1 -1
  779. package/ui/components/atoms/vc-switch/index.ts +1 -1
  780. package/ui/components/atoms/vc-switch/vc-switch.vue +5 -7
  781. package/ui/components/atoms/vc-tooltip/index.ts +1 -1
  782. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +28 -13
  783. package/ui/components/atoms/vc-video/index.ts +1 -1
  784. package/ui/components/atoms/vc-video/vc-video.stories.ts +19 -19
  785. package/ui/components/atoms/vc-widget/index.ts +3 -3
  786. package/ui/components/atoms/vc-widget/vc-widget.stories.ts +20 -20
  787. package/ui/components/atoms/vc-widget/vc-widget.vue +86 -59
  788. package/ui/components/index.ts +2 -0
  789. package/ui/components/molecules/index.ts +16 -16
  790. package/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue +89 -92
  791. package/ui/components/molecules/vc-breadcrumbs/index.ts +1 -1
  792. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.ts +43 -43
  793. package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +157 -121
  794. package/ui/components/molecules/vc-checkbox/index.ts +3 -3
  795. package/ui/components/molecules/vc-checkbox/vc-checkbox.stories.ts +84 -84
  796. package/ui/components/molecules/vc-checkbox/vc-checkbox.vue +185 -119
  797. package/ui/components/molecules/vc-editor/index.ts +1 -1
  798. package/ui/components/molecules/vc-editor/vc-editor.stories.ts +29 -29
  799. package/ui/components/molecules/vc-editor/vc-editor.vue +33 -3
  800. package/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue +96 -96
  801. package/ui/components/molecules/vc-field/index.ts +1 -1
  802. package/ui/components/molecules/vc-field/vc-field.stories.ts +114 -114
  803. package/ui/components/molecules/vc-field/vc-field.vue +1 -1
  804. package/ui/components/molecules/vc-file-upload/index.ts +1 -1
  805. package/ui/components/molecules/vc-file-upload/vc-file-upload.stories.ts +39 -39
  806. package/ui/components/molecules/vc-file-upload/vc-file-upload.vue +2 -2
  807. package/ui/components/molecules/vc-form/index.ts +10 -10
  808. package/ui/components/molecules/vc-form/vc-form.stories.ts +25 -25
  809. package/ui/components/molecules/vc-form/vc-form.vue +5 -5
  810. package/ui/components/molecules/vc-input/index.ts +1 -1
  811. package/ui/components/molecules/vc-input/vc-input.stories.ts +165 -165
  812. package/ui/components/molecules/vc-input/vc-input.vue +57 -13
  813. package/ui/components/molecules/vc-input-currency/index.ts +1 -1
  814. package/ui/components/molecules/vc-input-currency/vc-input-currency.stories.ts +83 -83
  815. package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +20 -0
  816. package/ui/components/molecules/vc-multivalue/index.ts +1 -1
  817. package/ui/components/molecules/vc-multivalue/vc-multivalue.stories.ts +120 -120
  818. package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +69 -16
  819. package/ui/components/molecules/vc-notification/index.ts +1 -1
  820. package/ui/components/molecules/vc-notification/vc-notification.vue +1 -1
  821. package/ui/components/molecules/vc-pagination/index.ts +3 -3
  822. package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +24 -24
  823. package/ui/components/molecules/vc-pagination/vc-pagination.vue +48 -110
  824. package/ui/components/molecules/vc-radio-button/index.ts +1 -1
  825. package/ui/components/molecules/vc-radio-button/vc-radio-button.stories.ts +97 -97
  826. package/ui/components/molecules/vc-radio-button/vc-radio-button.vue +13 -8
  827. package/ui/components/molecules/vc-rating/index.ts +1 -1
  828. package/ui/components/molecules/vc-rating/vc-rating.stories.ts +59 -59
  829. package/ui/components/molecules/vc-select/index.ts +1 -1
  830. package/ui/components/molecules/vc-select/vc-select.stories.ts +685 -685
  831. package/ui/components/molecules/vc-select/vc-select.vue +81 -25
  832. package/ui/components/molecules/vc-slider/index.ts +13 -13
  833. package/ui/components/molecules/vc-slider/vc-slider.stories.ts +61 -61
  834. package/ui/components/molecules/vc-slider/vc-slider.vue +118 -118
  835. package/ui/components/molecules/vc-textarea/index.ts +1 -1
  836. package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +53 -53
  837. package/ui/components/molecules/vc-textarea/vc-textarea.vue +37 -8
  838. package/ui/components/organisms/index.ts +7 -7
  839. package/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.ts +97 -0
  840. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue +48 -0
  841. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue +173 -0
  842. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue +102 -0
  843. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue +90 -0
  844. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue +163 -0
  845. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue +110 -0
  846. package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue +172 -0
  847. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.ts +51 -0
  848. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.ts +27 -0
  849. package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.ts +66 -0
  850. package/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue +373 -146
  851. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue +188 -120
  852. package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue +2 -2
  853. package/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue +86 -131
  854. package/ui/components/organisms/vc-app/vc-app.stories.ts +214 -214
  855. package/ui/components/organisms/vc-app/vc-app.vue +135 -97
  856. package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +139 -90
  857. 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
  858. 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 +62 -86
  859. 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
  860. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue +182 -0
  861. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue +146 -0
  862. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue +32 -0
  863. package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue +30 -48
  864. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.ts +2 -0
  865. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue +96 -0
  866. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue +184 -0
  867. package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue +113 -0
  868. package/ui/components/organisms/vc-blade/index.ts +1 -1
  869. package/ui/components/organisms/vc-blade/vc-blade.stories.ts +83 -83
  870. package/ui/components/organisms/vc-blade/vc-blade.vue +177 -117
  871. package/ui/components/organisms/vc-dynamic-property/index.ts +1 -1
  872. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue +163 -163
  873. package/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue +1 -1
  874. package/ui/components/organisms/vc-gallery/index.ts +1 -1
  875. package/ui/components/organisms/vc-gallery/vc-gallery.stories.ts +91 -91
  876. package/ui/components/organisms/vc-gallery/vc-gallery.vue +348 -348
  877. package/ui/components/organisms/vc-login-form/index.ts +1 -1
  878. package/ui/components/organisms/vc-popup/index.ts +3 -3
  879. package/ui/components/organisms/vc-popup/vc-popup.vue +3 -3
  880. package/ui/components/organisms/vc-table/_internal/vc-table-add-new/vc-table-add-new.vue +63 -63
  881. package/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue +21 -17
  882. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +8 -7
  883. package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +4 -3
  884. package/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue +4 -3
  885. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue +133 -0
  886. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue +250 -0
  887. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue +238 -0
  888. 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
  889. package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue +214 -0
  890. package/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue +2 -7
  891. package/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue +84 -45
  892. package/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue +62 -0
  893. package/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue +160 -0
  894. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +47 -69
  895. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue +386 -0
  896. package/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue +118 -0
  897. package/ui/components/organisms/vc-table/composables/useTableActions.ts +56 -0
  898. package/ui/components/organisms/vc-table/composables/useTableColumnReorder.ts +255 -0
  899. package/ui/components/organisms/vc-table/composables/useTableColumnResize.ts +147 -0
  900. package/ui/components/organisms/vc-table/composables/useTableRowReorder.ts +175 -0
  901. package/ui/components/organisms/vc-table/composables/useTableSelection.ts +118 -0
  902. package/ui/components/organisms/vc-table/composables/useTableState.ts +230 -0
  903. package/ui/components/organisms/vc-table/composables/useTableSwipe.ts +32 -0
  904. package/ui/components/organisms/vc-table/index.ts +1 -1
  905. package/ui/components/organisms/vc-table/vc-table.stories.ts +214 -214
  906. package/ui/components/organisms/vc-table/vc-table.vue +288 -1311
  907. package/ui/composables/useVisibleElements.ts +148 -0
  908. package/dist/index-DK6ijkM9.js +0 -598
  909. package/dist/index-DiJJUsG2.js +0 -243
  910. package/dist/index-PaekRinB.js +0 -312
  911. package/dist/index-lnO7rLKk.js +0 -135
  912. package/dist/shared/components/app-bar-button/app-bar-button.vue.d.ts.map +0 -1
  913. package/dist/shared/components/app-bar-button/index.d.ts +0 -2
  914. package/dist/shared/components/app-bar-button/index.d.ts.map +0 -1
  915. package/dist/shared/components/blade-navigation/injectionKeys.d.ts +0 -4
  916. package/dist/shared/components/blade-navigation/injectionKeys.d.ts.map +0 -1
  917. 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
  918. package/shared/components/app-bar-button/app-bar-button.vue +0 -169
  919. package/shared/components/app-bar-button/index.ts +0 -1
  920. package/shared/components/blade-navigation/injectionKeys.ts +0 -4
@@ -1,5 +1,5 @@
1
- import { E as s, C as R, s as Y, t as O, b as x, l as w, m as X, g as d, L as k, i as h, c as l, h as f, j as u, f as y, k as g, a as j, d as U, e as G, I as b, N as Z } from "./index-Ce86fM2z.js";
2
- const _ = 177, q = 179, E = 184, v = 12, C = 13, D = 17, z = 20, F = 25, B = 53, N = 95, I = 142, L = 144, A = 145, J = 148, M = 10, H = 13, K = 32, OO = 9, $ = 47, QO = 41, eO = 125, aO = new s((Q, e) => {
1
+ import { a as s, E as R, l as Y, s as x, C as w, t as O, L as d, m as X, b as k, d as h, e as f, i as u, f as y, c as l, h as g, j, k as U, g as G, N as b, I as Z } from "./index-DSYfAsS3.js";
2
+ const _ = 177, q = 179, E = 184, v = 12, C = 13, D = 17, z = 20, F = 25, B = 53, N = 95, I = 142, L = 144, A = 145, J = 148, M = 10, H = 13, K = 32, OO = 9, $ = 47, QO = 41, eO = 125, aO = new R((Q, e) => {
3
3
  for (let n = 0, a = Q.next; (e.context && (a < 0 || a == M || a == H || a == $ && Q.peek(n + 1) == $) || a == QO || a == eO) && Q.acceptToken(_), !(a != K && a != OO); )
4
4
  a = Q.peek(++n);
5
5
  }, { contextual: !0 });
@@ -17,10 +17,10 @@ let tO = /* @__PURE__ */ new Set([
17
17
  B,
18
18
  F
19
19
  ]);
20
- const iO = new R({
20
+ const iO = new w({
21
21
  start: !1,
22
22
  shift: (Q, e) => e == q ? Q : tO.has(e)
23
- }), XO = Y({
23
+ }), XO = x({
24
24
  "func interface struct chan map const type var": O.definitionKeyword,
25
25
  "import package": O.moduleKeyword,
26
26
  "switch for go select return break continue goto fallthrough case if else defer": O.controlKeyword,
@@ -54,7 +54,7 @@ const iO = new R({
54
54
  "( )": O.paren,
55
55
  "[ ]": O.squareBracket,
56
56
  "{ }": O.brace
57
- }), nO = { __proto__: null, package: 10, import: 18, true: 380, false: 380, nil: 383, struct: 48, func: 68, interface: 78, chan: 94, map: 118, make: 157, new: 159, const: 204, type: 212, var: 224, if: 236, else: 238, switch: 242, case: 248, default: 250, for: 260, range: 266, go: 270, select: 274, return: 284, break: 288, continue: 290, goto: 292, fallthrough: 296, defer: 300 }, PO = x.deserialize({
57
+ }), nO = { __proto__: null, package: 10, import: 18, true: 380, false: 380, nil: 383, struct: 48, func: 68, interface: 78, chan: 94, map: 118, make: 157, new: 159, const: 204, type: 212, var: 224, if: 236, else: 238, switch: 242, case: 248, default: 250, for: 260, range: 266, go: 270, select: 274, return: 284, break: 288, continue: 290, goto: 292, fallthrough: 296, defer: 300 }, PO = s.deserialize({
58
58
  version: 14,
59
59
  states: "!=xO#{QQOOP$SOQOOO&UQTO'#CbO&]QRO'#FlO]QQOOOOQP'#Cn'#CnOOQP'#Co'#CoO&eQQO'#C|O(kQQO'#C{O)]QRO'#GiO+tQQO'#D_OOQP'#Ge'#GeO+{QQO'#GeO.aQTO'#GaO.hQQO'#D`OOQP'#Gm'#GmO.mQRO'#GdO/hQQO'#DgOOQP'#Gd'#GdO/uQQO'#DrO2bQQO'#DsO4QQTO'#GqO,^QTO'#GaO4XQQO'#DxO4^QQO'#D{OOQO'#EQ'#EQOOQO'#ER'#EROOQO'#ES'#ESOOQO'#ET'#ETO4cQQO'#EPO5}QQO'#EPOOQP'#Ga'#GaO6UQQO'#E`O6^QQO'#EcOOQP'#G`'#G`O6cQQO'#EsOOQP'#G_'#G_O&]QRO'#FnOOQO'#Fn'#FnO9QQQO'#G^QOQQOOO&]QROOO9XQQO'#C`O9^QSO'#CdO9lQQO'#C}O9tQQO'#DSO9yQQO'#D[O:kQQO'#CsO:pQQO'#DhO:uQQO'#EeO:}QQO'#EiO;VQQO'#EoO;_QQO'#EuO<uQQO'#ExO<|QQO'#FRO4cQQO'#FWO=WQQO'#FYO=]QRO'#F_O=jQRO'#FaO=uQQO'#FaOOQP'#Fe'#FeO4cQQO'#FgP=zOWO'#C^POOO)CAz)CAzOOQO'#G]'#G]OOQO,5<W,5<WOOQO-E9j-E9jO?TQTO'#CqOOQO'#C|'#C|OOQP,59g,59gO?tQQO'#D_O@fQSO'#FuO@kQQO'#C}O@pQQO'#D[O9XQQO'#FqO@uQRO,5=TOAyQQO,59yOCVQSO,5:[O@kQQO'#C}OCaQQO'#DjOOQP,59^,59^OOQO,5<a,5<aO?tQQO'#DeOOQO,5:e,5:eOOQO-E9s-E9sOOQP,59z,59zOOQP,59|,59|OCqQSO,5:QO(kQQO,5:ROC{QQO,5:RO&]QRO'#FxOOQO'#Fx'#FxOFjQQO'#GpOFwQQO,5:^OF|QQO,5:_OHdQQO,5:`OHlQQO,5:aOHvQRO'#FyOIaQRO,5=]OIuQQO'#DzOOQP,5:d,5:dOOQO'#EV'#EVOOQO'#EW'#EWOOQO'#EX'#EXOOQO'#EZ'#EZOOQO'#E['#E[O4cQQO,5:pO4cQQO,5:pO4cQQO,5:pO4cQQO,5:pO4cQQO,5:pO4cQQO,5:wOOQP,5:x,5:xO?tQQO'#EOOOQP,5:g,5:gOOQP,5:k,5:kO9yQQO,59vO4cQQO,5:zO4cQQO,5:}OI|QRO,5;_OOQO,5<Y,5<YOOQO-E9l-E9lO]QQOOOOQP'#Cb'#CbOOQP,58z,58zOOQP'#Cf'#CfOJWQQO'#CfOJ]QSO'#CkOOQP,59O,59OOJkQQO'#DPOLZQQO,5<UOLbQQO,59iOLsQQO,5<TOMpQQO'#DUOOQP,59n,59nOOQP,59v,59vONfQQO,59vONmQQO'#CwOOQP,59_,59_O?tQQO,5:SONxQRO'#EgO! VQQO'#EhOOQP,5;P,5;PO! |QQO'#EkO!!WQQO'#EnOOQP,5;T,5;TO!!`QRO'#EqO!!mQQO'#ErOOQP,5;Z,5;ZO!!uQTO'#CbO!!|QTO,5;aO&]QRO,5;aO!#WQQO,5;jO!$yQTO,5;dO!%WQQO'#EzOOQP,5;d,5;dO&]QRO,5;dO!%cQSO,5;mO!%mQQO'#E`O!%uQQO'#EcO!%zQQO'#FTO!&UQQO'#FTOOQP,5;m,5;mO!&ZQQO,5;mO!&`QTO,5;rO!&mQQO'#F[OOQP,5;t,5;tO!&xQTO'#GqOOQP,5;y,5;yOOQP'#Et'#EtOOQP,5;{,5;{O!']QTO,5<RPOOO'#Fk'#FkP!'jOWO,58xPOOO,58x,58xO!'uQQO,59yO!'zQQO'#GgOOQP,59i,59iO(kQQO,59vOOQP,5<],5<]OOQP-E9o-E9oOOQP1G/e1G/eOOQP1G/v1G/vO!([QSO'#DlO!(lQQO'#DlO!(wQQO'#DkOOQO'#Go'#GoO!(|QQO'#GoO!)UQQO,5:UO!)ZQQO'#GnO!)fQQO,5:PPOQO'#Cq'#CqO(kQQO1G/lOOQP1G/m1G/mO(kQQO1G/mOOQO,5<d,5<dOOQO-E9v-E9vOOQP1G/x1G/xO!)kQSO1G/yOOQP'#Cy'#CyOOQP1G/z1G/zO?tQQO1G/}O!)xQSO1G/{O!*YQQO1G/|O!*gQTO,5<eOOQP-E9w-E9wOOQP,5:f,5:fO!+QQQO,5:fOOQP1G0[1G0[O!,vQTO1G0[O!.wQTO1G0[O!/OQTO1G0[O!0pQTO1G0[O!1QQTO1G0cO!1bQQO,5:jOOQP1G/b1G/bOOQP1G0f1G0fOOQP1G0i1G0iOOQP1G0y1G0yOOQP,59Q,59QO&]QRO'#FmO!1mQSO,59VOOQP,59V,59VOOQO'#DQ'#DQO?tQQO'#DQO!1{QQO'#DQOOQO'#Gh'#GhO!2SQQO'#GhO!2[QQO,59kO!2aQSO'#CqOJkQQO'#DPOOQP,5=R,5=RO@kQQO1G1pOOQP1G/w1G/wO.hQQO'#ElO!2rQRO1G1oO@kQQO1G1oO@kQQO'#DVO?tQQO'#DWOOQP'#Gk'#GkO!2}QRO'#GjOOQP'#Gj'#GjO&]QRO'#FsO!3`QQO,59pOOQP,59p,59pO!3gQRO'#CxO!3uQQO'#CxO!3|QRO'#CxO.hQQO'#CxO&]QRO'#FoO!4XQQO,59cOOQP,59c,59cO!4dQQO1G/nO4cQQO,5;RO!4iQQO,5;RO&]QRO'#FzO!4nQQO,5;SOOQP,5;S,5;SO!6aQQO'#DgO?tQQO,5;VOOQP,5;V,5;VO&]QRO'#F}O!6hQQO,5;YOOQP,5;Y,5;YO!6pQRO,5;]O4cQQO,5;]O&]QRO'#GOO!6{QQO,5;^OOQP,5;^,5;^O!7TQRO1G0{O!7`QQO1G0{O4cQQO1G1UO!8vQQO1G1UOOQP1G1O1G1OO!9OQQO'#GPO!9YQQO,5;fOOQP,5;f,5;fO4cQQO'#E{O!9eQQO'#E{O<uQQO1G1OOOQP1G1X1G1XO!9jQQO,5:zO!9jQQO,5:}O!9tQSO,5;oO!:OQQO,5;oO!:VQQO,5;oO!9OQQO'#GRO!:aQQO,5;vOOQP,5;v,5;vO!<PQQO'#F]O!<WQQO'#F]POOO-E9i-E9iPOOO1G.d1G.dO!<]QQO,5:VO!<gQQO,5=ZO!<tQQO,5=ZOOQP1G/p1G/pO!<|QQO,5=YO!=WQQO,5=YOOQP1G/k1G/kOOQP7+%W7+%WOOQP7+%X7+%XOOQP7+%e7+%eO!=cQQO7+%eO!=hQQO7+%iOOQP7+%g7+%gO!=mQQO7+%gO!=rQQO7+%hO!>PQSO7+%hOOQP7+%h7+%hO4cQQO7+%hOOQP1G0Q1G0QO!>^QQO1G0QOOQP1G0U1G0UO!>fQQO1G0UOF|QQO1G0UOOQO,5<X,5<XOOQO-E9k-E9kOOQP1G.q1G.qOOQO,59l,59lO?tQQO,59lO!?cQQO,5=SO!?jQQO,5=SOOQP1G/V1G/VO!?rQQO,59yO!?}QRO7+'[O!@YQQO'#EmO!@dQQO'#HOO!@lQQO,5;WOOQP7+'Z7+'ZO!@qQRO7+'ZOOQP,59q,59qOOQP,59r,59rOOQO'#DZ'#DZO!@]QQO'#FtO!@|QRO,59tOOQO,5<_,5<_OOQO-E9q-E9qOOQP1G/[1G/[OOQP,59d,59dOHgQQO'#FpO!3uQQO,59dO!A_QRO,59dO!AjQRO,59dOOQO,5<Z,5<ZOOQO-E9m-E9mOOQP1G.}1G.}O(kQQO7+%YOOQP1G0m1G0mO4cQQO1G0mOOQO,5<f,5<fOOQO-E9x-E9xOOQP1G0n1G0nO!AxQQO'#GdOOQP1G0q1G0qOOQO,5<i,5<iOOQO-E9{-E9{OOQP1G0t1G0tO4cQQO1G0wOOQP1G0w1G0wOOQO,5<j,5<jOOQO-E9|-E9|OOQP1G0x1G0xO!B]QQO7+&gO!BeQSO7+&gO!CsQSO7+&pO!CzQQO7+&pOOQO,5<k,5<kOOQO-E9}-E9}OOQP1G1Q1G1QO!DRQQO,5;gOOQO,5;g,5;gO!DWQSO7+&jOOQP7+&j7+&jO!DbQQO7+&pO!7`QQO1G1[O!DgQQO1G1ZOOQO1G1Z1G1ZO!DnQSO1G1ZOOQO,5<m,5<mOOQO-E:P-E:POOQP1G1b1G1bO!DxQSO'#GqO!E]QQO'#F^O!EbQQO'#F^O!EgQQO,5;wOOQO,5;w,5;wO!ElQSO1G/qOOQO1G/q1G/qO!EyQSO'#DoO!FZQQO'#DoO!FfQQO'#DnOOQO,5<c,5<cO!FkQQO1G2uOOQO-E9u-E9uOOQO,5<b,5<bO!FxQQO1G2tOOQO-E9t-E9tOOQP<<IP<<IPOOQP<<IT<<ITOOQP<<IR<<IRO!GSQSO<<ISOOQP<<IS<<ISO4cQQO<<ISO!GaQSO<<ISOOQP7+%l7+%lO!GkQQO7+%lOOQP7+%p7+%pO!GpQQO7+%pO!GuQQO7+%pOOQO1G/W1G/WOOQO,5<^,5<^O!G}QQO1G2nOOQO-E9p-E9pOOQP<<Jv<<JvO.hQQO'#F{O!@YQQO,5;XOOQO,5;X,5;XO!HUQQO,5=jO!H^QQO,5=jOOQO1G0r1G0rOOQP<<Ju<<JuOOQP,5<`,5<`OOQP-E9r-E9rOOQO,5<[,5<[OOQO-E9n-E9nO!HfQRO1G/OOOQP1G/O1G/OOOQP<<Ht<<HtOOQP7+&X7+&XO!HqQQO'#DeOOQP7+&c7+&cOOQP<<JR<<JRO!HxQRO<<JRO!ITQQO<<J[O!I]QQO<<J[OOQO1G1R1G1ROOQP<<JU<<JUO4cQQO<<J[O!IbQSO7+&vOOQO7+&u7+&uO!IlQQO7+&uO4cQQO,5;xOOQO1G1c1G1cO!<]QQO,5:YP!<]QQO'#FwP?tQQO'#FvOOQPAN>nAN>nO4cQQOAN>nO!IsQSOAN>nOOQP<<IW<<IWOOQP<<I[<<I[O!I}QQO<<I[P!>nQQO'#FrOOQO,5<g,5<gOOQO-E9y-E9yOOQO1G0s1G0sOOQO,5<h,5<hO!JVQQO1G3UOOQO-E9z-E9zOOQP7+$j7+$jO!J_QQO'#GnO!B]QQOAN?mO!JjQQOAN?vO!JqQQOAN?vO!KzQSOAN?vOOQO<<Ja<<JaO!LRQSO1G1dO!L]QSO1G/tOOQO1G/t1G/tO!LjQSOG24YOOQPG24YG24YOOQPAN>vAN>vO!LtQQOAN>vP.hQQO'#F|OOQPG25XG25XO!LyQQOG25bO!MOQQO'#FPOOQPG25bG25bO!MZQQOG25bOOQPLD)tLD)tOOQPG24bG24bO!JqQQOLD*|O!9OQQO'#GQO!McQQO,5;kOOQP,5;k,5;kO?tQQO'#FQO!MnQQO'#FQO!MsQQOLD*|OOQP!$'Nh!$'NhOOQO,5<l,5<lOOQO-E:O-E:OOOQP1G1V1G1VO!MzQQO,5;lOOQO,5;l,5;lO!NPQQO!$'NhOOQO1G1W1G1WO!JqQQO!)9DSOOQP!.K9n!.K9nO# {QTO'#CqO#!`QTO'#CqO##}QSO'#CqO#$XQSO'#CqO#&]QSO'#CqO#&gQQO'#FyO#&tQQO'#FyO#'OQQO,5=]O#'ZQQO,5=]O#'cQQO,5:pO!7`QQO,5:pOF|QQO,5:pO#'cQQO,5:pO!7`QQO,5:pOF|QQO,5:pO#'cQQO,5:pO!7`QQO,5:pOF|QQO,5:pO#'cQQO,5:pO!7`QQO,5:pOF|QQO,5:pO#'cQQO,5:pO!7`QQO,5:pOF|QQO,5:pO!7`QQO,5:wO!7`QQO,5:zO!7`QQO,5:}O#(yQSO'#CbO#)}QSO'#CbO#*bQSO'#GqO#*rQSO'#GqO#+PQRO'#GgO#+yQSO,5<eO#,ZQSO,5<eO#,hQSO1G0[O#-rQTO1G0[O#-yQSO1G0[O#.TQSO1G0[O#0{QTO1G0[O#1SQSO1G0[O#2eQSO1G0[O#2lQTO1G0[O#2sQSO1G0[O#4XQSO1G0[O#4`QTO1G0[O#4jQSO1G0[O#4wQSO1G0cO#5dQTO'#CqO#5kQTO'#CqO#6bQSO'#GqO#'cQQO'#EPO!7`QQO'#EPOF|QQO'#EPO#8]QQO'#EPO#8gQQO'#EPO#8qQQO'#EPO#8{QQO'#E`O#9TQQO'#EcO@kQQO'#C}O?tQQO,5:RO#9YQQO,59vO#:iQQO,59vO?tQQO,59vO?tQQO1G/lO?tQQO1G/mO?tQQO7+%YO?tQQO'#C{O#:pQQO'#DgO#9YQQO'#D[O#:wQQO'#D[O#:|QSO,5:QO#;WQQO,5:RO#;]QQO1G/nO?tQQO,5:SO#;bQQO'#Dh",
60
60
  stateData: "#;m~O$yOSPOS$zPQ~OVvOX{O[oO^YOaoOdoOh!POjcOr|Ow}O!P!OO!QnO!WaO!]!QO!phO!qhO#Y!RO#^!SO#d!TO#j!UO#m!VO#v!WO#{!XO#}!YO$S!ZO$U![O$V![O$W!]O$Y!^O$[!_O%OQO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO$v%QP~OTzO~P]O$z!`O~OVeXZeX^eX^!TXj!TXnUXneX!QeX!WeX!W!TX!|eX#ReX#TeX#UeX#WUX$weX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeX~O!a#hX~P$XOV!bO$w!bO~O[!wX^pX^!wXa!wXd!wXhpXh!wXrpXr!wXwpXw!wX!PpX!P!wX!QpX!Q!wX!WpX!W!wX!]pX!]!wX!p!wX!q!wX%OpX%O!wX%U!wX%V!wX%YpX%Y!wX%f!wX%g!wX%h!wX%i!wX%j!wX~O^!hOh!POr!jOw}O!P!OO!Q!kO!WaO!]!QO%O!eO%Y!fO~On!lO#W%]XV%]X^%]Xh%]Xr%]Xw%]X!P%]X!Q%]X!W%]X!]%]X#T%]X$w%]X%O%]X%Y%]Xu%]X~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!WaO!]!QO!phO!qhO%O+wO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O!Q-OO~P*aOj!qO^%XX]%XXn%XX!V%XX~O!W!tOV%TXZ%TX^%TXn%TX!Q%TX!W%TX!|%TX#R%TX#T%TX#U%TX$w%TX%Y%TX%`%TX%f%TX%g%TX%i%TX%j%TX%k%TX%l%TX%m%TX%n%TX%o%TX%p%TX%q%TX]%TX!V%TXj%TXi%TX!a%TXu%TX~OZ!sO~P,^O%O!eO~O!W!tO^%WXj%WX]%WXn%WX!V%WXu%WXV%WX$w%WX%`%WX#T%WX[%WX!a%WX~Ou!{O!QnO!V!zO~P*aOV!}O[oO^YOaoOdoOh!POjcOr!pOw}O!P!OO!QnO!WaO!]!QO!phO!qhO#Y!RO#^!SO#d!TO#j!UO#m!VO#v!WO#{!XO#}!YO$S!ZO$U![O$V![O$W!]O$Y!^O$[!_O%OQO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlOi%dP~O^#QO~OZ#RO^#VOn#TO!Q#cO!W#SO#R#dO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]OV`X#T%eX#U%eX$w`X~O!|#`O~P2gO^#VO~O^#eO~O!QnO~P*aO[oO^YOaoOdoOh!POr!pOw}O!QnO!WaO!]!QO!phO!qhO%O+wO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O!P#hO~P4jO#T#iO#U#iO~O#W#jO~O!a#kO~OVvO[oO^YOaoOdoOh!POjcOr|Ow}O!P!OO!QnO!WaO!]!QO!phO!qhO#Y!RO#^!SO#d!TO#j!UO#m!VO#v!WO#{!XO#}!YO$S!ZO$U![O$V![O$W!]O$Y!^O$[!_O%OQO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O$v%QX~P6hO%O#oO~OZ#rO[#qO^#sO%O#oO~O^#uO%O#oO~Oj#yO~O^!hOh!POr!jOw}O!P!OO!Q#|O!WaO!]!QO%O!eO%Y!fO~Oj#}O~O!W$PO~O^$RO%O#oO~O^$UO%O#oO~O^$XO%O#oO~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-PO!WaO!]!QO!phO!qhO%O$ZO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~Oj$`O~P;_OV$fOjcO~P;_Oj$kO~O!QnOV$RX$w$RX~P*aO%O$oOV$TX$w$TX~O%O$oO~O${$rO$|$rO$}$tO~OZeX^!TX!W!TXj!TXn!TXh!TXr!TXw!TX{!TX!P!TX!Q!TX!]!TX%O!TX%Y!TX~O]!TX!V!TXu!TX#T!TXV!TX$w!TX%`!TX[!TX!a!TX~P>VO^!hOh!POr-TOw}O!P-_O!Q-`O!W-^O!]-eO%O!eO%Y!fO~OZ!sO~O^#uO~O!P$xO~On!lO#W%]aV%]a^%]ah%]ar%]aw%]a!P%]a!Q%]a!W%]a!]%]a#T%]a$w%]a%O%]a%Y%]au%]a~O]${O^#QO~OZ#RO^#VO!W#SO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]O~O]$|O!|,WO~PBROj!qOn%QO!QnOi%cP~P*aO!V%WO!|#`O~PBRO!V%YO~OV!}O[oO^YOaoOdoOh!POjcOr!pOw}O!P!OO!QnO!WaO!]!QO!phO!qhO#Y!RO#^!SO#d!TO#j!UO#m!VO#v!WO#{!XO#}!YO$S!ZO$U![O$V![O$W!]O$Y!^O$[!_O%OQO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~Oi%dX#p%dX#q%dX~PDQOi%]O~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-QO!WaO!]!QO!phO!qhO%O+{O%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O^%aO%O%_O~O!QnO!a%cO~P*aO!QnOn$mX#T$mX#U$mXV$mX$w$mX!a$mX~P*aOn#TO#T%ea#U%eaV%ea$w%ea!a%ea~O]%fO~PF|OV#ga$w#ga~PDTO[%sO~OZ#rO[#qO]%vO%O#oO~O^!hOh!POn%zOr-TOu%xOw}O!P-_O!Q-`O!W-^O!]-eO%O,dO%Y!fO]%[P~O^&OOh!POr!jOw}O!P!OO!Q!kO!WaO!]!QO%Y!fO^%ZXj%ZX~O%O%}O~PKfOjcO^qa]qanqa!Vqa~O^#uO!W&SO~O^!hOh!POr-TOw}O{&WO!P-_O!Q-`O!W-^O!]-eO%O,xO%Y!fO~Oi&^O~PL{O^!hOh!POr!jOw}O!Q!kO!WaO!]!QO%O!eO%Y!fO~O!P#hO~PMwOi&eO%O,yO%Y!fO~O#T&gOV#ZX$w#ZX~P?tO]&kO%O#oO~O^!hOh!POr-TOw}O!P-_O!Q-`O!]-eO%O!eO%Y!fO~O!W&lO#T&mO~P! _O]&qO%O#oO~O#T&sOV#eX$w#eX~P?tO]&vO%O#oO~OjeX~P$XOjcO!|,XO~P2gOn!lO#W&yO#W%]X~O^#VOn#TO!Q#cO!W#SO!|,XO#R#dO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]OV`X#T%eX#U%eX~OZ&zOj$`O$w`X~P!#cOi'OO#p'PO#q'QO~OZ#ROjcO~P!#cO#T'TO#U#iO~O#W'UO~OV'WO!QnO~P*aOV'XO~OjcO~O!|#`OV#za$w#za~PBROi'[O#p']O#q'^O~On#TO!|#`OV%eX$w%eX!a%eX~PBRO!|#`OV$Za$w$Za~PBRO${$rO$|$rO$}'`O~O]${O~O%O!eO]%ZXn%ZX!V%ZX~PKfO!|#`Oi!_Xn!_X!a!`X~PBROi!_Xn!_X!a!`X~O!a'aO~On'bOi%cX~Oi'dO~On'eO!V%bX!a%bX~O!V'gO~O]'jOn'kO!|,YO~PBROn'nO!V'mO!a'oO!|#`O~PBRO!QnO!V'qO!a'rO~P*aO!|#`On$ma#T$ma#U$maV$ma$w$ma!a$ma~PBRO]'sOu'tO~O%Y#XO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOV!xiZ!xi^!xin!xi!Q!xi!W!xi!|!xi#R!xi#T!xi#U!xi$w!xi%`!xi%f!xi%g!xi%i!xi%p!xi%q!xi~O!V!xii!xi!a!xi~P!+YO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOV!xiZ!xi^!xin!xi!Q!xi!W!xi#R!xi#T!xi#U!xi$w!xi%p!xi%q!xi!V!xii!xi!a!xi~O!|!xi~P!-TO!|#`O~P!-TO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[OV!xiZ!xi^!xin!xi!Q!xi!W!xi#R!xi#T!xi#U!xi$w!xi%q!xi~O!|#`O!V!xii!xi!a!xi~P!/VO!|#`OV#Pi$w#Pi!a#Pi~PBRO]'uOn'wOu'vO~OZ#rO[#qO]'zO%O#oO~Ou'|O~P?tOn'}O]%[X~O](PO~OZeX^mX^!TXj!TX!W!TX~OjcOV$]i$w$]i~O%`(ZOV%^X$w%^Xn%^X!V%^X~Oi(`O~PL{O[(aO!W!tOVlX$wlX~On(bO~P?tO[(aOVlX$wlX~Oi(hO%O,yO%Y!fO~O!V(iO~O#T(kO~O](nO%O#oO~O[oO^YOaoOdoOh!POr!pOu-bOw}O!P!OO!QnO!V-UO!WaO!]!QO!phO!qhO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O%O+zO~P!4vO](sO%O#oO~O#T(tOV#ea$w#ea~O](xO%O#oO~O#k(yOV#ii$w#ii~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-PO!WaO!]!QO!phO!qhO%O+xO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O^(|O%O%_O~O#p%dP#q%dP~P/uOi)PO#p'PO#q'QO~O!a)RO~O!QnO#y)VO~P*aOV)WO!|#`O~PBROj#wa~P;_OV)WO!QnO~P*aOi)]O#p']O#q'^O~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!QnO!WaO!]!QO!phO!qhO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O%O,eO~P!:lO!a)bO~Oj!qO!QnO~P*aOj!qO!QnOi%ca~P*aOn)iOi%ca~O!V%ba!a%ba~P?tOn)lO!V%ba!a%ba~O])nO~O])oO~O!V)pO~O!QnO!V)rO!a)sO~P*aO!V)rO!a)sO!|#`O~PBRO])uOn)vO~O])wOn)xO~O^!hOh!POr-TOu%xOw}O!P-_O!Q-`O!W-^O!]-eO%O,dO%Y!fO~O]%[a~P!>nOn)|O]%[a~O]${O]tXntX~OjcOV$^q$w$^q~On*PO{&WO~P?tOn*SO!V%rX~O!V*UO~OjcOV$]q$w$]q~O%`(ZOV|a$w|an|a!V|a~O[*]OVla$wla~O[*]O!W!tOVla$wla~On*PO{&WO!W*`O^%WXj%WX~P! _OjcO#j!UO~OjcO!|,XO~PBROZ*dO^#VO!W#SO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]O~O!|#`O~P!BoO#^*eO~P?tO!a*fO~Oj$`O!|,XO~P!BoO#W*hO~Oj#wi~P;_OV*kO!|#`O~PBROn#TO!Q#cO!|#`O!a$QX#T%eX~PBRO#T*lO~O#W*lO~O!a*mO~O!|#`Oi!_in!_i~PBRO!|#`Oi!bXn!bX!a!cX~PBROi!bXn!bX!a!cX~O!a*nO~Oj!qO!QnOi%ci~P*aO!V%bi!a%bi~P?tO!V*qO!a*rO!|#`O~PBRO!V*qO!|#`O~PBRO]*tO~O]*uO~O]*uOu*vO~O]%[i~P!>nO%O!eO!V%ra~On*|O!V%ra~O[+OOVli$wli~O%O+yO~P!4vO#k+QOV#iy$w#iy~O^+RO%O%_O~O]+SO~O!|,XOj#xq~PBROj#wq~P;_O!V+ZO!|#`O~PBRO]+[On+]O~O%O!eO!V%ri~O^#QOn'eO!V%bX~O#^+`O~P?tOj+aO~O^#VO!W#SO!|#`O%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[O%q#]O~OZ+cO~P!JvO!|#`O!a$Qi~PBRO!|#`Oi!bin!bi~PBRO!V+dO!|#`O~PBRO]+eO~O]+fO~Oi+iO#p+jO#q+kO~O^+lO%O%_O~Oi+pO#p+jO#q+kO~O!a+rO~O#^+sO~P?tO!a+tO~O]+uO~OZeX^eX^!TXj!TX!WeX!W!TX!|eX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeXVeXneX!QeX#ReX#TeX#UeX$weX~O]eX]!TX!VeXieX!aeX~P!NUOjeX~P!NUOZeX^eX^!TXj!TX!WeX!W!TX!|eX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeXn!TX!VeX~O]eX!V!TX~P#!gOh!TXr!TXw!TX{!TX!P!TX!Q!TX!]!TX%O!TX%Y!TX~P#!gOZeX^eX^!TXj!TXneX!WeX!W!TX!|eX%YeX%`eX%feX%geX%ieX%jeX%keX%leX%meX%neX%oeX%peX%qeX~O]eXueX~P#$xO]$mXn$mXu$mX~PF|Oj$mXn$mX~P!7`On+|O]%eau%ea~On+}Oj%ea~O[oO^YOaoOdoOh!POr!pOw}O!P!OO!Q-OO!WaO!]!QO!phO!qhO%O+yO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~OZeX]!TX^UXhUXnUXn!TXrUXuUXwUX!PUX!QUX!WUX!W!TX!]UX%OUX%YUX~OnUX!QeX!aeX#TeX#WUX~P#$xOn+|O!|,YO]%eXu%eX~PBROn+}O!|,XOj%eX~PBRO^&OOV%ZXj%ZX$w%ZX]%ZXn%ZX!V%ZXu%ZX%`%ZX#T%ZX[%ZX!a%ZX~P?wO!|,YO]$man$mau$ma~PBRO!|,XOj$man$ma~PBRO%Y#XO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOZ!xi]!xi^!xi!W!xi!|!xi%`!xi%f!xi%g!xi%i!xi%p!xi%q!xi~Oj!xi~P!+YOn!xiu!xi~P#,hO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOZ!xi]!xi^!xi!W!xi!|!xi%p!xi%q!xi~O%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOV!xiZ!xi^!xij!xin!xi!Q!xi!W!xi#R!xi#T!xi#U!xi$w!xi%p!xi%q!xi~O!|!xi~P#/_On!xiu!xi~P#.TO%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YOZ!xi]!xi^!xi!W!xi%p!xi%q!xi~O!|,WO~P#1^O!|,XO~P#/_O!|,YOn!xiu!xi~P#1^O%Y#XO%`#ZO%fiO%giO%i#ZO%j#YO%k#XO%l#XO%m#YO%n#YO%o#YO%p#[OZ!xi]!xi^!xi!W!xi%q!xi~O!|,WO~P#3QO!|,XOj!xi~P!/VO!|,YOn!xiu!xi~P#3QO!|,XOj#Pi~PBROV!TXZeX^mX!W!TX$w!TX~O%`!TX~P#5RO[!TXhmXnmXrmXwmX!PmX!QmX!WmX!]mX%OmX%YmX~P#5ROn#TO!Q,aO!|,XO#R#dOj`X#T%eX#U%eX~PBRO[oO^YOaoOdoOh!POr!pOw}O!P#hO!WaO!]!QO!phO!qhO%UTO%VUO%YVO%fiO%giO%hjO%ikO%jlO~O!Q-OO%O+yO~P#6{O!Q-PO%O+xO~P#6{O!Q-QO%O+{O~P#6{O#T,bO#U,bO~O#W,cO~O^!hOh!POr-TOw}O!P-_O!Q-WO!W-^O!]-eO%O!eO%Y!fO~O^!hOh!POr-TOw}O!Q-`O!W-^O!]-eO%O!eO%Y!fO~O!P-VO~P#9zO%O+wO~P!4vO!P-XO~O!V-YO!|#`O~PBRO!V-ZO~O!V-[O~O!W-dO~OP%ka%Oa~",
@@ -72,7 +72,7 @@ const iO = new R({
72
72
  skippedNodes: [0, 1, 2, 153],
73
73
  repeatNodeCount: 23,
74
74
  tokenData: ":b~RvXY#iYZ#i]^#ipq#iqr#zrs$Xuv&Pvw&^wx&yxy(qyz(vz{({{|)T|})e}!O)j!O!P)u!P!Q+}!Q!R,y!R![-t![!]2^!]!^2k!^!_2p!_!`3]!`!a3e!c!}3x!}#O4j#P#Q4o#Q#R4t#R#S4|#S#T9X#T#o3x#o#p9q#p#q9v#q#r:W#r#s:]$g;'S3x;'S;=`4d<%lO3x~#nS$y~XY#iYZ#i]^#ipq#iU$PP%hQ!_!`$SS$XO!|S~$^W[~OY$XZr$Xrs$vs#O$X#O#P${#P;'S$X;'S;=`%y<%lO$X~${O[~~%ORO;'S$X;'S;=`%X;=`O$X~%^X[~OY$XZr$Xrs$vs#O$X#O#P${#P;'S$X;'S;=`%y;=`<%l$X<%lO$X~%|P;=`<%l$X~&UP%l~!_!`&X~&^O#U~~&cR%j~vw&l!_!`&X#Q#R&q~&qO%p~~&vP%o~!_!`&X~'OWd~OY&yZw&ywx'hx#O&y#O#P'm#P;'S&y;'S;=`(k<%lO&y~'mOd~~'pRO;'S&y;'S;=`'y;=`O&y~(OXd~OY&yZw&ywx'hx#O&y#O#P'm#P;'S&y;'S;=`(k;=`<%l&y<%lO&y~(nP;=`<%l&y~(vO^~~({O]~~)QP%Y~!_!`&X~)YQ%f~{|)`!_!`&X~)eO#R~~)jOn~~)oQ%g~}!O)`!_!`&X~)zRZS!O!P*T!Q![*`#R#S+w~*WP!O!P*Z~*`Ou~Q*eTaQ!Q![*`!g!h*t#R#S+w#X#Y*t#]#^+rQ*wS{|+T}!O+T!Q![+^#R#S+lQ+WQ!Q![+^#R#S+lQ+cRaQ!Q![+^#R#S+l#]#^+rQ+oP!Q![+^Q+wOaQQ+zP!Q![*`~,SR%k~z{,]!P!Q,b!_!`&X~,bO$z~~,gSP~OY,bZ;'S,b;'S;=`,s<%lO,b~,vP;=`<%l,bQ-O[aQ!O!P*`!Q![-t!d!e.c!g!h*t!q!r/Z!z!{/x#R#S.]#U#V.c#X#Y*t#]#^+r#c#d/Z#l#m/xQ-yUaQ!O!P*`!Q![-t!g!h*t#R#S.]#X#Y*t#]#^+rQ.`P!Q![-tQ.fR!Q!R.o!R!S.o#R#S/QQ.tSaQ!Q!R.o!R!S.o#R#S/Q#]#^+rQ/TQ!Q!R.o!R!S.oQ/^Q!Q!Y/d#R#S/rQ/iRaQ!Q!Y/d#R#S/r#]#^+rQ/uP!Q!Y/dQ/{T!O!P0[!Q![1c!c!i1c#R#S2Q#T#Z1cQ0_S!Q![0k!c!i0k#R#S1V#T#Z0kQ0pVaQ!Q![0k!c!i0k!r!s*t#R#S1V#T#Z0k#]#^+r#d#e*tQ1YR!Q![0k!c!i0k#T#Z0kQ1hWaQ!O!P0k!Q![1c!c!i1c!r!s*t#R#S2Q#T#Z1c#]#^+r#d#e*tQ2TR!Q![1c!c!i1c#T#Z1c~2cP!a~!_!`2f~2kO#W~~2pOV~~2uR!|S}!O3O!^!_3T!_!`$S~3TO!Q~~3YP%m~!_!`&X~3bP#T~!_!`$S~3jQ!|S!_!`$S!`!a3p~3uP%n~!_!`&X~3}V%O~!Q![3x!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~4gP;=`<%l3x~4oO!W~~4tO!V~~4yP%i~!_!`&X~5RV%O~!Q![5h!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~5o^aQ%O~!O!P*`!Q![5h!c!g3x!g!h6k!h!}3x#R#S4|#T#X3x#X#Y6k#Y#]3x#]#^8k#^#o3x$g;'S3x;'S;=`4d<%lO3x~6pX%O~{|+T}!O+T!Q![7]!c!}3x#R#S8P#T#o3x$g;'S3x;'S;=`4d<%lO3x~7dXaQ%O~!Q![7]!c!}3x#R#S8P#T#]3x#]#^8k#^#o3x$g;'S3x;'S;=`4d<%lO3x~8UV%O~!Q![7]!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~8rVaQ%O~!Q![3x!c!}3x#R#S3x#T#o3x$g;'S3x;'S;=`4d<%lO3x~9[TO#S9X#S#T$v#T;'S9X;'S;=`9k<%lO9X~9nP;=`<%l9X~9vOj~~9{Q%`~!_!`&X#p#q:R~:WO%q~~:]Oi~~:bO{~",
75
- tokenizers: [aO, 1, 2, new w("j~RQYZXz{^~^O$|~~aP!P!Qd~iO$}~~", 25, 181)],
75
+ tokenizers: [aO, 1, 2, new Y("j~RQYZXz{^~^O$|~~aP!P!Qd~iO$}~~", 25, 181)],
76
76
  topRules: { SourceFile: [0, 3] },
77
77
  dynamicPrecedences: { 19: 1, 51: -1, 55: 2, 69: -1, 108: -1 },
78
78
  specialized: [{ term: 184, get: (Q) => nO[Q] || -1 }],
@@ -158,7 +158,7 @@ const iO = new R({
158
158
  detail: "declaration",
159
159
  type: "keyword"
160
160
  })
161
- ], S = /* @__PURE__ */ new Z(), T = /* @__PURE__ */ new Set([
161
+ ], S = /* @__PURE__ */ new b(), T = /* @__PURE__ */ new Set([
162
162
  "SourceFile",
163
163
  "Block",
164
164
  "FunctionDecl",
@@ -200,7 +200,7 @@ function W(Q, e) {
200
200
  let V = Q.sliceString(i.from, i.to);
201
201
  a.push({ label: V, type: P });
202
202
  }
203
- return e.cursor(b.IncludeAnonymous).iterate((i) => {
203
+ return e.cursor(Z.IncludeAnonymous).iterate((i) => {
204
204
  if (t)
205
205
  t = !1;
206
206
  else if (i.name) {
@@ -224,7 +224,7 @@ const p = /^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/, m = [
224
224
  ".",
225
225
  "?."
226
226
  ], rO = (Q) => {
227
- let e = d(Q.state).resolveInner(Q.pos, -1);
227
+ let e = G(Q.state).resolveInner(Q.pos, -1);
228
228
  if (m.indexOf(e.name) > -1)
229
229
  return null;
230
230
  let n = e.name == "VariableName" || e.to - e.from < 20 && p.test(Q.state.sliceDoc(e.from, e.to));
@@ -238,23 +238,23 @@ const p = /^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/, m = [
238
238
  from: n ? e.from : Q.pos,
239
239
  validFor: p
240
240
  };
241
- }, r = /* @__PURE__ */ k.define({
241
+ }, r = /* @__PURE__ */ d.define({
242
242
  name: "go",
243
243
  parser: /* @__PURE__ */ PO.configure({
244
244
  props: [
245
- /* @__PURE__ */ h.add({
245
+ /* @__PURE__ */ u.add({
246
246
  IfStatement: /* @__PURE__ */ l({ except: /^\s*({|else\b)/ }),
247
- LabeledStatement: f,
247
+ LabeledStatement: j,
248
248
  "SwitchBlock SelectBlock": (Q) => {
249
249
  let e = Q.textAfter, n = /^\s*\}/.test(e), a = /^\s*(case|default)\b/.test(e);
250
250
  return Q.baseIndent + (n || a ? 0 : Q.unit);
251
251
  },
252
- Block: /* @__PURE__ */ u({ closing: "}" }),
252
+ Block: /* @__PURE__ */ g({ closing: "}" }),
253
253
  BlockComment: () => null,
254
254
  Statement: /* @__PURE__ */ l({ except: /^{/ })
255
255
  }),
256
256
  /* @__PURE__ */ y.add({
257
- "Block SwitchBlock SelectBlock LiteralValue InterfaceType StructType SpecList": g,
257
+ "Block SwitchBlock SelectBlock LiteralValue InterfaceType StructType SpecList": U,
258
258
  BlockComment(Q) {
259
259
  return { from: Q.from + 2, to: Q.to - 2 };
260
260
  }
@@ -271,9 +271,9 @@ let lO = (Q) => ({ label: Q, type: "keyword" });
271
271
  const $O = /* @__PURE__ */ "interface struct chan map package go return break continue goto fallthrough else defer range true false nil".split(" ").map(lO);
272
272
  function pO() {
273
273
  let Q = oO.concat($O);
274
- return new j(r, [
274
+ return new k(r, [
275
275
  r.data.of({
276
- autocomplete: U(m, G(Q))
276
+ autocomplete: h(m, f(Q))
277
277
  }),
278
278
  r.data.of({
279
279
  autocomplete: rO
@@ -1,5 +1,5 @@
1
- import { C as B, E as i, s as W, t, b as U, L as C, i as u, j as v, f as E, k as M, a as b, r as N } from "./index-Ce86fM2z.js";
2
- const c = 63, D = 64, j = 1, A = 2, y = 3, H = 4, Z = 5, F = 6, I = 7, z = 65, K = 66, J = 8, OO = 9, eO = 10, aO = 11, rO = 12, V = 13, nO = 19, tO = 20, oO = 29, PO = 33, QO = 34, sO = 47, lO = 0, T = 1, g = 2, d = 3, m = 4;
1
+ import { a as W, E as i, s as U, C as B, t as n, L as C, b, r as E, i as u, f as M, h as v, k as N } from "./index-DSYfAsS3.js";
2
+ const c = 63, D = 64, j = 1, A = 2, y = 3, H = 4, Z = 5, F = 6, I = 7, z = 65, K = 66, J = 8, OO = 9, eO = 10, aO = 11, rO = 12, V = 13, tO = 19, nO = 20, oO = 29, PO = 33, QO = 34, sO = 47, lO = 0, T = 1, g = 2, d = 3, m = 4;
3
3
  class s {
4
4
  constructor(e, a, r) {
5
5
  this.parent = e, this.depth = a, this.type = r, this.hash = (e ? e.hash + e.hash << 8 : 0) + a + (a << 4) + r;
@@ -27,7 +27,7 @@ function l(O) {
27
27
  const cO = new B({
28
28
  start: s.top,
29
29
  reduce(O, e) {
30
- return O.type == d && (e == tO || e == QO) ? O.parent : O;
30
+ return O.type == d && (e == nO || e == QO) ? O.parent : O;
31
31
  },
32
32
  shift(O, e, a, r) {
33
33
  if (e == y)
@@ -36,7 +36,7 @@ const cO = new B({
36
36
  return new s(O, X(r, r.pos), g);
37
37
  if (e == c)
38
38
  return O.parent;
39
- if (e == nO || e == PO)
39
+ if (e == tO || e == PO)
40
40
  return new s(O, 0, d);
41
41
  if (e == V && O.type == m)
42
42
  return O.parent;
@@ -144,17 +144,17 @@ function $(O) {
144
144
  function p(O, e) {
145
145
  let a = O.next, r = !1, o = O.pos;
146
146
  for (O.advance(); ; ) {
147
- let n = O.next;
148
- if (n < 0) break;
149
- if (O.advance(), n == a)
150
- if (n == 39)
147
+ let t = O.next;
148
+ if (t < 0) break;
149
+ if (O.advance(), t == a)
150
+ if (t == 39)
151
151
  if (O.next == 39) O.advance();
152
152
  else break;
153
153
  else
154
154
  break;
155
- else if (n == 92 && a == 34)
155
+ else if (t == 92 && a == 34)
156
156
  O.next >= 0 && O.advance();
157
- else if (P(n)) {
157
+ else if (P(t)) {
158
158
  if (e) return !1;
159
159
  r = !0;
160
160
  } else if (e && O.pos >= o + 1024)
@@ -192,18 +192,18 @@ function w(O, e, a, r) {
192
192
  return !1;
193
193
  let o = O.pos;
194
194
  for (; ; ) {
195
- let n = O.next, Q = 0, R = r + 1;
196
- for (; _(n); ) {
197
- if (P(n)) {
195
+ let t = O.next, Q = 0, R = r + 1;
196
+ for (; _(t); ) {
197
+ if (P(t)) {
198
198
  if (e) return !1;
199
199
  R = 0;
200
200
  } else
201
201
  R++;
202
- n = O.peek(++Q);
202
+ t = O.peek(++Q);
203
203
  }
204
- if (!(n >= 0 && (n == 58 ? k(O.peek(Q + 1), a) : n == 35 ? O.peek(Q - 1) != 32 : k(n, a))) || !a && R <= r || R == 0 && !a && (f(O, 45, Q) || f(O, 46, Q)))
204
+ if (!(t >= 0 && (t == 58 ? k(O.peek(Q + 1), a) : t == 35 ? O.peek(Q - 1) != 32 : k(t, a))) || !a && R <= r || R == 0 && !a && (f(O, 45, Q) || f(O, 46, Q)))
205
205
  break;
206
- if (e && S(n) == "f") return !1;
206
+ if (e && S(t) == "f") return !1;
207
207
  for (let h = Q; h >= 0; h--) O.advance();
208
208
  if (e && O.pos > o + 1024) return !1;
209
209
  }
@@ -219,9 +219,9 @@ const iO = new i((O, e) => {
219
219
  }), kO = new i((O, e) => {
220
220
  let a = e.context.type == m ? e.context.depth : -1, r = O.pos;
221
221
  O: for (; ; ) {
222
- let o = 0, n = O.next;
223
- for (; n == 32; ) n = O.peek(++o);
224
- if (!o && (f(O, 45, o) || f(O, 46, o)) || !P(n) && (a < 0 && (a = Math.max(e.context.depth + 1, o)), o < a))
222
+ let o = 0, t = O.next;
223
+ for (; t == 32; ) t = O.peek(++o);
224
+ if (!o && (f(O, 45, o) || f(O, 46, o)) || !P(t) && (a < 0 && (a = Math.max(e.context.depth + 1, o)), o < a))
225
225
  break;
226
226
  for (; ; ) {
227
227
  if (O.next < 0) break O;
@@ -231,23 +231,23 @@ const iO = new i((O, e) => {
231
231
  }
232
232
  }
233
233
  O.acceptTokenTo(V, r);
234
- }), bO = W({
235
- DirectiveName: t.keyword,
236
- DirectiveContent: t.attributeValue,
237
- "DirectiveEnd DocEnd": t.meta,
238
- QuotedLiteral: t.string,
239
- BlockLiteralHeader: t.special(t.string),
240
- BlockLiteralContent: t.content,
241
- Literal: t.content,
242
- "Key/Literal Key/QuotedLiteral": t.definition(t.propertyName),
243
- "Anchor Alias": t.labelName,
244
- Tag: t.typeName,
245
- Comment: t.lineComment,
246
- ": , -": t.separator,
247
- "?": t.punctuation,
248
- "[ ]": t.squareBracket,
249
- "{ }": t.brace
250
- }), gO = U.deserialize({
234
+ }), bO = U({
235
+ DirectiveName: n.keyword,
236
+ DirectiveContent: n.attributeValue,
237
+ "DirectiveEnd DocEnd": n.meta,
238
+ QuotedLiteral: n.string,
239
+ BlockLiteralHeader: n.special(n.string),
240
+ BlockLiteralContent: n.content,
241
+ Literal: n.content,
242
+ "Key/Literal Key/QuotedLiteral": n.definition(n.propertyName),
243
+ "Anchor Alias": n.labelName,
244
+ Tag: n.typeName,
245
+ Comment: n.lineComment,
246
+ ": , -": n.separator,
247
+ "?": n.punctuation,
248
+ "[ ]": n.squareBracket,
249
+ "{ }": n.brace
250
+ }), gO = W.deserialize({
251
251
  version: 14,
252
252
  states: "5lQ!ZQgOOO#PQfO'#CpO#uQfO'#DOOOQR'#Dv'#DvO$qQgO'#DRO%gQdO'#DUO%nQgO'#DUO&ROaO'#D[OOQR'#Du'#DuO&{QgO'#D^O'rQgO'#D`OOQR'#Dt'#DtO(iOqO'#DbOOQP'#Dj'#DjO(zQaO'#CmO)YQgO'#CmOOQP'#Cm'#CmQ)jQaOOQ)uQgOOQ]QgOOO*PQdO'#CrO*nQdO'#CtOOQO'#Dw'#DwO+]Q`O'#CxO+hQdO'#CwO+rQ`O'#CwOOQO'#Cv'#CvO+wQdO'#CvOOQO'#Cq'#CqO,UQ`O,59[O,^QfO,59[OOQR,59[,59[OOQO'#Cx'#CxO,eQ`O'#DPO,pQdO'#DPOOQO'#Dx'#DxO,zQdO'#DxO-XQ`O,59jO-aQfO,59jOOQR,59j,59jOOQR'#DS'#DSO-hQcO,59mO-sQgO'#DVO.TQ`O'#DVO.YQcO,59pOOQR'#DX'#DXO#|QfO'#DWO.hQcO'#DWOOQR,59v,59vO.yOWO,59vO/OOaO,59vO/WOaO,59vO/cQgO'#D_OOQR,59x,59xO0VQgO'#DaOOQR,59z,59zOOQP,59|,59|O0yOaO,59|O1ROaO,59|O1aOqO,59|OOQP-E7h-E7hO1oQgO,59XOOQP,59X,59XO2PQaO'#DeO2_QgO'#DeO2oQgO'#DkOOQP'#Dk'#DkQ)jQaOOO3PQdO'#CsOOQO,59^,59^O3kQdO'#CuOOQO,59`,59`OOQO,59c,59cO4VQdO,59cO4aQdO'#CzO4kQ`O'#CzOOQO,59b,59bOOQU,5:Q,5:QOOQR1G.v1G.vO4pQ`O1G.vOOQU-E7d-E7dO4xQdO,59kOOQO,59k,59kO5SQdO'#DQO5^Q`O'#DQOOQO,5:d,5:dOOQU,5:R,5:ROOQR1G/U1G/UO5cQ`O1G/UOOQU-E7e-E7eO5kQgO'#DhO5xQcO1G/XOOQR1G/X1G/XOOQR,59q,59qO6TQgO,59qO6eQdO'#DiO6lQgO'#DiO7PQcO1G/[OOQR1G/[1G/[OOQR,59r,59rO#|QfO,59rOOQR1G/b1G/bO7_OWO1G/bO7dOaO1G/bOOQR,59y,59yOOQR,59{,59{OOQP1G/h1G/hO7lOaO1G/hO7tOaO1G/hO8POaO1G/hOOQP1G.s1G.sO8_QgO,5:POOQP,5:P,5:POOQP,5:V,5:VOOQP-E7i-E7iOOQO,59_,59_OOQO,59a,59aOOQO1G.}1G.}OOQO,59f,59fO8oQdO,59fOOQR7+$b7+$bP,XQ`O'#DfOOQO1G/V1G/VOOQO,59l,59lO8yQdO,59lOOQR7+$p7+$pP9TQ`O'#DgOOQR'#DT'#DTOOQR,5:S,5:SOOQR-E7f-E7fOOQR7+$s7+$sOOQR1G/]1G/]O9YQgO'#DYO9jQ`O'#DYOOQR,5:T,5:TO#|QfO'#DZO9oQcO'#DZOOQR-E7g-E7gOOQR7+$v7+$vOOQR1G/^1G/^OOQR7+$|7+$|O:QOWO7+$|OOQP7+%S7+%SO:VOaO7+%SO:_OaO7+%SOOQP1G/k1G/kOOQO1G/Q1G/QOOQO1G/W1G/WOOQR,59t,59tO:jQgO,59tOOQR,59u,59uO#|QfO,59uOOQR<<Hh<<HhOOQP<<Hn<<HnO:zOaO<<HnOOQR1G/`1G/`OOQR1G/a1G/aOOQPAN>YAN>Y",
253
253
  stateData: ";S~O!fOS!gOS^OS~OP_OQbORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!V[O!cTO~O`cO~P]OVkOWROXROYeOZfO[dOcPOmhOqQO~OboO~P!bOVtOWROXROYeOZfO[dOcPOmrOqQO~OpwO~P#WORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!cTO~OSvP!avP!bvP~P#|OWROXROYeOZfO[dOcPOqQO~OmzO~P%OOm!OOUzP!azP!bzP!dzP~P#|O^!SO!b!QO!f!TO!g!RO~ORSOTUOWROXROcPOqQO!PVO!cTO~OY!UOP!QXQ!QX!V!QX!`!QXS!QX!a!QX!b!QXU!QXm!QX!d!QX~P&aO[!WOP!SXQ!SX!V!SX!`!SXS!SX!a!SX!b!SXU!SXm!SX!d!SX~P&aO^!ZO!W![O!b!YO!f!]O!g!YO~OP!_O!V[OQaX!`aX~OPaXQaX!VaX!`aX~P#|OP!bOQ!cO!V[O~OP_O!V[O~P#|OWROXROY!fOcPOqQObfXmfXofXpfX~OWROXRO[!hOcPOqQObhXmhXohXphX~ObeXmlXoeX~ObkXokX~P%OOm!kO~Om!lObnPonP~P%OOb!pOo!oO~Ob!pO~P!bOm!sOosXpsX~OosXpsX~P%OOm!uOotPptP~P%OOo!xOp!yO~Op!yO~P#WOS!|O!a#OO!b#OO~OUyX!ayX!byX!dyX~P#|Om#QO~OU#SO!a#UO!b#UO!d#RO~Om#WOUzX!azX!bzX!dzX~O]#XO~O!b#XO!g#YO~O^#ZO!b#XO!g#YO~OP!RXQ!RX!V!RX!`!RXS!RX!a!RX!b!RXU!RXm!RX!d!RX~P&aOP!TXQ!TX!V!TX!`!TXS!TX!a!TX!b!TXU!TXm!TX!d!TX~P&aO!b#^O!g#^O~O^#_O!b#^O!f#`O!g#^O~O^#_O!W#aO!b#^O!g#^O~OPaaQaa!Vaa!`aa~P#|OP#cO!V[OQ!XX!`!XX~OP!XXQ!XX!V!XX!`!XX~P#|OP_O!V[OQ!_X!`!_X~P#|OWROXROcPOqQObgXmgXogXpgX~OWROXROcPOqQObiXmiXoiXpiX~Obkaoka~P%OObnXonX~P%OOm#kO~Ob#lOo!oO~Oosapsa~P%OOotXptX~P%OOm#pO~Oo!xOp#qO~OSwP!awP!bwP~P#|OS!|O!a#vO!b#vO~OUya!aya!bya!dya~P#|Om#xO~P%OOm#{OU}P!a}P!b}P!d}P~P#|OU#SO!a$OO!b$OO!d#RO~O]$QO~O!b$QO!g$RO~O!b$SO!g$SO~O^$TO!b$SO!g$SO~O^$TO!b$SO!f$UO!g$SO~OP!XaQ!Xa!V!Xa!`!Xa~P#|Obnaona~P%OOotapta~P%OOo!xO~OU|X!a|X!b|X!d|X~P#|Om$ZO~Om$]OU}X!a}X!b}X!d}X~O]$^O~O!b$_O!g$_O~O^$`O!b$_O!g$_O~OU|a!a|a!b|a!d|a~P#|O!b$cO!g$cO~O",
@@ -267,7 +267,7 @@ const iO = new i((O, e) => {
267
267
  tokenizers: [fO, XO, iO, kO, 0, 1],
268
268
  topRules: { Stream: [0, 15] },
269
269
  tokenPrec: 0
270
- }), mO = /* @__PURE__ */ U.deserialize({
270
+ }), mO = /* @__PURE__ */ W.deserialize({
271
271
  version: 14,
272
272
  states: "!vOQOPOOO]OPO'#C_OhOPO'#C^OOOO'#Cc'#CcOpOPO'#CaQOOOOOO{OPOOOOOO'#Cb'#CbO!WOPO'#C`O!`OPO,58xOOOO-E6a-E6aOOOO-E6`-E6`OOOO'#C_'#C_OOOO1G.d1G.d",
273
273
  stateData: "!h~OXPOYROWTP~OWVXXRXYRX~OYVOXSP~OXROYROWTX~OXROYROWTP~OYVOXSX~OX[O~OXY~",
@@ -308,9 +308,9 @@ const iO = new i((O, e) => {
308
308
  FlowMapping: /* @__PURE__ */ v({ closing: "}" }),
309
309
  FlowSequence: /* @__PURE__ */ v({ closing: "]" })
310
310
  }),
311
- /* @__PURE__ */ E.add({
312
- "FlowMapping FlowSequence": M,
313
- "BlockSequence Pair BlockLiteral": (O, e) => ({ from: e.doc.lineAt(O.from).to, to: O.to })
311
+ /* @__PURE__ */ M.add({
312
+ "FlowMapping FlowSequence": N,
313
+ "Item Pair BlockLiteral": (O, e) => ({ from: e.doc.lineAt(O.from).to, to: O.to })
314
314
  })
315
315
  ]
316
316
  }),
@@ -325,13 +325,13 @@ function pO() {
325
325
  const xO = /* @__PURE__ */ C.define({
326
326
  name: "yaml-frontmatter",
327
327
  parser: /* @__PURE__ */ mO.configure({
328
- props: [/* @__PURE__ */ W({ DashLine: t.meta })]
328
+ props: [/* @__PURE__ */ U({ DashLine: n.meta })]
329
329
  })
330
330
  });
331
331
  function hO(O) {
332
332
  let { language: e, support: a } = O.content instanceof b ? O.content : { language: O.content, support: [] };
333
333
  return new b(xO.configure({
334
- wrap: N((r) => r.name == "FrontmatterContent" ? { parser: L.parser } : r.name == "Body" ? { parser: e.parser } : null)
334
+ wrap: E((r) => r.name == "FrontmatterContent" ? { parser: L.parser } : r.name == "Body" ? { parser: e.parser } : null)
335
335
  }), a);
336
336
  }
337
337
  export {
@@ -0,0 +1,308 @@
1
+ import { a as G, E as A, s as N, C as I, t as p, o as Y, L as j, g as k, p as U, b as Z, i as B, f as D, u as M } from "./index-DSYfAsS3.js";
2
+ const h = 1, F = 2, L = 3, K = 4, H = 5, J = 36, ee = 37, te = 38, Oe = 11, oe = 13;
3
+ function re(e) {
4
+ return e == 45 || e == 46 || e == 58 || e >= 65 && e <= 90 || e == 95 || e >= 97 && e <= 122 || e >= 161;
5
+ }
6
+ function ne(e) {
7
+ return e == 9 || e == 10 || e == 13 || e == 32;
8
+ }
9
+ let Q = null, V = null, X = 0;
10
+ function W(e, t) {
11
+ let o = e.pos + t;
12
+ if (V == e && X == o) return Q;
13
+ for (; ne(e.peek(t)); ) t++;
14
+ let O = "";
15
+ for (; ; ) {
16
+ let r = e.peek(t);
17
+ if (!re(r)) break;
18
+ O += String.fromCharCode(r), t++;
19
+ }
20
+ return V = e, X = o, Q = O || null;
21
+ }
22
+ function _(e, t) {
23
+ this.name = e, this.parent = t;
24
+ }
25
+ const ae = new I({
26
+ start: null,
27
+ shift(e, t, o, O) {
28
+ return t == h ? new _(W(O, 1) || "", e) : e;
29
+ },
30
+ reduce(e, t) {
31
+ return t == Oe && e ? e.parent : e;
32
+ },
33
+ reuse(e, t, o, O) {
34
+ let r = t.type.id;
35
+ return r == h || r == oe ? new _(W(O, 1) || "", e) : e;
36
+ },
37
+ strict: !1
38
+ }), le = new A((e, t) => {
39
+ if (e.next == 60) {
40
+ if (e.advance(), e.next == 47) {
41
+ e.advance();
42
+ let o = W(e, 0);
43
+ if (!o) return e.acceptToken(H);
44
+ if (t.context && o == t.context.name) return e.acceptToken(F);
45
+ for (let O = t.context; O; O = O.parent) if (O.name == o) return e.acceptToken(L, -2);
46
+ e.acceptToken(K);
47
+ } else if (e.next != 33 && e.next != 63)
48
+ return e.acceptToken(h);
49
+ }
50
+ }, { contextual: !0 });
51
+ function y(e, t) {
52
+ return new A((o) => {
53
+ let O = 0, r = t.charCodeAt(0);
54
+ e: for (; !(o.next < 0); o.advance(), O++)
55
+ if (o.next == r) {
56
+ for (let a = 1; a < t.length; a++)
57
+ if (o.peek(a) != t.charCodeAt(a)) continue e;
58
+ break;
59
+ }
60
+ O && o.acceptToken(e);
61
+ });
62
+ }
63
+ const se = y(J, "-->"), ie = y(ee, "?>"), ce = y(te, "]]>"), $e = N({
64
+ Text: p.content,
65
+ "StartTag StartCloseTag EndTag SelfCloseEndTag": p.angleBracket,
66
+ TagName: p.tagName,
67
+ "MismatchedCloseTag/TagName": [p.tagName, p.invalid],
68
+ AttributeName: p.attributeName,
69
+ AttributeValue: p.attributeValue,
70
+ Is: p.definitionOperator,
71
+ "EntityReference CharacterReference": p.character,
72
+ Comment: p.blockComment,
73
+ ProcessingInst: p.processingInstruction,
74
+ DoctypeDecl: p.documentMeta,
75
+ Cdata: p.special(p.string)
76
+ }), me = G.deserialize({
77
+ version: 14,
78
+ states: ",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y",
79
+ stateData: ")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O",
80
+ goto: "%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb",
81
+ nodeNames: "⚠ StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl",
82
+ maxTerm: 50,
83
+ context: ae,
84
+ nodeProps: [
85
+ ["closedBy", 1, "SelfCloseEndTag EndTag", 13, "CloseTag MissingCloseTag"],
86
+ ["openedBy", 12, "StartTag StartCloseTag", 19, "OpenTag", 20, "StartTag"],
87
+ ["isolate", -6, 13, 18, 19, 21, 22, 24, ""]
88
+ ],
89
+ propSources: [$e],
90
+ skippedNodes: [0],
91
+ repeatNodeCount: 9,
92
+ tokenData: "!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",
93
+ tokenizers: [le, se, ie, ce, 0, 1, 2, 3, 4],
94
+ topRules: { Document: [0, 6] },
95
+ tokenPrec: 0
96
+ });
97
+ function T(e, t) {
98
+ let o = t && t.getChild("TagName");
99
+ return o ? e.sliceString(o.from, o.to) : "";
100
+ }
101
+ function P(e, t) {
102
+ let o = t && t.firstChild;
103
+ return !o || o.name != "OpenTag" ? "" : T(e, o);
104
+ }
105
+ function Se(e, t, o) {
106
+ let O = t && t.getChildren("Attribute").find((a) => a.from <= o && a.to >= o), r = O && O.getChild("AttributeName");
107
+ return r ? e.sliceString(r.from, r.to) : "";
108
+ }
109
+ function C(e) {
110
+ for (let t = e && e.parent; t; t = t.parent)
111
+ if (t.name == "Element")
112
+ return t;
113
+ return null;
114
+ }
115
+ function ge(e, t) {
116
+ var o;
117
+ let O = k(e).resolveInner(t, -1), r = null;
118
+ for (let a = O; !r && a.parent; a = a.parent)
119
+ (a.name == "OpenTag" || a.name == "CloseTag" || a.name == "SelfClosingTag" || a.name == "MismatchedCloseTag") && (r = a);
120
+ if (r && (r.to > t || r.lastChild.type.isError)) {
121
+ let a = r.parent;
122
+ if (O.name == "TagName")
123
+ return r.name == "CloseTag" || r.name == "MismatchedCloseTag" ? { type: "closeTag", from: O.from, context: a } : { type: "openTag", from: O.from, context: C(a) };
124
+ if (O.name == "AttributeName")
125
+ return { type: "attrName", from: O.from, context: r };
126
+ if (O.name == "AttributeValue")
127
+ return { type: "attrValue", from: O.from, context: r };
128
+ let s = O == r || O.name == "Attribute" ? O.childBefore(t) : O;
129
+ return s?.name == "StartTag" ? { type: "openTag", from: t, context: C(a) } : s?.name == "StartCloseTag" && s.to <= t ? { type: "closeTag", from: t, context: a } : s?.name == "Is" ? { type: "attrValue", from: t, context: r } : s ? { type: "attrName", from: t, context: r } : null;
130
+ } else if (O.name == "StartCloseTag")
131
+ return { type: "closeTag", from: t, context: O.parent };
132
+ for (; O.parent && O.to == t && !(!((o = O.lastChild) === null || o === void 0) && o.type.isError); )
133
+ O = O.parent;
134
+ return O.name == "Element" || O.name == "Text" || O.name == "Document" ? { type: "tag", from: t, context: O.name == "Element" ? O : C(O) } : null;
135
+ }
136
+ class ue {
137
+ constructor(t, o, O) {
138
+ this.attrs = o, this.attrValues = O, this.children = [], this.name = t.name, this.completion = Object.assign(Object.assign({ type: "type" }, t.completion || {}), { label: this.name }), this.openCompletion = Object.assign(Object.assign({}, this.completion), { label: "<" + this.name }), this.closeCompletion = Object.assign(Object.assign({}, this.completion), { label: "</" + this.name + ">", boost: 2 }), this.closeNameCompletion = Object.assign(Object.assign({}, this.completion), { label: this.name + ">" }), this.text = t.textContent ? t.textContent.map((r) => ({ label: r, type: "text" })) : [];
139
+ }
140
+ }
141
+ const b = /^[:\-\.\w\u00b7-\uffff]*$/;
142
+ function E(e) {
143
+ return Object.assign(Object.assign({ type: "property" }, e.completion || {}), { label: e.name });
144
+ }
145
+ function R(e) {
146
+ return typeof e == "string" ? { label: `"${e}"`, type: "constant" } : /^"/.test(e.label) ? e : Object.assign(Object.assign({}, e), { label: `"${e.label}"` });
147
+ }
148
+ function pe(e, t) {
149
+ let o = [], O = [], r = /* @__PURE__ */ Object.create(null);
150
+ for (let n of t) {
151
+ let m = E(n);
152
+ o.push(m), n.global && O.push(m), n.values && (r[n.name] = n.values.map(R));
153
+ }
154
+ let a = [], s = [], f = /* @__PURE__ */ Object.create(null);
155
+ for (let n of e) {
156
+ let m = O, c = r;
157
+ n.attributes && (m = m.concat(n.attributes.map((l) => typeof l == "string" ? o.find((d) => d.label == l) || { label: l, type: "property" } : (l.values && (c == r && (c = Object.create(c)), c[l.name] = l.values.map(R)), E(l)))));
158
+ let u = new ue(n, m, c);
159
+ f[u.name] = u, a.push(u), n.top && s.push(u);
160
+ }
161
+ s.length || (s = a);
162
+ for (let n = 0; n < a.length; n++) {
163
+ let m = e[n], c = a[n];
164
+ if (m.children)
165
+ for (let u of m.children)
166
+ f[u] && c.children.push(f[u]);
167
+ else
168
+ c.children = a;
169
+ }
170
+ return (n) => {
171
+ var m;
172
+ let { doc: c } = n.state, u = ge(n.state, n.pos);
173
+ if (!u || u.type == "tag" && !n.explicit)
174
+ return null;
175
+ let { type: l, from: d, context: S } = u;
176
+ if (l == "openTag") {
177
+ let i = s, $ = P(c, S);
178
+ if ($) {
179
+ let g = f[$];
180
+ i = g?.children || a;
181
+ }
182
+ return {
183
+ from: d,
184
+ options: i.map((g) => g.completion),
185
+ validFor: b
186
+ };
187
+ } else if (l == "closeTag") {
188
+ let i = P(c, S);
189
+ return i ? {
190
+ from: d,
191
+ to: n.pos + (c.sliceString(n.pos, n.pos + 1) == ">" ? 1 : 0),
192
+ options: [((m = f[i]) === null || m === void 0 ? void 0 : m.closeNameCompletion) || { label: i + ">", type: "type" }],
193
+ validFor: b
194
+ } : null;
195
+ } else if (l == "attrName") {
196
+ let i = f[T(c, S)];
197
+ return {
198
+ from: d,
199
+ options: i?.attrs || O,
200
+ validFor: b
201
+ };
202
+ } else if (l == "attrValue") {
203
+ let i = Se(c, S, d);
204
+ if (!i)
205
+ return null;
206
+ let $ = f[T(c, S)], g = ($?.attrValues || r)[i];
207
+ return !g || !g.length ? null : {
208
+ from: d,
209
+ to: n.pos + (c.sliceString(n.pos, n.pos + 1) == '"' ? 1 : 0),
210
+ options: g,
211
+ validFor: /^"[^"]*"?$/
212
+ };
213
+ } else if (l == "tag") {
214
+ let i = P(c, S), $ = f[i], g = [], q = S && S.lastChild;
215
+ i && (!q || q.name != "CloseTag" || T(c, q) != i) && g.push($ ? $.closeCompletion : { label: "</" + i + ">", type: "type", boost: 2 });
216
+ let v = g.concat(($?.children || (S ? a : s)).map((x) => x.openCompletion));
217
+ if (S && $?.text.length) {
218
+ let x = S.firstChild;
219
+ x.to > n.pos - 20 && !/\S/.test(n.state.sliceDoc(x.to, n.pos)) && (v = v.concat($.text));
220
+ }
221
+ return {
222
+ from: d,
223
+ options: v,
224
+ validFor: /^<\/?[:\-\.\w\u00b7-\uffff]*$/
225
+ };
226
+ } else
227
+ return null;
228
+ };
229
+ }
230
+ const w = /* @__PURE__ */ j.define({
231
+ name: "xml",
232
+ parser: /* @__PURE__ */ me.configure({
233
+ props: [
234
+ /* @__PURE__ */ B.add({
235
+ Element(e) {
236
+ let t = /^\s*<\//.test(e.textAfter);
237
+ return e.lineIndent(e.node.from) + (t ? 0 : e.unit);
238
+ },
239
+ "OpenTag CloseTag SelfClosingTag"(e) {
240
+ return e.column(e.node.from) + e.unit;
241
+ }
242
+ }),
243
+ /* @__PURE__ */ D.add({
244
+ Element(e) {
245
+ let t = e.firstChild, o = e.lastChild;
246
+ return !t || t.name != "OpenTag" ? null : { from: t.to, to: o.name == "CloseTag" ? o.from : e.to };
247
+ }
248
+ }),
249
+ /* @__PURE__ */ M.add({
250
+ "OpenTag CloseTag": (e) => e.getChild("TagName")
251
+ })
252
+ ]
253
+ }),
254
+ languageData: {
255
+ commentTokens: { block: { open: "<!--", close: "-->" } },
256
+ indentOnInput: /^\s*<\/$/
257
+ }
258
+ });
259
+ function qe(e = {}) {
260
+ let t = [w.data.of({
261
+ autocomplete: pe(e.elements || [], e.attributes || [])
262
+ })];
263
+ return e.autoCloseTags !== !1 && t.push(fe), new Z(w, t);
264
+ }
265
+ function z(e, t, o = e.length) {
266
+ if (!t)
267
+ return "";
268
+ let O = t.firstChild, r = O && O.getChild("TagName");
269
+ return r ? e.sliceString(r.from, Math.min(r.to, o)) : "";
270
+ }
271
+ const fe = /* @__PURE__ */ Y.inputHandler.of((e, t, o, O, r) => {
272
+ if (e.composing || e.state.readOnly || t != o || O != ">" && O != "/" || !w.isActiveAt(e.state, t, -1))
273
+ return !1;
274
+ let a = r(), { state: s } = a, f = s.changeByRange((n) => {
275
+ var m, c, u;
276
+ let { head: l } = n, d = s.doc.sliceString(l - 1, l) == O, S = k(s).resolveInner(l, -1), i;
277
+ if (d && O == ">" && S.name == "EndTag") {
278
+ let $ = S.parent;
279
+ if (((c = (m = $.parent) === null || m === void 0 ? void 0 : m.lastChild) === null || c === void 0 ? void 0 : c.name) != "CloseTag" && (i = z(s.doc, $.parent, l))) {
280
+ let g = l + (s.doc.sliceString(l, l + 1) === ">" ? 1 : 0), q = `</${i}>`;
281
+ return { range: n, changes: { from: l, to: g, insert: q } };
282
+ }
283
+ } else if (d && O == "/" && S.name == "StartCloseTag") {
284
+ let $ = S.parent;
285
+ if (S.from == l - 2 && ((u = $.lastChild) === null || u === void 0 ? void 0 : u.name) != "CloseTag" && (i = z(s.doc, $, l))) {
286
+ let g = l + (s.doc.sliceString(l, l + 1) === ">" ? 1 : 0), q = `${i}>`;
287
+ return {
288
+ range: U.cursor(l + q.length, -1),
289
+ changes: { from: l, to: g, insert: q }
290
+ };
291
+ }
292
+ }
293
+ return { range: n };
294
+ });
295
+ return f.changes.empty ? !1 : (e.dispatch([
296
+ a,
297
+ s.update(f, {
298
+ userEvent: "input.complete",
299
+ scrollIntoView: !0
300
+ })
301
+ ]), !0);
302
+ });
303
+ export {
304
+ fe as autoCloseTags,
305
+ pe as completeFromSchema,
306
+ qe as xml,
307
+ w as xmlLanguage
308
+ };