@rxap/schematic-angular 16.2.0-dev.7 → 16.2.0-dev.9

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 (31) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +1 -1
  3. package/package.json +8 -8
  4. package/src/lib/table-column.js +43 -41
  5. package/src/lib/table-column.js.map +1 -1
  6. package/src/schematics/accordion/accordion-component/schema.json +372 -0
  7. package/src/schematics/accordion/accordion-item-component/schema.json +295 -0
  8. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +396 -0
  9. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +352 -0
  10. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +654 -0
  11. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +637 -0
  12. package/src/schematics/data-grid-component/schema.json +358 -0
  13. package/src/schematics/dialog-component/schema.json +240 -0
  14. package/src/schematics/form/control/input-form-control/schema.json +388 -0
  15. package/src/schematics/form/control/select-form-control/schema.json +394 -0
  16. package/src/schematics/form/control/table-select-form-control/schema.json +443 -0
  17. package/src/schematics/form/form-component/schema.json +352 -0
  18. package/src/schematics/form/form-control/schema.json +325 -0
  19. package/src/schematics/form/form-definition/schema.json +333 -0
  20. package/src/schematics/table/action/dialog-table-action/schema.json +309 -0
  21. package/src/schematics/table/action/form-table-action/schema.json +422 -0
  22. package/src/schematics/table/action/navigation-table-action/schema.json +279 -0
  23. package/src/schematics/table/action/open-api-table-action/schema.json +307 -0
  24. package/src/schematics/table/action/operation-table-action/schema.json +265 -0
  25. package/src/schematics/table/header-button/form-table-header-button/schema.json +338 -0
  26. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +260 -0
  27. package/src/schematics/table/table-action/schema.json +261 -0
  28. package/src/schematics/table/table-component/schema.json +604 -0
  29. package/src/schematics/table/table-header-button/schema.json +242 -0
  30. package/src/schematics/table/tree-table-component/schema.json +587 -0
  31. package/src/schematics/tree-component/schema.json +123 -0
