@rxap/schematic-angular 16.2.0-dev.21 → 16.2.0-dev.22

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 (37) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +1 -1
  3. package/collection.json +5 -0
  4. package/package.json +7 -7
  5. package/src/lib/form/control/autocomplete-table-select-form-control.d.ts +6 -0
  6. package/src/lib/form/control/autocomplete-table-select-form-control.js +34 -0
  7. package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -0
  8. package/src/lib/form/control/form-control-kind.d.ts +2 -1
  9. package/src/lib/form/control/form-control-kind.js +1 -0
  10. package/src/lib/form/control/form-control-kind.js.map +1 -1
  11. package/src/lib/form/control/form-control.d.ts +1 -1
  12. package/src/lib/form/control/form-control.js +3 -0
  13. package/src/lib/form/control/form-control.js.map +1 -1
  14. package/src/schema.json +122 -0
  15. package/src/schematic-input.schema.json +19 -0
  16. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +83 -0
  17. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +83 -0
  18. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +83 -0
  19. package/src/schematics/autocomplete-table-select-form-control.schema.json +96 -0
  20. package/src/schematics/data-grid-component/schema.json +83 -0
  21. package/src/schematics/form/control/autocomplete-table-select-form-control/index.d.ts +10 -0
  22. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +247 -0
  23. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -0
  24. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.d.ts +4 -0
  25. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +453 -0
  26. package/src/schematics/form/control/autocomplete-table-select-form-control/template.schema.json +39 -0
  27. package/src/schematics/form/form-array/schema.json +83 -0
  28. package/src/schematics/form/form-component/schema.json +83 -0
  29. package/src/schematics/form/form-control/schema.json +83 -0
  30. package/src/schematics/form/form-definition/schema.json +83 -0
  31. package/src/schematics/form/form-group/schema.json +83 -0
  32. package/src/schematics/form-control.schema.json +6 -0
  33. package/src/schematics/table/action/form-table-action/schema.json +83 -0
  34. package/src/schematics/table/header-button/form-table-header-button/schema.json +83 -0
  35. package/src/schematics/table/table-component/schema.json +83 -0
  36. package/src/schematics/table/tree-table-component/schema.json +83 -0
  37. package/src/template.schema.json +6 -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
  }
@@ -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",
@@ -478,6 +558,9 @@
478
558
  },
479
559
  {
480
560
  "$ref": "#/definitions/slideToggleFormControl"
561
+ },
562
+ {
563
+ "$ref": "#/definitions/autocompleteTableSelectFormControl"
481
564
  }
482
565
  ]
483
566
  }
@@ -164,6 +164,86 @@
164
164
  }
165
165
  ]
166
166
  },
167
+ "autocompleteTableSelectFormControl": {
168
+ "allOf": [
169
+ {
170
+ "$ref": "#/definitions/baseFormControl"
171
+ },
172
+ {
173
+ "type": "object",
174
+ "properties": {
175
+ "formField": {
176
+ "$ref": "#/definitions/formField"
177
+ },
178
+ "kind": {
179
+ "type": "string",
180
+ "const": "table-select"
181
+ },
182
+ "placeholder": {
183
+ "type": "string"
184
+ },
185
+ "columnList": {
186
+ "alias": "column",
187
+ "type": "array",
188
+ "items": {
189
+ "description": "table column name",
190
+ "type": "object",
191
+ "properties": {
192
+ "name": {
193
+ "type": "string",
194
+ "description": "table column name"
195
+ },
196
+ "title": {
197
+ "type": "string",
198
+ "description": "table column label"
199
+ },
200
+ "hasFilter": {
201
+ "type": "boolean",
202
+ "description": "Whether the column has a filter"
203
+ },
204
+ "kind": {
205
+ "type": "string",
206
+ "description": "The kind of data in the column"
207
+ }
208
+ }
209
+ },
210
+ "description": "List of table column names"
211
+ },
212
+ "title": {
213
+ "type": "string",
214
+ "description": "The title of the table select window"
215
+ },
216
+ "toDisplay": {
217
+ "type": "object",
218
+ "properties": {
219
+ "property": {
220
+ "$ref": "#/definitions/property"
221
+ }
222
+ }
223
+ },
224
+ "toValue": {
225
+ "type": "object",
226
+ "properties": {
227
+ "property": {
228
+ "$ref": "#/definitions/property"
229
+ }
230
+ }
231
+ },
232
+ "upstream": {
233
+ "$ref": "#/definitions/upstream"
234
+ },
235
+ "resolver": {
236
+ "type": "object",
237
+ "properties": {
238
+ "upstream": {
239
+ "$ref": "#/definitions/upstream"
240
+ }
241
+ }
242
+ }
243
+ }
244
+ }
245
+ ]
246
+ },
167
247
  "backend": {
168
248
  "type": "string",
169
249
  "description": "The backend that should be used to handel data",
@@ -436,6 +516,9 @@
436
516
  },
437
517
  {
438
518
  "$ref": "#/definitions/slideToggleFormControl"
519
+ },
520
+ {
521
+ "$ref": "#/definitions/autocompleteTableSelectFormControl"
439
522
  }
440
523
  ]
441
524
  }
