@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.
Files changed (122) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +2 -2
  3. package/src/lib/accordion-item.d.ts +13 -6
  4. package/src/lib/accordion-item.js +10 -1
  5. package/src/lib/accordion-item.js.map +1 -1
  6. package/src/lib/coerce-accordion-component.js +1 -1
  7. package/src/lib/coerce-accordion-component.js.map +1 -1
  8. package/src/lib/coerce-accordion-item-table-component.js +1 -1
  9. package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
  10. package/src/lib/data-grid-options.d.ts +3 -0
  11. package/src/lib/data-grid-options.js +2 -0
  12. package/src/lib/data-grid-options.js.map +1 -1
  13. package/src/lib/form-control.d.ts +2 -2
  14. package/src/lib/form-control.js +14 -43
  15. package/src/lib/form-control.js.map +1 -1
  16. package/src/lib/minimum-table-component-options.js +2 -2
  17. package/src/lib/minimum-table-component-options.js.map +1 -1
  18. package/src/lib/table-column.d.ts +9 -5
  19. package/src/lib/table-column.js +37 -59
  20. package/src/lib/table-column.js.map +1 -1
  21. package/src/schema.json +2347 -0
  22. package/src/schematic-input.schema.json +607 -0
  23. package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
  24. package/src/schematics/accordion/accordion-component/index.js +51 -25
  25. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  26. package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
  27. package/src/schematics/accordion/accordion-component/schema.json +183 -360
  28. package/src/schematics/accordion/accordion-component/template.schema.json +22 -25
  29. package/src/schematics/accordion/accordion-item-component/index.d.ts +7 -2
  30. package/src/schematics/accordion/accordion-item-component/index.js +70 -49
  31. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  32. package/src/schematics/accordion/accordion-item-component/schema.json +167 -336
  33. package/src/schematics/accordion/accordion-item-component/template.schema.json +8 -15
  34. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
  35. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +21 -25
  36. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  37. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +321 -429
  38. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +9 -15
  39. package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
  40. package/src/schematics/accordion/item/accordion-item-switch-component/index.js +14 -6
  41. package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
  42. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +174 -346
  43. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +6 -15
  44. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
  45. package/src/schematics/accordion/item/accordion-item-table-component/index.js +11 -13
  46. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  47. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +453 -614
  48. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +9 -18
  49. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
  50. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +37 -61
  51. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  52. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +431 -592
  53. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +10 -19
  54. package/src/schematics/accordion-identifier.schema.json +25 -0
  55. package/src/schematics/accordion-item.schema.json +24 -0
  56. package/src/schematics/angular.schema.json +11 -3
  57. package/src/schematics/button.schema.json +1 -1
  58. package/src/schematics/data-grid-component/index.js +17 -16
  59. package/src/schematics/data-grid-component/index.js.map +1 -1
  60. package/src/schematics/data-grid-component/schema.json +212 -378
  61. package/src/schematics/data-grid-component/template.schema.json +6 -15
  62. package/src/schematics/data-grid-item.schema.json +4 -1
  63. package/src/schematics/data-grid.schema.json +10 -4
  64. package/src/schematics/dialog-component/schema.json +72 -158
  65. package/src/schematics/dialog-component/template.schema.json +3 -6
  66. package/src/schematics/form/control/input-form-control/schema.json +108 -306
  67. package/src/schematics/form/control/input-form-control/template.schema.json +6 -9
  68. package/src/schematics/form/control/select-form-control/schema.json +120 -307
  69. package/src/schematics/form/control/select-form-control/template.schema.json +6 -9
  70. package/src/schematics/form/control/table-select-form-control/index.js +1 -1
  71. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  72. package/src/schematics/form/control/table-select-form-control/schema.json +93 -296
  73. package/src/schematics/form/control/table-select-form-control/template.schema.json +3 -6
  74. package/src/schematics/form/form-component/schema.json +136 -238
  75. package/src/schematics/form/form-component/template.schema.json +6 -9
  76. package/src/schematics/form/form-control/schema.json +68 -176
  77. package/src/schematics/form/form-control/template.schema.json +6 -9
  78. package/src/schematics/form/form-definition/schema.json +125 -230
  79. package/src/schematics/form/form-definition/template.schema.json +6 -9
  80. package/src/schematics/form-component.schema.json +3 -3
  81. package/src/schematics/form-definition.schema.json +3 -3
  82. package/src/schematics/general.schema.json +1 -4
  83. package/src/schematics/input-form-control.schema.json +11 -3
  84. package/src/schematics/minimum-table.schema.json +11 -5
  85. package/src/schematics/pipe.schema.json +1 -1
  86. package/src/schematics/select-form-control.schema.json +15 -4
  87. package/src/schematics/table/action/dialog-table-action/schema.json +150 -230
  88. package/src/schematics/table/action/dialog-table-action/template.schema.json +3 -6
  89. package/src/schematics/table/action/form-table-action/schema.json +283 -321
  90. package/src/schematics/table/action/form-table-action/template.schema.json +6 -6
  91. package/src/schematics/table/action/navigation-table-action/schema.json +150 -230
  92. package/src/schematics/table/action/navigation-table-action/template.schema.json +3 -6
  93. package/src/schematics/table/action/open-api-table-action/schema.json +150 -230
  94. package/src/schematics/table/action/open-api-table-action/template.schema.json +3 -6
  95. package/src/schematics/table/action/operation-table-action/schema.json +138 -218
  96. package/src/schematics/table/action/operation-table-action/template.schema.json +3 -6
  97. package/src/schematics/table/header-button/form-table-header-button/schema.json +217 -261
  98. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +6 -6
  99. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +131 -211
  100. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +3 -6
  101. package/src/schematics/table/table-action/schema.json +56 -139
  102. package/src/schematics/table/table-action/template.schema.json +6 -6
  103. package/src/schematics/table/table-component/index.d.ts +1 -1
  104. package/src/schematics/table/table-component/index.js +2 -0
  105. package/src/schematics/table/table-component/index.js.map +1 -1
  106. package/src/schematics/table/table-component/schema.json +352 -547
  107. package/src/schematics/table/table-component/template.schema.json +6 -18
  108. package/src/schematics/table/table-header-button/schema.json +56 -139
  109. package/src/schematics/table/table-header-button/template.schema.json +6 -6
  110. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +6 -0
  111. package/src/schematics/table/tree-table-component/index.d.ts +3 -0
  112. package/src/schematics/table/tree-table-component/index.js +11 -3
  113. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  114. package/src/schematics/table/tree-table-component/schema.json +352 -547
  115. package/src/schematics/table/tree-table-component/template.schema.json +6 -18
  116. package/src/schematics/table-column.schema.json +4 -1
  117. package/src/schematics/table.schema.json +4 -1
  118. package/src/schematics/tree-component/schema.json +70 -62
  119. package/src/schematics/tree-component/template.schema.json +7 -2
  120. package/src/schematics/tree-table.schema.json +3 -3
  121. package/src/schematics/value.schema.json +1 -1
  122. package/src/template.schema.json +173 -0
