@formio/js 5.0.0-dev.5646.8734cf4 → 5.0.0-dev.5650.f58394c
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/formio.form.js +23 -22
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +23 -22
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.js +1 -1
- package/dist/formio.min.js +1 -1
- package/dist/formio.utils.js +3 -3
- package/dist/formio.utils.min.js +1 -1
- package/lib/cjs/Webform.js +8 -1
- package/lib/cjs/components/datagrid/fixtures/index.d.ts +1 -2
- package/lib/cjs/components/datagrid/fixtures/index.js +1 -3
- package/lib/cjs/utils/conditionOperators/IsEmptyValue.js +3 -4
- package/lib/cjs/utils/conditionOperators/IsEqualTo.js +3 -3
- package/lib/cjs/utils/utils.d.ts +10 -0
- package/lib/cjs/utils/utils.js +7 -59
- package/lib/mjs/Webform.js +7 -1
- package/lib/mjs/components/datagrid/fixtures/index.d.ts +1 -2
- package/lib/mjs/components/datagrid/fixtures/index.js +1 -2
- package/lib/mjs/utils/conditionOperators/IsEmptyValue.js +3 -3
- package/lib/mjs/utils/conditionOperators/IsEqualTo.js +1 -1
- package/lib/mjs/utils/utils.d.ts +10 -0
- package/lib/mjs/utils/utils.js +7 -58
- package/package.json +2 -2
- package/lib/cjs/components/datagrid/fixtures/comp9.d.ts +0 -81
- package/lib/cjs/components/datagrid/fixtures/comp9.js +0 -87
- package/lib/mjs/components/datagrid/fixtures/comp9.d.ts +0 -81
- package/lib/mjs/components/datagrid/fixtures/comp9.js +0 -85
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
title: 'randomName',
|
|
3
|
-
name: 'randomName',
|
|
4
|
-
path: 'randomName',
|
|
5
|
-
type: 'form',
|
|
6
|
-
display: 'form',
|
|
7
|
-
components: [
|
|
8
|
-
{
|
|
9
|
-
label: 'Data Grid',
|
|
10
|
-
reorder: false,
|
|
11
|
-
addAnotherPosition: 'bottom',
|
|
12
|
-
layoutFixed: false,
|
|
13
|
-
enableRowGroups: false,
|
|
14
|
-
initEmpty: false,
|
|
15
|
-
tableView: false,
|
|
16
|
-
defaultValue: [
|
|
17
|
-
{}
|
|
18
|
-
],
|
|
19
|
-
validate: {
|
|
20
|
-
required: true
|
|
21
|
-
},
|
|
22
|
-
key: 'dataGrid',
|
|
23
|
-
type: 'datagrid',
|
|
24
|
-
input: true,
|
|
25
|
-
components: [
|
|
26
|
-
{
|
|
27
|
-
label: 'Columns',
|
|
28
|
-
columns: [
|
|
29
|
-
{
|
|
30
|
-
components: [
|
|
31
|
-
{
|
|
32
|
-
label: 'Text Field',
|
|
33
|
-
applyMaskOn: 'change',
|
|
34
|
-
tableView: true,
|
|
35
|
-
key: 'textField',
|
|
36
|
-
type: 'textfield',
|
|
37
|
-
input: true
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
width: 6,
|
|
41
|
-
offset: 0,
|
|
42
|
-
push: 0,
|
|
43
|
-
pull: 0,
|
|
44
|
-
size: 'md',
|
|
45
|
-
currentWidth: 6
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
components: [
|
|
49
|
-
{
|
|
50
|
-
label: 'Checkbox',
|
|
51
|
-
tableView: false,
|
|
52
|
-
key: 'checkbox',
|
|
53
|
-
type: 'checkbox',
|
|
54
|
-
input: true
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
width: 6,
|
|
58
|
-
offset: 0,
|
|
59
|
-
push: 0,
|
|
60
|
-
pull: 0,
|
|
61
|
-
size: 'md',
|
|
62
|
-
currentWidth: 6
|
|
63
|
-
}
|
|
64
|
-
],
|
|
65
|
-
key: 'columns',
|
|
66
|
-
type: 'columns',
|
|
67
|
-
input: false,
|
|
68
|
-
tableView: false
|
|
69
|
-
}
|
|
70
|
-
]
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
type: 'button',
|
|
74
|
-
label: 'Submit',
|
|
75
|
-
key: 'submit',
|
|
76
|
-
disableOnInvalid: true,
|
|
77
|
-
input: true,
|
|
78
|
-
tableView: false
|
|
79
|
-
}
|
|
80
|
-
],
|
|
81
|
-
pdfComponents: [],
|
|
82
|
-
settings: {
|
|
83
|
-
logs: 'true'
|
|
84
|
-
}
|
|
85
|
-
};
|