@@ -0,0 +1,443 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "table-select-form-control-schematic",
4
+ "allOf": [
5
+ {
6
+ "allOf": [
7
+ {
8
+ "allOf": [
9
+ {
10
+ "type": "object",
11
+ "properties": {
12
+ "project": {
13
+ "type": "string",
14
+ "description": "Project name where the files should be generated"
15
+ },
16
+ "feature": {
17
+ "type": "string",
18
+ "description": "Feature name where the files should be generated"
19
+ },
20
+ "overwrite": {
21
+ "anyOf": [
22
+ {
23
+ "type": "boolean"
24
+ },
25
+ {
26
+ "type": "array",
27
+ "items": {
28
+ "type": "string"
29
+ }
30
+ }
31
+ ],
32
+ "description": "Overwrite existing files",
33
+ "default": false
34
+ },
35
+ "overwriteHtml": {
36
+ "type": "boolean",
37
+ "default": false
38
+ },
39
+ "replace": {
40
+ "type": "boolean",
41
+ "default": false
42
+ }
43
+ },
44
+ "required": [
45
+ "project"
46
+ ]
47
+ },
48
+ {
49
+ "type": "object",
50
+ "properties": {
51
+ "componentName": {
52
+ "type": "string"
53
+ },
54
+ "name": {
55
+ "type": "string"
56
+ },
57
+ "context": {
58
+ "type": "string",
59
+ "description": "The context use to generate proper names for class, files, etc"
60
+ },
61
+ "nestModule": {
62
+ "type": "string",
63
+ "description": "The module name for the table nest operations"
64
+ },
65
+ "controllerName": {
66
+ "type": "string"
67
+ },
68
+ "backend": {
69
+ "type": "string",
70
+ "description": "The backend that should be used to handel data",
71
+ "enum": [
72
+ "none",
73
+ "nestjs",
74
+ "open-api",
75
+ "local"
76
+ ],
77
+ "default": "none"
78
+ },
79
+ "directory": {
80
+ "type": "string",
81
+ "description": "A directory name or absolute path where the files should be generated. Relative to the project and feature base path if a feature is defined"
82
+ },
83
+ "shared": {
84
+ "type": "boolean",
85
+ "description": "Whether the generated code is used across the project",
86
+ "default": false
87
+ },
88
+ "scope": {
89
+ "type": "string"
90
+ },
91
+ "prefix": {
92
+ "type": "string"
93
+ },
94
+ "openApi": {
95
+ "type": "object",
96
+ "additionalProperties": true
97
+ }
98
+ }
99
+ }
100
+ ]
101
+ },
102
+ {
103
+ "type": "object",
104
+ "properties": {
105
+ "name": {
106
+ "type": "string",
107
+ "description": "The name of the control"
108
+ },
109
+ "type": {
110
+ "$ref": "#/definitions/type"
111
+ },
112
+ "isArray": {
113
+ "type": "boolean",
114
+ "description": "Whether the control value is an array",
115
+ "default": false
116
+ },
117
+ "state": {
118
+ "type": "string",
119
+ "description": "The initial state of the control"
120
+ },
121
+ "isRequired": {
122
+ "type": "boolean",
123
+ "description": "Whether the control value is required",
124
+ "default": false
125
+ },
126
+ "isReadonly": {
127
+ "type": "boolean",
128
+ "description": "Whether the control value is readonly",
129
+ "default": false
130
+ },
131
+ "isDisabled": {
132
+ "type": "boolean",
133
+ "description": "Whether the control value is disabled",
134
+ "default": false
135
+ },
136
+ "validatorList": {
137
+ "type": "array",
138
+ "items": {
139
+ "type": "string"
140
+ }
141
+ },
142
+ "kind": {
143
+ "type": "string",
144
+ "description": "The name of the template",
145
+ "enum": [
146
+ "default",
147
+ "input",
148
+ "select",
149
+ "checkbox",
150
+ "autocomplete-table-select",
151
+ "table-select",
152
+ "textarea",
153
+ "slide-toggle"
154
+ ],
155
+ "default": "default"
156
+ }
157
+ },
158
+ "required": [
159
+ "name"
160
+ ],
161
+ "additionalProperties": true
162
+ },
163
+ {
164
+ "type": "object",
165
+ "properties": {
166
+ "formName": {
167
+ "alias": "form",
168
+ "type": "string",
169
+ "description": "The name of the form where the form control should be added",
170
+ "x-prompt": "Enter the name of the form where the form control should be added"
171
+ }
172
+ },
173
+ "required": [
174
+ "formName"
175
+ ]
176
+ }
177
+ ]
178
+ },
179
+ {
180
+ "type": "object",
181
+ "properties": {
182
+ "columnList": {
183
+ "alias": "column",
184
+ "type": "array",
185
+ "items": {
186
+ "description": "table column name",
187
+ "type": "object",
188
+ "properties": {
189
+ "name": {
190
+ "type": "string",
191
+ "description": "table column name"
192
+ },
193
+ "title": {
194
+ "type": "string",
195
+ "description": "table column label"
196
+ },
197
+ "hasFilter": {
198
+ "type": "boolean",
199
+ "description": "Whether the column has a filter"
200
+ },
201
+ "kind": {
202
+ "type": "string",
203
+ "description": "The kind of data in the column"
204
+ }
205
+ }
206
+ },
207
+ "description": "List of table column names"
208
+ },
209
+ "title": {
210
+ "type": "string",
211
+ "description": "The title of the table select window"
212
+ },
213
+ "toDisplay": {
214
+ "type": "object",
215
+ "properties": {
216
+ "property": {
217
+ "$ref": "#/definitions/property"
218
+ }
219
+ }
220
+ },
221
+ "toValue": {
222
+ "type": "object",
223
+ "properties": {
224
+ "property": {
225
+ "$ref": "#/definitions/property"
226
+ }
227
+ }
228
+ },
229
+ "upstream": {
230
+ "$ref": "#/definitions/upstream"
231
+ }
232
+ }
233
+ }
234
+ ],
235
+ "definitions": {
236
+ "type": {
237
+ "oneOf": [
238
+ {
239
+ "type": "string"
240
+ },
241
+ {
242
+ "type": "object",
243
+ "properties": {
244
+ "name": {
245
+ "type": "string"
246
+ },
247
+ "isTypeOnly": {
248
+ "type": "boolean"
249
+ },
250
+ "moduleSpecifier": {
251
+ "type": "string"
252
+ },
253
+ "namedImport": {
254
+ "type": "string"
255
+ },
256
+ "namespaceImport": {
257
+ "type": "string"
258
+ },
259
+ "defaultImport": {
260
+ "type": "string"
261
+ }
262
+ },
263
+ "required": [
264
+ "name"
265
+ ]
266
+ }
267
+ ]
268
+ },
269
+ "property": {
270
+ "oneOf": [
271
+ {
272
+ "type": "string"
273
+ },
274
+ {
275
+ "type": "object",
276
+ "properties": {
277
+ "name": {
278
+ "type": "string"
279
+ },
280
+ "type": {
281
+ "$ref": "#/definitions/type"
282
+ }
283
+ },
284
+ "required": [
285
+ "name"
286
+ ]
287
+ }
288
+ ],
289
+ "definitions": {
290
+ "type": {
291
+ "oneOf": [
292
+ {
293
+ "type": "string"
294
+ },
295
+ {
296
+ "type": "object",
297
+ "properties": {
298
+ "name": {
299
+ "type": "string"
300
+ },
301
+ "isTypeOnly": {
302
+ "type": "boolean"
303
+ },
304
+ "moduleSpecifier": {
305
+ "type": "string"
306
+ },
307
+ "namedImport": {
308
+ "type": "string"
309
+ },
310
+ "namespaceImport": {
311
+ "type": "string"
312
+ },
313
+ "defaultImport": {
314
+ "type": "string"
315
+ }
316
+ },
317
+ "required": [
318
+ "name"
319
+ ]
320
+ }
321
+ ]
322
+ }
323
+ }
324
+ },
325
+ "button": {
326
+ "type": "object",
327
+ "properties": {
328
+ "svgIcon": {
329
+ "type": "string"
330
+ },
331
+ "icon": {
332
+ "type": "string"
333
+ },
334
+ "directiveList": {
335
+ "type": "array",
336
+ "items": {
337
+ "$ref": "#/definitions/type"
338
+ }
339
+ },
340
+ "importList": {
341
+ "type": "array",
342
+ "items": {
343
+ "$ref": "#/definitions/type"
344
+ }
345
+ }
346
+ },
347
+ "definitions": {
348
+ "type": {
349
+ "oneOf": [
350
+ {
351
+ "type": "string"
352
+ },
353
+ {
354
+ "type": "object",
355
+ "properties": {
356
+ "name": {
357
+ "type": "string"
358
+ },
359
+ "isTypeOnly": {
360
+ "type": "boolean"
361
+ },
362
+ "moduleSpecifier": {
363
+ "type": "string"
364
+ },
365
+ "namedImport": {
366
+ "type": "string"
367
+ },
368
+ "namespaceImport": {
369
+ "type": "string"
370
+ },
371
+ "defaultImport": {
372
+ "type": "string"
373
+ }
374
+ },
375
+ "required": [
376
+ "name"
377
+ ]
378
+ }
379
+ ]
380
+ }
381
+ }
382
+ },
383
+ "upstream": {
384
+ "oneOf": [
385
+ {
386
+ "type": "object",
387
+ "properties": {
388
+ "kind": {
389
+ "type": "string",
390
+ "enum": [
391
+ "open-api"
392
+ ]
393
+ },
394
+ "operationId": {
395
+ "type": "string"
396
+ },
397
+ "scope": {
398
+ "type": "string"
399
+ },
400
+ "mapper": {
401
+ "type": "object",
402
+ "properties": {
403
+ "pageIndex": {
404
+ "type": "string"
405
+ },
406
+ "pageSize": {
407
+ "type": "string"
408
+ },
409
+ "sortBy": {
410
+ "type": "string"
411
+ },
412
+ "sortDirection": {
413
+ "type": "string"
414
+ },
415
+ "list": {
416
+ "type": "string"
417
+ },
418
+ "total": {
419
+ "type": "string"
420
+ },
421
+ "filter": {
422
+ "type": "object",
423
+ "properties": {
424
+ "eq": {
425
+ "type": "string"
426
+ },
427
+ "join": {
428
+ "type": "string"
429
+ }
430
+ }
431
+ }
432
+ }
433
+ }
434
+ },
435
+ "required": [
436
+ "kind",
437
+ "operationId"
438
+ ]
439
+ }
440
+ ]
441
+ }
442
+ }
443
+ }