@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,45 +3,17 @@
|
|
|
3
3
|
"$id": "form-component-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
+
"$ref": "#/definitions/angular"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"$ref": "#/definitions/formComponent"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"definitions": {
|
|
13
|
+
"angular": {
|
|
6
14
|
"allOf": [
|
|
7
15
|
{
|
|
8
|
-
"
|
|
9
|
-
"properties": {
|
|
10
|
-
"project": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"description": "Project name where the files should be generated"
|
|
13
|
-
},
|
|
14
|
-
"feature": {
|
|
15
|
-
"type": "string",
|
|
16
|
-
"description": "Feature name where the files should be generated"
|
|
17
|
-
},
|
|
18
|
-
"overwrite": {
|
|
19
|
-
"anyOf": [
|
|
20
|
-
{
|
|
21
|
-
"type": "boolean"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"type": "array",
|
|
25
|
-
"items": {
|
|
26
|
-
"type": "string"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"description": "Overwrite existing files",
|
|
31
|
-
"default": false
|
|
32
|
-
},
|
|
33
|
-
"overwriteHtml": {
|
|
34
|
-
"type": "boolean",
|
|
35
|
-
"default": false
|
|
36
|
-
},
|
|
37
|
-
"replace": {
|
|
38
|
-
"type": "boolean",
|
|
39
|
-
"default": false
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"required": [
|
|
43
|
-
"project"
|
|
44
|
-
]
|
|
16
|
+
"$ref": "#/definitions/general"
|
|
45
17
|
},
|
|
46
18
|
{
|
|
47
19
|
"type": "object",
|
|
@@ -64,15 +36,7 @@
|
|
|
64
36
|
"type": "string"
|
|
65
37
|
},
|
|
66
38
|
"backend": {
|
|
67
|
-
"
|
|
68
|
-
"description": "The backend that should be used to handel data",
|
|
69
|
-
"enum": [
|
|
70
|
-
"none",
|
|
71
|
-
"nestjs",
|
|
72
|
-
"open-api",
|
|
73
|
-
"local"
|
|
74
|
-
],
|
|
75
|
-
"default": "none"
|
|
39
|
+
"$ref": "#/definitions/backend"
|
|
76
40
|
},
|
|
77
41
|
"directory": {
|
|
78
42
|
"type": "string",
|
|
@@ -97,80 +61,10 @@
|
|
|
97
61
|
}
|
|
98
62
|
]
|
|
99
63
|
},
|
|
100
|
-
{
|
|
64
|
+
"formComponent": {
|
|
101
65
|
"allOf": [
|
|
102
66
|
{
|
|
103
|
-
"
|
|
104
|
-
"properties": {
|
|
105
|
-
"controlList": {
|
|
106
|
-
"alias": "control",
|
|
107
|
-
"type": "array",
|
|
108
|
-
"items": {
|
|
109
|
-
"type": "object",
|
|
110
|
-
"properties": {
|
|
111
|
-
"name": {
|
|
112
|
-
"type": "string",
|
|
113
|
-
"description": "The name of the control"
|
|
114
|
-
},
|
|
115
|
-
"type": {
|
|
116
|
-
"$ref": "#/definitions/type"
|
|
117
|
-
},
|
|
118
|
-
"isArray": {
|
|
119
|
-
"type": "boolean",
|
|
120
|
-
"description": "Whether the control value is an array",
|
|
121
|
-
"default": false
|
|
122
|
-
},
|
|
123
|
-
"state": {
|
|
124
|
-
"type": "string",
|
|
125
|
-
"description": "The initial state of the control"
|
|
126
|
-
},
|
|
127
|
-
"isRequired": {
|
|
128
|
-
"type": "boolean",
|
|
129
|
-
"description": "Whether the control value is required",
|
|
130
|
-
"default": false
|
|
131
|
-
},
|
|
132
|
-
"isReadonly": {
|
|
133
|
-
"type": "boolean",
|
|
134
|
-
"description": "Whether the control value is readonly",
|
|
135
|
-
"default": false
|
|
136
|
-
},
|
|
137
|
-
"isDisabled": {
|
|
138
|
-
"type": "boolean",
|
|
139
|
-
"description": "Whether the control value is disabled",
|
|
140
|
-
"default": false
|
|
141
|
-
},
|
|
142
|
-
"validatorList": {
|
|
143
|
-
"type": "array",
|
|
144
|
-
"items": {
|
|
145
|
-
"type": "string"
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"kind": {
|
|
149
|
-
"type": "string",
|
|
150
|
-
"description": "The name of the template",
|
|
151
|
-
"enum": [
|
|
152
|
-
"default",
|
|
153
|
-
"input",
|
|
154
|
-
"select",
|
|
155
|
-
"checkbox",
|
|
156
|
-
"autocomplete-table-select",
|
|
157
|
-
"table-select",
|
|
158
|
-
"textarea",
|
|
159
|
-
"slide-toggle"
|
|
160
|
-
],
|
|
161
|
-
"default": "default"
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
"required": [
|
|
165
|
-
"name"
|
|
166
|
-
],
|
|
167
|
-
"additionalProperties": true
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
"required": [
|
|
172
|
-
"controlList"
|
|
173
|
-
]
|
|
67
|
+
"$ref": "#/definitions/formDefinition"
|
|
174
68
|
},
|
|
175
69
|
{
|
|
176
70
|
"type": "object",
|
|
@@ -198,9 +92,130 @@
|
|
|
198
92
|
}
|
|
199
93
|
}
|
|
200
94
|
]
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
|
|
95
|
+
},
|
|
96
|
+
"backend": {
|
|
97
|
+
"type": "string",
|
|
98
|
+
"description": "The backend that should be used to handel data",
|
|
99
|
+
"enum": [
|
|
100
|
+
"none",
|
|
101
|
+
"nestjs",
|
|
102
|
+
"open-api",
|
|
103
|
+
"local"
|
|
104
|
+
],
|
|
105
|
+
"default": "none"
|
|
106
|
+
},
|
|
107
|
+
"formControl": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"properties": {
|
|
110
|
+
"name": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"description": "The name of the control"
|
|
113
|
+
},
|
|
114
|
+
"type": {
|
|
115
|
+
"$ref": "#/definitions/type"
|
|
116
|
+
},
|
|
117
|
+
"isArray": {
|
|
118
|
+
"type": "boolean",
|
|
119
|
+
"description": "Whether the control value is an array",
|
|
120
|
+
"default": false
|
|
121
|
+
},
|
|
122
|
+
"state": {
|
|
123
|
+
"type": "string",
|
|
124
|
+
"description": "The initial state of the control"
|
|
125
|
+
},
|
|
126
|
+
"isRequired": {
|
|
127
|
+
"type": "boolean",
|
|
128
|
+
"description": "Whether the control value is required",
|
|
129
|
+
"default": false
|
|
130
|
+
},
|
|
131
|
+
"isReadonly": {
|
|
132
|
+
"type": "boolean",
|
|
133
|
+
"description": "Whether the control value is readonly",
|
|
134
|
+
"default": false
|
|
135
|
+
},
|
|
136
|
+
"isDisabled": {
|
|
137
|
+
"type": "boolean",
|
|
138
|
+
"description": "Whether the control value is disabled",
|
|
139
|
+
"default": false
|
|
140
|
+
},
|
|
141
|
+
"validatorList": {
|
|
142
|
+
"type": "array",
|
|
143
|
+
"items": {
|
|
144
|
+
"type": "string"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"kind": {
|
|
148
|
+
"type": "string",
|
|
149
|
+
"description": "The name of the template",
|
|
150
|
+
"enum": [
|
|
151
|
+
"default",
|
|
152
|
+
"input",
|
|
153
|
+
"select",
|
|
154
|
+
"checkbox",
|
|
155
|
+
"autocomplete-table-select",
|
|
156
|
+
"table-select",
|
|
157
|
+
"textarea",
|
|
158
|
+
"slide-toggle"
|
|
159
|
+
],
|
|
160
|
+
"default": "default"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"required": [
|
|
164
|
+
"name"
|
|
165
|
+
],
|
|
166
|
+
"additionalProperties": true
|
|
167
|
+
},
|
|
168
|
+
"formDefinition": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {
|
|
171
|
+
"controlList": {
|
|
172
|
+
"alias": "control",
|
|
173
|
+
"type": "array",
|
|
174
|
+
"items": {
|
|
175
|
+
"$ref": "#/definitions/formControl"
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"required": [
|
|
180
|
+
"controlList"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
"general": {
|
|
184
|
+
"type": "object",
|
|
185
|
+
"properties": {
|
|
186
|
+
"project": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"description": "Project name where the files should be generated"
|
|
189
|
+
},
|
|
190
|
+
"feature": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"description": "Feature name where the files should be generated"
|
|
193
|
+
},
|
|
194
|
+
"overwrite": {
|
|
195
|
+
"anyOf": [
|
|
196
|
+
{
|
|
197
|
+
"type": "boolean"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"type": "array",
|
|
201
|
+
"items": {
|
|
202
|
+
"type": "string"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"description": "Overwrite existing files",
|
|
207
|
+
"default": false
|
|
208
|
+
},
|
|
209
|
+
"overwriteHtml": {
|
|
210
|
+
"type": "boolean",
|
|
211
|
+
"default": false
|
|
212
|
+
},
|
|
213
|
+
"replace": {
|
|
214
|
+
"type": "boolean",
|
|
215
|
+
"default": false
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
204
219
|
"type": {
|
|
205
220
|
"oneOf": [
|
|
206
221
|
{
|
|
@@ -233,123 +248,6 @@
|
|
|
233
248
|
]
|
|
234
249
|
}
|
|
235
250
|
]
|
|
236
|
-
},
|
|
237
|
-
"property": {
|
|
238
|
-
"oneOf": [
|
|
239
|
-
{
|
|
240
|
-
"type": "string"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"type": "object",
|
|
244
|
-
"properties": {
|
|
245
|
-
"name": {
|
|
246
|
-
"type": "string"
|
|
247
|
-
},
|
|
248
|
-
"type": {
|
|
249
|
-
"$ref": "#/definitions/type"
|
|
250
|
-
},
|
|
251
|
-
"isArray": {
|
|
252
|
-
"type": "boolean"
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
"required": [
|
|
256
|
-
"name"
|
|
257
|
-
]
|
|
258
|
-
}
|
|
259
|
-
],
|
|
260
|
-
"definitions": {
|
|
261
|
-
"type": {
|
|
262
|
-
"oneOf": [
|
|
263
|
-
{
|
|
264
|
-
"type": "string"
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
"type": "object",
|
|
268
|
-
"properties": {
|
|
269
|
-
"name": {
|
|
270
|
-
"type": "string"
|
|
271
|
-
},
|
|
272
|
-
"isTypeOnly": {
|
|
273
|
-
"type": "boolean"
|
|
274
|
-
},
|
|
275
|
-
"moduleSpecifier": {
|
|
276
|
-
"type": "string"
|
|
277
|
-
},
|
|
278
|
-
"namedImport": {
|
|
279
|
-
"type": "string"
|
|
280
|
-
},
|
|
281
|
-
"namespaceImport": {
|
|
282
|
-
"type": "string"
|
|
283
|
-
},
|
|
284
|
-
"defaultImport": {
|
|
285
|
-
"type": "string"
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
"required": [
|
|
289
|
-
"name"
|
|
290
|
-
]
|
|
291
|
-
}
|
|
292
|
-
]
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
"button": {
|
|
297
|
-
"type": "object",
|
|
298
|
-
"properties": {
|
|
299
|
-
"svgIcon": {
|
|
300
|
-
"type": "string"
|
|
301
|
-
},
|
|
302
|
-
"icon": {
|
|
303
|
-
"type": "string"
|
|
304
|
-
},
|
|
305
|
-
"directiveList": {
|
|
306
|
-
"type": "array",
|
|
307
|
-
"items": {
|
|
308
|
-
"$ref": "#/definitions/type"
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
"importList": {
|
|
312
|
-
"type": "array",
|
|
313
|
-
"items": {
|
|
314
|
-
"$ref": "#/definitions/type"
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
"definitions": {
|
|
319
|
-
"type": {
|
|
320
|
-
"oneOf": [
|
|
321
|
-
{
|
|
322
|
-
"type": "string"
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
"type": "object",
|
|
326
|
-
"properties": {
|
|
327
|
-
"name": {
|
|
328
|
-
"type": "string"
|
|
329
|
-
},
|
|
330
|
-
"isTypeOnly": {
|
|
331
|
-
"type": "boolean"
|
|
332
|
-
},
|
|
333
|
-
"moduleSpecifier": {
|
|
334
|
-
"type": "string"
|
|
335
|
-
},
|
|
336
|
-
"namedImport": {
|
|
337
|
-
"type": "string"
|
|
338
|
-
},
|
|
339
|
-
"namespaceImport": {
|
|
340
|
-
"type": "string"
|
|
341
|
-
},
|
|
342
|
-
"defaultImport": {
|
|
343
|
-
"type": "string"
|
|
344
|
-
}
|
|
345
|
-
},
|
|
346
|
-
"required": [
|
|
347
|
-
"name"
|
|
348
|
-
]
|
|
349
|
-
}
|
|
350
|
-
]
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
251
|
}
|
|
354
252
|
}
|
|
355
253
|
}
|
|
@@ -3,21 +3,18 @@
|
|
|
3
3
|
"$id": "form-component-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"$ref": "
|
|
6
|
+
"$ref": "#/definitions/angular"
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
|
-
"$ref": "
|
|
9
|
+
"$ref": "#/definitions/formComponent"
|
|
10
10
|
}
|
|
11
11
|
],
|
|
12
12
|
"definitions": {
|
|
13
|
-
"
|
|
14
|
-
"$ref": "../../
|
|
15
|
-
},
|
|
16
|
-
"property": {
|
|
17
|
-
"$ref": "../../property.schema.json"
|
|
13
|
+
"angular": {
|
|
14
|
+
"$ref": "../../angular.schema.json"
|
|
18
15
|
},
|
|
19
|
-
"
|
|
20
|
-
"$ref": "../../
|
|
16
|
+
"formComponent": {
|
|
17
|
+
"$ref": "../../form-component.schema.json"
|
|
21
18
|
}
|
|
22
19
|
}
|
|
23
20
|
}
|