@rxap/schematic-angular 16.2.0-dev.2 → 16.2.0-dev.20

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 (242) hide show
  1. package/CHANGELOG.md +146 -0
  2. package/README.md +1 -1
  3. package/package.json +11 -9
  4. package/src/lib/accordion-header.d.ts +5 -0
  5. package/src/lib/accordion-header.js +9 -3
  6. package/src/lib/accordion-header.js.map +1 -1
  7. package/src/lib/accordion-identifier.d.ts +4 -0
  8. package/src/lib/accordion-identifier.js.map +1 -1
  9. package/src/lib/accordion-item.d.ts +25 -17
  10. package/src/lib/accordion-item.js +72 -33
  11. package/src/lib/accordion-item.js.map +1 -1
  12. package/src/lib/accordion-itme-kinds.d.ts +8 -0
  13. package/src/lib/accordion-itme-kinds.js +16 -0
  14. package/src/lib/accordion-itme-kinds.js.map +1 -0
  15. package/src/lib/coerce-accordion-component.js +7 -3
  16. package/src/lib/coerce-accordion-component.js.map +1 -1
  17. package/src/lib/coerce-accordion-item-table-component.js +1 -1
  18. package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
  19. package/src/lib/coerce-form-component.js +5 -2
  20. package/src/lib/coerce-form-component.js.map +1 -1
  21. package/src/lib/coerce-minimum-table-component.js +9 -3
  22. package/src/lib/coerce-minimum-table-component.js.map +1 -1
  23. package/src/lib/coerce-tree-table-component.js +16 -0
  24. package/src/lib/coerce-tree-table-component.js.map +1 -1
  25. package/src/lib/data-grid-item.d.ts +46 -11
  26. package/src/lib/data-grid-item.js +80 -5
  27. package/src/lib/data-grid-item.js.map +1 -1
  28. package/src/lib/data-grid-mode.d.ts +4 -0
  29. package/src/lib/data-grid-mode.js +9 -0
  30. package/src/lib/data-grid-mode.js.map +1 -0
  31. package/src/lib/data-grid-options.d.ts +12 -5
  32. package/src/lib/data-grid-options.js +43 -13
  33. package/src/lib/data-grid-options.js.map +1 -1
  34. package/src/lib/form/generate-form-template.d.ts +5 -0
  35. package/src/lib/form/generate-form-template.js +12 -0
  36. package/src/lib/form/generate-form-template.js.map +1 -0
  37. package/src/lib/form-component-control.d.ts +2 -6
  38. package/src/lib/form-component-control.js.map +1 -1
  39. package/src/lib/form-control.d.ts +136 -0
  40. package/src/lib/form-control.js +265 -0
  41. package/src/lib/form-control.js.map +1 -0
  42. package/src/lib/form-definition-control.d.ts +3 -57
  43. package/src/lib/form-definition-control.js +18 -144
  44. package/src/lib/form-definition-control.js.map +1 -1
  45. package/src/lib/load-handlebars-template.d.ts +4 -0
  46. package/src/lib/load-handlebars-template.js +28 -0
  47. package/src/lib/load-handlebars-template.js.map +1 -0
  48. package/src/lib/merge-with-column-list.js +3 -1
  49. package/src/lib/merge-with-column-list.js.map +1 -1
  50. package/src/lib/minimum-table-component-options.d.ts +12 -2
  51. package/src/lib/minimum-table-component-options.js +14 -17
  52. package/src/lib/minimum-table-component-options.js.map +1 -1
  53. package/src/lib/minimum-table-options.d.ts +1 -1
  54. package/src/lib/minimum-table-options.js +2 -2
  55. package/src/lib/minimum-table-options.js.map +1 -1
  56. package/src/lib/pipe-option.d.ts +11 -0
  57. package/src/lib/pipe-option.js +75 -0
  58. package/src/lib/pipe-option.js.map +1 -0
  59. package/src/lib/table/table-filter-column-rule.d.ts +13 -0
  60. package/src/lib/table/table-filter-column-rule.js +88 -0
  61. package/src/lib/table/table-filter-column-rule.js.map +1 -0
  62. package/src/lib/table-column.d.ts +19 -9
  63. package/src/lib/table-column.js +132 -113
  64. package/src/lib/table-column.js.map +1 -1
  65. package/src/lib/table-options.d.ts +1 -1
  66. package/src/lib/tree-table-options.d.ts +1 -1
  67. package/src/lib/use-pick-from-table-interface-as-form-type.d.ts +10 -0
  68. package/src/lib/use-pick-from-table-interface-as-form-type.js +32 -0
  69. package/src/lib/use-pick-from-table-interface-as-form-type.js.map +1 -0
  70. package/src/lib/value-option.d.ts +12 -0
  71. package/src/lib/value-option.js +66 -0
  72. package/src/lib/value-option.js.map +1 -0
  73. package/src/schema.json +2368 -0
  74. package/src/schematic-input.schema.json +607 -0
  75. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.hbs +25 -0
  76. package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
  77. package/src/schematics/accordion/accordion-component/index.js +56 -122
  78. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  79. package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
  80. package/src/schematics/accordion/accordion-component/schema.json +314 -132
  81. package/src/schematics/accordion/accordion-component/template.schema.json +105 -0
  82. package/src/schematics/accordion/accordion-item-component/index.d.ts +9 -4
  83. package/src/schematics/accordion/accordion-item-component/index.js +112 -86
  84. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  85. package/src/schematics/accordion/accordion-item-component/schema.d.ts +2 -2
  86. package/src/schematics/accordion/accordion-item-component/schema.json +282 -70
  87. package/src/schematics/accordion/accordion-item-component/template.schema.json +32 -0
  88. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
  89. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +35 -51
  90. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  91. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.d.ts +1 -1
  92. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +454 -85
  93. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +31 -0
  94. package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
  95. package/src/schematics/accordion/item/accordion-item-switch-component/index.js +16 -8
  96. package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
  97. package/src/schematics/accordion/item/accordion-item-switch-component/schema.d.ts +1 -1
  98. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +322 -190
  99. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +81 -0
  100. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
  101. package/src/schematics/accordion/item/accordion-item-table-component/index.js +16 -19
  102. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  103. package/src/schematics/accordion/item/accordion-item-table-component/schema.d.ts +1 -1
  104. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +615 -278
  105. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +43 -0
  106. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
  107. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +48 -84
  108. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  109. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.d.ts +1 -1
  110. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +591 -271
  111. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +43 -0
  112. package/src/schematics/accordion/templates/accordion-header.hbs +6 -0
  113. package/src/schematics/accordion/templates/data-grid-accordion-item.hbs +15 -0
  114. package/src/schematics/accordion/templates/default-accordion-item.hbs +15 -0
  115. package/src/schematics/accordion/templates/switch-accordion-item.hbs +21 -0
  116. package/src/schematics/accordion/templates/table-accordion-item.hbs +15 -0
  117. package/src/schematics/accordion/templates/tree-table-accordion-item.hbs +15 -0
  118. package/src/schematics/accordion-identifier.schema.json +25 -0
  119. package/src/schematics/accordion-item.schema.json +59 -0
  120. package/src/schematics/angular.schema.json +11 -11
  121. package/src/schematics/backend.schema.json +13 -0
  122. package/src/schematics/button.schema.json +30 -0
  123. package/src/schematics/data-grid-component/files/component/__componentName__.component.html.hbs +35 -0
  124. package/src/schematics/data-grid-component/index.d.ts +2 -4
  125. package/src/schematics/data-grid-component/index.js +83 -52
  126. package/src/schematics/data-grid-component/index.js.map +1 -1
  127. package/src/schematics/data-grid-component/schema.json +413 -141
  128. package/src/schematics/data-grid-component/template.schema.json +20 -0
  129. package/src/schematics/data-grid-component/templates/default-data-grid-item.hbs +3 -0
  130. package/src/schematics/data-grid-component/templates/link-data-grid-item.hbs +8 -0
  131. package/src/schematics/data-grid-item.schema.json +50 -0
  132. package/src/schematics/data-grid.schema.json +66 -0
  133. package/src/schematics/dialog-component/schema.json +141 -65
  134. package/src/schematics/dialog-component/template.schema.json +62 -0
  135. package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
  136. package/src/schematics/form/control/input-form-control/index.js +4 -27
  137. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  138. package/src/schematics/form/control/input-form-control/schema.d.ts +2 -3
  139. package/src/schematics/form/control/input-form-control/schema.json +182 -105
  140. package/src/schematics/form/control/input-form-control/template.schema.json +20 -0
  141. package/src/schematics/form/control/select-form-control/index.d.ts +4 -2
  142. package/src/schematics/form/control/select-form-control/index.js +132 -96
  143. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  144. package/src/schematics/form/control/select-form-control/schema.d.ts +2 -3
  145. package/src/schematics/form/control/select-form-control/schema.json +194 -86
  146. package/src/schematics/form/control/select-form-control/template.schema.json +20 -0
  147. package/src/schematics/form/control/table-select-form-control/index.d.ts +9 -5
  148. package/src/schematics/form/control/table-select-form-control/index.js +199 -143
  149. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  150. package/src/schematics/form/control/table-select-form-control/schema.d.ts +2 -4
  151. package/src/schematics/form/control/table-select-form-control/schema.json +245 -100
  152. package/src/schematics/form/control/table-select-form-control/template.schema.json +83 -0
  153. package/src/schematics/form/form-component/files/component/{__componentName__.component.html.template → __componentName__.component.html.hbs} +3 -3
  154. package/src/schematics/form/form-component/index.d.ts +2 -0
  155. package/src/schematics/form/form-component/index.js +22 -7
  156. package/src/schematics/form/form-component/index.js.map +1 -1
  157. package/src/schematics/form/form-component/schema.d.ts +3 -1
  158. package/src/schematics/form/form-component/schema.json +275 -150
  159. package/src/schematics/form/form-component/template.schema.json +20 -0
  160. package/src/schematics/form/form-control/index.d.ts +3 -1
  161. package/src/schematics/form/form-control/index.js +19 -8
  162. package/src/schematics/form/form-control/index.js.map +1 -1
  163. package/src/schematics/form/form-control/schema.json +203 -75
  164. package/src/schematics/form/form-control/template.schema.json +34 -0
  165. package/src/schematics/form/form-definition/index.js +14 -1
  166. package/src/schematics/form/form-definition/index.js.map +1 -1
  167. package/src/schematics/form/form-definition/schema.json +210 -127
  168. package/src/schematics/form/form-definition/template.schema.json +30 -0
  169. package/src/schematics/form/templates/checkbox-form-control.hbs +9 -0
  170. package/src/schematics/form/templates/default-form-control.hbs +2 -0
  171. package/src/schematics/form/templates/input-form-control.hbs +9 -0
  172. package/src/schematics/form/templates/mat-form-field.hbs +31 -0
  173. package/src/schematics/form/templates/slide-toggle-form-control.hbs +8 -0
  174. package/src/schematics/form/templates/table-select-form-control.hbs +18 -0
  175. package/src/schematics/form-component.schema.json +45 -0
  176. package/src/schematics/form-control.schema.json +68 -0
  177. package/src/schematics/form-definition.schema.json +22 -0
  178. package/src/schematics/form-field.schema.json +24 -0
  179. package/src/schematics/general.schema.json +1 -4
  180. package/src/schematics/header-button.schema.json +42 -0
  181. package/src/schematics/input-form-control.schema.json +55 -0
  182. package/src/schematics/minimum-table.schema.json +60 -0
  183. package/src/schematics/pipe.schema.json +38 -0
  184. package/src/schematics/property.schema.json +31 -0
  185. package/src/schematics/select-form-control.schema.json +64 -0
  186. package/src/schematics/table/action/dialog-table-action/schema.json +209 -125
  187. package/src/schematics/table/action/dialog-table-action/template.schema.json +58 -0
  188. package/src/schematics/table/action/form-table-action/schema.json +383 -153
  189. package/src/schematics/table/action/form-table-action/template.schema.json +75 -0
  190. package/src/schematics/table/action/navigation-table-action/schema.json +187 -80
  191. package/src/schematics/table/action/navigation-table-action/template.schema.json +28 -0
  192. package/src/schematics/table/action/open-api-table-action/schema.json +206 -97
  193. package/src/schematics/table/action/open-api-table-action/template.schema.json +56 -0
  194. package/src/schematics/table/action/operation-table-action/schema.json +174 -84
  195. package/src/schematics/table/action/operation-table-action/template.schema.json +14 -0
  196. package/src/schematics/table/header-button/form-table-header-button/schema.json +272 -114
  197. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +51 -0
  198. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +167 -71
  199. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +28 -0
  200. package/src/schematics/table/table-action/schema.json +165 -78
  201. package/src/schematics/table/table-action/template.schema.json +30 -0
  202. package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +241 -0
  203. package/src/schematics/table/table-component/index.d.ts +1 -3
  204. package/src/schematics/table/table-component/index.js +14 -120
  205. package/src/schematics/table/table-component/index.js.map +1 -1
  206. package/src/schematics/table/table-component/schema.json +524 -277
  207. package/src/schematics/table/table-component/template.schema.json +20 -0
  208. package/src/schematics/table/table-header-button/schema.json +146 -64
  209. package/src/schematics/table/table-header-button/template.schema.json +30 -0
  210. package/src/schematics/table/templates/boolean-table-column.hbs +10 -0
  211. package/src/schematics/table/templates/component-table-column.hbs +12 -0
  212. package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +10 -0
  213. package/src/schematics/table/templates/date-table-column.hbs +11 -0
  214. package/src/schematics/table/templates/default-table-column.hbs +8 -0
  215. package/src/schematics/table/templates/icon-table-column.hbs +10 -0
  216. package/src/schematics/table/templates/link-table-column.hbs +10 -0
  217. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +255 -0
  218. package/src/schematics/table/tree-table-component/index.d.ts +3 -0
  219. package/src/schematics/table/tree-table-component/index.js +28 -7
  220. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  221. package/src/schematics/table/tree-table-component/schema.json +514 -260
  222. package/src/schematics/table/tree-table-component/template.schema.json +20 -0
  223. package/src/schematics/table-action.schema.json +61 -0
  224. package/src/schematics/table-column.schema.json +75 -0
  225. package/src/schematics/table.schema.json +57 -0
  226. package/src/schematics/templates/pipe.hbs +4 -0
  227. package/src/schematics/tree-component/schema.json +115 -70
  228. package/src/schematics/tree-component/template.schema.json +36 -0
  229. package/src/schematics/tree-table.schema.json +40 -0
  230. package/src/schematics/type.schema.json +35 -0
  231. package/src/schematics/upstream.schema.json +56 -0
  232. package/src/schematics/value.schema.json +26 -0
  233. package/src/template.schema.json +173 -0
  234. package/src/lib/accordion-itme-types.d.ts +0 -8
  235. package/src/lib/accordion-itme-types.js +0 -16
  236. package/src/lib/accordion-itme-types.js.map +0 -1
  237. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.template +0 -94
  238. package/src/schematics/accordion/accordion-component/files/header-component/accordion-header.component.html.template +0 -10
  239. package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +0 -42
  240. package/src/schematics/data-grid-component/files/plain/__componentName__.component.html.template +0 -25
  241. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +0 -299
  242. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +0 -213
