@processmaker/screen-builder 3.8.13 → 3.8.15-patch.a.1
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 +6935 -6495
- package/dist/vue-form-builder.es.js.map +1 -1
- package/dist/vue-form-builder.umd.js +51 -51
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/package.json +11 -3
- package/src/components/accordions.js +1 -0
- package/src/components/inspector/index.js +1 -0
- package/src/components/inspector/validation-select.vue +3 -3
- package/src/components/inspector/variables-to-submit.vue +782 -0
- package/src/components/renderer/form-button.vue +4 -2
- package/src/components/task.vue +19 -4
- package/src/components/vue-form-renderer.vue +4 -2
- package/src/form-builder-controls.js +8 -0
- package/src/mixins/Json2Vue.js +2 -1
- package/src/mixins/ScreenBase.js +28 -3
- package/src/mixins/VariablesToSubmitFilter.js +76 -0
- package/src/mixins/index.js +1 -0
- package/src/stories/VariablesToSubmit.stories.js +686 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@processmaker/screen-builder",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.15-patch.a.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "VITE_COVERAGE=true vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
"storybook": "storybook dev -p 6006",
|
|
13
13
|
"build-storybook": "storybook build",
|
|
14
14
|
"test-storybook": "test-storybook",
|
|
15
|
+
"test": "jest tests/unit --no-coverage",
|
|
16
|
+
"test:coverage": "jest tests/unit --coverage",
|
|
17
|
+
"test:variables": "jest tests/unit/VariablesToSubmit.spec.js --no-coverage",
|
|
15
18
|
"serve": "npm run dev"
|
|
16
19
|
},
|
|
17
20
|
"main": "./dist/vue-form-builder.umd.js",
|
|
@@ -58,7 +61,7 @@
|
|
|
58
61
|
"@fortawesome/fontawesome-free": "^5.6.1",
|
|
59
62
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
60
63
|
"@panter/vue-i18next": "^0.15.2",
|
|
61
|
-
"@processmaker/vue-form-elements": "0.65.
|
|
64
|
+
"@processmaker/vue-form-elements": "0.65.5",
|
|
62
65
|
"@processmaker/vue-multiselect": "2.3.0",
|
|
63
66
|
"@storybook/addon-essentials": "^7.6.13",
|
|
64
67
|
"@storybook/addon-interactions": "^7.6.13",
|
|
@@ -72,6 +75,7 @@
|
|
|
72
75
|
"@vue/test-utils": "^1.1.1",
|
|
73
76
|
"axios": "^1.6.0",
|
|
74
77
|
"babel-core": "7.0.0-bridge.0",
|
|
78
|
+
"babel-jest": "^26.6.3",
|
|
75
79
|
"babel-plugin-istanbul": "^6.1.1",
|
|
76
80
|
"bootstrap": "^4.5.3",
|
|
77
81
|
"bootstrap-vue": "^2.19.0",
|
|
@@ -93,6 +97,9 @@
|
|
|
93
97
|
"i18next": "^15.0.8",
|
|
94
98
|
"identity-obj-proxy": "^3.0.0",
|
|
95
99
|
"inputmask": "^5.0.7",
|
|
100
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
101
|
+
"jest-serializer-vue": "^2.0.2",
|
|
102
|
+
"jest-transform-stub": "^2.0.0",
|
|
96
103
|
"mustache": "^3.0.1",
|
|
97
104
|
"nyc": "^15.1.0",
|
|
98
105
|
"prettier": "2.7.1",
|
|
@@ -107,6 +114,7 @@
|
|
|
107
114
|
"vite-plugin-monaco-editor": "^1.1.0",
|
|
108
115
|
"vue": "^2.6.12",
|
|
109
116
|
"vue-deepset": "^0.6.3",
|
|
117
|
+
"vue-jest": "^3.0.7",
|
|
110
118
|
"vue-template-compiler": "^2.6.14",
|
|
111
119
|
"vue-uniq-ids": "^1.0.0",
|
|
112
120
|
"vue-upload-component": "^2.8.14",
|
|
@@ -117,7 +125,7 @@
|
|
|
117
125
|
},
|
|
118
126
|
"peerDependencies": {
|
|
119
127
|
"@panter/vue-i18next": "^0.15.0",
|
|
120
|
-
"@processmaker/vue-form-elements": "0.65.
|
|
128
|
+
"@processmaker/vue-form-elements": "0.65.5",
|
|
121
129
|
"i18next": "^15.0.8",
|
|
122
130
|
"vue": "^2.6.12",
|
|
123
131
|
"vuex": "^3.1.1"
|
|
@@ -32,3 +32,4 @@ export { default as LabelSubmitButton } from "./label-submit-button.vue";
|
|
|
32
32
|
export { default as AnalyticsSelector } from "./analytics-selector.vue";
|
|
33
33
|
export { default as EncryptedConfig } from "./encrypted-config.vue";
|
|
34
34
|
export { default as CodeEditor } from "./code-editor.vue";
|
|
35
|
+
export { default as VariablesToSubmit } from "./variables-to-submit.vue";
|
|
@@ -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: [
|