@rxap/schematic-angular 16.2.0-dev.3 → 16.2.0-dev.31

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 (363) hide show
  1. package/CHANGELOG.md +225 -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 +8 -0
  28. package/src/lib/css-class.js +28 -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 +6 -0
  55. package/src/lib/form/control/autocomplete-table-select-form-control.js +44 -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 +14 -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 +18 -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 +33 -0
  70. package/src/lib/form/control/form-field-form-control.js +76 -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 +14 -0
  73. package/src/lib/form/control/input-form-control.js +71 -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 +18 -0
  76. package/src/lib/form/control/select-form-control.js +29 -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 +7 -1
  106. package/src/lib/minimum-table-options.js +11 -2
  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 +41 -13
  116. package/src/lib/table-column.js +170 -114
  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 +1 -1
  123. package/src/lib/tree-table-options.js +35 -3
  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 +2860 -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 +1625 -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 +1586 -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 +35 -51
  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 +1056 -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 +1564 -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 +1129 -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 +1080 -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 +92 -52
  194. package/src/schematics/data-grid-component/index.js.map +1 -1
  195. package/src/schematics/data-grid-component/schema.json +1006 -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 +249 -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 +139 -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 +345 -81
  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 +923 -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 +923 -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 +23 -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 +752 -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 +905 -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 +923 -0
  257. package/src/schematics/form/form-group/template.schema.json +33 -0
  258. package/src/schematics/form/templates/checkbox-form-control.hbs +9 -0
  259. package/src/schematics/form/templates/default-form-array.hbs +27 -0
  260. package/src/schematics/form/templates/default-form-control.hbs +2 -0
  261. package/src/schematics/form/templates/default-form-group.hbs +13 -0
  262. package/src/schematics/form/templates/input-form-control.hbs +9 -0
  263. package/src/schematics/form/templates/mat-form-field.hbs +31 -0
  264. package/src/schematics/form/templates/select-form-control.hbs +5 -0
  265. package/src/schematics/form/templates/slide-toggle-form-control.hbs +8 -0
  266. package/src/schematics/form/templates/table-select-form-control.hbs +18 -0
  267. package/src/schematics/form-array.schema.json +40 -0
  268. package/src/schematics/form-component.schema.json +45 -0
  269. package/src/schematics/form-control.schema.json +83 -0
  270. package/src/schematics/form-definition.schema.json +22 -0
  271. package/src/schematics/form-field.schema.json +24 -0
  272. package/src/schematics/form-group.schema.json +40 -0
  273. package/src/schematics/general.schema.json +1 -4
  274. package/src/schematics/header-button.schema.json +42 -0
  275. package/src/schematics/input-form-control.schema.json +59 -0
  276. package/src/schematics/minimum-table.schema.json +72 -0
  277. package/src/schematics/pipe.schema.json +38 -0
  278. package/src/schematics/property.schema.json +28 -0
  279. package/src/schematics/select-form-control.schema.json +68 -0
  280. package/src/schematics/slide-toggle-form-control.schema.json +30 -0
  281. package/src/schematics/switch-accordion-item.schema.json +82 -0
  282. package/src/schematics/table/action/dialog-table-action/schema.json +234 -119
  283. package/src/schematics/table/action/dialog-table-action/template.schema.json +58 -0
  284. package/src/schematics/table/action/form-table-action/index.d.ts +2 -2
  285. package/src/schematics/table/action/form-table-action/index.js +3 -4
  286. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  287. package/src/schematics/table/action/form-table-action/schema.d.ts +2 -2
  288. package/src/schematics/table/action/form-table-action/schema.json +1061 -138
  289. package/src/schematics/table/action/form-table-action/template.schema.json +75 -0
  290. package/src/schematics/table/action/navigation-table-action/schema.json +218 -80
  291. package/src/schematics/table/action/navigation-table-action/template.schema.json +28 -0
  292. package/src/schematics/table/action/open-api-table-action/schema.json +232 -92
  293. package/src/schematics/table/action/open-api-table-action/template.schema.json +56 -0
  294. package/src/schematics/table/action/operation-table-action/schema.json +205 -84
  295. package/src/schematics/table/action/operation-table-action/template.schema.json +14 -0
  296. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +2 -2
  297. package/src/schematics/table/header-button/form-table-header-button/index.js +2 -2
  298. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
  299. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +2 -2
  300. package/src/schematics/table/header-button/form-table-header-button/schema.json +992 -98
  301. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +33 -0
  302. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +167 -71
  303. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +28 -0
  304. package/src/schematics/table/table-action/schema.json +195 -77
  305. package/src/schematics/table/table-action/template.schema.json +30 -0
  306. package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +243 -0
  307. package/src/schematics/table/table-component/index.d.ts +0 -5
  308. package/src/schematics/table/table-component/index.js +16 -128
  309. package/src/schematics/table/table-component/index.js.map +1 -1
  310. package/src/schematics/table/table-component/schema.json +1054 -295
  311. package/src/schematics/table/table-component/template.schema.json +20 -0
  312. package/src/schematics/table/table-header-button/schema.json +145 -63
  313. package/src/schematics/table/table-header-button/template.schema.json +30 -0
  314. package/src/schematics/table/templates/boolean-table-column.hbs +11 -0
  315. package/src/schematics/table/templates/component-table-column.hbs +13 -0
  316. package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +11 -0
  317. package/src/schematics/table/templates/date-table-column.hbs +12 -0
  318. package/src/schematics/table/templates/default-table-column.hbs +11 -0
  319. package/src/schematics/table/templates/icon-table-column.hbs +11 -0
  320. package/src/schematics/table/templates/link-table-column.hbs +11 -0
  321. package/src/schematics/table/templates/mat-column-def.hbs +3 -0
  322. package/src/schematics/table/templates/spinner-table-column.hbs +12 -0
  323. package/src/schematics/table/templates/tree-table-column.hbs +9 -0
  324. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +232 -0
  325. package/src/schematics/table/tree-table-component/index.d.ts +3 -0
  326. package/src/schematics/table/tree-table-component/index.js +31 -7
  327. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  328. package/src/schematics/table/tree-table-component/schema.json +1030 -264
  329. package/src/schematics/table/tree-table-component/template.schema.json +20 -0
  330. package/src/schematics/table-accordion-item.schema.json +41 -0
  331. package/src/schematics/table-action.schema.json +65 -0
  332. package/src/schematics/table-column.schema.json +78 -0
  333. package/src/schematics/table-select-form-control.schema.json +102 -0
  334. package/src/schematics/table.schema.json +57 -0
  335. package/src/schematics/templates/css-class.hbs +1 -0
  336. package/src/schematics/templates/pipe.hbs +4 -0
  337. package/src/schematics/textarea-form-control.schema.json +32 -0
  338. package/src/schematics/tree-component/schema.json +115 -70
  339. package/src/schematics/tree-component/template.schema.json +36 -0
  340. package/src/schematics/tree-table-accordion-item.schema.json +41 -0
  341. package/src/schematics/tree-table.schema.json +40 -0
  342. package/src/schematics/type.schema.json +35 -0
  343. package/src/schematics/upstream.schema.json +56 -0
  344. package/src/schematics/value.schema.json +26 -0
  345. package/src/template.schema.json +236 -0
  346. package/src/lib/accordion-itme-types.d.ts +0 -8
  347. package/src/lib/accordion-itme-types.js +0 -16
  348. package/src/lib/accordion-itme-types.js.map +0 -1
  349. package/src/lib/form-component-control.d.ts +0 -12
  350. package/src/lib/form-component-control.js +0 -15
  351. package/src/lib/form-component-control.js.map +0 -1
  352. package/src/lib/form-definition-control.d.ts +0 -59
  353. package/src/lib/form-definition-control.js +0 -156
  354. package/src/lib/form-definition-control.js.map +0 -1
  355. package/src/lib/merge-with-column-list.d.ts +0 -3
  356. package/src/lib/merge-with-column-list.js +0 -18
  357. package/src/lib/merge-with-column-list.js.map +0 -1
  358. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.template +0 -94
  359. package/src/schematics/accordion/accordion-component/files/header-component/accordion-header.component.html.template +0 -10
  360. package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +0 -42
  361. package/src/schematics/data-grid-component/files/plain/__componentName__.component.html.template +0 -25
  362. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +0 -299
  363. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +0 -259