@@ -3,172 +3,7 @@
3
3
  "$id": "form-table-action-schematic",
4
4
  "allOf": [
5
5
  {
6
- "allOf": [
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
- "type": {
106
- "type": "string"
107
- },
108
- "refresh": {
109
- "type": "boolean"
110
- },
111
- "confirm": {
112
- "type": "boolean"
113
- },
114
- "tooltip": {
115
- "type": "string"
116
- },
117
- "errorMessage": {
118
- "type": "string"
119
- },
120
- "successMessage": {
121
- "type": "string"
122
- },
123
- "priority": {
124
- "type": "number"
125
- },
126
- "checkFunction": {
127
- "type": "string"
128
- },
129
- "inHeader": {
130
- "type": "boolean"
131
- },
132
- "role": {
133
- "type": "string"
134
- },
135
- "icon": {
136
- "type": "string"
137
- },
138
- "svgIcon": {
139
- "type": "string"
140
- },
141
- "permission": {
142
- "type": "string"
143
- },
144
- "color": {
145
- "type": "string",
146
- "description": "Value for the color input of the mat-button / mat-icon component"
147
- },
148
- "cssClass": {
149
- "type": "string",
150
- "description": "Additional CSS classes added to the button element"
151
- },
152
- "options": {
153
- "type": "object",
154
- "additionalProperties": true
155
- }
156
- },
157
- "required": [
158
- "type"
159
- ]
160
- },
161
- {
162
- "type": "object",
163
- "properties": {
164
- "tableName": {
165
- "alias": "table",
166
- "type": "string",
167
- "description": "The name of the table action"
168
- }
169
- }
170
- }
171
- ]
6
+ "$ref": "#/definitions/tableActionSchematic"
172
7
  },
