@rxap/schematic-angular 16.2.0-dev.5 → 16.2.0-dev.50

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 (389) hide show
  1. package/CHANGELOG.md +361 -0
  2. package/README.md +1 -1
  3. package/collection.json +20 -0
  4. package/package.json +16 -14
  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/angular-options.d.ts +2 -2
  18. package/src/lib/angular-options.js.map +1 -1
  19. package/src/lib/coerce-accordion-component.js +6 -4
  20. package/src/lib/coerce-accordion-component.js.map +1 -1
  21. package/src/lib/coerce-accordion-item-table-component.js +1 -1
  22. package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
  23. package/src/lib/coerce-form-component.js +18 -2
  24. package/src/lib/coerce-form-component.js.map +1 -1
  25. package/src/lib/coerce-minimum-table-component.js +22 -7
  26. package/src/lib/coerce-minimum-table-component.js.map +1 -1
  27. package/src/lib/coerce-tree-table-component.js +15 -3
  28. package/src/lib/coerce-tree-table-component.js.map +1 -1
  29. package/src/lib/component-options.d.ts +10 -0
  30. package/src/lib/component-options.js +14 -0
  31. package/src/lib/component-options.js.map +1 -0
  32. package/src/lib/css-class.d.ts +9 -0
  33. package/src/lib/css-class.js +52 -0
  34. package/src/lib/css-class.js.map +1 -0
  35. package/src/lib/data-grid-item.d.ts +46 -11
  36. package/src/lib/data-grid-item.js +102 -6
  37. package/src/lib/data-grid-item.js.map +1 -1
  38. package/src/lib/data-grid-mode.d.ts +4 -0
  39. package/src/lib/data-grid-mode.js +9 -0
  40. package/src/lib/data-grid-mode.js.map +1 -0
  41. package/src/lib/data-grid-options.d.ts +12 -5
  42. package/src/lib/data-grid-options.js +44 -13
  43. package/src/lib/data-grid-options.js.map +1 -1
  44. package/src/lib/form/abstract-control.d.ts +31 -0
  45. package/src/lib/form/abstract-control.js +48 -0
  46. package/src/lib/form/abstract-control.js.map +1 -0
  47. package/src/lib/form/array/base-form-array.d.ts +18 -0
  48. package/src/lib/form/array/base-form-array.js +41 -0
  49. package/src/lib/form/array/base-form-array.js.map +1 -0
  50. package/src/lib/form/array/form-array-kind.d.ts +3 -0
  51. package/src/lib/form/array/form-array-kind.js +8 -0
  52. package/src/lib/form/array/form-array-kind.js.map +1 -0
  53. package/src/lib/form/array/form-array.d.ts +12 -0
  54. package/src/lib/form/array/form-array.js +18 -0
  55. package/src/lib/form/array/form-array.js.map +1 -0
  56. package/src/lib/form/coerce-control-component-imports.d.ts +3 -0
  57. package/src/lib/form/coerce-control-component-imports.js +18 -0
  58. package/src/lib/form/coerce-control-component-imports.js.map +1 -0
  59. package/src/lib/form/control/autocomplete-table-select-form-control.d.ts +9 -0
  60. package/src/lib/form/control/autocomplete-table-select-form-control.js +58 -0
  61. package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -0
  62. package/src/lib/form/control/base-form-control.d.ts +15 -0
  63. package/src/lib/form/control/base-form-control.js +19 -0
  64. package/src/lib/form/control/base-form-control.js.map +1 -0
  65. package/src/lib/form/control/checkbox-form-control.d.ts +11 -0
  66. package/src/lib/form/control/checkbox-form-control.js +23 -0
  67. package/src/lib/form/control/checkbox-form-control.js.map +1 -0
  68. package/src/lib/form/control/form-control-kind.d.ts +10 -0
  69. package/src/lib/form/control/form-control-kind.js +15 -0
  70. package/src/lib/form/control/form-control-kind.js.map +1 -0
  71. package/src/lib/form/control/form-control.d.ts +20 -0
  72. package/src/lib/form/control/form-control.js +46 -0
  73. package/src/lib/form/control/form-control.js.map +1 -0
  74. package/src/lib/form/control/form-field-form-control.d.ts +39 -0
  75. package/src/lib/form/control/form-field-form-control.js +87 -0
  76. package/src/lib/form/control/form-field-form-control.js.map +1 -0
  77. package/src/lib/form/control/input-form-control.d.ts +15 -0
  78. package/src/lib/form/control/input-form-control.js +75 -0
  79. package/src/lib/form/control/input-form-control.js.map +1 -0
  80. package/src/lib/form/control/select-form-control.d.ts +22 -0
  81. package/src/lib/form/control/select-form-control.js +47 -0
  82. package/src/lib/form/control/select-form-control.js.map +1 -0
  83. package/src/lib/form/control/slide-toggle-form-control.d.ts +11 -0
  84. package/src/lib/form/control/slide-toggle-form-control.js +23 -0
  85. package/src/lib/form/control/slide-toggle-form-control.js.map +1 -0
  86. package/src/lib/form/control/table-select-form-control.d.ts +46 -0
  87. package/src/lib/form/control/table-select-form-control.js +81 -0
  88. package/src/lib/form/control/table-select-form-control.js.map +1 -0
  89. package/src/lib/form/control/textarea-form-control.d.ts +22 -0
  90. package/src/lib/form/control/textarea-form-control.js +52 -0
  91. package/src/lib/form/control/textarea-form-control.js.map +1 -0
  92. package/src/lib/form/control.d.ts +8 -0
  93. package/src/lib/form/control.js +38 -0
  94. package/src/lib/form/control.js.map +1 -0
  95. package/src/lib/form/generate-form-template.d.ts +5 -0
  96. package/src/lib/form/generate-form-template.js +12 -0
  97. package/src/lib/form/generate-form-template.js.map +1 -0
  98. package/src/lib/form/group/base-form-group.d.ts +17 -0
  99. package/src/lib/form/group/base-form-group.js +20 -0
  100. package/src/lib/form/group/base-form-group.js.map +1 -0
  101. package/src/lib/form/group/form-group-kind.d.ts +3 -0
  102. package/src/lib/form/group/form-group-kind.js +8 -0
  103. package/src/lib/form/group/form-group-kind.js.map +1 -0
  104. package/src/lib/form/group/form-group.d.ts +12 -0
  105. package/src/lib/form/group/form-group.js +18 -0
  106. package/src/lib/form/group/form-group.js.map +1 -0
  107. package/src/lib/load-handlebars-template.d.ts +6 -0
  108. package/src/lib/load-handlebars-template.js +36 -0
  109. package/src/lib/load-handlebars-template.js.map +1 -0
  110. package/src/lib/minimum-table-component-options.d.ts +1 -1
  111. package/src/lib/minimum-table-component-options.js +19 -13
  112. package/src/lib/minimum-table-component-options.js.map +1 -1
  113. package/src/lib/minimum-table-options.d.ts +17 -3
  114. package/src/lib/minimum-table-options.js +32 -5
  115. package/src/lib/minimum-table-options.js.map +1 -1
  116. package/src/lib/pipe-option.d.ts +11 -0
  117. package/src/lib/pipe-option.js +75 -0
  118. package/src/lib/pipe-option.js.map +1 -0
  119. package/src/lib/route-component.d.ts +16 -0
  120. package/src/lib/route-component.js +15 -0
  121. package/src/lib/route-component.js.map +1 -0
  122. package/src/lib/table/table-filter-column-rule.js +5 -4
  123. package/src/lib/table/table-filter-column-rule.js.map +1 -1
  124. package/src/lib/table-action.js.map +1 -1
  125. package/src/lib/table-column.d.ts +46 -13
  126. package/src/lib/table-column.js +179 -120
  127. package/src/lib/table-column.js.map +1 -1
  128. package/src/lib/table-options.d.ts +3 -2
  129. package/src/lib/table-options.js +22 -3
  130. package/src/lib/table-options.js.map +1 -1
  131. package/src/lib/table-row-action.d.ts +4 -2
  132. package/src/lib/table-row-action.js +8 -7
  133. package/src/lib/table-row-action.js.map +1 -1
  134. package/src/lib/tree-table-options.d.ts +3 -2
  135. package/src/lib/tree-table-options.js +39 -3
  136. package/src/lib/tree-table-options.js.map +1 -1
  137. package/src/lib/value-option.d.ts +12 -0
  138. package/src/lib/value-option.js +66 -0
  139. package/src/lib/value-option.js.map +1 -0
  140. package/src/schema.json +3013 -0
  141. package/src/schematic-input.schema.json +579 -0
  142. package/src/schematics/abstract-control.schema.json +78 -0
  143. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.hbs +34 -0
  144. package/src/schematics/accordion/accordion-component/index.d.ts +6 -2
  145. package/src/schematics/accordion/accordion-component/index.js +77 -139
  146. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  147. package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
  148. package/src/schematics/accordion/accordion-component/schema.json +1710 -132
  149. package/src/schematics/accordion/accordion-component/template.schema.json +105 -0
  150. package/src/schematics/accordion/accordion-item-component/index.d.ts +9 -4
  151. package/src/schematics/accordion/accordion-item-component/index.js +115 -87
  152. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  153. package/src/schematics/accordion/accordion-item-component/schema.d.ts +2 -2
  154. package/src/schematics/accordion/accordion-item-component/schema.json +1670 -62
  155. package/src/schematics/accordion/accordion-item-component/template.schema.json +32 -0
  156. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
  157. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +32 -62
  158. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  159. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.d.ts +1 -1
  160. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +1158 -72
  161. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +20 -0
  162. package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
  163. package/src/schematics/accordion/item/accordion-item-switch-component/index.js +16 -8
  164. package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
  165. package/src/schematics/accordion/item/accordion-item-switch-component/schema.d.ts +1 -1
  166. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +1640 -178
  167. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +20 -0
  168. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
  169. package/src/schematics/accordion/item/accordion-item-table-component/index.js +9 -56
  170. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  171. package/src/schematics/accordion/item/accordion-item-table-component/schema.d.ts +1 -1
  172. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +1208 -292
  173. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +20 -0
  174. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
  175. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +25 -84
  176. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  177. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.d.ts +1 -1
  178. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +1165 -261
  179. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +20 -0
  180. package/src/schematics/accordion/templates/accordion-header.hbs +10 -0
  181. package/src/schematics/accordion/templates/data-grid-accordion-item.hbs +15 -0
  182. package/src/schematics/accordion/templates/default-accordion-item.hbs +15 -0
  183. package/src/schematics/accordion/templates/switch-accordion-item.hbs +29 -0
  184. package/src/schematics/accordion/templates/table-accordion-item.hbs +15 -0
  185. package/src/schematics/accordion/templates/tree-table-accordion-item.hbs +15 -0
  186. package/src/schematics/accordion-identifier.schema.json +24 -0
  187. package/src/schematics/accordion-item.schema.json +52 -0
  188. package/src/schematics/angular.schema.json +11 -11
  189. package/src/schematics/autocomplete-table-select-form-control.schema.json +96 -0
  190. package/src/schematics/backend.schema.json +13 -0
  191. package/src/schematics/base-accordion-item.schema.json +52 -0
  192. package/src/schematics/base-form-array.schema.json +45 -0
  193. package/src/schematics/base-form-control.schema.json +27 -0
  194. package/src/schematics/base-form-group.schema.json +42 -0
  195. package/src/schematics/button.schema.json +30 -0
  196. package/src/schematics/checkbox-form-control.schema.json +30 -0
  197. package/src/schematics/component.schema.json +16 -0
  198. package/src/schematics/control.schema.json +26 -0
  199. package/src/schematics/css-class.schema.json +34 -0
  200. package/src/schematics/data-grid-accordion-item.schema.json +34 -0
  201. package/src/schematics/data-grid-component/files/component/__componentName__.component.html.hbs +41 -0
  202. package/src/schematics/data-grid-component/index.d.ts +2 -4
  203. package/src/schematics/data-grid-component/index.js +105 -68
  204. package/src/schematics/data-grid-component/index.js.map +1 -1
  205. package/src/schematics/data-grid-component/schema.json +1107 -129
  206. package/src/schematics/data-grid-component/template.schema.json +20 -0
  207. package/src/schematics/data-grid-component/templates/default-data-grid-item.hbs +3 -0
  208. package/src/schematics/data-grid-component/templates/link-data-grid-item.hbs +8 -0
  209. package/src/schematics/data-grid-item.schema.json +50 -0
  210. package/src/schematics/data-grid.schema.json +66 -0
  211. package/src/schematics/dialog-component/schema.json +141 -65
  212. package/src/schematics/dialog-component/template.schema.json +62 -0
  213. package/src/schematics/form/control/autocomplete-table-select-form-control/index.d.ts +10 -0
  214. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +285 -0
  215. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -0
  216. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.d.ts +4 -0
  217. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +539 -0
  218. package/src/schematics/form/control/autocomplete-table-select-form-control/template.schema.json +39 -0
  219. package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
  220. package/src/schematics/form/control/input-form-control/index.js +4 -27
  221. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  222. package/src/schematics/form/control/input-form-control/schema.d.ts +2 -3
  223. package/src/schematics/form/control/input-form-control/schema.json +384 -93
  224. package/src/schematics/form/control/input-form-control/template.schema.json +33 -0
  225. package/src/schematics/form/control/select-form-control/index.d.ts +4 -2
  226. package/src/schematics/form/control/select-form-control/index.js +141 -98
  227. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  228. package/src/schematics/form/control/select-form-control/schema.d.ts +2 -4
  229. package/src/schematics/form/control/select-form-control/schema.json +494 -79
  230. package/src/schematics/form/control/select-form-control/template.schema.json +33 -0
  231. package/src/schematics/form/control/table-select-form-control/index.d.ts +5 -7
  232. package/src/schematics/form/control/table-select-form-control/index.js +209 -143
  233. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  234. package/src/schematics/form/control/table-select-form-control/schema.d.ts +2 -5
  235. package/src/schematics/form/control/table-select-form-control/schema.json +536 -83
  236. package/src/schematics/form/control/table-select-form-control/template.schema.json +39 -0
  237. package/src/schematics/form/form-array/index.d.ts +9 -0
  238. package/src/schematics/form/form-array/index.js +54 -0
  239. package/src/schematics/form/form-array/index.js.map +1 -0
  240. package/src/schematics/form/form-array/schema.d.ts +4 -0
  241. package/src/schematics/form/form-array/schema.json +1026 -0
  242. package/src/schematics/form/form-array/template.schema.json +33 -0
  243. package/src/schematics/form/form-component/files/component/{__componentName__.component.html.template → __componentName__.component.html.hbs} +7 -4
  244. package/src/schematics/form/form-component/index.d.ts +4 -4
  245. package/src/schematics/form/form-component/index.js +23 -23
  246. package/src/schematics/form/form-component/index.js.map +1 -1
  247. package/src/schematics/form/form-component/schema.d.ts +4 -2
  248. package/src/schematics/form/form-component/schema.json +1026 -136
  249. package/src/schematics/form/form-component/template.schema.json +20 -0
  250. package/src/schematics/form/form-control/index.d.ts +6 -6
  251. package/src/schematics/form/form-control/index.js +25 -24
  252. package/src/schematics/form/form-control/index.js.map +1 -1
  253. package/src/schematics/form/form-control/schema.d.ts +2 -4
  254. package/src/schematics/form/form-control/schema.json +855 -67
  255. package/src/schematics/form/form-control/template.schema.json +33 -0
  256. package/src/schematics/form/form-definition/index.d.ts +2 -2
  257. package/src/schematics/form/form-definition/index.js +30 -4
  258. package/src/schematics/form/form-definition/index.js.map +1 -1
  259. package/src/schematics/form/form-definition/schema.d.ts +2 -2
  260. package/src/schematics/form/form-definition/schema.json +1007 -117
  261. package/src/schematics/form/form-definition/template.schema.json +30 -0
  262. package/src/schematics/form/form-group/index.d.ts +9 -0
  263. package/src/schematics/form/form-group/index.js +54 -0
  264. package/src/schematics/form/form-group/index.js.map +1 -0
  265. package/src/schematics/form/form-group/schema.d.ts +4 -0
  266. package/src/schematics/form/form-group/schema.json +1026 -0
  267. package/src/schematics/form/form-group/template.schema.json +33 -0
  268. package/src/schematics/form/templates/autocomplete-table-select-form-control.hbs +34 -0
  269. package/src/schematics/form/templates/checkbox-form-control.hbs +11 -0
  270. package/src/schematics/form/templates/default-form-array.hbs +29 -0
  271. package/src/schematics/form/templates/default-form-control.hbs +2 -0
  272. package/src/schematics/form/templates/default-form-group.hbs +15 -0
  273. package/src/schematics/form/templates/input-form-control.hbs +16 -0
  274. package/src/schematics/form/templates/mat-form-field.hbs +31 -0
  275. package/src/schematics/form/templates/select-form-control.hbs +18 -0
  276. package/src/schematics/form/templates/slide-toggle-form-control.hbs +10 -0
  277. package/src/schematics/form/templates/table-select-form-control.hbs +25 -0
  278. package/src/schematics/form/templates/textarea-form-control.hbs +25 -0
  279. package/src/schematics/form-array.schema.json +40 -0
  280. package/src/schematics/form-component.schema.json +45 -0
  281. package/src/schematics/form-control.schema.json +83 -0
  282. package/src/schematics/form-definition.schema.json +22 -0
  283. package/src/schematics/form-field.schema.json +30 -0
  284. package/src/schematics/form-group.schema.json +40 -0
  285. package/src/schematics/general.schema.json +1 -4
  286. package/src/schematics/header-button.schema.json +42 -0
  287. package/src/schematics/input-form-control.schema.json +59 -0
  288. package/src/schematics/minimum-table.schema.json +76 -0
  289. package/src/schematics/pipe.schema.json +38 -0
  290. package/src/schematics/property.schema.json +38 -0
  291. package/src/schematics/route-component/files/component/__componentName__.component.html.hbs +1 -0
  292. package/src/schematics/route-component/index.d.ts +8 -0
  293. package/src/schematics/route-component/index.js +101 -0
  294. package/src/schematics/route-component/index.js.map +1 -0
  295. package/src/schematics/route-component/schema.d.ts +5 -0
  296. package/src/schematics/route-component/schema.json +154 -0
  297. package/src/schematics/route-component/template.schema.json +20 -0
  298. package/src/schematics/route-component.schema.json +35 -0
  299. package/src/schematics/select-form-control.schema.json +74 -0
  300. package/src/schematics/slide-toggle-form-control.schema.json +30 -0
  301. package/src/schematics/switch-accordion-item.schema.json +82 -0
  302. package/src/schematics/table/action/dialog-table-action/index.js +1 -0
  303. package/src/schematics/table/action/dialog-table-action/index.js.map +1 -1
  304. package/src/schematics/table/action/dialog-table-action/schema.json +234 -119
  305. package/src/schematics/table/action/dialog-table-action/template.schema.json +58 -0
  306. package/src/schematics/table/action/form-table-action/index.d.ts +2 -2
  307. package/src/schematics/table/action/form-table-action/index.js +6 -5
  308. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  309. package/src/schematics/table/action/form-table-action/schema.d.ts +2 -2
  310. package/src/schematics/table/action/form-table-action/schema.json +1132 -138
  311. package/src/schematics/table/action/form-table-action/template.schema.json +75 -0
  312. package/src/schematics/table/action/navigation-table-action/schema.json +218 -80
  313. package/src/schematics/table/action/navigation-table-action/template.schema.json +28 -0
  314. package/src/schematics/table/action/open-api-table-action/schema.json +232 -92
  315. package/src/schematics/table/action/open-api-table-action/template.schema.json +56 -0
  316. package/src/schematics/table/action/operation-table-action/index.js +2 -1
  317. package/src/schematics/table/action/operation-table-action/index.js.map +1 -1
  318. package/src/schematics/table/action/operation-table-action/schema.json +205 -84
  319. package/src/schematics/table/action/operation-table-action/template.schema.json +14 -0
  320. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +2 -2
  321. package/src/schematics/table/header-button/form-table-header-button/index.js +2 -2
  322. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
  323. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +2 -2
  324. package/src/schematics/table/header-button/form-table-header-button/schema.json +1095 -98
  325. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +33 -0
  326. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +167 -71
  327. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +28 -0
  328. package/src/schematics/table/table-action/schema.json +195 -77
  329. package/src/schematics/table/table-action/template.schema.json +30 -0
  330. package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +286 -0
  331. package/src/schematics/table/table-component/index.d.ts +0 -5
  332. package/src/schematics/table/table-component/index.js +20 -33
  333. package/src/schematics/table/table-component/index.js.map +1 -1
  334. package/src/schematics/table/table-component/schema.json +1133 -295
  335. package/src/schematics/table/table-component/template.schema.json +20 -0
  336. package/src/schematics/table/table-header-button/schema.json +145 -63
  337. package/src/schematics/table/table-header-button/template.schema.json +30 -0
  338. package/src/schematics/table/templates/boolean-table-column.hbs +23 -0
  339. package/src/schematics/table/templates/component-table-column.hbs +25 -0
  340. package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +23 -0
  341. package/src/schematics/table/templates/date-table-column.hbs +24 -0
  342. package/src/schematics/table/templates/default-table-column.hbs +23 -0
  343. package/src/schematics/table/templates/icon-table-column.hbs +23 -0
  344. package/src/schematics/table/templates/link-table-column.hbs +23 -0
  345. package/src/schematics/table/templates/mat-column-def.hbs +3 -0
  346. package/src/schematics/table/templates/spinner-table-column.hbs +27 -0
  347. package/src/schematics/table/templates/tree-table-column.hbs +21 -0
  348. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +286 -0
  349. package/src/schematics/table/tree-table-component/index.d.ts +3 -0
  350. package/src/schematics/table/tree-table-component/index.js +30 -9
  351. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  352. package/src/schematics/table/tree-table-component/schema.json +1114 -264
  353. package/src/schematics/table/tree-table-component/template.schema.json +20 -0
  354. package/src/schematics/table-accordion-item.schema.json +41 -0
  355. package/src/schematics/table-action.schema.json +65 -0
  356. package/src/schematics/table-column.schema.json +81 -0
  357. package/src/schematics/table-select-form-control.schema.json +102 -0
  358. package/src/schematics/table.schema.json +58 -0
  359. package/src/schematics/templates/css-class.hbs +1 -0
  360. package/src/schematics/templates/pipe.hbs +4 -0
  361. package/src/schematics/textarea-form-control.schema.json +43 -0
  362. package/src/schematics/tree-component/index.js +2 -1
  363. package/src/schematics/tree-component/index.js.map +1 -1
  364. package/src/schematics/tree-component/schema.json +115 -70
  365. package/src/schematics/tree-component/template.schema.json +36 -0
  366. package/src/schematics/tree-table-accordion-item.schema.json +41 -0
  367. package/src/schematics/tree-table.schema.json +41 -0
  368. package/src/schematics/type.schema.json +35 -0
  369. package/src/schematics/upstream.schema.json +95 -0
  370. package/src/schematics/value.schema.json +26 -0
  371. package/src/template.schema.json +245 -0
  372. package/src/lib/accordion-itme-types.d.ts +0 -8
  373. package/src/lib/accordion-itme-types.js +0 -16
  374. package/src/lib/accordion-itme-types.js.map +0 -1
  375. package/src/lib/form-component-control.d.ts +0 -12
  376. package/src/lib/form-component-control.js +0 -15
  377. package/src/lib/form-component-control.js.map +0 -1
  378. package/src/lib/form-definition-control.d.ts +0 -59
  379. package/src/lib/form-definition-control.js +0 -156
  380. package/src/lib/form-definition-control.js.map +0 -1
  381. package/src/lib/merge-with-column-list.d.ts +0 -3
  382. package/src/lib/merge-with-column-list.js +0 -18
  383. package/src/lib/merge-with-column-list.js.map +0 -1
  384. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.template +0 -94
  385. package/src/schematics/accordion/accordion-component/files/header-component/accordion-header.component.html.template +0 -10
  386. package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +0 -42
  387. package/src/schematics/data-grid-component/files/plain/__componentName__.component.html.template +0 -25
  388. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +0 -299
  389. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +0 -259
