@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,195 +3,84 @@
3
3
  "$id": "select-form-control-schematic",
4
4
  "allOf": [
5
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
- "$ref": "#/allOf/1/allOf/1/properties/backend"
70
- },
71
- "directory": {
72
- "type": "string",
73
- "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"
74
- },
75
- "shared": {
76
- "type": "boolean",
77
- "description": "Whether the generated code is used across the project",
78
- "default": false
79
- },
80
- "scope": {
81
- "type": "string"
82
- },
83
- "prefix": {
84
- "type": "string"
85
- },
86
- "openApi": {
87
- "type": "object",
88
- "additionalProperties": true
89
- }
90
- }
91
- }
92
- ]
6
+ "$ref": "#/definitions/formControl"
7
+ },
8
+ {
9
+ "$ref": "#/definitions/selectFormControl"
10
+ }
11
+ ],
12
+ "definitions": {
13
+ "formControl": {
14
+ "type": "object",
15
+ "properties": {
16
+ "name": {
17
+ "type": "string",
18
+ "description": "The name of the control"
93
19
  },
94
- {
95
- "type": "object",
96
- "properties": {
97
- "name": {
98
- "type": "string",
99
- "description": "The name of the control"
100
- },
101
- "type": {
102
- "$ref": "#/definitions/type"
103
- },
104
- "isArray": {
105
- "type": "boolean",
106
- "description": "Whether the control value is an array",
107
- "default": false
108
- },
109
- "state": {
110
- "type": "string",
111
- "description": "The initial state of the control"
112
- },
113
- "isRequired": {
114
- "type": "boolean",
115
- "description": "Whether the control value is required",
116
- "default": false
117
- },
118
- "isReadonly": {
119
- "type": "boolean",
120
- "description": "Whether the control value is readonly",
121
- "default": false
122
- },
123
- "isDisabled": {
124
- "type": "boolean",
125
- "description": "Whether the control value is disabled",
126
- "default": false
127
- },
128
- "validatorList": {
129
- "type": "array",
130
- "items": {
131
- "type": "string"
132
- }
133
- },
134
- "kind": {
135
- "type": "string",
136
- "description": "The name of the template",
137
- "enum": [
138
- "default",
139
- "input",
140
- "select",
141
- "checkbox",
142
- "autocomplete-table-select",
143
- "table-select",
144
- "textarea",
145
- "slide-toggle"
146
- ],
147
- "default": "default"
148
- }
149
- },
150
- "required": [
151
- "name"
152
- ],
153
- "additionalProperties": true
20
+ "type": {
21
+ "$ref": "#/definitions/type"
154
22
  },
155
- {
156
- "type": "object",
157
- "properties": {
158
- "formName": {
159
- "alias": "form",
160
- "type": "string",
161
- "description": "The name of the form where the form control should be added",
162
- "x-prompt": "Enter the name of the form where the form control should be added"
163
- }
164
- },
165
- "required": [
166
- "formName"
167
- ]
23
+ "isArray": {
24
+ "type": "boolean",
25
+ "description": "Whether the control value is an array",
26
+ "default": false
27
+ },
28
+ "state": {
29
+ "type": "string",
30
+ "description": "The initial state of the control"
31
+ },
32
+ "isRequired": {
33
+ "type": "boolean",
34
+ "description": "Whether the control value is required",
35
+ "default": false
36
+ },
37
+ "isReadonly": {
38
+ "type": "boolean",
39
+ "description": "Whether the control value is readonly",
40
+ "default": false
41
+ },
42
+ "isDisabled": {
43
+ "type": "boolean",
44
+ "description": "Whether the control value is disabled",
45
+ "default": false
46
+ },
47
+ "validatorList": {
48
+ "type": "array",
49
+ "items": {
50
+ "type": "string"
51
+ }
52
+ },
53
+ "kind": {
54
+ "type": "string",
55
+ "description": "The name of the template",
56
+ "enum": [
57
+ "default",
58
+ "input",
59
+ "select",
60
+ "checkbox",
61
+ "autocomplete-table-select",
62
+ "table-select",
63
+ "textarea",
64
+ "slide-toggle"
65
+ ],
66
+ "default": "default"
168
67
  }
169
- ]
68
+ },
69
+ "required": [
70
+ "name"
71
+ ],
72
+ "additionalProperties": true
170
73
  },
171
- {
74
+ "selectFormControl": {
172
75
  "allOf": [
173
76
  {
174
- "$ref": "#/allOf/0/allOf/1"
77
+ "$ref": "#/definitions/formControl"
175
78
  },
176
79
  {
177
80
  "type": "object",
178
81
  "properties": {
179
82
  "formField": {
180
- "type": "object",
181
- "properties": {
182
- "label": {
183
- "type": "string"
184
- },
185
- "prefixButton": {
186
- "$ref": "#/definitions/button"
187
- },
188
- "suffixButton": {
189
- "$ref": "#/definitions/button"
190
- },
191
- "hasClearButton": {
192
- "type": "boolean"
193
- }
194
- }
83
+ "$ref": "#/definitions/formField"
195
84
  },
196
85
  "options": {
197
86
  "type": "array",
@@ -222,15 +111,7 @@
222
111
  }
223
112
  },
224
113
  "backend": {
225
- "type": "string",
226
- "description": "The backend that should be used to handel data",
227
- "enum": [
228
- "none",
229
- "nestjs",
230
- "open-api",
231
- "local"
232
- ],
233
- "default": "none"
114
+ "$ref": "#/definitions/backend"
234
115
  },
235
116
  "multiple": {
236
117
  "alias": "multi",
@@ -240,9 +121,58 @@
240
121
  }
241
122
  }
242
123
  ]
243
- }
244
- ],
245
- "definitions": {
124
+ },
125
+ "backend": {
126
+ "type": "string",
127
+ "description": "The backend that should be used to handel data",
128
+ "enum": [
129
+ "none",
130
+ "nestjs",
131
+ "open-api",
132
+ "local"
133
+ ],
134
+ "default": "none"
135
+ },
136
+ "button": {
137
+ "type": "object",
138
+ "properties": {
139
+ "svgIcon": {
140
+ "type": "string"
141
+ },
142
+ "icon": {
143
+ "type": "string"
144
+ },
145
+ "directiveList": {
146
+ "type": "array",
147
+ "items": {
148
+ "$ref": "#/definitions/type"
149
+ }
150
+ },
151
+ "importList": {
152
+ "type": "array",
153
+ "items": {
154
+ "$ref": "#/definitions/type"
155
+ }
156
+ }
157
+ }
158
+ },
159
+ "formField": {
160
+ "type": "object",
161
+ "properties": {
162
+ "label": {
163
+ "type": "string"
164
+ },
165
+ "prefixButton": {
166
+ "$ref": "#/definitions/button"
167
+ },
168
+ "suffixButton": {
169
+ "$ref": "#/definitions/button"
170
+ },
171
+ "hasClearButton": {
172
+ "type": "boolean"
173
+ }
174
+ }
175
+ },
246
176
  "type": {
247
177
  "oneOf": [
248
178
  {
@@ -275,123 +205,6 @@
275
205
  ]
276
206
  }
277
207
  ]
278
- },
279
- "property": {
280
- "oneOf": [
281
- {
282
- "type": "string"
283
- },
284
- {
285
- "type": "object",
286
- "properties": {
287
- "name": {
288
- "type": "string"
289
- },
290
- "type": {
291
- "$ref": "#/definitions/type"
292
- },
293
- "isArray": {
294
- "type": "boolean"
295
- }
296
- },
297
- "required": [
298
- "name"
299
- ]
300
- }
301
- ],
302
- "definitions": {
303
- "type": {
304
- "oneOf": [
305
- {
306
- "type": "string"
307
- },
308
- {
309
- "type": "object",
310
- "properties": {
311
- "name": {
312
- "type": "string"
313
- },
314
- "isTypeOnly": {
315
- "type": "boolean"
316
- },
317
- "moduleSpecifier": {
318
- "type": "string"
319
- },
320
- "namedImport": {
321
- "type": "string"
322
- },
323
- "namespaceImport": {
324
- "type": "string"
325
- },
326
- "defaultImport": {
327
- "type": "string"
328
- }
329
- },
330
- "required": [
331
- "name"
332
- ]
333
- }
334
- ]
335
- }
336
- }
337
- },
338
- "button": {
339
- "type": "object",
340
- "properties": {
341
- "svgIcon": {
342
- "type": "string"
343
- },
344
- "icon": {
345
- "type": "string"
346
- },
347
- "directiveList": {
348
- "type": "array",
349
- "items": {
350
- "$ref": "#/definitions/type"
351
- }
352
- },
353
- "importList": {
354
- "type": "array",
355
- "items": {
356
- "$ref": "#/definitions/type"
357
- }
358
- }
359
- },
360
- "definitions": {
361
- "type": {
362
- "oneOf": [
363
- {
364
- "type": "string"
365
- },
366
- {
367
- "type": "object",
368
- "properties": {
369
- "name": {
370
- "type": "string"
371
- },
372
- "isTypeOnly": {
373
- "type": "boolean"
374
- },
375
- "moduleSpecifier": {
376
- "type": "string"
377
- },
378
- "namedImport": {
379
- "type": "string"
380
- },
381
- "namespaceImport": {
382
- "type": "string"
383
- },
384
- "defaultImport": {
385
- "type": "string"
386
- }
387
- },
388
- "required": [
389
- "name"
390
- ]
391
- }
392
- ]
393
- }
394
- }
395
208
  }
396
209
  }
