@vc-shell/framework 1.1.83-alpha.0 → 1.1.84-alpha.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 (33) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/core/api/virtocommerce.platform.ts +10457 -0
  3. package/core/plugins/extension-points/ExtensionSlot.vue +23 -23
  4. package/core/plugins/modularity/index.ts +0 -1
  5. package/core/plugins/modularity/loader.ts +3 -15
  6. package/dist/core/api/virtocommerce.platform.d.ts +2442 -0
  7. package/dist/core/api/virtocommerce.platform.d.ts.map +1 -0
  8. package/dist/core/plugins/extension-points/ExtensionSlot.vue.d.ts.map +1 -1
  9. package/dist/core/plugins/modularity/index.d.ts +0 -1
  10. package/dist/core/plugins/modularity/index.d.ts.map +1 -1
  11. package/dist/core/plugins/modularity/loader.d.ts +0 -1
  12. package/dist/core/plugins/modularity/loader.d.ts.map +1 -1
  13. package/dist/framework.js +6206 -6260
  14. package/dist/locales/de.json +1 -0
  15. package/dist/locales/en.json +1 -0
  16. package/dist/shared/components/notification-template/notification-template.vue.d.ts +8 -1
  17. package/dist/shared/components/notification-template/notification-template.vue.d.ts.map +1 -1
  18. package/dist/shared/composables/useMenuExpanded.d.ts.map +1 -1
  19. package/dist/shared/pages/LoginPage/components/login/Login.vue.d.ts.map +1 -1
  20. package/dist/tsconfig.tsbuildinfo +1 -1
  21. package/dist/ui/components/molecules/vc-form/vc-form.vue.d.ts +5 -1
  22. package/dist/ui/components/molecules/vc-form/vc-form.vue.d.ts.map +1 -1
  23. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +10 -5
  24. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  25. package/package.json +5 -5
  26. package/shared/components/notification-template/notification-template.vue +5 -1
  27. package/shared/composables/useMenuExpanded.ts +13 -2
  28. package/shared/pages/LoginPage/components/login/Login.vue +29 -23
  29. package/ui/components/molecules/vc-form/vc-form.vue +11 -3
  30. package/ui/components/molecules/vc-select/vc-select.vue +21 -2
  31. package/core/plugins/modularity/extensions-helper.ts +0 -209
  32. package/dist/core/plugins/modularity/extensions-helper.d.ts +0 -43
  33. package/dist/core/plugins/modularity/extensions-helper.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## [1.1.84-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83...v1.1.84-alpha.0) (2025-09-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **vc-select:** add fallback visibility check for iframe support in dropdown component ([dd3fc7d](https://github.com/VirtoCommerce/vc-shell/commit/dd3fc7d498c1a0d694804332c3fac3513bb4e78f))
7
+
8
+
9
+
10
+ ## [1.1.83](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83-alpha.0...v1.1.83) (2025-09-30)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **loader:** enhance version compatibility checks to include prerelease versions ([d1af321](https://github.com/VirtoCommerce/vc-shell/commit/d1af32163d34e4540b49df5d0ed9de71cc5ef0c2))
16
+ * **vc-select:** update model value type definition to support multiple option formats ([92c70f0](https://github.com/VirtoCommerce/vc-shell/commit/92c70f04448ab1de015cd68c2dd782355a40d9fe))
17
+
18
+
19
+ ### Features
20
+
21
+ * **login:** add localization support for "OR" text in login components ([6ed87e6](https://github.com/VirtoCommerce/vc-shell/commit/6ed87e67963acfaf681ca472e577c3bb79d4f9de))
22
+ * **notification-template:** add click event emission to notification template component ([b313b7c](https://github.com/VirtoCommerce/vc-shell/commit/b313b7c0c1ba8aaef4eacd104338a8348a5b8d40))
23
+ * **vc-form:** implement submit event emission in form component ([31019a0](https://github.com/VirtoCommerce/vc-shell/commit/31019a078cb3e3caede67bf8396dc0d985015f6c))
24
+
25
+
26
+
1
27
  ## [1.1.83-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.82...v1.1.83-alpha.0) (2025-09-24)
2
28
 
3
29