@@ -1,226 +1,1688 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/schema",
3
- "$id": "accordion-item-table-component",
4
- "type": "object",
5
- "properties": {
6
- "itemName": {
7
- "alias": "name",
8
- "type": "string",
9
- "description": "The name of the accordion item",
10
- "x-prompt": "Which name should the accordion item module have?"
3
+ "$id": "accordion-item-switch-component-schematic",
4
+ "allOf": [
5
+ {
6
+ "$ref": "#/definitions/angular"
7
+ },
8
+ {
9
+ "$ref": "#/definitions/switchAccordionItem"
10
+ }
11
+ ],
12
+ "definitions": {
13
+ "abstractControl": {
14
+ "allOf": [
15
+ {
16
+ "$ref": "#/definitions/property"
17
+ },
18
+ {
19
+ "type": "object",
20
+ "properties": {
21
+ "name": {
22
+ "type": "string",
23
+ "description": "The name of the control"
24
+ },
25
+ "isArray": {
26
+ "type": "boolean",
27
+ "description": "Whether the control value is an array",
28
+ "default": false
29
+ },
30
+ "state": {
31
+ "type": "string",
32
+ "description": "The initial state of the control"
33
+ },
34
+ "isRequired": {
35
+ "type": "boolean",
36
+ "description": "Whether the control value is required",
37
+ "default": false
38
+ },
39
+ "isReadonly": {
40
+ "type": "boolean",
41
+ "description": "Whether the control value is readonly",
42
+ "default": false
43
+ },
44
+ "isDisabled": {
45
+ "type": "boolean",
46
+ "description": "Whether the control value is disabled",
47
+ "default": false
48
+ },
49
+ "validatorList": {
50
+ "type": "array",
51
+ "items": {
52
+ "type": "string"
53
+ }
54
+ },
55
+ "kind": {
56
+ "type": "string",
57
+ "description": "The kind of the control",
58
+ "default": "default"
59
+ },
60
+ "importList": {
61
+ "type": "array",
62
+ "items": {
63
+ "$ref": "#/definitions/type"
64
+ }
65
+ },
66
+ "template": {
67
+ "type": "string",
68
+ "description": "The template of the control"
69
+ },
70
+ "role": {
71
+ "type": "string",
72
+ "description": "The role of the control",
73
+ "enum": [
74
+ "control",
75
+ "group",
76
+ "array"
77
+ ],
78
+ "default": "control"
79
+ }
80
+ },
81
+ "additionalProperties": true
82
+ }
83
+ ]
84
+ },
85
+ "accordionIdentifier": {
86
+ "type": "object",
87
+ "properties": {
88
+ "property": {
89
+ "$ref": "#/definitions/property"
90
+ },
91
+ "source": {
92
+ "type": "string",
93
+ "enum": [
94
+ "route"
95
+ ]
96
+ }
97
+ },
98
+ "required": [
99
+ "property"
100
+ ]
101
+ },
102
+ "accordionItem": {
103
+ "oneOf": [
104
+ {
105
+ "allOf": [
106
+ {
107
+ "$ref": "#/definitions/baseAccordionItem"
108
+ },
109
+ {
110
+ "type": "object",
111
+ "properties": {
112
+ "kind": {
113
+ "type": "string",
114
+ "const": "default",
115
+ "default": "default"
116
+ }
117
+ }
118
+ }
119
+ ]
120
+ },
121
+ {
122
+ "$ref": "#/definitions/switchAccordionItem"
123
+ },
124
+ {
125
+ "$ref": "#/definitions/tableAccordionItem"
126
+ },
127
+ {
128
+ "$ref": "#/definitions/dataGridAccordionItem"
129
+ },
130
+ {
131
+ "$ref": "#/definitions/treeTableAccordionItem"
132
+ }
133
+ ]
134
+ },
135
+ "angular": {
136
+ "allOf": [
137
+ {
138
+ "$ref": "#/definitions/general"
139
+ },
140
+ {
141
+ "type": "object",
142
+ "properties": {
143
+ "componentName": {
144
+ "type": "string"
145
+ },
146
+ "name": {
147
+ "type": "string"
148
+ },
149
+ "context": {
150
+ "type": "string",
151
+ "description": "The context use to generate proper names for class, files, etc"
152
+ },
153
+ "nestModule": {
154
+ "type": "string",
155
+ "description": "The module name for the table nest operations"
156
+ },
157
+ "controllerName": {
158
+ "type": "string"
159
+ },
160
+ "backend": {
161
+ "$ref": "#/definitions/backend"
162
+ },
163
+ "directory": {
164
+ "type": "string",
165
+ "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"
166
+ },
167
+ "shared": {
168
+ "type": "boolean",
169
+ "description": "Whether the generated code is used across the project",
170
+ "default": false
171
+ },
172
+ "scope": {
173
+ "type": "string"
174
+ },
175
+ "prefix": {
176
+ "type": "string"
177
+ },
178
+ "openApi": {
179
+ "type": "object",
180
+ "additionalProperties": true
181
+ }
182
+ }
183
+ }
184
+ ]
185
+ },
186
+ "autocompleteTableSelectFormControl": {
187
+ "allOf": [
188
+ {
189
+ "$ref": "#/definitions/baseFormControl"
190
+ },
191
+ {
192
+ "type": "object",
193
+ "properties": {
194
+ "formField": {
195
+ "$ref": "#/definitions/formField"
196
+ },
197
+ "kind": {
198
+ "type": "string",
199
+ "const": "autocomplete-table-select"
200
+ },
201
+ "placeholder": {
202
+ "type": "string"
203
+ },
204
+ "columnList": {
205
+ "alias": "column",
206
+ "type": "array",
207
+ "items": {
208
+ "description": "table column name",
209
+ "type": "object",
210
+ "properties": {
211
+ "name": {
212
+ "type": "string",
213
+ "description": "table column name"
214
+ },
215
+ "title": {
216
+ "type": "string",
217
+ "description": "table column label"
218
+ },
219
+ "hasFilter": {
220
+ "type": "boolean",
221
+ "description": "Whether the column has a filter"
222
+ },
223
+ "kind": {
224
+ "type": "string",
225
+ "description": "The kind of data in the column"
226
+ }
227
+ }
228
+ },
229
+ "description": "List of table column names"
230
+ },
231
+ "title": {
232
+ "type": "string",
233
+ "description": "The title of the table select window"
234
+ },
235
+ "toDisplay": {
236
+ "type": "object",
237
+ "properties": {
238
+ "property": {
239
+ "$ref": "#/definitions/property"
240
+ }
241
+ }
242
+ },
243
+ "toValue": {
244
+ "type": "object",
245
+ "properties": {
246
+ "property": {
247
+ "$ref": "#/definitions/property"
248
+ }
249
+ }
250
+ },
251
+ "upstream": {
252
+ "$ref": "#/definitions/upstream"
253
+ },
254
+ "resolver": {
255
+ "type": "object",
256
+ "properties": {
257
+ "upstream": {
258
+ "$ref": "#/definitions/upstream"
259
+ }
260
+ }
261
+ }
262
+ }
263
+ }
264
+ ]
11
265
  },
12
- "project": {
266
+ "backend": {
13
267
  "type": "string",
14
- "description": "The target project where the accordion item module should be added.",
15
- "x-prompt": "To which project should the accordion item module be added?"
268
+ "description": "The backend that should be used to handel data",
269
+ "enum": [
270
+ "none",
271
+ "nestjs",
272
+ "open-api",
273
+ "local"
274
+ ],
275
+ "default": "none"
276
+ },
277
+ "baseAccordionItem": {
278
+ "type": "object",
279
+ "properties": {
280
+ "name": {
281
+ "type": "string"
282
+ },
283
+ "kind": {
284
+ "type": "string"
285
+ },
286
+ "modifiers": {
287
+ "alias": "modifier",
288
+ "type": "array",
289
+ "items": {
290
+ "type": "string"
291
+ },
292
+ "description": "The modifiers to apply to the accordion item type"
293
+ },
294
+ "identifier": {
295
+ "$ref": "#/definitions/accordionIdentifier"
296
+ },
297
+ "title": {
298
+ "type": "string"
299
+ },
300
+ "description": {
301
+ "type": "string"
302
+ },
303
+ "upstream": {
304
+ "$ref": "#/definitions/upstream"
305
+ },
306
+ "propertyList": {
307
+ "alias": "property",
308
+ "type": "array",
309
+ "items": {
310
+ "$ref": "#/definitions/property"
311
+ }
312
+ }
313
+ },
314
+ "required": [
315
+ "name"
316
+ ]
317
+ },
318
+ "baseFormArray": {
319
+ "allOf": [
320
+ {
321
+ "$ref": "#/definitions/abstractControl"
322
+ },
323
+ {
324
+ "type": "object",
325
+ "properties": {
326
+ "controlList": {
327
+ "type": "array",
328
+ "description": "The list of controls in the group",
329
+ "items": {
330
+ "$ref": "#/definitions/control"
331
+ }
332
+ },
333
+ "legend": {
334
+ "type": "string"
335
+ },
336
+ "groupLegend": {
337
+ "type": "string"
338
+ },
339
+ "kind": {
340
+ "type": "string",
341
+ "description": "The kind of the array",
342
+ "const": "default",
343
+ "default": "default"
344
+ },
345
+ "role": {
346
+ "type": "string",
347
+ "const": "array"
348
+ }
349
+ }
350
+ }
351
+ ]
352
+ },
353
+ "baseFormControl": {
354
+ "allOf": [
355
+ {
356
+ "$ref": "#/definitions/abstractControl"
357
+ },
358
+ {
359
+ "type": "object",
360
+ "properties": {
361
+ "label": {
362
+ "type": "string",
363
+ "description": "The label of the control"
364
+ },
365
+ "role": {
366
+ "type": "string",
367
+ "const": "control"
368
+ }
369
+ }
370
+ }
371
+ ]
372
+ },
373
+ "baseFormGroup": {
374
+ "allOf": [
375
+ {
376
+ "$ref": "#/definitions/abstractControl"
377
+ },
378
+ {
379
+ "type": "object",
380
+ "properties": {
381
+ "controlList": {
382
+ "type": "array",
383
+ "description": "The list of controls in the group",
384
+ "items": {
385
+ "$ref": "#/definitions/control"
386
+ }
387
+ },
388
+ "legend": {
389
+ "type": "string"
390
+ },
391
+ "kind": {
392
+ "type": "string",
393
+ "description": "The kind of the group",
394
+ "const": "default",
395
+ "default": "default"
396
+ },
397
+ "role": {
398
+ "type": "string",
399
+ "const": "group"
400
+ }
401
+ }
402
+ }
403
+ ]
404
+ },
405
+ "button": {
406
+ "type": "object",
407
+ "properties": {
408
+ "svgIcon": {
409
+ "type": "string"
410
+ },
411
+ "icon": {
412
+ "type": "string"
413
+ },
414
+ "directiveList": {
415
+ "type": "array",
416
+ "items": {
417
+ "$ref": "#/definitions/type"
418
+ }
419
+ },
420
+ "importList": {
421
+ "type": "array",
422
+ "items": {
423
+ "$ref": "#/definitions/type"
424
+ }
425
+ }
426
+ }
427
+ },
428
+ "checkboxFormControl": {
429
+ "allOf": [
430
+ {
431
+ "$ref": "#/definitions/baseFormControl"
432
+ },
433
+ {
434
+ "type": "object",
435
+ "properties": {
436
+ "kind": {
437
+ "type": "string",
438
+ "const": "checkbox"
439
+ },
440
+ "labelPosition": {
441
+ "type": "string",
442
+ "enum": [
443
+ "before",
444
+ "after"
445
+ ]
446
+ }
447
+ }
448
+ }
449
+ ]
450
+ },
451
+ "control": {
452
+ "oneOf": [
453
+ {
454
+ "$ref": "#/definitions/formGroup"
455
+ },
456
+ {
457
+ "$ref": "#/definitions/formArray"
458
+ },
459
+ {
460
+ "$ref": "#/definitions/formControl"
461
+ }
462
+ ]
463
+ },
464
+ "cssClass": {
465
+ "oneOf": [
466
+ {
467
+ "type": "string"
468
+ },
469
+ {
470
+ "type": "array",
471
+ "items": {
472
+ "type": "string"
473
+ }
474
+ },
475
+ {
476
+ "type": "object",
477
+ "properties": {
478
+ "name": {
479
+ "type": "string"
480
+ }
481
+ }
482
+ },
483
+ {
484
+ "type": "array",
485
+ "items": {
486
+ "type": "object",
487
+ "properties": {
488
+ "name": {
489
+ "type": "string"
490
+ }
491
+ }
492
+ }
493
+ }
494
+ ]
495
+ },
496
+ "dataGrid": {
497
+ "type": "object",
498
+ "properties": {
499
+ "mode": {
500
+ "type": "string",
501
+ "description": "The mode of the form",
502
+ "enum": [
503
+ "form",
504
+ "plain"
505
+ ]
506
+ },
507
+ "collection": {
508
+ "type": "boolean",
509
+ "description": "Whether the data grid is used as collection."
510
+ },
511
+ "title": {
512
+ "type": "string",
513
+ "description": "The title of the data grid card component"
514
+ },
515
+ "subtitle": {
516
+ "type": "string",
517
+ "description": "The subtitle of the data grid card component"
518
+ },
519
+ "itemList": {
520
+ "alias": "item",
521
+ "type": "array",
522
+ "items": {
523
+ "$ref": "#/definitions/dataGridItem"
524
+ }
525
+ },
526
+ "inCard": {
527
+ "type": "boolean",
528
+ "description": "Whether the data grid is used in a card.",
529
+ "default": true
530
+ },
531
+ "upstream": {
532
+ "$ref": "#/definitions/upstream"
533
+ },
534
+ "propertyList": {
535
+ "alias": "property",
536
+ "type": "array",
537
+ "items": {
538
+ "$ref": "#/definitions/property"
539
+ }
540
+ },
541
+ "identifier": {
542
+ "$ref": "#/definitions/accordionIdentifier"
543
+ }
544
+ }
545
+ },
546
+ "dataGridAccordionItem": {
547
+ "allOf": [
548
+ {
549
+ "$ref": "#/definitions/baseAccordionItem"
550
+ },
551
+ {
552
+ "type": "object",
553
+ "properties": {
554
+ "kind": {
555
+ "type": "string",
556
+ "const": "data-grid"
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "type": "object",
562
+ "properties": {
563
+ "dataGrid": {
564
+ "$ref": "#/definitions/dataGrid"
565
+ }
566
+ }
567
+ }
568
+ ]
569
+ },
570
+ "dataGridItem": {
571
+ "type": "object",
572
+ "properties": {
573
+ "name": {
574
+ "type": "string",
575
+ "description": "The name of the data grid item"
576
+ },
577
+ "header": {
578
+ "type": "string",
579
+ "description": "The name of the control"
580
+ },
581
+ "pipeList": {
582
+ "type": "array",
583
+ "items": {
584
+ "$ref": "#/definitions/pipe"
585
+ }
586
+ },
587
+ "formControl": {
588
+ "$ref": "#/definitions/control"
589
+ },
590
+ "template": {
591
+ "type": "string"
592
+ },
593
+ "kind": {
594
+ "type": "string",
595
+ "enum": [
596
+ "default",
597
+ "link"
598
+ ],
599
+ "default": "default"
600
+ },
601
+ "type": {
602
+ "$ref": "#/definitions/type"
603
+ },
604
+ "isArray": {
605
+ "type": "boolean"
606
+ }
607
+ },
608
+ "required": [
609
+ "name"
610
+ ]
611
+ },
612
+ "formArray": {
613
+ "allOf": [
614
+ {
615
+ "type": "object",
616
+ "properties": {
617
+ "role": {
618
+ "type": "string",
619
+ "const": "array"
620
+ }
621
+ }
622
+ },
623
+ {
624
+ "oneOf": [
625
+ {
626
+ "allOf": [
627
+ {
628
+ "$ref": "#/definitions/baseFormArray"
629
+ },
630
+ {
631
+ "type": "object",
632
+ "properties": {
633
+ "kind": {
634
+ "type": "string",
635
+ "const": "default"
636
+ }
637
+ }
638
+ }
639
+ ]
640
+ }
641
+ ]
642
+ }
643
+ ]
644
+ },
645
+ "formControl": {
646
+ "allOf": [
647
+ {
648
+ "type": "object",
649
+ "properties": {
650
+ "role": {
651
+ "type": "string",
652
+ "const": "control",
653
+ "default": "control"
654
+ }
655
+ }
656
+ },
657
+ {
658
+ "oneOf": [
659
+ {
660
+ "allOf": [
661
+ {
662
+ "$ref": "#/definitions/baseFormControl"
663
+ },
664
+ {
665
+ "type": "object",
666
+ "properties": {
667
+ "kind": {
668
+ "type": "string",
669
+ "const": "default"
670
+ }
671
+ }
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "$ref": "#/definitions/inputFormControl"
677
+ },
678
+ {
679
+ "$ref": "#/definitions/selectFormControl"
680
+ },
681
+ {
682
+ "$ref": "#/definitions/checkboxFormControl"
683
+ },
684
+ {
685
+ "$ref": "#/definitions/textareaFormControl"
686
+ },
687
+ {
688
+ "$ref": "#/definitions/tableSelectFormControl"
689
+ },
690
+ {
691
+ "$ref": "#/definitions/slideToggleFormControl"
692
+ },
693
+ {
694
+ "$ref": "#/definitions/autocompleteTableSelectFormControl"
695
+ }
696
+ ]
697
+ }
698
+ ]
699
+ },
700
+ "formField": {
701
+ "type": "object",
702
+ "properties": {
703
+ "label": {
704
+ "type": "string"
705
+ },
706
+ "prefixButton": {
707
+ "$ref": "#/definitions/button"
708
+ },
709
+ "suffixButton": {
710
+ "$ref": "#/definitions/button"
711
+ },
712
+ "hasClearButton": {
713
+ "type": "boolean"
714
+ },
715
+ "cssClass": {
716
+ "$ref": "#/definitions/cssClass"
717
+ }
718
+ }
719
+ },
720
+ "formGroup": {
721
+ "allOf": [
722
+ {
723
+ "type": "object",
724
+ "properties": {
725
+ "role": {
726
+ "type": "string",
727
+ "const": "group"
728
+ }
729
+ }
730
+ },
731
+ {
732
+ "oneOf": [
733
+ {
734
+ "allOf": [
735
+ {
736
+ "$ref": "#/definitions/baseFormGroup"
737
+ },
738
+ {
739
+ "type": "object",
740
+ "properties": {
741
+ "kind": {
742
+ "type": "string",
743
+ "const": "default"
744
+ }
745
+ }
746
+ }
747
+ ]
748
+ }
749
+ ]
750
+ }
751
+ ]
752
+ },
753
+ "general": {
754
+ "type": "object",
755
+ "properties": {
756
+ "project": {
757
+ "type": "string",
758
+ "description": "Project name where the files should be generated"
759
+ },
760
+ "feature": {
761
+ "type": "string",
762
+ "description": "Feature name where the files should be generated"
763
+ },
764
+ "overwrite": {
765
+ "anyOf": [
766
+ {
767
+ "type": "boolean"
768
+ },
769
+ {
770
+ "type": "array",
771
+ "items": {
772
+ "type": "string"
773
+ }
774
+ }
775
+ ],
776
+ "description": "Overwrite existing files",
777
+ "default": false
778
+ },
779
+ "overwriteHtml": {
780
+ "type": "boolean",
781
+ "default": false
782
+ },
783
+ "replace": {
784
+ "type": "boolean",
785
+ "default": false
786
+ }
787
+ }
788
+ },
789
+ "headerButton": {
790
+ "type": "object",
791
+ "properties": {
792
+ "permission": {
793
+ "type": "string"
794
+ },
795
+ "icon": {
796
+ "type": "string"
797
+ },
798
+ "svgIcon": {
799
+ "type": "string"
800
+ },
801
+ "refresh": {
802
+ "type": "boolean",
803
+ "description": "Whether the table action should refresh the table after execution",
804
+ "default": false
805
+ },
806
+ "confirm": {
807
+ "type": "boolean",
808
+ "description": "Whether the table action should confirm before execution",
809
+ "default": false
810
+ },
811
+ "tooltip": {
812
+ "type": "string",
813
+ "description": "The tooltip for the table action"
814
+ },
815
+ "errorMessage": {
816
+ "type": "string",
817
+ "description": "The error message for the table action"
818
+ },
819
+ "successMessage": {
820
+ "type": "string",
821
+ "description": "The success message for the table action"
822
+ },
823
+ "options": {
824
+ "type": "object",
825
+ "additionalProperties": true
826
+ }
827
+ }
828
+ },
829
+ "inputFormControl": {
830
+ "allOf": [
831
+ {
832
+ "$ref": "#/definitions/baseFormControl"
833
+ },
834
+ {
835
+ "type": "object",
836
+ "properties": {
837
+ "kind": {
838
+ "type": "string",
839
+ "const": "input"
840
+ },
841
+ "formField": {
842
+ "$ref": "#/definitions/formField"
843
+ },
844
+ "inputType": {
845
+ "type": "string",
846
+ "enum": [
847
+ "text",
848
+ "password",
849
+ "email",
850
+ "number",
851
+ "tel",
852
+ "url",
853
+ "checkbox",
854
+ "color",
855
+ "date",
856
+ "time",
857
+ "datetime-local",
858
+ "file",
859
+ "hidden",
860
+ "image",
861
+ "month",
862
+ "radio",
863
+ "reset",
864
+ "button",
865
+ "search",
866
+ "submit",
867
+ "week",
868
+ "range"
869
+ ]
870
+ },
871
+ "placeholder": {
872
+ "type": "string"
873
+ }
874
+ }
875
+ }
876
+ ]
877
+ },
878
+ "minimumTable": {
879
+ "type": "object",
880
+ "properties": {
881
+ "propertyList": {
882
+ "alias": "property",
883
+ "type": "array",
884
+ "items": {
885
+ "$ref": "#/definitions/property"
886
+ }
887
+ },
888
+ "upstream": {
889
+ "$ref": "#/definitions/upstream"
890
+ },
891
+ "columnList": {
892
+ "alias": "column",
893
+ "type": "array",
894
+ "items": {
895
+ "$ref": "#/definitions/tableColumn"
896
+ },
897
+ "description": "List of table column names"
898
+ },
899
+ "actionList": {
900
+ "alias": "action",
901
+ "type": "array",
902
+ "items": {
903
+ "$ref": "#/definitions/tableAction"
904
+ }
905
+ },
906
+ "headerButton": {
907
+ "$ref": "#/definitions/headerButton"
908
+ },
909
+ "modifiers": {
910
+ "alias": "modifier",
911
+ "type": "array",
912
+ "items": {
913
+ "type": "string"
914
+ },
915
+ "description": "The table modifiers"
916
+ },
917
+ "cssClass": {
918
+ "$ref": "#/definitions/cssClass"
919
+ },
920
+ "identifier": {
921
+ "$ref": "#/definitions/accordionIdentifier"
922
+ },
923
+ "sortable": {
924
+ "type": "boolean",
925
+ "description": "Whether the table is sortable"
926
+ }
927
+ }
928
+ },
929
+ "pipe": {
930
+ "oneOf": [
931
+ {
932
+ "type": "string"
933
+ },
934
+ {
935
+ "allOf": [
936
+ {
937
+ "$ref": "#/definitions/type"
938
+ },
939
+ {
940
+ "type": "object",
941
+ "properties": {
942
+ "argumentList": {
943
+ "type": "array",
944
+ "items": {
945
+ "$ref": "#/definitions/value"
946
+ }
947
+ }
948
+ },
949
+ "required": [
950
+ "name"
951
+ ]
952
+ }
953
+ ]
954
+ }
955
+ ]
956
+ },
957
+ "property": {
958
+ "oneOf": [
959
+ {
960
+ "type": "string"
961
+ },
962
+ {
963
+ "type": "object",
964
+ "properties": {
965
+ "name": {
966
+ "type": "string"
967
+ },
968
+ "type": {
969
+ "$ref": "#/definitions/type"
970
+ },
971
+ "isArray": {
972
+ "type": "boolean"
973
+ },
974
+ "isRequired": {
975
+ "type": "boolean"
976
+ },
977
+ "source": {
978
+ "type": "string"
979
+ },
980
+ "memberList": {
981
+ "type": "array",
982
+ "items": {
983
+ "additionalProperties": true
984
+ }
985
+ }
986
+ }
987
+ }
988
+ ]
989
+ },
990
+ "selectFormControl": {
991
+ "allOf": [
992
+ {
993
+ "$ref": "#/definitions/baseFormControl"
994
+ },
995
+ {
996
+ "type": "object",
997
+ "properties": {
998
+ "formField": {
999
+ "$ref": "#/definitions/formField"
1000
+ },
1001
+ "kind": {
1002
+ "type": "string",
1003
+ "const": "select"
1004
+ },
1005
+ "upstream": {
1006
+ "$ref": "#/definitions/upstream"
1007
+ },
1008
+ "optionList": {
1009
+ "type": "array",
1010
+ "items": {
1011
+ "type": "object",
1012
+ "properties": {
1013
+ "display": {
1014
+ "type": "string"
1015
+ },
1016
+ "value": {
1017
+ "oneOf": [
1018
+ {
1019
+ "type": "string"
1020
+ },
1021
+ {
1022
+ "type": "number"
1023
+ },
1024
+ {
1025
+ "type": "boolean"
1026
+ },
1027
+ {
1028
+ "type": "object",
1029
+ "additionalProperties": true
1030
+ }
1031
+ ]
1032
+ }
1033
+ }
1034
+ }
1035
+ },
1036
+ "backend": {
1037
+ "$ref": "#/definitions/backend"
1038
+ },
1039
+ "multiple": {
1040
+ "alias": "multi",
1041
+ "type": "boolean",
1042
+ "description": "Whether the select form control is multiple mode"
1043
+ }
1044
+ }
1045
+ }
1046
+ ]
1047
+ },
1048
+ "slideToggleFormControl": {
1049
+ "allOf": [
1050
+ {
1051
+ "$ref": "#/definitions/baseFormControl"
1052
+ },
1053
+ {
1054
+ "type": "object",
1055
+ "properties": {
1056
+ "kind": {
1057
+ "type": "string",
1058
+ "const": "slide-toggle"
1059
+ },
1060
+ "labelPosition": {
1061
+ "type": "string",
1062
+ "enum": [
1063
+ "before",
1064
+ "after"
1065
+ ]
1066
+ }
1067
+ }
1068
+ }
1069
+ ]
1070
+ },
1071
+ "switchAccordionItem": {
1072
+ "allOf": [
1073
+ {
1074
+ "$ref": "#/definitions/baseAccordionItem"
1075
+ },
1076
+ {
1077
+ "type": "object",
1078
+ "properties": {
1079
+ "kind": {
1080
+ "type": "string",
1081
+ "const": "switch"
1082
+ },
1083
+ "switch": {
1084
+ "type": "object",
1085
+ "properties": {
1086
+ "property": {
1087
+ "$ref": "#/definitions/property"
1088
+ },
1089
+ "defaultCase": {
1090
+ "type": "object",
1091
+ "properties": {
1092
+ "itemList": {
1093
+ "alias": "item",
1094
+ "type": "array",
1095
+ "items": {
1096
+ "$ref": "#/definitions/accordionItem"
1097
+ },
1098
+ "description": "The list of accordion expansion panels"
1099
+ }
1100
+ },
1101
+ "required": [
1102
+ "itemList"
1103
+ ]
1104
+ },
1105
+ "case": {
1106
+ "type": "array",
1107
+ "items": {
1108
+ "type": "object",
1109
+ "properties": {
1110
+ "test": {
1111
+ "anyOf": [
1112
+ {
1113
+ "type": "string"
1114
+ },
1115
+ {
1116
+ "type": "number"
1117
+ },
1118
+ {
1119
+ "type": "boolean"
1120
+ }
1121
+ ]
1122
+ },
1123
+ "itemList": {
1124
+ "alias": "item",
1125
+ "type": "array",
1126
+ "items": {
1127
+ "$ref": "#/definitions/accordionItem"
1128
+ },
1129
+ "description": "The list of accordion expansion panels"
1130
+ }
1131
+ },
1132
+ "required": [
1133
+ "test",
1134
+ "itemList"
1135
+ ]
1136
+ }
1137
+ }
1138
+ },
1139
+ "required": [
1140
+ "property"
1141
+ ]
1142
+ }
1143
+ }
1144
+ }
1145
+ ]
1146
+ },
1147
+ "table": {
1148
+ "allOf": [
1149
+ {
1150
+ "$ref": "#/definitions/minimumTable"
1151
+ },
1152
+ {
1153
+ "type": "object",
1154
+ "properties": {
1155
+ "tableMethod": {
1156
+ "$ref": "#/definitions/type"
1157
+ },
1158
+ "openApi": {
1159
+ "type": "object",
1160
+ "properties": {
1161
+ "operationId": {
1162
+ "type": "string",
1163
+ "description": "The operationId for the open api operation"
1164
+ },
1165
+ "adapter": {
1166
+ "$ref": "#/definitions/type"
1167
+ }
1168
+ },
1169
+ "required": [
1170
+ "operationId"
1171
+ ]
1172
+ },
1173
+ "modifiers": {
1174
+ "alias": "modifier",
1175
+ "type": "array",
1176
+ "items": {
1177
+ "type": "string",
1178
+ "enum": [
1179
+ "navigation-back-header",
1180
+ "without-title",
1181
+ "show-archived-slide",
1182
+ "with-header"
1183
+ ]
1184
+ },
1185
+ "description": "The table modifiers"
1186
+ },
1187
+ "selectColumn": {
1188
+ "type": "boolean",
1189
+ "description": "Whether to add a select column to the table"
1190
+ }
1191
+ }
1192
+ }
1193
+ ]
1194
+ },
1195
+ "tableAccordionItem": {
1196
+ "allOf": [
1197
+ {
1198
+ "$ref": "#/definitions/baseAccordionItem"
1199
+ },
1200
+ {
1201
+ "type": "object",
1202
+ "properties": {
1203
+ "kind": {
1204
+ "type": "string",
1205
+ "const": "table"
1206
+ },
1207
+ "modifiers": {
1208
+ "alias": "modifier",
1209
+ "type": "array",
1210
+ "items": {
1211
+ "type": "string",
1212
+ "enum": [
1213
+ "navigation-back-header",
1214
+ "without-title"
1215
+ ]
1216
+ },
1217
+ "description": "The table modifiers"
1218
+ },
1219
+ "table": {
1220
+ "$ref": "#/definitions/table"
1221
+ }
1222
+ }
1223
+ }
1224
+ ]
1225
+ },
1226
+ "tableAction": {
1227
+ "type": "object",
1228
+ "properties": {
1229
+ "type": {
1230
+ "type": "string"
1231
+ },
1232
+ "refresh": {
1233
+ "type": "boolean"
1234
+ },
1235
+ "confirm": {
1236
+ "type": "boolean"
1237
+ },
1238
+ "tooltip": {
1239
+ "type": "string"
1240
+ },
1241
+ "errorMessage": {
1242
+ "type": "string"
1243
+ },
1244
+ "successMessage": {
1245
+ "type": "string"
1246
+ },
1247
+ "priority": {
1248
+ "type": "number"
1249
+ },
1250
+ "checkFunction": {
1251
+ "type": "string"
1252
+ },
1253
+ "inHeader": {
1254
+ "type": "boolean"
1255
+ },
1256
+ "role": {
1257
+ "type": "string"
1258
+ },
1259
+ "icon": {
1260
+ "type": "string"
1261
+ },
1262
+ "svgIcon": {
1263
+ "type": "string"
1264
+ },
1265
+ "permission": {
1266
+ "type": "string"
1267
+ },
1268
+ "color": {
1269
+ "type": "string",
1270
+ "description": "Value for the color input of the mat-button / mat-icon component"
1271
+ },
1272
+ "cssClass": {
1273
+ "$ref": "#/definitions/cssClass"
1274
+ },
1275
+ "options": {
1276
+ "type": "object",
1277
+ "additionalProperties": true
1278
+ }
1279
+ },
1280
+ "required": [
1281
+ "type"
1282
+ ]
16
1283
  },
17
- "feature": {
18
- "type": "string",
19
- "description": "The feature name where the accordion item module should be added.",
20
- "x-prompt": "To which feature should the accordion item module be added?"
1284
+ "tableColumn": {
1285
+ "type": "object",
1286
+ "properties": {
1287
+ "name": {
1288
+ "type": "string"
1289
+ },
1290
+ "type": {
1291
+ "$ref": "#/definitions/type"
1292
+ },
1293
+ "kind": {
1294
+ "type": "string"
1295
+ },
1296
+ "modifiers": {
1297
+ "type": "array",
1298
+ "items": {
1299
+ "type": "string"
1300
+ }
1301
+ },
1302
+ "template": {
1303
+ "type": "string"
1304
+ },
1305
+ "pipeList": {
1306
+ "type": "array",
1307
+ "items": {
1308
+ "$ref": "#/definitions/pipe"
1309
+ }
1310
+ },
1311
+ "hasFilter": {
1312
+ "type": "boolean"
1313
+ },
1314
+ "sortable": {
1315
+ "type": "boolean"
1316
+ },
1317
+ "nowrap": {
1318
+ "type": "boolean"
1319
+ },
1320
+ "cssClass": {
1321
+ "$ref": "#/definitions/cssClass"
1322
+ },
1323
+ "title": {
1324
+ "type": "string"
1325
+ },
1326
+ "propertyPath": {
1327
+ "type": "string"
1328
+ },
1329
+ "hidden": {
1330
+ "type": "boolean"
1331
+ },
1332
+ "active": {
1333
+ "type": "boolean"
1334
+ },
1335
+ "inactive": {
1336
+ "type": "boolean"
1337
+ },
1338
+ "show": {
1339
+ "type": "boolean"
1340
+ },
1341
+ "filterControl": {
1342
+ "$ref": "#/definitions/formControl"
1343
+ }
1344
+ },
1345
+ "required": [
1346
+ "name"
1347
+ ]
21
1348
  },
22
- "accordionName": {
23
- "type": "string",
24
- "description": "The name of the accordion module where the item should be added.",
25
- "x-prompt": "To which accordion module should the accordion item module be added?"
1349
+ "tableSelectFormControl": {
1350
+ "allOf": [
1351
+ {
1352
+ "$ref": "#/definitions/baseFormControl"
1353
+ },
1354
+ {
1355
+ "type": "object",
1356
+ "properties": {
1357
+ "formField": {
1358
+ "$ref": "#/definitions/formField"
1359
+ },
1360
+ "kind": {
1361
+ "type": "string",
1362
+ "const": "table-select"
1363
+ },
1364
+ "placeholder": {
1365
+ "type": "string"
1366
+ },
1367
+ "columnList": {
1368
+ "alias": "column",
1369
+ "type": "array",
1370
+ "items": {
1371
+ "description": "table column name",
1372
+ "type": "object",
1373
+ "properties": {
1374
+ "name": {
1375
+ "type": "string",
1376
+ "description": "table column name"
1377
+ },
1378
+ "title": {
1379
+ "type": "string",
1380
+ "description": "table column label"
1381
+ },
1382
+ "hasFilter": {
1383
+ "type": "boolean",
1384
+ "description": "Whether the column has a filter"
1385
+ },
1386
+ "kind": {
1387
+ "type": "string",
1388
+ "description": "The kind of data in the column"
1389
+ }
1390
+ }
1391
+ },
1392
+ "description": "List of table column names"
1393
+ },
1394
+ "title": {
1395
+ "type": "string",
1396
+ "description": "The title of the table select window"
1397
+ },
1398
+ "toDisplay": {
1399
+ "type": "object",
1400
+ "properties": {
1401
+ "property": {
1402
+ "$ref": "#/definitions/property"
1403
+ }
1404
+ }
1405
+ },
1406
+ "toValue": {
1407
+ "type": "object",
1408
+ "properties": {
1409
+ "property": {
1410
+ "$ref": "#/definitions/property"
1411
+ }
1412
+ }
1413
+ },
1414
+ "upstream": {
1415
+ "$ref": "#/definitions/upstream"
1416
+ },
1417
+ "resolver": {
1418
+ "type": "object",
1419
+ "properties": {
1420
+ "upstream": {
1421
+ "$ref": "#/definitions/upstream"
1422
+ }
1423
+ }
1424
+ },
1425
+ "identifier": {
1426
+ "$ref": "#/definitions/accordionIdentifier"
1427
+ }
1428
+ }
1429
+ }
1430
+ ]
26
1431
  },
27
- "shared": {
28
- "type": "boolean",
29
- "default": false,
30
- "description": "Whether the item is based of a shared component"
1432
+ "textareaFormControl": {
1433
+ "allOf": [
1434
+ {
1435
+ "$ref": "#/definitions/baseFormControl"
1436
+ },
1437
+ {
1438
+ "type": "object",
1439
+ "properties": {
1440
+ "formField": {
1441
+ "$ref": "#/definitions/formField"
1442
+ },
1443
+ "kind": {
1444
+ "type": "string",
1445
+ "const": "textarea"
1446
+ },
1447
+ "placeholder": {
1448
+ "type": "string"
1449
+ },
1450
+ "autosize": {
1451
+ "type": "object",
1452
+ "properties": {
1453
+ "minRows": {
1454
+ "type": "number"
1455
+ },
1456
+ "maxRows": {
1457
+ "type": "number"
1458
+ }
1459
+ }
1460
+ }
1461
+ }
1462
+ }
1463
+ ]
31
1464
  },
32
- "overwrite": {
33
- "anyOf": [
1465
+ "treeTable": {
1466
+ "allOf": [
34
1467
  {
35
- "type": "boolean"
1468
+ "$ref": "#/definitions/minimumTable"
36
1469
  },
37
1470
  {
38
- "type": "array",
39
- "items": {
40
- "type": "string"
1471
+ "type": "object",
1472
+ "properties": {
1473
+ "modifiers": {
1474
+ "alias": "modifier",
1475
+ "type": "array",
1476
+ "items": {
1477
+ "type": "string",
1478
+ "enum": [
1479
+ "navigation-back-header",
1480
+ "without-title",
1481
+ "with-header"
1482
+ ]
1483
+ },
1484
+ "description": "The table modifiers"
1485
+ },
1486
+ "tableRootMethod": {
1487
+ "$ref": "#/definitions/type"
1488
+ },
1489
+ "tableChildMethod": {
1490
+ "$ref": "#/definitions/type"
1491
+ }
41
1492
  }
42
1493
  }
43
1494
  ],
44
- "description": "Overwrite existing files",
45
- "default": false
1495
+ "definitions": {
1496
+ "minimumTable": {
1497
+ "ref": "./minimum-table.schema.json"
1498
+ }
1499
+ }
46
1500
  },
47
- "switch": {
48
- "type": "object",
49
- "properties": {
50
- "property": {
1501
+ "treeTableAccordionItem": {
1502
+ "allOf": [
1503
+ {
1504
+ "$ref": "#/definitions/baseAccordionItem"
1505
+ },
1506
+ {
1507
+ "type": "object",
1508
+ "properties": {
1509
+ "kind": {
1510
+ "type": "string",
1511
+ "const": "tree-table"
1512
+ },
1513
+ "modifiers": {
1514
+ "alias": "modifier",
1515
+ "type": "array",
1516
+ "items": {
1517
+ "type": "string",
1518
+ "enum": [
1519
+ "navigation-back-header",
1520
+ "without-title"
1521
+ ]
1522
+ },
1523
+ "description": "The table modifiers"
1524
+ },
1525
+ "table": {
1526
+ "$ref": "#/definitions/treeTable"
1527
+ }
1528
+ }
1529
+ }
1530
+ ]
1531
+ },
1532
+ "type": {
1533
+ "oneOf": [
1534
+ {
1535
+ "type": "string"
1536
+ },
1537
+ {
51
1538
  "type": "object",
52
1539
  "properties": {
53
1540
  "name": {
54
1541
  "type": "string"
55
1542
  },
56
- "type": {
1543
+ "isTypeOnly": {
1544
+ "type": "boolean"
1545
+ },
1546
+ "moduleSpecifier": {
1547
+ "type": "string"
1548
+ },
1549
+ "namedImport": {
1550
+ "type": "string"
1551
+ },
1552
+ "namespaceImport": {
1553
+ "type": "string"
1554
+ },
1555
+ "defaultImport": {
1556
+ "type": "string"
1557
+ }
1558
+ },
1559
+ "required": [
1560
+ "name"
1561
+ ]
1562
+ }
1563
+ ]
1564
+ },
1565
+ "upstream": {
1566
+ "oneOf": [
1567
+ {
1568
+ "type": "object",
1569
+ "properties": {
1570
+ "kind": {
1571
+ "type": "string",
1572
+ "enum": [
1573
+ "open-api"
1574
+ ]
1575
+ },
1576
+ "operationId": {
1577
+ "type": "string"
1578
+ },
1579
+ "scope": {
1580
+ "type": "string"
1581
+ },
1582
+ "mapper": {
57
1583
  "oneOf": [
58
- {
59
- "type": "string"
60
- },
61
1584
  {
62
1585
  "type": "object",
63
1586
  "properties": {
64
- "name": {
1587
+ "kind": {
1588
+ "type": "string",
1589
+ "const": "paged"
1590
+ },
1591
+ "pageIndex": {
65
1592
  "type": "string"
66
1593
  },
67
- "isTypeOnly": {
68
- "type": "boolean"
1594
+ "pageSize": {
1595
+ "type": "string"
69
1596
  },
70
- "moduleSpecifier": {
1597
+ "sortBy": {
71
1598
  "type": "string"
72
1599
  },
73
- "namedImport": {
1600
+ "sortDirection": {
74
1601
  "type": "string"
75
1602
  },
76
- "namespaceImport": {
1603
+ "list": {
77
1604
  "type": "string"
78
1605
  },
79
- "defaultImport": {
1606
+ "total": {
80
1607
  "type": "string"
1608
+ },
1609
+ "filter": {
1610
+ "type": "object",
1611
+ "properties": {
1612
+ "eq": {
1613
+ "type": "string"
1614
+ },
1615
+ "join": {
1616
+ "type": "string"
1617
+ }
1618
+ }
81
1619
  }
82
- },
83
- "required": [
84
- "name"
85
- ]
1620
+ }
1621
+ },
1622
+ {
1623
+ "type": "object",
1624
+ "properties": {
1625
+ "kind": {
1626
+ "type": "string",
1627
+ "const": "options"
1628
+ },
1629
+ "toFunction": {
1630
+ "type": "string",
1631
+ "enum": [
1632
+ "ToOptions",
1633
+ "ToOptionsFromObject"
1634
+ ]
1635
+ },
1636
+ "toValue": {
1637
+ "type": "string"
1638
+ },
1639
+ "toDisplay": {
1640
+ "type": "string"
1641
+ }
1642
+ }
1643
+ },
1644
+ {
1645
+ "type": "object",
1646
+ "properties": {
1647
+ "kind": {
1648
+ "type": "string",
1649
+ "const": "resolve"
1650
+ },
1651
+ "value": {
1652
+ "type": "string"
1653
+ }
1654
+ }
86
1655
  }
87
1656
  ]
88
1657
  }
89
1658
  },
90
1659
  "required": [
91
- "name"
1660
+ "kind",
1661
+ "operationId"
92
1662
  ]
1663
+ }
1664
+ ]
1665
+ },
1666
+ "value": {
1667
+ "oneOf": [
1668
+ {
1669
+ "type": "string"
93
1670
  },
94
- "defaultCase": {
1671
+ {
95
1672
  "type": "object",
96
1673
  "properties": {
97
- "itemList": {
98
- "alias": "item",
99
- "type": "array",
100
- "items": {
101
- "oneOf": [
102
- {
103
- "type": "string"
104
- },
105
- {
106
- "type": "object",
107
- "properties": {
108
- "name": {
109
- "type": "string"
110
- },
111
- "type": {
112
- "type": "string",
113
- "enum": [
114
- "panel",
115
- "table",
116
- "data-grid",
117
- "data-grid-collection",
118
- "tree-table",
119
- "switch"
120
- ]
121
- },
122
- "modifiers": {
123
- "type": "array",
124
- "default": [],
125
- "items": {
126
- "type": "string"
127
- }
128
- },
129
- "title": {
130
- "type": "string"
131
- },
132
- "description": {
133
- "type": "string"
134
- }
135
- },
136
- "additionalProperties": true,
137
- "required": ["name"]
138
- }
139
- ],
140
- "description": "The name of the accordion expansion panel"
141
- },
142
- "description": "The list of accordion expansion panels"
1674
+ "type": {
1675
+ "$ref": "#/definitions/type"
1676
+ },
1677
+ "value": {
1678
+ "type": "string"
143
1679
  }
144
1680
  },
145
- "required": ["itemList"]
146
- },
147
- "case": {
148
- "type": "array",
149
- "items": {
150
- "type": "object",
151
- "properties": {
152
- "test": {
153
- "anyOf": [
154
- {
155
- "type": "string"
156
- },
157
- {
158
- "type": "number"
159
- },
160
- {
161
- "type": "boolean"
162
- }
163
- ]
164
- },
165
- "itemList": {
166
- "alias": "item",
167
- "type": "array",
168
- "items": {
169
- "oneOf": [
170
- {
171
- "type": "string"
172
- },
173
- {
174
- "type": "object",
175
- "properties": {
176
- "name": {
177
- "type": "string"
178
- },
179
- "type": {
180
- "type": "string",
181
- "enum": [
182
- "panel",
183
- "table",
184
- "data-grid",
185
- "data-grid-collection",
186
- "tree-table",
187
- "switch"
188
- ]
189
- },
190
- "modifiers": {
191
- "type": "array",
192
- "default": [],
193
- "items": {
194
- "type": "string"
195
- }
196
- },
197
- "title": {
198
- "type": "string"
199
- },
200
- "description": {
201
- "type": "string"
202
- }
203
- },
204
- "additionalProperties": true,
205
- "required": ["name"]
206
- }
207
- ],
208
- "description": "The name of the accordion expansion panel"
209
- },
210
- "description": "The list of accordion expansion panels"
211
- }
212
- },
213
- "required": ["test", "itemList"]
214
- }
1681
+ "required": [
1682
+ "value"
1683
+ ]
215
1684
  }
216
- },
217
- "required": ["property", "case"]
1685
+ ]
218
1686
  }
219
- },
220
- "required": [
221
- "itemName",
222
- "project",
223
- "feature",
224
- "accordionName"
225
- ]
226
- }
1687
+ }
1688
+ }