397
210
  }
@@ -3,21 +3,18 @@
3
3
  "$id": "select-form-control-schematic",
4
4
  "allOf": [
5
5
  {
6
- "$ref": "../../form-control/template.schema.json"
6
+ "$ref": "#/definitions/formControl"
7
7
  },
8
8
  {
9
- "$ref": "../../../select-form-control.schema.json"
9
+ "$ref": "#/definitions/selectFormControl"
10
10
  }
11
11
  ],
12
12
  "definitions": {
13
- "type": {
14
- "$ref": "../../../type.schema.json"
15
- },
16
- "property": {
17
- "$ref": "../../../property.schema.json"
13
+ "formControl": {
14
+ "$ref": "../../form-control/template.schema.json"
18
15
  },
19
- "button": {
20
- "$ref": "../../../button.schema.json"
16
+ "selectFormControl": {
17
+ "$ref": "../../../select-form-control.schema.json"
21
18
  }
22
19
  }
23
20
  }
@@ -79,7 +79,7 @@ function default_1(options) {
79
79
  propertyList: (0, table_component_1.TableColumnListAndPropertyListToGetPageOperationPropertyList)(columnList, propertyList),
80
80
  operationName: optionsOperationName,
81
81
  path: optionsOperationPath,
82
- responseDtoName: tableResponseDtoName,
82
+ dtoClassNameSuffix: tableResponseDtoName,
83
83
  context,
84
84
  upstream
85
85
  }),
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/form/control/table-select-form-control/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/form/control/table-select-form-control/index.ts"],"names":[],"mappings":"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"}