@rxap/schematic-angular 16.2.0-dev.6 → 16.2.0-dev.8

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 (198) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +1 -1
  3. package/package.json +10 -8
  4. package/src/lib/accordion-header.d.ts +5 -0
  5. package/src/lib/accordion-header.js +8 -2
  6. package/src/lib/accordion-header.js.map +1 -1
  7. package/src/lib/accordion-item.d.ts +17 -16
  8. package/src/lib/accordion-item.js +44 -32
  9. package/src/lib/accordion-item.js.map +1 -1
  10. package/src/lib/accordion-itme-kinds.d.ts +8 -0
  11. package/src/lib/accordion-itme-kinds.js +16 -0
  12. package/src/lib/accordion-itme-kinds.js.map +1 -0
  13. package/src/lib/coerce-accordion-component.js +2 -2
  14. package/src/lib/coerce-accordion-component.js.map +1 -1
  15. package/src/lib/coerce-form-component.js +5 -2
  16. package/src/lib/coerce-form-component.js.map +1 -1
  17. package/src/lib/coerce-minimum-table-component.js +6 -3
  18. package/src/lib/coerce-minimum-table-component.js.map +1 -1
  19. package/src/lib/coerce-tree-table-component.js +2 -0
  20. package/src/lib/coerce-tree-table-component.js.map +1 -1
  21. package/src/lib/data-grid-item.d.ts +4 -7
  22. package/src/lib/data-grid-item.js.map +1 -1
  23. package/src/lib/data-grid-options.d.ts +2 -0
  24. package/src/lib/data-grid-options.js +7 -3
  25. package/src/lib/data-grid-options.js.map +1 -1
  26. package/src/lib/form/generate-form-template.d.ts +5 -0
  27. package/src/lib/form/generate-form-template.js +12 -0
  28. package/src/lib/form/generate-form-template.js.map +1 -0
  29. package/src/lib/form-component-control.d.ts +2 -6
  30. package/src/lib/form-component-control.js.map +1 -1
  31. package/src/lib/form-control.d.ts +125 -0
  32. package/src/lib/form-control.js +303 -0
  33. package/src/lib/form-control.js.map +1 -0
  34. package/src/lib/form-definition-control.d.ts +3 -57
  35. package/src/lib/form-definition-control.js +18 -144
  36. package/src/lib/form-definition-control.js.map +1 -1
  37. package/src/lib/load-handlebars-template.d.ts +3 -0
  38. package/src/lib/load-handlebars-template.js +24 -0
  39. package/src/lib/load-handlebars-template.js.map +1 -0
  40. package/src/lib/minimum-table-component-options.d.ts +1 -1
  41. package/src/lib/minimum-table-component-options.js +3 -3
  42. package/src/lib/minimum-table-component-options.js.map +1 -1
  43. package/src/lib/table-column.d.ts +8 -2
  44. package/src/lib/table-column.js +63 -44
  45. package/src/lib/table-column.js.map +1 -1
  46. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.hbs +25 -0
  47. package/src/schematics/accordion/accordion-component/index.js +6 -98
  48. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  49. package/src/schematics/accordion/accordion-component/template.schema.json +102 -0
  50. package/src/schematics/accordion/accordion-item-component/index.d.ts +2 -2
  51. package/src/schematics/accordion/accordion-item-component/index.js +42 -42
  52. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  53. package/src/schematics/accordion/accordion-item-component/schema.d.ts +2 -2
  54. package/src/schematics/accordion/accordion-item-component/template.schema.json +33 -0
  55. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
  56. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +17 -29
  57. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  58. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.d.ts +1 -1
  59. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +31 -0
  60. package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
  61. package/src/schematics/accordion/item/accordion-item-switch-component/index.js +4 -4
  62. package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
  63. package/src/schematics/accordion/item/accordion-item-switch-component/schema.d.ts +1 -1
  64. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +84 -0
  65. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
  66. package/src/schematics/accordion/item/accordion-item-table-component/index.js +8 -8
  67. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  68. package/src/schematics/accordion/item/accordion-item-table-component/schema.d.ts +1 -1
  69. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +46 -0
  70. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
  71. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +10 -10
  72. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  73. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.d.ts +1 -1
  74. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +46 -0
  75. package/src/schematics/accordion/templates/accordion-header.hbs +6 -0
  76. package/src/schematics/accordion/templates/data-grid-accordion-item.hbs +15 -0
  77. package/src/schematics/accordion/templates/default-accordion-item.hbs +15 -0
  78. package/src/schematics/accordion/templates/switch-accordion-item.hbs +21 -0
  79. package/src/schematics/accordion/templates/table-accordion-item.hbs +15 -0
  80. package/src/schematics/accordion/templates/tree-table-accordion-item.hbs +15 -0
  81. package/src/schematics/accordion-item.schema.json +35 -0
  82. package/src/schematics/angular.schema.json +2 -10
  83. package/src/schematics/backend.schema.json +13 -0
  84. package/src/schematics/button.schema.json +30 -0
  85. package/src/schematics/data-grid-component/files/component/__componentName__.component.html.hbs +34 -0
  86. package/src/schematics/data-grid-component/index.d.ts +0 -1
  87. package/src/schematics/data-grid-component/index.js +21 -7
  88. package/src/schematics/data-grid-component/index.js.map +1 -1
  89. package/src/schematics/data-grid-component/template.schema.json +23 -0
  90. package/src/schematics/data-grid-item.schema.json +23 -0
  91. package/src/schematics/data-grid.schema.json +44 -0
  92. package/src/schematics/dialog-component/template.schema.json +65 -0
  93. package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
  94. package/src/schematics/form/control/input-form-control/index.js +4 -27
  95. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  96. package/src/schematics/form/control/input-form-control/schema.d.ts +2 -3
  97. package/src/schematics/form/control/input-form-control/template.schema.json +23 -0
  98. package/src/schematics/form/control/select-form-control/index.d.ts +4 -2
  99. package/src/schematics/form/control/select-form-control/index.js +132 -96
  100. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  101. package/src/schematics/form/control/select-form-control/schema.d.ts +2 -3
  102. package/src/schematics/form/control/select-form-control/template.schema.json +23 -0
  103. package/src/schematics/form/control/table-select-form-control/index.d.ts +4 -6
  104. package/src/schematics/form/control/table-select-form-control/index.js +80 -68
  105. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  106. package/src/schematics/form/control/table-select-form-control/schema.d.ts +2 -4
  107. package/src/schematics/form/control/table-select-form-control/template.schema.json +78 -0
  108. package/src/schematics/form/form-component/files/component/{__componentName__.component.html.template → __componentName__.component.html.hbs} +3 -3
  109. package/src/schematics/form/form-component/index.js +4 -1
  110. package/src/schematics/form/form-component/index.js.map +1 -1
  111. package/src/schematics/form/form-component/template.schema.json +23 -0
  112. package/src/schematics/form/form-control/index.d.ts +3 -1
  113. package/src/schematics/form/form-control/index.js +19 -8
  114. package/src/schematics/form/form-control/index.js.map +1 -1
  115. package/src/schematics/form/form-control/template.schema.json +37 -0
  116. package/src/schematics/form/form-definition/index.js +14 -1
  117. package/src/schematics/form/form-definition/index.js.map +1 -1
  118. package/src/schematics/form/form-definition/template.schema.json +33 -0
  119. package/src/schematics/form/templates/checkbox-form-control.hbs +9 -0
  120. package/src/schematics/form/templates/default-form-control.hbs +2 -0
  121. package/src/schematics/form/templates/input-form-control.hbs +9 -0
  122. package/src/schematics/form/templates/mat-form-field.hbs +31 -0
  123. package/src/schematics/form/templates/slide-toggle-form-control.hbs +8 -0
  124. package/src/schematics/form/templates/table-select-form-control.hbs +18 -0
  125. package/src/schematics/form-component.schema.json +39 -0
  126. package/src/schematics/form-control.schema.json +68 -0
  127. package/src/schematics/form-definition.schema.json +22 -0
  128. package/src/schematics/form-field.schema.json +24 -0
  129. package/src/schematics/header-button.schema.json +42 -0
  130. package/src/schematics/input-form-control.schema.json +47 -0
  131. package/src/schematics/minimum-table.schema.json +54 -0
  132. package/src/schematics/property.schema.json +28 -0
  133. package/src/schematics/select-form-control.schema.json +53 -0
  134. package/src/schematics/table/action/dialog-table-action/template.schema.json +61 -0
  135. package/src/schematics/table/action/form-table-action/template.schema.json +75 -0
  136. package/src/schematics/table/action/navigation-table-action/template.schema.json +31 -0
  137. package/src/schematics/table/action/open-api-table-action/template.schema.json +59 -0
  138. package/src/schematics/table/action/operation-table-action/template.schema.json +17 -0
  139. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +51 -0
  140. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +31 -0
  141. package/src/schematics/table/table-action/template.schema.json +30 -0
  142. package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +241 -0
  143. package/src/schematics/table/table-component/index.d.ts +1 -1
  144. package/src/schematics/table/table-component/index.js +2 -2
  145. package/src/schematics/table/table-component/index.js.map +1 -1
  146. package/src/schematics/table/table-component/template.schema.json +26 -0
  147. package/src/schematics/table/table-header-button/template.schema.json +30 -0
  148. package/src/schematics/table/templates/boolean-table-column.hbs +10 -0
  149. package/src/schematics/table/templates/component-table-column.hbs +12 -0
  150. package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +10 -0
  151. package/src/schematics/table/templates/date-table-column.hbs +11 -0
  152. package/src/schematics/table/templates/default-table-column.hbs +8 -0
  153. package/src/schematics/table/templates/icon-table-column.hbs +10 -0
  154. package/src/schematics/table/templates/link-table-column.hbs +10 -0
  155. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +249 -0
  156. package/src/schematics/table/tree-table-component/template.schema.json +26 -0
  157. package/src/schematics/table-action.schema.json +61 -0
  158. package/src/schematics/table-column.schema.json +69 -0
  159. package/src/schematics/table.schema.json +54 -0
  160. package/src/schematics/tree-component/template.schema.json +31 -0
  161. package/src/schematics/tree-table.schema.json +40 -0
  162. package/src/schematics/type.schema.json +35 -0
  163. package/src/schematics/upstream.schema.json +56 -0
  164. package/src/lib/accordion-itme-types.d.ts +0 -8
  165. package/src/lib/accordion-itme-types.js +0 -16
  166. package/src/lib/accordion-itme-types.js.map +0 -1
  167. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.template +0 -94
  168. package/src/schematics/accordion/accordion-component/files/header-component/accordion-header.component.html.template +0 -10
  169. package/src/schematics/accordion/accordion-component/schema.json +0 -191
  170. package/src/schematics/accordion/accordion-item-component/schema.json +0 -92
  171. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +0 -133
  172. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +0 -226
  173. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +0 -334
  174. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +0 -334
  175. package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +0 -42
  176. package/src/schematics/data-grid-component/files/plain/__componentName__.component.html.template +0 -25
  177. package/src/schematics/data-grid-component/schema.json +0 -176
  178. package/src/schematics/dialog-component/schema.json +0 -81
  179. package/src/schematics/form/control/input-form-control/schema.json +0 -116
  180. package/src/schematics/form/control/select-form-control/schema.json +0 -102
  181. package/src/schematics/form/control/table-select-form-control/schema.json +0 -106
  182. package/src/schematics/form/form-component/schema.json +0 -173
  183. package/src/schematics/form/form-control/schema.json +0 -92
  184. package/src/schematics/form/form-definition/schema.json +0 -148
  185. package/src/schematics/table/action/dialog-table-action/schema.json +0 -148
  186. package/src/schematics/table/action/form-table-action/schema.json +0 -202
  187. package/src/schematics/table/action/navigation-table-action/schema.json +0 -95
  188. package/src/schematics/table/action/open-api-table-action/schema.json +0 -121
  189. package/src/schematics/table/action/operation-table-action/schema.json +0 -98
  190. package/src/schematics/table/header-button/form-table-header-button/schema.json +0 -139
  191. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +0 -87
  192. package/src/schematics/table/table-action/schema.json +0 -94
  193. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +0 -299
  194. package/src/schematics/table/table-component/schema.json +0 -340
  195. package/src/schematics/table/table-header-button/schema.json +0 -80
  196. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +0 -259
  197. package/src/schematics/table/tree-table-component/schema.json +0 -316
  198. package/src/schematics/tree-component/schema.json +0 -86
