@vc-shell/framework 1.0.89 → 1.0.91
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 +13 -0
- package/core/plugins/validation/rules.ts +1 -1
- package/dist/framework.mjs +171 -170
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/molecules/vc-editor/index.d.ts +6 -1
- package/dist/ui/components/molecules/vc-editor/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +3 -0
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
- package/package.json +3 -3
- package/ui/components/molecules/vc-editor/vc-editor.vue +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [1.0.91](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.90...v1.0.91) (2023-07-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [1.0.90](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.89...v1.0.90) (2023-07-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* editor update on status change/val rule fix ([ad269a4](https://github.com/VirtoCommerce/vc-shell/commit/ad269a4a74a5d5539aa08d353367b11ecbf6b99b))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
## [1.0.89](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.88...v1.0.89) (2023-07-07)
|
|
2
15
|
|
|
3
16
|
|
|
@@ -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
|
|
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) => {
|