@rxap/schematic-angular 16.2.0-dev.4 → 16.2.0-dev.40

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