@rxap/schematic-angular 16.2.0-dev.14 → 16.2.0-dev.16

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 (135) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +1 -1
  3. package/package.json +8 -8
  4. package/src/lib/accordion-identifier.d.ts +4 -0
  5. package/src/lib/accordion-identifier.js.map +1 -1
  6. package/src/lib/accordion-item.d.ts +13 -6
  7. package/src/lib/accordion-item.js +19 -4
  8. package/src/lib/accordion-item.js.map +1 -1
  9. package/src/lib/coerce-accordion-component.js +1 -1
  10. package/src/lib/coerce-accordion-component.js.map +1 -1
  11. package/src/lib/coerce-accordion-item-table-component.js +1 -1
  12. package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
  13. package/src/lib/data-grid-options.d.ts +9 -1
  14. package/src/lib/data-grid-options.js +36 -6
  15. package/src/lib/data-grid-options.js.map +1 -1
  16. package/src/lib/form-control.d.ts +9 -3
  17. package/src/lib/form-control.js +19 -54
  18. package/src/lib/form-control.js.map +1 -1
  19. package/src/lib/merge-with-column-list.js +3 -1
  20. package/src/lib/merge-with-column-list.js.map +1 -1
  21. package/src/lib/minimum-table-component-options.js +2 -2
  22. package/src/lib/minimum-table-component-options.js.map +1 -1
  23. package/src/lib/pipe-option.js +0 -2
  24. package/src/lib/pipe-option.js.map +1 -1
  25. package/src/lib/table-column.d.ts +9 -5
  26. package/src/lib/table-column.js +36 -60
  27. package/src/lib/table-column.js.map +1 -1
  28. package/src/schema.json +2368 -0
  29. package/src/schematic-input.schema.json +607 -0
  30. package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
  31. package/src/schematics/accordion/accordion-component/index.js +51 -25
  32. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  33. package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
  34. package/src/schematics/accordion/accordion-component/schema.json +183 -360
  35. package/src/schematics/accordion/accordion-component/template.schema.json +22 -25
  36. package/src/schematics/accordion/accordion-item-component/index.d.ts +7 -2
  37. package/src/schematics/accordion/accordion-item-component/index.js +70 -49
  38. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  39. package/src/schematics/accordion/accordion-item-component/schema.json +167 -336
  40. package/src/schematics/accordion/accordion-item-component/template.schema.json +8 -15
  41. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
  42. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +21 -25
  43. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  44. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +331 -429
  45. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +9 -15
  46. package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
  47. package/src/schematics/accordion/item/accordion-item-switch-component/index.js +14 -6
  48. package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
  49. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +174 -346
  50. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +6 -15
  51. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
  52. package/src/schematics/accordion/item/accordion-item-table-component/index.js +11 -13
  53. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  54. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +453 -614
  55. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +9 -18
  56. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
  57. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +37 -61
  58. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  59. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +431 -592
  60. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +10 -19
  61. package/src/schematics/accordion-identifier.schema.json +25 -0
  62. package/src/schematics/accordion-item.schema.json +24 -0
  63. package/src/schematics/angular.schema.json +11 -3
  64. package/src/schematics/button.schema.json +1 -1
  65. package/src/schematics/data-grid-component/index.d.ts +2 -3
  66. package/src/schematics/data-grid-component/index.js +42 -45
  67. package/src/schematics/data-grid-component/index.js.map +1 -1
  68. package/src/schematics/data-grid-component/schema.json +261 -375
  69. package/src/schematics/data-grid-component/template.schema.json +6 -15
  70. package/src/schematics/data-grid-item.schema.json +4 -1
  71. package/src/schematics/data-grid.schema.json +26 -4
  72. package/src/schematics/dialog-component/schema.json +72 -158
  73. package/src/schematics/dialog-component/template.schema.json +3 -6
  74. package/src/schematics/form/control/input-form-control/schema.json +108 -306
  75. package/src/schematics/form/control/input-form-control/template.schema.json +6 -9
  76. package/src/schematics/form/control/select-form-control/schema.json +120 -307
  77. package/src/schematics/form/control/select-form-control/template.schema.json +6 -9
  78. package/src/schematics/form/control/table-select-form-control/index.d.ts +7 -1
  79. package/src/schematics/form/control/table-select-form-control/index.js +195 -149
  80. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  81. package/src/schematics/form/control/table-select-form-control/schema.json +101 -296
  82. package/src/schematics/form/control/table-select-form-control/template.schema.json +11 -6
  83. package/src/schematics/form/form-component/index.d.ts +2 -0
  84. package/src/schematics/form/form-component/index.js +6 -4
  85. package/src/schematics/form/form-component/index.js.map +1 -1
  86. package/src/schematics/form/form-component/schema.d.ts +3 -1
  87. package/src/schematics/form/form-component/schema.json +176 -233
  88. package/src/schematics/form/form-component/template.schema.json +6 -9
  89. package/src/schematics/form/form-control/schema.json +68 -176
  90. package/src/schematics/form/form-control/template.schema.json +6 -9
  91. package/src/schematics/form/form-definition/schema.json +125 -230
  92. package/src/schematics/form/form-definition/template.schema.json +6 -9
  93. package/src/schematics/form-component.schema.json +9 -3
  94. package/src/schematics/form-definition.schema.json +3 -3
  95. package/src/schematics/general.schema.json +1 -4
  96. package/src/schematics/input-form-control.schema.json +11 -3
  97. package/src/schematics/minimum-table.schema.json +11 -5
  98. package/src/schematics/pipe.schema.json +1 -1
  99. package/src/schematics/select-form-control.schema.json +15 -4
  100. package/src/schematics/table/action/dialog-table-action/schema.json +150 -230
  101. package/src/schematics/table/action/dialog-table-action/template.schema.json +3 -6
  102. package/src/schematics/table/action/form-table-action/schema.json +317 -310
  103. package/src/schematics/table/action/form-table-action/template.schema.json +6 -6
  104. package/src/schematics/table/action/navigation-table-action/schema.json +150 -230
  105. package/src/schematics/table/action/navigation-table-action/template.schema.json +3 -6
  106. package/src/schematics/table/action/open-api-table-action/schema.json +150 -230
  107. package/src/schematics/table/action/open-api-table-action/template.schema.json +3 -6
  108. package/src/schematics/table/action/operation-table-action/schema.json +138 -218
  109. package/src/schematics/table/action/operation-table-action/template.schema.json +3 -6
  110. package/src/schematics/table/header-button/form-table-header-button/schema.json +217 -261
  111. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +6 -6
  112. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +131 -211
  113. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +3 -6
  114. package/src/schematics/table/table-action/schema.json +56 -139
  115. package/src/schematics/table/table-action/template.schema.json +6 -6
  116. package/src/schematics/table/table-component/index.d.ts +10 -2
  117. package/src/schematics/table/table-component/index.js +13 -1
  118. package/src/schematics/table/table-component/index.js.map +1 -1
  119. package/src/schematics/table/table-component/schema.json +352 -547
  120. package/src/schematics/table/table-component/template.schema.json +6 -18
  121. package/src/schematics/table/table-header-button/schema.json +56 -139
  122. package/src/schematics/table/table-header-button/template.schema.json +6 -6
  123. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +6 -0
  124. package/src/schematics/table/tree-table-component/index.d.ts +3 -0
  125. package/src/schematics/table/tree-table-component/index.js +11 -3
  126. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  127. package/src/schematics/table/tree-table-component/schema.json +352 -547
  128. package/src/schematics/table/tree-table-component/template.schema.json +6 -18
  129. package/src/schematics/table-column.schema.json +4 -1
  130. package/src/schematics/table.schema.json +4 -1
  131. package/src/schematics/tree-component/schema.json +70 -62
  132. package/src/schematics/tree-component/template.schema.json +7 -2
  133. package/src/schematics/tree-table.schema.json +3 -3
  134. package/src/schematics/value.schema.json +1 -1
  135. package/src/template.schema.json +173 -0