173
8
  {
174
9
  "type": "object",
@@ -224,145 +59,298 @@
224
59
  }
225
60
  },
226
61
  "formOptions": {
227
- "allOf": [
228
- {
229
- "type": "object",
230
- "properties": {
231
- "controlList": {
232
- "alias": "control",
233
- "type": "array",
234
- "items": {
235
- "type": "object",
236
- "properties": {
237
- "name": {
238
- "type": "string",
239
- "description": "The name of the control"
240
- },
241
- "type": {
242
- "$ref": "#/definitions/type"
243
- },
244
- "isArray": {
245
- "type": "boolean",
246
- "description": "Whether the control value is an array",
247
- "default": false
248
- },
249
- "state": {
250
- "type": "string",
251
- "description": "The initial state of the control"
252
- },
253
- "isRequired": {
254
- "type": "boolean",
255
- "description": "Whether the control value is required",
256
- "default": false
257
- },
258
- "isReadonly": {
259
- "type": "boolean",
260
- "description": "Whether the control value is readonly",
261
- "default": false
262
- },
263
- "isDisabled": {
264
- "type": "boolean",
265
- "description": "Whether the control value is disabled",
266
- "default": false
267
- },
268
- "validatorList": {
269
- "type": "array",
270
- "items": {
271
- "type": "string"
272
- }
273
- },
274
- "kind": {
275
- "type": "string",
276
- "description": "The name of the template",
277
- "enum": [
278
- "default",
279
- "input",
280
- "select",
281
- "checkbox",
282
- "autocomplete-table-select",
283
- "table-select",
284
- "textarea",
285
- "slide-toggle"
286
- ],
287
- "default": "default"
288
- }
289
- },
290
- "required": [
291
- "name"
292
- ],
293
- "additionalProperties": true
294
- }
295
- }
296
- },
297
- "required": [
298
- "controlList"
299
- ]
300
- },
301
- {
302
- "type": "object",
303
- "properties": {
304
- "window": {
305
- "type": "boolean",
306
- "description": "Whether the form can be opened in a window"
307
- },
308
- "role": {
309
- "type": "string",
310
- "description": "Define the role of the form"
311
- },
312
- "matFormFieldDefaultOptions": {
313
- "appearance": {
314
- "type": "string",
315
- "description": "The appearance of the mat form field",
316
- "enum": [
317
- "legacy",
318
- "standard",
319
- "fill",
320
- "outline"
321
- ]
322
- }
323
- }
324
- }
325
- }
326
- ]
62
+ "$ref": "#/definitions/formComponent"
327
63
  }
328
64
  }
329
65
  }
330
66
  ],
