@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
@@ -0,0 +1,607 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "schematic-input",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "properties": {
9
+ "package": {
10
+ "type": "string",
11
+ "enum": [
12
+ "@rxap/schematic-angular"
13
+ ]
14
+ },
15
+ "name": {
16
+ "type": "string",
17
+ "enum": [
18
+ "table-component"
19
+ ]
20
+ },
21
+ "options": {
22
+ "$ref": "#/definitions/tableComponentSchematic"
23
+ }
24
+ }
25
+ },
26
+ {
27
+ "type": "object",
28
+ "properties": {
29
+ "package": {
30
+ "type": "string",
31
+ "enum": [
32
+ "@rxap/schematic-angular"
33
+ ]
34
+ },
35
+ "name": {
36
+ "type": "string",
37
+ "enum": [
38
+ "tree-table-component"
39
+ ]
40
+ },
41
+ "options": {
42
+ "$ref": "#/definitions/treeTableComponentSchematic"
43
+ }
44
+ }
45
+ },
46
+ {
47
+ "type": "object",
48
+ "properties": {
49
+ "package": {
50
+ "type": "string",
51
+ "enum": [
52
+ "@rxap/schematic-angular"
53
+ ]
54
+ },
55
+ "name": {
56
+ "type": "string",
57
+ "enum": [
58
+ "form-component"
59
+ ]
60
+ },
61
+ "options": {
62
+ "$ref": "#/definitions/formComponentSchematic"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "type": "object",
68
+ "properties": {
69
+ "package": {
70
+ "type": "string",
71
+ "enum": [
72
+ "@rxap/schematic-angular"
73
+ ]
74
+ },
75
+ "name": {
76
+ "type": "string",
77
+ "enum": [
78
+ "form-definition"
79
+ ]
80
+ },
81
+ "options": {
82
+ "$ref": "#/definitions/formDefinitionSchematic"
83
+ }
84
+ }
85
+ },
86
+ {
87
+ "type": "object",
88
+ "properties": {
89
+ "package": {
90
+ "type": "string",
91
+ "enum": [
92
+ "@rxap/schematic-angular"
93
+ ]
94
+ },
95
+ "name": {
96
+ "type": "string",
97
+ "enum": [
98
+ "table-action"
99
+ ]
100
+ },
101
+ "options": {
102
+ "$ref": "#/definitions/tableActionSchematic"
103
+ }
104
+ }
105
+ },
106
+ {
107
+ "type": "object",
108
+ "properties": {
109
+ "package": {
110
+ "type": "string",
111
+ "enum": [
112
+ "@rxap/schematic-angular"
113
+ ]
114
+ },
115
+ "name": {
116
+ "type": "string",
117
+ "enum": [
118
+ "table-header-button"
119
+ ]
120
+ },
121
+ "options": {
122
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "type": "object",
128
+ "properties": {
129
+ "package": {
130
+ "type": "string",
131
+ "enum": [
132
+ "@rxap/schematic-angular"
133
+ ]
134
+ },
135
+ "name": {
136
+ "type": "string",
137
+ "enum": [
138
+ "form-table-header-button"
139
+ ]
140
+ },
141
+ "options": {
142
+ "$ref": "#/definitions/formTableHeaderButtonSchematic"
143
+ }
144
+ }
145
+ },
146
+ {
147
+ "type": "object",
148
+ "properties": {
149
+ "package": {
150
+ "type": "string",
151
+ "enum": [
152
+ "@rxap/schematic-angular"
153
+ ]
154
+ },
155
+ "name": {
156
+ "type": "string",
157
+ "enum": [
158
+ "navigation-table-header-button"
159
+ ]
160
+ },
161
+ "options": {
162
+ "$ref": "#/definitions/navigationTableHeaderButtonSchematic"
163
+ }
164
+ }
165
+ },
166
+ {
167
+ "type": "object",
168
+ "properties": {
169
+ "package": {
170
+ "type": "string",
171
+ "enum": [
172
+ "@rxap/schematic-angular"
173
+ ]
174
+ },
175
+ "name": {
176
+ "type": "string",
177
+ "enum": [
178
+ "accordion-component"
179
+ ]
180
+ },
181
+ "options": {
182
+ "$ref": "#/definitions/accordionComponentSchematic"
183
+ }
184
+ }
185
+ },
186
+ {
187
+ "type": "object",
188
+ "properties": {
189
+ "package": {
190
+ "type": "string",
191
+ "enum": [
192
+ "@rxap/schematic-angular"
193
+ ]
194
+ },
195
+ "name": {
196
+ "type": "string",
197
+ "enum": [
198
+ "accordion-item-component"
199
+ ]
200
+ },
201
+ "options": {
202
+ "$ref": "#/definitions/accordionItemComponentSchematic"
203
+ }
204
+ }
205
+ },
206
+ {
207
+ "type": "object",
208
+ "properties": {
209
+ "package": {
210
+ "type": "string",
211
+ "enum": [
212
+ "@rxap/schematic-angular"
213
+ ]
214
+ },
215
+ "name": {
216
+ "type": "string",
217
+ "enum": [
218
+ "accordion-item-table-component"
219
+ ]
220
+ },
221
+ "options": {
222
+ "$ref": "#/definitions/accordionItemTableComponentSchematic"
223
+ }
224
+ }
225
+ },
226
+ {
227
+ "type": "object",
228
+ "properties": {
229
+ "package": {
230
+ "type": "string",
231
+ "enum": [
232
+ "@rxap/schematic-angular"
233
+ ]
234
+ },
235
+ "name": {
236
+ "type": "string",
237
+ "enum": [
238
+ "accordion-item-switch-component"
239
+ ]
240
+ },
241
+ "options": {
242
+ "$ref": "#/definitions/accordionItemSwitchComponentSchematic"
243
+ }
244
+ }
245
+ },
246
+ {
247
+ "type": "object",
248
+ "properties": {
249
+ "package": {
250
+ "type": "string",
251
+ "enum": [
252
+ "@rxap/schematic-angular"
253
+ ]
254
+ },
255
+ "name": {
256
+ "type": "string",
257
+ "enum": [
258
+ "data-grid-component"
259
+ ]
260
+ },
261
+ "options": {
262
+ "$ref": "#/definitions/dataGridComponentSchematic"
263
+ }
264
+ }
265
+ },
266
+ {
267
+ "type": "object",
268
+ "properties": {
269
+ "package": {
270
+ "type": "string",
271
+ "enum": [
272
+ "@rxap/schematic-angular"
273
+ ]
274
+ },
275
+ "name": {
276
+ "type": "string",
277
+ "enum": [
278
+ "dialog-component"
279
+ ]
280
+ },
281
+ "options": {
282
+ "$ref": "#/definitions/dialogComponentSchematic"
283
+ }
284
+ }
285
+ },
286
+ {
287
+ "type": "object",
288
+ "properties": {
289
+ "package": {
290
+ "type": "string",
291
+ "enum": [
292
+ "@rxap/schematic-angular"
293
+ ]
294
+ },
295
+ "name": {
296
+ "type": "string",
297
+ "enum": [
298
+ "input-form-control"
299
+ ]
300
+ },
301
+ "options": {
302
+ "$ref": "#/definitions/inputFormControlSchematic"
303
+ }
304
+ }
305
+ },
306
+ {
307
+ "type": "object",
308
+ "properties": {
309
+ "package": {
310
+ "type": "string",
311
+ "enum": [
312
+ "@rxap/schematic-angular"
313
+ ]
314
+ },
315
+ "name": {
316
+ "type": "string",
317
+ "enum": [
318
+ "select-form-control"
319
+ ]
320
+ },
321
+ "options": {
322
+ "$ref": "#/definitions/selectFormControlSchematic"
323
+ }
324
+ }
325
+ },
326
+ {
327
+ "type": "object",
328
+ "properties": {
329
+ "package": {
330
+ "type": "string",
331
+ "enum": [
332
+ "@rxap/schematic-angular"
333
+ ]
334
+ },
335
+ "name": {
336
+ "type": "string",
337
+ "enum": [
338
+ "table-select-form-control"
339
+ ]
340
+ },
341
+ "options": {
342
+ "$ref": "#/definitions/tableSelectFormControlSchematic"
343
+ }
344
+ }
345
+ },
346
+ {
347
+ "type": "object",
348
+ "properties": {
349
+ "package": {
350
+ "type": "string",
351
+ "enum": [
352
+ "@rxap/schematic-angular"
353
+ ]
354
+ },
355
+ "name": {
356
+ "type": "string",
357
+ "enum": [
358
+ "form-control"
359
+ ]
360
+ },
361
+ "options": {
362
+ "$ref": "#/definitions/formControlSchematic"
363
+ }
364
+ }
365
+ },
366
+ {
367
+ "type": "object",
368
+ "properties": {
369
+ "package": {
370
+ "type": "string",
371
+ "enum": [
372
+ "@rxap/schematic-angular"
373
+ ]
374
+ },
375
+ "name": {
376
+ "type": "string",
377
+ "enum": [
378
+ "dialog-table-action"
379
+ ]
380
+ },
381
+ "options": {
382
+ "$ref": "#/definitions/dialogTableActionSchematic"
383
+ }
384
+ }
385
+ },
386
+ {
387
+ "type": "object",
388
+ "properties": {
389
+ "package": {
390
+ "type": "string",
391
+ "enum": [
392
+ "@rxap/schematic-angular"
393
+ ]
394
+ },
395
+ "name": {
396
+ "type": "string",
397
+ "enum": [
398
+ "form-table-action"
399
+ ]
400
+ },
401
+ "options": {
402
+ "$ref": "#/definitions/formTableActionSchematic"
403
+ }
404
+ }
405
+ },
406
+ {
407
+ "type": "object",
408
+ "properties": {
409
+ "package": {
410
+ "type": "string",
411
+ "enum": [
412
+ "@rxap/schematic-angular"
413
+ ]
414
+ },
415
+ "name": {
416
+ "type": "string",
417
+ "enum": [
418
+ "navigation-table-action"
419
+ ]
420
+ },
421
+ "options": {
422
+ "$ref": "#/definitions/navigationTableActionSchematic"
423
+ }
424
+ }
425
+ },
426
+ {
427
+ "type": "object",
428
+ "properties": {
429
+ "package": {
430
+ "type": "string",
431
+ "enum": [
432
+ "@rxap/schematic-angular"
433
+ ]
434
+ },
435
+ "name": {
436
+ "type": "string",
437
+ "enum": [
438
+ "operation-table-action"
439
+ ]
440
+ },
441
+ "options": {
442
+ "$ref": "#/definitions/operationTableActionSchematic"
443
+ }
444
+ }
445
+ },
446
+ {
447
+ "type": "object",
448
+ "properties": {
449
+ "package": {
450
+ "type": "string",
451
+ "enum": [
452
+ "@rxap/schematic-angular"
453
+ ]
454
+ },
455
+ "name": {
456
+ "type": "string",
457
+ "enum": [
458
+ "open-api-table-action"
459
+ ]
460
+ },
461
+ "options": {
462
+ "$ref": "#/definitions/openApiTableActionSchematic"
463
+ }
464
+ }
465
+ },
466
+ {
467
+ "type": "object",
468
+ "properties": {
469
+ "package": {
470
+ "type": "string",
471
+ "enum": [
472
+ "@rxap/schematic-angular"
473
+ ]
474
+ },
475
+ "name": {
476
+ "type": "string",
477
+ "enum": [
478
+ "tree-component"
479
+ ]
480
+ },
481
+ "options": {
482
+ "$ref": "#/definitions/treeComponentSchematic"
483
+ }
484
+ }
485
+ },
486
+ {
487
+ "type": "object",
488
+ "properties": {
489
+ "package": {
490
+ "type": "string",
491
+ "enum": [
492
+ "@rxap/schematic-angular"
493
+ ]
494
+ },
495
+ "name": {
496
+ "type": "string",
497
+ "enum": [
498
+ "accordion-item-data-grid-component"
499
+ ]
500
+ },
501
+ "options": {
502
+ "$ref": "#/definitions/accordionItemDataGridComponentSchematic"
503
+ }
504
+ }
505
+ },
506
+ {
507
+ "type": "object",
508
+ "properties": {
509
+ "package": {
510
+ "type": "string",
511
+ "enum": [
512
+ "@rxap/schematic-angular"
513
+ ]
514
+ },
515
+ "name": {
516
+ "type": "string",
517
+ "enum": [
518
+ "accordion-item-tree-table-component"
519
+ ]
520
+ },
521
+ "options": {
522
+ "$ref": "#/definitions/accordionItemTreeTableComponentSchematic"
523
+ }
524
+ }
525
+ }
526
+ ],
527
+ "definitions": {
528
+ "tableComponentSchematic": {
529
+ "$ref": "schematics/table/table-component/template.schema.json"
530
+ },
531
+ "treeTableComponentSchematic": {
532
+ "$ref": "schematics/table/tree-table-component/template.schema.json"
533
+ },
534
+ "formComponentSchematic": {
535
+ "$ref": "schematics/form/form-component/template.schema.json"
536
+ },
537
+ "formDefinitionSchematic": {
538
+ "$ref": "schematics/form/form-definition/template.schema.json"
539
+ },
540
+ "tableActionSchematic": {
541
+ "$ref": "schematics/table/table-action/template.schema.json"
542
+ },
543
+ "tableHeaderButtonSchematic": {
544
+ "$ref": "schematics/table/table-header-button/template.schema.json"
545
+ },
546
+ "formTableHeaderButtonSchematic": {
547
+ "$ref": "schematics/table/header-button/form-table-header-button/template.schema.json"
548
+ },
549
+ "navigationTableHeaderButtonSchematic": {
550
+ "$ref": "schematics/table/header-button/navigation-table-header-button/template.schema.json"
551
+ },
552
+ "accordionComponentSchematic": {
553
+ "$ref": "schematics/accordion/accordion-component/template.schema.json"
554
+ },
555
+ "accordionItemComponentSchematic": {
556
+ "$ref": "schematics/accordion/accordion-item-component/template.schema.json"
557
+ },
558
+ "accordionItemTableComponentSchematic": {
559
+ "$ref": "schematics/accordion/item/accordion-item-table-component/template.schema.json"
560
+ },
561
+ "accordionItemSwitchComponentSchematic": {
562
+ "$ref": "schematics/accordion/item/accordion-item-switch-component/template.schema.json"
563
+ },
564
+ "dataGridComponentSchematic": {
565
+ "$ref": "schematics/data-grid-component/template.schema.json"
566
+ },
567
+ "dialogComponentSchematic": {
568
+ "$ref": "schematics/dialog-component/template.schema.json"
569
+ },
570
+ "inputFormControlSchematic": {
571
+ "$ref": "schematics/form/control/input-form-control/template.schema.json"
572
+ },
573
+ "selectFormControlSchematic": {
574
+ "$ref": "schematics/form/control/select-form-control/template.schema.json"
575
+ },
576
+ "tableSelectFormControlSchematic": {
577
+ "$ref": "schematics/form/control/table-select-form-control/template.schema.json"
578
+ },
579
+ "formControlSchematic": {
580
+ "$ref": "schematics/form/form-control/template.schema.json"
581
+ },
582
+ "dialogTableActionSchematic": {
583
+ "$ref": "schematics/table/action/dialog-table-action/template.schema.json"
584
+ },
585
+ "formTableActionSchematic": {
586
+ "$ref": "schematics/table/action/form-table-action/template.schema.json"
587
+ },
588
+ "navigationTableActionSchematic": {
589
+ "$ref": "schematics/table/action/navigation-table-action/template.schema.json"
590
+ },
591
+ "operationTableActionSchematic": {
592
+ "$ref": "schematics/table/action/operation-table-action/template.schema.json"
593
+ },
594
+ "openApiTableActionSchematic": {
595
+ "$ref": "schematics/table/action/open-api-table-action/template.schema.json"
596
+ },
597
+ "treeComponentSchematic": {
598
+ "$ref": "schematics/tree-component/template.schema.json"
599
+ },
600
+ "accordionItemDataGridComponentSchematic": {
601
+ "$ref": "schematics/accordion/item/accordion-item-data-grid-component/template.schema.json"
602
+ },
603
+ "accordionItemTreeTableComponentSchematic": {
604
+ "$ref": "schematics/accordion/item/accordion-item-tree-table-component/template.schema.json"
605
+ }
606
+ }
607
+ }
@@ -1,4 +1,5 @@
1
- import { Tree } from '@angular-devkit/schematics';
1
+ import { Rule, Tree } from '@angular-devkit/schematics';
2
+ import { NormalizedDataProperty } from '@rxap/ts-morph';
2
3
  import { Normalized } from '@rxap/utilities';
3
4
  import { NormalizedAccordionHeader } from '../../../lib/accordion-header';
4
5
  import { NormalizedAccordionIdentifier } from '../../../lib/accordion-identifier';
@@ -13,5 +14,7 @@ export interface NormalizedAccordionComponentOptions extends Readonly<Normalized
13
14
  withPermission: boolean;
14
15
  header: NormalizedAccordionHeader | null;
15
16
  identifier: NormalizedAccordionIdentifier | null;
17
+ controllerName: string;
18
+ propertyList: NormalizedDataProperty[];
16
19
  }
17
- export default function (options: AccordionComponentOptions): (host: Tree) => import("@angular-devkit/schematics").Rule;
20
+ export default function (options: AccordionComponentOptions): (host: Tree) => Rule;