@@ -0,0 +1,2368 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "schematic-angular",
4
+ "oneOf": [
5
+ {
6
+ "type": "array",
7
+ "items": {
8
+ "$ref": "#/definitions/schematicInput"
9
+ }
10
+ },
11
+ {
12
+ "$ref": "#/definitions/schematicInput"
13
+ }
14
+ ],
15
+ "definitions": {
16
+ "tableComponentSchematic": {
17
+ "allOf": [
18
+ {
19
+ "$ref": "#/definitions/angular"
20
+ },
21
+ {
22
+ "$ref": "#/definitions/table"
23
+ }
24
+ ]
25
+ },
26
+ "treeTableComponentSchematic": {
27
+ "allOf": [
28
+ {
29
+ "$ref": "#/definitions/angular"
30
+ },
31
+ {
32
+ "$ref": "#/definitions/treeTable"
33
+ }
34
+ ]
35
+ },
36
+ "formComponentSchematic": {
37
+ "allOf": [
38
+ {
39
+ "$ref": "#/definitions/angular"
40
+ },
41
+ {
42
+ "$ref": "#/definitions/formComponent"
43
+ }
44
+ ]
45
+ },
46
+ "formDefinitionSchematic": {
47
+ "allOf": [
48
+ {
49
+ "$ref": "#/definitions/angular"
50
+ },
51
+ {
52
+ "$ref": "#/definitions/formDefinition"
53
+ },
54
+ {
55
+ "type": "object",
56
+ "properties": {
57
+ "standalone": {
58
+ "type": "boolean",
59
+ "description": "Whether the form definition has a form.provider file",
60
+ "default": true
61
+ }
62
+ }
63
+ }
64
+ ]
65
+ },
66
+ "tableActionSchematic": {
67
+ "allOf": [
68
+ {
69
+ "$ref": "#/definitions/angular"
70
+ },
71
+ {
72
+ "$ref": "#/definitions/tableAction"
73
+ },
74
+ {
75
+ "type": "object",
76
+ "properties": {
77
+ "tableName": {
78
+ "alias": "table",
79
+ "type": "string",
80
+ "description": "The name of the table action"
81
+ }
82
+ }
83
+ }
84
+ ]
85
+ },
86
+ "tableHeaderButtonSchematic": {
87
+ "allOf": [
88
+ {
89
+ "$ref": "#/definitions/angular"
90
+ },
91
+ {
92
+ "$ref": "#/definitions/headerButton"
93
+ },
94
+ {
95
+ "type": "object",
96
+ "properties": {
97
+ "tableName": {
98
+ "alias": "table",
99
+ "type": "string",
100
+ "description": "The name of the table action"
101
+ }
102
+ }
103
+ }
104
+ ]
105
+ },
106
+ "formTableHeaderButtonSchematic": {
107
+ "allOf": [
108
+ {
109
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
110
+ },
111
+ {
112
+ "type": "object",
113
+ "properties": {
114
+ "formComponent": {
115
+ "type": "string"
116
+ },
117
+ "customComponent": {
118
+ "type": "boolean",
119
+ "default": false,
120
+ "description": "If true the schematic will not coerce the form component"
121
+ },
122
+ "formOptions": {
123
+ "type": "object",
124
+ "properties": {
125
+ "role": {
126
+ "type": "string",
127
+ "description": "Define the role of the form"
128
+ },
129
+ "window": {
130
+ "type": "boolean",
131
+ "description": "Whether the form can be opened in a window"
132
+ },
133
+ "controlList": {
134
+ "alias": "control",
135
+ "type": "array",
136
+ "items": {
137
+ "$ref": "#/definitions/formControl"
138
+ }
139
+ }
140
+ },
141
+ "additionalProperties": true
142
+ }
143
+ }
144
+ }
145
+ ]
146
+ },
147
+ "navigationTableHeaderButtonSchematic": {
148
+ "allOf": [
149
+ {
150
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
151
+ },
152
+ {
153
+ "type": "object",
154
+ "properties": {
155
+ "route": {
156
+ "type": "string",
157
+ "description": "The route path for the table action"
158
+ },
159
+ "relativeTo": {
160
+ "type": "boolean",
161
+ "description": "Indicates if the route path should be relative to the current activated route",
162
+ "default": false
163
+ }
164
+ }
165
+ }
166
+ ]
167
+ },
168
+ "accordionComponentSchematic": {
169
+ "allOf": [
170
+ {
171
+ "$ref": "#/definitions/angular"
172
+ },
173
+ {
174
+ "type": "object",
175
+ "properties": {
176
+ "multiple": {
177
+ "type": "boolean",
178
+ "description": "Whether the accordion should allow multiple panels to be expanded at the same time",
179
+ "default": false,
180
+ "alias": "multi"
181
+ },
182
+ "persistent": {
183
+ "oneOf": [
184
+ {
185
+ "type": "object",
186
+ "properties": {
187
+ "key": {
188
+ "type": "string"
189
+ }
190
+ },
191
+ "required": [
192
+ "key"
193
+ ]
194
+ },
195
+ {
196
+ "type": "object",
197
+ "properties": {
198
+ "property": {
199
+ "$ref": "#/definitions/property"
200
+ }
201
+ },
202
+ "required": [
203
+ "property"
204
+ ]
205
+ }
206
+ ]
207
+ },
208
+ "identifier": {
209
+ "$ref": "#/definitions/accordionIdentifier"
210
+ },
211
+ "header": {
212
+ "oneOf": [
213
+ {
214
+ "type": "object",
215
+ "properties": {
216
+ "title": {
217
+ "type": "string"
218
+ }
219
+ },
220
+ "required": [
221
+ "title"
222
+ ]
223
+ },
224
+ {
225
+ "type": "object",
226
+ "properties": {
227
+ "property": {
228
+ "$ref": "#/definitions/property"
229
+ }
230
+ },
231
+ "required": [
232
+ "property"
233
+ ]
234
+ }
235
+ ]
236
+ },
237
+ "itemList": {
238
+ "alias": "item",
239
+ "type": "array",
240
+ "items": {
241
+ "$ref": "#/definitions/accordionItem"
242
+ },
243
+ "description": "The list of accordion expansion panels"
244
+ },
245
+ "upstream": {
246
+ "$ref": "#/definitions/upstream"
247
+ },
248
+ "propertyList": {
249
+ "alias": "property",
250
+ "type": "array",
251
+ "items": {
252
+ "$ref": "#/definitions/property"
253
+ }
254
+ }
255
+ }
256
+ }
257
+ ]
258
+ },
259
+ "accordionItemComponentSchematic": {
260
+ "allOf": [
261
+ {
262
+ "$ref": "#/definitions/angular"
263
+ },
264
+ {
265
+ "$ref": "#/definitions/accordionItem"
266
+ },
267
+ {
268
+ "type": "object",
269
+ "properties": {
270
+ "accordionName": {
271
+ "type": "string",
272
+ "description": "The name of the accordion module where the item should be added."
273
+ }
274
+ },
275
+ "required": [
276
+ "accordionName"
277
+ ]
278
+ }
279
+ ]
280
+ },
281
+ "accordionItemTableComponentSchematic": {
282
+ "allOf": [
283
+ {
284
+ "$ref": "#/definitions/angular"
285
+ },
286
+ {
287
+ "$ref": "#/definitions/accordionItem"
288
+ },
289
+ {
290
+ "type": "object",
291
+ "properties": {
292
+ "modifiers": {
293
+ "alias": "modifier",
294
+ "type": "array",
295
+ "items": {
296
+ "type": "string",
297
+ "enum": [
298
+ "navigation-back-header",
299
+ "without-title"
300
+ ]
301
+ },
302
+ "description": "The table modifiers"
303
+ },
304
+ "table": {
305
+ "$ref": "#/definitions/table"
306
+ }
307
+ }
308
+ }
309
+ ]
310
+ },
311
+ "accordionItemSwitchComponentSchematic": {
312
+ "allOf": [
313
+ {
314
+ "$ref": "#/definitions/angular"
315
+ },
316
+ {
317
+ "$ref": "#/definitions/accordionItem"
318
+ },
319
+ {
320
+ "type": "object",
321
+ "properties": {
322
+ "switch": {
323
+ "type": "object",
324
+ "properties": {
325
+ "property": {
326
+ "$ref": "#/definitions/property"
327
+ },
328
+ "defaultCase": {
329
+ "type": "object",
330
+ "properties": {
331
+ "itemList": {
332
+ "alias": "item",
333
+ "type": "array",
334
+ "items": {
335
+ "$ref": "#/definitions/accordionItem"
336
+ },
337
+ "description": "The list of accordion expansion panels"
338
+ }
339
+ },
340
+ "required": [
341
+ "itemList"
342
+ ]
343
+ },
344
+ "case": {
345
+ "type": "array",
346
+ "items": {
347
+ "type": "object",
348
+ "properties": {
349
+ "test": {
350
+ "anyOf": [
351
+ {
352
+ "type": "string"
353
+ },
354
+ {
355
+ "type": "number"
356
+ },
357
+ {
358
+ "type": "boolean"
359
+ }
360
+ ]
361
+ },
362
+ "itemList": {
363
+ "alias": "item",
364
+ "type": "array",
365
+ "items": {
366
+ "$ref": "#/definitions/accordionItem"
367
+ },
368
+ "description": "The list of accordion expansion panels"
369
+ }
370
+ },
371
+ "required": [
372
+ "test",
373
+ "itemList"
374
+ ]
375
+ }
376
+ }
377
+ },
378
+ "required": [
379
+ "property",
380
+ "case"
381
+ ]
382
+ }
383
+ }
384
+ }
385
+ ]
386
+ },
387
+ "dataGridComponentSchematic": {
388
+ "allOf": [
389
+ {
390
+ "$ref": "#/definitions/angular"
391
+ },
392
+ {
393
+ "$ref": "#/definitions/dataGrid"
394
+ }
395
+ ]
396
+ },
397
+ "dialogComponentSchematic": {
398
+ "allOf": [
399
+ {
400
+ "$ref": "#/definitions/angular"
401
+ },
402
+ {
403
+ "type": "object",
404
+ "properties": {
405
+ "dialogName": {
406
+ "alias": "name",
407
+ "type": "string",
408
+ "description": "The name of the dialog",
409
+ "x-prompt": "Which name should the dialog module have?"
410
+ },
411
+ "title": {
412
+ "type": "string",
413
+ "description": "The title of the dialog"
414
+ },
415
+ "actionList": {
416
+ "alias": "action",
417
+ "type": "array",
418
+ "description": "The list of actions to be added to the dialog",
419
+ "items": {
420
+ "oneOf": [
421
+ {
422
+ "type": "string"
423
+ },
424
+ {
425
+ "type": "object",
426
+ "properties": {
427
+ "label": {
428
+ "type": "string"
429
+ },
430
+ "color": {
431
+ "type": "string"
432
+ },
433
+ "role": {
434
+ "type": "string",
435
+ "enum": [
436
+ "submit",
437
+ "close"
438
+ ]
439
+ }
440
+ }
441
+ }
442
+ ]
443
+ }
444
+ }
445
+ },
446
+ "required": [
447
+ "dialogName"
448
+ ]
449
+ }
450
+ ]
451
+ },
452
+ "inputFormControlSchematic": {
453
+ "allOf": [
454
+ {
455
+ "$ref": "#/definitions/formControl"
456
+ },
457
+ {
458
+ "$ref": "#/definitions/inputFormControl"
459
+ }
460
+ ]
461
+ },
462
+ "selectFormControlSchematic": {
463
+ "allOf": [
464
+ {
465
+ "$ref": "#/definitions/formControl"
466
+ },
467
+ {
468
+ "$ref": "#/definitions/selectFormControl"
469
+ }
470
+ ]
471
+ },
472
+ "tableSelectFormControlSchematic": {
473
+ "allOf": [
474
+ {
475
+ "$ref": "#/definitions/formControl"
476
+ },
477
+ {
478
+ "type": "object",
479
+ "properties": {
480
+ "columnList": {
481
+ "alias": "column",
482
+ "type": "array",
483
+ "items": {
484
+ "description": "table column name",
485
+ "type": "object",
486
+ "properties": {
487
+ "name": {
488
+ "type": "string",
489
+ "description": "table column name"
490
+ },
491
+ "title": {
492
+ "type": "string",
493
+ "description": "table column label"
494
+ },
495
+ "hasFilter": {
496
+ "type": "boolean",
497
+ "description": "Whether the column has a filter"
498
+ },
499
+ "kind": {
500
+ "type": "string",
501
+ "description": "The kind of data in the column"
502
+ }
503
+ }
504
+ },
505
+ "description": "List of table column names"
506
+ },
507
+ "title": {
508
+ "type": "string",
509
+ "description": "The title of the table select window"
510
+ },
511
+ "toDisplay": {
512
+ "type": "object",
513
+ "properties": {
514
+ "property": {
515
+ "$ref": "#/definitions/property"
516
+ }
517
+ }
518
+ },
519
+ "toValue": {
520
+ "type": "object",
521
+ "properties": {
522
+ "property": {
523
+ "$ref": "#/definitions/property"
524
+ }
525
+ }
526
+ },
527
+ "upstream": {
528
+ "$ref": "#/definitions/upstream"
529
+ },
530
+ "resolver": {
531
+ "type": "object",
532
+ "properties": {
533
+ "upstream": {
534
+ "$ref": "#/definitions/upstream"
535
+ }
536
+ }
537
+ }
538
+ }
539
+ }
540
+ ]
541
+ },
542
+ "formControlSchematic": {
543
+ "allOf": [
544
+ {
545
+ "$ref": "#/definitions/angular"
546
+ },
547
+ {
548
+ "$ref": "#/definitions/formControl"
549
+ },
550
+ {
551
+ "type": "object",
552
+ "properties": {
553
+ "formName": {
554
+ "alias": "form",
555
+ "type": "string",
556
+ "description": "The name of the form where the form control should be added",
557
+ "x-prompt": "Enter the name of the form where the form control should be added"
558
+ }
559
+ },
560
+ "required": [
561
+ "formName"
562
+ ]
563
+ }
564
+ ]
565
+ },
566
+ "dialogTableActionSchematic": {
567
+ "allOf": [
568
+ {
569
+ "$ref": "#/definitions/tableActionSchematic"
570
+ },
571
+ {
572
+ "type": "object",
573
+ "properties": {
574
+ "withoutBody": {
575
+ "type": "boolean",
576
+ "description": "Whether the table action operation should be without body",
577
+ "default": false
578
+ },
579
+ "actionList": {
580
+ "alias": "action",
581
+ "type": "array",
582
+ "description": "The list of actions to be added to the dialog",
583
+ "items": {
584
+ "oneOf": [
585
+ {
586
+ "type": "string"
587
+ },
588
+ {
589
+ "type": "object",
590
+ "properties": {
591
+ "label": {
592
+ "type": "string"
593
+ },
594
+ "color": {
595
+ "type": "string"
596
+ },
597
+ "role": {
598
+ "type": "string",
599
+ "enum": [
600
+ "submit",
601
+ "close"
602
+ ]
603
+ }
604
+ }
605
+ }
606
+ ]
607
+ }
608
+ },
609
+ "title": {
610
+ "type": "string",
611
+ "description": "The title for the dialog"
612
+ }
613
+ }
614
+ }
615
+ ]
616
+ },
617
+ "formTableActionSchematic": {
618
+ "allOf": [
619
+ {
620
+ "$ref": "#/definitions/tableActionSchematic"
621
+ },
622
+ {
623
+ "type": "object",
624
+ "properties": {
625
+ "formInitial": {
626
+ "type": "object",
627
+ "description": "The mapping from the row object to the form initial object"
628
+ },
629
+ "formComponent": {
630
+ "type": "string"
631
+ },
632
+ "customComponent": {
633
+ "type": "boolean",
634
+ "default": false,
635
+ "description": "If true the schematic will not coerce the form component"
636
+ },
637
+ "loadFrom": {
638
+ "type": "object",
639
+ "properties": {
640
+ "operationId": {
641
+ "type": "string"
642
+ },
643
+ "scope": {
644
+ "type": "string",
645
+ "description": "The scope of package for the openapi classes"
646
+ },
647
+ "body": {
648
+ "oneOf": [
649
+ {
650
+ "type": "boolean",
651
+ "description": "Pass the full row as body for the operation request"
652
+ },
653
+ {
654
+ "type": "object",
655
+ "description": "Mapping of table columns to body properties - [request property]: [table column]",
656
+ "additionalProperties": true
657
+ }
658
+ ]
659
+ },
660
+ "parameters": {
661
+ "oneOf": [
662
+ {
663
+ "type": "boolean",
664
+ "description": "Pass the full row as parameters for the operation request"
665
+ },
666
+ {
667
+ "type": "object",
668
+ "description": "Mapping of table columns to parameters properties - [request property]: [table column]",
669
+ "additionalProperties": true
670
+ }
671
+ ]
672
+ }
673
+ }
674
+ },
675
+ "formOptions": {
676
+ "$ref": "#/definitions/formComponent"
677
+ }
678
+ }
679
+ }
680
+ ]
681
+ },
682
+ "navigationTableActionSchematic": {
683
+ "allOf": [
684
+ {
685
+ "$ref": "#/definitions/tableActionSchematic"
686
+ },
687
+ {
688
+ "type": "object",
689
+ "properties": {
690
+ "route": {
691
+ "type": "string",
692
+ "description": "The route for the table action"
693
+ },
694
+ "relativeTo": {
695
+ "type": "boolean",
696
+ "description": "Use the current ActivatedRoute to resolve the route or not",
697
+ "default": false
698
+ }
699
+ }
700
+ }
701
+ ]
702
+ },
703
+ "operationTableActionSchematic": {
704
+ "allOf": [
705
+ {
706
+ "$ref": "#/definitions/tableActionSchematic"
707
+ }
708
+ ]
709
+ },
710
+ "openApiTableActionSchematic": {
711
+ "allOf": [
712
+ {
713
+ "$ref": "#/definitions/tableActionSchematic"
714
+ },
715
+ {
716
+ "type": "object",
717
+ "properties": {
718
+ "operationId": {
719
+ "type": "string",
720
+ "description": "The open api operationId for the table action"
721
+ },
722
+ "scope": {
723
+ "type": "string",
724
+ "description": "The scope of package for the openapi classes"
725
+ },
726
+ "body": {
727
+ "oneOf": [
728
+ {
729
+ "type": "boolean",
730
+ "description": "Pass the full row as body for the operation request"
731
+ },
732
+ {
733
+ "type": "object",
734
+ "description": "Mapping of table columns to body properties - [request property]: [table column]",
735
+ "additionalProperties": true
736
+ }
737
+ ]
738
+ },
739
+ "parameters": {
740
+ "oneOf": [
741
+ {
742
+ "type": "boolean",
743
+ "description": "Pass the full row as parameters for the operation request"
744
+ },
745
+ {
746
+ "type": "object",
747
+ "description": "Mapping of table columns to parameters properties - [request property]: [table column]",
748
+ "additionalProperties": true
749
+ }
750
+ ]
751
+ }
752
+ },
753
+ "required": [
754
+ "operationId"
755
+ ]
756
+ }
757
+ ]
758
+ },
759
+ "treeComponentSchematic": {
760
+ "allOf": [
761
+ {
762
+ "$ref": "#/definitions/angular"
763
+ },
764
+ {
765
+ "type": "object",
766
+ "properties": {
767
+ "modifiers": {
768
+ "alias": "modifier",
769
+ "type": "array",
770
+ "items": {
771
+ "type": "string",
772
+ "enum": [
773
+ "navigation-back-header",
774
+ "without-title"
775
+ ]
776
+ },
777
+ "description": "The tree modifiers"
778
+ },
779
+ "fullTree": {
780
+ "type": "boolean",
781
+ "description": "Whether the tree should be a full tree",
782
+ "default": true
783
+ }
784
+ }
785
+ }
786
+ ]
787
+ },
788
+ "accordionItemDataGridComponentSchematic": {
789
+ "allOf": [
790
+ {
791
+ "$ref": "#/definitions/angular"
792
+ },
793
+ {
794
+ "$ref": "#/definitions/accordionItem"
795
+ },
796
+ {
797
+ "type": "object",
798
+ "properties": {
799
+ "dataGrid": {
800
+ "$ref": "#/definitions/dataGrid"
801
+ }
802
+ }
803
+ }
804
+ ]
805
+ },
806
+ "accordionItemTreeTableComponentSchematic": {
807
+ "allOf": [
808
+ {
809
+ "$ref": "#/definitions/angular"
810
+ },
811
+ {
812
+ "$ref": "#/definitions/accordionItem"
813
+ },
814
+ {
815
+ "type": "object",
816
+ "properties": {
817
+ "modifiers": {
818
+ "alias": "modifier",
819
+ "type": "array",
820
+ "items": {
821
+ "type": "string",
822
+ "enum": [
823
+ "navigation-back-header",
824
+ "without-title"
825
+ ]
826
+ },
827
+ "description": "The table modifiers"
828
+ },
829
+ "table": {
830
+ "$ref": "#/definitions/treeTable"
831
+ }
832
+ }
833
+ }
834
+ ]
835
+ },
836
+ "accordionIdentifier": {
837
+ "type": "object",
838
+ "properties": {
839
+ "property": {
840
+ "$ref": "#/definitions/property"
841
+ },
842
+ "source": {
843
+ "type": "string",
844
+ "enum": [
845
+ "route"
846
+ ],
847
+ "default": "route"
848
+ }
849
+ },
850
+ "required": [
851
+ "property"
852
+ ]
853
+ },
854
+ "accordionItem": {
855
+ "type": "object",
856
+ "properties": {
857
+ "kind": {
858
+ "type": "string",
859
+ "enum": [
860
+ "default",
861
+ "table",
862
+ "data-grid",
863
+ "data-grid-collection",
864
+ "tree-table",
865
+ "switch"
866
+ ],
867
+ "description": "The type of the accordion item",
868
+ "default": "panel"
869
+ },
870
+ "modifiers": {
871
+ "alias": "modifier",
872
+ "type": "array",
873
+ "items": {
874
+ "type": "string"
875
+ },
876
+ "description": "The modifiers to apply to the accordion item type"
877
+ },
878
+ "identifier": {
879
+ "$ref": "#/definitions/accordionIdentifier"
880
+ },
881
+ "title": {
882
+ "type": "string"
883
+ },
884
+ "description": {
885
+ "type": "string"
886
+ },
887
+ "upstream": {
888
+ "$ref": "#/definitions/upstream"
889
+ },
890
+ "propertyList": {
891
+ "alias": "property",
892
+ "type": "array",
893
+ "items": {
894
+ "$ref": "#/definitions/property"
895
+ }
896
+ }
897
+ },
898
+ "additionalProperties": true
899
+ },
900
+ "angular": {
901
+ "allOf": [
902
+ {
903
+ "$ref": "#/definitions/general"
904
+ },
905
+ {
906
+ "type": "object",
907
+ "properties": {
908
+ "componentName": {
909
+ "type": "string"
910
+ },
911
+ "name": {
912
+ "type": "string"
913
+ },
914
+ "context": {
915
+ "type": "string",
916
+ "description": "The context use to generate proper names for class, files, etc"
917
+ },
918
+ "nestModule": {
919
+ "type": "string",
920
+ "description": "The module name for the table nest operations"
921
+ },
922
+ "controllerName": {
923
+ "type": "string"
924
+ },
925
+ "backend": {
926
+ "$ref": "#/definitions/backend"
927
+ },
928
+ "directory": {
929
+ "type": "string",
930
+ "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"
931
+ },
932
+ "shared": {
933
+ "type": "boolean",
934
+ "description": "Whether the generated code is used across the project",
935
+ "default": false
936
+ },
937
+ "scope": {
938
+ "type": "string"
939
+ },
940
+ "prefix": {
941
+ "type": "string"
942
+ },
943
+ "openApi": {
944
+ "type": "object",
945
+ "additionalProperties": true
946
+ }
947
+ }
948
+ }
949
+ ]
950
+ },
951
+ "backend": {
952
+ "type": "string",
953
+ "description": "The backend that should be used to handel data",
954
+ "enum": [
955
+ "none",
956
+ "nestjs",
957
+ "open-api",
958
+ "local"
959
+ ],
960
+ "default": "none"
961
+ },
962
+ "button": {
963
+ "type": "object",
964
+ "properties": {
965
+ "svgIcon": {
966
+ "type": "string"
967
+ },
968
+ "icon": {
969
+ "type": "string"
970
+ },
971
+ "directiveList": {
972
+ "type": "array",
973
+ "items": {
974
+ "$ref": "#/definitions/type"
975
+ }
976
+ },
977
+ "importList": {
978
+ "type": "array",
979
+ "items": {
980
+ "$ref": "#/definitions/type"
981
+ }
982
+ }
983
+ }
984
+ },
985
+ "dataGridItem": {
986
+ "type": "object",
987
+ "properties": {
988
+ "name": {
989
+ "type": "string",
990
+ "description": "The name of the data grid item"
991
+ },
992
+ "header": {
993
+ "type": "string",
994
+ "description": "The name of the control"
995
+ },
996
+ "pipeList": {
997
+ "type": "array",
998
+ "items": {
999
+ "$ref": "#/definitions/pipe"
1000
+ }
1001
+ },
1002
+ "formControl": {
1003
+ "$ref": "#/definitions/formControl"
1004
+ },
1005
+ "template": {
1006
+ "type": "string"
1007
+ },
1008
+ "kind": {
1009
+ "type": "string",
1010
+ "enum": [
1011
+ "default",
1012
+ "link"
1013
+ ],
1014
+ "default": "default"
1015
+ },
1016
+ "type": {
1017
+ "$ref": "#/definitions/type"
1018
+ },
1019
+ "isArray": {
1020
+ "type": "boolean"
1021
+ }
1022
+ },
1023
+ "required": [
1024
+ "name"
1025
+ ]
1026
+ },
1027
+ "dataGrid": {
1028
+ "type": "object",
1029
+ "properties": {
1030
+ "mode": {
1031
+ "type": "string",
1032
+ "description": "The mode of the form",
1033
+ "enum": [
1034
+ "form",
1035
+ "plain"
1036
+ ]
1037
+ },
1038
+ "collection": {
1039
+ "type": "boolean",
1040
+ "description": "Whether the data grid is used as collection."
1041
+ },
1042
+ "title": {
1043
+ "type": "string",
1044
+ "description": "The title of the data grid card component"
1045
+ },
1046
+ "subtitle": {
1047
+ "type": "string",
1048
+ "description": "The subtitle of the data grid card component"
1049
+ },
1050
+ "itemList": {
1051
+ "alias": "item",
1052
+ "type": "array",
1053
+ "items": {
1054
+ "$ref": "#/definitions/dataGridItem"
1055
+ }
1056
+ },
1057
+ "inCard": {
1058
+ "type": "boolean",
1059
+ "description": "Whether the data grid is used in a card.",
1060
+ "default": true
1061
+ },
1062
+ "upstream": {
1063
+ "$ref": "#/definitions/upstream"
1064
+ },
1065
+ "propertyList": {
1066
+ "alias": "property",
1067
+ "type": "array",
1068
+ "items": {
1069
+ "$ref": "#/definitions/property"
1070
+ }
1071
+ },
1072
+ "identifier": {
1073
+ "$ref": "#/definitions/accordionIdentifier"
1074
+ }
1075
+ }
1076
+ },
1077
+ "formComponent": {
1078
+ "allOf": [
1079
+ {
1080
+ "$ref": "#/definitions/formDefinition"
1081
+ },
1082
+ {
1083
+ "type": "object",
1084
+ "properties": {
1085
+ "window": {
1086
+ "type": "boolean",
1087
+ "description": "Whether the form can be opened in a window"
1088
+ },
1089
+ "role": {
1090
+ "type": "string",
1091
+ "description": "Define the role of the form"
1092
+ },
1093
+ "matFormFieldDefaultOptions": {
1094
+ "appearance": {
1095
+ "type": "string",
1096
+ "description": "The appearance of the mat form field",
1097
+ "enum": [
1098
+ "legacy",
1099
+ "standard",
1100
+ "fill",
1101
+ "outline"
1102
+ ]
1103
+ }
1104
+ },
1105
+ "identifier": {
1106
+ "$ref": "#/definitions/accordionIdentifier"
1107
+ }
1108
+ }
1109
+ }
1110
+ ]
1111
+ },
1112
+ "formControl": {
1113
+ "type": "object",
1114
+ "properties": {
1115
+ "name": {
1116
+ "type": "string",
1117
+ "description": "The name of the control"
1118
+ },
1119
+ "type": {
1120
+ "$ref": "#/definitions/type"
1121
+ },
1122
+ "isArray": {
1123
+ "type": "boolean",
1124
+ "description": "Whether the control value is an array",
1125
+ "default": false
1126
+ },
1127
+ "state": {
1128
+ "type": "string",
1129
+ "description": "The initial state of the control"
1130
+ },
1131
+ "isRequired": {
1132
+ "type": "boolean",
1133
+ "description": "Whether the control value is required",
1134
+ "default": false
1135
+ },
1136
+ "isReadonly": {
1137
+ "type": "boolean",
1138
+ "description": "Whether the control value is readonly",
1139
+ "default": false
1140
+ },
1141
+ "isDisabled": {
1142
+ "type": "boolean",
1143
+ "description": "Whether the control value is disabled",
1144
+ "default": false
1145
+ },
1146
+ "validatorList": {
1147
+ "type": "array",
1148
+ "items": {
1149
+ "type": "string"
1150
+ }
1151
+ },
1152
+ "kind": {
1153
+ "type": "string",
1154
+ "description": "The name of the template",
1155
+ "enum": [
1156
+ "default",
1157
+ "input",
1158
+ "select",
1159
+ "checkbox",
1160
+ "autocomplete-table-select",
1161
+ "table-select",
1162
+ "textarea",
1163
+ "slide-toggle"
1164
+ ],
1165
+ "default": "default"
1166
+ }
1167
+ },
1168
+ "required": [
1169
+ "name"
1170
+ ],
1171
+ "additionalProperties": true
1172
+ },
1173
+ "formDefinition": {
1174
+ "type": "object",
1175
+ "properties": {
1176
+ "controlList": {
1177
+ "alias": "control",
1178
+ "type": "array",
1179
+ "items": {
1180
+ "$ref": "#/definitions/formControl"
1181
+ }
1182
+ }
1183
+ },
1184
+ "required": [
1185
+ "controlList"
1186
+ ]
1187
+ },
1188
+ "formField": {
1189
+ "type": "object",
1190
+ "properties": {
1191
+ "label": {
1192
+ "type": "string"
1193
+ },
1194
+ "prefixButton": {
1195
+ "$ref": "#/definitions/button"
1196
+ },
1197
+ "suffixButton": {
1198
+ "$ref": "#/definitions/button"
1199
+ },
1200
+ "hasClearButton": {
1201
+ "type": "boolean"
1202
+ }
1203
+ }
1204
+ },
1205
+ "general": {
1206
+ "type": "object",
1207
+ "properties": {
1208
+ "project": {
1209
+ "type": "string",
1210
+ "description": "Project name where the files should be generated"
1211
+ },
1212
+ "feature": {
1213
+ "type": "string",
1214
+ "description": "Feature name where the files should be generated"
1215
+ },
1216
+ "overwrite": {
1217
+ "anyOf": [
1218
+ {
1219
+ "type": "boolean"
1220
+ },
1221
+ {
1222
+ "type": "array",
1223
+ "items": {
1224
+ "type": "string"
1225
+ }
1226
+ }
1227
+ ],
1228
+ "description": "Overwrite existing files",
1229
+ "default": false
1230
+ },
1231
+ "overwriteHtml": {
1232
+ "type": "boolean",
1233
+ "default": false
1234
+ },
1235
+ "replace": {
1236
+ "type": "boolean",
1237
+ "default": false
1238
+ }
1239
+ }
1240
+ },
1241
+ "headerButton": {
1242
+ "type": "object",
1243
+ "properties": {
1244
+ "permission": {
1245
+ "type": "string"
1246
+ },
1247
+ "icon": {
1248
+ "type": "string"
1249
+ },
1250
+ "svgIcon": {
1251
+ "type": "string"
1252
+ },
1253
+ "refresh": {
1254
+ "type": "boolean",
1255
+ "description": "Whether the table action should refresh the table after execution",
1256
+ "default": false
1257
+ },
1258
+ "confirm": {
1259
+ "type": "boolean",
1260
+ "description": "Whether the table action should confirm before execution",
1261
+ "default": false
1262
+ },
1263
+ "tooltip": {
1264
+ "type": "string",
1265
+ "description": "The tooltip for the table action"
1266
+ },
1267
+ "errorMessage": {
1268
+ "type": "string",
1269
+ "description": "The error message for the table action"
1270
+ },
1271
+ "successMessage": {
1272
+ "type": "string",
1273
+ "description": "The success message for the table action"
1274
+ },
1275
+ "options": {
1276
+ "type": "object",
1277
+ "additionalProperties": true
1278
+ }
1279
+ }
1280
+ },
1281
+ "inputFormControl": {
1282
+ "allOf": [
1283
+ {
1284
+ "$ref": "#/definitions/formControl"
1285
+ },
1286
+ {
1287
+ "type": "object",
1288
+ "properties": {
1289
+ "inputType": {
1290
+ "type": "string",
1291
+ "enum": [
1292
+ "text",
1293
+ "password",
1294
+ "email",
1295
+ "number",
1296
+ "tel",
1297
+ "url",
1298
+ "checkbox",
1299
+ "color",
1300
+ "date",
1301
+ "time",
1302
+ "datetime-local",
1303
+ "file",
1304
+ "hidden",
1305
+ "image",
1306
+ "month",
1307
+ "radio",
1308
+ "reset",
1309
+ "button",
1310
+ "search",
1311
+ "submit",
1312
+ "week",
1313
+ "range"
1314
+ ]
1315
+ },
1316
+ "placeholder": {
1317
+ "type": "string"
1318
+ },
1319
+ "formField": {
1320
+ "$ref": "#/definitions/formField"
1321
+ }
1322
+ }
1323
+ }
1324
+ ]
1325
+ },
1326
+ "minimumTable": {
1327
+ "type": "object",
1328
+ "properties": {
1329
+ "propertyList": {
1330
+ "alias": "property",
1331
+ "type": "array",
1332
+ "items": {
1333
+ "$ref": "#/definitions/property"
1334
+ }
1335
+ },
1336
+ "upstream": {
1337
+ "$ref": "#/definitions/upstream"
1338
+ },
1339
+ "columnList": {
1340
+ "alias": "column",
1341
+ "type": "array",
1342
+ "items": {
1343
+ "$ref": "#/definitions/tableColumn"
1344
+ },
1345
+ "description": "List of table column names"
1346
+ },
1347
+ "actionList": {
1348
+ "alias": "action",
1349
+ "type": "array",
1350
+ "items": {
1351
+ "$ref": "#/definitions/tableAction"
1352
+ }
1353
+ },
1354
+ "headerButton": {
1355
+ "$ref": "#/definitions/headerButton"
1356
+ },
1357
+ "modifiers": {
1358
+ "alias": "modifier",
1359
+ "type": "array",
1360
+ "items": {
1361
+ "type": "string"
1362
+ },
1363
+ "description": "The table modifiers"
1364
+ }
1365
+ }
1366
+ },
1367
+ "pipe": {
1368
+ "oneOf": [
1369
+ {
1370
+ "type": "string"
1371
+ },
1372
+ {
1373
+ "allOf": [
1374
+ {
1375
+ "$ref": "#/definitions/type"
1376
+ },
1377
+ {
1378
+ "type": "object",
1379
+ "properties": {
1380
+ "argumentList": {
1381
+ "type": "array",
1382
+ "items": {
1383
+ "$ref": "#/definitions/value"
1384
+ }
1385
+ }
1386
+ },
1387
+ "required": [
1388
+ "name"
1389
+ ]
1390
+ }
1391
+ ]
1392
+ }
1393
+ ]
1394
+ },
1395
+ "property": {
1396
+ "oneOf": [
1397
+ {
1398
+ "type": "string"
1399
+ },
1400
+ {
1401
+ "type": "object",
1402
+ "properties": {
1403
+ "name": {
1404
+ "type": "string"
1405
+ },
1406
+ "type": {
1407
+ "$ref": "#/definitions/type"
1408
+ },
1409
+ "isArray": {
1410
+ "type": "boolean"
1411
+ }
1412
+ },
1413
+ "required": [
1414
+ "name"
1415
+ ]
1416
+ }
1417
+ ]
1418
+ },
1419
+ "selectFormControl": {
1420
+ "allOf": [
1421
+ {
1422
+ "$ref": "#/definitions/formControl"
1423
+ },
1424
+ {
1425
+ "type": "object",
1426
+ "properties": {
1427
+ "formField": {
1428
+ "$ref": "#/definitions/formField"
1429
+ },
1430
+ "options": {
1431
+ "type": "array",
1432
+ "items": {
1433
+ "type": "object",
1434
+ "properties": {
1435
+ "display": {
1436
+ "type": "string"
1437
+ },
1438
+ "value": {
1439
+ "oneOf": [
1440
+ {
1441
+ "type": "string"
1442
+ },
1443
+ {
1444
+ "type": "number"
1445
+ },
1446
+ {
1447
+ "type": "boolean"
1448
+ },
1449
+ {
1450
+ "type": "object",
1451
+ "additionalProperties": true
1452
+ }
1453
+ ]
1454
+ }
1455
+ }
1456
+ }
1457
+ },
1458
+ "backend": {
1459
+ "$ref": "#/definitions/backend"
1460
+ },
1461
+ "multiple": {
1462
+ "alias": "multi",
1463
+ "type": "boolean",
1464
+ "description": "Whether the select form control is multiple mode"
1465
+ }
1466
+ }
1467
+ }
1468
+ ]
1469
+ },
1470
+ "tableAction": {
1471
+ "type": "object",
1472
+ "properties": {
1473
+ "type": {
1474
+ "type": "string"
1475
+ },
1476
+ "refresh": {
1477
+ "type": "boolean"
1478
+ },
1479
+ "confirm": {
1480
+ "type": "boolean"
1481
+ },
1482
+ "tooltip": {
1483
+ "type": "string"
1484
+ },
1485
+ "errorMessage": {
1486
+ "type": "string"
1487
+ },
1488
+ "successMessage": {
1489
+ "type": "string"
1490
+ },
1491
+ "priority": {
1492
+ "type": "number"
1493
+ },
1494
+ "checkFunction": {
1495
+ "type": "string"
1496
+ },
1497
+ "inHeader": {
1498
+ "type": "boolean"
1499
+ },
1500
+ "role": {
1501
+ "type": "string"
1502
+ },
1503
+ "icon": {
1504
+ "type": "string"
1505
+ },
1506
+ "svgIcon": {
1507
+ "type": "string"
1508
+ },
1509
+ "permission": {
1510
+ "type": "string"
1511
+ },
1512
+ "color": {
1513
+ "type": "string",
1514
+ "description": "Value for the color input of the mat-button / mat-icon component"
1515
+ },
1516
+ "cssClass": {
1517
+ "type": "string",
1518
+ "description": "Additional CSS classes added to the button element"
1519
+ },
1520
+ "options": {
1521
+ "type": "object",
1522
+ "additionalProperties": true
1523
+ }
1524
+ },
1525
+ "required": [
1526
+ "type"
1527
+ ]
1528
+ },
1529
+ "tableColumn": {
1530
+ "type": "object",
1531
+ "properties": {
1532
+ "name": {
1533
+ "type": "string"
1534
+ },
1535
+ "type": {
1536
+ "$ref": "#/definitions/type"
1537
+ },
1538
+ "kind": {
1539
+ "type": "string"
1540
+ },
1541
+ "modifiers": {
1542
+ "type": "array",
1543
+ "items": {
1544
+ "type": "string"
1545
+ }
1546
+ },
1547
+ "template": {
1548
+ "type": "string"
1549
+ },
1550
+ "pipeList": {
1551
+ "type": "array",
1552
+ "items": {
1553
+ "$ref": "#/definitions/pipe"
1554
+ }
1555
+ },
1556
+ "hasFilter": {
1557
+ "type": "boolean"
1558
+ },
1559
+ "nowrap": {
1560
+ "type": "boolean"
1561
+ },
1562
+ "cssClass": {
1563
+ "type": "string"
1564
+ },
1565
+ "title": {
1566
+ "type": "string"
1567
+ },
1568
+ "propertyPath": {
1569
+ "type": "string"
1570
+ },
1571
+ "hidden": {
1572
+ "type": "boolean"
1573
+ },
1574
+ "active": {
1575
+ "type": "boolean"
1576
+ },
1577
+ "inactive": {
1578
+ "type": "boolean"
1579
+ },
1580
+ "show": {
1581
+ "type": "boolean"
1582
+ },
1583
+ "filterControl": {
1584
+ "$ref": "#/definitions/formControl"
1585
+ }
1586
+ },
1587
+ "required": [
1588
+ "name"
1589
+ ]
1590
+ },
1591
+ "table": {
1592
+ "allOf": [
1593
+ {
1594
+ "$ref": "#/definitions/minimumTable"
1595
+ },
1596
+ {
1597
+ "type": "object",
1598
+ "properties": {
1599
+ "tableMethod": {
1600
+ "$ref": "#/definitions/type"
1601
+ },
1602
+ "openApi": {
1603
+ "type": "object",
1604
+ "properties": {
1605
+ "operationId": {
1606
+ "type": "string",
1607
+ "description": "The operationId for the open api operation"
1608
+ },
1609
+ "adapter": {
1610
+ "$ref": "#/definitions/type"
1611
+ }
1612
+ },
1613
+ "required": [
1614
+ "operationId"
1615
+ ]
1616
+ },
1617
+ "modifiers": {
1618
+ "alias": "modifier",
1619
+ "type": "array",
1620
+ "items": {
1621
+ "type": "string",
1622
+ "enum": [
1623
+ "navigation-back-header",
1624
+ "without-title",
1625
+ "show-archived-slide"
1626
+ ]
1627
+ },
1628
+ "description": "The table modifiers"
1629
+ },
1630
+ "selectColumn": {
1631
+ "type": "boolean",
1632
+ "description": "Whether to add a select column to the table"
1633
+ }
1634
+ }
1635
+ }
1636
+ ]
1637
+ },
1638
+ "treeTable": {
1639
+ "allOf": [
1640
+ {
1641
+ "$ref": "#/definitions/minimumTable"
1642
+ },
1643
+ {
1644
+ "type": "object",
1645
+ "properties": {
1646
+ "modifiers": {
1647
+ "alias": "modifier",
1648
+ "type": "array",
1649
+ "items": {
1650
+ "type": "string",
1651
+ "enum": [
1652
+ "navigation-back-header",
1653
+ "without-title"
1654
+ ]
1655
+ },
1656
+ "description": "The table modifiers"
1657
+ },
1658
+ "tableRootMethod": {
1659
+ "$ref": "#/definitions/type"
1660
+ },
1661
+ "tableChildMethod": {
1662
+ "$ref": "#/definitions/type"
1663
+ }
1664
+ }
1665
+ }
1666
+ ]
1667
+ },
1668
+ "type": {
1669
+ "oneOf": [
1670
+ {
1671
+ "type": "string"
1672
+ },
1673
+ {
1674
+ "type": "object",
1675
+ "properties": {
1676
+ "name": {
1677
+ "type": "string"
1678
+ },
1679
+ "isTypeOnly": {
1680
+ "type": "boolean"
1681
+ },
1682
+ "moduleSpecifier": {
1683
+ "type": "string"
1684
+ },
1685
+ "namedImport": {
1686
+ "type": "string"
1687
+ },
1688
+ "namespaceImport": {
1689
+ "type": "string"
1690
+ },
1691
+ "defaultImport": {
1692
+ "type": "string"
1693
+ }
1694
+ },
1695
+ "required": [
1696
+ "name"
1697
+ ]
1698
+ }
1699
+ ]
1700
+ },
1701
+ "upstream": {
1702
+ "oneOf": [
1703
+ {
1704
+ "type": "object",
1705
+ "properties": {
1706
+ "kind": {
1707
+ "type": "string",
1708
+ "enum": [
1709
+ "open-api"
1710
+ ]
1711
+ },
1712
+ "operationId": {
1713
+ "type": "string"
1714
+ },
1715
+ "scope": {
1716
+ "type": "string"
1717
+ },
1718
+ "mapper": {
1719
+ "type": "object",
1720
+ "properties": {
1721
+ "pageIndex": {
1722
+ "type": "string"
1723
+ },
1724
+ "pageSize": {
1725
+ "type": "string"
1726
+ },
1727
+ "sortBy": {
1728
+ "type": "string"
1729
+ },
1730
+ "sortDirection": {
1731
+ "type": "string"
1732
+ },
1733
+ "list": {
1734
+ "type": "string"
1735
+ },
1736
+ "total": {
1737
+ "type": "string"
1738
+ },
1739
+ "filter": {
1740
+ "type": "object",
1741
+ "properties": {
1742
+ "eq": {
1743
+ "type": "string"
1744
+ },
1745
+ "join": {
1746
+ "type": "string"
1747
+ }
1748
+ }
1749
+ }
1750
+ }
1751
+ }
1752
+ },
1753
+ "required": [
1754
+ "kind",
1755
+ "operationId"
1756
+ ]
1757
+ }
1758
+ ]
1759
+ },
1760
+ "schematicInput": {
1761
+ "$schema": "http://json-schema.org/schema",
1762
+ "$id": "schematic-input",
1763
+ "type": "object",
1764
+ "oneOf": [
1765
+ {
1766
+ "type": "object",
1767
+ "properties": {
1768
+ "package": {
1769
+ "type": "string",
1770
+ "enum": [
1771
+ "@rxap/schematic-angular"
1772
+ ]
1773
+ },
1774
+ "name": {
1775
+ "type": "string",
1776
+ "enum": [
1777
+ "table-component"
1778
+ ]
1779
+ },
1780
+ "options": {
1781
+ "$ref": "#/definitions/tableComponentSchematic"
1782
+ }
1783
+ }
1784
+ },
1785
+ {
1786
+ "type": "object",
1787
+ "properties": {
1788
+ "package": {
1789
+ "type": "string",
1790
+ "enum": [
1791
+ "@rxap/schematic-angular"
1792
+ ]
1793
+ },
1794
+ "name": {
1795
+ "type": "string",
1796
+ "enum": [
1797
+ "tree-table-component"
1798
+ ]
1799
+ },
1800
+ "options": {
1801
+ "$ref": "#/definitions/treeTableComponentSchematic"
1802
+ }
1803
+ }
1804
+ },
1805
+ {
1806
+ "type": "object",
1807
+ "properties": {
1808
+ "package": {
1809
+ "type": "string",
1810
+ "enum": [
1811
+ "@rxap/schematic-angular"
1812
+ ]
1813
+ },
1814
+ "name": {
1815
+ "type": "string",
1816
+ "enum": [
1817
+ "form-component"
1818
+ ]
1819
+ },
1820
+ "options": {
1821
+ "$ref": "#/definitions/formComponentSchematic"
1822
+ }
1823
+ }
1824
+ },
1825
+ {
1826
+ "type": "object",
1827
+ "properties": {
1828
+ "package": {
1829
+ "type": "string",
1830
+ "enum": [
1831
+ "@rxap/schematic-angular"
1832
+ ]
1833
+ },
1834
+ "name": {
1835
+ "type": "string",
1836
+ "enum": [
1837
+ "form-definition"
1838
+ ]
1839
+ },
1840
+ "options": {
1841
+ "$ref": "#/definitions/formDefinitionSchematic"
1842
+ }
1843
+ }
1844
+ },
1845
+ {
1846
+ "type": "object",
1847
+ "properties": {
1848
+ "package": {
1849
+ "type": "string",
1850
+ "enum": [
1851
+ "@rxap/schematic-angular"
1852
+ ]
1853
+ },
1854
+ "name": {
1855
+ "type": "string",
1856
+ "enum": [
1857
+ "table-action"
1858
+ ]
1859
+ },
1860
+ "options": {
1861
+ "$ref": "#/definitions/tableActionSchematic"
1862
+ }
1863
+ }
1864
+ },
1865
+ {
1866
+ "type": "object",
1867
+ "properties": {
1868
+ "package": {
1869
+ "type": "string",
1870
+ "enum": [
1871
+ "@rxap/schematic-angular"
1872
+ ]
1873
+ },
1874
+ "name": {
1875
+ "type": "string",
1876
+ "enum": [
1877
+ "table-header-button"
1878
+ ]
1879
+ },
1880
+ "options": {
1881
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
1882
+ }
1883
+ }
1884
+ },
1885
+ {
1886
+ "type": "object",
1887
+ "properties": {
1888
+ "package": {
1889
+ "type": "string",
1890
+ "enum": [
1891
+ "@rxap/schematic-angular"
1892
+ ]
1893
+ },
1894
+ "name": {
1895
+ "type": "string",
1896
+ "enum": [
1897
+ "form-table-header-button"
1898
+ ]
1899
+ },
1900
+ "options": {
1901
+ "$ref": "#/definitions/formTableHeaderButtonSchematic"
1902
+ }
1903
+ }
1904
+ },
1905
+ {
1906
+ "type": "object",
1907
+ "properties": {
1908
+ "package": {
1909
+ "type": "string",
1910
+ "enum": [
1911
+ "@rxap/schematic-angular"
1912
+ ]
1913
+ },
1914
+ "name": {
1915
+ "type": "string",
1916
+ "enum": [
1917
+ "navigation-table-header-button"
1918
+ ]
1919
+ },
1920
+ "options": {
1921
+ "$ref": "#/definitions/navigationTableHeaderButtonSchematic"
1922
+ }
1923
+ }
1924
+ },
1925
+ {
1926
+ "type": "object",
1927
+ "properties": {
1928
+ "package": {
1929
+ "type": "string",
1930
+ "enum": [
1931
+ "@rxap/schematic-angular"
1932
+ ]
1933
+ },
1934
+ "name": {
1935
+ "type": "string",
1936
+ "enum": [
1937
+ "accordion-component"
1938
+ ]
1939
+ },
1940
+ "options": {
1941
+ "$ref": "#/definitions/accordionComponentSchematic"
1942
+ }
1943
+ }
1944
+ },
1945
+ {
1946
+ "type": "object",
1947
+ "properties": {
1948
+ "package": {
1949
+ "type": "string",
1950
+ "enum": [
1951
+ "@rxap/schematic-angular"
1952
+ ]
1953
+ },
1954
+ "name": {
1955
+ "type": "string",
1956
+ "enum": [
1957
+ "accordion-item-component"
1958
+ ]
1959
+ },
1960
+ "options": {
1961
+ "$ref": "#/definitions/accordionItemComponentSchematic"
1962
+ }
1963
+ }
1964
+ },
1965
+ {
1966
+ "type": "object",
1967
+ "properties": {
1968
+ "package": {
1969
+ "type": "string",
1970
+ "enum": [
1971
+ "@rxap/schematic-angular"
1972
+ ]
1973
+ },
1974
+ "name": {
1975
+ "type": "string",
1976
+ "enum": [
1977
+ "accordion-item-table-component"
1978
+ ]
1979
+ },
1980
+ "options": {
1981
+ "$ref": "#/definitions/accordionItemTableComponentSchematic"
1982
+ }
1983
+ }
1984
+ },
1985
+ {
1986
+ "type": "object",
1987
+ "properties": {
1988
+ "package": {
1989
+ "type": "string",
1990
+ "enum": [
1991
+ "@rxap/schematic-angular"
1992
+ ]
1993
+ },
1994
+ "name": {
1995
+ "type": "string",
1996
+ "enum": [
1997
+ "accordion-item-switch-component"
1998
+ ]
1999
+ },
2000
+ "options": {
2001
+ "$ref": "#/definitions/accordionItemSwitchComponentSchematic"
2002
+ }
2003
+ }
2004
+ },
2005
+ {
2006
+ "type": "object",
2007
+ "properties": {
2008
+ "package": {
2009
+ "type": "string",
2010
+ "enum": [
2011
+ "@rxap/schematic-angular"
2012
+ ]
2013
+ },
2014
+ "name": {
2015
+ "type": "string",
2016
+ "enum": [
2017
+ "data-grid-component"
2018
+ ]
2019
+ },
2020
+ "options": {
2021
+ "$ref": "#/definitions/dataGridComponentSchematic"
2022
+ }
2023
+ }
2024
+ },
2025
+ {
2026
+ "type": "object",
2027
+ "properties": {
2028
+ "package": {
2029
+ "type": "string",
2030
+ "enum": [
2031
+ "@rxap/schematic-angular"
2032
+ ]
2033
+ },
2034
+ "name": {
2035
+ "type": "string",
2036
+ "enum": [
2037
+ "dialog-component"
2038
+ ]
2039
+ },
2040
+ "options": {
2041
+ "$ref": "#/definitions/dialogComponentSchematic"
2042
+ }
2043
+ }
2044
+ },
2045
+ {
2046
+ "type": "object",
2047
+ "properties": {
2048
+ "package": {
2049
+ "type": "string",
2050
+ "enum": [
2051
+ "@rxap/schematic-angular"
2052
+ ]
2053
+ },
2054
+ "name": {
2055
+ "type": "string",
2056
+ "enum": [
2057
+ "input-form-control"
2058
+ ]
2059
+ },
2060
+ "options": {
2061
+ "$ref": "#/definitions/inputFormControlSchematic"
2062
+ }
2063
+ }
2064
+ },
2065
+ {
2066
+ "type": "object",
2067
+ "properties": {
2068
+ "package": {
2069
+ "type": "string",
2070
+ "enum": [
2071
+ "@rxap/schematic-angular"
2072
+ ]
2073
+ },
2074
+ "name": {
2075
+ "type": "string",
2076
+ "enum": [
2077
+ "select-form-control"
2078
+ ]
2079
+ },
2080
+ "options": {
2081
+ "$ref": "#/definitions/selectFormControlSchematic"
2082
+ }
2083
+ }
2084
+ },
2085
+ {
2086
+ "type": "object",
2087
+ "properties": {
2088
+ "package": {
2089
+ "type": "string",
2090
+ "enum": [
2091
+ "@rxap/schematic-angular"
2092
+ ]
2093
+ },
2094
+ "name": {
2095
+ "type": "string",
2096
+ "enum": [
2097
+ "table-select-form-control"
2098
+ ]
2099
+ },
2100
+ "options": {
2101
+ "$ref": "#/definitions/tableSelectFormControlSchematic"
2102
+ }
2103
+ }
2104
+ },
2105
+ {
2106
+ "type": "object",
2107
+ "properties": {
2108
+ "package": {
2109
+ "type": "string",
2110
+ "enum": [
2111
+ "@rxap/schematic-angular"
2112
+ ]
2113
+ },
2114
+ "name": {
2115
+ "type": "string",
2116
+ "enum": [
2117
+ "form-control"
2118
+ ]
2119
+ },
2120
+ "options": {
2121
+ "$ref": "#/definitions/formControlSchematic"
2122
+ }
2123
+ }
2124
+ },
2125
+ {
2126
+ "type": "object",
2127
+ "properties": {
2128
+ "package": {
2129
+ "type": "string",
2130
+ "enum": [
2131
+ "@rxap/schematic-angular"
2132
+ ]
2133
+ },
2134
+ "name": {
2135
+ "type": "string",
2136
+ "enum": [
2137
+ "dialog-table-action"
2138
+ ]
2139
+ },
2140
+ "options": {
2141
+ "$ref": "#/definitions/dialogTableActionSchematic"
2142
+ }
2143
+ }
2144
+ },
2145
+ {
2146
+ "type": "object",
2147
+ "properties": {
2148
+ "package": {
2149
+ "type": "string",
2150
+ "enum": [
2151
+ "@rxap/schematic-angular"
2152
+ ]
2153
+ },
2154
+ "name": {
2155
+ "type": "string",
2156
+ "enum": [
2157
+ "form-table-action"
2158
+ ]
2159
+ },
2160
+ "options": {
2161
+ "$ref": "#/definitions/formTableActionSchematic"
2162
+ }
2163
+ }
2164
+ },
2165
+ {
2166
+ "type": "object",
2167
+ "properties": {
2168
+ "package": {
2169
+ "type": "string",
2170
+ "enum": [
2171
+ "@rxap/schematic-angular"
2172
+ ]
2173
+ },
2174
+ "name": {
2175
+ "type": "string",
2176
+ "enum": [
2177
+ "navigation-table-action"
2178
+ ]
2179
+ },
2180
+ "options": {
2181
+ "$ref": "#/definitions/navigationTableActionSchematic"
2182
+ }
2183
+ }
2184
+ },
2185
+ {
2186
+ "type": "object",
2187
+ "properties": {
2188
+ "package": {
2189
+ "type": "string",
2190
+ "enum": [
2191
+ "@rxap/schematic-angular"
2192
+ ]
2193
+ },
2194
+ "name": {
2195
+ "type": "string",
2196
+ "enum": [
2197
+ "operation-table-action"
2198
+ ]
2199
+ },
2200
+ "options": {
2201
+ "$ref": "#/definitions/operationTableActionSchematic"
2202
+ }
2203
+ }
2204
+ },
2205
+ {
2206
+ "type": "object",
2207
+ "properties": {
2208
+ "package": {
2209
+ "type": "string",
2210
+ "enum": [
2211
+ "@rxap/schematic-angular"
2212
+ ]
2213
+ },
2214
+ "name": {
2215
+ "type": "string",
2216
+ "enum": [
2217
+ "open-api-table-action"
2218
+ ]
2219
+ },
2220
+ "options": {
2221
+ "$ref": "#/definitions/openApiTableActionSchematic"
2222
+ }
2223
+ }
2224
+ },
2225
+ {
2226
+ "type": "object",
2227
+ "properties": {
2228
+ "package": {
2229
+ "type": "string",
2230
+ "enum": [
2231
+ "@rxap/schematic-angular"
2232
+ ]
2233
+ },
2234
+ "name": {
2235
+ "type": "string",
2236
+ "enum": [
2237
+ "tree-component"
2238
+ ]
2239
+ },
2240
+ "options": {
2241
+ "$ref": "#/definitions/treeComponentSchematic"
2242
+ }
2243
+ }
2244
+ },
2245
+ {
2246
+ "type": "object",
2247
+ "properties": {
2248
+ "package": {
2249
+ "type": "string",
2250
+ "enum": [
2251
+ "@rxap/schematic-angular"
2252
+ ]
2253
+ },
2254
+ "name": {
2255
+ "type": "string",
2256
+ "enum": [
2257
+ "accordion-item-data-grid-component"
2258
+ ]
2259
+ },
2260
+ "options": {
2261
+ "$ref": "#/definitions/accordionItemDataGridComponentSchematic"
2262
+ }
2263
+ }
2264
+ },
2265
+ {
2266
+ "type": "object",
2267
+ "properties": {
2268
+ "package": {
2269
+ "type": "string",
2270
+ "enum": [
2271
+ "@rxap/schematic-angular"
2272
+ ]
2273
+ },
2274
+ "name": {
2275
+ "type": "string",
2276
+ "enum": [
2277
+ "accordion-item-tree-table-component"
2278
+ ]
2279
+ },
2280
+ "options": {
2281
+ "$ref": "#/definitions/accordionItemTreeTableComponentSchematic"
2282
+ }
2283
+ }
2284
+ }
2285
+ ],
2286
+ "definitions": {
2287
+ "tableComponentSchematic": {
2288
+ "$ref": "#/definitions/tableComponentSchematic"
2289
+ },
2290
+ "treeTableComponentSchematic": {
2291
+ "$ref": "#/definitions/treeTableComponentSchematic"
2292
+ },
2293
+ "formComponentSchematic": {
2294
+ "$ref": "#/definitions/formComponentSchematic"
2295
+ },
2296
+ "formDefinitionSchematic": {
2297
+ "$ref": "#/definitions/formDefinitionSchematic"
2298
+ },
2299
+ "tableActionSchematic": {
2300
+ "$ref": "#/definitions/tableActionSchematic"
2301
+ },
2302
+ "tableHeaderButtonSchematic": {
2303
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
2304
+ },
2305
+ "formTableHeaderButtonSchematic": {
2306
+ "$ref": "#/definitions/formTableHeaderButtonSchematic"
2307
+ },
2308
+ "navigationTableHeaderButtonSchematic": {
2309
+ "$ref": "#/definitions/navigationTableHeaderButtonSchematic"
2310
+ },
2311
+ "accordionComponentSchematic": {
2312
+ "$ref": "#/definitions/accordionComponentSchematic"
2313
+ },
2314
+ "accordionItemComponentSchematic": {
2315
+ "$ref": "#/definitions/accordionItemComponentSchematic"
2316
+ },
2317
+ "accordionItemTableComponentSchematic": {
2318
+ "$ref": "#/definitions/accordionItemTableComponentSchematic"
2319
+ },
2320
+ "accordionItemSwitchComponentSchematic": {
2321
+ "$ref": "#/definitions/accordionItemSwitchComponentSchematic"
2322
+ },
2323
+ "dataGridComponentSchematic": {
2324
+ "$ref": "#/definitions/dataGridComponentSchematic"
2325
+ },
2326
+ "dialogComponentSchematic": {
2327
+ "$ref": "#/definitions/dialogComponentSchematic"
2328
+ },
2329
+ "inputFormControlSchematic": {
2330
+ "$ref": "#/definitions/inputFormControlSchematic"
2331
+ },
2332
+ "selectFormControlSchematic": {
2333
+ "$ref": "#/definitions/selectFormControlSchematic"
2334
+ },
2335
+ "tableSelectFormControlSchematic": {
2336
+ "$ref": "#/definitions/tableSelectFormControlSchematic"
2337
+ },
2338
+ "formControlSchematic": {
2339
+ "$ref": "#/definitions/formControlSchematic"
2340
+ },
2341
+ "dialogTableActionSchematic": {
2342
+ "$ref": "#/definitions/dialogTableActionSchematic"
2343
+ },
2344
+ "formTableActionSchematic": {
2345
+ "$ref": "#/definitions/formTableActionSchematic"
2346
+ },
2347
+ "navigationTableActionSchematic": {
2348
+ "$ref": "#/definitions/navigationTableActionSchematic"
2349
+ },
2350
+ "operationTableActionSchematic": {
2351
+ "$ref": "#/definitions/operationTableActionSchematic"
2352
+ },
2353
+ "openApiTableActionSchematic": {
2354
+ "$ref": "#/definitions/openApiTableActionSchematic"
2355
+ },
2356
+ "treeComponentSchematic": {
2357
+ "$ref": "#/definitions/treeComponentSchematic"
2358
+ },
2359
+ "accordionItemDataGridComponentSchematic": {
2360
+ "$ref": "#/definitions/accordionItemDataGridComponentSchematic"
2361
+ },
2362
+ "accordionItemTreeTableComponentSchematic": {
2363
+ "$ref": "#/definitions/accordionItemTreeTableComponentSchematic"
2364
+ }
2365
+ }
2366
+ }
2367
+ }
2368
+ }