@processmaker/screen-builder 2.81.0 → 2.82.0
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.es.js +1683 -1654
- package/dist/vue-form-builder.umd.js +50 -50
- package/package.json +3 -3
- package/src/components/index.js +28 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@processmaker/screen-builder",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.82.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite",
|
|
6
6
|
"serve": "vue-cli-service serve",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
|
-
"dist
|
|
31
|
-
"src
|
|
30
|
+
"dist/**",
|
|
31
|
+
"src/**"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@chantouchsek/validatorjs": "1.2.3",
|
package/src/components/index.js
CHANGED
|
@@ -35,7 +35,6 @@ import WatchersForm from "./watchers-form.vue";
|
|
|
35
35
|
import WatchersList from "./watchers-list.vue";
|
|
36
36
|
import WatchersPopup from "./watchers-popup.vue";
|
|
37
37
|
import WatchersSynchronous from "./watchers-synchronous.vue";
|
|
38
|
-
import globalProperties from "../global-properties";
|
|
39
38
|
import {
|
|
40
39
|
DataFormatProperty,
|
|
41
40
|
DataTypeBooleanProperty,
|
|
@@ -45,11 +44,35 @@ import {
|
|
|
45
44
|
} from "../VariableDataTypeProperties";
|
|
46
45
|
import FormListTable from "./renderer/form-list-table.vue";
|
|
47
46
|
import FormAnalyticsChart from "./renderer/form-analytics-chart.vue";
|
|
47
|
+
import accordions from "@/components/accordions";
|
|
48
|
+
import VariableNameGenerator from "@/components/VariableNameGenerator";
|
|
48
49
|
|
|
49
50
|
const rendererComponents = {
|
|
50
51
|
...renderer,
|
|
51
52
|
FormMultiColumn
|
|
52
53
|
};
|
|
54
|
+
export {default as globalProperties, formTypes} from "../global-properties";
|
|
55
|
+
export {
|
|
56
|
+
bgcolorProperty,
|
|
57
|
+
colorProperty,
|
|
58
|
+
javascriptReservedKeywords,
|
|
59
|
+
keyNameProperty,
|
|
60
|
+
labelProperty,
|
|
61
|
+
buttonLabelProperty,
|
|
62
|
+
placeholderProperty,
|
|
63
|
+
helperTextProperty,
|
|
64
|
+
readonlyProperty,
|
|
65
|
+
disabledProperty,
|
|
66
|
+
validationRulesProperty,
|
|
67
|
+
toggleStyleProperty,
|
|
68
|
+
buttonVariantStyleProperty,
|
|
69
|
+
defaultValueProperty,
|
|
70
|
+
buttonTypeEvent,
|
|
71
|
+
tooltipProperty,
|
|
72
|
+
deviceVisibilityProperty,
|
|
73
|
+
LoadingSubmitButtonProperty,
|
|
74
|
+
LabelSubmitButtonProperty
|
|
75
|
+
} from "../form-control-common-properties";
|
|
53
76
|
|
|
54
77
|
// Export our named exports
|
|
55
78
|
export {
|
|
@@ -66,12 +89,14 @@ export {
|
|
|
66
89
|
WatchersList,
|
|
67
90
|
WatchersPopup,
|
|
68
91
|
WatchersSynchronous,
|
|
69
|
-
globalProperties,
|
|
70
92
|
DataTypeProperty,
|
|
71
93
|
DataTypeWithoutDateProperty,
|
|
72
94
|
DataTypeBooleanProperty,
|
|
73
95
|
DataTypeDateTimeProperty,
|
|
74
|
-
DataFormatProperty
|
|
96
|
+
DataFormatProperty,
|
|
97
|
+
globalErrorsModule,
|
|
98
|
+
accordions,
|
|
99
|
+
VariableNameGenerator
|
|
75
100
|
};
|
|
76
101
|
export * from "./inspector";
|
|
77
102
|
export * from "./renderer";
|