@@ -3,45 +3,75 @@
3
3
  "$id": "accordion-item-component-schematic",
4
4
  "allOf": [
5
5
  {
6
+ "$ref": "#/definitions/angular"
7
+ },
8
+ {
9
+ "$ref": "#/definitions/accordionItem"
10
+ },
11
+ {
12
+ "type": "object",
13
+ "properties": {
14
+ "accordionName": {
15
+ "type": "string",
16
+ "description": "The name of the accordion module where the item should be added."
17
+ }
18
+ },
19
+ "required": [
20
+ "accordionName"
21
+ ]
22
+ }
23
+ ],
24
+ "definitions": {
25
+ "accordionItem": {
26
+ "type": "object",
27
+ "properties": {
28
+ "kind": {
29
+ "type": "string",
30
+ "enum": [
31
+ "default",
32
+ "table",
33
+ "data-grid",
34
+ "data-grid-collection",
35
+ "tree-table",
36
+ "switch"
37
+ ],
38
+ "description": "The type of the accordion item",
39
+ "default": "panel"
40
+ },
41
+ "modifiers": {
42
+ "alias": "modifier",
43
+ "type": "array",
44
+ "items": {
45
+ "type": "string"
46
+ },
47
+ "description": "The modifiers to apply to the accordion item type"
48
+ },
49
+ "identifier": {
50
+ "$ref": "#/definitions/accordionIdentifier"
51
+ },
52
+ "title": {
53
+ "type": "string"
54
+ },
55
+ "description": {
56
+ "type": "string"
57
+ },
58
+ "upstream": {
59
+ "$ref": "#/definitions/upstream"
60
+ },
61
+ "propertyList": {
62
+ "alias": "property",
63
+ "type": "array",
64
+ "items": {
65
+ "$ref": "#/definitions/property"
66
+ }
67
+ }
68
+ },
69
+ "additionalProperties": true
70
+ },
71
+ "angular": {
6
72
  "allOf": [
7
73
  {
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
- ]
74
+ "$ref": "#/definitions/general"
45
75
  },
46
76
  {
47
77
  "type": "object",
@@ -64,15 +94,7 @@
64
94
  "type": "string"
65
95
  },
66
96
  "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"
97
+ "$ref": "#/definitions/backend"
76
98
  },
77
99
  "directory": {
78
100
  "type": "string",
@@ -97,54 +119,72 @@
97
119
  }
98
120
  ]
