@vc-shell/framework 1.1.89 → 1.1.91-0

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 (338) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/core/api/platform.ts +9883 -9883
  3. package/core/composables/useNotifications/index.ts +32 -1
  4. package/core/composables/useUser/index.ts +74 -171
  5. package/core/composables/useUserManagement/index.ts +67 -25
  6. package/core/interceptors/index.ts +19 -56
  7. package/core/plugins/signalR/index.ts +27 -1
  8. package/core/providers/README.md +176 -0
  9. package/core/providers/auth-provider-manager.ts +74 -0
  10. package/core/providers/auth-provider-utils.ts +26 -0
  11. package/core/providers/example-custom-auth-provider.ts +161 -0
  12. package/core/providers/index.ts +3 -0
  13. package/core/providers/platform-auth-provider.ts +205 -0
  14. package/core/types/auth-provider.ts +45 -0
  15. package/core/types/index.ts +2 -0
  16. package/dist/core/api/platform.d.ts +1 -1
  17. package/dist/core/api/platform.d.ts.map +1 -1
  18. package/dist/core/composables/useNotifications/index.d.ts.map +1 -1
  19. package/dist/core/composables/useUser/index.d.ts +18 -9
  20. package/dist/core/composables/useUser/index.d.ts.map +1 -1
  21. package/dist/core/composables/useUserManagement/index.d.ts +7 -7
  22. package/dist/core/composables/useUserManagement/index.d.ts.map +1 -1
  23. package/dist/core/interceptors/index.d.ts +2 -1
  24. package/dist/core/interceptors/index.d.ts.map +1 -1
  25. package/dist/core/plugins/signalR/index.d.ts +2 -0
  26. package/dist/core/plugins/signalR/index.d.ts.map +1 -1
  27. package/dist/core/providers/auth-provider-manager.d.ts +34 -0
  28. package/dist/core/providers/auth-provider-manager.d.ts.map +1 -0
  29. package/dist/core/providers/auth-provider-utils.d.ts +17 -0
  30. package/dist/core/providers/auth-provider-utils.d.ts.map +1 -0
  31. package/dist/core/providers/example-custom-auth-provider.d.ts +45 -0
  32. package/dist/core/providers/example-custom-auth-provider.d.ts.map +1 -0
  33. package/dist/core/providers/index.d.ts +3 -0
  34. package/dist/core/providers/index.d.ts.map +1 -0
  35. package/dist/core/providers/platform-auth-provider.d.ts +34 -0
  36. package/dist/core/providers/platform-auth-provider.d.ts.map +1 -0
  37. package/dist/core/types/auth-provider.d.ts +27 -0
  38. package/dist/core/types/auth-provider.d.ts.map +1 -0
  39. package/dist/core/types/index.d.ts +1 -1
  40. package/dist/core/types/index.d.ts.map +1 -1
  41. package/dist/index.d.ts +8 -0
  42. package/dist/index.d.ts.map +1 -1
  43. package/dist/injection-keys.d.ts +2 -1
  44. package/dist/injection-keys.d.ts.map +1 -1
  45. package/dist/shared/components/app-switcher/composables/useAppSwitcher/index.d.ts.map +1 -1
  46. package/dist/shared/components/multilanguage-selector/multilanguage-selector.vue.d.ts +1 -1
  47. package/dist/shared/components/notifications/components/notification-container/index.d.ts +10 -10
  48. package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
  49. package/dist/shared/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts +2 -2
  50. package/dist/shared/modules/dynamic/helpers/nodeBuilder.d.ts.map +1 -1
  51. package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +2 -2
  52. package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +2 -2
  53. package/dist/shared/pages/InvitePage/components/invite/Invite.vue.d.ts +1 -1
  54. package/dist/shared/pages/InvitePage/components/invite/Invite.vue.d.ts.map +1 -1
  55. package/dist/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts +1 -1
  56. package/dist/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts.map +1 -1
  57. package/dist/tsconfig.tsbuildinfo +1 -1
  58. package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts +1 -1
  59. package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts.map +1 -1
  60. package/dist/ui/components/atoms/vc-container/vc-container.vue.d.ts +2 -2
  61. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts +1 -1
  62. package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
  63. package/dist/ui/components/atoms/vc-progress/vc-progress.vue.d.ts +1 -1
  64. package/dist/ui/components/atoms/vc-progress/vc-progress.vue.d.ts.map +1 -1
  65. package/dist/ui/components/molecules/vc-editor/_internal/vc-editor-button.vue.d.ts +1 -1
  66. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.vue.d.ts +2 -2
  67. package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.vue.d.ts.map +1 -1
  68. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts +1 -1
  69. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
  70. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +1 -1
  71. package/dist/ui/components/molecules/vc-rating/vc-rating.vue.d.ts +1 -1
  72. package/dist/ui/components/molecules/vc-rating/vc-rating.vue.d.ts.map +1 -1
  73. package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts +1 -1
  74. 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
  75. package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts.map +1 -1
  76. 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 +1 -1
  77. 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 +1 -1
  78. 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 -1
  79. 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 +1 -1
  80. 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 -1
  81. package/dist/ui/components/organisms/vc-blade/vc-blade.backupsb.d.ts +3 -3
  82. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +1 -1
  83. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
  84. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts +2 -2
  85. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue.d.ts +1 -1
  86. package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue.d.ts.map +1 -1
  87. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +5 -5
  88. package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts.map +1 -1
  89. package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts +1 -1
  90. package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts.map +1 -1
  91. package/dist/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue.d.ts +1 -1
  92. package/dist/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue.d.ts.map +1 -1
  93. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts +2 -2
  94. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +2 -2
  95. package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +3 -3
  96. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +1 -1
  97. package/package.json +7 -5
  98. package/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +2 -2
  99. package/shared/components/app-switcher/composables/useAppSwitcher/index.ts +15 -1
  100. package/shared/modules/dynamic/helpers/nodeBuilder.ts +11 -3
  101. package/ui/components/organisms/vc-app/vc-app.vue +20 -2
  102. package/dist/assets/042c75b764bc78a7.svg +0 -1
  103. package/dist/assets/0ba156439a339f2a.svg +0 -1
  104. package/dist/assets/0be560bfb22d0e72.woff2 +0 -0
  105. package/dist/assets/0f590f8a94577092.svg +0 -1
  106. package/dist/assets/0fc5820f8be53a1b.svg +0 -1
  107. package/dist/assets/105efd028edc1dfe.woff +0 -0
  108. package/dist/assets/10768e2cc79fc60b.svg +0 -1
  109. package/dist/assets/11b3d25a56fd9a21.woff2 +0 -0
  110. package/dist/assets/154365acf3010d96.woff2 +0 -0
  111. package/dist/assets/157b8721e0600ea8.svg +0 -1
  112. package/dist/assets/15e91cdd649cde9a.svg +0 -1
  113. package/dist/assets/19275e398ae57130.woff2 +0 -0
  114. package/dist/assets/1a3e84b2457f709a.woff +0 -0
  115. package/dist/assets/1de63eb118636cce.svg +0 -1
  116. package/dist/assets/1ea01de36eb5491b.svg +0 -1
  117. package/dist/assets/204eaf512fde2023.svg +0 -1
  118. package/dist/assets/2088983edf42e153.svg +0 -1
  119. package/dist/assets/208f810a9321a327.svg +0 -1
  120. package/dist/assets/21220a9d10e6c558.svg +0 -1
  121. package/dist/assets/220db345a102045d.woff2 +0 -0
  122. package/dist/assets/225da11d23968333.svg +0 -1
  123. package/dist/assets/226f862dd81bdc13.woff2 +0 -0
  124. package/dist/assets/23a2d53395ddb14f.woff +0 -0
  125. package/dist/assets/259e6ad461a52ad7.svg +0 -1
  126. package/dist/assets/261e6dec4d53b9ac.woff +0 -0
  127. package/dist/assets/262f46a0b6d94bb6.svg +0 -1
  128. package/dist/assets/2857c513073467da.svg +0 -1
  129. package/dist/assets/2b3be7889467d98f.woff +0 -0
  130. package/dist/assets/2d4e6190eec72737.svg +0 -1
  131. package/dist/assets/2eba973185078bc8.woff +0 -0
  132. package/dist/assets/334d3f6bc766c516.woff +0 -0
  133. package/dist/assets/34ff7dd0c2285956.svg +0 -1
  134. package/dist/assets/3d26b7c1ab78bbe2.woff +0 -0
  135. package/dist/assets/3d892965ab4f1cbb.woff2 +0 -0
  136. package/dist/assets/3f8c4cc8099e34b6.woff2 +0 -0
  137. package/dist/assets/40a0e53b79ce63c6.woff2 +0 -0
  138. package/dist/assets/41275bcb979cb650.svg +0 -1
  139. package/dist/assets/434f7982590e462f.woff +0 -0
  140. package/dist/assets/475937116ee3314a.woff2 +0 -0
  141. package/dist/assets/489710fb710e73f0.woff +0 -0
  142. package/dist/assets/49791943b3872376.woff2 +0 -0
  143. package/dist/assets/4ae5f23e0ca888e7.woff2 +0 -0
  144. package/dist/assets/4d7a77b0e5373992.svg +0 -1
  145. package/dist/assets/4e43c74354534fb3.svg +0 -1
  146. package/dist/assets/4fe75f5117100705.svg +0 -1
  147. package/dist/assets/52e261a005074e1b.woff +0 -0
  148. package/dist/assets/5304c3d05a5f9789.woff2 +0 -0
  149. package/dist/assets/54cda5482c6c9218.woff +0 -0
  150. package/dist/assets/550f52072e8ccafe.woff2 +0 -0
  151. package/dist/assets/572bb1bb4156a9c1.svg +0 -1
  152. package/dist/assets/6075995d7e74da46.woff2 +0 -0
  153. package/dist/assets/617c4736236e199e.woff +0 -0
  154. package/dist/assets/67230f05dc94a265.svg +0 -1
  155. package/dist/assets/6798e4dd4add9b48.svg +0 -1
  156. package/dist/assets/686d4077c1e26876.woff2 +0 -0
  157. package/dist/assets/698ec6c722d4cb05.woff2 +0 -0
  158. package/dist/assets/6a3e73faf406cf33.svg +0 -1
  159. package/dist/assets/72de3a63bc0b70dd.svg +0 -1
  160. package/dist/assets/74c6a6ab81bb6340.woff2 +0 -0
  161. package/dist/assets/74ed5f8a78e71106.svg +0 -1
  162. package/dist/assets/7a5aa5abd625137f.ttf +0 -0
  163. package/dist/assets/7ce0c166fd6a1204.woff +0 -0
  164. package/dist/assets/7d55399c2a7bc985.svg +0 -1
  165. package/dist/assets/7d970675c69fca1d.woff +0 -0
  166. package/dist/assets/7eda727273fd98d3.svg +0 -1
  167. package/dist/assets/7f6ebfd707b76ca2.woff +0 -0
  168. package/dist/assets/7fa898d213fcc7bc.woff2 +0 -0
  169. package/dist/assets/861e6b7192b3b6c7.woff +0 -0
  170. package/dist/assets/8bbcde81ba21ecb2.woff2 +0 -0
  171. package/dist/assets/8f6657e5e0b8d3e4.woff +0 -0
  172. package/dist/assets/910b0d99b9e26568.svg +0 -1
  173. package/dist/assets/91fe94e424323d61.woff +0 -0
  174. package/dist/assets/92508f8707159b51.svg +0 -1
  175. package/dist/assets/9392bf1d591e1abb.svg +0 -1
  176. package/dist/assets/97e8d4984ba0713a.woff2 +0 -0
  177. package/dist/assets/9cb83236f6bb7ab1.svg +0 -1
  178. package/dist/assets/9d37314695c0b68d.woff +0 -0
  179. package/dist/assets/a03cdcd8da5bb987.woff +0 -0
  180. package/dist/assets/a18404194e3f9047.svg +0 -1
  181. package/dist/assets/a2017fe7f0a26510.svg +0 -1
  182. package/dist/assets/ab6e7190bb1492d5.woff2 +0 -0
  183. package/dist/assets/abf88f301a0730f4.svg +0 -1
  184. package/dist/assets/ac1a99b3d05d8232.woff +0 -0
  185. package/dist/assets/aed17cb6fdad2ada.woff2 +0 -0
  186. package/dist/assets/b1a596e31ad1185a.svg +0 -1
  187. package/dist/assets/b27767411c8427be.woff +0 -0
  188. package/dist/assets/b325adcae33bbe7a.svg +0 -1
  189. package/dist/assets/b372390551ca2fa1.svg +0 -1
  190. package/dist/assets/b5bb1e8fc975decd.svg +0 -1
  191. package/dist/assets/b645a4a2181b9dc1.svg +0 -1
  192. package/dist/assets/b6499ddce0a4ef7d.svg +0 -1
  193. package/dist/assets/b94421fadd23b0f2.svg +0 -1
  194. package/dist/assets/bb28fb0f27f1c11b.svg +0 -1
  195. package/dist/assets/c9191b638a10f67b.woff2 +0 -0
  196. package/dist/assets/ca791c5ca5848a03.svg +0 -1
  197. package/dist/assets/cb32840ce330103f.woff +0 -0
  198. package/dist/assets/ccc878931d74181b.woff2 +0 -0
  199. package/dist/assets/d084bda16abe8a56.svg +0 -1
  200. package/dist/assets/d32b129cae2fffd6.svg +0 -1
  201. package/dist/assets/d35a4c7113315758.woff2 +0 -0
  202. package/dist/assets/d3f792f54ae4c307.svg +0 -1
  203. package/dist/assets/d5a5b8630120073d.svg +0 -1
  204. package/dist/assets/d5f9664ebbfb104b.svg +0 -1
  205. package/dist/assets/d84247b59449dd88.woff2 +0 -0
  206. package/dist/assets/dceaf3b39091e6a4.woff +0 -0
  207. package/dist/assets/dd05d43ff0df2fc7.svg +0 -1
  208. package/dist/assets/e2ad5b3428289141.woff +0 -0
  209. package/dist/assets/e38acaa1757232e0.svg +0 -1
  210. package/dist/assets/e4a8550f1c7ffe36.svg +0 -1
  211. package/dist/assets/e5adb5ae3a3698f6.svg +0 -1
  212. package/dist/assets/e61a1889bac955f4.woff2 +0 -0
  213. package/dist/assets/e72bb11356af94c7.svg +0 -1
  214. package/dist/assets/e98196a9f8dcb2f0.svg +0 -1
  215. package/dist/assets/ebec912a42ad49ff.woff +0 -0
  216. package/dist/assets/ee6983981ffcbb41.woff2 +0 -0
  217. package/dist/assets/f09d89268e4c0317.svg +0 -1
  218. package/dist/assets/f239394367fcf005.woff2 +0 -0
  219. package/dist/assets/f5722262b6e7214e.woff2 +0 -0
  220. package/dist/assets/f7fc8bf46089d8b2.svg +0 -1
  221. package/dist/assets/fc829e3f399b70e0.woff2 +0 -0
  222. package/dist/assets/fe141d99763f5d2b.woff +0 -0
  223. package/dist/assets/fed13b0d59903483.svg +0 -1
  224. package/dist/assets/fed757d2c2344ead.woff2 +0 -0
  225. package/dist/assets/ffc438f20e79ce73.woff +0 -0
  226. package/dist/framework.js +0 -24766
  227. package/dist/index.css +0 -9
  228. package/dist/vendor-boolbase-A_-Pp38P.js +0 -23
  229. package/dist/vendor-cheerio-C46iBpCu.js +0 -1053
  230. package/dist/vendor-cheerio-select-C8emRZsx.js +0 -191
  231. package/dist/vendor-core-js-azBmvlGv.js +0 -1206
  232. package/dist/vendor-css-select-DR9bp36p.js +0 -622
  233. package/dist/vendor-css-what-CZZaquJM.js +0 -267
  234. package/dist/vendor-cypress-signalr-mock-DjBxJHA6.js +0 -769
  235. package/dist/vendor-date-fns-sZ1zMzTH.js +0 -3008
  236. package/dist/vendor-dom-serializer-Sk3xHhQk.js +0 -213
  237. package/dist/vendor-domelementtype-B3sFIGaC.js +0 -21
  238. package/dist/vendor-domhandler-CL40eeX9.js +0 -311
  239. package/dist/vendor-dompurify-C-JbJ3KX.js +0 -536
  240. package/dist/vendor-domutils-BiVCXO8c.js +0 -386
  241. package/dist/vendor-entities-CCReaWqU.js +0 -364
  242. package/dist/vendor-floating-ui-core-Cl9nBI4j.js +0 -349
  243. package/dist/vendor-floating-ui-dom-3z44E4mf.js +0 -395
  244. package/dist/vendor-floating-ui-utils-D2sT7feD.js +0 -259
  245. package/dist/vendor-floating-ui-vue-ClrgkeO5.js +0 -107
  246. package/dist/vendor-headlessui-vue-D7tzx4PC.js +0 -961
  247. package/dist/vendor-htmlparser2-CpQu33io.js +0 -735
  248. package/dist/vendor-intlify-core-base-Da62SG4M.js +0 -1130
  249. package/dist/vendor-intlify-message-compiler-CHvGSH2u.js +0 -952
  250. package/dist/vendor-intlify-shared-jWBPd9WB.js +0 -144
  251. package/dist/vendor-iso-639-1-BJO6WZAt.js +0 -781
  252. package/dist/vendor-linkify-it-LzoUhj6C.js +0 -199
  253. package/dist/vendor-linkifyjs-dCH9UYes.js +0 -701
  254. package/dist/vendor-lodash-es-BqkGj3Jl.js +0 -4816
  255. package/dist/vendor-lucide-vue-next-m0L4DzUL.js +0 -29780
  256. package/dist/vendor-markdown-it-Czg9qJTh.js +0 -2263
  257. package/dist/vendor-markdown-it-task-lists-BxLwscWK.js +0 -69
  258. package/dist/vendor-mdurl-DZFDNdqC.js +0 -192
  259. package/dist/vendor-microsoft-applicationinsights-analytics-js-BNSkz9ia.js +0 -1105
  260. package/dist/vendor-microsoft-applicationinsights-cfgsync-js-Dp8OU6ZE.js +0 -261
  261. package/dist/vendor-microsoft-applicationinsights-channel-js-Bc73N-5y.js +0 -1809
  262. package/dist/vendor-microsoft-applicationinsights-common-DcnOqpgL.js +0 -1921
  263. package/dist/vendor-microsoft-applicationinsights-core-js-CX4NA2hM.js +0 -4127
  264. package/dist/vendor-microsoft-applicationinsights-dependencies-js-C_DhEOae.js +0 -1399
  265. package/dist/vendor-microsoft-applicationinsights-properties-js-COczDd7b.js +0 -572
  266. package/dist/vendor-microsoft-applicationinsights-shims-CxtPYiwp.js +0 -43
  267. package/dist/vendor-microsoft-applicationinsights-web-DtOQojwf.js +0 -487
  268. package/dist/vendor-microsoft-dynamicproto-js-DSkQkH3T.js +0 -147
  269. package/dist/vendor-microsoft-signalr-Bgpbb4fW.js +0 -1761
  270. package/dist/vendor-moment-DMLRxgRE.js +0 -2589
  271. package/dist/vendor-nevware21-ts-async-DFUnZ_sN.js +0 -260
  272. package/dist/vendor-nevware21-ts-utils-Dy41wRhA.js +0 -853
  273. package/dist/vendor-nth-check-CS1D-zr5.js +0 -45
  274. package/dist/vendor-orderedmap-B3SOk52B.js +0 -103
  275. package/dist/vendor-parse5-htmlparser2-tree-adapter-BWywtwol.js +0 -143
  276. package/dist/vendor-parse5-zq5Hn0y9.js +0 -5749
  277. package/dist/vendor-prettier-cZc5sCiS.js +0 -4875
  278. package/dist/vendor-prosemirror-commands-DlSOsoOz.js +0 -385
  279. package/dist/vendor-prosemirror-dropcursor-CqLA3EZY.js +0 -86
  280. package/dist/vendor-prosemirror-gapcursor-3PaVPyUV.js +0 -200
  281. package/dist/vendor-prosemirror-history-DzP74u0n.js +0 -248
  282. package/dist/vendor-prosemirror-keymap-CN6Hkrq2.js +0 -62
  283. package/dist/vendor-prosemirror-markdown-BBPyARPh.js +0 -650
  284. package/dist/vendor-prosemirror-model-CiCy9gkA.js +0 -2722
  285. package/dist/vendor-prosemirror-schema-list-asS28-n3.js +0 -87
  286. package/dist/vendor-prosemirror-state-DUZYoLys.js +0 -821
  287. package/dist/vendor-prosemirror-tables-CezTPhzU.js +0 -1711
  288. package/dist/vendor-prosemirror-transform-BOkRqJ32.js +0 -1508
  289. package/dist/vendor-prosemirror-view-CzsD5m3e.js +0 -3750
  290. package/dist/vendor-punycode-js-CgGegfA_.js +0 -133
  291. package/dist/vendor-rope-sequence-BWC2FSrq.js +0 -100
  292. package/dist/vendor-semver-B87_S22g.js +0 -1021
  293. package/dist/vendor-swiper-1bp0oJwt.js +0 -3387
  294. package/dist/vendor-tanstack-virtual-core-l0sNRNKZ.js +0 -1
  295. package/dist/vendor-tanstack-vue-virtual-CD9yLWd7.js +0 -1
  296. package/dist/vendor-tiptap-core-rgc3Sj5Y.js +0 -3104
  297. package/dist/vendor-tiptap-extension-blockquote-DgzMeNpc.js +0 -41
  298. package/dist/vendor-tiptap-extension-bold-DZbX5Qiw.js +0 -71
  299. package/dist/vendor-tiptap-extension-code-BcakHaXe.js +0 -49
  300. package/dist/vendor-tiptap-extension-code-block-B0U7g1XA.js +0 -192
  301. package/dist/vendor-tiptap-extension-document-BBhadLNS.js +0 -9
  302. package/dist/vendor-tiptap-extension-hard-break-eyl10A9U.js +0 -53
  303. package/dist/vendor-tiptap-extension-heading-BmX_Abvh.js +0 -57
  304. package/dist/vendor-tiptap-extension-horizontal-rule-DyYIWV6W.js +0 -53
  305. package/dist/vendor-tiptap-extension-image-C06iDyEi.js +0 -70
  306. package/dist/vendor-tiptap-extension-italic-B2YDHBEe.js +0 -70
  307. package/dist/vendor-tiptap-extension-link-Bw8_3Rr4.js +0 -287
  308. package/dist/vendor-tiptap-extension-list-qHzpj6eq.js +0 -420
  309. package/dist/vendor-tiptap-extension-paragraph-BnCRfXCL.js +0 -31
  310. package/dist/vendor-tiptap-extension-placeholder-BVZ1jBA2.js +0 -1
  311. package/dist/vendor-tiptap-extension-strike-Naksm43m.js +0 -61
  312. package/dist/vendor-tiptap-extension-table-Cguez3tu.js +0 -302
  313. package/dist/vendor-tiptap-extension-table-cell-lniviH1T.js +0 -1
  314. package/dist/vendor-tiptap-extension-table-header-lniviH1T.js +0 -1
  315. package/dist/vendor-tiptap-extension-table-row-lniviH1T.js +0 -1
  316. package/dist/vendor-tiptap-extension-text-CixjyWfN.js +0 -8
  317. package/dist/vendor-tiptap-extension-text-style-CVsjuWJ4.js +0 -230
  318. package/dist/vendor-tiptap-extension-underline-Rwkvga0F.js +0 -40
  319. package/dist/vendor-tiptap-extensions-F9A02hii.js +0 -289
  320. package/dist/vendor-tiptap-markdown-BSUpswXr.js +0 -826
  321. package/dist/vendor-tiptap-pm-BUxx7nt1.js +0 -1
  322. package/dist/vendor-tiptap-starter-kit-BUgq7S1_.js +0 -28
  323. package/dist/vendor-tiptap-vue-3-UHrHfZLG.js +0 -157
  324. package/dist/vendor-truncate-html-DYC0Lj9o.js +0 -145
  325. package/dist/vendor-uc-micro-4lbSaZOs.js +0 -17
  326. package/dist/vendor-vee-validate-i18n-zT8NxX3R.js +0 -93
  327. package/dist/vendor-vee-validate-rules-4oWUZPpG.js +0 -316
  328. package/dist/vendor-vue-currency-input-BqaYAdhD.js +0 -317
  329. package/dist/vendor-vue-demi-CD9yLWd7.js +0 -1
  330. package/dist/vendor-vue-devtools-api-aVYGocXp.js +0 -93
  331. package/dist/vendor-vue-i18n-CO5LWKE0.js +0 -1370
  332. package/dist/vendor-vue3-application-insights-CE6eo4vj.js +0 -69
  333. package/dist/vendor-vue3-touch-events-DqysuuWh.js +0 -169
  334. package/dist/vendor-vuepic-vue-datepicker-Chx5s5I-.js +0 -5116
  335. package/dist/vendor-vueuse-components-B0zqjNRW.js +0 -542
  336. package/dist/vendor-vueuse-core-CYgwn-B2.js +0 -5130
  337. package/dist/vendor-vueuse-shared-B_uDJJ6V.js +0 -1169
  338. package/dist/vendor-w3c-keyname-CLxH8j-f.js +0 -92
