@vc-shell/framework 1.1.82 → 1.1.83

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 (38) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/core/api/virtocommerce.platform.ts +10457 -0
  3. package/core/plugins/extension-points/ExtensionSlot.vue +23 -0
  4. package/core/plugins/extension-points/README.md +406 -0
  5. package/core/plugins/extension-points/index.ts +8 -0
  6. package/core/plugins/extension-points/migration-examples.md +613 -0
  7. package/core/plugins/extension-points/simple-extensions.ts +148 -0
  8. package/core/plugins/index.ts +1 -0
  9. package/core/plugins/modularity/loader.ts +2 -2
  10. package/dist/core/api/virtocommerce.platform.d.ts +2442 -0
  11. package/dist/core/api/virtocommerce.platform.d.ts.map +1 -0
  12. package/dist/core/plugins/extension-points/ExtensionSlot.vue.d.ts +6 -0
  13. package/dist/core/plugins/extension-points/ExtensionSlot.vue.d.ts.map +1 -0
  14. package/dist/core/plugins/extension-points/index.d.ts +3 -0
  15. package/dist/core/plugins/extension-points/index.d.ts.map +1 -0
  16. package/dist/core/plugins/extension-points/simple-extensions.d.ts +29 -0
  17. package/dist/core/plugins/extension-points/simple-extensions.d.ts.map +1 -0
  18. package/dist/core/plugins/index.d.ts +1 -0
  19. package/dist/core/plugins/index.d.ts.map +1 -1
  20. package/dist/framework.js +5104 -5031
  21. package/dist/locales/de.json +1 -0
  22. package/dist/locales/en.json +1 -0
  23. package/dist/shared/components/notification-template/notification-template.vue.d.ts +8 -1
  24. package/dist/shared/components/notification-template/notification-template.vue.d.ts.map +1 -1
  25. package/dist/shared/composables/useModificationTracker/index.d.ts +5 -0
  26. package/dist/shared/composables/useModificationTracker/index.d.ts.map +1 -1
  27. package/dist/shared/pages/LoginPage/components/login/Login.vue.d.ts.map +1 -1
  28. package/dist/tsconfig.tsbuildinfo +1 -1
  29. package/dist/ui/components/molecules/vc-form/vc-form.vue.d.ts +5 -1
  30. package/dist/ui/components/molecules/vc-form/vc-form.vue.d.ts.map +1 -1
  31. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +10 -5
  32. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  33. package/package.json +4 -4
  34. package/shared/components/notification-template/notification-template.vue +5 -1
  35. package/shared/composables/useModificationTracker/index.ts +6 -0
  36. package/shared/pages/LoginPage/components/login/Login.vue +30 -34
  37. package/ui/components/molecules/vc-form/vc-form.vue +11 -3
  38. package/ui/components/molecules/vc-select/vc-select.vue +1 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## [1.1.83](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83-alpha.0...v1.1.83) (2025-09-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **loader:** enhance version compatibility checks to include prerelease versions ([d1af321](https://github.com/VirtoCommerce/vc-shell/commit/d1af32163d34e4540b49df5d0ed9de71cc5ef0c2))
7
+ * **vc-select:** update model value type definition to support multiple option formats ([92c70f0](https://github.com/VirtoCommerce/vc-shell/commit/92c70f04448ab1de015cd68c2dd782355a40d9fe))
8
+
9
+
10
+ ### Features
11
+
12
+ * **login:** add localization support for "OR" text in login components ([6ed87e6](https://github.com/VirtoCommerce/vc-shell/commit/6ed87e67963acfaf681ca472e577c3bb79d4f9de))
13
+ * **notification-template:** add click event emission to notification template component ([b313b7c](https://github.com/VirtoCommerce/vc-shell/commit/b313b7c0c1ba8aaef4eacd104338a8348a5b8d40))
14
+ * **vc-form:** implement submit event emission in form component ([31019a0](https://github.com/VirtoCommerce/vc-shell/commit/31019a078cb3e3caede67bf8396dc0d985015f6c))
15
+
16
+
17
+
18
+ ## [1.1.83-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.82...v1.1.83-alpha.0) (2025-09-24)
19
+
20
+
21
+ ### Features
22
+
23
+ * **extension-points:** introduce new extension system with composables for slot management and data exchange ([b427cd4](https://github.com/VirtoCommerce/vc-shell/commit/b427cd4a141d4dc39c454b12259b2a8c566179b9))
24
+ * **useModificationTracker:** add pristineValue reference to track original state ([adaf67d](https://github.com/VirtoCommerce/vc-shell/commit/adaf67d34ceac0b7b490c2906a7b3f25b57c32e1))
25
+
26
+
27
+
1
28
  ## [1.1.82](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.81...v1.1.82) (2025-09-23)
2
29
 
3
30