99
121
  },
100
- {
122
+ "accordionIdentifier": {
101
123
  "type": "object",
102
124
  "properties": {
103
- "kind": {
125
+ "property": {
126
+ "$ref": "#/definitions/property"
127
+ },
128
+ "source": {
104
129
  "type": "string",
105
130
  "enum": [
106
- "default",
107
- "table",
108
- "data-grid",
109
- "data-grid-collection",
110
- "tree-table",
111
- "switch"
131
+ "route"
112
132
  ],
113
- "description": "The type of the accordion item",
114
- "default": "panel"
115
- },
116
- "modifiers": {
117
- "alias": "modifier",
118
- "type": "array",
119
- "items": {
120
- "type": "string"
121
- },
122
- "description": "The modifiers to apply to the accordion item type"
123
- },
124
- "title": {
125
- "type": "string"
126
- },
127
- "description": {
128
- "type": "string"
133
+ "default": "route"
129
134
  }
130
135
  },
131
- "additionalProperties": true
136
+ "required": [
137
+ "property"
138
+ ]
132
139
  },
133
- {
140
+ "backend": {
141
+ "type": "string",
142
+ "description": "The backend that should be used to handel data",
143
+ "enum": [
144
+ "none",
145
+ "nestjs",
146
+ "open-api",
147
+ "local"
148
+ ],
149
+ "default": "none"
150
+ },
151
+ "general": {
134
152
  "type": "object",
135
153
  "properties": {
136
- "accordionName": {
154
+ "project": {
137
155
  "type": "string",
138
- "description": "The name of the accordion module where the item should be added."
156
+ "description": "Project name where the files should be generated"
157
+ },
158
+ "feature": {
159
+ "type": "string",
160
+ "description": "Feature name where the files should be generated"
161
+ },
162
+ "overwrite": {
163
+ "anyOf": [
164
+ {
165
+ "type": "boolean"
166
+ },
167
+ {
168
+ "type": "array",
169
+ "items": {
170
+ "type": "string"
171
+ }
172
+ }
173
+ ],
174
+ "description": "Overwrite existing files",
175
+ "default": false
176
+ },
177
+ "overwriteHtml": {
178
+ "type": "boolean",
179
+ "default": false
180
+ },
181
+ "replace": {
182
+ "type": "boolean",
183
+ "default": false
139
184
  }
140
- },
141
- "required": [
142
- "accordionName"
143
- ]
144
- }
145
- ],
146
- "definitions": {
147
- "type": {
185
+ }
186
+ },
187
+ "property": {
148
188
  "oneOf": [
149
189
  {
150
190
  "type": "string"
@@ -155,20 +195,11 @@
155
195
  "name": {
156
196
  "type": "string"
157
197
  },
158
- "isTypeOnly": {
159
- "type": "boolean"
160
- },
161
- "moduleSpecifier": {
162
- "type": "string"
163
- },
164
- "namedImport": {
165
- "type": "string"
166
- },
167
- "namespaceImport": {
168
- "type": "string"
198
+ "type": {
199
+ "$ref": "#/definitions/type"
169
200
  },
170
- "defaultImport": {
171
- "type": "string"
201
+ "isArray": {
202
+ "type": "boolean"
172
203
  }
173
204
  },
174
205
  "required": [
@@ -177,7 +208,7 @@
177
208
  }
178
209
  ]
179
210
  },
180
- "property": {
211
+ "type": {
181
212
  "oneOf": [
182
213
  {
183
214
  "type": "string"
@@ -188,286 +219,86 @@
188
219
  "name": {
189
220
  "type": "string"
190
221
  },
191
- "type": {
192
- "$ref": "#/definitions/type"
193
- },
194
- "isArray": {
222
+ "isTypeOnly": {
195
223
  "type": "boolean"
196
- }
197
- },
198
- "required": [
199
- "name"
200
- ]
201
- }
202
- ],
203
- "definitions": {
204
- "type": {
205
- "oneOf": [
206
- {
224
+ },
225
+ "moduleSpecifier": {
207
226
  "type": "string"
208
227
  },
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
- }
238
- },
239
- "button": {
240
- "type": "object",
241
- "properties": {
242
- "svgIcon": {
243
- "type": "string"
244
- },
245
- "icon": {
246
- "type": "string"
247
- },
248
- "directiveList": {
249
- "type": "array",
250
- "items": {
251
- "$ref": "#/definitions/type"
252
- }
253
- },
254
- "importList": {
255
- "type": "array",
256
- "items": {
257
- "$ref": "#/definitions/type"
258
- }
259
- }
260
- },
261
- "definitions": {
262
- "type": {
263
- "oneOf": [
264
- {
228
+ "namedImport": {
265
229
  "type": "string"
266
230
  },
267
- {
268
- "type": "object",
269
- "properties": {
270
- "name": {
271
- "type": "string"
272
- },
273
- "isTypeOnly": {
274
- "type": "boolean"
275
- },
276
- "moduleSpecifier": {
277
- "type": "string"
278
- },
279
- "namedImport": {
280
- "type": "string"
281
- },
282
- "namespaceImport": {
283
- "type": "string"
284
- },
285
- "defaultImport": {
286
- "type": "string"
287
- }
288
- },
289
- "required": [
290
- "name"
291
- ]
231
+ "namespaceImport": {
232
+ "type": "string"
233
+ },
234
+ "defaultImport": {
235
+ "type": "string"
292
236
  }
237
+ },
238
+ "required": [
239
+ "name"
293
240
  ]
294
241
  }
295
- }
242
+ ]
296
243
  },
297
- "pipe": {
244
+ "upstream": {
298
245
  "oneOf": [
299
246
  {
300
- "type": "string"
301
- },
302
- {
303
- "allOf": [
304
- {
305
- "$ref": "#/definitions/type"
306
- },
307
- {
308
- "type": "object",
309
- "properties": {
310
- "argumentList": {
311
- "type": "array",
312
- "items": {
313
- "$ref": "#/definitions/value"
314
- }
315
- }
316
- },
317
- "required": [
318
- "name"
247
+ "type": "object",
248
+ "properties": {
249
+ "kind": {
250
+ "type": "string",
251
+ "enum": [
252
+ "open-api"
319
253
  ]
320
- }
321
- ]
322
- }
323
- ],
324
- "definitions": {
325
- "type": {
326
- "oneOf": [
327
- {
254
+ },
255
+ "operationId": {
328
256
  "type": "string"
329
257
  },
330
- {
258
+ "scope": {
259
+ "type": "string"
260
+ },
261
+ "mapper": {
331
262
  "type": "object",
332
263
  "properties": {
333
- "name": {
264
+ "pageIndex": {
334
265
  "type": "string"
335
266
  },
336
- "isTypeOnly": {
337
- "type": "boolean"
338
- },
339
- "moduleSpecifier": {
267
+ "pageSize": {
340
268
  "type": "string"
341
269
  },
342
- "namedImport": {
270
+ "sortBy": {
343
271
  "type": "string"
344
272
  },
345
- "namespaceImport": {
273
+ "sortDirection": {
346
274
  "type": "string"
347
275
  },
348
- "defaultImport": {
276
+ "list": {
349
277
  "type": "string"
350
- }
351
- },
352
- "required": [
353
- "name"
354
- ]
355
- }
356
- ]
357
- },
358
- "value": {
359
- "oneOf": [
360
- {
361
- "type": "string"
362
- },
363
- {
364
- "type": "object",
365
- "properties": {
366
- "type": {
367
- "$ref": "#/definitions/type"
368
278
  },
369
- "value": {
370
- "type": "string"
371
- }
372
- },
373
- "required": [
374
- "value"
375
- ]
376
- }
377
- ],
378
- "definitions": {
379
- "type": {
380
- "oneOf": [
381
- {
279
+ "total": {
382
280
  "type": "string"
383
281
  },
384
- {
282
+ "filter": {
385
283
  "type": "object",
386
284
  "properties": {
387
- "name": {
388
- "type": "string"
389
- },
390
- "isTypeOnly": {
391
- "type": "boolean"
392
- },
393
- "moduleSpecifier": {
394
- "type": "string"
395
- },
396
- "namedImport": {
397
- "type": "string"
398
- },
399
- "namespaceImport": {
285
+ "eq": {
400
286
  "type": "string"
401
287
  },
402
- "defaultImport": {
288
+ "join": {
403
289
  "type": "string"
404
290
  }
405
- },
406
- "required": [
407
- "name"
408
- ]
291
+ }
409
292
  }
410
- ]
411
- }
412
- }
413
- }
414
- }
415
- },
416
- "value": {
417
- "oneOf": [
418
- {
419
- "type": "string"
420
- },
421
- {
422
- "type": "object",
423
- "properties": {
424
- "type": {
425
- "$ref": "#/definitions/type"
426
- },
427
- "value": {
428
- "type": "string"
293
+ }
429
294
  }
430
295
  },
431
296
  "required": [
432
- "value"
433
- ]
434
- }
435
- ],
436
- "definitions": {
437
- "type": {
438
- "oneOf": [
439
- {
440
- "type": "string"
441
- },
442
- {
443
- "type": "object",
444
- "properties": {
445
- "name": {
446
- "type": "string"
447
- },
448
- "isTypeOnly": {
449
- "type": "boolean"
450
- },
451
- "moduleSpecifier": {
452
- "type": "string"
453
- },
454
- "namedImport": {
455
- "type": "string"
456
- },
457
- "namespaceImport": {
458
- "type": "string"
459
- },
460
- "defaultImport": {
461
- "type": "string"
462
- }
463
- },
464
- "required": [
465
- "name"
466
- ]
467
- }
297
+ "kind",
298
+ "operationId"
468
299
  ]
469
300
  }
470
- }
301
+ ]
471
302
  }
472
303
  }
473
304
  }
@@ -3,10 +3,10 @@
3
3
  "$id": "accordion-item-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",
@@ -19,21 +19,14 @@
19
19
  "required": ["accordionName"]
20
20
  }
21
21
  ],
22
+
23
+
22
24
  "definitions": {
23
- "type": {
24
- "$ref": "../../type.schema.json"
25
- },
26
- "property": {
27
- "$ref": "../../property.schema.json"
28
- },
29
- "button": {
30
- "$ref": "../../button.schema.json"
31
- },
32
- "pipe": {
33
- "$ref": "../../pipe.schema.json"
25
+ "accordionItem": {
26
+ "$ref": "../../accordion-item.schema.json"
34
27
  },
35
- "value": {
36
- "$ref": "../../value.schema.json"
28
+ "angular": {
29
+ "$ref": "../../angular.schema.json"
37
30
  }
38
31
  }
39
32
  }
@@ -3,7 +3,7 @@ import { NormalizedDataGridAccordionItem } from '../../../../lib/accordion-item'
3
3
  import { NormalizedAngularOptions } from '../../../../lib/angular-options';
4
4
  import { NormalizedAccordionItemStandaloneComponentOptions } from '../../accordion-item-component';
5
5
  import { AccordionItemDataGridComponentOptions } from './schema';
6
- export interface NormalizedAccordionItemDataGridComponentOptions extends Omit<Readonly<Normalized<AccordionItemDataGridComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'dataGrid' | 'importList'>, Omit<NormalizedDataGridAccordionItem, 'kind'> {
6
+ export interface NormalizedAccordionItemDataGridComponentOptions extends Omit<Readonly<Normalized<AccordionItemDataGridComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'dataGrid' | 'importList' | 'propertyList'>, Omit<NormalizedDataGridAccordionItem, 'kind'> {
7
7
  }
8
8
  export declare function NormalizeAccordionItemDataGridComponentOptions(options: Readonly<AccordionItemDataGridComponentOptions>): Readonly<NormalizedAccordionItemDataGridComponentOptions>;
9
9
  export default function (options: AccordionItemDataGridComponentOptions): () => import("@angular-devkit/schematics").Rule;