@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
@@ -1,101 +1,9 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/schema",
3
- "$id": "accordion-item-table-component-schematic",
3
+ "$id": "accordion-item-switch-component-schematic",
4
4
  "allOf": [
5
5
  {
6
- "allOf": [
7
- {
8
- "type": "object",
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
- ]
45
- },
46
- {
47
- "type": "object",
48
- "properties": {
49
- "componentName": {
50
- "type": "string"
51
- },
52
- "name": {
53
- "type": "string"
54
- },
55
- "context": {
56
- "type": "string",
57
- "description": "The context use to generate proper names for class, files, etc"
58
- },
59
- "nestModule": {
60
- "type": "string",
61
- "description": "The module name for the table nest operations"
62
- },
63
- "controllerName": {
64
- "type": "string"
65
- },
66
- "backend": {
67
- "type": "string",
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"
76
- },
77
- "directory": {
78
- "type": "string",
79
- "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"
80
- },
81
- "shared": {
82
- "type": "boolean",
83
- "description": "Whether the generated code is used across the project",
84
- "default": false
85
- },
86
- "scope": {
87
- "type": "string"
88
- },
89
- "prefix": {
90
- "type": "string"
91
- },
92
- "openApi": {
93
- "type": "object",
94
- "additionalProperties": true
95
- }
96
- }
97
- }
98
- ]
6
+ "$ref": "#/definitions/angular"
99
7
  },
100
8
  {
101
9
  "$ref": "#/definitions/accordionItem"
@@ -168,6 +76,57 @@
168
76
  }
169
77
  ],
170
78
  "definitions": {
79
+ "angular": {
80
+ "allOf": [
81
+ {
82
+ "$ref": "#/definitions/general"
83
+ },
84
+ {
85
+ "type": "object",
86
+ "properties": {
87
+ "componentName": {
88
+ "type": "string"
89
+ },
90
+ "name": {
91
+ "type": "string"
92
+ },
93
+ "context": {
94
+ "type": "string",
95
+ "description": "The context use to generate proper names for class, files, etc"
96
+ },
97
+ "nestModule": {
98
+ "type": "string",
99
+ "description": "The module name for the table nest operations"
100
+ },
101
+ "controllerName": {
102
+ "type": "string"
103
+ },
104
+ "backend": {
105
+ "$ref": "#/definitions/backend"
106
+ },
107
+ "directory": {
108
+ "type": "string",
109
+ "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"
110
+ },
111
+ "shared": {
112
+ "type": "boolean",
113
+ "description": "Whether the generated code is used across the project",
114
+ "default": false
115
+ },
116
+ "scope": {
117
+ "type": "string"
118
+ },
119
+ "prefix": {
120
+ "type": "string"
121
+ },
122
+ "openApi": {
123
+ "type": "object",
124
+ "additionalProperties": true
125
+ }
126
+ }
127
+ }
128
+ ]
129
+ },
171
130
  "accordionItem": {
172
131
  "type": "object",
173
132
  "properties": {
@@ -192,48 +151,28 @@
192
151
  },
193
152
  "description": "The modifiers to apply to the accordion item type"
194
153
  },
154
+ "identifier": {
155
+ "$ref": "#/definitions/accordionIdentifier"
156
+ },
195
157
  "title": {
196
158
  "type": "string"
197
159
  },
198
160
  "description": {
199
161
  "type": "string"
162
+ },
163
+ "upstream": {
164
+ "$ref": "#/definitions/upstream"
165
+ },
166
+ "propertyList": {
167
+ "alias": "property",
168
+ "type": "array",
169
+ "items": {
170
+ "$ref": "#/definitions/property"
171
+ }
200
172
  }
201
173
  },
202
174
  "additionalProperties": true
203
175
  },
204
- "type": {
205
- "oneOf": [
206
- {
207
- "type": "string"
208
- },
209
- {
210
- "type": "object",
211
- "properties": {
212
- "name": {
213
- "type": "string"
214
- },
215
- "isTypeOnly": {
216
- "type": "boolean"
217
- },
218
- "moduleSpecifier": {
219
- "type": "string"
220
- },
221
- "namedImport": {
222
- "type": "string"
223
- },
224
- "namespaceImport": {
225
- "type": "string"
226
- },
227
- "defaultImport": {
228
- "type": "string"
229
- }
230
- },
231
- "required": [
232
- "name"
233
- ]
234
- }
235
- ]
236
- },
237
176
  "property": {
238
177
  "oneOf": [
239
178
  {
@@ -256,275 +195,164 @@
256
195
  "name"
257
196
  ]
258
197
  }
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
- }
198
+ ]
295
199
  },
