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

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 (332) hide show
  1. package/CHANGELOG.md +159 -0
  2. package/README.md +1 -1
  3. package/collection.json +10 -0
  4. package/package.json +11 -9
  5. package/src/lib/accordion-header.d.ts +5 -0
  6. package/src/lib/accordion-header.js +9 -3
  7. package/src/lib/accordion-header.js.map +1 -1
  8. package/src/lib/accordion-identifier.d.ts +4 -0
  9. package/src/lib/accordion-identifier.js.map +1 -1
  10. package/src/lib/accordion-item.d.ts +25 -17
  11. package/src/lib/accordion-item.js +72 -33
  12. package/src/lib/accordion-item.js.map +1 -1
  13. package/src/lib/accordion-itme-kinds.d.ts +8 -0
  14. package/src/lib/accordion-itme-kinds.js +16 -0
  15. package/src/lib/accordion-itme-kinds.js.map +1 -0
  16. package/src/lib/coerce-accordion-component.js +7 -3
  17. package/src/lib/coerce-accordion-component.js.map +1 -1
  18. package/src/lib/coerce-accordion-item-table-component.js +1 -1
  19. package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
  20. package/src/lib/coerce-form-component.js +17 -2
  21. package/src/lib/coerce-form-component.js.map +1 -1
  22. package/src/lib/coerce-minimum-table-component.js +9 -3
  23. package/src/lib/coerce-minimum-table-component.js.map +1 -1
  24. package/src/lib/coerce-tree-table-component.js +16 -0
  25. package/src/lib/coerce-tree-table-component.js.map +1 -1
  26. package/src/lib/data-grid-item.d.ts +46 -11
  27. package/src/lib/data-grid-item.js +81 -6
  28. package/src/lib/data-grid-item.js.map +1 -1
  29. package/src/lib/data-grid-mode.d.ts +4 -0
  30. package/src/lib/data-grid-mode.js +9 -0
  31. package/src/lib/data-grid-mode.js.map +1 -0
  32. package/src/lib/data-grid-options.d.ts +12 -5
  33. package/src/lib/data-grid-options.js +43 -13
  34. package/src/lib/data-grid-options.js.map +1 -1
  35. package/src/lib/form/abstract-control.d.ts +29 -0
  36. package/src/lib/form/abstract-control.js +37 -0
  37. package/src/lib/form/abstract-control.js.map +1 -0
  38. package/src/lib/form/array/base-form-array.d.ts +18 -0
  39. package/src/lib/form/array/base-form-array.js +40 -0
  40. package/src/lib/form/array/base-form-array.js.map +1 -0
  41. package/src/lib/form/array/form-array-kind.d.ts +3 -0
  42. package/src/lib/form/array/form-array-kind.js +8 -0
  43. package/src/lib/form/array/form-array-kind.js.map +1 -0
  44. package/src/lib/form/array/form-array.d.ts +12 -0
  45. package/src/lib/form/array/form-array.js +18 -0
  46. package/src/lib/form/array/form-array.js.map +1 -0
  47. package/src/lib/form/coerce-control-component-imports.d.ts +3 -0
  48. package/src/lib/form/coerce-control-component-imports.js +18 -0
  49. package/src/lib/form/coerce-control-component-imports.js.map +1 -0
  50. package/src/lib/form/control/base-form-control.d.ts +14 -0
  51. package/src/lib/form/control/base-form-control.js +19 -0
  52. package/src/lib/form/control/base-form-control.js.map +1 -0
  53. package/src/lib/form/control/checkbox-form-control.d.ts +11 -0
  54. package/src/lib/form/control/checkbox-form-control.js +23 -0
  55. package/src/lib/form/control/checkbox-form-control.js.map +1 -0
  56. package/src/lib/form/control/form-control-kind.d.ts +8 -0
  57. package/src/lib/form/control/form-control-kind.js +13 -0
  58. package/src/lib/form/control/form-control-kind.js.map +1 -0
  59. package/src/lib/form/control/form-control.d.ts +18 -0
  60. package/src/lib/form/control/form-control.js +40 -0
  61. package/src/lib/form/control/form-control.js.map +1 -0
  62. package/src/lib/form/control/form-field-form-control.d.ts +33 -0
  63. package/src/lib/form/control/form-field-form-control.js +76 -0
  64. package/src/lib/form/control/form-field-form-control.js.map +1 -0
  65. package/src/lib/form/control/input-form-control.d.ts +14 -0
  66. package/src/lib/form/control/input-form-control.js +71 -0
  67. package/src/lib/form/control/input-form-control.js.map +1 -0
  68. package/src/lib/form/control/select-form-control.d.ts +18 -0
  69. package/src/lib/form/control/select-form-control.js +29 -0
  70. package/src/lib/form/control/select-form-control.js.map +1 -0
  71. package/src/lib/form/control/slide-toggle-form-control.d.ts +11 -0
  72. package/src/lib/form/control/slide-toggle-form-control.js +23 -0
  73. package/src/lib/form/control/slide-toggle-form-control.js.map +1 -0
  74. package/src/lib/form/control/table-select-form-control.d.ts +43 -0
  75. package/src/lib/form/control/table-select-form-control.js +69 -0
  76. package/src/lib/form/control/table-select-form-control.js.map +1 -0
  77. package/src/lib/form/control.d.ts +8 -0
  78. package/src/lib/form/control.js +38 -0
  79. package/src/lib/form/control.js.map +1 -0
  80. package/src/lib/form/generate-form-template.d.ts +5 -0
  81. package/src/lib/form/generate-form-template.js +12 -0
  82. package/src/lib/form/generate-form-template.js.map +1 -0
  83. package/src/lib/form/group/base-form-group.d.ts +17 -0
  84. package/src/lib/form/group/base-form-group.js +20 -0
  85. package/src/lib/form/group/base-form-group.js.map +1 -0
  86. package/src/lib/form/group/form-group-kind.d.ts +3 -0
  87. package/src/lib/form/group/form-group-kind.js +8 -0
  88. package/src/lib/form/group/form-group-kind.js.map +1 -0
  89. package/src/lib/form/group/form-group.d.ts +12 -0
  90. package/src/lib/form/group/form-group.js +18 -0
  91. package/src/lib/form/group/form-group.js.map +1 -0
  92. package/src/lib/load-handlebars-template.d.ts +4 -0
  93. package/src/lib/load-handlebars-template.js +28 -0
  94. package/src/lib/load-handlebars-template.js.map +1 -0
  95. package/src/lib/merge-with-column-list.js +3 -1
  96. package/src/lib/merge-with-column-list.js.map +1 -1
  97. package/src/lib/minimum-table-component-options.d.ts +12 -2
  98. package/src/lib/minimum-table-component-options.js +14 -17
  99. package/src/lib/minimum-table-component-options.js.map +1 -1
  100. package/src/lib/minimum-table-options.d.ts +1 -1
  101. package/src/lib/minimum-table-options.js +2 -2
  102. package/src/lib/minimum-table-options.js.map +1 -1
  103. package/src/lib/pipe-option.d.ts +11 -0
  104. package/src/lib/pipe-option.js +75 -0
  105. package/src/lib/pipe-option.js.map +1 -0
  106. package/src/lib/table/table-filter-column-rule.d.ts +13 -0
  107. package/src/lib/table/table-filter-column-rule.js +88 -0
  108. package/src/lib/table/table-filter-column-rule.js.map +1 -0
  109. package/src/lib/table-column.d.ts +20 -9
  110. package/src/lib/table-column.js +133 -113
  111. package/src/lib/table-column.js.map +1 -1
  112. package/src/lib/table-options.d.ts +1 -1
  113. package/src/lib/tree-table-options.d.ts +1 -1
  114. package/src/lib/use-pick-from-table-interface-as-form-type.d.ts +10 -0
  115. package/src/lib/use-pick-from-table-interface-as-form-type.js +32 -0
  116. package/src/lib/use-pick-from-table-interface-as-form-type.js.map +1 -0
  117. package/src/lib/value-option.d.ts +12 -0
  118. package/src/lib/value-option.js +66 -0
  119. package/src/lib/value-option.js.map +1 -0
  120. package/src/schema.json +2626 -0
  121. package/src/schematic-input.schema.json +541 -0
  122. package/src/schematics/abstract-control.schema.json +78 -0
  123. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.hbs +25 -0
  124. package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
  125. package/src/schematics/accordion/accordion-component/index.js +56 -122
  126. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  127. package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
  128. package/src/schematics/accordion/accordion-component/schema.json +321 -139
  129. package/src/schematics/accordion/accordion-component/template.schema.json +105 -0
  130. package/src/schematics/accordion/accordion-item-component/index.d.ts +9 -4
  131. package/src/schematics/accordion/accordion-item-component/index.js +112 -86
  132. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  133. package/src/schematics/accordion/accordion-item-component/schema.d.ts +2 -2
  134. package/src/schematics/accordion/accordion-item-component/schema.json +282 -70
  135. package/src/schematics/accordion/accordion-item-component/template.schema.json +32 -0
  136. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
  137. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +35 -51
  138. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  139. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.d.ts +1 -1
  140. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +963 -73
  141. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +31 -0
  142. package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
  143. package/src/schematics/accordion/item/accordion-item-switch-component/index.js +16 -8
  144. package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
  145. package/src/schematics/accordion/item/accordion-item-switch-component/schema.d.ts +1 -1
  146. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +321 -189
  147. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +81 -0
  148. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
  149. package/src/schematics/accordion/item/accordion-item-table-component/index.js +16 -19
  150. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  151. package/src/schematics/accordion/item/accordion-item-table-component/schema.d.ts +1 -1
  152. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +1005 -293
  153. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +43 -0
  154. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
  155. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +48 -84
  156. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  157. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.d.ts +1 -1
  158. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +968 -273
  159. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +43 -0
  160. package/src/schematics/accordion/templates/accordion-header.hbs +6 -0
  161. package/src/schematics/accordion/templates/data-grid-accordion-item.hbs +15 -0
  162. package/src/schematics/accordion/templates/default-accordion-item.hbs +15 -0
  163. package/src/schematics/accordion/templates/switch-accordion-item.hbs +21 -0
  164. package/src/schematics/accordion/templates/table-accordion-item.hbs +15 -0
  165. package/src/schematics/accordion/templates/tree-table-accordion-item.hbs +15 -0
  166. package/src/schematics/accordion-identifier.schema.json +25 -0
  167. package/src/schematics/accordion-item.schema.json +59 -0
  168. package/src/schematics/angular.schema.json +11 -11
  169. package/src/schematics/backend.schema.json +13 -0
  170. package/src/schematics/base-form-array.schema.json +45 -0
  171. package/src/schematics/base-form-control.schema.json +27 -0
  172. package/src/schematics/base-form-group.schema.json +42 -0
  173. package/src/schematics/button.schema.json +30 -0
  174. package/src/schematics/checkbox-form-control.schema.json +30 -0
  175. package/src/schematics/control.schema.json +26 -0
  176. package/src/schematics/data-grid-component/files/component/__componentName__.component.html.hbs +35 -0
  177. package/src/schematics/data-grid-component/index.d.ts +2 -4
  178. package/src/schematics/data-grid-component/index.js +87 -52
  179. package/src/schematics/data-grid-component/index.js.map +1 -1
  180. package/src/schematics/data-grid-component/schema.json +924 -131
  181. package/src/schematics/data-grid-component/template.schema.json +20 -0
  182. package/src/schematics/data-grid-component/templates/default-data-grid-item.hbs +3 -0
  183. package/src/schematics/data-grid-component/templates/link-data-grid-item.hbs +8 -0
  184. package/src/schematics/data-grid-item.schema.json +50 -0
  185. package/src/schematics/data-grid.schema.json +66 -0
  186. package/src/schematics/dialog-component/schema.json +141 -65
  187. package/src/schematics/dialog-component/template.schema.json +62 -0
  188. package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
  189. package/src/schematics/form/control/input-form-control/index.js +4 -27
  190. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  191. package/src/schematics/form/control/input-form-control/schema.d.ts +2 -3
  192. package/src/schematics/form/control/input-form-control/schema.json +341 -94
  193. package/src/schematics/form/control/input-form-control/template.schema.json +33 -0
  194. package/src/schematics/form/control/select-form-control/index.d.ts +4 -2
  195. package/src/schematics/form/control/select-form-control/index.js +140 -97
  196. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  197. package/src/schematics/form/control/select-form-control/schema.d.ts +2 -4
  198. package/src/schematics/form/control/select-form-control/schema.json +348 -81
  199. package/src/schematics/form/control/select-form-control/template.schema.json +33 -0
  200. package/src/schematics/form/control/table-select-form-control/index.d.ts +5 -7
  201. package/src/schematics/form/control/table-select-form-control/index.js +205 -143
  202. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  203. package/src/schematics/form/control/table-select-form-control/schema.d.ts +2 -5
  204. package/src/schematics/form/control/table-select-form-control/schema.json +431 -84
  205. package/src/schematics/form/control/table-select-form-control/template.schema.json +39 -0
  206. package/src/schematics/form/form-array/index.d.ts +9 -0
  207. package/src/schematics/form/form-array/index.js +54 -0
  208. package/src/schematics/form/form-array/index.js.map +1 -0
  209. package/src/schematics/form/form-array/schema.d.ts +4 -0
  210. package/src/schematics/form/form-array/schema.json +823 -0
  211. package/src/schematics/form/form-array/template.schema.json +33 -0
  212. package/src/schematics/form/form-component/files/component/{__componentName__.component.html.template → __componentName__.component.html.hbs} +7 -4
  213. package/src/schematics/form/form-component/index.d.ts +4 -4
  214. package/src/schematics/form/form-component/index.js +22 -23
  215. package/src/schematics/form/form-component/index.js.map +1 -1
  216. package/src/schematics/form/form-component/schema.d.ts +4 -2
  217. package/src/schematics/form/form-component/schema.json +841 -136
  218. package/src/schematics/form/form-component/template.schema.json +20 -0
  219. package/src/schematics/form/form-control/index.d.ts +6 -6
  220. package/src/schematics/form/form-control/index.js +23 -24
  221. package/src/schematics/form/form-control/index.js.map +1 -1
  222. package/src/schematics/form/form-control/schema.d.ts +2 -4
  223. package/src/schematics/form/form-control/schema.json +652 -67
  224. package/src/schematics/form/form-control/template.schema.json +33 -0
  225. package/src/schematics/form/form-definition/index.d.ts +2 -2
  226. package/src/schematics/form/form-definition/index.js +30 -4
  227. package/src/schematics/form/form-definition/index.js.map +1 -1
  228. package/src/schematics/form/form-definition/schema.d.ts +2 -2
  229. package/src/schematics/form/form-definition/schema.json +805 -118
  230. package/src/schematics/form/form-definition/template.schema.json +30 -0
  231. package/src/schematics/form/form-group/index.d.ts +9 -0
  232. package/src/schematics/form/form-group/index.js +54 -0
  233. package/src/schematics/form/form-group/index.js.map +1 -0
  234. package/src/schematics/form/form-group/schema.d.ts +4 -0
  235. package/src/schematics/form/form-group/schema.json +823 -0
  236. package/src/schematics/form/form-group/template.schema.json +33 -0
  237. package/src/schematics/form/templates/checkbox-form-control.hbs +9 -0
  238. package/src/schematics/form/templates/default-form-array.hbs +27 -0
  239. package/src/schematics/form/templates/default-form-control.hbs +2 -0
  240. package/src/schematics/form/templates/default-form-group.hbs +13 -0
  241. package/src/schematics/form/templates/input-form-control.hbs +9 -0
  242. package/src/schematics/form/templates/mat-form-field.hbs +31 -0
  243. package/src/schematics/form/templates/select-form-control.hbs +5 -0
  244. package/src/schematics/form/templates/slide-toggle-form-control.hbs +8 -0
  245. package/src/schematics/form/templates/table-select-form-control.hbs +18 -0
  246. package/src/schematics/form-array.schema.json +40 -0
  247. package/src/schematics/form-component.schema.json +45 -0
  248. package/src/schematics/form-control.schema.json +77 -0
  249. package/src/schematics/form-definition.schema.json +22 -0
  250. package/src/schematics/form-field.schema.json +24 -0
  251. package/src/schematics/form-group.schema.json +40 -0
  252. package/src/schematics/general.schema.json +1 -4
  253. package/src/schematics/header-button.schema.json +42 -0
  254. package/src/schematics/input-form-control.schema.json +59 -0
  255. package/src/schematics/minimum-table.schema.json +60 -0
  256. package/src/schematics/pipe.schema.json +38 -0
  257. package/src/schematics/property.schema.json +31 -0
  258. package/src/schematics/select-form-control.schema.json +68 -0
  259. package/src/schematics/slide-toggle-form-control.schema.json +30 -0
  260. package/src/schematics/table/action/dialog-table-action/schema.json +207 -123
  261. package/src/schematics/table/action/dialog-table-action/template.schema.json +58 -0
  262. package/src/schematics/table/action/form-table-action/index.d.ts +2 -2
  263. package/src/schematics/table/action/form-table-action/index.js +3 -4
  264. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  265. package/src/schematics/table/action/form-table-action/schema.d.ts +2 -2
  266. package/src/schematics/table/action/form-table-action/schema.json +949 -139
  267. package/src/schematics/table/action/form-table-action/template.schema.json +75 -0
  268. package/src/schematics/table/action/navigation-table-action/schema.json +187 -80
  269. package/src/schematics/table/action/navigation-table-action/template.schema.json +28 -0
  270. package/src/schematics/table/action/open-api-table-action/schema.json +203 -94
  271. package/src/schematics/table/action/open-api-table-action/template.schema.json +56 -0
  272. package/src/schematics/table/action/operation-table-action/schema.json +174 -84
  273. package/src/schematics/table/action/operation-table-action/template.schema.json +14 -0
  274. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +2 -2
  275. package/src/schematics/table/header-button/form-table-header-button/index.js +2 -2
  276. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
  277. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +2 -2
  278. package/src/schematics/table/header-button/form-table-header-button/schema.json +910 -98
  279. package/src/schematics/table/header-button/form-table-header-button/template.schema.json +33 -0
  280. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +167 -71
  281. package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +28 -0
  282. package/src/schematics/table/table-action/schema.json +165 -78
  283. package/src/schematics/table/table-action/template.schema.json +30 -0
  284. package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +241 -0
  285. package/src/schematics/table/table-component/index.d.ts +2 -4
  286. package/src/schematics/table/table-component/index.js +14 -120
  287. package/src/schematics/table/table-component/index.js.map +1 -1
  288. package/src/schematics/table/table-component/schema.json +898 -276
  289. package/src/schematics/table/table-component/template.schema.json +20 -0
  290. package/src/schematics/table/table-header-button/schema.json +145 -63
  291. package/src/schematics/table/table-header-button/template.schema.json +30 -0
  292. package/src/schematics/table/templates/boolean-table-column.hbs +10 -0
  293. package/src/schematics/table/templates/component-table-column.hbs +12 -0
  294. package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +10 -0
  295. package/src/schematics/table/templates/date-table-column.hbs +11 -0
  296. package/src/schematics/table/templates/default-table-column.hbs +8 -0
  297. package/src/schematics/table/templates/icon-table-column.hbs +10 -0
  298. package/src/schematics/table/templates/link-table-column.hbs +10 -0
  299. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +255 -0
  300. package/src/schematics/table/tree-table-component/index.d.ts +3 -0
  301. package/src/schematics/table/tree-table-component/index.js +28 -7
  302. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  303. package/src/schematics/table/tree-table-component/schema.json +889 -260
  304. package/src/schematics/table/tree-table-component/template.schema.json +20 -0
  305. package/src/schematics/table-action.schema.json +61 -0
  306. package/src/schematics/table-column.schema.json +75 -0
  307. package/src/schematics/table-select-form-control.schema.json +96 -0
  308. package/src/schematics/table.schema.json +57 -0
  309. package/src/schematics/templates/pipe.hbs +4 -0
  310. package/src/schematics/textarea-form-control.schema.json +32 -0
  311. package/src/schematics/tree-component/schema.json +115 -70
  312. package/src/schematics/tree-component/template.schema.json +36 -0
  313. package/src/schematics/tree-table.schema.json +40 -0
  314. package/src/schematics/type.schema.json +35 -0
  315. package/src/schematics/upstream.schema.json +56 -0
  316. package/src/schematics/value.schema.json +26 -0
  317. package/src/template.schema.json +212 -0
  318. package/src/lib/accordion-itme-types.d.ts +0 -8
  319. package/src/lib/accordion-itme-types.js +0 -16
  320. package/src/lib/accordion-itme-types.js.map +0 -1
  321. package/src/lib/form-component-control.d.ts +0 -12
  322. package/src/lib/form-component-control.js +0 -15
  323. package/src/lib/form-component-control.js.map +0 -1
  324. package/src/lib/form-definition-control.d.ts +0 -59
  325. package/src/lib/form-definition-control.js +0 -156
  326. package/src/lib/form-definition-control.js.map +0 -1
  327. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.template +0 -94
  328. package/src/schematics/accordion/accordion-component/files/header-component/accordion-header.component.html.template +0 -10
  329. package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +0 -42
  330. package/src/schematics/data-grid-component/files/plain/__componentName__.component.html.template +0 -25
  331. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +0 -299
  332. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +0 -213
