@vc-shell/framework 1.0.225 → 1.0.227

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 (24) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/framework.js +1033 -1009
  3. package/dist/index.css +1 -1
  4. package/dist/shared/modules/dynamic/components/fields/Table.d.ts.map +1 -1
  5. package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +8 -8
  6. package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +8 -8
  7. package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts +8 -8
  8. package/dist/shared/modules/dynamic/helpers/nodeBuilder.d.ts.map +1 -1
  9. package/dist/shared/modules/dynamic/types/index.d.ts +14 -6
  10. package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
  11. package/dist/tsconfig.tsbuildinfo +1 -1
  12. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts +16 -0
  13. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts.map +1 -1
  14. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts +6 -3
  15. package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts.map +1 -1
  16. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  17. package/package.json +4 -4
  18. package/shared/modules/dynamic/components/fields/Table.ts +1 -2
  19. package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +2 -2
  20. package/shared/modules/dynamic/helpers/nodeBuilder.ts +15 -0
  21. package/shared/modules/dynamic/types/index.ts +14 -6
  22. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +11 -9
  23. package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +21 -10
  24. package/ui/components/organisms/vc-table/vc-table.vue +28 -19
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## [1.0.227](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.226...v1.0.227) (2024-06-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ui:** vc-table add last column resizer ([f63a7a0](https://github.com/VirtoCommerce/vc-shell/commit/f63a7a010366fd55fc0add08701d0d983fe4280a))
7
+
8
+
9
+
10
+ ## [1.0.226](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.225...v1.0.226) (2024-06-04)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * reset dirty validation with update of initial ([a4f820c](https://github.com/VirtoCommerce/vc-shell/commit/a4f820c3ab71296f334a3192069dcf6771031018))
16
+ * **ui:** vc-table mobile view fixes ([08f6474](https://github.com/VirtoCommerce/vc-shell/commit/08f647471732d875eacf4d5f2907eb75686b7c4d))
17
+
18
+
19
+ ### Features
20
+
21
+ * **dynamic:** add onBlur event handler to dynamic form controls ([1543d4f](https://github.com/VirtoCommerce/vc-shell/commit/1543d4f7816a3e5c67ea842c0a545b9d14e0e72b))
22
+
23
+
24
+
1
25
  ## [1.0.225](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.224...v1.0.225) (2024-06-04)
2
26
 
3
27