@vc-shell/framework 1.0.134 → 1.0.136

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 (44) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/framework.js +2876 -2887
  3. package/dist/index.css +1 -1
  4. package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
  5. package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts.map +1 -1
  6. package/dist/shared/modules/dynamic/types/index.d.ts +0 -10
  7. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  8. package/dist/tsconfig.tsbuildinfo +1 -1
  9. package/dist/ui/components/atoms/vc-checkbox/vc-checkbox.stories.d.ts.map +1 -1
  10. package/dist/ui/components/atoms/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
  11. package/dist/ui/components/atoms/vc-label/index.d.ts +1 -83
  12. package/dist/ui/components/atoms/vc-label/index.d.ts.map +1 -1
  13. package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
  14. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +0 -2
  15. package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
  16. package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +1 -1
  17. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
  18. package/dist/ui/components/molecules/vc-input-currency/index.d.ts +1 -330
  19. package/dist/ui/components/molecules/vc-input-currency/index.d.ts.map +1 -1
  20. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts +19 -3
  21. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
  22. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +3 -14
  23. package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
  24. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +3 -3
  25. package/dist/ui/components/organisms/vc-gallery/index.d.ts +1 -136
  26. package/dist/ui/components/organisms/vc-gallery/index.d.ts.map +1 -1
  27. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +3 -3
  28. package/package.json +4 -4
  29. package/shared/components/blade-navigation/composables/useBladeNavigation/index.ts +1 -0
  30. package/shared/modules/dynamic/components/fields/MultivalueField.ts +0 -2
  31. package/shared/modules/dynamic/helpers/nodeBuilder.ts +1 -1
  32. package/shared/modules/dynamic/pages/dynamic-blade-form.vue +1 -1
  33. package/shared/modules/dynamic/types/index.ts +0 -10
  34. package/ui/components/atoms/vc-checkbox/vc-checkbox.stories.ts +4 -2
  35. package/ui/components/atoms/vc-checkbox/vc-checkbox.vue +1 -0
  36. package/ui/components/atoms/vc-label/index.ts +1 -3
  37. package/ui/components/atoms/vc-label/vc-label.vue +33 -28
  38. package/ui/components/molecules/vc-editor/vc-editor.vue +0 -3
  39. package/ui/components/molecules/vc-field/vc-field.vue +0 -2
  40. package/ui/components/molecules/vc-input-currency/index.ts +1 -18
  41. package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +13 -0
  42. package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +10 -17
  43. package/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue +0 -1
  44. package/ui/components/organisms/vc-gallery/index.ts +1 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## [1.0.136](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.135...v1.0.136) (2024-01-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **dynamic:** nested fields context reactivity fix ([9613105](https://github.com/VirtoCommerce/vc-shell/commit/9613105f6c1b4c7dc47b386203603763c75595b1))
7
+
8
+
9
+
10
+ ## [1.0.135](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.134...v1.0.135) (2024-01-03)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **dynamic:** remove unused emitValue and emitLabel properties from MultivalueField.ts ([3edcf8b](https://github.com/VirtoCommerce/vc-shell/commit/3edcf8b3402a9379913d8f75baf815dc1c557fbe))
16
+ * **shell:** refactor vc-label layout ([ab6ad07](https://github.com/VirtoCommerce/vc-shell/commit/ab6ad070fdf9aef2be4be10d28d3c964a50c807f))
17
+ * **shell:** refactor vc-multivalue component to improve readability and maintainability ([e49fd74](https://github.com/VirtoCommerce/vc-shell/commit/e49fd74f23e14d252d0969773edb169a7556eddb))
18
+ * **shell:** replace url if blade have no url ([bb97100](https://github.com/VirtoCommerce/vc-shell/commit/bb97100aa94bdc76d0d8c1b01560d35593ce8dfa))
19
+
20
+
21
+
1
22
  ## [1.0.134](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.133...v1.0.134) (2023-12-29)
2
23
 
3
24