@@ -1,64 +1,382 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/schema",
3
- "$id": "accordion-item-data-grid-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-data-grid-component-schematic",
4
+ "allOf": [
5
+ {
6
+ "$ref": "#/definitions/angular"
11
7
  },
12
- "project": {
13
- "type": "string",
14
- "description": "The target project where the accordion item module should be added.",
15
- "x-prompt": "To which project should the accordion item module be added?"
8
+ {
9
+ "$ref": "#/definitions/accordionItem"
16
10
  },
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?"
11
+ {
12
+ "type": "object",
13
+ "properties": {
14
+ "dataGrid": {
15
+ "$ref": "#/definitions/dataGrid"
16
+ }
17
+ }
18
+ }
19
+ ],
20
+ "definitions": {
21
+ "abstractControl": {
22
+ "allOf": [
23
+ {
24
+ "$ref": "#/definitions/property"
25
+ },
26
+ {
27
+ "type": "object",
28
+ "properties": {
29
+ "name": {
30
+ "type": "string",
31
+ "description": "The name of the control"
32
+ },
33
+ "isArray": {
34
+ "type": "boolean",
35
+ "description": "Whether the control value is an array",
36
+ "default": false
37
+ },
38
+ "state": {
39
+ "type": "string",
40
+ "description": "The initial state of the control"
41
+ },
42
+ "isRequired": {
43
+ "type": "boolean",
44
+ "description": "Whether the control value is required",
45
+ "default": false
46
+ },
47
+ "isReadonly": {
48
+ "type": "boolean",
49
+ "description": "Whether the control value is readonly",
50
+ "default": false
51
+ },
52
+ "isDisabled": {
53
+ "type": "boolean",
54
+ "description": "Whether the control value is disabled",
55
+ "default": false
56
+ },
57
+ "validatorList": {
58
+ "type": "array",
59
+ "items": {
60
+ "type": "string"
61
+ }
62
+ },
63
+ "kind": {
64
+ "type": "string",
65
+ "description": "The kind of the control",
66
+ "default": "default"
67
+ },
68
+ "importList": {
69
+ "type": "array",
70
+ "items": {
71
+ "$ref": "#/definitions/type"
72
+ }
73
+ },
74
+ "template": {
75
+ "type": "string",
76
+ "description": "The template of the control"
77
+ },
78
+ "role": {
79
+ "type": "string",
80
+ "description": "The role of the control",
81
+ "enum": [
82
+ "control",
83
+ "group",
84
+ "array"
85
+ ],
86
+ "default": "control"
87
+ }
88
+ },
89
+ "additionalProperties": true
90
+ }
91
+ ]
21
92
  },
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?"
93
+ "accordionIdentifier": {
94
+ "type": "object",
95
+ "properties": {
96
+ "property": {
97
+ "$ref": "#/definitions/property"
98
+ },
99
+ "source": {
100
+ "type": "string",
101
+ "enum": [
102
+ "route"
103
+ ],
104
+ "default": "route"
105
+ }
106
+ },
107
+ "required": [
108
+ "property"
109
+ ]
110
+ },
111
+ "accordionItem": {
112
+ "type": "object",
113
+ "properties": {
114
+ "kind": {
115
+ "type": "string",
116
+ "enum": [
117
+ "default",
118
+ "table",
119
+ "data-grid",
120
+ "data-grid-collection",
121
+ "tree-table",
122
+ "switch"
123
+ ],
124
+ "description": "The type of the accordion item",
125
+ "default": "panel"
126
+ },
127
+ "modifiers": {
128
+ "alias": "modifier",
129
+ "type": "array",
130
+ "items": {
131
+ "type": "string"
132
+ },
133
+ "description": "The modifiers to apply to the accordion item type"
134
+ },
135
+ "identifier": {
136
+ "$ref": "#/definitions/accordionIdentifier"
137
+ },
138
+ "title": {
139
+ "type": "string"
140
+ },
141
+ "description": {
142
+ "type": "string"
143
+ },
144
+ "upstream": {
145
+ "$ref": "#/definitions/upstream"
146
+ },
147
+ "propertyList": {
148
+ "alias": "property",
149
+ "type": "array",
150
+ "items": {
151
+ "$ref": "#/definitions/property"
152
+ }
153
+ }
154
+ },
155
+ "additionalProperties": true
26
156
  },
27
- "shared": {
28
- "type": "boolean",
29
- "default": false,
30
- "description": "Whether the item is based of a shared component"
157
+ "angular": {
158
+ "allOf": [
159
+ {
160
+ "$ref": "#/definitions/general"
161
+ },
162
+ {
163
+ "type": "object",
164
+ "properties": {
165
+ "componentName": {
166
+ "type": "string"
167
+ },
168
+ "name": {
169
+ "type": "string"
170
+ },
171
+ "context": {
172
+ "type": "string",
173
+ "description": "The context use to generate proper names for class, files, etc"
174
+ },
175
+ "nestModule": {
176
+ "type": "string",
177
+ "description": "The module name for the table nest operations"
178
+ },
179
+ "controllerName": {
180
+ "type": "string"
181
+ },
182
+ "backend": {
183
+ "$ref": "#/definitions/backend"
184
+ },
185
+ "directory": {
186
+ "type": "string",
187
+ "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"
188
+ },
189
+ "shared": {
190
+ "type": "boolean",
191
+ "description": "Whether the generated code is used across the project",
192
+ "default": false
193
+ },
194
+ "scope": {
195
+ "type": "string"
196
+ },
197
+ "prefix": {
198
+ "type": "string"
199
+ },
200
+ "openApi": {
201
+ "type": "object",
202
+ "additionalProperties": true
203
+ }
204
+ }
205
+ }
206
+ ]
31
207
  },
32
208
  "backend": {
33
209
  "type": "string",
34
210
  "description": "The backend that should be used to handel data",
35
211
  "enum": [
36
212
  "none",
37
- "local",
38
213
  "nestjs",
39
- "open-api"
214
+ "open-api",
215
+ "local"
40
216
  ],
41
217
  "default": "none"
42
218
  },
43
- "overwrite": {
44
- "anyOf": [
219
+ "baseFormArray": {
220
+ "allOf": [
45
221
  {
46
- "type": "boolean"
222
+ "$ref": "#/definitions/abstractControl"
223
+ },
224
+ {
225
+ "type": "object",
226
+ "properties": {
227
+ "controlList": {
228
+ "type": "array",
229
+ "description": "The list of controls in the group",
230
+ "items": {
231
+ "$ref": "#/definitions/control"
232
+ }
233
+ },
234
+ "legend": {
235
+ "type": "string"
236
+ },
237
+ "groupLegend": {
238
+ "type": "string"
239
+ },
240
+ "kind": {
241
+ "type": "string",
242
+ "description": "The kind of the array",
243
+ "const": "default",
244
+ "default": "default"
245
+ },
246
+ "role": {
247
+ "type": "string",
248
+ "const": "array"
249
+ }
250
+ }
251
+ }
252
+ ]
253
+ },
254
+ "baseFormControl": {
255
+ "allOf": [
256
+ {
257
+ "$ref": "#/definitions/abstractControl"
258
+ },
259
+ {
260
+ "type": "object",
261
+ "properties": {
262
+ "label": {
263
+ "type": "string",
264
+ "description": "The label of the control"
265
+ },
266
+ "role": {
267
+ "type": "string",
268
+ "const": "control"
269
+ }
270
+ }
271
+ }
272
+ ]
273
+ },
274
+ "baseFormGroup": {
275
+ "allOf": [
276
+ {
277
+ "$ref": "#/definitions/abstractControl"
47
278
  },
48
279
  {
280
+ "type": "object",
281
+ "properties": {
282
+ "controlList": {
283
+ "type": "array",
284
+ "description": "The list of controls in the group",
285
+ "items": {
286
+ "$ref": "#/definitions/control"
287
+ }
288
+ },
289
+ "legend": {
290
+ "type": "string"
291
+ },
292
+ "kind": {
293
+ "type": "string",
294
+ "description": "The kind of the group",
295
+ "const": "default",
296
+ "default": "default"
297
+ },
298
+ "role": {
299
+ "type": "string",
300
+ "const": "group"
301
+ }
302
+ }
303
+ }
304
+ ]
305
+ },
306
+ "button": {
307
+ "type": "object",
308
+ "properties": {
309
+ "svgIcon": {
310
+ "type": "string"
311
+ },
312
+ "icon": {
313
+ "type": "string"
314
+ },
315
+ "directiveList": {
49
316
  "type": "array",
50
317
  "items": {
51
- "type": "string"
318
+ "$ref": "#/definitions/type"
319
+ }
320
+ },
321
+ "importList": {
322
+ "type": "array",
323
+ "items": {
324
+ "$ref": "#/definitions/type"
52
325
  }
53
326
  }
54
- ],
55
- "description": "Overwrite existing files",
56
- "default": false
327
+ }
328
+ },
329
+ "checkboxFormControl": {
330
+ "allOf": [
331
+ {
332
+ "$ref": "#/definitions/baseFormControl"
333
+ },
334
+ {
335
+ "type": "object",
336
+ "properties": {
337
+ "kind": {
338
+ "type": "string",
339
+ "const": "checkbox"
340
+ },
341
+ "labelPosition": {
342
+ "type": "string",
343
+ "enum": [
344
+ "before",
345
+ "after"
346
+ ]
347
+ }
348
+ }
349
+ }
350
+ ]
351
+ },
352
+ "control": {
353
+ "oneOf": [
354
+ {
355
+ "$ref": "#/definitions/formGroup"
356
+ },
357
+ {
358
+ "$ref": "#/definitions/formArray"
359
+ },
360
+ {
361
+ "$ref": "#/definitions/formControl"
362
+ }
363
+ ]
57
364
  },
58
365
  "dataGrid": {
59
- "alias": "data-grid",
60
366
  "type": "object",
61
367
  "properties": {
368
+ "mode": {
369
+ "type": "string",
370
+ "description": "The mode of the form",
371
+ "enum": [
372
+ "form",
373
+ "plain"
374
+ ]
375
+ },
376
+ "collection": {
377
+ "type": "boolean",
378
+ "description": "Whether the data grid is used as collection."
379
+ },
62
380
  "title": {
63
381
  "type": "string",
64
382
  "description": "The title of the data grid card component"
@@ -69,65 +387,637 @@
69
387
  },
70
388
  "itemList": {
71
389
  "alias": "item",
390
+ "type": "array",
391
+ "items": {
392
+ "$ref": "#/definitions/dataGridItem"
393
+ }
394
+ },
395
+ "inCard": {
396
+ "type": "boolean",
397
+ "description": "Whether the data grid is used in a card.",
398
+ "default": true
399
+ },
400
+ "upstream": {
401
+ "$ref": "#/definitions/upstream"
402
+ },
403
+ "propertyList": {
404
+ "alias": "property",
405
+ "type": "array",
406
+ "items": {
407
+ "$ref": "#/definitions/property"
408
+ }
409
+ },
410
+ "identifier": {
411
+ "$ref": "#/definitions/accordionIdentifier"
412
+ }
413
+ }
414
+ },
415
+ "dataGridItem": {
416
+ "type": "object",
417
+ "properties": {
418
+ "name": {
419
+ "type": "string",
420
+ "description": "The name of the data grid item"
421
+ },
422
+ "header": {
423
+ "type": "string",
424
+ "description": "The name of the control"
425
+ },
426
+ "pipeList": {
427
+ "type": "array",
428
+ "items": {
429
+ "$ref": "#/definitions/pipe"
430
+ }
431
+ },
432
+ "formControl": {
433
+ "$ref": "#/definitions/control"
434
+ },
435
+ "template": {
436
+ "type": "string"
437
+ },
438
+ "kind": {
439
+ "type": "string",
440
+ "enum": [
441
+ "default",
442
+ "link"
443
+ ],
444
+ "default": "default"
445
+ },
446
+ "type": {
447
+ "$ref": "#/definitions/type"
448
+ },
449
+ "isArray": {
450
+ "type": "boolean"
451
+ }
452
+ },
453
+ "required": [
454
+ "name"
455
+ ]
456
+ },
457
+ "formArray": {
458
+ "allOf": [
459
+ {
460
+ "type": "object",
461
+ "properties": {
462
+ "role": {
463
+ "type": "string",
464
+ "const": "array"
465
+ }
466
+ }
467
+ },
468
+ {
469
+ "oneOf": [
470
+ {
471
+ "allOf": [
472
+ {
473
+ "$ref": "#/definitions/baseFormArray"
474
+ },
475
+ {
476
+ "type": "object",
477
+ "properties": {
478
+ "kind": {
479
+ "type": "string",
480
+ "const": "default"
481
+ }
482
+ }
483
+ }
484
+ ]
485
+ }
486
+ ]
487
+ }
488
+ ]
489
+ },
490
+ "formControl": {
491
+ "allOf": [
492
+ {
493
+ "type": "object",
494
+ "properties": {
495
+ "role": {
496
+ "type": "string",
497
+ "const": "control",
498
+ "default": "control"
499
+ }
500
+ }
501
+ },
502
+ {
503
+ "oneOf": [
504
+ {
505
+ "allOf": [
506
+ {
507
+ "$ref": "#/definitions/baseFormControl"
508
+ },
509
+ {
510
+ "type": "object",
511
+ "properties": {
512
+ "kind": {
513
+ "type": "string",
514
+ "const": "default"
515
+ }
516
+ }
517
+ }
518
+ ]
519
+ },
520
+ {
521
+ "$ref": "#/definitions/inputFormControl"
522
+ },
523
+ {
524
+ "$ref": "#/definitions/selectFormControl"
525
+ },
526
+ {
527
+ "$ref": "#/definitions/checkboxFormControl"
528
+ },
529
+ {
530
+ "$ref": "#/definitions/textareaFormControl"
531
+ },
532
+ {
533
+ "$ref": "#/definitions/tableSelectFormControl"
534
+ },
535
+ {
536
+ "$ref": "#/definitions/slideToggleFormControl"
537
+ }
538
+ ]
539
+ }
540
+ ]
541
+ },
542
+ "formField": {
543
+ "type": "object",
544
+ "properties": {
545
+ "label": {
546
+ "type": "string"
547
+ },
548
+ "prefixButton": {
549
+ "$ref": "#/definitions/button"
550
+ },
551
+ "suffixButton": {
552
+ "$ref": "#/definitions/button"
553
+ },
554
+ "hasClearButton": {
555
+ "type": "boolean"
556
+ }
557
+ }
558
+ },
559
+ "formGroup": {
560
+ "allOf": [
561
+ {
562
+ "type": "object",
563
+ "properties": {
564
+ "role": {
565
+ "type": "string",
566
+ "const": "group"
567
+ }
568
+ }
569
+ },
570
+ {
571
+ "oneOf": [
572
+ {
573
+ "allOf": [
574
+ {
575
+ "$ref": "#/definitions/baseFormGroup"
576
+ },
577
+ {
578
+ "type": "object",
579
+ "properties": {
580
+ "kind": {
581
+ "type": "string",
582
+ "const": "default"
583
+ }
584
+ }
585
+ }
586
+ ]
587
+ }
588
+ ]
589
+ }
590
+ ]
591
+ },
592
+ "general": {
593
+ "type": "object",
594
+ "properties": {
595
+ "project": {
596
+ "type": "string",
597
+ "description": "Project name where the files should be generated"
598
+ },
599
+ "feature": {
600
+ "type": "string",
601
+ "description": "Feature name where the files should be generated"
602
+ },
603
+ "overwrite": {
72
604
  "anyOf": [
605
+ {
606
+ "type": "boolean"
607
+ },
73
608
  {
74
609
  "type": "array",
75
610
  "items": {
611
+ "type": "string"
612
+ }
613
+ }
614
+ ],
615
+ "description": "Overwrite existing files",
616
+ "default": false
617
+ },
618
+ "overwriteHtml": {
619
+ "type": "boolean",
620
+ "default": false
621
+ },
622
+ "replace": {
623
+ "type": "boolean",
624
+ "default": false
625
+ }
626
+ }
627
+ },
628
+ "inputFormControl": {
629
+ "allOf": [
630
+ {
631
+ "$ref": "#/definitions/baseFormControl"
632
+ },
633
+ {
634
+ "type": "object",
635
+ "properties": {
636
+ "kind": {
637
+ "type": "string",
638
+ "const": "input"
639
+ },
640
+ "formField": {
641
+ "$ref": "#/definitions/formField"
642
+ },
643
+ "inputType": {
644
+ "type": "string",
645
+ "enum": [
646
+ "text",
647
+ "password",
648
+ "email",
649
+ "number",
650
+ "tel",
651
+ "url",
652
+ "checkbox",
653
+ "color",
654
+ "date",
655
+ "time",
656
+ "datetime-local",
657
+ "file",
658
+ "hidden",
659
+ "image",
660
+ "month",
661
+ "radio",
662
+ "reset",
663
+ "button",
664
+ "search",
665
+ "submit",
666
+ "week",
667
+ "range"
668
+ ]
669
+ },
670
+ "placeholder": {
671
+ "type": "string"
672
+ }
673
+ }
674
+ }
675
+ ]
676
+ },
677
+ "pipe": {
678
+ "oneOf": [
679
+ {
680
+ "type": "string"
681
+ },
682
+ {
683
+ "allOf": [
684
+ {
685
+ "$ref": "#/definitions/type"
686
+ },
687
+ {
688
+ "type": "object",
689
+ "properties": {
690
+ "argumentList": {
691
+ "type": "array",
692
+ "items": {
693
+ "$ref": "#/definitions/value"
694
+ }
695
+ }
696
+ },
697
+ "required": [
698
+ "name"
699
+ ]
700
+ }
701
+ ]
702
+ }
703
+ ]
704
+ },
705
+ "property": {
706
+ "oneOf": [
707
+ {
708
+ "type": "string"
709
+ },
710
+ {
711
+ "type": "object",
712
+ "properties": {
713
+ "name": {
714
+ "type": "string"
715
+ },
716
+ "type": {
717
+ "$ref": "#/definitions/type"
718
+ },
719
+ "isArray": {
720
+ "type": "boolean"
721
+ }
722
+ },
723
+ "required": [
724
+ "name"
725
+ ]
726
+ }
727
+ ]
728
+ },
729
+ "selectFormControl": {
730
+ "allOf": [
731
+ {
732
+ "$ref": "#/definitions/baseFormControl"
733
+ },
734
+ {
735
+ "type": "object",
736
+ "properties": {
737
+ "formField": {
738
+ "$ref": "#/definitions/formField"
739
+ },
740
+ "kind": {
741
+ "type": "string",
742
+ "const": "select"
743
+ },
744
+ "optionList": {
745
+ "type": "array",
746
+ "items": {
747
+ "type": "object",
748
+ "properties": {
749
+ "display": {
750
+ "type": "string"
751
+ },
752
+ "value": {
753
+ "oneOf": [
754
+ {
755
+ "type": "string"
756
+ },
757
+ {
758
+ "type": "number"
759
+ },
760
+ {
761
+ "type": "boolean"
762
+ },
763
+ {
764
+ "type": "object",
765
+ "additionalProperties": true
766
+ }
767
+ ]
768
+ }
769
+ }
770
+ }
771
+ },
772
+ "backend": {
773
+ "$ref": "#/definitions/backend"
774
+ },
775
+ "multiple": {
776
+ "alias": "multi",
777
+ "type": "boolean",
778
+ "description": "Whether the select form control is multiple mode"
779
+ }
780
+ }
781
+ }
782
+ ]
783
+ },
784
+ "slideToggleFormControl": {
785
+ "allOf": [
786
+ {
787
+ "$ref": "#/definitions/baseFormControl"
788
+ },
789
+ {
790
+ "type": "object",
791
+ "properties": {
792
+ "kind": {
793
+ "type": "string",
794
+ "const": "slide-toggle"
795
+ },
796
+ "labelPosition": {
797
+ "type": "string",
798
+ "enum": [
799
+ "before",
800
+ "after"
801
+ ]
802
+ }
803
+ }
804
+ }
805
+ ]
806
+ },
807
+ "tableSelectFormControl": {
808
+ "allOf": [
809
+ {
810
+ "$ref": "#/definitions/baseFormControl"
811
+ },
812
+ {
813
+ "type": "object",
814
+ "properties": {
815
+ "formField": {
816
+ "$ref": "#/definitions/formField"
817
+ },
818
+ "kind": {
819
+ "type": "string",
820
+ "const": "table-select"
821
+ },
822
+ "placeholder": {
823
+ "type": "string"
824
+ },
825
+ "columnList": {
826
+ "alias": "column",
827
+ "type": "array",
828
+ "items": {
829
+ "description": "table column name",
76
830
  "type": "object",
77
831
  "properties": {
78
832
  "name": {
79
833
  "type": "string",
80
- "description": "The name of the control"
834
+ "description": "table column name"
81
835
  },
82
- "header": {
836
+ "title": {
83
837
  "type": "string",
84
- "description": "The name of the control"
838
+ "description": "table column label"
839
+ },
840
+ "hasFilter": {
841
+ "type": "boolean",
842
+ "description": "Whether the column has a filter"
85
843
  },
86
- "type": {
844
+ "kind": {
87
845
  "type": "string",
88
- "description": "The type of the control",
89
- "enum": [
90
- "string",
91
- "number",
92
- "boolean"
93
- ]
846
+ "description": "The kind of data in the column"
94
847
  }
95
- },
96
- "required": [
97
- "name"
98
- ]
848
+ }
849
+ },
850
+ "description": "List of table column names"
851
+ },
852
+ "title": {
853
+ "type": "string",
854
+ "description": "The title of the table select window"
855
+ },
856
+ "toDisplay": {
857
+ "type": "object",
858
+ "properties": {
859
+ "property": {
860
+ "$ref": "#/definitions/property"
861
+ }
99
862
  }
100
863
  },
101
- {
102
- "type": "array",
103
- "items": {
104
- "type": "string"
864
+ "toValue": {
865
+ "type": "object",
866
+ "properties": {
867
+ "property": {
868
+ "$ref": "#/definitions/property"
869
+ }
105
870
  }
106
871
  },
107
- {
108
- "type": "array"
872
+ "upstream": {
873
+ "$ref": "#/definitions/upstream"
874
+ },
875
+ "resolver": {
876
+ "type": "object",
877
+ "properties": {
878
+ "upstream": {
879
+ "$ref": "#/definitions/upstream"
880
+ }
881
+ }
109
882
  }
110
- ]
883
+ }
884
+ }
885
+ ]
886
+ },
887
+ "textareaFormControl": {
888
+ "allOf": [
889
+ {
890
+ "$ref": "#/definitions/baseFormControl"
111
891
  },
112
- "mode": {
113
- "type": "string",
114
- "description": "The mode of the form",
115
- "enum": [
116
- "form",
117
- "plain"
892
+ {
893
+ "type": "object",
894
+ "properties": {
895
+ "formField": {
896
+ "$ref": "#/definitions/formField"
897
+ },
898
+ "kind": {
899
+ "type": "string",
900
+ "const": "textarea"
901
+ },
902
+ "placeholder": {
903
+ "type": "string"
904
+ }
905
+ }
906
+ }
907
+ ]
908
+ },
909
+ "type": {
910
+ "oneOf": [
911
+ {
912
+ "type": "string"
913
+ },
914
+ {
915
+ "type": "object",
916
+ "properties": {
917
+ "name": {
918
+ "type": "string"
919
+ },
920
+ "isTypeOnly": {
921
+ "type": "boolean"
922
+ },
923
+ "moduleSpecifier": {
924
+ "type": "string"
925
+ },
926
+ "namedImport": {
927
+ "type": "string"
928
+ },
929
+ "namespaceImport": {
930
+ "type": "string"
931
+ },
932
+ "defaultImport": {
933
+ "type": "string"
934
+ }
935
+ },
936
+ "required": [
937
+ "name"
118
938
  ]
939
+ }
940
+ ]
941
+ },
942
+ "upstream": {
943
+ "oneOf": [
944
+ {
945
+ "type": "object",
946
+ "properties": {
947
+ "kind": {
948
+ "type": "string",
949
+ "enum": [
950
+ "open-api"
951
+ ]
952
+ },
953
+ "operationId": {
954
+ "type": "string"
955
+ },
956
+ "scope": {
957
+ "type": "string"
958
+ },
959
+ "mapper": {
960
+ "type": "object",
961
+ "properties": {
962
+ "pageIndex": {
963
+ "type": "string"
964
+ },
965
+ "pageSize": {
966
+ "type": "string"
967
+ },
968
+ "sortBy": {
969
+ "type": "string"
970
+ },
971
+ "sortDirection": {
972
+ "type": "string"
973
+ },
974
+ "list": {
975
+ "type": "string"
976
+ },
977
+ "total": {
978
+ "type": "string"
979
+ },
980
+ "filter": {
981
+ "type": "object",
982
+ "properties": {
983
+ "eq": {
984
+ "type": "string"
985
+ },
986
+ "join": {
987
+ "type": "string"
988
+ }
989
+ }
990
+ }
991
+ }
992
+ }
993
+ },
994
+ "required": [
995
+ "kind",
996
+ "operationId"
997
+ ]
998
+ }
999
+ ]
1000
+ },
1001
+ "value": {
1002
+ "oneOf": [
1003
+ {
1004
+ "type": "string"
119
1005
  },
120
- "collection": {
121
- "type": "boolean",
122
- "description": "Whether the data grid is used as collection."
1006
+ {
1007
+ "type": "object",
1008
+ "properties": {
1009
+ "type": {
1010
+ "$ref": "#/definitions/type"
1011
+ },
1012
+ "value": {
1013
+ "type": "string"
1014
+ }
1015
+ },
1016
+ "required": [
1017
+ "value"
1018
+ ]
123
1019
  }
124
- }
1020
+ ]
125
1021
  }
126
- },
127
- "required": [
128
- "itemName",
129
- "project",
130
- "feature",
131
- "accordionName"
132
- ]
133
- }
1022
+ }
1023
+ }