@@ -1,334 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "accordion-item-table-component",
4
- "type": "object",
5
- "properties": {
6
- "itemName": {
7
- "alias": "name",
8
- "type": "string",
9
- "description": "The name of the accordion item",
10
- "x-prompt": "Which name should the accordion item module have?"
11
- },
12
- "project": {
13
- "type": "string",
14
- "description": "The target project where the accordion item module should be added.",
15
- "x-prompt": "To which project should the accordion item module be added?"
16
- },
17
- "feature": {
18
- "type": "string",
19
- "description": "The feature name where the accordion item module should be added.",
20
- "x-prompt": "To which feature should the accordion item module be added?"
21
- },
22
- "accordionName": {
23
- "type": "string",
24
- "description": "The name of the accordion module where the item should be added.",
25
- "x-prompt": "To which accordion module should the accordion item module be added?"
26
- },
27
- "shared": {
28
- "type": "boolean",
29
- "default": false,
30
- "description": "Whether the item is based of a shared component"
31
- },
32
- "backend": {
33
- "type": "string",
34
- "description": "The backend that should be used to handel data",
35
- "enum": [
36
- "none",
37
- "local",
38
- "nestjs",
39
- "open-api"
40
- ],
41
- "default": "none"
42
- },
43
- "modifiers": {
44
- "alias": "modifier",
45
- "type": "array",
46
- "items": {
47
- "type": "string",
48
- "enum": [
49
- "navigation-back-header",
50
- "without-title"
51
- ]
52
- },
53
- "description": "The table modifiers"
54
- },
55
- "table": {
56
- "type": "object",
57
- "properties": {
58
- "tableRootMethod": {
59
- "type": "object",
60
- "properties": {
61
- "name": {
62
- "type": "string",
63
- "description": "The name of the table method class"
64
- },
65
- "moduleSpecifier": {
66
- "type": "string",
67
- "description": "The import path for the table method class"
68
- }
69
- },
70
- "required": [
71
- "name",
72
- "moduleSpecifier"
73
- ]
74
- },
75
- "tableChildMethod": {
76
- "type": "object",
77
- "properties": {
78
- "name": {
79
- "type": "string",
80
- "description": "The name of the table method class"
81
- },
82
- "moduleSpecifier": {
83
- "type": "string",
84
- "description": "The import path for the table method class"
85
- }
86
- },
87
- "required": [
88
- "name",
89
- "moduleSpecifier"
90
- ]
91
- },
92
- "modifiers": {
93
- "alias": "modifier",
94
- "type": "array",
95
- "items": {
96
- "type": "string",
97
- "enum": [
98
- "navigation-back-header",
99
- "without-title"
100
- ]
101
- },
102
- "description": "The table modifiers"
103
- },
104
- "headerButton": {
105
- "oneOf": [
106
- {
107
- "type": "string"
108
- },
109
- {
110
- "type": "object",
111
- "properties": {
112
- "role": {
113
- "type": "string"
114
- },
115
- "permission": {
116
- "type": "string"
117
- },
118
- "icon": {
119
- "type": "string"
120
- },
121
- "svgIcon": {
122
- "type": "string"
123
- }
124
- }
125
- }
126
- ],
127
- "description": "The header button configuration"
128
- },
129
- "columnList": {
130
- "alias": "column",
131
- "type": "array",
132
- "items": {
133
- "type": "object",
134
- "properties": {
135
- "name": {
136
- "type": "string"
137
- },
138
- "type": {
139
- "oneOf": [
140
- {
141
- "type": "string"
142
- },
143
- {
144
- "type": "object",
145
- "properties": {
146
- "name": {
147
- "type": "string"
148
- },
149
- "isTypeOnly": {
150
- "type": "boolean"
151
- },
152
- "moduleSpecifier": {
153
- "type": "string"
154
- },
155
- "namedImport": {
156
- "type": "string"
157
- },
158
- "namespaceImport": {
159
- "type": "string"
160
- },
161
- "defaultImport": {
162
- "type": "string"
163
- }
164
- },
165
- "required": [
166
- "name"
167
- ]
168
- }
169
- ]
170
- },
171
- "role": {
172
- "type": "string"
173
- },
174
- "modifiers": {
175
- "type": "array",
176
- "items": {
177
- "type": "string"
178
- }
179
- },
180
- "template": {
181
- "type": "string"
182
- },
183
- "pipeList": {
184
- "type": "array",
185
- "items": {
186
- "oneOf": [
187
- {
188
- "type": "string"
189
- },
190
- {
191
- "type": "object",
192
- "properties": {
193
- "name": {
194
- "type": "string"
195
- },
196
- "namedImport": {
197
- "type": "string"
198
- },
199
- "moduleSpecifier": {
200
- "type": "string"
201
- }
202
- },
203
- "required": [
204
- "name",
205
- "namedImport",
206
- "moduleSpecifier"
207
- ]
208
- }
209
- ]
210
- }
211
- },
212
- "hasFilter": {
213
- "type": "boolean"
214
- },
215
- "title": {
216
- "type": "string"
217
- },
218
- "propertyPath": {
219
- "type": "string"
220
- },
221
- "hidden": {
222
- "type": "boolean"
223
- },
224
- "active": {
225
- "type": "boolean"
226
- },
227
- "inactive": {
228
- "type": "boolean"
229
- },
230
- "show": {
231
- "type": "boolean"
232
- }
233
- },
234
- "required": [
235
- "name"
236
- ],
237
- "description": "table column name"
238
- },
239
- "description": "List of table column names"
240
- },
241
- "actionList": {
242
- "alias": "action",
243
- "type": "array",
244
- "items": {
245
- "oneOf": [
246
- {
247
- "type": "string"
248
- },
249
- {
250
- "type": "object",
251
- "properties": {
252
- "type": {
253
- "type": "string"
254
- },
255
- "refresh": {
256
- "type": "boolean"
257
- },
258
- "confirm": {
259
- "type": "boolean"
260
- },
261
- "tooltip": {
262
- "type": "string"
263
- },
264
- "errorMessage": {
265
- "type": "string"
266
- },
267
- "successMessage": {
268
- "type": "string"
269
- },
270
- "priority": {
271
- "type": "number"
272
- },
273
- "checkFunction": {
274
- "type": "string"
275
- },
276
- "inHeader": {
277
- "type": "boolean"
278
- },
279
- "role": {
280
- "type": "string",
281
- "enum": [
282
- "form",
283
- "link",
284
- "method",
285
- "custom"
286
- ]
287
- },
288
- "icon": {
289
- "type": "string"
290
- },
291
- "svgIcon": {
292
- "type": "string"
293
- },
294
- "permission": {
295
- "type": "string"
296
- }
297
- },
298
- "required": [
299
- "type",
300
- "role"
301
- ]
302
- }
303
- ]
304
- }
305
- },
306
- "context": {
307
- "type": "string",
308
- "description": "The context use to generate proper names for class, files, etc"
309
- }
310
- }
311
- },
312
- "overwrite": {
313
- "anyOf": [
314
- {
315
- "type": "boolean"
316
- },
317
- {
318
- "type": "array",
319
- "items": {
320
- "type": "string"
321
- }
322
- }
323
- ],
324
- "description": "Overwrite existing files",
325
- "default": false
326
- }
327
- },
328
- "required": [
329
- "itemName",
330
- "project",
331
- "feature",
332
- "accordionName"
333
- ]
334
- }
@@ -1,42 +0,0 @@
1
- <mat-card>
2
- <% if (title) { %>
3
- <mat-card-header>
4
- <mat-card-title></mat-card-title>
5
- <% if (subtitle) { %><mat-card-subtitle></mat-card-subtitle><% } %>
6
- </mat-card-header>
7
- <% } %>
8
- <mat-card-content>
9
- <div class="p-4">
10
- <form #form="rxapForm" rxapForm>
11
- <% if (collection) { %>
12
- <rxap-data-grid [data]="data" mode="form">
13
- <% } else { %>
14
- <rxap-data-grid [dataSource]="dataGridDataSource" mode="form">
15
- <% } %>
16
- <% for (const item of itemList) { %>
17
- <ng-container rxapDataGridRowDef="<%= item.name %>">
18
- <% if (item.header) { %>
19
- <th *rxapDataGridHeaderCellDef i18n><%= item.header %></th>
20
- <% } %>
21
- <ng-template rxapDataGridEditCellDef>
22
- <% if (item.type === 'string') { %>
23
- <mat-form-field class="w-full">
24
- <input matInput formControlName="<%= item.name %>">
25
- </mat-form-field>
26
- <% } else if (item.type === 'number') { %>
27
- <mat-form-field class="w-full">
28
- <input matInput formControlName="<%= item.name %>" type="number">
29
- </mat-form-field>
30
- <% } else if (item.type === 'boolean') { %>
31
- <mat-slide-toggle formControlName="<%= item.name %>"></mat-slide-toggle>
32
- <% } else { %>
33
- <!-- TODO: <%= item.name %> -->
34
- <% } %>
35
- </ng-template>
36
- </ng-container>
37
- <% } %>
38
- </rxap-data-grid>
39
- </form>
40
- </div>
41
- </mat-card-content>
42
- </mat-card>
@@ -1,25 +0,0 @@
1
- <mat-card>
2
- <% if (title) { %>
3
- <mat-card-header>
4
- <mat-card-title></mat-card-title>
5
- <% if (subtitle) { %><mat-card-subtitle></mat-card-subtitle><% } %>
6
- </mat-card-header>
7
- <% } %>
8
- <mat-card-content>
9
- <div class="p-4">
10
- <% if (collection) { %>
11
- <rxap-data-grid [data]="data">
12
- <% } else { %>
13
- <rxap-data-grid [dataSource]="dataGridDataSource">
14
- <% } %>
15
- <% for (const item of itemList) { %>
16
- <ng-container rxapDataGridRowDef="<%= item.name %>">
17
- <% if (item.header) { %>
18
- <th *rxapDataGridHeaderCellDef i18n><%= item.header %></th>
19
- <% } %>
20
- </ng-container>
21
- <% } %>
22
- </rxap-data-grid>
23
- </div>
24
- </mat-card-content>
25
- </mat-card>
@@ -1,176 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "data-grid-component",
4
- "type": "object",
5
- "properties": {
6
- "name": {
7
- "type": "string",
8
- "description": "The name of the form definition",
9
- "x-prompt": "Which name should the form definition have?"
10
- },
11
- "project": {
12
- "type": "string",
13
- "description": "The target project where the accordion module should be added.",
14
- "x-prompt": "To which project should the accordion module be added?"
15
- },
16
- "directory": {
17
- "type": "string",
18
- "description": "Relative path to the directory where the form definition should be created."
19
- },
20
- "feature": {
21
- "type": "string",
22
- "description": "The feature name where the accordion module should be added.",
23
- "x-prompt": "To which feature should the accordion module be added?"
24
- },
25
- "backend": {
26
- "type": "string",
27
- "description": "The backend that should be used to handel data",
28
- "enum": [
29
- "none",
30
- "local",
31
- "nestjs",
32
- "open-api"
33
- ],
34
- "default": "none"
35
- },
36
- "mode": {
37
- "type": "string",
38
- "description": "The mode of the form",
39
- "enum": [
40
- "form",
41
- "plain"
42
- ]
43
- },
44
- "collection": {
45
- "type": "boolean",
46
- "description": "Whether the data grid is used as collection."
47
- },
48
- "nestModule": {
49
- "type": "string",
50
- "description": "The name of the nest module where the form definition should be created."
51
- },
52
- "overwrite": {
53
- "anyOf": [
54
- {
55
- "type": "boolean"
56
- },
57
- {
58
- "type": "array",
59
- "items": {
60
- "type": "string"
61
- }
62
- }
63
- ],
64
- "description": "Overwrite existing files",
65
- "default": false
66
- },
67
- "title": {
68
- "type": "string",
69
- "description": "The title of the data grid card component"
70
- },
71
- "subtitle": {
72
- "type": "string",
73
- "description": "The subtitle of the data grid card component"
74
- },
75
- "itemList": {
76
- "alias": "item",
77
- "type": "array",
78
- "items": {
79
- "type": "object",
80
- "properties": {
81
- "name": {
82
- "type": "string",
83
- "description": "The name of the control"
84
- },
85
- "type": {
86
- "oneOf": [
87
- {
88
- "type": "string"
89
- },
90
- {
91
- "type": "object",
92
- "properties": {
93
- "name": {
94
- "type": "string"
95
- },
96
- "isTypeOnly": {
97
- "type": "boolean"
98
- },
99
- "moduleSpecifier": {
100
- "type": "string"
101
- },
102
- "namedImport": {
103
- "type": "string"
104
- },
105
- "namespaceImport": {
106
- "type": "string"
107
- },
108
- "defaultImport": {
109
- "type": "string"
110
- }
111
- },
112
- "required": [
113
- "name"
114
- ]
115
- }
116
- ]
117
- },
118
- "isArray": {
119
- "type": "boolean",
120
- "description": "Whether the control value is an array",
121
- "default": false
122
- },
123
- "state": {
124
- "type": "string",
125
- "description": "The initial state of the control"
126
- },
127
- "isRequired": {
128
- "type": "boolean",
129
- "description": "Whether the control value is required",
130
- "default": false
131
- },
132
- "isReadonly": {
133
- "type": "boolean",
134
- "description": "Whether the control value is readonly",
135
- "default": false
136
- },
137
- "isDisabled": {
138
- "type": "boolean",
139
- "description": "Whether the control value is disabled",
140
- "default": false
141
- },
142
- "validatorList": {
143
- "type": "array",
144
- "items": {
145
- "type": "string"
146
- }
147
- },
148
- "template": {
149
- "type": "object",
150
- "properties": {
151
- "name": {
152
- "type": "string",
153
- "description": "The name of the template",
154
- "enum": [
155
- "default",
156
- "input",
157
- "select"
158
- ]
159
- }
160
- },
161
- "additionalProperties": true,
162
- "required": ["name"]
163
- }
164
- },
165
- "required": [
166
- "name"
167
- ]
168
- }
169
- }
170
- },
171
- "required": [
172
- "project",
173
- "feature",
174
- "name"
175
- ]
176
- }
@@ -1,81 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "dialog-module",
4
- "type": "object",
5
- "properties": {
6
- "dialogName": {
7
- "alias": "name",
8
- "type": "string",
9
- "description": "The name of the dialog",
10
- "x-prompt": "Which name should the dialog module have?"
11
- },
12
- "project": {
13
- "type": "string",
14
- "description": "The target project where the dialog module should be added.",
15
- "x-prompt": "To which project should the dialog module be added?"
16
- },
17
- "directory": {
18
- "type": "string",
19
- "description": "The directory where the dialog module should be added."
20
- },
21
- "feature": {
22
- "type": "string",
23
- "description": "The feature name where the dialog module should be added.",
24
- "x-prompt": "To which feature should the dialog module be added?"
25
- },
26
- "overwrite": {
27
- "anyOf": [
28
- {
29
- "type": "boolean"
30
- },
31
- {
32
- "type": "array",
33
- "items": {
34
- "type": "string"
35
- }
36
- }
37
- ],
38
- "description": "Overwrite existing files",
39
- "default": false
40
- },
41
- "title": {
42
- "type": "string",
43
- "description": "The title of the dialog"
44
- },
45
- "actionList": {
46
- "alias": "action",
47
- "type": "array",
48
- "description": "The list of actions to be added to the dialog",
49
- "items": {
50
- "oneOf": [
51
- {
52
- "type": "string"
53
- },
54
- {
55
- "type": "object",
56
- "properties": {
57
- "label": {
58
- "type": "string"
59
- },
60
- "color": {
61
- "type": "string"
62
- },
63
- "role": {
64
- "type": "string",
65
- "enum": [
66
- "submit",
67
- "close"
68
- ]
69
- }
70
- }
71
- }
72
- ]
73
- }
74
- }
75
- },
76
- "required": [
77
- "dialogName",
78
- "project",
79
- "feature"
80
- ]
81
- }