331
67
  "definitions": {
332
- "type": {
333
- "oneOf": [
68
+ "formComponent": {
69
+ "allOf": [
334
70
  {
335
- "type": "string"
71
+ "$ref": "#/definitions/formDefinition"
72
+ },
73
+ {
74
+ "type": "object",
75
+ "properties": {
76
+ "window": {
77
+ "type": "boolean",
78
+ "description": "Whether the form can be opened in a window"
79
+ },
80
+ "role": {
81
+ "type": "string",
82
+ "description": "Define the role of the form"
83
+ },
84
+ "matFormFieldDefaultOptions": {
85
+ "appearance": {
86
+ "type": "string",
87
+ "description": "The appearance of the mat form field",
88
+ "enum": [
89
+ "legacy",
90
+ "standard",
91
+ "fill",
92
+ "outline"
93
+ ]
94
+ }
95
+ }
96
+ }
97
+ }
98
+ ]
99
+ },
100
+ "tableActionSchematic": {
101
+ "allOf": [
102
+ {
103
+ "$ref": "#/definitions/angular"
104
+ },
105
+ {
106
+ "$ref": "#/definitions/tableAction"
107
+ },
108
+ {
109
+ "type": "object",
110
+ "properties": {
111
+ "tableName": {
112
+ "alias": "table",
113
+ "type": "string",
114
+ "description": "The name of the table action"
115
+ }
116
+ }
117
+ }
118
+ ]
119
+ },
120
+ "angular": {
121
+ "allOf": [
122
+ {
123
+ "$ref": "#/definitions/general"
336
124
  },
337
125
  {
338
126
  "type": "object",
339
127
  "properties": {
128
+ "componentName": {
129
+ "type": "string"
130
+ },
340
131
  "name": {
341
132
  "type": "string"
342
133
  },
343
- "isTypeOnly": {
344
- "type": "boolean"
134
+ "context": {
135
+ "type": "string",
136
+ "description": "The context use to generate proper names for class, files, etc"
345
137
  },
346
- "moduleSpecifier": {
347
- "type": "string"
138
+ "nestModule": {
139
+ "type": "string",
140
+ "description": "The module name for the table nest operations"
348
141
  },
349
- "namedImport": {
142
+ "controllerName": {
350
143
  "type": "string"
351
144
  },
352
- "namespaceImport": {
145
+ "backend": {
146
+ "$ref": "#/definitions/backend"
147
+ },
148
+ "directory": {
149
+ "type": "string",
150
+ "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"
151
+ },
152
+ "shared": {
153
+ "type": "boolean",
154
+ "description": "Whether the generated code is used across the project",
155
+ "default": false
156
+ },
157
+ "scope": {
353
158
  "type": "string"
354
159
  },
355
- "defaultImport": {
160
+ "prefix": {
356
161
  "type": "string"
162
+ },
163
+ "openApi": {
164
+ "type": "object",
165
+ "additionalProperties": true
357
166
  }
358
- },
359
- "required": [
360
- "name"
361
- ]
167
+ }
168
+ }
169
+ ]
170
+ },
171
+ "backend": {
172
+ "type": "string",
173
+ "description": "The backend that should be used to handel data",
174
+ "enum": [
175
+ "none",
176
+ "nestjs",
177
+ "open-api",
178
+ "local"
179
+ ],
180
+ "default": "none"
181
+ },
182
+ "formControl": {
183
+ "type": "object",
184
+ "properties": {
185
+ "name": {
186
+ "type": "string",
187
+ "description": "The name of the control"
188
+ },
189
+ "type": {
190
+ "$ref": "#/definitions/type"
191
+ },
192
+ "isArray": {
193
+ "type": "boolean",
194
+ "description": "Whether the control value is an array",
195
+ "default": false
196
+ },
197
+ "state": {
198
+ "type": "string",
199
+ "description": "The initial state of the control"
200
+ },
201
+ "isRequired": {
202
+ "type": "boolean",
203
+ "description": "Whether the control value is required",
204
+ "default": false
205
+ },
206
+ "isReadonly": {
207
+ "type": "boolean",
208
+ "description": "Whether the control value is readonly",
209
+ "default": false
210
+ },
211
+ "isDisabled": {
212
+ "type": "boolean",
213
+ "description": "Whether the control value is disabled",
214
+ "default": false
215
+ },
216
+ "validatorList": {
217
+ "type": "array",
218
+ "items": {
219
+ "type": "string"
220
+ }
221
+ },
222
+ "kind": {
223
+ "type": "string",
224
+ "description": "The name of the template",
225
+ "enum": [
226
+ "default",
227
+ "input",
228
+ "select",
229
+ "checkbox",
230
+ "autocomplete-table-select",
231
+ "table-select",
232
+ "textarea",
233
+ "slide-toggle"
234
+ ],
235
+ "default": "default"
236
+ }
237
+ },
238
+ "required": [
239
+ "name"
240
+ ],
241
+ "additionalProperties": true
242
+ },
243
+ "formDefinition": {
244
+ "type": "object",
245
+ "properties": {
246
+ "controlList": {
247
+ "alias": "control",
248
+ "type": "array",
249
+ "items": {
250
+ "$ref": "#/definitions/formControl"
251
+ }
252
+ }
253
+ },
254
+ "required": [
255
+ "controlList"
256
+ ]
257
+ },
258
+ "general": {
259
+ "type": "object",
260
+ "properties": {
261
+ "project": {
262
+ "type": "string",
263
+ "description": "Project name where the files should be generated"
264
+ },
265
+ "feature": {
266
+ "type": "string",
267
+ "description": "Feature name where the files should be generated"
268
+ },
269
+ "overwrite": {
270
+ "anyOf": [
271
+ {
272
+ "type": "boolean"
273
+ },
274
+ {
275
+ "type": "array",
276
+ "items": {
277
+ "type": "string"
278
+ }
279
+ }
280
+ ],
281
+ "description": "Overwrite existing files",
282
+ "default": false
283
+ },
284
+ "overwriteHtml": {
285
+ "type": "boolean",
286
+ "default": false
287
+ },
288
+ "replace": {
289
+ "type": "boolean",
290
+ "default": false
291
+ }
292
+ }
293
+ },
294
+ "tableAction": {
295
+ "type": "object",
296
+ "properties": {
297
+ "type": {
298
+ "type": "string"
299
+ },
300
+ "refresh": {
301
+ "type": "boolean"
302
+ },
303
+ "confirm": {
304
+ "type": "boolean"
305
+ },
306
+ "tooltip": {
307
+ "type": "string"
308
+ },
309
+ "errorMessage": {
310
+ "type": "string"
311
+ },
312
+ "successMessage": {
313
+ "type": "string"
314
+ },
315
+ "priority": {
316
+ "type": "number"
317
+ },
318
+ "checkFunction": {
319
+ "type": "string"
320
+ },
321
+ "inHeader": {
322
+ "type": "boolean"
323
+ },
324
+ "role": {
325
+ "type": "string"
326
+ },
327
+ "icon": {
328
+ "type": "string"
329
+ },
330
+ "svgIcon": {
331
+ "type": "string"
332
+ },
333
+ "permission": {
334
+ "type": "string"
335
+ },
336
+ "color": {
337
+ "type": "string",
338
+ "description": "Value for the color input of the mat-button / mat-icon component"
339
+ },
340
+ "cssClass": {
341
+ "type": "string",
342
+ "description": "Additional CSS classes added to the button element"
343
+ },
344
+ "options": {
345
+ "type": "object",
346
+ "additionalProperties": true
362
347
  }
348
+ },
349
+ "required": [
350
+ "type"
363
351
  ]
364
352
  },
365
- "property": {
353
+ "type": {
366
354
  "oneOf": [
367
355
  {
368
356
  "type": "string"
@@ -373,53 +361,27 @@
373
361
  "name": {
374
362
  "type": "string"
375
363
  },
376
- "type": {
377
- "$ref": "#/definitions/type"
378
- },
379
- "isArray": {
364
+ "isTypeOnly": {
380
365
  "type": "boolean"
366
+ },
367
+ "moduleSpecifier": {
368
+ "type": "string"
369
+ },
370
+ "namedImport": {
371
+ "type": "string"
372
+ },
373
+ "namespaceImport": {
374
+ "type": "string"
375
+ },
376
+ "defaultImport": {
377
+ "type": "string"
381
378
  }
382
379
  },
383
380
  "required": [
384
381
  "name"
385
382
  ]
386
383
  }
387
- ],
388
- "definitions": {
389
- "type": {
390
- "oneOf": [
391
- {
392
- "type": "string"
393
- },
394
- {
395
- "type": "object",
396
- "properties": {
397
- "name": {
398
- "type": "string"
399
- },
400
- "isTypeOnly": {
401
- "type": "boolean"
402
- },
403
- "moduleSpecifier": {
404
- "type": "string"
405
- },
406
- "namedImport": {
407
- "type": "string"
408
- },
409
- "namespaceImport": {
410
- "type": "string"
411
- },
412
- "defaultImport": {
413
- "type": "string"
414
- }
415
- },
416
- "required": [
417
- "name"
418
- ]
419
- }
420
- ]
421
- }
422
- }
384
+ ]
423
385
  }
424
386
  }
425
387
  }
@@ -3,7 +3,7 @@
3
3
  "$id": "form-table-action-schematic",
4
4
  "allOf": [
5
5
  {
6
- "$ref": "../../table-action/template.schema.json"
6
+ "$ref": "#/definitions/tableActionSchematic"
7
7
  },
8
8
  {
9
9
  "type": "object",
@@ -59,17 +59,17 @@
59
59
  }
60
60
  },
61
61
  "formOptions": {
62
- "$ref": "../../../form-component.schema.json"
62
+ "$ref": "#/definitions/formComponent"
63
63
  }
64
64
  }
65
65
  }
66
66
  ],
67
67
  "definitions": {
68
- "type": {
69
- "$ref": "../../../type.schema.json"
68
+ "formComponent": {
69
+ "$ref": "../../../form-component.schema.json"
70
70
  },
71
- "property": {
72
- "$ref": "../../../property.schema.json"
71
+ "tableActionSchematic": {
72
+ "$ref": "../../table-action/template.schema.json"
73
73
  }
74
74
  }
75
75
  }