@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,45 +3,17 @@
3
3
  "$id": "tree-table-component-schematic",
4
4
  "allOf": [
5
5
  {
6
+ "$ref": "#/definitions/angular"
7
+ },
8
+ {
9
+ "$ref": "#/definitions/treeTable"
10
+ }
11
+ ],
12
+ "definitions": {
13
+ "angular": {
6
14
  "allOf": [
7
15
  {
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
- ]
16
+ "$ref": "#/definitions/general"
45
17
  },
46
18
  {
47
19
  "type": "object",
@@ -64,15 +36,7 @@
64
36
  "type": "string"
65
37
  },
66
38
  "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"
39
+ "$ref": "#/definitions/backend"
76
40
  },
77
41
  "directory": {
78
42
  "type": "string",
@@ -97,258 +61,10 @@
97
61
  }
98
62
  ]
99
63
  },
100
- {
64
+ "treeTable": {
101
65
  "allOf": [
102
66
  {
103
- "type": "object",
104
- "properties": {
105
- "propertyList": {
106
- "alias": "property",
107
- "type": "array",
108
- "items": {
109
- "$ref": "#/definitions/property"
110
- }
111
- },
112
- "upstream": {
113
- "$ref": "#/definitions/upstream"
114
- },
115
- "columnList": {
116
- "alias": "column",
117
- "type": "array",
118
- "items": {
119
- "type": "object",
120
- "properties": {
121
- "name": {
122
- "type": "string"
123
- },
124
- "type": {
125
- "$ref": "#/definitions/type"
126
- },
127
- "kind": {
128
- "type": "string"
129
- },
130
- "modifiers": {
131
- "type": "array",
132
- "items": {
133
- "type": "string"
134
- }
135
- },
136
- "template": {
137
- "type": "string"
138
- },
139
- "pipeList": {
140
- "type": "array",
141
- "items": {
142
- "$ref": "#/definitions/pipe"
143
- }
144
- },
145
- "hasFilter": {
146
- "type": "boolean"
147
- },
148
- "nowrap": {
149
- "type": "boolean"
150
- },
151
- "cssClass": {
152
- "type": "string"
153
- },
154
- "title": {
155
- "type": "string"
156
- },
157
- "propertyPath": {
158
- "type": "string"
159
- },
160
- "hidden": {
161
- "type": "boolean"
162
- },
163
- "active": {
164
- "type": "boolean"
165
- },
166
- "inactive": {
167
- "type": "boolean"
168
- },
169
- "show": {
170
- "type": "boolean"
171
- },
172
- "filterControl": {
173
- "type": "object",
174
- "properties": {
175
- "name": {
176
- "type": "string",
177
- "description": "The name of the control"
178
- },
179
- "type": {
180
- "$ref": "#/definitions/type"
181
- },
182
- "isArray": {
183
- "type": "boolean",
184
- "description": "Whether the control value is an array",
185
- "default": false
186
- },
187
- "state": {
188
- "type": "string",
189
- "description": "The initial state of the control"
190
- },
191
- "isRequired": {
192
- "type": "boolean",
193
- "description": "Whether the control value is required",
194
- "default": false
195
- },
196
- "isReadonly": {
197
- "type": "boolean",
198
- "description": "Whether the control value is readonly",
199
- "default": false
200
- },
201
- "isDisabled": {
202
- "type": "boolean",
203
- "description": "Whether the control value is disabled",
204
- "default": false
205
- },
206
- "validatorList": {
207
- "type": "array",
208
- "items": {
209
- "type": "string"
210
- }
211
- },
212
- "kind": {
213
- "type": "string",
214
- "description": "The name of the template",
215
- "enum": [
216
- "default",
217
- "input",
218
- "select",
219
- "checkbox",
220
- "autocomplete-table-select",
221
- "table-select",
222
- "textarea",
223
- "slide-toggle"
224
- ],
225
- "default": "default"
226
- }
227
- },
228
- "required": [
229
- "name"
230
- ],
231
- "additionalProperties": true
232
- }
233
- },
234
- "required": [
235
- "name"
236
- ]
237
- },
238
- "description": "List of table column names"
239
- },
240
- "actionList": {
241
- "alias": "action",
242
- "type": "array",
243
- "items": {
244
- "type": "object",
245
- "properties": {
246
- "type": {
247
- "type": "string"
248
- },
249
- "refresh": {
250
- "type": "boolean"
251
- },
252
- "confirm": {
253
- "type": "boolean"
254
- },
255
- "tooltip": {
256
- "type": "string"
257
- },
258
- "errorMessage": {
259
- "type": "string"
260
- },
261
- "successMessage": {
262
- "type": "string"
263
- },
264
- "priority": {
265
- "type": "number"
266
- },
267
- "checkFunction": {
268
- "type": "string"
269
- },
270
- "inHeader": {
271
- "type": "boolean"
272
- },
273
- "role": {
274
- "type": "string"
275
- },
276
- "icon": {
277
- "type": "string"
278
- },
279
- "svgIcon": {
280
- "type": "string"
281
- },
282
- "permission": {
283
- "type": "string"
284
- },
285
- "color": {
286
- "type": "string",
287
- "description": "Value for the color input of the mat-button / mat-icon component"
288
- },
289
- "cssClass": {
290
- "type": "string",
291
- "description": "Additional CSS classes added to the button element"
292
- },
293
- "options": {
294
- "type": "object",
295
- "additionalProperties": true
296
- }
297
- },
298
- "required": [
299
- "type"
300
- ]
301
- }
302
- },
303
- "headerButton": {
304
- "type": "object",
305
- "properties": {
306
- "permission": {
307
- "type": "string"
308
- },
309
- "icon": {
310
- "type": "string"
311
- },
312
- "svgIcon": {
313
- "type": "string"
314
- },
315
- "refresh": {
316
- "type": "boolean",
317
- "description": "Whether the table action should refresh the table after execution",
318
- "default": false
319
- },
320
- "confirm": {
321
- "type": "boolean",
322
- "description": "Whether the table action should confirm before execution",
323
- "default": false
324
- },
325
- "tooltip": {
326
- "type": "string",
327
- "description": "The tooltip for the table action"
328
- },
329
- "errorMessage": {
330
- "type": "string",
331
- "description": "The error message for the table action"
332
- },
333
- "successMessage": {
334
- "type": "string",
335
- "description": "The success message for the table action"
336
- },
337
- "options": {
338
- "type": "object",
339
- "additionalProperties": true
340
- }
341
- }
342
- },
343
- "modifiers": {
344
- "alias": "modifier",
345
- "type": "array",
346
- "items": {
347
- "type": "string"
348
- },
349
- "description": "The table modifiers"
350
- }
351
- }
67
+ "$ref": "#/definitions/minimumTable"
352
68
  },
353
69
  {
354
70
  "type": "object",
@@ -374,38 +90,220 @@
374
90
  }
375
91
  }
376
92
  ]
377
- }
378
- ],
379
- "definitions": {
380
- "type": {
93
+ },
94
+ "backend": {
95
+ "type": "string",
96
+ "description": "The backend that should be used to handel data",
97
+ "enum": [
98
+ "none",
99
+ "nestjs",
100
+ "open-api",
101
+ "local"
102
+ ],
103
+ "default": "none"
104
+ },
105
+ "formControl": {
106
+ "type": "object",
107
+ "properties": {
108
+ "name": {
109
+ "type": "string",
110
+ "description": "The name of the control"
111
+ },
112
+ "type": {
113
+ "$ref": "#/definitions/type"
114
+ },
115
+ "isArray": {
116
+ "type": "boolean",
117
+ "description": "Whether the control value is an array",
118
+ "default": false
119
+ },
120
+ "state": {
121
+ "type": "string",
122
+ "description": "The initial state of the control"
123
+ },
124
+ "isRequired": {
125
+ "type": "boolean",
126
+ "description": "Whether the control value is required",
127
+ "default": false
128
+ },
129
+ "isReadonly": {
130
+ "type": "boolean",
131
+ "description": "Whether the control value is readonly",
132
+ "default": false
133
+ },
134
+ "isDisabled": {
135
+ "type": "boolean",
136
+ "description": "Whether the control value is disabled",
137
+ "default": false
138
+ },
139
+ "validatorList": {
140
+ "type": "array",
141
+ "items": {
142
+ "type": "string"
143
+ }
144
+ },
145
+ "kind": {
146
+ "type": "string",
147
+ "description": "The name of the template",
148
+ "enum": [
149
+ "default",
150
+ "input",
151
+ "select",
152
+ "checkbox",
153
+ "autocomplete-table-select",
154
+ "table-select",
155
+ "textarea",
156
+ "slide-toggle"
157
+ ],
158
+ "default": "default"
159
+ }
160
+ },
161
+ "required": [
162
+ "name"
163
+ ],
164
+ "additionalProperties": true
165
+ },
166
+ "general": {
167
+ "type": "object",
168
+ "properties": {
169
+ "project": {
170
+ "type": "string",
171
+ "description": "Project name where the files should be generated"
172
+ },
173
+ "feature": {
174
+ "type": "string",
175
+ "description": "Feature name where the files should be generated"
176
+ },
177
+ "overwrite": {
178
+ "anyOf": [
179
+ {
180
+ "type": "boolean"
181
+ },
182
+ {
183
+ "type": "array",
184
+ "items": {
185
+ "type": "string"
186
+ }
187
+ }
188
+ ],
189
+ "description": "Overwrite existing files",
190
+ "default": false
191
+ },
192
+ "overwriteHtml": {
193
+ "type": "boolean",
194
+ "default": false
195
+ },
196
+ "replace": {
197
+ "type": "boolean",
198
+ "default": false
199
+ }
200
+ }
201
+ },
202
+ "headerButton": {
203
+ "type": "object",
204
+ "properties": {
205
+ "permission": {
206
+ "type": "string"
207
+ },
208
+ "icon": {
209
+ "type": "string"
210
+ },
211
+ "svgIcon": {
212
+ "type": "string"
213
+ },
214
+ "refresh": {
215
+ "type": "boolean",
216
+ "description": "Whether the table action should refresh the table after execution",
217
+ "default": false
218
+ },
219
+ "confirm": {
220
+ "type": "boolean",
221
+ "description": "Whether the table action should confirm before execution",
222
+ "default": false
223
+ },
224
+ "tooltip": {
225
+ "type": "string",
226
+ "description": "The tooltip for the table action"
227
+ },
228
+ "errorMessage": {
229
+ "type": "string",
230
+ "description": "The error message for the table action"
231
+ },
232
+ "successMessage": {
233
+ "type": "string",
234
+ "description": "The success message for the table action"
235
+ },
236
+ "options": {
237
+ "type": "object",
238
+ "additionalProperties": true
239
+ }
240
+ }
241
+ },
242
+ "minimumTable": {
243
+ "type": "object",
244
+ "properties": {
245
+ "propertyList": {
246
+ "alias": "property",
247
+ "type": "array",
248
+ "items": {
249
+ "$ref": "#/definitions/property"
250
+ }
251
+ },
252
+ "upstream": {
253
+ "$ref": "#/definitions/upstream"
254
+ },
255
+ "columnList": {
256
+ "alias": "column",
257
+ "type": "array",
258
+ "items": {
259
+ "$ref": "#/definitions/tableColumn"
260
+ },
261
+ "description": "List of table column names"
262
+ },
263
+ "actionList": {
264
+ "alias": "action",
265
+ "type": "array",
266
+ "items": {
267
+ "$ref": "#/definitions/tableAction"
268
+ }
269
+ },
270
+ "headerButton": {
271
+ "$ref": "#/definitions/headerButton"
272
+ },
273
+ "modifiers": {
274
+ "alias": "modifier",
275
+ "type": "array",
276
+ "items": {
277
+ "type": "string"
278
+ },
279
+ "description": "The table modifiers"
280
+ }
281
+ }
282
+ },
283
+ "pipe": {
381
284
  "oneOf": [
382
285
  {
383
286
  "type": "string"
384
287
  },
385
288
  {
386
- "type": "object",
387
- "properties": {
388
- "name": {
389
- "type": "string"
390
- },
391
- "isTypeOnly": {
392
- "type": "boolean"
393
- },
394
- "moduleSpecifier": {
395
- "type": "string"
396
- },
397
- "namedImport": {
398
- "type": "string"
399
- },
400
- "namespaceImport": {
401
- "type": "string"
289
+ "allOf": [
290
+ {
291
+ "$ref": "#/definitions/type"
402
292
  },
403
- "defaultImport": {
404
- "type": "string"
293
+ {
294
+ "type": "object",
295
+ "properties": {
296
+ "argumentList": {
297
+ "type": "array",
298
+ "items": {
299
+ "$ref": "#/definitions/value"
300
+ }
301
+ }
302
+ },
303
+ "required": [
304
+ "name"
305
+ ]
405
306
  }
406
- },
407
- "required": [
408
- "name"
409
307
  ]
410
308
  }
411
309
  ]
@@ -432,100 +330,161 @@
432
330
  "name"
433
331
  ]
434
332
  }
435
- ],
436
- "definitions": {
333
+ ]
334
+ },
335
+ "tableAction": {
336
+ "type": "object",
337
+ "properties": {
437
338
  "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
- }
468
- ]
339
+ "type": "string"
340
+ },
341
+ "refresh": {
342
+ "type": "boolean"
343
+ },
344
+ "confirm": {
345
+ "type": "boolean"
346
+ },
347
+ "tooltip": {
348
+ "type": "string"
349
+ },
350
+ "errorMessage": {
351
+ "type": "string"
352
+ },
353
+ "successMessage": {
354
+ "type": "string"
355
+ },
356
+ "priority": {
357
+ "type": "number"
358
+ },
359
+ "checkFunction": {
360
+ "type": "string"
361
+ },
362
+ "inHeader": {
363
+ "type": "boolean"
364
+ },
365
+ "role": {
366
+ "type": "string"
367
+ },
368
+ "icon": {
369
+ "type": "string"
370
+ },
371
+ "svgIcon": {
372
+ "type": "string"
373
+ },
374
+ "permission": {
375
+ "type": "string"
376
+ },
377
+ "color": {
378
+ "type": "string",
379
+ "description": "Value for the color input of the mat-button / mat-icon component"
380
+ },
381
+ "cssClass": {
382
+ "type": "string",
383
+ "description": "Additional CSS classes added to the button element"
384
+ },
385
+ "options": {
386
+ "type": "object",
387
+ "additionalProperties": true
469
388
  }
