@processmaker/screen-builder 3.8.14 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/screen-builder",
3
- "version": "3.8.14",
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",
@@ -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",
@@ -86,6 +86,7 @@ export default [
86
86
  {name: 'tabindex', showFor: 'FormButton'},
87
87
  {name: 'tabindex', showFor: 'FormTextArea'},
88
88
  {name: 'encryptedConfig', showFor: 'FormInput'},
89
+ {name: 'variablesToSubmit', showFor: 'FormButton'},
89
90
  ],
90
91
  open: false,
91
92
  },
@@ -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";