@vc-shell/framework 2.0.0-alpha.12 → 2.0.0-alpha.15

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 (39) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/VcTableAdapter.css +1 -1
  3. package/dist/ai-agent/index.js +2 -2
  4. package/dist/chunks/{VcAiAgentPanel.vue_vue_type_style_index_0_lang-DdyWhitN.js → VcAiAgentPanel.vue_vue_type_style_index_0_lang-B4GDIm57.js} +939 -948
  5. package/dist/chunks/{VcTableAdapter.vue_vue_type_style_index_0_lang-DC948i43.js → VcTableAdapter.vue_vue_type_style_index_0_lang-CdlLNeu6.js} +2717 -2717
  6. package/dist/chunks/{index-w6KNzNbs.js → index-C981z9CQ.js} +1 -1
  7. package/dist/chunks/{index-nypcvCTu.js → index-DO3YFNu1.js} +2 -2
  8. package/dist/chunks/{vc-toast.vue_vue_type_style_index_0_lang-DcqdH5V3.js → vc-toast.vue_vue_type_style_index_0_lang-DEWdfXsK.js} +1 -1
  9. package/dist/core/blade-navigation/types/index.d.ts +2 -2
  10. package/dist/core/blade-navigation/types/index.d.ts.map +1 -1
  11. package/dist/core/composables/useBlade/index.d.ts +1 -1
  12. package/dist/core/composables/useBlade/index.d.ts.map +1 -1
  13. package/dist/core/notifications/store.d.ts +1 -1
  14. package/dist/core/notifications/store.d.ts.map +1 -1
  15. package/dist/core/notifications/toast-controller.d.ts +1 -1
  16. package/dist/core/notifications/toast-controller.d.ts.map +1 -1
  17. package/dist/framework.js +1191 -1195
  18. package/dist/index.css +2 -2
  19. package/dist/index.d.ts +1 -0
  20. package/dist/index.d.ts.map +1 -1
  21. package/dist/modules/assets/components/assets-details/assets-details.vue.d.ts +1 -3
  22. package/dist/modules/assets/components/assets-details/assets-details.vue.d.ts.map +1 -1
  23. package/dist/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts +1 -3
  24. package/dist/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts.map +1 -1
  25. package/dist/shell/_internal/blade-navigation/components/vc-blade-slot/vc-blade-slot.vue.d.ts.map +1 -1
  26. package/dist/tsconfig.tsbuildinfo +1 -1
  27. package/dist/ui/components/molecules/vc-dropdown/vc-dropdown.vue.d.ts.map +1 -1
  28. package/dist/ui/components/organisms/vc-blade/_internal/composables/useToolbarRegistration.d.ts +2 -2
  29. package/dist/ui/components/organisms/vc-blade/_internal/composables/useToolbarRegistration.d.ts.map +1 -1
  30. package/dist/ui/components/organisms/vc-blade/_internal/toolbar/ToolbarMobile.vue.d.ts.map +1 -1
  31. package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
  32. package/dist/ui/components/organisms/vc-sidebar/vc-sidebar.vue.d.ts.map +1 -1
  33. package/dist/ui/components/organisms/vc-table/components/mobile/PullToRefresh.vue.d.ts.map +1 -1
  34. package/dist/ui/index.js +3 -3
  35. package/globals-augments.d.ts +33 -0
  36. package/globals.d.ts +12 -29
  37. package/package.json +6 -4
  38. package/shims-vue.d.ts +16 -0
  39. package/typings/shims-vue.d.ts +38 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ # [2.0.0-alpha.15](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.14...v2.0.0-alpha.15) (2026-03-20)
2
+
3
+ **Note:** Version bump only for package @vc-shell/framework
4
+
5
+ # [2.0.0-alpha.14](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.13...v2.0.0-alpha.14) (2026-03-20)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **notifications:** decouple toast dismissal from notification badge state ([d6d08f1](https://github.com/VirtoCommerce/vc-shell/commit/d6d08f14e6aaf3cd88451c2b80b72b2596a27d02))
11
+ # [2.0.0-alpha.13](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.12...v2.0.0-alpha.13) (2026-03-20)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **ToolbarMobile:** scope disabled button opacity to :disabled pseudo-class ([a723942](https://github.com/VirtoCommerce/vc-shell/commit/a72394267a36a0240299ef432b340f450ebee724))
17
+ * **vc-sidebar:** prevent infinite recursion in focus trap ([3221237](https://github.com/VirtoCommerce/vc-shell/commit/3221237032f855543b64183b1238e3e2dcac423c))
18
+ * widen exposeToChildren type signature to accept typed functions ([0fad830](https://github.com/VirtoCommerce/vc-shell/commit/0fad83088db7075c3e5267b0ed9a7702c1acbcfb))
19
+
20
+
21
+ ### Features
22
+
23
+ * add Vue module augmentation type declarations ([f1b8f48](https://github.com/VirtoCommerce/vc-shell/commit/f1b8f4817a849d4fbe4eb8c820214d942f691e93))
1
24
  # [2.0.0-alpha.12](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2026-03-19)
2
25
 
3
26