470
- }
389
+ },
390
+ "required": [
391
+ "type"
392
+ ]
471
393
  },
472
- "button": {
394
+ "tableColumn": {
473
395
  "type": "object",
474
396
  "properties": {
475
- "svgIcon": {
397
+ "name": {
476
398
  "type": "string"
477
399
  },
478
- "icon": {
400
+ "type": {
401
+ "$ref": "#/definitions/type"
402
+ },
403
+ "kind": {
479
404
  "type": "string"
480
405
  },
481
- "directiveList": {
406
+ "modifiers": {
482
407
  "type": "array",
483
408
  "items": {
484
- "$ref": "#/definitions/type"
409
+ "type": "string"
485
410
  }
486
411
  },
487
- "importList": {
412
+ "template": {
413
+ "type": "string"
414
+ },
415
+ "pipeList": {
488
416
  "type": "array",
489
417
  "items": {
490
- "$ref": "#/definitions/type"
418
+ "$ref": "#/definitions/pipe"
491
419
  }
420
+ },
421
+ "hasFilter": {
422
+ "type": "boolean"
423
+ },
424
+ "nowrap": {
425
+ "type": "boolean"
426
+ },
427
+ "cssClass": {
428
+ "type": "string"
429
+ },
430
+ "title": {
431
+ "type": "string"
432
+ },
433
+ "propertyPath": {
434
+ "type": "string"
435
+ },
436
+ "hidden": {
437
+ "type": "boolean"
438
+ },
439
+ "active": {
440
+ "type": "boolean"
441
+ },
442
+ "inactive": {
443
+ "type": "boolean"
444
+ },
445
+ "show": {
446
+ "type": "boolean"
447
+ },
448
+ "filterControl": {
449
+ "$ref": "#/definitions/formControl"
492
450
  }
493
451
  },
494
- "definitions": {
495
- "type": {
496
- "oneOf": [
497
- {
452
+ "required": [
453
+ "name"
454
+ ]
455
+ },
456
+ "type": {
457
+ "oneOf": [
458
+ {
459
+ "type": "string"
460
+ },
461
+ {
462
+ "type": "object",
463
+ "properties": {
464
+ "name": {
498
465
  "type": "string"
499
466
  },
500
- {
501
- "type": "object",
502
- "properties": {
503
- "name": {
504
- "type": "string"
505
- },
506
- "isTypeOnly": {
507
- "type": "boolean"
508
- },
509
- "moduleSpecifier": {
510
- "type": "string"
511
- },
512
- "namedImport": {
513
- "type": "string"
514
- },
515
- "namespaceImport": {
516
- "type": "string"
517
- },
518
- "defaultImport": {
519
- "type": "string"
520
- }
521
- },
522
- "required": [
523
- "name"
524
- ]
467
+ "isTypeOnly": {
468
+ "type": "boolean"
469
+ },
470
+ "moduleSpecifier": {
471
+ "type": "string"
472
+ },
473
+ "namedImport": {
474
+ "type": "string"
475
+ },
476
+ "namespaceImport": {
477
+ "type": "string"
478
+ },
479
+ "defaultImport": {
480
+ "type": "string"
525
481
  }
482
+ },
483
+ "required": [
484
+ "name"
526
485
  ]
527
486
  }
528
- }
487
+ ]
529
488
  },
530
489
  "upstream": {
531
490
  "oneOf": [
@@ -586,125 +545,6 @@
586
545
  }
587
546
  ]
588
547
  },
589
- "pipe": {
590
- "oneOf": [
591
- {
592
- "type": "string"
593
- },
594
- {
595
- "allOf": [
596
- {
597
- "$ref": "#/definitions/type"
598
- },
599
- {
600
- "type": "object",
601
- "properties": {
602
- "argumentList": {
603
- "type": "array",
604
- "items": {
605
- "$ref": "#/definitions/value"
606
- }
607
- }
608
- },
609
- "required": [
610
- "name"
611
- ]
612
- }
613
- ]
614
- }
615
- ],
616
- "definitions": {
617
- "type": {
618
- "oneOf": [
619
- {
620
- "type": "string"
621
- },
622
- {
623
- "type": "object",
624
- "properties": {
625
- "name": {
626
- "type": "string"
627
- },
628
- "isTypeOnly": {
629
- "type": "boolean"
630
- },
631
- "moduleSpecifier": {
632
- "type": "string"
633
- },
634
- "namedImport": {
635
- "type": "string"
636
- },
637
- "namespaceImport": {
638
- "type": "string"
639
- },
640
- "defaultImport": {
641
- "type": "string"
642
- }
643
- },
644
- "required": [
645
- "name"
646
- ]
647
- }
648
- ]
649
- },
650
- "value": {
651
- "oneOf": [
652
- {
653
- "type": "string"
654
- },
655
- {
656
- "type": "object",
657
- "properties": {
658
- "type": {
659
- "$ref": "#/definitions/type"
660
- },
661
- "value": {
662
- "type": "string"
663
- }
664
- },
665
- "required": [
666
- "value"
667
- ]
668
- }
669
- ],
670
- "definitions": {
671
- "type": {
672
- "oneOf": [
673
- {
674
- "type": "string"
675
- },
676
- {
677
- "type": "object",
678
- "properties": {
679
- "name": {
680
- "type": "string"
681
- },
682
- "isTypeOnly": {
683
- "type": "boolean"
684
- },
685
- "moduleSpecifier": {
686
- "type": "string"
687
- },
688
- "namedImport": {
689
- "type": "string"
690
- },
691
- "namespaceImport": {
692
- "type": "string"
693
- },
694
- "defaultImport": {
695
- "type": "string"
696
- }
697
- },
698
- "required": [
699
- "name"
700
- ]
701
- }
702
- ]
703
- }
704
- }
705
- }
706
- }
707
- },
708
548
  "value": {
709
549
  "oneOf": [
710
550
  {
@@ -724,42 +564,7 @@
724
564
  "value"
725
565
  ]
726
566
  }
727
- ],
728
- "definitions": {
729
- "type": {
730
- "oneOf": [
731
- {
732
- "type": "string"
733
- },
734
- {
735
- "type": "object",
736
- "properties": {
737
- "name": {
738
- "type": "string"
739
- },
740
- "isTypeOnly": {
741
- "type": "boolean"
742
- },
743
- "moduleSpecifier": {
744
- "type": "string"
745
- },
746
- "namedImport": {
747
- "type": "string"
748
- },
749
- "namespaceImport": {
750
- "type": "string"
751
- },
752
- "defaultImport": {
753
- "type": "string"
754
- }
755
- },
756
- "required": [
757
- "name"
758
- ]
759
- }
760
- ]
761
- }
762
- }
567
+ ]
763
568
  }
764
569
  }
765
570
  }