@vc-shell/framework 1.0.134 → 1.0.135
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.
- package/CHANGELOG.md +12 -0
- package/dist/framework.js +2774 -2785
- package/dist/index.css +1 -1
- package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/types/index.d.ts +0 -10
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/vc-checkbox/vc-checkbox.stories.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-label/index.d.ts +1 -83
- package/dist/ui/components/atoms/vc-label/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +0 -2
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
- package/dist/ui/components/molecules/vc-input-currency/index.d.ts +1 -330
- package/dist/ui/components/molecules/vc-input-currency/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts +19 -3
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +3 -14
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +3 -3
- package/dist/ui/components/organisms/vc-gallery/index.d.ts +1 -136
- package/dist/ui/components/organisms/vc-gallery/index.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +3 -3
- package/package.json +4 -4
- package/shared/components/blade-navigation/composables/useBladeNavigation/index.ts +1 -0
- package/shared/modules/dynamic/components/fields/MultivalueField.ts +0 -2
- package/shared/modules/dynamic/pages/dynamic-blade-form.vue +1 -1
- package/shared/modules/dynamic/types/index.ts +0 -10
- package/ui/components/atoms/vc-checkbox/vc-checkbox.stories.ts +4 -2
- package/ui/components/atoms/vc-checkbox/vc-checkbox.vue +1 -0
- package/ui/components/atoms/vc-label/index.ts +1 -3
- package/ui/components/atoms/vc-label/vc-label.vue +33 -28
- package/ui/components/molecules/vc-editor/vc-editor.vue +0 -3
- package/ui/components/molecules/vc-field/vc-field.vue +0 -2
- package/ui/components/molecules/vc-input-currency/index.ts +1 -18
- package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +13 -0
- package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +10 -17
- package/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue +0 -1
- package/ui/components/organisms/vc-gallery/index.ts +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.0.135](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.134...v1.0.135) (2024-01-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **dynamic:** remove unused emitValue and emitLabel properties from MultivalueField.ts ([3edcf8b](https://github.com/VirtoCommerce/vc-shell/commit/3edcf8b3402a9379913d8f75baf815dc1c557fbe))
|
|
7
|
+
* **shell:** refactor vc-label layout ([ab6ad07](https://github.com/VirtoCommerce/vc-shell/commit/ab6ad070fdf9aef2be4be10d28d3c964a50c807f))
|
|
8
|
+
* **shell:** refactor vc-multivalue component to improve readability and maintainability ([e49fd74](https://github.com/VirtoCommerce/vc-shell/commit/e49fd74f23e14d252d0969773edb169a7556eddb))
|
|
9
|
+
* **shell:** replace url if blade have no url ([bb97100](https://github.com/VirtoCommerce/vc-shell/commit/bb97100aa94bdc76d0d8c1b01560d35593ce8dfa))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## [1.0.134](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.133...v1.0.134) (2023-12-29)
|
|
2
14
|
|
|
3
15
|
|