@@ -133,6 +133,86 @@
133
133
  }
134
134
  ]
135
135
  },
136
+ "autocompleteTableSelectFormControl": {
137
+ "allOf": [
138
+ {
139
+ "$ref": "#/definitions/baseFormControl"
140
+ },
141
+ {
142
+ "type": "object",
143
+ "properties": {
144
+ "formField": {
145
+ "$ref": "#/definitions/formField"
146
+ },
147
+ "kind": {
148
+ "type": "string",
149
+ "const": "table-select"
150
+ },
151
+ "placeholder": {
152
+ "type": "string"
153
+ },
154
+ "columnList": {
155
+ "alias": "column",
156
+ "type": "array",
157
+ "items": {
158
+ "description": "table column name",
159
+ "type": "object",
160
+ "properties": {
161
+ "name": {
162
+ "type": "string",
163
+ "description": "table column name"
164
+ },
165
+ "title": {
166
+ "type": "string",
167
+ "description": "table column label"
168
+ },
169
+ "hasFilter": {
170
+ "type": "boolean",
171
+ "description": "Whether the column has a filter"
172
+ },
173
+ "kind": {
174
+ "type": "string",
175
+ "description": "The kind of data in the column"
176
+ }
177
+ }
178
+ },
179
+ "description": "List of table column names"
180
+ },
181
+ "title": {
182
+ "type": "string",
183
+ "description": "The title of the table select window"
184
+ },
185
+ "toDisplay": {
186
+ "type": "object",
187
+ "properties": {
188
+ "property": {
189
+ "$ref": "#/definitions/property"
190
+ }
191
+ }
192
+ },
193
+ "toValue": {
194
+ "type": "object",
195
+ "properties": {
196
+ "property": {
197
+ "$ref": "#/definitions/property"
198
+ }
199
+ }
200
+ },
201
+ "upstream": {
202
+ "$ref": "#/definitions/upstream"
203
+ },
204
+ "resolver": {
205
+ "type": "object",
206
+ "properties": {
207
+ "upstream": {
208
+ "$ref": "#/definitions/upstream"
209
+ }
210
+ }
211
+ }
212
+ }
213
+ }
214
+ ]
215
+ },
136
216
  "backend": {
137
217
  "type": "string",
138
218
  "description": "The backend that should be used to handel data",
@@ -257,6 +337,9 @@
257
337
  },
258
338
  {
259
339
  "$ref": "#/definitions/slideToggleFormControl"
340
+ },
341
+ {
342
+ "$ref": "#/definitions/autocompleteTableSelectFormControl"
260
343
  }
261
344
  ]
262
345
  }
@@ -133,6 +133,86 @@
133
133
  }
134
134
  ]
135
135
  },
136
+ "autocompleteTableSelectFormControl": {
137
+ "allOf": [
138
+ {
139
+ "$ref": "#/definitions/baseFormControl"
140
+ },
141
+ {
142
+ "type": "object",
143
+ "properties": {
144
+ "formField": {
145
+ "$ref": "#/definitions/formField"
146
+ },
147
+ "kind": {
148
+ "type": "string",
149
+ "const": "table-select"
150
+ },
151
+ "placeholder": {
152
+ "type": "string"
153
+ },
154
+ "columnList": {
155
+ "alias": "column",
156
+ "type": "array",
157
+ "items": {
158
+ "description": "table column name",
159
+ "type": "object",
160
+ "properties": {
161
+ "name": {
162
+ "type": "string",
163
+ "description": "table column name"
164
+ },
165
+ "title": {
166
+ "type": "string",
167
+ "description": "table column label"
168
+ },
169
+ "hasFilter": {
170
+ "type": "boolean",
171
+ "description": "Whether the column has a filter"
172
+ },
173
+ "kind": {
174
+ "type": "string",
175
+ "description": "The kind of data in the column"
176
+ }
177
+ }
178
+ },
179
+ "description": "List of table column names"
180
+ },
181
+ "title": {
182
+ "type": "string",
183
+ "description": "The title of the table select window"
184
+ },
185
+ "toDisplay": {
186
+ "type": "object",
187
+ "properties": {
188
+ "property": {
189
+ "$ref": "#/definitions/property"
190
+ }
191
+ }
192
+ },
193
+ "toValue": {
194
+ "type": "object",
195
+ "properties": {
196
+ "property": {
197
+ "$ref": "#/definitions/property"
198
+ }
199
+ }
200
+ },
201
+ "upstream": {
202
+ "$ref": "#/definitions/upstream"
203
+ },
204
+ "resolver": {
205
+ "type": "object",
206
+ "properties": {
207
+ "upstream": {
208
+ "$ref": "#/definitions/upstream"
209
+ }
210
+ }
211
+ }
212
+ }
213
+ }
214
+ ]
215
+ },
136
216
  "backend": {
137
217
  "type": "string",
138
218
  "description": "The backend that should be used to handel data",
@@ -257,6 +337,9 @@
257
337
  },
258
338
  {
259
339
  "$ref": "#/definitions/slideToggleFormControl"
340
+ },
341
+ {
342
+ "$ref": "#/definitions/autocompleteTableSelectFormControl"
260
343
  }
261
344
  ]
262
345
  }