@rxap/schematic-angular 16.2.0-dev.21 → 16.2.0-dev.23
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.
- package/CHANGELOG.md +17 -0
- package/README.md +1 -1
- package/collection.json +5 -0
- package/package.json +9 -9
- package/src/lib/accordion-header.js +7 -4
- package/src/lib/accordion-header.js.map +1 -1
- package/src/lib/accordion-item.js +17 -17
- package/src/lib/accordion-item.js.map +1 -1
- package/src/lib/coerce-form-component.js +3 -2
- package/src/lib/coerce-form-component.js.map +1 -1
- package/src/lib/css-class.d.ts +8 -0
- package/src/lib/css-class.js +28 -0
- package/src/lib/css-class.js.map +1 -0
- package/src/lib/data-grid-item.js +10 -7
- package/src/lib/data-grid-item.js.map +1 -1
- package/src/lib/form/control/autocomplete-table-select-form-control.d.ts +6 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.js +34 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -0
- package/src/lib/form/control/form-control-kind.d.ts +2 -1
- package/src/lib/form/control/form-control-kind.js +1 -0
- package/src/lib/form/control/form-control-kind.js.map +1 -1
- package/src/lib/form/control/form-control.d.ts +1 -1
- package/src/lib/form/control/form-control.js +3 -0
- package/src/lib/form/control/form-control.js.map +1 -1
- package/src/lib/load-handlebars-template.d.ts +1 -0
- package/src/lib/load-handlebars-template.js +5 -1
- package/src/lib/load-handlebars-template.js.map +1 -1
- package/src/lib/minimum-table-options.d.ts +3 -0
- package/src/lib/minimum-table-options.js +2 -0
- package/src/lib/minimum-table-options.js.map +1 -1
- package/src/lib/table-action.js.map +1 -1
- package/src/lib/table-column.d.ts +3 -1
- package/src/lib/table-column.js +2 -2
- package/src/lib/table-column.js.map +1 -1
- package/src/lib/table-row-action.d.ts +4 -2
- package/src/lib/table-row-action.js +8 -7
- package/src/lib/table-row-action.js.map +1 -1
- package/src/schema.json +159 -3
- package/src/schematic-input.schema.json +19 -0
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +83 -0
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +120 -3
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +120 -3
- package/src/schematics/autocomplete-table-select-form-control.schema.json +96 -0
- package/src/schematics/css-class.schema.json +34 -0
- package/src/schematics/data-grid-component/index.js +1 -0
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +83 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.d.ts +10 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +247 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.d.ts +4 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +453 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/template.schema.json +39 -0
- package/src/schematics/form/form-array/schema.json +83 -0
- package/src/schematics/form/form-component/schema.json +83 -0
- package/src/schematics/form/form-control/schema.json +83 -0
- package/src/schematics/form/form-definition/schema.json +83 -0
- package/src/schematics/form/form-group/schema.json +83 -0
- package/src/schematics/form-control.schema.json +6 -0
- package/src/schematics/minimum-table.schema.json +6 -0
- package/src/schematics/table/action/dialog-table-action/schema.json +33 -2
- package/src/schematics/table/action/form-table-action/schema.json +116 -2
- package/src/schematics/table/action/navigation-table-action/schema.json +33 -2
- package/src/schematics/table/action/open-api-table-action/schema.json +33 -2
- package/src/schematics/table/action/operation-table-action/schema.json +33 -2
- package/src/schematics/table/header-button/form-table-header-button/schema.json +83 -0
- package/src/schematics/table/table-action/schema.json +33 -2
- package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +7 -5
- package/src/schematics/table/table-component/index.js +1 -0
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/schema.json +120 -3
- package/src/schematics/table/templates/boolean-table-column.hbs +3 -2
- package/src/schematics/table/templates/component-table-column.hbs +3 -2
- package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +3 -2
- package/src/schematics/table/templates/date-table-column.hbs +3 -2
- package/src/schematics/table/templates/default-table-column.hbs +1 -1
- package/src/schematics/table/templates/icon-table-column.hbs +3 -2
- package/src/schematics/table/templates/link-table-column.hbs +3 -2
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +7 -5
- package/src/schematics/table/tree-table-component/index.js +1 -0
- package/src/schematics/table/tree-table-component/index.js.map +1 -1
- package/src/schematics/table/tree-table-component/schema.json +120 -3
- package/src/schematics/table-action.schema.json +7 -3
- package/src/schematics/table-column.schema.json +4 -1
- package/src/schematics/templates/css-class.hbs +1 -0
- package/src/template.schema.json +9 -0
|
@@ -146,6 +146,86 @@
|
|
|
146
146
|
}
|
|
147
147
|
]
|
|
148
148
|
},
|
|
149
|
+
"autocompleteTableSelectFormControl": {
|
|
150
|
+
"allOf": [
|
|
151
|
+
{
|
|
152
|
+
"$ref": "#/definitions/baseFormControl"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "object",
|
|
156
|
+
"properties": {
|
|
157
|
+
"formField": {
|
|
158
|
+
"$ref": "#/definitions/formField"
|
|
159
|
+
},
|
|
160
|
+
"kind": {
|
|
161
|
+
"type": "string",
|
|
162
|
+
"const": "table-select"
|
|
163
|
+
},
|
|
164
|
+
"placeholder": {
|
|
165
|
+
"type": "string"
|
|
166
|
+
},
|
|
167
|
+
"columnList": {
|
|
168
|
+
"alias": "column",
|
|
169
|
+
"type": "array",
|
|
170
|
+
"items": {
|
|
171
|
+
"description": "table column name",
|
|
172
|
+
"type": "object",
|
|
173
|
+
"properties": {
|
|
174
|
+
"name": {
|
|
175
|
+
"type": "string",
|
|
176
|
+
"description": "table column name"
|
|
177
|
+
},
|
|
178
|
+
"title": {
|
|
179
|
+
"type": "string",
|
|
180
|
+
"description": "table column label"
|
|
181
|
+
},
|
|
182
|
+
"hasFilter": {
|
|
183
|
+
"type": "boolean",
|
|
184
|
+
"description": "Whether the column has a filter"
|
|
185
|
+
},
|
|
186
|
+
"kind": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"description": "The kind of data in the column"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"description": "List of table column names"
|
|
193
|
+
},
|
|
194
|
+
"title": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"description": "The title of the table select window"
|
|
197
|
+
},
|
|
198
|
+
"toDisplay": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"properties": {
|
|
201
|
+
"property": {
|
|
202
|
+
"$ref": "#/definitions/property"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"toValue": {
|
|
207
|
+
"type": "object",
|
|
208
|
+
"properties": {
|
|
209
|
+
"property": {
|
|
210
|
+
"$ref": "#/definitions/property"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"upstream": {
|
|
215
|
+
"$ref": "#/definitions/upstream"
|
|
216
|
+
},
|
|
217
|
+
"resolver": {
|
|
218
|
+
"type": "object",
|
|
219
|
+
"properties": {
|
|
220
|
+
"upstream": {
|
|
221
|
+
"$ref": "#/definitions/upstream"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
},
|
|
149
229
|
"backend": {
|
|
150
230
|
"type": "string",
|
|
151
231
|
"description": "The backend that should be used to handel data",
|
|
@@ -270,6 +350,9 @@
|
|
|
270
350
|
},
|
|
271
351
|
{
|
|
272
352
|
"$ref": "#/definitions/slideToggleFormControl"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"$ref": "#/definitions/autocompleteTableSelectFormControl"
|
|
273
356
|
}
|
|
274
357
|
]
|
|
275
358
|
}
|
|
@@ -143,6 +143,86 @@
|
|
|
143
143
|
}
|
|
144
144
|
]
|
|
145
145
|
},
|
|
146
|
+
"autocompleteTableSelectFormControl": {
|
|
147
|
+
"allOf": [
|
|
148
|
+
{
|
|
149
|
+
"$ref": "#/definitions/baseFormControl"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": "object",
|
|
153
|
+
"properties": {
|
|
154
|
+
"formField": {
|
|
155
|
+
"$ref": "#/definitions/formField"
|
|
156
|
+
},
|
|
157
|
+
"kind": {
|
|
158
|
+
"type": "string",
|
|
159
|
+
"const": "table-select"
|
|
160
|
+
},
|
|
161
|
+
"placeholder": {
|
|
162
|
+
"type": "string"
|
|
163
|
+
},
|
|
164
|
+
"columnList": {
|
|
165
|
+
"alias": "column",
|
|
166
|
+
"type": "array",
|
|
167
|
+
"items": {
|
|
168
|
+
"description": "table column name",
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {
|
|
171
|
+
"name": {
|
|
172
|
+
"type": "string",
|
|
173
|
+
"description": "table column name"
|
|
174
|
+
},
|
|
175
|
+
"title": {
|
|
176
|
+
"type": "string",
|
|
177
|
+
"description": "table column label"
|
|
178
|
+
},
|
|
179
|
+
"hasFilter": {
|
|
180
|
+
"type": "boolean",
|
|
181
|
+
"description": "Whether the column has a filter"
|
|
182
|
+
},
|
|
183
|
+
"kind": {
|
|
184
|
+
"type": "string",
|
|
185
|
+
"description": "The kind of data in the column"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"description": "List of table column names"
|
|
190
|
+
},
|
|
191
|
+
"title": {
|
|
192
|
+
"type": "string",
|
|
193
|
+
"description": "The title of the table select window"
|
|
194
|
+
},
|
|
195
|
+
"toDisplay": {
|
|
196
|
+
"type": "object",
|
|
197
|
+
"properties": {
|
|
198
|
+
"property": {
|
|
199
|
+
"$ref": "#/definitions/property"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"toValue": {
|
|
204
|
+
"type": "object",
|
|
205
|
+
"properties": {
|
|
206
|
+
"property": {
|
|
207
|
+
"$ref": "#/definitions/property"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"upstream": {
|
|
212
|
+
"$ref": "#/definitions/upstream"
|
|
213
|
+
},
|
|
214
|
+
"resolver": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"upstream": {
|
|
218
|
+
"$ref": "#/definitions/upstream"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
},
|
|
146
226
|
"backend": {
|
|
147
227
|
"type": "string",
|
|
148
228
|
"description": "The backend that should be used to handel data",
|
|
@@ -380,6 +460,9 @@
|
|
|
380
460
|
},
|
|
381
461
|
{
|
|
382
462
|
"$ref": "#/definitions/slideToggleFormControl"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"$ref": "#/definitions/autocompleteTableSelectFormControl"
|
|
383
466
|
}
|
|
384
467
|
]
|
|
385
468
|
}
|
|
@@ -146,6 +146,86 @@
|
|
|
146
146
|
}
|
|
147
147
|
]
|
|
148
148
|
},
|
|
149
|
+
"autocompleteTableSelectFormControl": {
|
|
150
|
+
"allOf": [
|
|
151
|
+
{
|
|
152
|
+
"$ref": "#/definitions/baseFormControl"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "object",
|
|
156
|
+
"properties": {
|
|
157
|
+
"formField": {
|
|
158
|
+
"$ref": "#/definitions/formField"
|
|
159
|
+
},
|
|
160
|
+
"kind": {
|
|
161
|
+
"type": "string",
|
|
162
|
+
"const": "table-select"
|
|
163
|
+
},
|
|
164
|
+
"placeholder": {
|
|
165
|
+
"type": "string"
|
|
166
|
+
},
|
|
167
|
+
"columnList": {
|
|
168
|
+
"alias": "column",
|
|
169
|
+
"type": "array",
|
|
170
|
+
"items": {
|
|
171
|
+
"description": "table column name",
|
|
172
|
+
"type": "object",
|
|
173
|
+
"properties": {
|
|
174
|
+
"name": {
|
|
175
|
+
"type": "string",
|
|
176
|
+
"description": "table column name"
|
|
177
|
+
},
|
|
178
|
+
"title": {
|
|
179
|
+
"type": "string",
|
|
180
|
+
"description": "table column label"
|
|
181
|
+
},
|
|
182
|
+
"hasFilter": {
|
|
183
|
+
"type": "boolean",
|
|
184
|
+
"description": "Whether the column has a filter"
|
|
185
|
+
},
|
|
186
|
+
"kind": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"description": "The kind of data in the column"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"description": "List of table column names"
|
|
193
|
+
},
|
|
194
|
+
"title": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"description": "The title of the table select window"
|
|
197
|
+
},
|
|
198
|
+
"toDisplay": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"properties": {
|
|
201
|
+
"property": {
|
|
202
|
+
"$ref": "#/definitions/property"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"toValue": {
|
|
207
|
+
"type": "object",
|
|
208
|
+
"properties": {
|
|
209
|
+
"property": {
|
|
210
|
+
"$ref": "#/definitions/property"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"upstream": {
|
|
215
|
+
"$ref": "#/definitions/upstream"
|
|
216
|
+
},
|
|
217
|
+
"resolver": {
|
|
218
|
+
"type": "object",
|
|
219
|
+
"properties": {
|
|
220
|
+
"upstream": {
|
|
221
|
+
"$ref": "#/definitions/upstream"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
},
|
|
149
229
|
"backend": {
|
|
150
230
|
"type": "string",
|
|
151
231
|
"description": "The backend that should be used to handel data",
|
|
@@ -383,6 +463,9 @@
|
|
|
383
463
|
},
|
|
384
464
|
{
|
|
385
465
|
"$ref": "#/definitions/slideToggleFormControl"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"$ref": "#/definitions/autocompleteTableSelectFormControl"
|
|
386
469
|
}
|
|
387
470
|
]
|
|
388
471
|
}
|
|
@@ -47,6 +47,9 @@
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"$ref": "#/definitions/slideToggleFormControl"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"$ref": "#/definitions/autocompleteTableSelectFormControl"
|
|
50
53
|
}
|
|
51
54
|
]
|
|
52
55
|
}
|
|
@@ -70,6 +73,9 @@
|
|
|
70
73
|
"tableSelectFormControl": {
|
|
71
74
|
"$ref": "./table-select-form-control.schema.json"
|
|
72
75
|
},
|
|
76
|
+
"autocompleteTableSelectFormControl": {
|
|
77
|
+
"$ref": "./autocomplete-table-select-form-control.schema.json"
|
|
78
|
+
},
|
|
73
79
|
"slideToggleFormControl": {
|
|
74
80
|
"$ref": "./slide-toggle-form-control.schema.json"
|
|
75
81
|
}
|
|
@@ -38,6 +38,9 @@
|
|
|
38
38
|
"type": "string"
|
|
39
39
|
},
|
|
40
40
|
"description": "The table modifiers"
|
|
41
|
+
},
|
|
42
|
+
"cssClass": {
|
|
43
|
+
"$ref": "#/definitions/cssClass"
|
|
41
44
|
}
|
|
42
45
|
},
|
|
43
46
|
"definitions": {
|
|
@@ -55,6 +58,9 @@
|
|
|
55
58
|
},
|
|
56
59
|
"upstream": {
|
|
57
60
|
"$ref": "./upstream.schema.json"
|
|
61
|
+
},
|
|
62
|
+
"cssClass": {
|
|
63
|
+
"$ref": "./css-class.schema.json"
|
|
58
64
|
}
|
|
59
65
|
}
|
|
60
66
|
}
|
|
@@ -113,6 +113,38 @@
|
|
|
113
113
|
],
|
|
114
114
|
"default": "none"
|
|
115
115
|
},
|
|
116
|
+
"cssClass": {
|
|
117
|
+
"oneOf": [
|
|
118
|
+
{
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"type": "array",
|
|
123
|
+
"items": {
|
|
124
|
+
"type": "string"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "object",
|
|
129
|
+
"properties": {
|
|
130
|
+
"name": {
|
|
131
|
+
"type": "string"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"type": "array",
|
|
137
|
+
"items": {
|
|
138
|
+
"type": "object",
|
|
139
|
+
"properties": {
|
|
140
|
+
"name": {
|
|
141
|
+
"type": "string"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
},
|
|
116
148
|
"general": {
|
|
117
149
|
"type": "object",
|
|
118
150
|
"properties": {
|
|
@@ -196,8 +228,7 @@
|
|
|
196
228
|
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
197
229
|
},
|
|
198
230
|
"cssClass": {
|
|
199
|
-
"
|
|
200
|
-
"description": "Additional CSS classes added to the button element"
|
|
231
|
+
"$ref": "#/definitions/cssClass"
|
|
201
232
|
},
|
|
202
233
|
"options": {
|
|
203
234
|
"type": "object",
|
|
@@ -206,6 +206,86 @@
|
|
|
206
206
|
}
|
|
207
207
|
]
|
|
208
208
|
},
|
|
209
|
+
"autocompleteTableSelectFormControl": {
|
|
210
|
+
"allOf": [
|
|
211
|
+
{
|
|
212
|
+
"$ref": "#/definitions/baseFormControl"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"formField": {
|
|
218
|
+
"$ref": "#/definitions/formField"
|
|
219
|
+
},
|
|
220
|
+
"kind": {
|
|
221
|
+
"type": "string",
|
|
222
|
+
"const": "table-select"
|
|
223
|
+
},
|
|
224
|
+
"placeholder": {
|
|
225
|
+
"type": "string"
|
|
226
|
+
},
|
|
227
|
+
"columnList": {
|
|
228
|
+
"alias": "column",
|
|
229
|
+
"type": "array",
|
|
230
|
+
"items": {
|
|
231
|
+
"description": "table column name",
|
|
232
|
+
"type": "object",
|
|
233
|
+
"properties": {
|
|
234
|
+
"name": {
|
|
235
|
+
"type": "string",
|
|
236
|
+
"description": "table column name"
|
|
237
|
+
},
|
|
238
|
+
"title": {
|
|
239
|
+
"type": "string",
|
|
240
|
+
"description": "table column label"
|
|
241
|
+
},
|
|
242
|
+
"hasFilter": {
|
|
243
|
+
"type": "boolean",
|
|
244
|
+
"description": "Whether the column has a filter"
|
|
245
|
+
},
|
|
246
|
+
"kind": {
|
|
247
|
+
"type": "string",
|
|
248
|
+
"description": "The kind of data in the column"
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"description": "List of table column names"
|
|
253
|
+
},
|
|
254
|
+
"title": {
|
|
255
|
+
"type": "string",
|
|
256
|
+
"description": "The title of the table select window"
|
|
257
|
+
},
|
|
258
|
+
"toDisplay": {
|
|
259
|
+
"type": "object",
|
|
260
|
+
"properties": {
|
|
261
|
+
"property": {
|
|
262
|
+
"$ref": "#/definitions/property"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"toValue": {
|
|
267
|
+
"type": "object",
|
|
268
|
+
"properties": {
|
|
269
|
+
"property": {
|
|
270
|
+
"$ref": "#/definitions/property"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"upstream": {
|
|
275
|
+
"$ref": "#/definitions/upstream"
|
|
276
|
+
},
|
|
277
|
+
"resolver": {
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"upstream": {
|
|
281
|
+
"$ref": "#/definitions/upstream"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
]
|
|
288
|
+
},
|
|
209
289
|
"backend": {
|
|
210
290
|
"type": "string",
|
|
211
291
|
"description": "The backend that should be used to handel data",
|
|
@@ -363,6 +443,38 @@
|
|
|
363
443
|
}
|
|
364
444
|
]
|
|
365
445
|
},
|
|
446
|
+
"cssClass": {
|
|
447
|
+
"oneOf": [
|
|
448
|
+
{
|
|
449
|
+
"type": "string"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"type": "array",
|
|
453
|
+
"items": {
|
|
454
|
+
"type": "string"
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"type": "object",
|
|
459
|
+
"properties": {
|
|
460
|
+
"name": {
|
|
461
|
+
"type": "string"
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"type": "array",
|
|
467
|
+
"items": {
|
|
468
|
+
"type": "object",
|
|
469
|
+
"properties": {
|
|
470
|
+
"name": {
|
|
471
|
+
"type": "string"
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
]
|
|
477
|
+
},
|
|
366
478
|
"formArray": {
|
|
367
479
|
"allOf": [
|
|
368
480
|
{
|
|
@@ -478,6 +590,9 @@
|
|
|
478
590
|
},
|
|
479
591
|
{
|
|
480
592
|
"$ref": "#/definitions/slideToggleFormControl"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"$ref": "#/definitions/autocompleteTableSelectFormControl"
|
|
481
596
|
}
|
|
482
597
|
]
|
|
483
598
|
}
|
|
@@ -782,8 +897,7 @@
|
|
|
782
897
|
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
783
898
|
},
|
|
784
899
|
"cssClass": {
|
|
785
|
-
"
|
|
786
|
-
"description": "Additional CSS classes added to the button element"
|
|
900
|
+
"$ref": "#/definitions/cssClass"
|
|
787
901
|
},
|
|
788
902
|
"options": {
|
|
789
903
|
"type": "object",
|
|
@@ -83,6 +83,38 @@
|
|
|
83
83
|
],
|
|
84
84
|
"default": "none"
|
|
85
85
|
},
|
|
86
|
+
"cssClass": {
|
|
87
|
+
"oneOf": [
|
|
88
|
+
{
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"type": "array",
|
|
93
|
+
"items": {
|
|
94
|
+
"type": "string"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"name": {
|
|
101
|
+
"type": "string"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"type": "array",
|
|
107
|
+
"items": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"properties": {
|
|
110
|
+
"name": {
|
|
111
|
+
"type": "string"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
},
|
|
86
118
|
"general": {
|
|
87
119
|
"type": "object",
|
|
88
120
|
"properties": {
|
|
@@ -166,8 +198,7 @@
|
|
|
166
198
|
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
167
199
|
},
|
|
168
200
|
"cssClass": {
|
|
169
|
-
"
|
|
170
|
-
"description": "Additional CSS classes added to the button element"
|
|
201
|
+
"$ref": "#/definitions/cssClass"
|
|
171
202
|
},
|
|
172
203
|
"options": {
|
|
173
204
|
"type": "object",
|
|
@@ -111,6 +111,38 @@
|
|
|
111
111
|
],
|
|
112
112
|
"default": "none"
|
|
113
113
|
},
|
|
114
|
+
"cssClass": {
|
|
115
|
+
"oneOf": [
|
|
116
|
+
{
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "array",
|
|
121
|
+
"items": {
|
|
122
|
+
"type": "string"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "object",
|
|
127
|
+
"properties": {
|
|
128
|
+
"name": {
|
|
129
|
+
"type": "string"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"type": "array",
|
|
135
|
+
"items": {
|
|
136
|
+
"type": "object",
|
|
137
|
+
"properties": {
|
|
138
|
+
"name": {
|
|
139
|
+
"type": "string"
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
},
|
|
114
146
|
"general": {
|
|
115
147
|
"type": "object",
|
|
116
148
|
"properties": {
|
|
@@ -194,8 +226,7 @@
|
|
|
194
226
|
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
195
227
|
},
|
|
196
228
|
"cssClass": {
|
|
197
|
-
"
|
|
198
|
-
"description": "Additional CSS classes added to the button element"
|
|
229
|
+
"$ref": "#/definitions/cssClass"
|
|
199
230
|
},
|
|
200
231
|
"options": {
|
|
201
232
|
"type": "object",
|
|
@@ -69,6 +69,38 @@
|
|
|
69
69
|
],
|
|
70
70
|
"default": "none"
|
|
71
71
|
},
|
|
72
|
+
"cssClass": {
|
|
73
|
+
"oneOf": [
|
|
74
|
+
{
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "array",
|
|
79
|
+
"items": {
|
|
80
|
+
"type": "string"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "object",
|
|
85
|
+
"properties": {
|
|
86
|
+
"name": {
|
|
87
|
+
"type": "string"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"type": "array",
|
|
93
|
+
"items": {
|
|
94
|
+
"type": "object",
|
|
95
|
+
"properties": {
|
|
96
|
+
"name": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
},
|
|
72
104
|
"general": {
|
|
73
105
|
"type": "object",
|
|
74
106
|
"properties": {
|
|
@@ -152,8 +184,7 @@
|
|
|
152
184
|
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
153
185
|
},
|
|
154
186
|
"cssClass": {
|
|
155
|
-
"
|
|
156
|
-
"description": "Additional CSS classes added to the button element"
|
|
187
|
+
"$ref": "#/definitions/cssClass"
|
|
157
188
|
},
|
|
158
189
|
"options": {
|
|
159
190
|
"type": "object",
|