@processmaker/screen-builder 3.8.13 → 3.8.14
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/dist/vue-form-builder.css +1 -1
- package/dist/vue-form-builder.es.js +4 -4
- package/dist/vue-form-builder.es.js.map +1 -1
- package/dist/vue-form-builder.umd.js +1 -1
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/package.json +3 -3
- package/src/components/inspector/validation-select.vue +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@processmaker/screen-builder",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.14",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "VITE_COVERAGE=true vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@fortawesome/fontawesome-free": "^5.6.1",
|
|
59
59
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
60
60
|
"@panter/vue-i18next": "^0.15.2",
|
|
61
|
-
"@processmaker/vue-form-elements": "0.65.
|
|
61
|
+
"@processmaker/vue-form-elements": "0.65.5",
|
|
62
62
|
"@processmaker/vue-multiselect": "2.3.0",
|
|
63
63
|
"@storybook/addon-essentials": "^7.6.13",
|
|
64
64
|
"@storybook/addon-interactions": "^7.6.13",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
},
|
|
118
118
|
"peerDependencies": {
|
|
119
119
|
"@panter/vue-i18next": "^0.15.0",
|
|
120
|
-
"@processmaker/vue-form-elements": "0.65.
|
|
120
|
+
"@processmaker/vue-form-elements": "0.65.5",
|
|
121
121
|
"i18next": "^15.0.8",
|
|
122
122
|
"vue": "^2.6.12",
|
|
123
123
|
"vuex": "^3.1.1"
|
|
@@ -442,7 +442,7 @@ export default {
|
|
|
442
442
|
field: "after_or_equal:",
|
|
443
443
|
content: this.$t("After or Equal to Date"),
|
|
444
444
|
helper: this.$t(
|
|
445
|
-
"The field
|
|
445
|
+
"The field under validation must be after or equal to the given field."
|
|
446
446
|
),
|
|
447
447
|
visible: true,
|
|
448
448
|
configs: [
|
|
@@ -459,7 +459,7 @@ export default {
|
|
|
459
459
|
field: "before:",
|
|
460
460
|
content: this.$t("Before Date"),
|
|
461
461
|
helper: this.$t(
|
|
462
|
-
"The field
|
|
462
|
+
"The field under validation must be before the given date."
|
|
463
463
|
),
|
|
464
464
|
visible: true,
|
|
465
465
|
configs: [
|
|
@@ -476,7 +476,7 @@ export default {
|
|
|
476
476
|
field: "before_or_equal:",
|
|
477
477
|
content: this.$t("Before or Equal to Date"),
|
|
478
478
|
helper: this.$t(
|
|
479
|
-
"The field
|
|
479
|
+
"The field under validation must be before or equal to the given field."
|
|
480
480
|
),
|
|
481
481
|
visible: true,
|
|
482
482
|
configs: [
|