@vc-shell/framework 1.0.230 → 1.0.232

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 (29) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/framework.js +11282 -11261
  3. package/dist/index.css +1 -1
  4. package/dist/shared/modules/dynamic/components/SchemaRender.d.ts.map +1 -1
  5. package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts.map +1 -1
  6. package/dist/shared/modules/dynamic/types/index.d.ts +5 -1
  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-status/vc-status.stories.d.ts +7 -7
  10. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts +2 -2
  11. package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts.map +1 -1
  12. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
  13. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +19 -0
  14. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts.map +1 -1
  15. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts +4 -0
  16. package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
  17. package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
  18. package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
  19. package/package.json +4 -4
  20. package/shared/modules/dynamic/components/SchemaRender.ts +0 -2
  21. package/shared/modules/dynamic/components/fields/InputCurrency.ts +1 -0
  22. package/shared/modules/dynamic/types/index.ts +5 -1
  23. package/ui/components/atoms/vc-status/vc-status.vue +5 -2
  24. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +1 -1
  25. package/ui/components/molecules/vc-input/vc-input.vue +17 -2
  26. package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +23 -0
  27. package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +71 -56
  28. package/ui/components/organisms/vc-table/vc-table.stories.ts +1 -1
  29. package/ui/components/organisms/vc-table/vc-table.vue +15 -9
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## [1.0.232](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.231...v1.0.232) (2024-06-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ui:** vc-table columns reordering fix ([48b4994](https://github.com/VirtoCommerce/vc-shell/commit/48b499480f208db81b97de4e5638c8079b6eb98e))
7
+
8
+
9
+ ### Features
10
+
11
+ * prevent entering negative numbers in vc-input-currency and vc-input components ([b82a9e4](https://github.com/VirtoCommerce/vc-shell/commit/b82a9e47c26d06c80eb5806aad8d99fdf9043cc1))
12
+ * **ui:** add "primary" variant to vc-status component ([e3e1544](https://github.com/VirtoCommerce/vc-shell/commit/e3e154477cf15ae69c0e5cb203eec82160265610))
13
+
14
+
15
+
16
+ ## [1.0.231](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.230...v1.0.231) (2024-06-05)
17
+
18
+
19
+ ### Features
20
+
21
+ * vc-input-currency decimal precision ([c278a90](https://github.com/VirtoCommerce/vc-shell/commit/c278a90248888bd63f275908d5379a3fdcd7fc0a))
22
+
23
+
24
+
1
25
  ## [1.0.230](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.229...v1.0.230) (2024-06-05)
2
26
 
3
27