296
- "button": {
200
+ "accordionIdentifier": {
297
201
  "type": "object",
298
202
  "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
- }
203
+ "property": {
204
+ "$ref": "#/definitions/property"
310
205
  },
311
- "importList": {
312
- "type": "array",
313
- "items": {
314
- "$ref": "#/definitions/type"
315
- }
206
+ "source": {
207
+ "type": "string",
208
+ "enum": [
209
+ "route"
210
+ ],
211
+ "default": "route"
316
212
  }
317
213
  },
318
- "definitions": {
319
- "type": {
320
- "oneOf": [
214
+ "required": [
215
+ "property"
216
+ ]
217
+ },
218
+ "backend": {
219
+ "type": "string",
220
+ "description": "The backend that should be used to handel data",
221
+ "enum": [
222
+ "none",
223
+ "nestjs",
224
+ "open-api",
225
+ "local"
226
+ ],
227
+ "default": "none"
228
+ },
229
+ "general": {
230
+ "type": "object",
231
+ "properties": {
232
+ "project": {
233
+ "type": "string",
234
+ "description": "Project name where the files should be generated"
235
+ },
236
+ "feature": {
237
+ "type": "string",
238
+ "description": "Feature name where the files should be generated"
239
+ },
240
+ "overwrite": {
241
+ "anyOf": [
321
242
  {
322
- "type": "string"
243
+ "type": "boolean"
323
244
  },
324
245
  {
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
- ]
246
+ "type": "array",
247
+ "items": {
248
+ "type": "string"
249
+ }
349
250
  }
350
- ]
251
+ ],
252
+ "description": "Overwrite existing files",
253
+ "default": false
254
+ },
255
+ "overwriteHtml": {
256
+ "type": "boolean",
257
+ "default": false
258
+ },
259
+ "replace": {
260
+ "type": "boolean",
261
+ "default": false
351
262
  }
352
263
  }
353
264
  },
354
- "pipe": {
265
+ "type": {
355
266
  "oneOf": [
356
267
  {
357
268
  "type": "string"
358
269
  },
359
270
  {
360
- "allOf": [
361
- {
362
- "$ref": "#/definitions/type"
271
+ "type": "object",
272
+ "properties": {
273
+ "name": {
274
+ "type": "string"
363
275
  },
364
- {
365
- "type": "object",
366
- "properties": {
367
- "argumentList": {
368
- "type": "array",
369
- "items": {
370
- "$ref": "#/definitions/value"
371
- }
372
- }
373
- },
374
- "required": [
375
- "name"
376
- ]
377
- }
378
- ]
379
- }
380
- ],
381
- "definitions": {
382
- "type": {
383
- "oneOf": [
384
- {
276
+ "isTypeOnly": {
277
+ "type": "boolean"
278
+ },
279
+ "moduleSpecifier": {
385
280
  "type": "string"
386
281
  },
387
- {
388
- "type": "object",
389
- "properties": {
390
- "name": {
391
- "type": "string"
392
- },
393
- "isTypeOnly": {
394
- "type": "boolean"
395
- },
396
- "moduleSpecifier": {
397
- "type": "string"
398
- },
399
- "namedImport": {
400
- "type": "string"
401
- },
402
- "namespaceImport": {
403
- "type": "string"
404
- },
405
- "defaultImport": {
406
- "type": "string"
407
- }
408
- },
409
- "required": [
410
- "name"
411
- ]
412
- }
413
- ]
414
- },
415
- "value": {
416
- "oneOf": [
417
- {
282
+ "namedImport": {
418
283
  "type": "string"
419
284
  },
420
- {
421
- "type": "object",
422
- "properties": {
423
- "type": {
424
- "$ref": "#/definitions/type"
425
- },
426
- "value": {
427
- "type": "string"
428
- }
429
- },
430
- "required": [
431
- "value"
432
- ]
433
- }
434
- ],
435
- "definitions": {
436
- "type": {
437
- "oneOf": [
438
- {
439
- "type": "string"
440
- },
441
- {
442
- "type": "object",
443
- "properties": {
444
- "name": {
445
- "type": "string"
446
- },
447
- "isTypeOnly": {
448
- "type": "boolean"
449
- },
450
- "moduleSpecifier": {
451
- "type": "string"
452
- },
453
- "namedImport": {
454
- "type": "string"
455
- },
456
- "namespaceImport": {
457
- "type": "string"
458
- },
459
- "defaultImport": {
460
- "type": "string"
461
- }
462
- },
463
- "required": [
464
- "name"
465
- ]
466
- }
467
- ]
285
+ "namespaceImport": {
286
+ "type": "string"
287
+ },
288
+ "defaultImport": {
289
+ "type": "string"
468
290
  }
469
- }
291
+ },
292
+ "required": [
293
+ "name"
294
+ ]
470
295
  }
471
- }
296
+ ]
472
297
  },
473
- "value": {
298
+ "upstream": {
474
299
  "oneOf": [
475
- {
476
- "type": "string"
477
- },
478
300
  {
479
301
  "type": "object",
480
302
  "properties": {
481
- "type": {
482
- "$ref": "#/definitions/type"
303
+ "kind": {
304
+ "type": "string",
305
+ "enum": [
306
+ "open-api"
307
+ ]
483
308
  },
484
- "value": {
309
+ "operationId": {
485
310
  "type": "string"
486
- }
487
- },
488
- "required": [
489
- "value"
490
- ]
491
- }
492
- ],
493
- "definitions": {
494
- "type": {
495
- "oneOf": [
496
- {
311
+ },
312
+ "scope": {
497
313
  "type": "string"
498
314
  },
499
- {
315
+ "mapper": {
500
316
  "type": "object",
501
317
  "properties": {
502
- "name": {
318
+ "pageIndex": {
503
319
  "type": "string"
504
320
  },
505
- "isTypeOnly": {
506
- "type": "boolean"
321
+ "pageSize": {
322
+ "type": "string"
507
323
  },
508
- "moduleSpecifier": {
324
+ "sortBy": {
509
325
  "type": "string"
510
326
  },
511
- "namedImport": {
327
+ "sortDirection": {
512
328
  "type": "string"
513
329
  },
514
- "namespaceImport": {
330
+ "list": {
515
331
  "type": "string"
516
332
  },
517
- "defaultImport": {
333
+ "total": {
518
334
  "type": "string"
335
+ },
336
+ "filter": {
337
+ "type": "object",
338
+ "properties": {
339
+ "eq": {
340
+ "type": "string"
341
+ },
342
+ "join": {
343
+ "type": "string"
344
+ }
345
+ }
519
346
  }
520
- },
521
- "required": [
522
- "name"
523
- ]
347
+ }
524
348
  }
349
+ },
350
+ "required": [
351
+ "kind",
352
+ "operationId"
525
353
  ]
526
354
  }
527
- }
355
+ ]
528
356
  }
529
357
  }
530
358
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/schema",
3
- "$id": "accordion-item-table-component-schematic",
3
+ "$id": "accordion-item-switch-component-schematic",
4
4
  "allOf": [
5
5
  {
6
- "$ref": "../../../angular.schema.json"
6
+ "$ref": "#/definitions/angular"
7
7
  },
8
8
  {
9
- "$ref": "../../../accordion-item.schema.json"
9
+ "$ref": "#/definitions/accordionItem"
10
10
  },
11
11
  {
12
12
  "type": "object",
@@ -68,23 +68,14 @@
68
68
  }
69
69
  ],
70
70
  "definitions": {
71
+ "angular": {
72
+ "$ref": "../../../angular.schema.json"
73
+ },
71
74
  "accordionItem": {
72
75
  "$ref": "../../../accordion-item.schema.json"
73
76
  },
74
- "type": {
75
- "$ref": "../../../type.schema.json"
76
- },
77
77
  "property": {
78
78
  "$ref": "../../../property.schema.json"
79
- },
80
- "button": {
81
- "$ref": "../../../button.schema.json"
82
- },
83
- "pipe": {
84
- "$ref": "../../../pipe.schema.json"
85
- },
86
- "value": {
87
- "$ref": "../../../value.schema.json"
88
79
  }
89
80
  }
90
81
  }
@@ -3,7 +3,7 @@ import { NormalizedTableAccordionItem } from '../../../../lib/accordion-item';
3
3
  import { NormalizedAngularOptions } from '../../../../lib/angular-options';
4
4
  import { NormalizedAccordionItemStandaloneComponentOptions } from '../../accordion-item-component';
5
5
  import { AccordionItemTableComponentOptions } from './schema';
6
- export interface NormalizedAccordionItemTableComponentOptions extends Omit<Readonly<Normalized<AccordionItemTableComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'table' | 'importList'>, Omit<NormalizedTableAccordionItem, 'kind'> {
6
+ export interface NormalizedAccordionItemTableComponentOptions extends Omit<Readonly<Normalized<AccordionItemTableComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'table' | 'importList' | 'propertyList'>, Omit<NormalizedTableAccordionItem, 'kind'> {
7
7
  }
8
8
  export declare function NormalizeAccordionItemTableComponentOptions(options: Readonly<AccordionItemTableComponentOptions>): Readonly<NormalizedAccordionItemTableComponentOptions>;
9
9
  export default function (options: AccordionItemTableComponentOptions): () => import("@angular-devkit/schematics").Rule;