@@ -1,769 +0,0 @@
1
- var B = Object.defineProperty, G = (e, t, r) => t in e ? B(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r, h = (e, t, r) => (G(e, typeof t != "symbol" ? t + "" : t, r), r);
2
- class c {
3
- static debug(t) {
4
- this._logLevel >= 4 && console.debug(this._prefix + t);
5
- }
6
- static info(t, r = void 0) {
7
- this._logLevel >= 3 && console.info(this._prefix + t, r);
8
- }
9
- static warn(t) {
10
- this._logLevel >= 1 && console.warn(this._prefix + t);
11
- }
12
- static error(t, r = !0) {
13
- if (this._logLevel >= 0) {
14
- if (r)
15
- throw new Error(this._prefix + t);
16
- console.error(this._prefix + t);
17
- }
18
- }
19
- static setLogLevel(t) {
20
- this._logLevel = t;
21
- }
22
- }
23
- h(c, "_prefix", "[Cypress-SignalR-Mock] - "), h(c, "_logLevel", 3);
24
- var C = function(e, t) {
25
- return C = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, n) {
26
- r.__proto__ = n;
27
- } || function(r, n) {
28
- for (var o in n)
29
- Object.prototype.hasOwnProperty.call(n, o) && (r[o] = n[o]);
30
- }, C(e, t);
31
- };
32
- function y(e, t) {
33
- if (typeof t != "function" && t !== null)
34
- throw new TypeError("Class extends value " + String(t) + " is not a constructor or null");
35
- C(e, t);
36
- function r() {
37
- this.constructor = e;
38
- }
39
- e.prototype = t === null ? Object.create(t) : (r.prototype = t.prototype, new r());
40
- }
41
- function S(e) {
42
- var t = typeof Symbol == "function" && Symbol.iterator, r = t && e[t], n = 0;
43
- if (r)
44
- return r.call(e);
45
- if (e && typeof e.length == "number")
46
- return {
47
- next: function() {
48
- return e && n >= e.length && (e = void 0), { value: e && e[n++], done: !e };
49
- }
50
- };
51
- throw new TypeError(t ? "Object is not iterable." : "Symbol.iterator is not defined.");
52
- }
53
- function x(e, t) {
54
- var r = typeof Symbol == "function" && e[Symbol.iterator];
55
- if (!r)
56
- return e;
57
- var n = r.call(e), o, i = [], s;
58
- try {
59
- for (; (t === void 0 || t-- > 0) && !(o = n.next()).done; )
60
- i.push(o.value);
61
- } catch (u) {
62
- s = { error: u };
63
- } finally {
64
- try {
65
- o && !o.done && (r = n.return) && r.call(n);
66
- } finally {
67
- if (s)
68
- throw s.error;
69
- }
70
- }
71
- return i;
72
- }
73
- function O(e, t, r) {
74
- if (arguments.length === 2)
75
- for (var n = 0, o = t.length, i; n < o; n++)
76
- (i || !(n in t)) && (i || (i = Array.prototype.slice.call(t, 0, n)), i[n] = t[n]);
77
- return e.concat(i || Array.prototype.slice.call(t));
78
- }
79
- function f(e) {
80
- return typeof e == "function";
81
- }
82
- function F(e) {
83
- var t = function(n) {
84
- Error.call(n), n.stack = new Error().stack;
85
- }, r = e(t);
86
- return r.prototype = Object.create(Error.prototype), r.prototype.constructor = r, r;
87
- }
88
- var g = F(function(e) {
89
- return function(t) {
90
- e(this), this.message = t ? t.length + ` errors occurred during unsubscription:
91
- ` + t.map(function(r, n) {
92
- return n + 1 + ") " + r.toString();
93
- }).join(`
94
- `) : "", this.name = "UnsubscriptionError", this.errors = t;
95
- };
96
- });
97
- function P(e, t) {
98
- if (e) {
99
- var r = e.indexOf(t);
100
- 0 <= r && e.splice(r, 1);
101
- }
102
- }
103
- var m = (function() {
104
- function e(t) {
105
- this.initialTeardown = t, this.closed = !1, this._parentage = null, this._finalizers = null;
106
- }
107
- return e.prototype.unsubscribe = function() {
108
- var t, r, n, o, i;
109
- if (!this.closed) {
110
- this.closed = !0;
111
- var s = this._parentage;
112
- if (s)
113
- if (this._parentage = null, Array.isArray(s))
114
- try {
115
- for (var u = S(s), a = u.next(); !a.done; a = u.next()) {
116
- var w = a.value;
117
- w.remove(this);
118
- }
119
- } catch (l) {
120
- t = { error: l };
121
- } finally {
122
- try {
123
- a && !a.done && (r = u.return) && r.call(u);
124
- } finally {
125
- if (t)
126
- throw t.error;
127
- }
128
- }
129
- else
130
- s.remove(this);
131
- var j = this.initialTeardown;
132
- if (f(j))
133
- try {
134
- j();
135
- } catch (l) {
136
- i = l instanceof g ? l.errors : [l];
137
- }
138
- var D = this._finalizers;
139
- if (D) {
140
- this._finalizers = null;
141
- try {
142
- for (var b = S(D), p = b.next(); !p.done; p = b.next()) {
143
- var q = p.value;
144
- try {
145
- L(q);
146
- } catch (l) {
147
- i = i ?? [], l instanceof g ? i = O(O([], x(i)), x(l.errors)) : i.push(l);
148
- }
149
- }
150
- } catch (l) {
151
- n = { error: l };
152
- } finally {
153
- try {
154
- p && !p.done && (o = b.return) && o.call(b);
155
- } finally {
156
- if (n)
157
- throw n.error;
158
- }
159
- }
160
- }
161
- if (i)
162
- throw new g(i);
163
- }
164
- }, e.prototype.add = function(t) {
165
- var r;
166
- if (t && t !== this)
167
- if (this.closed)
168
- L(t);
169
- else {
170
- if (t instanceof e) {
171
- if (t.closed || t._hasParent(this))
172
- return;
173
- t._addParent(this);
174
- }
175
- (this._finalizers = (r = this._finalizers) !== null && r !== void 0 ? r : []).push(t);
176
- }
177
- }, e.prototype._hasParent = function(t) {
178
- var r = this._parentage;
179
- return r === t || Array.isArray(r) && r.includes(t);
180
- }, e.prototype._addParent = function(t) {
181
- var r = this._parentage;
182
- this._parentage = Array.isArray(r) ? (r.push(t), r) : r ? [r, t] : t;
183
- }, e.prototype._removeParent = function(t) {
184
- var r = this._parentage;
185
- r === t ? this._parentage = null : Array.isArray(r) && P(r, t);
186
- }, e.prototype.remove = function(t) {
187
- var r = this._finalizers;
188
- r && P(r, t), t instanceof e && t._removeParent(this);
189
- }, e.EMPTY = (function() {
190
- var t = new e();
191
- return t.closed = !0, t;
192
- })(), e;
193
- })(), M = m.EMPTY;
194
- function R(e) {
195
- return e instanceof m || e && "closed" in e && f(e.remove) && f(e.add) && f(e.unsubscribe);
196
- }
197
- function L(e) {
198
- f(e) ? e() : e.unsubscribe();
199
- }
200
- var J = {
201
- Promise: void 0
202
- }, K = {
203
- setTimeout: function(e, t) {
204
- for (var r = [], n = 2; n < arguments.length; n++)
205
- r[n - 2] = arguments[n];
206
- return setTimeout.apply(void 0, O([e, t], x(r)));
207
- },
208
- clearTimeout: function(e) {
209
- return clearTimeout(e);
210
- },
211
- delegate: void 0
212
- };
213
- function W(e) {
214
- K.setTimeout(function() {
215
- throw e;
216
- });
217
- }
218
- function A() {
219
- }
220
- function v(e) {
221
- e();
222
- }
223
- var H = (function(e) {
224
- y(t, e);
225
- function t(r) {
226
- var n = e.call(this) || this;
227
- return n.isStopped = !1, r ? (n.destination = r, R(r) && r.add(n)) : n.destination = Q, n;
228
- }
229
- return t.create = function(r, n, o) {
230
- return new k(r, n, o);
231
- }, t.prototype.next = function(r) {
232
- this.isStopped || this._next(r);
233
- }, t.prototype.error = function(r) {
234
- this.isStopped || (this.isStopped = !0, this._error(r));
235
- }, t.prototype.complete = function() {
236
- this.isStopped || (this.isStopped = !0, this._complete());
237
- }, t.prototype.unsubscribe = function() {
238
- this.closed || (this.isStopped = !0, e.prototype.unsubscribe.call(this), this.destination = null);
239
- }, t.prototype._next = function(r) {
240
- this.destination.next(r);
241
- }, t.prototype._error = function(r) {
242
- try {
243
- this.destination.error(r);
244
- } finally {
245
- this.unsubscribe();
246
- }
247
- }, t.prototype._complete = function() {
248
- try {
249
- this.destination.complete();
250
- } finally {
251
- this.unsubscribe();
252
- }
253
- }, t;
254
- })(m), X = (function() {
255
- function e(t) {
256
- this.partialObserver = t;
257
- }
258
- return e.prototype.next = function(t) {
259
- var r = this.partialObserver;
260
- if (r.next)
261
- try {
262
- r.next(t);
263
- } catch (n) {
264
- d(n);
265
- }
266
- }, e.prototype.error = function(t) {
267
- var r = this.partialObserver;
268
- if (r.error)
269
- try {
270
- r.error(t);
271
- } catch (n) {
272
- d(n);
273
- }
274
- else
275
- d(t);
276
- }, e.prototype.complete = function() {
277
- var t = this.partialObserver;
278
- if (t.complete)
279
- try {
280
- t.complete();
281
- } catch (r) {
282
- d(r);
283
- }
284
- }, e;
285
- })(), k = (function(e) {
286
- y(t, e);
287
- function t(r, n, o) {
288
- var i = e.call(this) || this, s;
289
- return f(r) || !r ? s = {
290
- next: r ?? void 0,
291
- error: n ?? void 0,
292
- complete: o ?? void 0
293
- } : s = r, i.destination = new X(s), i;
294
- }
295
- return t;
296
- })(H);
297
- function d(e) {
298
- W(e);
299
- }
300
- function Z(e) {
301
- throw e;
302
- }
303
- var Q = {
304
- closed: !0,
305
- next: A,
306
- error: Z,
307
- complete: A
308
- }, tt = (function() {
309
- return typeof Symbol == "function" && Symbol.observable || "@@observable";
310
- })();
311
- function rt(e) {
312
- return e;
313
- }
314
- function et(e) {
315
- return e.length === 0 ? rt : e.length === 1 ? e[0] : function(t) {
316
- return e.reduce(function(r, n) {
317
- return n(r);
318
- }, t);
319
- };
320
- }
321
- var I = (function() {
322
- function e(t) {
323
- t && (this._subscribe = t);
324
- }
325
- return e.prototype.lift = function(t) {
326
- var r = new e();
327
- return r.source = this, r.operator = t, r;
328
- }, e.prototype.subscribe = function(t, r, n) {
329
- var o = this, i = ot(t) ? t : new k(t, r, n);
330
- return v(function() {
331
- var s = o, u = s.operator, a = s.source;
332
- i.add(u ? u.call(i, a) : a ? o._subscribe(i) : o._trySubscribe(i));
333
- }), i;
334
- }, e.prototype._trySubscribe = function(t) {
335
- try {
336
- return this._subscribe(t);
337
- } catch (r) {
338
- t.error(r);
339
- }
340
- }, e.prototype.forEach = function(t, r) {
341
- var n = this;
342
- return r = $(r), new r(function(o, i) {
343
- var s = new k({
344
- next: function(u) {
345
- try {
346
- t(u);
347
- } catch (a) {
348
- i(a), s.unsubscribe();
349
- }
350
- },
351
- error: i,
352
- complete: o
353
- });
354
- n.subscribe(s);
355
- });
356
- }, e.prototype._subscribe = function(t) {
357
- var r;
358
- return (r = this.source) === null || r === void 0 ? void 0 : r.subscribe(t);
359
- }, e.prototype[tt] = function() {
360
- return this;
361
- }, e.prototype.pipe = function() {
362
- for (var t = [], r = 0; r < arguments.length; r++)
363
- t[r] = arguments[r];
364
- return et(t)(this);
365
- }, e.prototype.toPromise = function(t) {
366
- var r = this;
367
- return t = $(t), new t(function(n, o) {
368
- var i;
369
- r.subscribe(function(s) {
370
- return i = s;
371
- }, function(s) {
372
- return o(s);
373
- }, function() {
374
- return n(i);
375
- });
376
- });
377
- }, e.create = function(t) {
378
- return new e(t);
379
- }, e;
380
- })();
381
- function $(e) {
382
- var t;
383
- return (t = e ?? J.Promise) !== null && t !== void 0 ? t : Promise;
384
- }
385
- function nt(e) {
386
- return e && f(e.next) && f(e.error) && f(e.complete);
387
- }
388
- function ot(e) {
389
- return e && e instanceof H || nt(e) && R(e);
390
- }
391
- var it = F(function(e) {
392
- return function() {
393
- e(this), this.name = "ObjectUnsubscribedError", this.message = "object unsubscribed";
394
- };
395
- }), T = (function(e) {
396
- y(t, e);
397
- function t() {
398
- var r = e.call(this) || this;
399
- return r.closed = !1, r.currentObservers = null, r.observers = [], r.isStopped = !1, r.hasError = !1, r.thrownError = null, r;
400
- }
401
- return t.prototype.lift = function(r) {
402
- var n = new z(this, this);
403
- return n.operator = r, n;
404
- }, t.prototype._throwIfClosed = function() {
405
- if (this.closed)
406
- throw new it();
407
- }, t.prototype.next = function(r) {
408
- var n = this;
409
- v(function() {
410
- var o, i;
411
- if (n._throwIfClosed(), !n.isStopped) {
412
- n.currentObservers || (n.currentObservers = Array.from(n.observers));
413
- try {
414
- for (var s = S(n.currentObservers), u = s.next(); !u.done; u = s.next()) {
415
- var a = u.value;
416
- a.next(r);
417
- }
418
- } catch (w) {
419
- o = { error: w };
420
- } finally {
421
- try {
422
- u && !u.done && (i = s.return) && i.call(s);
423
- } finally {
424
- if (o)
425
- throw o.error;
426
- }
427
- }
428
- }
429
- });
430
- }, t.prototype.error = function(r) {
431
- var n = this;
432
- v(function() {
433
- if (n._throwIfClosed(), !n.isStopped) {
434
- n.hasError = n.isStopped = !0, n.thrownError = r;
435
- for (var o = n.observers; o.length; )
436
- o.shift().error(r);
437
- }
438
- });
439
- }, t.prototype.complete = function() {
440
- var r = this;
441
- v(function() {
442
- if (r._throwIfClosed(), !r.isStopped) {
443
- r.isStopped = !0;
444
- for (var n = r.observers; n.length; )
445
- n.shift().complete();
446
- }
447
- });
448
- }, t.prototype.unsubscribe = function() {
449
- this.isStopped = this.closed = !0, this.observers = this.currentObservers = null;
450
- }, Object.defineProperty(t.prototype, "observed", {
451
- get: function() {
452
- var r;
453
- return ((r = this.observers) === null || r === void 0 ? void 0 : r.length) > 0;
454
- },
455
- enumerable: !1,
456
- configurable: !0
457
- }), t.prototype._trySubscribe = function(r) {
458
- return this._throwIfClosed(), e.prototype._trySubscribe.call(this, r);
459
- }, t.prototype._subscribe = function(r) {
460
- return this._throwIfClosed(), this._checkFinalizedStatuses(r), this._innerSubscribe(r);
461
- }, t.prototype._innerSubscribe = function(r) {
462
- var n = this, o = this, i = o.hasError, s = o.isStopped, u = o.observers;
463
- return i || s ? M : (this.currentObservers = null, u.push(r), new m(function() {
464
- n.currentObservers = null, P(u, r);
465
- }));
466
- }, t.prototype._checkFinalizedStatuses = function(r) {
467
- var n = this, o = n.hasError, i = n.thrownError, s = n.isStopped;
468
- o ? r.error(i) : s && r.complete();
469
- }, t.prototype.asObservable = function() {
470
- var r = new I();
471
- return r.source = this, r;
472
- }, t.create = function(r, n) {
473
- return new z(r, n);
474
- }, t;
475
- })(I), z = (function(e) {
476
- y(t, e);
477
- function t(r, n) {
478
- var o = e.call(this) || this;
479
- return o.destination = r, o.source = n, o;
480
- }
481
- return t.prototype.next = function(r) {
482
- var n, o;
483
- (o = (n = this.destination) === null || n === void 0 ? void 0 : n.next) === null || o === void 0 || o.call(n, r);
484
- }, t.prototype.error = function(r) {
485
- var n, o;
486
- (o = (n = this.destination) === null || n === void 0 ? void 0 : n.error) === null || o === void 0 || o.call(n, r);
487
- }, t.prototype.complete = function() {
488
- var r, n;
489
- (n = (r = this.destination) === null || r === void 0 ? void 0 : r.complete) === null || n === void 0 || n.call(r);
490
- }, t.prototype._subscribe = function(r) {
491
- var n, o;
492
- return (o = (n = this.source) === null || n === void 0 ? void 0 : n.subscribe(r)) !== null && o !== void 0 ? o : M;
493
- }, t;
494
- })(T);
495
- class st {
496
- constructor(t, r) {
497
- this._subject = t, this._observer = r;
498
- }
499
- dispose() {
500
- const t = this._subject.observers.indexOf(this._observer);
501
- t > -1 && this._subject.observers.splice(t, 1), this._subject.observers.length === 0 && this._subject.cancelCallback && this._subject.cancelCallback().catch((r) => {
502
- });
503
- }
504
- }
505
- class ut {
506
- constructor() {
507
- this.observers = [];
508
- }
509
- next(t) {
510
- for (const r of this.observers)
511
- r.next(t);
512
- }
513
- error(t) {
514
- for (const r of this.observers)
515
- r.error && r.error(t);
516
- }
517
- complete() {
518
- for (const t of this.observers)
519
- t.complete && t.complete();
520
- }
521
- subscribe(t) {
522
- return this.observers.push(t), new st(this, t);
523
- }
524
- }
525
- class ct {
526
- constructor(t) {
527
- h(this, "_hubConnectionData", []), h(this, "_serverInvokes", []), h(this, "name"), this.name = t;
528
- }
529
- publish(t, r) {
530
- t = t.toLowerCase();
531
- const n = this._hubConnectionData.filter(
532
- (o) => o.messageType === t
533
- );
534
- if (n.length === 0) {
535
- c.warn(`No subscribers for ${t}`);
536
- return;
537
- }
538
- c.debug(
539
- `Publishing action: ${t} to ${n.length} subscribers`
540
- ), n.forEach((o) => {
541
- o.channel.next({ name: t, value: r });
542
- });
543
- }
544
- verify(t, r) {
545
- t = t.toLowerCase();
546
- const n = this._serverInvokes.filter(
547
- (o) => o.action === t
548
- );
549
- r && r(n);
550
- }
551
- on(t, r) {
552
- t = t.toLowerCase(), this._hubConnectionData.some((i) => i.messageType === t) || this._hubConnectionData.push({
553
- messageType: t,
554
- isStream: !1,
555
- channel: new T(),
556
- subscriptions: []
557
- });
558
- let n = this._hubConnectionData.find(
559
- (i) => i.messageType === t
560
- );
561
- if (!n)
562
- throw new Error(`Could not find connection data for ${t}`);
563
- let o = n.channel.subscribe((i) => {
564
- r(i.value);
565
- });
566
- n.subscriptions.push({
567
- handler: r,
568
- subscription: o
569
- });
570
- }
571
- /** Invokes a streaming hub method on the server using the specified name and arguments.
572
- *
573
- * @typeparam T The type of the items returned by the server.
574
- * @param {string} methodName The name of the server method to invoke.
575
- * @param {any[]} args The arguments used to invoke the server method.
576
- * @returns {IStreamResult<T>} An object that yields results from the server as they are received.
577
- */
578
- // @ts-ignore
579
- stream(t, ...r) {
580
- t = t.toLowerCase(), this._hubConnectionData.some((i) => i.messageType === t) || this._hubConnectionData.push({
581
- messageType: t,
582
- isStream: !0,
583
- channel: new T(),
584
- subscriptions: []
585
- });
586
- let n = this._hubConnectionData.find(
587
- (i) => i.messageType === t
588
- );
589
- if (!n)
590
- throw new Error(`Could not find connection data for ${t}`);
591
- const o = new ut();
592
- return n.channel.subscribe({
593
- next: (i) => o.next(i),
594
- error: (i) => o.error(i),
595
- complete: () => o.complete()
596
- }), o;
597
- }
598
- /** Invokes a hub method on the server using the specified name and arguments.
599
- *
600
- * The Promise returned by this method resolves when the server indicates it has finished invoking the method. When the promise
601
- * resolves, the server has finished invoking the method. If the server method returns a result, it is produced as the result of
602
- * resolving the Promise.
603
- *
604
- * @typeparam T The expected return type.
605
- * @param {string} methodName The name of the server method to invoke.
606
- * @param {any[]} args The arguments used to invoke the server method.
607
- * @returns {Promise<T>} A Promise that resolves with the result of the server method (if any), or rejects with an error.
608
- */
609
- invoke(t, ...r) {
610
- return new Promise((n) => {
611
- this._serverInvokes.push({
612
- action: t,
613
- args: r
614
- }), n(0);
615
- });
616
- }
617
- off(t, r) {
618
- t = t.toLowerCase();
619
- const n = this._hubConnectionData.findIndex(
620
- (o) => o.messageType === t
621
- );
622
- if (n == -1) {
623
- c.warn(`No channels registered for action name: ${t}`);
624
- return;
625
- }
626
- if (r) {
627
- const o = this._hubConnectionData[n].subscriptions.findIndex((i) => i.handler === r);
628
- if (o == -1) {
629
- c.warn(
630
- `Could not find the handler to delete for action name: ${t}`
631
- );
632
- return;
633
- }
634
- this._hubConnectionData[n].subscriptions.splice(o, 1), this._hubConnectionData[n].subscriptions.length === 0 && this._hubConnectionData.splice(n, 1);
635
- } else
636
- this._hubConnectionData.splice(n, 1);
637
- }
638
- /** Registers a handler that will be invoked when the connection is closed.
639
- *
640
- * @param {Function} callback The handler that will be invoked when the connection is closed. Optionally receives a single argument containing the error that caused the connection to close (if any).
641
- */
642
- // @ts-ignore
643
- onclose(t) {
644
- }
645
- /** Starts the connection.
646
- *
647
- * @returns {Promise<void>} A Promise that resolves when the connection has been successfully established, or rejects with an error.
648
- */
649
- start() {
650
- return Promise.resolve();
651
- }
652
- /** Stops the connection.
653
- *
654
- * @returns {Promise<void>} A Promise that resolves when the connection has been successfully terminated, or rejects with an error.
655
- */
656
- async stop() {
657
- return Promise.resolve();
658
- }
659
- /** Registers a handler that will be invoked when the connection starts reconnecting.
660
- *
661
- * @param {Function} callback The handler that will be invoked when the connection starts reconnecting. Optionally receives a single argument containing the error that caused the connection to start reconnecting (if any).
662
- */
663
- // @ts-ignore
664
- onreconnecting(t) {
665
- }
666
- /** Registers a handler that will be invoked when the connection successfully reconnects.
667
- *
668
- * @param {Function} callback The handler that will be invoked when the connection successfully reconnects.
669
- */
670
- // @ts-ignore
671
- onreconnected(t) {
672
- }
673
- /** Invokes a hub method on the server using the specified name and arguments. Does not wait for a response from the receiver.
674
- *
675
- * The Promise returned by this method resolves when the client has sent the invocation to the server. The server may still
676
- * be processing the invocation.
677
- *
678
- * @param {string} methodName The name of the server method to invoke.
679
- * @param {any[]} args The arguments used to invoke the server method.
680
- * @returns {Promise<void>} A Promise that resolves when the invocation has been successfully sent, or rejects with an error.
681
- */
682
- // @ts-ignore
683
- send(t, ...r) {
684
- return Promise.resolve();
685
- }
686
- // endregion
687
- }
688
- function N() {
689
- return E() ? !1 : window.hasOwnProperty("Cypress");
690
- }
691
- function _() {
692
- return !E() && window["cypress-signalr-mock"] ? window["cypress-signalr-mock"] : (U(), _());
693
- }
694
- function at(e) {
695
- E() || (window["cypress-signalr-mock"] = e);
696
- }
697
- function U() {
698
- at(lt());
699
- }
700
- function lt() {
701
- return {
702
- mocks: []
703
- };
704
- }
705
- function Y(e) {
706
- return _().mocks.find((t) => t.name === e) ?? null;
707
- }
708
- function E() {
709
- return typeof window > "u" ? (c.error(
710
- "window is not defined. This most likely happens during SSR, which is not supported",
711
- !1
712
- ), !0) : !1;
713
- }
714
- function V() {
715
- var e;
716
- return typeof process < "u" && ((e = process == null ? void 0 : process.env) == null ? void 0 : e.hasOwnProperty("VITEST")) && process.env.VITEST === "true";
717
- }
718
- function ft() {
719
- if (!N()) {
720
- c.debug("Cypress is not running, skipping setup of Cypress commands");
721
- return;
722
- }
723
- const e = window.Cypress;
724
- e.Commands.add("hubPublish", pt), e.Commands.add("hubVerifyInvokes", ht), e.Commands.add("hubClear", dt), e.Commands.add("hubPrintData", bt);
725
- }
726
- function pt(e, t, r) {
727
- const n = Y(e);
728
- if (!n) {
729
- c.error(`[cy.hubPublish] - HubConnectionMock not found for ${e}`);
730
- return;
731
- }
732
- n.publish(t, r);
733
- }
734
- function ht(e, t, r) {
735
- const n = Y(e);
736
- if (!n) {
737
- c.error(
738
- `[cy.hubVerify] - HubConnectionMock not found for hub with name: ${e}`
739
- );
740
- return;
741
- }
742
- n.verify(t, r);
743
- }
744
- function bt() {
745
- c.info(
746
- 'Current window["cypress-signalr-mock"] data:',
747
- _()
748
- );
749
- }
750
- function dt() {
751
- U();
752
- }
753
- ft();
754
- vt("default");
755
- function vt(e, {
756
- debug: t,
757
- enableForVitest: r
758
- } = {}) {
759
- if (t && c.setLogLevel(4), !r && V() && c.info(
760
- `Vitest is running but 'enableForVitest' is ${r}, skip enabling CypressSignalRMock...`
761
- ), N() || r && V()) {
762
- const n = new ct(e);
763
- return _().mocks.push(n), n;
764
- }
765
- return null;
766
- }
767
- export {
768
- vt as _
769
- };