@@ -0,0 +1,2860 @@
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
+ }
1476
+ },
1477
+ "navigationTableActionSchematic": {
1478
+ "allOf": [
1479
+ {
1480
+ "$ref": "#/definitions/tableActionSchematic"
1481
+ },
1482
+ {
1483
+ "type": "object",
1484
+ "properties": {
1485
+ "route": {
1486
+ "type": "string",
1487
+ "description": "The route for the table action"
1488
+ },
1489
+ "relativeTo": {
1490
+ "type": "boolean",
1491
+ "description": "Use the current ActivatedRoute to resolve the route or not",
1492
+ "default": false
1493
+ }
1494
+ }
1495
+ }
1496
+ ]
1497
+ },
1498
+ "navigationTableHeaderButtonSchematic": {
1499
+ "allOf": [
1500
+ {
1501
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
1502
+ },
1503
+ {
1504
+ "type": "object",
1505
+ "properties": {
1506
+ "route": {
1507
+ "type": "string",
1508
+ "description": "The route path for the table action"
1509
+ },
1510
+ "relativeTo": {
1511
+ "type": "boolean",
1512
+ "description": "Indicates if the route path should be relative to the current activated route",
1513
+ "default": false
1514
+ }
1515
+ }
1516
+ }
1517
+ ]
1518
+ },
1519
+ "openApiTableActionSchematic": {
1520
+ "allOf": [
1521
+ {
1522
+ "$ref": "#/definitions/tableActionSchematic"
1523
+ },
1524
+ {
1525
+ "type": "object",
1526
+ "properties": {
1527
+ "operationId": {
1528
+ "type": "string",
1529
+ "description": "The open api operationId for the table action"
1530
+ },
1531
+ "scope": {
1532
+ "type": "string",
1533
+ "description": "The scope of package for the openapi classes"
1534
+ },
1535
+ "body": {
1536
+ "oneOf": [
1537
+ {
1538
+ "type": "boolean",
1539
+ "description": "Pass the full row as body for the operation request"
1540
+ },
1541
+ {
1542
+ "type": "object",
1543
+ "description": "Mapping of table columns to body properties - [request property]: [table column]",
1544
+ "additionalProperties": true
1545
+ }
1546
+ ]
1547
+ },
1548
+ "parameters": {
1549
+ "oneOf": [
1550
+ {
1551
+ "type": "boolean",
1552
+ "description": "Pass the full row as parameters for the operation request"
1553
+ },
1554
+ {
1555
+ "type": "object",
1556
+ "description": "Mapping of table columns to parameters properties - [request property]: [table column]",
1557
+ "additionalProperties": true
1558
+ }
1559
+ ]
1560
+ }
1561
+ },
1562
+ "required": [
1563
+ "operationId"
1564
+ ]
1565
+ }
1566
+ ]
1567
+ },
1568
+ "operationTableActionSchematic": {
1569
+ "allOf": [
1570
+ {
1571
+ "$ref": "#/definitions/tableActionSchematic"
1572
+ }
1573
+ ]
1574
+ },
1575
+ "pipe": {
1576
+ "oneOf": [
1577
+ {
1578
+ "type": "string"
1579
+ },
1580
+ {
1581
+ "allOf": [
1582
+ {
1583
+ "$ref": "#/definitions/type"
1584
+ },
1585
+ {
1586
+ "type": "object",
1587
+ "properties": {
1588
+ "argumentList": {
1589
+ "type": "array",
1590
+ "items": {
1591
+ "$ref": "#/definitions/value"
1592
+ }
1593
+ }
1594
+ },
1595
+ "required": [
1596
+ "name"
1597
+ ]
1598
+ }
1599
+ ]
1600
+ }
1601
+ ]
1602
+ },
1603
+ "property": {
1604
+ "oneOf": [
1605
+ {
1606
+ "type": "string"
1607
+ },
1608
+ {
1609
+ "type": "object",
1610
+ "properties": {
1611
+ "name": {
1612
+ "type": "string"
1613
+ },
1614
+ "type": {
1615
+ "$ref": "#/definitions/type"
1616
+ },
1617
+ "isArray": {
1618
+ "type": "boolean"
1619
+ }
1620
+ }
1621
+ }
1622
+ ]
1623
+ },
1624
+ "schematicInput": {
1625
+ "type": "object",
1626
+ "oneOf": [
1627
+ {
1628
+ "type": "object",
1629
+ "properties": {
1630
+ "package": {
1631
+ "type": "string",
1632
+ "const": "@rxap/schematic-angular"
1633
+ },
1634
+ "name": {
1635
+ "type": "string",
1636
+ "const": "table-component"
1637
+ },
1638
+ "options": {
1639
+ "$ref": "#/definitions/tableComponentSchematic"
1640
+ }
1641
+ }
1642
+ },
1643
+ {
1644
+ "type": "object",
1645
+ "properties": {
1646
+ "package": {
1647
+ "type": "string",
1648
+ "const": "@rxap/schematic-angular"
1649
+ },
1650
+ "name": {
1651
+ "type": "string",
1652
+ "const": "tree-table-component"
1653
+ },
1654
+ "options": {
1655
+ "$ref": "#/definitions/treeTableComponentSchematic"
1656
+ }
1657
+ }
1658
+ },
1659
+ {
1660
+ "type": "object",
1661
+ "properties": {
1662
+ "package": {
1663
+ "type": "string",
1664
+ "const": "@rxap/schematic-angular"
1665
+ },
1666
+ "name": {
1667
+ "type": "string",
1668
+ "const": "form-component"
1669
+ },
1670
+ "options": {
1671
+ "$ref": "#/definitions/formComponentSchematic"
1672
+ }
1673
+ }
1674
+ },
1675
+ {
1676
+ "type": "object",
1677
+ "properties": {
1678
+ "package": {
1679
+ "type": "string",
1680
+ "const": "@rxap/schematic-angular"
1681
+ },
1682
+ "name": {
1683
+ "type": "string",
1684
+ "const": "form-definition"
1685
+ },
1686
+ "options": {
1687
+ "$ref": "#/definitions/formDefinitionSchematic"
1688
+ }
1689
+ }
1690
+ },
1691
+ {
1692
+ "type": "object",
1693
+ "properties": {
1694
+ "package": {
1695
+ "type": "string",
1696
+ "const": "@rxap/schematic-angular"
1697
+ },
1698
+ "name": {
1699
+ "type": "string",
1700
+ "const": "table-action"
1701
+ },
1702
+ "options": {
1703
+ "$ref": "#/definitions/tableActionSchematic"
1704
+ }
1705
+ }
1706
+ },
1707
+ {
1708
+ "type": "object",
1709
+ "properties": {
1710
+ "package": {
1711
+ "type": "string",
1712
+ "const": "@rxap/schematic-angular"
1713
+ },
1714
+ "name": {
1715
+ "type": "string",
1716
+ "const": "table-header-button"
1717
+ },
1718
+ "options": {
1719
+ "$ref": "#/definitions/tableHeaderButtonSchematic"
1720
+ }
1721
+ }
1722
+ },
1723
+ {
1724
+ "type": "object",
1725
+ "properties": {
1726
+ "package": {
1727
+ "type": "string",
1728
+ "const": "@rxap/schematic-angular"
1729
+ },
1730
+ "name": {
1731
+ "type": "string",
1732
+ "const": "form-table-header-button"
1733
+ },
1734
+ "options": {
1735
+ "$ref": "#/definitions/formTableHeaderButtonSchematic"
1736
+ }
1737
+ }
1738
+ },
1739
+ {
1740
+ "type": "object",
1741
+ "properties": {
1742
+ "package": {
1743
+ "type": "string",
1744
+ "const": "@rxap/schematic-angular"
1745
+ },
1746
+ "name": {
1747
+ "type": "string",
1748
+ "const": "navigation-table-header-button"
1749
+ },
1750
+ "options": {
1751
+ "$ref": "#/definitions/navigationTableHeaderButtonSchematic"
1752
+ }
1753
+ }
1754
+ },
1755
+ {
1756
+ "type": "object",
1757
+ "properties": {
1758
+ "package": {
1759
+ "type": "string",
1760
+ "const": "@rxap/schematic-angular"
1761
+ },
1762
+ "name": {
1763
+ "type": "string",
1764
+ "const": "accordion-component"
1765
+ },
1766
+ "options": {
1767
+ "$ref": "#/definitions/accordionComponentSchematic"
1768
+ }
1769
+ }
1770
+ },
1771
+ {
1772
+ "type": "object",
1773
+ "properties": {
1774
+ "package": {
1775
+ "type": "string",
1776
+ "const": "@rxap/schematic-angular"
1777
+ },
1778
+ "name": {
1779
+ "type": "string",
1780
+ "const": "accordion-item-component"
1781
+ },
1782
+ "options": {
1783
+ "$ref": "#/definitions/accordionItemComponentSchematic"
1784
+ }
1785
+ }
1786
+ },
1787
+ {
1788
+ "type": "object",
1789
+ "properties": {
1790
+ "package": {
1791
+ "type": "string",
1792
+ "const": "@rxap/schematic-angular"
1793
+ },
1794
+ "name": {
1795
+ "type": "string",
1796
+ "const": "accordion-item-table-component"
1797
+ },
1798
+ "options": {
1799
+ "$ref": "#/definitions/accordionItemTableComponentSchematic"
1800
+ }
1801
+ }
1802
+ },
1803
+ {
1804
+ "type": "object",
1805
+ "properties": {
1806
+ "package": {
1807
+ "type": "string",
1808
+ "const": "@rxap/schematic-angular"
1809
+ },
1810
+ "name": {
1811
+ "type": "string",
1812
+ "const": "accordion-item-switch-component"
1813
+ },
1814
+ "options": {
1815
+ "$ref": "#/definitions/accordionItemSwitchComponentSchematic"
1816
+ }
1817
+ }
1818
+ },
1819
+ {
1820
+ "type": "object",
1821
+ "properties": {
1822
+ "package": {
1823
+ "type": "string",
1824
+ "const": "@rxap/schematic-angular"
1825
+ },
1826
+ "name": {
1827
+ "type": "string",
1828
+ "const": "data-grid-component"
1829
+ },
1830
+ "options": {
1831
+ "$ref": "#/definitions/dataGridComponentSchematic"
1832
+ }
1833
+ }
1834
+ },
1835
+ {
1836
+ "type": "object",
1837
+ "properties": {
1838
+ "package": {
1839
+ "type": "string",
1840
+ "const": "@rxap/schematic-angular"
1841
+ },
1842
+ "name": {
1843
+ "type": "string",
1844
+ "const": "dialog-component"
1845
+ },
1846
+ "options": {
1847
+ "$ref": "#/definitions/dialogComponentSchematic"
1848
+ }
1849
+ }
1850
+ },
1851
+ {
1852
+ "type": "object",
1853
+ "properties": {
1854
+ "package": {
1855
+ "type": "string",
1856
+ "const": "@rxap/schematic-angular"
1857
+ },
1858
+ "name": {
1859
+ "type": "string",
1860
+ "const": "input-form-control"
1861
+ },
1862
+ "options": {
1863
+ "$ref": "#/definitions/inputFormControlSchematic"
1864
+ }
1865
+ }
1866
+ },
1867
+ {
1868
+ "type": "object",
1869
+ "properties": {
1870
+ "package": {
1871
+ "type": "string",
1872
+ "const": "@rxap/schematic-angular"
1873
+ },
1874
+ "name": {
1875
+ "type": "string",
1876
+ "const": "select-form-control"
1877
+ },
1878
+ "options": {
1879
+ "$ref": "#/definitions/selectFormControlSchematic"
1880
+ }
1881
+ }
1882
+ },
1883
+ {
1884
+ "type": "object",
1885
+ "properties": {
1886
+ "package": {
1887
+ "type": "string",
1888
+ "const": "@rxap/schematic-angular"
1889
+ },
1890
+ "name": {
1891
+ "type": "string",
1892
+ "const": "table-select-form-control"
1893
+ },
1894
+ "options": {
1895
+ "$ref": "#/definitions/tableSelectFormControlSchematic"
1896
+ }
1897
+ }
1898
+ },
1899
+ {
1900
+ "type": "object",
1901
+ "properties": {
1902
+ "package": {
1903
+ "type": "string",
1904
+ "const": "@rxap/schematic-angular"
1905
+ },
1906
+ "name": {
1907
+ "type": "string",
1908
+ "const": "autocomplete-table-select-form-control"
1909
+ },
1910
+ "options": {
1911
+ "$ref": "#/definitions/autocompleteTableSelectFormControlSchematic"
1912
+ }
1913
+ }
1914
+ },
1915
+ {
1916
+ "type": "object",
1917
+ "properties": {
1918
+ "package": {
1919
+ "type": "string",
1920
+ "const": "@rxap/schematic-angular"
1921
+ },
1922
+ "name": {
1923
+ "type": "string",
1924
+ "const": "form-control"
1925
+ },
1926
+ "options": {
1927
+ "$ref": "#/definitions/formControlSchematic"
1928
+ }
1929
+ }
1930
+ },
1931
+ {
1932
+ "type": "object",
1933
+ "properties": {
1934
+ "package": {
1935
+ "type": "string",
1936
+ "const": "@rxap/schematic-angular"
1937
+ },
1938
+ "name": {
1939
+ "type": "string",
1940
+ "const": "form-group"
1941
+ },
1942
+ "options": {
1943
+ "$ref": "#/definitions/formGroupSchematic"
1944
+ }
1945
+ }
1946
+ },
1947
+ {
1948
+ "type": "object",
1949
+ "properties": {
1950
+ "package": {
1951
+ "type": "string",
1952
+ "const": "@rxap/schematic-angular"
1953
+ },
1954
+ "name": {
1955
+ "type": "string",
1956
+ "const": "form-array"
1957
+ },
1958
+ "options": {
1959
+ "$ref": "#/definitions/formArraySchematic"
1960
+ }
1961
+ }
1962
+ },
1963
+ {
1964
+ "type": "object",
1965
+ "properties": {
1966
+ "package": {
1967
+ "type": "string",
1968
+ "const": "@rxap/schematic-angular"
1969
+ },
1970
+ "name": {
1971
+ "type": "string",
1972
+ "const": "dialog-table-action"
1973
+ },
1974
+ "options": {
1975
+ "$ref": "#/definitions/dialogTableActionSchematic"
1976
+ }
1977
+ }
1978
+ },
1979
+ {
1980
+ "type": "object",
1981
+ "properties": {
1982
+ "package": {
1983
+ "type": "string",
1984
+ "const": "@rxap/schematic-angular"
1985
+ },
1986
+ "name": {
1987
+ "type": "string",
1988
+ "const": "form-table-action"
1989
+ },
1990
+ "options": {
1991
+ "$ref": "#/definitions/formTableActionSchematic"
1992
+ }
1993
+ }
1994
+ },
1995
+ {
1996
+ "type": "object",
1997
+ "properties": {
1998
+ "package": {
1999
+ "type": "string",
2000
+ "const": "@rxap/schematic-angular"
2001
+ },
2002
+ "name": {
2003
+ "type": "string",
2004
+ "const": "navigation-table-action"
2005
+ },
2006
+ "options": {
2007
+ "$ref": "#/definitions/navigationTableActionSchematic"
2008
+ }
2009
+ }
2010
+ },
2011
+ {
2012
+ "type": "object",
2013
+ "properties": {
2014
+ "package": {
2015
+ "type": "string",
2016
+ "const": "@rxap/schematic-angular"
2017
+ },
2018
+ "name": {
2019
+ "type": "string",
2020
+ "const": "operation-table-action"
2021
+ },
2022
+ "options": {
2023
+ "$ref": "#/definitions/operationTableActionSchematic"
2024
+ }
2025
+ }
2026
+ },
2027
+ {
2028
+ "type": "object",
2029
+ "properties": {
2030
+ "package": {
2031
+ "type": "string",
2032
+ "const": "@rxap/schematic-angular"
2033
+ },
2034
+ "name": {
2035
+ "type": "string",
2036
+ "const": "open-api-table-action"
2037
+ },
2038
+ "options": {
2039
+ "$ref": "#/definitions/openApiTableActionSchematic"
2040
+ }
2041
+ }
2042
+ },
2043
+ {
2044
+ "type": "object",
2045
+ "properties": {
2046
+ "package": {
2047
+ "type": "string",
2048
+ "const": "@rxap/schematic-angular"
2049
+ },
2050
+ "name": {
2051
+ "type": "string",
2052
+ "const": "tree-component"
2053
+ },
2054
+ "options": {
2055
+ "$ref": "#/definitions/treeComponentSchematic"
2056
+ }
2057
+ }
2058
+ },
2059
+ {
2060
+ "type": "object",
2061
+ "properties": {
2062
+ "package": {
2063
+ "type": "string",
2064
+ "const": "@rxap/schematic-angular"
2065
+ },
2066
+ "name": {
2067
+ "type": "string",
2068
+ "const": "accordion-item-data-grid-component"
2069
+ },
2070
+ "options": {
2071
+ "$ref": "#/definitions/accordionItemDataGridComponentSchematic"
2072
+ }
2073
+ }
2074
+ },
2075
+ {
2076
+ "type": "object",
2077
+ "properties": {
2078
+ "package": {
2079
+ "type": "string",
2080
+ "const": "@rxap/schematic-angular"
2081
+ },
2082
+ "name": {
2083
+ "type": "string",
2084
+ "const": "accordion-item-tree-table-component"
2085
+ },
2086
+ "options": {
2087
+ "$ref": "#/definitions/accordionItemTreeTableComponentSchematic"
2088
+ }
2089
+ }
2090
+ }
2091
+ ]
2092
+ },
2093
+ "selectFormControl": {
2094
+ "allOf": [
2095
+ {
2096
+ "$ref": "#/definitions/baseFormControl"
2097
+ },
2098
+ {
2099
+ "type": "object",
2100
+ "properties": {
2101
+ "formField": {
2102
+ "$ref": "#/definitions/formField"
2103
+ },
2104
+ "kind": {
2105
+ "type": "string",
2106
+ "const": "select"
2107
+ },
2108
+ "optionList": {
2109
+ "type": "array",
2110
+ "items": {
2111
+ "type": "object",
2112
+ "properties": {
2113
+ "display": {
2114
+ "type": "string"
2115
+ },
2116
+ "value": {
2117
+ "oneOf": [
2118
+ {
2119
+ "type": "string"
2120
+ },
2121
+ {
2122
+ "type": "number"
2123
+ },
2124
+ {
2125
+ "type": "boolean"
2126
+ },
2127
+ {
2128
+ "type": "object",
2129
+ "additionalProperties": true
2130
+ }
2131
+ ]
2132
+ }
2133
+ }
2134
+ }
2135
+ },
2136
+ "backend": {
2137
+ "$ref": "#/definitions/backend"
2138
+ },
2139
+ "multiple": {
2140
+ "alias": "multi",
2141
+ "type": "boolean",
2142
+ "description": "Whether the select form control is multiple mode"
2143
+ }
2144
+ }
2145
+ }
2146
+ ]
2147
+ },
2148
+ "selectFormControlSchematic": {
2149
+ "allOf": [
2150
+ {
2151
+ "$ref": "#/definitions/angular"
2152
+ },
2153
+ {
2154
+ "$ref": "#/definitions/selectFormControl"
2155
+ },
2156
+ {
2157
+ "type": "object",
2158
+ "properties": {
2159
+ "formName": {
2160
+ "alias": "form",
2161
+ "type": "string",
2162
+ "description": "The name of the form where the form control should be added"
2163
+ }
2164
+ },
2165
+ "required": [
2166
+ "formName"
2167
+ ]
2168
+ }
2169
+ ]
2170
+ },
2171
+ "slideToggleFormControl": {
2172
+ "allOf": [
2173
+ {
2174
+ "$ref": "#/definitions/baseFormControl"
2175
+ },
2176
+ {
2177
+ "type": "object",
2178
+ "properties": {
2179
+ "kind": {
2180
+ "type": "string",
2181
+ "const": "slide-toggle"
2182
+ },
2183
+ "labelPosition": {
2184
+ "type": "string",
2185
+ "enum": [
2186
+ "before",
2187
+ "after"
2188
+ ]
2189
+ }
2190
+ }
2191
+ }
2192
+ ]
2193
+ },
2194
+ "switchAccordionItem": {
2195
+ "allOf": [
2196
+ {
2197
+ "$ref": "#/definitions/baseAccordionItem"
2198
+ },
2199
+ {
2200
+ "type": "object",
2201
+ "properties": {
2202
+ "kind": {
2203
+ "type": "string",
2204
+ "const": "switch"
2205
+ },
2206
+ "switch": {
2207
+ "type": "object",
2208
+ "properties": {
2209
+ "property": {
2210
+ "$ref": "#/definitions/property"
2211
+ },
2212
+ "defaultCase": {
2213
+ "type": "object",
2214
+ "properties": {
2215
+ "itemList": {
2216
+ "alias": "item",
2217
+ "type": "array",
2218
+ "items": {
2219
+ "$ref": "#/definitions/accordionItem"
2220
+ },
2221
+ "description": "The list of accordion expansion panels"
2222
+ }
2223
+ },
2224
+ "required": [
2225
+ "itemList"
2226
+ ]
2227
+ },
2228
+ "case": {
2229
+ "type": "array",
2230
+ "items": {
2231
+ "type": "object",
2232
+ "properties": {
2233
+ "test": {
2234
+ "anyOf": [
2235
+ {
2236
+ "type": "string"
2237
+ },
2238
+ {
2239
+ "type": "number"
2240
+ },
2241
+ {
2242
+ "type": "boolean"
2243
+ }
2244
+ ]
2245
+ },
2246
+ "itemList": {
2247
+ "alias": "item",
2248
+ "type": "array",
2249
+ "items": {
2250
+ "$ref": "#/definitions/accordionItem"
2251
+ },
2252
+ "description": "The list of accordion expansion panels"
2253
+ }
2254
+ },
2255
+ "required": [
2256
+ "test",
2257
+ "itemList"
2258
+ ]
2259
+ }
2260
+ }
2261
+ },
2262
+ "required": [
2263
+ "property"
2264
+ ]
2265
+ }
2266
+ }
2267
+ }
2268
+ ]
2269
+ },
2270
+ "table": {
2271
+ "allOf": [
2272
+ {
2273
+ "$ref": "#/definitions/minimumTable"
2274
+ },
2275
+ {
2276
+ "type": "object",
2277
+ "properties": {
2278
+ "tableMethod": {
2279
+ "$ref": "#/definitions/type"
2280
+ },
2281
+ "openApi": {
2282
+ "type": "object",
2283
+ "properties": {
2284
+ "operationId": {
2285
+ "type": "string",
2286
+ "description": "The operationId for the open api operation"
2287
+ },
2288
+ "adapter": {
2289
+ "$ref": "#/definitions/type"
2290
+ }
2291
+ },
2292
+ "required": [
2293
+ "operationId"
2294
+ ]
2295
+ },
2296
+ "modifiers": {
2297
+ "alias": "modifier",
2298
+ "type": "array",
2299
+ "items": {
2300
+ "type": "string",
2301
+ "enum": [
2302
+ "navigation-back-header",
2303
+ "without-title",
2304
+ "show-archived-slide"
2305
+ ]
2306
+ },
2307
+ "description": "The table modifiers"
2308
+ },
2309
+ "selectColumn": {
2310
+ "type": "boolean",
2311
+ "description": "Whether to add a select column to the table"
2312
+ }
2313
+ }
2314
+ }
2315
+ ]
2316
+ },
2317
+ "tableAccordionItem": {
2318
+ "allOf": [
2319
+ {
2320
+ "$ref": "#/definitions/baseAccordionItem"
2321
+ },
2322
+ {
2323
+ "type": "object",
2324
+ "properties": {
2325
+ "kind": {
2326
+ "type": "string",
2327
+ "const": "table"
2328
+ },
2329
+ "modifiers": {
2330
+ "alias": "modifier",
2331
+ "type": "array",
2332
+ "items": {
2333
+ "type": "string",
2334
+ "enum": [
2335
+ "navigation-back-header",
2336
+ "without-title"
2337
+ ]
2338
+ },
2339
+ "description": "The table modifiers"
2340
+ },
2341
+ "table": {
2342
+ "$ref": "#/definitions/table"
2343
+ }
2344
+ }
2345
+ }
2346
+ ]
2347
+ },
2348
+ "tableAction": {
2349
+ "type": "object",
2350
+ "properties": {
2351
+ "type": {
2352
+ "type": "string"
2353
+ },
2354
+ "refresh": {
2355
+ "type": "boolean"
2356
+ },
2357
+ "confirm": {
2358
+ "type": "boolean"
2359
+ },
2360
+ "tooltip": {
2361
+ "type": "string"
2362
+ },
2363
+ "errorMessage": {
2364
+ "type": "string"
2365
+ },
2366
+ "successMessage": {
2367
+ "type": "string"
2368
+ },
2369
+ "priority": {
2370
+ "type": "number"
2371
+ },
2372
+ "checkFunction": {
2373
+ "type": "string"
2374
+ },
2375
+ "inHeader": {
2376
+ "type": "boolean"
2377
+ },
2378
+ "role": {
2379
+ "type": "string"
2380
+ },
2381
+ "icon": {
2382
+ "type": "string"
2383
+ },
2384
+ "svgIcon": {
2385
+ "type": "string"
2386
+ },
2387
+ "permission": {
2388
+ "type": "string"
2389
+ },
2390
+ "color": {
2391
+ "type": "string",
2392
+ "description": "Value for the color input of the mat-button / mat-icon component"
2393
+ },
2394
+ "cssClass": {
2395
+ "$ref": "#/definitions/cssClass"
2396
+ },
2397
+ "options": {
2398
+ "type": "object",
2399
+ "additionalProperties": true
2400
+ }
2401
+ },
2402
+ "required": [
2403
+ "type"
2404
+ ]
2405
+ },
2406
+ "tableActionSchematic": {
2407
+ "allOf": [
2408
+ {
2409
+ "$ref": "#/definitions/angular"
2410
+ },
2411
+ {
2412
+ "$ref": "#/definitions/tableAction"
2413
+ },
2414
+ {
2415
+ "type": "object",
2416
+ "properties": {
2417
+ "tableName": {
2418
+ "alias": "table",
2419
+ "type": "string",
2420
+ "description": "The name of the table action"
2421
+ }
2422
+ }
2423
+ }
2424
+ ]
2425
+ },
2426
+ "tableColumn": {
2427
+ "type": "object",
2428
+ "properties": {
2429
+ "name": {
2430
+ "type": "string"
2431
+ },
2432
+ "type": {
2433
+ "$ref": "#/definitions/type"
2434
+ },
2435
+ "kind": {
2436
+ "type": "string"
2437
+ },
2438
+ "modifiers": {
2439
+ "type": "array",
2440
+ "items": {
2441
+ "type": "string"
2442
+ }
2443
+ },
2444
+ "template": {
2445
+ "type": "string"
2446
+ },
2447
+ "pipeList": {
2448
+ "type": "array",
2449
+ "items": {
2450
+ "$ref": "#/definitions/pipe"
2451
+ }
2452
+ },
2453
+ "hasFilter": {
2454
+ "type": "boolean"
2455
+ },
2456
+ "nowrap": {
2457
+ "type": "boolean"
2458
+ },
2459
+ "cssClass": {
2460
+ "$ref": "#/definitions/cssClass"
2461
+ },
2462
+ "title": {
2463
+ "type": "string"
2464
+ },
2465
+ "propertyPath": {
2466
+ "type": "string"
2467
+ },
2468
+ "hidden": {
2469
+ "type": "boolean"
2470
+ },
2471
+ "active": {
2472
+ "type": "boolean"
2473
+ },
2474
+ "inactive": {
2475
+ "type": "boolean"
2476
+ },
2477
+ "show": {
2478
+ "type": "boolean"
2479
+ },
2480
+ "filterControl": {
2481
+ "$ref": "#/definitions/formControl"
2482
+ }
2483
+ },
2484
+ "required": [
2485
+ "name"
2486
+ ]
2487
+ },
2488
+ "tableComponentSchematic": {
2489
+ "allOf": [
2490
+ {
2491
+ "$ref": "#/definitions/angular"
2492
+ },
2493
+ {
2494
+ "$ref": "#/definitions/table"
2495
+ }
2496
+ ]
2497
+ },
2498
+ "tableHeaderButtonSchematic": {
2499
+ "allOf": [
2500
+ {
2501
+ "$ref": "#/definitions/angular"
2502
+ },
2503
+ {
2504
+ "$ref": "#/definitions/headerButton"
2505
+ },
2506
+ {
2507
+ "type": "object",
2508
+ "properties": {
2509
+ "tableName": {
2510
+ "alias": "table",
2511
+ "type": "string",
2512
+ "description": "The name of the table action"
2513
+ }
2514
+ }
2515
+ }
2516
+ ]
2517
+ },
2518
+ "tableSelectFormControl": {
2519
+ "allOf": [
2520
+ {
2521
+ "$ref": "#/definitions/baseFormControl"
2522
+ },
2523
+ {
2524
+ "type": "object",
2525
+ "properties": {
2526
+ "formField": {
2527
+ "$ref": "#/definitions/formField"
2528
+ },
2529
+ "kind": {
2530
+ "type": "string",
2531
+ "const": "table-select"
2532
+ },
2533
+ "placeholder": {
2534
+ "type": "string"
2535
+ },
2536
+ "columnList": {
2537
+ "alias": "column",
2538
+ "type": "array",
2539
+ "items": {
2540
+ "description": "table column name",
2541
+ "type": "object",
2542
+ "properties": {
2543
+ "name": {
2544
+ "type": "string",
2545
+ "description": "table column name"
2546
+ },
2547
+ "title": {
2548
+ "type": "string",
2549
+ "description": "table column label"
2550
+ },
2551
+ "hasFilter": {
2552
+ "type": "boolean",
2553
+ "description": "Whether the column has a filter"
2554
+ },
2555
+ "kind": {
2556
+ "type": "string",
2557
+ "description": "The kind of data in the column"
2558
+ }
2559
+ }
2560
+ },
2561
+ "description": "List of table column names"
2562
+ },
2563
+ "title": {
2564
+ "type": "string",
2565
+ "description": "The title of the table select window"
2566
+ },
2567
+ "toDisplay": {
2568
+ "type": "object",
2569
+ "properties": {
2570
+ "property": {
2571
+ "$ref": "#/definitions/property"
2572
+ }
2573
+ }
2574
+ },
2575
+ "toValue": {
2576
+ "type": "object",
2577
+ "properties": {
2578
+ "property": {
2579
+ "$ref": "#/definitions/property"
2580
+ }
2581
+ }
2582
+ },
2583
+ "upstream": {
2584
+ "$ref": "#/definitions/upstream"
2585
+ },
2586
+ "resolver": {
2587
+ "type": "object",
2588
+ "properties": {
2589
+ "upstream": {
2590
+ "$ref": "#/definitions/upstream"
2591
+ }
2592
+ }
2593
+ },
2594
+ "identifier": {
2595
+ "$ref": "#/definitions/accordionIdentifier"
2596
+ }
2597
+ }
2598
+ }
2599
+ ]
2600
+ },
2601
+ "tableSelectFormControlSchematic": {
2602
+ "allOf": [
2603
+ {
2604
+ "$ref": "#/definitions/angular"
2605
+ },
2606
+ {
2607
+ "$ref": "#/definitions/tableSelectFormControl"
2608
+ },
2609
+ {
2610
+ "type": "object",
2611
+ "properties": {
2612
+ "formName": {
2613
+ "alias": "form",
2614
+ "type": "string",
2615
+ "description": "The name of the form where the form control should be added"
2616
+ }
2617
+ },
2618
+ "required": [
2619
+ "formName"
2620
+ ]
2621
+ }
2622
+ ]
2623
+ },
2624
+ "textareaFormControl": {
2625
+ "allOf": [
2626
+ {
2627
+ "$ref": "#/definitions/baseFormControl"
2628
+ },
2629
+ {
2630
+ "type": "object",
2631
+ "properties": {
2632
+ "formField": {
2633
+ "$ref": "#/definitions/formField"
2634
+ },
2635
+ "kind": {
2636
+ "type": "string",
2637
+ "const": "textarea"
2638
+ },
2639
+ "placeholder": {
2640
+ "type": "string"
2641
+ }
2642
+ }
2643
+ }
2644
+ ]
2645
+ },
2646
+ "treeComponentSchematic": {
2647
+ "allOf": [
2648
+ {
2649
+ "$ref": "#/definitions/angular"
2650
+ },
2651
+ {
2652
+ "type": "object",
2653
+ "properties": {
2654
+ "modifiers": {
2655
+ "alias": "modifier",
2656
+ "type": "array",
2657
+ "items": {
2658
+ "type": "string",
2659
+ "enum": [
2660
+ "navigation-back-header",
2661
+ "without-title"
2662
+ ]
2663
+ },
2664
+ "description": "The tree modifiers"
2665
+ },
2666
+ "fullTree": {
2667
+ "type": "boolean",
2668
+ "description": "Whether the tree should be a full tree",
2669
+ "default": true
2670
+ }
2671
+ }
2672
+ }
2673
+ ]
2674
+ },
2675
+ "treeTable": {
2676
+ "allOf": [
2677
+ {
2678
+ "$ref": "#/definitions/minimumTable"
2679
+ },
2680
+ {
2681
+ "type": "object",
2682
+ "properties": {
2683
+ "modifiers": {
2684
+ "alias": "modifier",
2685
+ "type": "array",
2686
+ "items": {
2687
+ "type": "string",
2688
+ "enum": [
2689
+ "navigation-back-header",
2690
+ "without-title"
2691
+ ]
2692
+ },
2693
+ "description": "The table modifiers"
2694
+ },
2695
+ "tableRootMethod": {
2696
+ "$ref": "#/definitions/type"
2697
+ },
2698
+ "tableChildMethod": {
2699
+ "$ref": "#/definitions/type"
2700
+ }
2701
+ }
2702
+ }
2703
+ ]
2704
+ },
2705
+ "treeTableAccordionItem": {
2706
+ "allOf": [
2707
+ {
2708
+ "$ref": "#/definitions/baseAccordionItem"
2709
+ },
2710
+ {
2711
+ "type": "object",
2712
+ "properties": {
2713
+ "kind": {
2714
+ "type": "string",
2715
+ "const": "tree-table"
2716
+ },
2717
+ "modifiers": {
2718
+ "alias": "modifier",
2719
+ "type": "array",
2720
+ "items": {
2721
+ "type": "string",
2722
+ "enum": [
2723
+ "navigation-back-header",
2724
+ "without-title"
2725
+ ]
2726
+ },
2727
+ "description": "The table modifiers"
2728
+ },
2729
+ "table": {
2730
+ "$ref": "#/definitions/treeTable"
2731
+ }
2732
+ }
2733
+ }
2734
+ ]
2735
+ },
2736
+ "treeTableComponentSchematic": {
2737
+ "allOf": [
2738
+ {
2739
+ "$ref": "#/definitions/angular"
2740
+ },
2741
+ {
2742
+ "$ref": "#/definitions/treeTable"
2743
+ }
2744
+ ]
2745
+ },
2746
+ "type": {
2747
+ "oneOf": [
2748
+ {
2749
+ "type": "string"
2750
+ },
2751
+ {
2752
+ "type": "object",
2753
+ "properties": {
2754
+ "name": {
2755
+ "type": "string"
2756
+ },
2757
+ "isTypeOnly": {
2758
+ "type": "boolean"
2759
+ },
2760
+ "moduleSpecifier": {
2761
+ "type": "string"
2762
+ },
2763
+ "namedImport": {
2764
+ "type": "string"
2765
+ },
2766
+ "namespaceImport": {
2767
+ "type": "string"
2768
+ },
2769
+ "defaultImport": {
2770
+ "type": "string"
2771
+ }
2772
+ },
2773
+ "required": [
2774
+ "name"
2775
+ ]
2776
+ }
2777
+ ]
2778
+ },
2779
+ "upstream": {
2780
+ "oneOf": [
2781
+ {
2782
+ "type": "object",
2783
+ "properties": {
2784
+ "kind": {
2785
+ "type": "string",
2786
+ "enum": [
2787
+ "open-api"
2788
+ ]
2789
+ },
2790
+ "operationId": {
2791
+ "type": "string"
2792
+ },
2793
+ "scope": {
2794
+ "type": "string"
2795
+ },
2796
+ "mapper": {
2797
+ "type": "object",
2798
+ "properties": {
2799
+ "pageIndex": {
2800
+ "type": "string"
2801
+ },
2802
+ "pageSize": {
2803
+ "type": "string"
2804
+ },
2805
+ "sortBy": {
2806
+ "type": "string"
2807
+ },
2808
+ "sortDirection": {
2809
+ "type": "string"
2810
+ },
2811
+ "list": {
2812
+ "type": "string"
2813
+ },
2814
+ "total": {
2815
+ "type": "string"
2816
+ },
2817
+ "filter": {
2818
+ "type": "object",
2819
+ "properties": {
2820
+ "eq": {
2821
+ "type": "string"
2822
+ },
2823
+ "join": {
2824
+ "type": "string"
2825
+ }
2826
+ }
2827
+ }
2828
+ }
2829
+ }
2830
+ },
2831
+ "required": [
2832
+ "kind",
2833
+ "operationId"
2834
+ ]
2835
+ }
2836
+ ]
2837
+ },
2838
+ "value": {
2839
+ "oneOf": [
2840
+ {
2841
+ "type": "string"
2842
+ },
2843
+ {
2844
+ "type": "object",
2845
+ "properties": {
2846
+ "type": {
2847
+ "$ref": "#/definitions/type"
2848
+ },
2849
+ "value": {
2850
+ "type": "string"
2851
+ }
2852
+ },
2853
+ "required": [
2854
+ "value"
2855
+ ]
2856
+ }
2857
+ ]
2858
+ }
2859
+ }
2860
+ }