@rxap/schematic-angular 16.2.0-dev.14 → 16.2.0-dev.15
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 +17 -0
- package/package.json +2 -2
- package/src/lib/accordion-item.d.ts +13 -6
- package/src/lib/accordion-item.js +10 -1
- package/src/lib/accordion-item.js.map +1 -1
- package/src/lib/coerce-accordion-component.js +1 -1
- package/src/lib/coerce-accordion-component.js.map +1 -1
- package/src/lib/coerce-accordion-item-table-component.js +1 -1
- package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
- package/src/lib/data-grid-options.d.ts +3 -0
- package/src/lib/data-grid-options.js +2 -0
- package/src/lib/data-grid-options.js.map +1 -1
- package/src/lib/form-control.d.ts +2 -2
- package/src/lib/form-control.js +14 -43
- package/src/lib/form-control.js.map +1 -1
- package/src/lib/minimum-table-component-options.js +2 -2
- package/src/lib/minimum-table-component-options.js.map +1 -1
- package/src/lib/table-column.d.ts +9 -5
- package/src/lib/table-column.js +37 -59
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +2347 -0
- package/src/schematic-input.schema.json +607 -0
- package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
- package/src/schematics/accordion/accordion-component/index.js +51 -25
- package/src/schematics/accordion/accordion-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
- package/src/schematics/accordion/accordion-component/schema.json +183 -360
- package/src/schematics/accordion/accordion-component/template.schema.json +22 -25
- package/src/schematics/accordion/accordion-item-component/index.d.ts +7 -2
- package/src/schematics/accordion/accordion-item-component/index.js +70 -49
- package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-item-component/schema.json +167 -336
- package/src/schematics/accordion/accordion-item-component/template.schema.json +8 -15
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +21 -25
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +321 -429
- package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +9 -15
- package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js +14 -6
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +174 -346
- package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +6 -15
- package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/index.js +11 -13
- package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +453 -614
- package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +9 -18
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +37 -61
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +431 -592
- package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +10 -19
- package/src/schematics/accordion-identifier.schema.json +25 -0
- package/src/schematics/accordion-item.schema.json +24 -0
- package/src/schematics/angular.schema.json +11 -3
- package/src/schematics/button.schema.json +1 -1
- package/src/schematics/data-grid-component/index.js +17 -16
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +212 -378
- package/src/schematics/data-grid-component/template.schema.json +6 -15
- package/src/schematics/data-grid-item.schema.json +4 -1
- package/src/schematics/data-grid.schema.json +10 -4
- package/src/schematics/dialog-component/schema.json +72 -158
- package/src/schematics/dialog-component/template.schema.json +3 -6
- package/src/schematics/form/control/input-form-control/schema.json +108 -306
- package/src/schematics/form/control/input-form-control/template.schema.json +6 -9
- package/src/schematics/form/control/select-form-control/schema.json +120 -307
- package/src/schematics/form/control/select-form-control/template.schema.json +6 -9
- package/src/schematics/form/control/table-select-form-control/index.js +1 -1
- package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/table-select-form-control/schema.json +93 -296
- package/src/schematics/form/control/table-select-form-control/template.schema.json +3 -6
- package/src/schematics/form/form-component/schema.json +136 -238
- package/src/schematics/form/form-component/template.schema.json +6 -9
- package/src/schematics/form/form-control/schema.json +68 -176
- package/src/schematics/form/form-control/template.schema.json +6 -9
- package/src/schematics/form/form-definition/schema.json +125 -230
- package/src/schematics/form/form-definition/template.schema.json +6 -9
- package/src/schematics/form-component.schema.json +3 -3
- package/src/schematics/form-definition.schema.json +3 -3
- package/src/schematics/general.schema.json +1 -4
- package/src/schematics/input-form-control.schema.json +11 -3
- package/src/schematics/minimum-table.schema.json +11 -5
- package/src/schematics/pipe.schema.json +1 -1
- package/src/schematics/select-form-control.schema.json +15 -4
- package/src/schematics/table/action/dialog-table-action/schema.json +150 -230
- package/src/schematics/table/action/dialog-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/form-table-action/schema.json +283 -321
- package/src/schematics/table/action/form-table-action/template.schema.json +6 -6
- package/src/schematics/table/action/navigation-table-action/schema.json +150 -230
- package/src/schematics/table/action/navigation-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/open-api-table-action/schema.json +150 -230
- package/src/schematics/table/action/open-api-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/operation-table-action/schema.json +138 -218
- package/src/schematics/table/action/operation-table-action/template.schema.json +3 -6
- package/src/schematics/table/header-button/form-table-header-button/schema.json +217 -261
- package/src/schematics/table/header-button/form-table-header-button/template.schema.json +6 -6
- package/src/schematics/table/header-button/navigation-table-header-button/schema.json +131 -211
- package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +3 -6
- package/src/schematics/table/table-action/schema.json +56 -139
- package/src/schematics/table/table-action/template.schema.json +6 -6
- package/src/schematics/table/table-component/index.d.ts +1 -1
- package/src/schematics/table/table-component/index.js +2 -0
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/schema.json +352 -547
- package/src/schematics/table/table-component/template.schema.json +6 -18
- package/src/schematics/table/table-header-button/schema.json +56 -139
- package/src/schematics/table/table-header-button/template.schema.json +6 -6
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +6 -0
- package/src/schematics/table/tree-table-component/index.d.ts +3 -0
- package/src/schematics/table/tree-table-component/index.js +11 -3
- package/src/schematics/table/tree-table-component/index.js.map +1 -1
- package/src/schematics/table/tree-table-component/schema.json +352 -547
- package/src/schematics/table/tree-table-component/template.schema.json +6 -18
- package/src/schematics/table-column.schema.json +4 -1
- package/src/schematics/table.schema.json +4 -1
- package/src/schematics/tree-component/schema.json +70 -62
- package/src/schematics/tree-component/template.schema.json +7 -2
- package/src/schematics/tree-table.schema.json +3 -3
- package/src/schematics/value.schema.json +1 -1
- package/src/template.schema.json +173 -0
|
@@ -3,178 +3,7 @@
|
|
|
3
3
|
"$id": "table-select-form-control-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"
|
|
7
|
-
{
|
|
8
|
-
"allOf": [
|
|
9
|
-
{
|
|
10
|
-
"type": "object",
|
|
11
|
-
"properties": {
|
|
12
|
-
"project": {
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "Project name where the files should be generated"
|
|
15
|
-
},
|
|
16
|
-
"feature": {
|
|
17
|
-
"type": "string",
|
|
18
|
-
"description": "Feature name where the files should be generated"
|
|
19
|
-
},
|
|
20
|
-
"overwrite": {
|
|
21
|
-
"anyOf": [
|
|
22
|
-
{
|
|
23
|
-
"type": "boolean"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"type": "array",
|
|
27
|
-
"items": {
|
|
28
|
-
"type": "string"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"description": "Overwrite existing files",
|
|
33
|
-
"default": false
|
|
34
|
-
},
|
|
35
|
-
"overwriteHtml": {
|
|
36
|
-
"type": "boolean",
|
|
37
|
-
"default": false
|
|
38
|
-
},
|
|
39
|
-
"replace": {
|
|
40
|
-
"type": "boolean",
|
|
41
|
-
"default": false
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"required": [
|
|
45
|
-
"project"
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"type": "object",
|
|
50
|
-
"properties": {
|
|
51
|
-
"componentName": {
|
|
52
|
-
"type": "string"
|
|
53
|
-
},
|
|
54
|
-
"name": {
|
|
55
|
-
"type": "string"
|
|
56
|
-
},
|
|
57
|
-
"context": {
|
|
58
|
-
"type": "string",
|
|
59
|
-
"description": "The context use to generate proper names for class, files, etc"
|
|
60
|
-
},
|
|
61
|
-
"nestModule": {
|
|
62
|
-
"type": "string",
|
|
63
|
-
"description": "The module name for the table nest operations"
|
|
64
|
-
},
|
|
65
|
-
"controllerName": {
|
|
66
|
-
"type": "string"
|
|
67
|
-
},
|
|
68
|
-
"backend": {
|
|
69
|
-
"type": "string",
|
|
70
|
-
"description": "The backend that should be used to handel data",
|
|
71
|
-
"enum": [
|
|
72
|
-
"none",
|
|
73
|
-
"nestjs",
|
|
74
|
-
"open-api",
|
|
75
|
-
"local"
|
|
76
|
-
],
|
|
77
|
-
"default": "none"
|
|
78
|
-
},
|
|
79
|
-
"directory": {
|
|
80
|
-
"type": "string",
|
|
81
|
-
"description": "A directory name or absolute path where the files should be generated. Relative to the project and feature base path if a feature is defined"
|
|
82
|
-
},
|
|
83
|
-
"shared": {
|
|
84
|
-
"type": "boolean",
|
|
85
|
-
"description": "Whether the generated code is used across the project",
|
|
86
|
-
"default": false
|
|
87
|
-
},
|
|
88
|
-
"scope": {
|
|
89
|
-
"type": "string"
|
|
90
|
-
},
|
|
91
|
-
"prefix": {
|
|
92
|
-
"type": "string"
|
|
93
|
-
},
|
|
94
|
-
"openApi": {
|
|
95
|
-
"type": "object",
|
|
96
|
-
"additionalProperties": true
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
]
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"type": "object",
|
|
104
|
-
"properties": {
|
|
105
|
-
"name": {
|
|
106
|
-
"type": "string",
|
|
107
|
-
"description": "The name of the control"
|
|
108
|
-
},
|
|
109
|
-
"type": {
|
|
110
|
-
"$ref": "#/definitions/type"
|
|
111
|
-
},
|
|
112
|
-
"isArray": {
|
|
113
|
-
"type": "boolean",
|
|
114
|
-
"description": "Whether the control value is an array",
|
|
115
|
-
"default": false
|
|
116
|
-
},
|
|
117
|
-
"state": {
|
|
118
|
-
"type": "string",
|
|
119
|
-
"description": "The initial state of the control"
|
|
120
|
-
},
|
|
121
|
-
"isRequired": {
|
|
122
|
-
"type": "boolean",
|
|
123
|
-
"description": "Whether the control value is required",
|
|
124
|
-
"default": false
|
|
125
|
-
},
|
|
126
|
-
"isReadonly": {
|
|
127
|
-
"type": "boolean",
|
|
128
|
-
"description": "Whether the control value is readonly",
|
|
129
|
-
"default": false
|
|
130
|
-
},
|
|
131
|
-
"isDisabled": {
|
|
132
|
-
"type": "boolean",
|
|
133
|
-
"description": "Whether the control value is disabled",
|
|
134
|
-
"default": false
|
|
135
|
-
},
|
|
136
|
-
"validatorList": {
|
|
137
|
-
"type": "array",
|
|
138
|
-
"items": {
|
|
139
|
-
"type": "string"
|
|
140
|
-
}
|
|
141
|
-
},
|
|
142
|
-
"kind": {
|
|
143
|
-
"type": "string",
|
|
144
|
-
"description": "The name of the template",
|
|
145
|
-
"enum": [
|
|
146
|
-
"default",
|
|
147
|
-
"input",
|
|
148
|
-
"select",
|
|
149
|
-
"checkbox",
|
|
150
|
-
"autocomplete-table-select",
|
|
151
|
-
"table-select",
|
|
152
|
-
"textarea",
|
|
153
|
-
"slide-toggle"
|
|
154
|
-
],
|
|
155
|
-
"default": "default"
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
"required": [
|
|
159
|
-
"name"
|
|
160
|
-
],
|
|
161
|
-
"additionalProperties": true
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"type": "object",
|
|
165
|
-
"properties": {
|
|
166
|
-
"formName": {
|
|
167
|
-
"alias": "form",
|
|
168
|
-
"type": "string",
|
|
169
|
-
"description": "The name of the form where the form control should be added",
|
|
170
|
-
"x-prompt": "Enter the name of the form where the form control should be added"
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
"required": [
|
|
174
|
-
"formName"
|
|
175
|
-
]
|
|
176
|
-
}
|
|
177
|
-
]
|
|
6
|
+
"$ref": "#/definitions/formControl"
|
|
178
7
|
},
|
|
179
8
|
{
|
|
180
9
|
"type": "object",
|
|
@@ -233,38 +62,66 @@
|
|
|
233
62
|
}
|
|
234
63
|
],
|
|
235
64
|
"definitions": {
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
|
|
239
|
-
|
|
65
|
+
"formControl": {
|
|
66
|
+
"type": "object",
|
|
67
|
+
"properties": {
|
|
68
|
+
"name": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"description": "The name of the control"
|
|
240
71
|
},
|
|
241
|
-
{
|
|
242
|
-
"
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
72
|
+
"type": {
|
|
73
|
+
"$ref": "#/definitions/type"
|
|
74
|
+
},
|
|
75
|
+
"isArray": {
|
|
76
|
+
"type": "boolean",
|
|
77
|
+
"description": "Whether the control value is an array",
|
|
78
|
+
"default": false
|
|
79
|
+
},
|
|
80
|
+
"state": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"description": "The initial state of the control"
|
|
83
|
+
},
|
|
84
|
+
"isRequired": {
|
|
85
|
+
"type": "boolean",
|
|
86
|
+
"description": "Whether the control value is required",
|
|
87
|
+
"default": false
|
|
88
|
+
},
|
|
89
|
+
"isReadonly": {
|
|
90
|
+
"type": "boolean",
|
|
91
|
+
"description": "Whether the control value is readonly",
|
|
92
|
+
"default": false
|
|
93
|
+
},
|
|
94
|
+
"isDisabled": {
|
|
95
|
+
"type": "boolean",
|
|
96
|
+
"description": "Whether the control value is disabled",
|
|
97
|
+
"default": false
|
|
98
|
+
},
|
|
99
|
+
"validatorList": {
|
|
100
|
+
"type": "array",
|
|
101
|
+
"items": {
|
|
102
|
+
"type": "string"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"kind": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"description": "The name of the template",
|
|
108
|
+
"enum": [
|
|
109
|
+
"default",
|
|
110
|
+
"input",
|
|
111
|
+
"select",
|
|
112
|
+
"checkbox",
|
|
113
|
+
"autocomplete-table-select",
|
|
114
|
+
"table-select",
|
|
115
|
+
"textarea",
|
|
116
|
+
"slide-toggle"
|
|
117
|
+
],
|
|
118
|
+
"default": "default"
|
|
266
119
|
}
|
|
267
|
-
|
|
120
|
+
},
|
|
121
|
+
"required": [
|
|
122
|
+
"name"
|
|
123
|
+
],
|
|
124
|
+
"additionalProperties": true
|
|
268
125
|
},
|
|
269
126
|
"property": {
|
|
270
127
|
"oneOf": [
|
|
@@ -288,100 +145,7 @@
|
|
|
288
145
|
"name"
|
|
289
146
|
]
|
|
290
147
|
}
|
|
291
|
-
]
|
|
292
|
-
"definitions": {
|
|
293
|
-
"type": {
|
|
294
|
-
"oneOf": [
|
|
295
|
-
{
|
|
296
|
-
"type": "string"
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"type": "object",
|
|
300
|
-
"properties": {
|
|
301
|
-
"name": {
|
|
302
|
-
"type": "string"
|
|
303
|
-
},
|
|
304
|
-
"isTypeOnly": {
|
|
305
|
-
"type": "boolean"
|
|
306
|
-
},
|
|
307
|
-
"moduleSpecifier": {
|
|
308
|
-
"type": "string"
|
|
309
|
-
},
|
|
310
|
-
"namedImport": {
|
|
311
|
-
"type": "string"
|
|
312
|
-
},
|
|
313
|
-
"namespaceImport": {
|
|
314
|
-
"type": "string"
|
|
315
|
-
},
|
|
316
|
-
"defaultImport": {
|
|
317
|
-
"type": "string"
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
|
-
"required": [
|
|
321
|
-
"name"
|
|
322
|
-
]
|
|
323
|
-
}
|
|
324
|
-
]
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"button": {
|
|
329
|
-
"type": "object",
|
|
330
|
-
"properties": {
|
|
331
|
-
"svgIcon": {
|
|
332
|
-
"type": "string"
|
|
333
|
-
},
|
|
334
|
-
"icon": {
|
|
335
|
-
"type": "string"
|
|
336
|
-
},
|
|
337
|
-
"directiveList": {
|
|
338
|
-
"type": "array",
|
|
339
|
-
"items": {
|
|
340
|
-
"$ref": "#/definitions/type"
|
|
341
|
-
}
|
|
342
|
-
},
|
|
343
|
-
"importList": {
|
|
344
|
-
"type": "array",
|
|
345
|
-
"items": {
|
|
346
|
-
"$ref": "#/definitions/type"
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
"definitions": {
|
|
351
|
-
"type": {
|
|
352
|
-
"oneOf": [
|
|
353
|
-
{
|
|
354
|
-
"type": "string"
|
|
355
|
-
},
|
|
356
|
-
{
|
|
357
|
-
"type": "object",
|
|
358
|
-
"properties": {
|
|
359
|
-
"name": {
|
|
360
|
-
"type": "string"
|
|
361
|
-
},
|
|
362
|
-
"isTypeOnly": {
|
|
363
|
-
"type": "boolean"
|
|
364
|
-
},
|
|
365
|
-
"moduleSpecifier": {
|
|
366
|
-
"type": "string"
|
|
367
|
-
},
|
|
368
|
-
"namedImport": {
|
|
369
|
-
"type": "string"
|
|
370
|
-
},
|
|
371
|
-
"namespaceImport": {
|
|
372
|
-
"type": "string"
|
|
373
|
-
},
|
|
374
|
-
"defaultImport": {
|
|
375
|
-
"type": "string"
|
|
376
|
-
}
|
|
377
|
-
},
|
|
378
|
-
"required": [
|
|
379
|
-
"name"
|
|
380
|
-
]
|
|
381
|
-
}
|
|
382
|
-
]
|
|
383
|
-
}
|
|
384
|
-
}
|
|
148
|
+
]
|
|
385
149
|
},
|
|
386
150
|
"upstream": {
|
|
387
151
|
"oneOf": [
|
|
@@ -441,6 +205,39 @@
|
|
|
441
205
|
]
|
|
442
206
|
}
|
|
443
207
|
]
|
|
208
|
+
},
|
|
209
|
+
"type": {
|
|
210
|
+
"oneOf": [
|
|
211
|
+
{
|
|
212
|
+
"type": "string"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"name": {
|
|
218
|
+
"type": "string"
|
|
219
|
+
},
|
|
220
|
+
"isTypeOnly": {
|
|
221
|
+
"type": "boolean"
|
|
222
|
+
},
|
|
223
|
+
"moduleSpecifier": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
},
|
|
226
|
+
"namedImport": {
|
|
227
|
+
"type": "string"
|
|
228
|
+
},
|
|
229
|
+
"namespaceImport": {
|
|
230
|
+
"type": "string"
|
|
231
|
+
},
|
|
232
|
+
"defaultImport": {
|
|
233
|
+
"type": "string"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"required": [
|
|
237
|
+
"name"
|
|
238
|
+
]
|
|
239
|
+
}
|
|
240
|
+
]
|
|
444
241
|
}
|
|
445
242
|
}
|
|
446
243
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "table-select-form-control-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"$ref": "
|
|
6
|
+
"$ref": "#/definitions/formControl"
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
9
|
"type": "object",
|
|
@@ -62,15 +62,12 @@
|
|
|
62
62
|
}
|
|
63
63
|
],
|
|
64
64
|
"definitions": {
|
|
65
|
-
"
|
|
66
|
-
"$ref": "
|
|
65
|
+
"formControl": {
|
|
66
|
+
"$ref": "../../form-control/template.schema.json"
|
|
67
67
|
},
|
|
68
68
|
"property": {
|
|
69
69
|
"$ref": "../../../property.schema.json"
|
|
70
70
|
},
|
|
71
|
-
"button": {
|
|
72
|
-
"$ref": "../../../button.schema.json"
|
|
73
|
-
},
|
|
74
71
|
"upstream": {
|
|
75
72
|
"$ref": "../../../upstream.schema.json"
|
|
76
73
|
}
|