@rxap/schematic-angular 16.2.0-dev.20 → 16.2.0-dev.22
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 +19 -0
- package/README.md +1 -1
- package/collection.json +15 -0
- package/package.json +7 -7
- package/src/lib/coerce-form-component.js +15 -3
- package/src/lib/coerce-form-component.js.map +1 -1
- package/src/lib/data-grid-item.d.ts +3 -3
- package/src/lib/data-grid-item.js +2 -2
- package/src/lib/data-grid-item.js.map +1 -1
- package/src/lib/form/abstract-control.d.ts +29 -0
- package/src/lib/form/abstract-control.js +37 -0
- package/src/lib/form/abstract-control.js.map +1 -0
- package/src/lib/form/array/base-form-array.d.ts +18 -0
- package/src/lib/form/array/base-form-array.js +40 -0
- package/src/lib/form/array/base-form-array.js.map +1 -0
- package/src/lib/form/array/form-array-kind.d.ts +3 -0
- package/src/lib/form/array/form-array-kind.js +8 -0
- package/src/lib/form/array/form-array-kind.js.map +1 -0
- package/src/lib/form/array/form-array.d.ts +12 -0
- package/src/lib/form/array/form-array.js +18 -0
- package/src/lib/form/array/form-array.js.map +1 -0
- package/src/lib/form/coerce-control-component-imports.d.ts +3 -0
- package/src/lib/form/coerce-control-component-imports.js +18 -0
- package/src/lib/form/coerce-control-component-imports.js.map +1 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.d.ts +6 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.js +34 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -0
- package/src/lib/form/control/base-form-control.d.ts +14 -0
- package/src/lib/form/control/base-form-control.js +19 -0
- package/src/lib/form/control/base-form-control.js.map +1 -0
- package/src/lib/form/control/checkbox-form-control.d.ts +11 -0
- package/src/lib/form/control/checkbox-form-control.js +23 -0
- package/src/lib/form/control/checkbox-form-control.js.map +1 -0
- package/src/lib/form/control/form-control-kind.d.ts +9 -0
- package/src/lib/form/control/form-control-kind.js +14 -0
- package/src/lib/form/control/form-control-kind.js.map +1 -0
- package/src/lib/form/control/form-control.d.ts +18 -0
- package/src/lib/form/control/form-control.js +43 -0
- package/src/lib/form/control/form-control.js.map +1 -0
- package/src/lib/form/control/form-field-form-control.d.ts +33 -0
- package/src/lib/form/control/form-field-form-control.js +76 -0
- package/src/lib/form/control/form-field-form-control.js.map +1 -0
- package/src/lib/form/control/input-form-control.d.ts +14 -0
- package/src/lib/form/control/input-form-control.js +71 -0
- package/src/lib/form/control/input-form-control.js.map +1 -0
- package/src/lib/form/control/select-form-control.d.ts +18 -0
- package/src/lib/form/control/select-form-control.js +29 -0
- package/src/lib/form/control/select-form-control.js.map +1 -0
- package/src/lib/form/control/slide-toggle-form-control.d.ts +11 -0
- package/src/lib/form/control/slide-toggle-form-control.js +23 -0
- package/src/lib/form/control/slide-toggle-form-control.js.map +1 -0
- package/src/lib/form/control/table-select-form-control.d.ts +43 -0
- package/src/lib/form/control/table-select-form-control.js +69 -0
- package/src/lib/form/control/table-select-form-control.js.map +1 -0
- package/src/lib/form/control.d.ts +8 -0
- package/src/lib/form/control.js +38 -0
- package/src/lib/form/control.js.map +1 -0
- package/src/lib/form/generate-form-template.d.ts +2 -2
- package/src/lib/form/group/base-form-group.d.ts +17 -0
- package/src/lib/form/group/base-form-group.js +20 -0
- package/src/lib/form/group/base-form-group.js.map +1 -0
- package/src/lib/form/group/form-group-kind.d.ts +3 -0
- package/src/lib/form/group/form-group-kind.js +8 -0
- package/src/lib/form/group/form-group-kind.js.map +1 -0
- package/src/lib/form/group/form-group.d.ts +12 -0
- package/src/lib/form/group/form-group.js +18 -0
- package/src/lib/form/group/form-group.js.map +1 -0
- package/src/lib/table-column.d.ts +4 -3
- package/src/lib/table-column.js +5 -4
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +1691 -1311
- package/src/schematic-input.schema.json +109 -156
- package/src/schematics/abstract-control.schema.json +78 -0
- package/src/schematics/accordion/accordion-component/schema.json +127 -127
- package/src/schematics/accordion/accordion-item-component/schema.json +18 -18
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +685 -81
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +76 -76
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +555 -97
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +537 -79
- package/src/schematics/autocomplete-table-select-form-control.schema.json +96 -0
- package/src/schematics/base-form-array.schema.json +45 -0
- package/src/schematics/base-form-control.schema.json +27 -0
- package/src/schematics/base-form-group.schema.json +42 -0
- package/src/schematics/checkbox-form-control.schema.json +30 -0
- package/src/schematics/control.schema.json +26 -0
- package/src/schematics/data-grid-component/index.js +4 -0
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +685 -81
- package/src/schematics/data-grid-item.schema.json +3 -3
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.d.ts +10 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +247 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.d.ts +4 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +453 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/template.schema.json +39 -0
- package/src/schematics/form/control/input-form-control/index.d.ts +1 -1
- package/src/schematics/form/control/input-form-control/index.js +4 -4
- package/src/schematics/form/control/input-form-control/index.js.map +1 -1
- package/src/schematics/form/control/input-form-control/schema.d.ts +2 -2
- package/src/schematics/form/control/input-form-control/schema.json +256 -86
- package/src/schematics/form/control/input-form-control/template.schema.json +16 -3
- package/src/schematics/form/control/select-form-control/index.d.ts +2 -2
- package/src/schematics/form/control/select-form-control/index.js +21 -14
- package/src/schematics/form/control/select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/select-form-control/schema.d.ts +2 -3
- package/src/schematics/form/control/select-form-control/schema.json +249 -90
- package/src/schematics/form/control/select-form-control/template.schema.json +16 -3
- package/src/schematics/form/control/table-select-form-control/index.d.ts +3 -9
- package/src/schematics/form/control/table-select-form-control/index.js +24 -18
- package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/table-select-form-control/schema.d.ts +2 -3
- package/src/schematics/form/control/table-select-form-control/schema.json +325 -123
- package/src/schematics/form/control/table-select-form-control/template.schema.json +16 -60
- package/src/schematics/form/form-array/index.d.ts +9 -0
- package/src/schematics/form/form-array/index.js +54 -0
- package/src/schematics/form/form-array/index.js.map +1 -0
- package/src/schematics/form/form-array/schema.d.ts +4 -0
- package/src/schematics/form/form-array/schema.json +906 -0
- package/src/schematics/form/form-array/template.schema.json +33 -0
- package/src/schematics/form/form-component/files/component/__componentName__.component.html.hbs +4 -1
- package/src/schematics/form/form-component/index.d.ts +2 -4
- package/src/schematics/form/form-component/index.js +8 -24
- package/src/schematics/form/form-component/index.js.map +1 -1
- package/src/schematics/form/form-component/schema.d.ts +2 -2
- package/src/schematics/form/form-component/schema.json +749 -86
- package/src/schematics/form/form-control/index.d.ts +3 -5
- package/src/schematics/form/form-control/index.js +8 -20
- package/src/schematics/form/form-control/index.js.map +1 -1
- package/src/schematics/form/form-control/schema.d.ts +2 -4
- package/src/schematics/form/form-control/schema.json +599 -59
- package/src/schematics/form/form-control/template.schema.json +1 -2
- package/src/schematics/form/form-definition/index.d.ts +2 -2
- package/src/schematics/form/form-definition/index.js +28 -15
- package/src/schematics/form/form-definition/index.js.map +1 -1
- package/src/schematics/form/form-definition/schema.d.ts +2 -2
- package/src/schematics/form/form-definition/schema.json +743 -56
- package/src/schematics/form/form-group/index.d.ts +9 -0
- package/src/schematics/form/form-group/index.js +54 -0
- package/src/schematics/form/form-group/index.js.map +1 -0
- package/src/schematics/form/form-group/schema.d.ts +4 -0
- package/src/schematics/form/form-group/schema.json +906 -0
- package/src/schematics/form/form-group/template.schema.json +33 -0
- package/src/schematics/form/templates/checkbox-form-control.hbs +1 -1
- package/src/schematics/form/templates/default-form-array.hbs +27 -0
- package/src/schematics/form/templates/default-form-group.hbs +13 -0
- package/src/schematics/form/templates/input-form-control.hbs +7 -7
- package/src/schematics/form/templates/select-form-control.hbs +5 -0
- package/src/schematics/form/templates/table-select-form-control.hbs +16 -16
- package/src/schematics/form-array.schema.json +40 -0
- package/src/schematics/form-control.schema.json +69 -54
- package/src/schematics/form-definition.schema.json +3 -3
- package/src/schematics/form-group.schema.json +40 -0
- package/src/schematics/input-form-control.schema.json +10 -6
- package/src/schematics/select-form-control.schema.json +8 -4
- package/src/schematics/slide-toggle-form-control.schema.json +30 -0
- package/src/schematics/table/action/dialog-table-action/schema.json +20 -20
- package/src/schematics/table/action/form-table-action/index.d.ts +2 -2
- package/src/schematics/table/action/form-table-action/index.js +3 -4
- package/src/schematics/table/action/form-table-action/index.js.map +1 -1
- package/src/schematics/table/action/form-table-action/schema.d.ts +2 -2
- package/src/schematics/table/action/form-table-action/schema.json +750 -87
- package/src/schematics/table/action/navigation-table-action/schema.json +20 -20
- package/src/schematics/table/action/open-api-table-action/schema.json +20 -20
- package/src/schematics/table/action/operation-table-action/schema.json +20 -20
- package/src/schematics/table/header-button/form-table-header-button/index.d.ts +2 -2
- package/src/schematics/table/header-button/form-table-header-button/index.js +2 -2
- package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
- package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +2 -2
- package/src/schematics/table/header-button/form-table-header-button/schema.json +818 -81
- package/src/schematics/table/header-button/form-table-header-button/template.schema.json +4 -22
- package/src/schematics/table/header-button/navigation-table-header-button/schema.json +20 -20
- package/src/schematics/table/table-action/schema.json +47 -47
- package/src/schematics/table/table-component/index.d.ts +2 -2
- package/src/schematics/table/table-component/schema.json +537 -79
- package/src/schematics/table/table-header-button/schema.json +40 -40
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +1 -1
- package/src/schematics/table/tree-table-component/schema.json +521 -63
- package/src/schematics/table-select-form-control.schema.json +96 -0
- package/src/schematics/textarea-form-control.schema.json +32 -0
- package/src/template.schema.json +45 -0
- package/src/lib/form-component-control.d.ts +0 -8
- package/src/lib/form-component-control.js +0 -15
- package/src/lib/form-component-control.js.map +0 -1
- package/src/lib/form-control.d.ts +0 -136
- package/src/lib/form-control.js +0 -265
- package/src/lib/form-control.js.map +0 -1
- package/src/lib/form-definition-control.d.ts +0 -5
- package/src/lib/form-definition-control.js +0 -30
- package/src/lib/form-definition-control.js.map +0 -1
|
@@ -91,55 +91,22 @@
|
|
|
91
91
|
}
|
|
92
92
|
],
|
|
93
93
|
"definitions": {
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
94
|
+
"accordionIdentifier": {
|
|
95
|
+
"type": "object",
|
|
96
|
+
"properties": {
|
|
97
|
+
"property": {
|
|
98
|
+
"$ref": "#/definitions/property"
|
|
98
99
|
},
|
|
99
|
-
{
|
|
100
|
-
"type": "
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
"name": {
|
|
106
|
-
"type": "string"
|
|
107
|
-
},
|
|
108
|
-
"context": {
|
|
109
|
-
"type": "string",
|
|
110
|
-
"description": "The context use to generate proper names for class, files, etc"
|
|
111
|
-
},
|
|
112
|
-
"nestModule": {
|
|
113
|
-
"type": "string",
|
|
114
|
-
"description": "The module name for the table nest operations"
|
|
115
|
-
},
|
|
116
|
-
"controllerName": {
|
|
117
|
-
"type": "string"
|
|
118
|
-
},
|
|
119
|
-
"backend": {
|
|
120
|
-
"$ref": "#/definitions/backend"
|
|
121
|
-
},
|
|
122
|
-
"directory": {
|
|
123
|
-
"type": "string",
|
|
124
|
-
"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"
|
|
125
|
-
},
|
|
126
|
-
"shared": {
|
|
127
|
-
"type": "boolean",
|
|
128
|
-
"description": "Whether the generated code is used across the project",
|
|
129
|
-
"default": false
|
|
130
|
-
},
|
|
131
|
-
"scope": {
|
|
132
|
-
"type": "string"
|
|
133
|
-
},
|
|
134
|
-
"prefix": {
|
|
135
|
-
"type": "string"
|
|
136
|
-
},
|
|
137
|
-
"openApi": {
|
|
138
|
-
"type": "object",
|
|
139
|
-
"additionalProperties": true
|
|
140
|
-
}
|
|
141
|
-
}
|
|
100
|
+
"source": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"enum": [
|
|
103
|
+
"route"
|
|
104
|
+
],
|
|
105
|
+
"default": "route"
|
|
142
106
|
}
|
|
107
|
+
},
|
|
108
|
+
"required": [
|
|
109
|
+
"property"
|
|
143
110
|
]
|
|
144
111
|
},
|
|
145
112
|
"accordionItem": {
|
|
@@ -188,104 +155,54 @@
|
|
|
188
155
|
},
|
|
189
156
|
"additionalProperties": true
|
|
190
157
|
},
|
|
191
|
-
"
|
|
192
|
-
"
|
|
158
|
+
"angular": {
|
|
159
|
+
"allOf": [
|
|
193
160
|
{
|
|
194
|
-
"
|
|
161
|
+
"$ref": "#/definitions/general"
|
|
195
162
|
},
|
|
196
163
|
{
|
|
197
164
|
"type": "object",
|
|
198
165
|
"properties": {
|
|
166
|
+
"componentName": {
|
|
167
|
+
"type": "string"
|
|
168
|
+
},
|
|
199
169
|
"name": {
|
|
200
170
|
"type": "string"
|
|
201
171
|
},
|
|
202
|
-
"
|
|
203
|
-
"
|
|
172
|
+
"context": {
|
|
173
|
+
"type": "string",
|
|
174
|
+
"description": "The context use to generate proper names for class, files, etc"
|
|
204
175
|
},
|
|
205
|
-
"
|
|
206
|
-
"type": "boolean"
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
"required": [
|
|
210
|
-
"name"
|
|
211
|
-
]
|
|
212
|
-
}
|
|
213
|
-
]
|
|
214
|
-
},
|
|
215
|
-
"accordionIdentifier": {
|
|
216
|
-
"type": "object",
|
|
217
|
-
"properties": {
|
|
218
|
-
"property": {
|
|
219
|
-
"$ref": "#/definitions/property"
|
|
220
|
-
},
|
|
221
|
-
"source": {
|
|
222
|
-
"type": "string",
|
|
223
|
-
"enum": [
|
|
224
|
-
"route"
|
|
225
|
-
],
|
|
226
|
-
"default": "route"
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
|
-
"required": [
|
|
230
|
-
"property"
|
|
231
|
-
]
|
|
232
|
-
},
|
|
233
|
-
"upstream": {
|
|
234
|
-
"oneOf": [
|
|
235
|
-
{
|
|
236
|
-
"type": "object",
|
|
237
|
-
"properties": {
|
|
238
|
-
"kind": {
|
|
176
|
+
"nestModule": {
|
|
239
177
|
"type": "string",
|
|
240
|
-
"
|
|
241
|
-
"open-api"
|
|
242
|
-
]
|
|
178
|
+
"description": "The module name for the table nest operations"
|
|
243
179
|
},
|
|
244
|
-
"
|
|
180
|
+
"controllerName": {
|
|
245
181
|
"type": "string"
|
|
246
182
|
},
|
|
183
|
+
"backend": {
|
|
184
|
+
"$ref": "#/definitions/backend"
|
|
185
|
+
},
|
|
186
|
+
"directory": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"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"
|
|
189
|
+
},
|
|
190
|
+
"shared": {
|
|
191
|
+
"type": "boolean",
|
|
192
|
+
"description": "Whether the generated code is used across the project",
|
|
193
|
+
"default": false
|
|
194
|
+
},
|
|
247
195
|
"scope": {
|
|
248
196
|
"type": "string"
|
|
249
197
|
},
|
|
250
|
-
"
|
|
198
|
+
"prefix": {
|
|
199
|
+
"type": "string"
|
|
200
|
+
},
|
|
201
|
+
"openApi": {
|
|
251
202
|
"type": "object",
|
|
252
|
-
"
|
|
253
|
-
"pageIndex": {
|
|
254
|
-
"type": "string"
|
|
255
|
-
},
|
|
256
|
-
"pageSize": {
|
|
257
|
-
"type": "string"
|
|
258
|
-
},
|
|
259
|
-
"sortBy": {
|
|
260
|
-
"type": "string"
|
|
261
|
-
},
|
|
262
|
-
"sortDirection": {
|
|
263
|
-
"type": "string"
|
|
264
|
-
},
|
|
265
|
-
"list": {
|
|
266
|
-
"type": "string"
|
|
267
|
-
},
|
|
268
|
-
"total": {
|
|
269
|
-
"type": "string"
|
|
270
|
-
},
|
|
271
|
-
"filter": {
|
|
272
|
-
"type": "object",
|
|
273
|
-
"properties": {
|
|
274
|
-
"eq": {
|
|
275
|
-
"type": "string"
|
|
276
|
-
},
|
|
277
|
-
"join": {
|
|
278
|
-
"type": "string"
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
}
|
|
203
|
+
"additionalProperties": true
|
|
283
204
|
}
|
|
284
|
-
}
|
|
285
|
-
"required": [
|
|
286
|
-
"kind",
|
|
287
|
-
"operationId"
|
|
288
|
-
]
|
|
205
|
+
}
|
|
289
206
|
}
|
|
290
207
|
]
|
|
291
208
|
},
|
|
@@ -336,6 +253,30 @@
|
|
|
336
253
|
}
|
|
337
254
|
}
|
|
338
255
|
},
|
|
256
|
+
"property": {
|
|
257
|
+
"oneOf": [
|
|
258
|
+
{
|
|
259
|
+
"type": "string"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"type": "object",
|
|
263
|
+
"properties": {
|
|
264
|
+
"name": {
|
|
265
|
+
"type": "string"
|
|
266
|
+
},
|
|
267
|
+
"type": {
|
|
268
|
+
"$ref": "#/definitions/type"
|
|
269
|
+
},
|
|
270
|
+
"isArray": {
|
|
271
|
+
"type": "boolean"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"required": [
|
|
275
|
+
"name"
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
]
|
|
279
|
+
},
|
|
339
280
|
"type": {
|
|
340
281
|
"oneOf": [
|
|
341
282
|
{
|
|
@@ -368,6 +309,65 @@
|
|
|
368
309
|
]
|
|
369
310
|
}
|
|
370
311
|
]
|
|
312
|
+
},
|
|
313
|
+
"upstream": {
|
|
314
|
+
"oneOf": [
|
|
315
|
+
{
|
|
316
|
+
"type": "object",
|
|
317
|
+
"properties": {
|
|
318
|
+
"kind": {
|
|
319
|
+
"type": "string",
|
|
320
|
+
"enum": [
|
|
321
|
+
"open-api"
|
|
322
|
+
]
|
|
323
|
+
},
|
|
324
|
+
"operationId": {
|
|
325
|
+
"type": "string"
|
|
326
|
+
},
|
|
327
|
+
"scope": {
|
|
328
|
+
"type": "string"
|
|
329
|
+
},
|
|
330
|
+
"mapper": {
|
|
331
|
+
"type": "object",
|
|
332
|
+
"properties": {
|
|
333
|
+
"pageIndex": {
|
|
334
|
+
"type": "string"
|
|
335
|
+
},
|
|
336
|
+
"pageSize": {
|
|
337
|
+
"type": "string"
|
|
338
|
+
},
|
|
339
|
+
"sortBy": {
|
|
340
|
+
"type": "string"
|
|
341
|
+
},
|
|
342
|
+
"sortDirection": {
|
|
343
|
+
"type": "string"
|
|
344
|
+
},
|
|
345
|
+
"list": {
|
|
346
|
+
"type": "string"
|
|
347
|
+
},
|
|
348
|
+
"total": {
|
|
349
|
+
"type": "string"
|
|
350
|
+
},
|
|
351
|
+
"filter": {
|
|
352
|
+
"type": "object",
|
|
353
|
+
"properties": {
|
|
354
|
+
"eq": {
|
|
355
|
+
"type": "string"
|
|
356
|
+
},
|
|
357
|
+
"join": {
|
|
358
|
+
"type": "string"
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"required": [
|
|
366
|
+
"kind",
|
|
367
|
+
"operationId"
|
|
368
|
+
]
|
|
369
|
+
}
|
|
370
|
+
]
|
|
371
371
|
}
|
|
372
372
|
}
|
|
373
373
|
}
|
|
@@ -22,6 +22,24 @@
|
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
24
|
"definitions": {
|
|
25
|
+
"accordionIdentifier": {
|
|
26
|
+
"type": "object",
|
|
27
|
+
"properties": {
|
|
28
|
+
"property": {
|
|
29
|
+
"$ref": "#/definitions/property"
|
|
30
|
+
},
|
|
31
|
+
"source": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"enum": [
|
|
34
|
+
"route"
|
|
35
|
+
],
|
|
36
|
+
"default": "route"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"required": [
|
|
40
|
+
"property"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
25
43
|
"accordionItem": {
|
|
26
44
|
"type": "object",
|
|
27
45
|
"properties": {
|
|
@@ -119,24 +137,6 @@
|
|
|
119
137
|
}
|
|
120
138
|
]
|
|
121
139
|
},
|
|
122
|
-
"accordionIdentifier": {
|
|
123
|
-
"type": "object",
|
|
124
|
-
"properties": {
|
|
125
|
-
"property": {
|
|
126
|
-
"$ref": "#/definitions/property"
|
|
127
|
-
},
|
|
128
|
-
"source": {
|
|
129
|
-
"type": "string",
|
|
130
|
-
"enum": [
|
|
131
|
-
"route"
|
|
132
|
-
],
|
|
133
|
-
"default": "route"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"required": [
|
|
137
|
-
"property"
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
140
|
"backend": {
|
|
141
141
|
"type": "string",
|
|
142
142
|
"description": "The backend that should be used to handel data",
|