@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.
@@ -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
- };