@vc-shell/framework 1.0.89 → 1.0.90

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 CHANGED
@@ -1,3 +1,12 @@
1
+ ## [1.0.90](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.89...v1.0.90) (2023-07-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * editor update on status change/val rule fix ([ad269a4](https://github.com/VirtoCommerce/vc-shell/commit/ad269a4a74a5d5539aa08d353367b11ecbf6b99b))
7
+
8
+
9
+
1
10
  ## [1.0.89](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.88...v1.0.89) (2023-07-07)
2
11
 
3
12
 
@@ -113,7 +113,7 @@ defineRule("before", before);
113
113
 
114
114
  // after
115
115
  export const after = (value: string, [target]: string[]) =>
116
- compare(value, [target], (first, second) => first < second, "End date must be later than start date");
116
+ compare(value, [target], (first, second) => first > second, "End date must be later than start date");
117
117
  defineRule("after", after);
118
118
 
119
119
  export const bigInt = (value: string) => {