@formio/js 5.0.0-dev.5717.a2aa09f → 5.0.0-dev.5718.03bbf3e
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 +5 -0
- package/dist/formio.form.js +6 -6
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +7 -7
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/Webform.js +1 -1
- package/lib/cjs/WebformBuilder.js +11 -2
- package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +2 -0
- package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.js +50 -29
- package/lib/cjs/components/currency/Currency.d.ts +1 -0
- package/lib/cjs/components/editgrid/fixtures/comp17.d.ts +80 -0
- package/lib/cjs/components/editgrid/fixtures/comp17.js +99 -0
- package/lib/cjs/components/editgrid/fixtures/index.d.ts +2 -1
- package/lib/cjs/components/editgrid/fixtures/index.js +3 -1
- package/lib/cjs/components/number/Number.d.ts +7 -1
- package/lib/cjs/components/number/Number.js +11 -0
- package/lib/cjs/components/number/fixtures/comp10.d.ts +18 -0
- package/lib/cjs/components/number/fixtures/comp10.js +21 -0
- package/lib/cjs/components/number/fixtures/index.d.ts +2 -1
- package/lib/cjs/components/number/fixtures/index.js +3 -1
- package/lib/cjs/components/panel/Panel.d.ts +1 -0
- package/lib/cjs/components/panel/Panel.js +1 -0
- package/lib/cjs/components/radio/Radio.js +7 -6
- package/lib/cjs/components/radio/fixtures/comp12.d.ts +29 -0
- package/lib/cjs/components/radio/fixtures/comp12.js +36 -0
- package/lib/cjs/components/radio/fixtures/index.d.ts +2 -1
- package/lib/cjs/components/radio/fixtures/index.js +3 -1
- package/lib/cjs/components/time/Time.d.ts +2 -2
- package/lib/cjs/components/time/Time.js +3 -2
- package/lib/cjs/components/time/fixtures/comp4.d.ts +166 -0
- package/lib/cjs/components/time/fixtures/comp4.js +171 -0
- package/lib/cjs/components/time/fixtures/index.d.ts +2 -1
- package/lib/cjs/components/time/fixtures/index.js +3 -1
- package/lib/mjs/Webform.js +1 -1
- package/lib/mjs/WebformBuilder.js +10 -2
- package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +2 -0
- package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.js +51 -29
- package/lib/mjs/components/currency/Currency.d.ts +1 -0
- package/lib/mjs/components/editgrid/fixtures/comp17.d.ts +80 -0
- package/lib/mjs/components/editgrid/fixtures/comp17.js +97 -0
- package/lib/mjs/components/editgrid/fixtures/index.d.ts +2 -1
- package/lib/mjs/components/editgrid/fixtures/index.js +2 -1
- package/lib/mjs/components/number/Number.d.ts +7 -1
- package/lib/mjs/components/number/Number.js +11 -0
- package/lib/mjs/components/number/fixtures/comp10.d.ts +18 -0
- package/lib/mjs/components/number/fixtures/comp10.js +19 -0
- package/lib/mjs/components/number/fixtures/index.d.ts +2 -1
- package/lib/mjs/components/number/fixtures/index.js +2 -1
- package/lib/mjs/components/panel/Panel.d.ts +1 -0
- package/lib/mjs/components/panel/Panel.js +1 -0
- package/lib/mjs/components/radio/Radio.js +7 -6
- package/lib/mjs/components/radio/fixtures/comp12.d.ts +29 -0
- package/lib/mjs/components/radio/fixtures/comp12.js +34 -0
- package/lib/mjs/components/radio/fixtures/index.d.ts +2 -1
- package/lib/mjs/components/radio/fixtures/index.js +2 -1
- package/lib/mjs/components/time/Time.d.ts +2 -2
- package/lib/mjs/components/time/Time.js +3 -2
- package/lib/mjs/components/time/fixtures/comp4.d.ts +166 -0
- package/lib/mjs/components/time/fixtures/comp4.js +169 -0
- package/lib/mjs/components/time/fixtures/index.d.ts +2 -1
- package/lib/mjs/components/time/fixtures/index.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"type": "form",
|
|
3
|
+
"display": "wizard",
|
|
4
|
+
"components": [
|
|
5
|
+
{
|
|
6
|
+
"title": "Page 1",
|
|
7
|
+
"breadcrumbClickable": true,
|
|
8
|
+
"buttonSettings": {
|
|
9
|
+
"previous": true,
|
|
10
|
+
"cancel": true,
|
|
11
|
+
"next": true
|
|
12
|
+
},
|
|
13
|
+
"navigateOnEnter": false,
|
|
14
|
+
"saveOnEnter": false,
|
|
15
|
+
"scrollToTop": false,
|
|
16
|
+
"collapsible": false,
|
|
17
|
+
"key": "page1",
|
|
18
|
+
"type": "panel",
|
|
19
|
+
"label": "Page 1",
|
|
20
|
+
"components": [
|
|
21
|
+
{
|
|
22
|
+
"label": "Time",
|
|
23
|
+
"disabled": true,
|
|
24
|
+
"alwaysEnabled": false,
|
|
25
|
+
"tableView": true,
|
|
26
|
+
"defaultValue": "03:03 PM",
|
|
27
|
+
"key": "time1",
|
|
28
|
+
"type": "time",
|
|
29
|
+
"input": true,
|
|
30
|
+
"inputMask": "99:99",
|
|
31
|
+
"hideOnChildrenHidden": false,
|
|
32
|
+
"id": "efw9yyq",
|
|
33
|
+
"placeholder": "",
|
|
34
|
+
"prefix": "",
|
|
35
|
+
"customClass": "",
|
|
36
|
+
"suffix": "",
|
|
37
|
+
"multiple": false,
|
|
38
|
+
"protected": false,
|
|
39
|
+
"unique": false,
|
|
40
|
+
"persistent": true,
|
|
41
|
+
"hidden": false,
|
|
42
|
+
"clearOnHide": true,
|
|
43
|
+
"refreshOn": "",
|
|
44
|
+
"redrawOn": "",
|
|
45
|
+
"modalEdit": false,
|
|
46
|
+
"dataGridLabel": false,
|
|
47
|
+
"labelPosition": "top",
|
|
48
|
+
"description": "",
|
|
49
|
+
"errorLabel": "",
|
|
50
|
+
"tooltip": "",
|
|
51
|
+
"hideLabel": false,
|
|
52
|
+
"tabindex": "",
|
|
53
|
+
"autofocus": false,
|
|
54
|
+
"dbIndex": false,
|
|
55
|
+
"customDefaultValue": "",
|
|
56
|
+
"calculateValue": "",
|
|
57
|
+
"calculateServer": false,
|
|
58
|
+
"widget": {
|
|
59
|
+
"type": "input"
|
|
60
|
+
},
|
|
61
|
+
"attributes": {},
|
|
62
|
+
"validateOn": "change",
|
|
63
|
+
"validate": {
|
|
64
|
+
"required": false,
|
|
65
|
+
"custom": "",
|
|
66
|
+
"customPrivate": false,
|
|
67
|
+
"strictDateValidation": false,
|
|
68
|
+
"multiple": false,
|
|
69
|
+
"unique": false,
|
|
70
|
+
"minLength": "",
|
|
71
|
+
"maxLength": "",
|
|
72
|
+
"pattern": ""
|
|
73
|
+
},
|
|
74
|
+
"conditional": {
|
|
75
|
+
"show": null,
|
|
76
|
+
"when": null,
|
|
77
|
+
"eq": ""
|
|
78
|
+
},
|
|
79
|
+
"overlay": {
|
|
80
|
+
"style": "",
|
|
81
|
+
"left": "",
|
|
82
|
+
"top": "",
|
|
83
|
+
"width": "",
|
|
84
|
+
"height": ""
|
|
85
|
+
},
|
|
86
|
+
"allowCalculateOverride": false,
|
|
87
|
+
"encrypted": false,
|
|
88
|
+
"showCharCount": false,
|
|
89
|
+
"showWordCount": false,
|
|
90
|
+
"properties": {},
|
|
91
|
+
"allowMultipleMasks": false,
|
|
92
|
+
"addons": [],
|
|
93
|
+
"mask": false,
|
|
94
|
+
"inputType": "time",
|
|
95
|
+
"inputFormat": "plain",
|
|
96
|
+
"displayMask": "",
|
|
97
|
+
"spellcheck": true,
|
|
98
|
+
"truncateMultipleSpaces": false,
|
|
99
|
+
"format": "HH:mm",
|
|
100
|
+
"dataFormat": "HH:mm:ss"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"input": false,
|
|
104
|
+
"tableView": false,
|
|
105
|
+
"id": "e7vej1d",
|
|
106
|
+
"placeholder": "",
|
|
107
|
+
"prefix": "",
|
|
108
|
+
"customClass": "",
|
|
109
|
+
"suffix": "",
|
|
110
|
+
"multiple": false,
|
|
111
|
+
"defaultValue": null,
|
|
112
|
+
"protected": false,
|
|
113
|
+
"unique": false,
|
|
114
|
+
"persistent": false,
|
|
115
|
+
"hidden": false,
|
|
116
|
+
"clearOnHide": false,
|
|
117
|
+
"refreshOn": "",
|
|
118
|
+
"redrawOn": "",
|
|
119
|
+
"modalEdit": false,
|
|
120
|
+
"dataGridLabel": false,
|
|
121
|
+
"labelPosition": "top",
|
|
122
|
+
"description": "",
|
|
123
|
+
"errorLabel": "",
|
|
124
|
+
"tooltip": "",
|
|
125
|
+
"hideLabel": false,
|
|
126
|
+
"tabindex": "",
|
|
127
|
+
"disabled": false,
|
|
128
|
+
"autofocus": false,
|
|
129
|
+
"dbIndex": false,
|
|
130
|
+
"customDefaultValue": "",
|
|
131
|
+
"calculateValue": "",
|
|
132
|
+
"calculateServer": false,
|
|
133
|
+
"widget": null,
|
|
134
|
+
"attributes": {},
|
|
135
|
+
"validateOn": "change",
|
|
136
|
+
"validate": {
|
|
137
|
+
"required": false,
|
|
138
|
+
"custom": "",
|
|
139
|
+
"customPrivate": false,
|
|
140
|
+
"strictDateValidation": false,
|
|
141
|
+
"multiple": false,
|
|
142
|
+
"unique": false
|
|
143
|
+
},
|
|
144
|
+
"conditional": {
|
|
145
|
+
"show": null,
|
|
146
|
+
"when": null,
|
|
147
|
+
"eq": ""
|
|
148
|
+
},
|
|
149
|
+
"overlay": {
|
|
150
|
+
"style": "",
|
|
151
|
+
"left": "",
|
|
152
|
+
"top": "",
|
|
153
|
+
"width": "",
|
|
154
|
+
"height": ""
|
|
155
|
+
},
|
|
156
|
+
"allowCalculateOverride": false,
|
|
157
|
+
"encrypted": false,
|
|
158
|
+
"showCharCount": false,
|
|
159
|
+
"showWordCount": false,
|
|
160
|
+
"properties": {},
|
|
161
|
+
"allowMultipleMasks": false,
|
|
162
|
+
"addons": [],
|
|
163
|
+
"tree": false,
|
|
164
|
+
"lazyLoad": false,
|
|
165
|
+
"theme": "default",
|
|
166
|
+
"breadcrumb": "default"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import comp1 from './comp1';
|
|
2
2
|
import comp2 from './comp2';
|
|
3
3
|
import comp3 from './comp3';
|
|
4
|
+
import comp4 from './comp4';
|
|
4
5
|
import timeForm from './timeForm';
|
|
5
6
|
import timeForm2 from './timeForm2';
|
|
6
|
-
export { comp1, comp2, comp3, timeForm, timeForm2 };
|
|
7
|
+
export { comp1, comp2, comp3, comp4, timeForm, timeForm2 };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import comp1 from './comp1';
|
|
2
2
|
import comp2 from './comp2';
|
|
3
3
|
import comp3 from './comp3';
|
|
4
|
+
import comp4 from './comp4';
|
|
4
5
|
import timeForm from './timeForm';
|
|
5
6
|
import timeForm2 from './timeForm2';
|
|
6
|
-
export { comp1, comp2, comp3, timeForm, timeForm2 };
|
|
7
|
+
export { comp1, comp2, comp3, comp4, timeForm, timeForm2 };
|