@vc-shell/framework 1.0.225 → 1.0.226

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 +15 -0
  2. package/dist/framework.js +1080 -1055
  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 +26 -17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.0.226](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.225...v1.0.226) (2024-06-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * reset dirty validation with update of initial ([a4f820c](https://github.com/VirtoCommerce/vc-shell/commit/a4f820c3ab71296f334a3192069dcf6771031018))
7
+ * **ui:** vc-table mobile view fixes ([08f6474](https://github.com/VirtoCommerce/vc-shell/commit/08f647471732d875eacf4d5f2907eb75686b7c4d))
8
+
9
+
10
+ ### Features
11
+
12
+ * **dynamic:** add onBlur event handler to dynamic form controls ([1543d4f](https://github.com/VirtoCommerce/vc-shell/commit/1543d4f7816a3e5c67ea842c0a545b9d14e0e72b))
13
+
14
+
15
+
1
16
  ## [1.0.225](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.224...v1.0.225) (2024-06-04)
2
17
 
3
18