@sap/ux-specification 1.139.1 → 1.139.4

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 (372) hide show
  1. package/CHANGELOG.md +47 -1
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ListReportNew.html +2 -2
  6. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  7. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  8. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  9. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  10. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  11. package/dist/documentation/v4/v4-ListReport.html +2 -2
  12. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  13. package/dist/index-min.js +249 -246
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v2/ListReportNewConfig.json +79 -0
  16. package/dist/schemas/v4/BuildingBlocksConfig.json +260 -39
  17. package/dist/schemas/v4/ListReportConfig.json +9 -153
  18. package/dist/schemas/v4/ObjectPageConfig.json +3 -135
  19. package/dist/specification/package.json +9 -8
  20. package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
  21. package/dist/specification/scripts/schema/to-json-schema.js +2 -1
  22. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  23. package/dist/specification/src/api.js +2 -2
  24. package/dist/specification/src/ftfs/ftfs.d.ts +1 -1
  25. package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
  26. package/dist/specification/src/ftfs/ftfs.js +38 -5
  27. package/dist/specification/src/ftfs/ftfs.js.map +1 -1
  28. package/dist/specification/src/ftfs/parser/annotations.d.ts +9 -0
  29. package/dist/specification/src/ftfs/parser/annotations.d.ts.map +1 -0
  30. package/dist/specification/src/ftfs/parser/annotations.js +13 -0
  31. package/dist/specification/src/ftfs/parser/annotations.js.map +1 -0
  32. package/dist/specification/src/ftfs/parser/index.d.ts +15 -0
  33. package/dist/specification/src/ftfs/parser/index.d.ts.map +1 -0
  34. package/dist/specification/src/ftfs/parser/index.js +35 -0
  35. package/dist/specification/src/ftfs/parser/index.js.map +1 -0
  36. package/dist/specification/src/ftfs/parser/model/AggregationValidator.d.ts +65 -0
  37. package/dist/specification/src/ftfs/parser/model/AggregationValidator.d.ts.map +1 -0
  38. package/dist/specification/src/ftfs/parser/model/AggregationValidator.js +209 -0
  39. package/dist/specification/src/ftfs/parser/model/AggregationValidator.js.map +1 -0
  40. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.d.ts +49 -0
  41. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.d.ts.map +1 -0
  42. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.js +122 -0
  43. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.js.map +1 -0
  44. package/dist/specification/src/ftfs/parser/model/NodeProperty.d.ts +38 -0
  45. package/dist/specification/src/ftfs/parser/model/NodeProperty.d.ts.map +1 -0
  46. package/dist/specification/src/ftfs/parser/model/NodeProperty.js +25 -0
  47. package/dist/specification/src/ftfs/parser/model/NodeProperty.js.map +1 -0
  48. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.d.ts +339 -0
  49. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.d.ts.map +1 -0
  50. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.js +682 -0
  51. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.js.map +1 -0
  52. package/dist/specification/src/ftfs/parser/model/RootAggregation.d.ts +24 -0
  53. package/dist/specification/src/ftfs/parser/model/RootAggregation.d.ts.map +1 -0
  54. package/dist/specification/src/ftfs/parser/model/RootAggregation.js +57 -0
  55. package/dist/specification/src/ftfs/parser/model/RootAggregation.js.map +1 -0
  56. package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts +224 -0
  57. package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -0
  58. package/dist/specification/src/ftfs/parser/model/TreeModel.js +947 -0
  59. package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -0
  60. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.d.ts +34 -0
  61. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.d.ts.map +1 -0
  62. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.js +94 -0
  63. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.js.map +1 -0
  64. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.d.ts +67 -0
  65. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.d.ts.map +1 -0
  66. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.js +113 -0
  67. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.js.map +1 -0
  68. package/dist/specification/src/ftfs/parser/model/actions/index.d.ts +3 -0
  69. package/dist/specification/src/ftfs/parser/model/actions/index.d.ts.map +1 -0
  70. package/dist/specification/src/ftfs/parser/model/actions/index.js +19 -0
  71. package/dist/specification/src/ftfs/parser/model/actions/index.js.map +1 -0
  72. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.d.ts +17 -0
  73. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.d.ts.map +1 -0
  74. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.js +29 -0
  75. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.js.map +1 -0
  76. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.d.ts +46 -0
  77. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.d.ts.map +1 -0
  78. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.js +66 -0
  79. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.js.map +1 -0
  80. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.d.ts +3 -0
  81. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.d.ts.map +1 -0
  82. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.js +19 -0
  83. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.js.map +1 -0
  84. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.d.ts +21 -0
  85. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.d.ts.map +1 -0
  86. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.js +30 -0
  87. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.js.map +1 -0
  88. package/dist/specification/src/ftfs/parser/model/chart/index.d.ts +2 -0
  89. package/dist/specification/src/ftfs/parser/model/chart/index.d.ts.map +1 -0
  90. package/dist/specification/src/ftfs/parser/model/chart/index.js +18 -0
  91. package/dist/specification/src/ftfs/parser/model/chart/index.js.map +1 -0
  92. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.d.ts +9 -0
  93. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.d.ts.map +1 -0
  94. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.js +16 -0
  95. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.js.map +1 -0
  96. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.d.ts +25 -0
  97. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.d.ts.map +1 -0
  98. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.js +45 -0
  99. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.js.map +1 -0
  100. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.d.ts +22 -0
  101. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.d.ts.map +1 -0
  102. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.js +37 -0
  103. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.js.map +1 -0
  104. package/dist/specification/src/ftfs/parser/model/fields/index.d.ts +4 -0
  105. package/dist/specification/src/ftfs/parser/model/fields/index.d.ts.map +1 -0
  106. package/dist/specification/src/ftfs/parser/model/fields/index.js +20 -0
  107. package/dist/specification/src/ftfs/parser/model/fields/index.js.map +1 -0
  108. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.d.ts +39 -0
  109. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.d.ts.map +1 -0
  110. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.js +97 -0
  111. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.js.map +1 -0
  112. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.d.ts +36 -0
  113. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.d.ts.map +1 -0
  114. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.js +59 -0
  115. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.js.map +1 -0
  116. package/dist/specification/src/ftfs/parser/model/filter-fields/index.d.ts +3 -0
  117. package/dist/specification/src/ftfs/parser/model/filter-fields/index.d.ts.map +1 -0
  118. package/dist/specification/src/ftfs/parser/model/filter-fields/index.js +19 -0
  119. package/dist/specification/src/ftfs/parser/model/filter-fields/index.js.map +1 -0
  120. package/dist/specification/src/ftfs/parser/model/index.d.ts +19 -0
  121. package/dist/specification/src/ftfs/parser/model/index.d.ts.map +1 -0
  122. package/dist/specification/src/ftfs/parser/model/index.js +35 -0
  123. package/dist/specification/src/ftfs/parser/model/index.js.map +1 -0
  124. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.d.ts +29 -0
  125. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.d.ts.map +1 -0
  126. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.js +50 -0
  127. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.js.map +1 -0
  128. package/dist/specification/src/ftfs/parser/model/macros/index.d.ts +2 -0
  129. package/dist/specification/src/ftfs/parser/model/macros/index.d.ts.map +1 -0
  130. package/dist/specification/src/ftfs/parser/model/macros/index.js +18 -0
  131. package/dist/specification/src/ftfs/parser/model/macros/index.js.map +1 -0
  132. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.d.ts +31 -0
  133. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.d.ts.map +1 -0
  134. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.js +82 -0
  135. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.js.map +1 -0
  136. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.d.ts +78 -0
  137. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.d.ts.map +1 -0
  138. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.js +126 -0
  139. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.js.map +1 -0
  140. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.d.ts +135 -0
  141. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.d.ts.map +1 -0
  142. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.js +402 -0
  143. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.js.map +1 -0
  144. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.d.ts +50 -0
  145. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.d.ts.map +1 -0
  146. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.js +120 -0
  147. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.js.map +1 -0
  148. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.d.ts +39 -0
  149. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.d.ts.map +1 -0
  150. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.js +70 -0
  151. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.js.map +1 -0
  152. package/dist/specification/src/ftfs/parser/model/sections/index.d.ts +6 -0
  153. package/dist/specification/src/ftfs/parser/model/sections/index.d.ts.map +1 -0
  154. package/dist/specification/src/ftfs/parser/model/sections/index.js +22 -0
  155. package/dist/specification/src/ftfs/parser/model/sections/index.js.map +1 -0
  156. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.d.ts +89 -0
  157. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.d.ts.map +1 -0
  158. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.js +175 -0
  159. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.js.map +1 -0
  160. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.d.ts +113 -0
  161. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.d.ts.map +1 -0
  162. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.js +290 -0
  163. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.js.map +1 -0
  164. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.d.ts +13 -0
  165. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.d.ts.map +1 -0
  166. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.js +21 -0
  167. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.js.map +1 -0
  168. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.d.ts +15 -0
  169. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.d.ts.map +1 -0
  170. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.js +22 -0
  171. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.js.map +1 -0
  172. package/dist/specification/src/ftfs/parser/model/table/index.d.ts +5 -0
  173. package/dist/specification/src/ftfs/parser/model/table/index.d.ts.map +1 -0
  174. package/dist/specification/src/ftfs/parser/model/table/index.js +21 -0
  175. package/dist/specification/src/ftfs/parser/model/table/index.js.map +1 -0
  176. package/dist/specification/src/ftfs/parser/model/table/utils.d.ts +12 -0
  177. package/dist/specification/src/ftfs/parser/model/table/utils.d.ts.map +1 -0
  178. package/dist/specification/src/ftfs/parser/model/table/utils.js +44 -0
  179. package/dist/specification/src/ftfs/parser/model/table/utils.js.map +1 -0
  180. package/dist/specification/src/ftfs/parser/model/types/annotations.d.ts +63 -0
  181. package/dist/specification/src/ftfs/parser/model/types/annotations.d.ts.map +1 -0
  182. package/dist/specification/src/ftfs/parser/model/types/annotations.js +29 -0
  183. package/dist/specification/src/ftfs/parser/model/types/annotations.js.map +1 -0
  184. package/dist/specification/src/ftfs/parser/model/types/common.d.ts +13 -0
  185. package/dist/specification/src/ftfs/parser/model/types/common.d.ts.map +1 -0
  186. package/dist/{types/src/v4/controls/Action.js → specification/src/ftfs/parser/model/types/common.js} +1 -1
  187. package/dist/specification/src/ftfs/parser/model/types/common.js.map +1 -0
  188. package/dist/specification/src/ftfs/parser/model/types/index.d.ts +219 -0
  189. package/dist/specification/src/ftfs/parser/model/types/index.d.ts.map +1 -0
  190. package/dist/specification/src/ftfs/parser/model/types/index.js +156 -0
  191. package/dist/specification/src/ftfs/parser/model/types/index.js.map +1 -0
  192. package/dist/specification/src/ftfs/parser/model/utils/annotations.d.ts +38 -0
  193. package/dist/specification/src/ftfs/parser/model/utils/annotations.d.ts.map +1 -0
  194. package/dist/specification/src/ftfs/parser/model/utils/annotations.js +120 -0
  195. package/dist/specification/src/ftfs/parser/model/utils/annotations.js.map +1 -0
  196. package/dist/specification/src/ftfs/parser/model/utils/i18n.d.ts +33 -0
  197. package/dist/specification/src/ftfs/parser/model/utils/i18n.d.ts.map +1 -0
  198. package/dist/specification/src/ftfs/parser/model/utils/i18n.js +69 -0
  199. package/dist/specification/src/ftfs/parser/model/utils/i18n.js.map +1 -0
  200. package/dist/specification/src/ftfs/parser/model/utils/index.d.ts +6 -0
  201. package/dist/specification/src/ftfs/parser/model/utils/index.d.ts.map +1 -0
  202. package/dist/specification/src/ftfs/parser/model/utils/index.js +22 -0
  203. package/dist/specification/src/ftfs/parser/model/utils/index.js.map +1 -0
  204. package/dist/specification/src/ftfs/parser/model/utils/object.d.ts +25 -0
  205. package/dist/specification/src/ftfs/parser/model/utils/object.d.ts.map +1 -0
  206. package/dist/specification/src/ftfs/parser/model/utils/object.js +68 -0
  207. package/dist/specification/src/ftfs/parser/model/utils/object.js.map +1 -0
  208. package/dist/specification/src/ftfs/parser/model/utils/sort.d.ts +31 -0
  209. package/dist/specification/src/ftfs/parser/model/utils/sort.d.ts.map +1 -0
  210. package/dist/specification/src/ftfs/parser/model/utils/sort.js +18 -0
  211. package/dist/specification/src/ftfs/parser/model/utils/sort.js.map +1 -0
  212. package/dist/specification/src/ftfs/parser/model/utils/utils.d.ts +95 -0
  213. package/dist/specification/src/ftfs/parser/model/utils/utils.d.ts.map +1 -0
  214. package/dist/specification/src/ftfs/parser/model/utils/utils.js +267 -0
  215. package/dist/specification/src/ftfs/parser/model/utils/utils.js.map +1 -0
  216. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.d.ts +62 -0
  217. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.d.ts.map +1 -0
  218. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.js +111 -0
  219. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.js.map +1 -0
  220. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.d.ts +54 -0
  221. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.d.ts.map +1 -0
  222. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.js +144 -0
  223. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.js.map +1 -0
  224. package/dist/specification/src/ftfs/parser/model/views/index.d.ts +3 -0
  225. package/dist/specification/src/ftfs/parser/model/views/index.d.ts.map +1 -0
  226. package/dist/specification/src/ftfs/parser/model/views/index.js +19 -0
  227. package/dist/specification/src/ftfs/parser/model/views/index.js.map +1 -0
  228. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.d.ts +11 -0
  229. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.d.ts.map +1 -0
  230. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.js +18 -0
  231. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.js.map +1 -0
  232. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.d.ts +11 -0
  233. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.d.ts.map +1 -0
  234. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.js +18 -0
  235. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.js.map +1 -0
  236. package/dist/specification/src/ftfs/parser/model/visual-filters/index.d.ts +3 -0
  237. package/dist/specification/src/ftfs/parser/model/visual-filters/index.d.ts.map +1 -0
  238. package/dist/specification/src/ftfs/parser/model/visual-filters/index.js +19 -0
  239. package/dist/specification/src/ftfs/parser/model/visual-filters/index.js.map +1 -0
  240. package/dist/specification/src/sync/common/generate/objectPage.d.ts +1 -10
  241. package/dist/specification/src/sync/common/generate/objectPage.d.ts.map +1 -1
  242. package/dist/specification/src/sync/common/generate/objectPage.js +8 -63
  243. package/dist/specification/src/sync/common/generate/objectPage.js.map +1 -1
  244. package/dist/specification/src/sync/common/i18n.json +5 -4
  245. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  246. package/dist/specification/src/sync/common/utils.js +6 -1
  247. package/dist/specification/src/sync/common/utils.js.map +1 -1
  248. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  249. package/dist/specification/src/sync/v2/generate/listReport.js +1 -92
  250. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  251. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
  252. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -17
  253. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
  254. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +40 -0
  255. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -0
  256. package/dist/specification/src/sync/v2/generate/stableIdUtils.js +179 -0
  257. package/dist/specification/src/sync/v2/generate/stableIdUtils.js.map +1 -0
  258. package/dist/specification/src/sync/v2/generate/utils.d.ts +63 -3
  259. package/dist/specification/src/sync/v2/generate/utils.d.ts.map +1 -1
  260. package/dist/specification/src/sync/v2/generate/utils.js +191 -7
  261. package/dist/specification/src/sync/v2/generate/utils.js.map +1 -1
  262. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts +59 -0
  263. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts.map +1 -1
  264. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js +193 -4
  265. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js.map +1 -1
  266. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +8 -0
  267. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
  268. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +52 -7
  269. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
  270. package/dist/specification/src/sync/v4/application.d.ts +0 -2
  271. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  272. package/dist/specification/src/sync/v4/application.js +1 -29
  273. package/dist/specification/src/sync/v4/application.js.map +1 -1
  274. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +0 -1
  275. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
  276. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +0 -10
  277. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
  278. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.d.ts +0 -2
  279. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.d.ts.map +1 -1
  280. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.js +0 -20
  281. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.js.map +1 -1
  282. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.d.ts +2 -6
  283. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.d.ts.map +1 -1
  284. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.js +4 -27
  285. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.js.map +1 -1
  286. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.d.ts +0 -1
  287. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.d.ts.map +1 -1
  288. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.js +0 -10
  289. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.js.map +1 -1
  290. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.d.ts +2 -7
  291. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.d.ts.map +1 -1
  292. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.js +4 -37
  293. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.js.map +1 -1
  294. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.d.ts +0 -1
  295. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.d.ts.map +1 -1
  296. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.js +0 -10
  297. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.js.map +1 -1
  298. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +2 -7
  299. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts.map +1 -1
  300. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.js +3 -36
  301. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.js.map +1 -1
  302. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts +0 -2
  303. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
  304. package/dist/specification/src/sync/v4/export/controls/TableColumn.js +0 -20
  305. package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  306. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +4 -14
  307. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
  308. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +9 -75
  309. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
  310. package/dist/specification/src/sync/v4/export/manifest.js +1 -1
  311. package/dist/specification/src/sync/v4/export/manifest.js.map +1 -1
  312. package/dist/specification/src/sync/v4/generate/objectPage.d.ts +0 -1
  313. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  314. package/dist/specification/src/sync/v4/generate/objectPage.js +3 -12
  315. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  316. package/dist/specification/src/sync/v4/import/app/appProvider.d.ts.map +1 -1
  317. package/dist/specification/src/sync/v4/import/app/appProvider.js +3 -0
  318. package/dist/specification/src/sync/v4/import/app/appProvider.js.map +1 -1
  319. package/dist/specification/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
  320. package/dist/specification/src/sync/v4/import/pages/listReport.js +3 -1
  321. package/dist/specification/src/sync/v4/import/pages/listReport.js.map +1 -1
  322. package/dist/specification/src/sync/v4/utils/utils.d.ts +1 -3
  323. package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
  324. package/dist/specification/src/sync/v4/utils/utils.js +21 -47
  325. package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
  326. package/dist/types/src/apiTypes.d.ts +22 -0
  327. package/dist/types/src/apiTypes.d.ts.map +1 -1
  328. package/dist/types/src/apiTypes.js.map +1 -1
  329. package/dist/types/src/common/types.d.ts +0 -5
  330. package/dist/types/src/common/types.d.ts.map +1 -1
  331. package/dist/types/src/common/types.js +0 -5
  332. package/dist/types/src/common/types.js.map +1 -1
  333. package/dist/types/src/index.d.ts +1 -0
  334. package/dist/types/src/index.d.ts.map +1 -1
  335. package/dist/types/src/index.js +2 -1
  336. package/dist/types/src/index.js.map +1 -1
  337. package/dist/types/src/parser/application.d.ts +22 -0
  338. package/dist/types/src/parser/application.d.ts.map +1 -0
  339. package/dist/types/src/parser/application.js +3 -0
  340. package/dist/types/src/parser/application.js.map +1 -0
  341. package/dist/types/src/parser/index.d.ts +3 -0
  342. package/dist/types/src/parser/index.d.ts.map +1 -0
  343. package/dist/types/src/parser/index.js +18 -0
  344. package/dist/types/src/parser/index.js.map +1 -0
  345. package/dist/types/src/parser/model.d.ts +17 -0
  346. package/dist/types/src/parser/model.d.ts.map +1 -0
  347. package/dist/types/src/parser/model.js +3 -0
  348. package/dist/types/src/parser/model.js.map +1 -0
  349. package/dist/types/src/v4/controls/CustomAction.d.ts +1 -2
  350. package/dist/types/src/v4/controls/CustomAction.d.ts.map +1 -1
  351. package/dist/types/src/v4/controls/CustomAction.js.map +1 -1
  352. package/dist/types/src/v4/controls/ObjectPageFooter.d.ts +1 -2
  353. package/dist/types/src/v4/controls/ObjectPageFooter.d.ts.map +1 -1
  354. package/dist/types/src/v4/controls/ObjectPageForm.d.ts +3 -6
  355. package/dist/types/src/v4/controls/ObjectPageForm.d.ts.map +1 -1
  356. package/dist/types/src/v4/controls/ObjectPageHeader.d.ts +3 -6
  357. package/dist/types/src/v4/controls/ObjectPageHeader.d.ts.map +1 -1
  358. package/dist/types/src/v4/controls/ObjectPageToolBar.d.ts +7 -10
  359. package/dist/types/src/v4/controls/ObjectPageToolBar.d.ts.map +1 -1
  360. package/dist/types/src/v4/controls/Table.d.ts +0 -5
  361. package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
  362. package/dist/types/src/v4/controls/ToolBar.d.ts +14 -19
  363. package/dist/types/src/v4/controls/ToolBar.d.ts.map +1 -1
  364. package/dist/types/src/v4/controls/ToolBar.js.map +1 -1
  365. package/package.json +9 -8
  366. package/dist/specification/src/ftfs/annotations.d.ts +0 -12
  367. package/dist/specification/src/ftfs/annotations.d.ts.map +0 -1
  368. package/dist/specification/src/ftfs/annotations.js +0 -50
  369. package/dist/specification/src/ftfs/annotations.js.map +0 -1
  370. package/dist/types/src/v4/controls/Action.d.ts +0 -10
  371. package/dist/types/src/v4/controls/Action.d.ts.map +0 -1
  372. package/dist/types/src/v4/controls/Action.js.map +0 -1
@@ -15,6 +15,10 @@
15
15
  "$ref": "#/definitions/ListReportFilterBar",
16
16
  "description": "Filter Bar"
17
17
  },
18
+ "footer": {
19
+ "$ref": "#/definitions/Toolbar",
20
+ "description": "Footer"
21
+ },
18
22
  "$schema": {
19
23
  "type": "string"
20
24
  }
@@ -413,6 +417,81 @@
413
417
  "YESTERDAY"
414
418
  ],
415
419
  "type": "string"
420
+ },
421
+ "Toolbar": {
422
+ "description": "Toolbar",
423
+ "isViewNode": true,
424
+ "type": "object",
425
+ "properties": {
426
+ "actions": {
427
+ "$ref": "#/definitions/Actions"
428
+ }
429
+ },
430
+ "additionalProperties": false,
431
+ "required": [
432
+ "actions"
433
+ ]
434
+ },
435
+ "Actions": {
436
+ "description": "Actions",
437
+ "isViewNode": true,
438
+ "type": "object",
439
+ "additionalProperties": {
440
+ "$ref": "#/definitions/Action"
441
+ }
442
+ },
443
+ "Action": {
444
+ "description": "Action",
445
+ "isViewNode": true,
446
+ "type": "object",
447
+ "properties": {
448
+ "tooltip": {
449
+ "description": "The text of the button tooltip, preferably as an i18n key.",
450
+ "i18nClassification": "ACT: Text for tooltip of button.",
451
+ "type": "string",
452
+ "artifactType": "FlexChange",
453
+ "controlType": "sap.m.Button"
454
+ },
455
+ "icon": {
456
+ "description": "An icon to be displayed as a graphical element within the button.\nThis can be an image or an icon from the Icon Explorer (https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
457
+ "type": "string",
458
+ "artifactType": "FlexChange",
459
+ "controlType": "sap.m.Button"
460
+ },
461
+ "activeIcon": {
462
+ "description": "An alternative icon for the active (depressed) state of the button.\nThis can be an image or an icon from the Icon Explorer (https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
463
+ "type": "string",
464
+ "artifactType": "FlexChange",
465
+ "controlType": "sap.m.Button"
466
+ },
467
+ "type": {
468
+ "$ref": "#/definitions/ButtonType",
469
+ "description": "Defines the Button type.",
470
+ "artifactType": "FlexChange",
471
+ "controlType": "sap.m.Button"
472
+ }
473
+ },
474
+ "additionalProperties": false
475
+ },
476
+ "ButtonType": {
477
+ "description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.\n\nThis enum is part of the 'sap/m/library' module export and must be accessed by the property 'ButtonType'.",
478
+ "enum": [
479
+ "Accept",
480
+ "Attention",
481
+ "Back",
482
+ "Critical",
483
+ "Default",
484
+ "Emphasized",
485
+ "Ghost",
486
+ "Negative",
487
+ "Neutral",
488
+ "Reject",
489
+ "Success",
490
+ "Transparent",
491
+ "Unstyled",
492
+ "Up"
493
+ ],
494
+ "type": "string"
416
495
  }
417
496
  },
418
497
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -40,14 +40,6 @@
40
40
  "type": "Property"
41
41
  }
42
42
  },
43
- "filterBar": {
44
- "type": "string",
45
- "description": "Id of the FilterBar building block associated with the chart.",
46
- "artifactType": "XMLProperty",
47
- "metadata": {
48
- "type": "Property"
49
- }
50
- },
51
43
  "header": {
52
44
  "type": "string",
53
45
  "description": "Specifies the header text that is shown in the chart",
@@ -111,6 +103,17 @@
111
103
  "type": "Property"
112
104
  }
113
105
  },
106
+ "actionOverflowGroups": {
107
+ "type": "object",
108
+ "additionalProperties": {
109
+ "$ref": "#/definitions/sap.fe.macros.chart.OverflowGroup"
110
+ },
111
+ "isViewNode": true,
112
+ "metadata": {
113
+ "path": [],
114
+ "type": "Aggregation"
115
+ }
116
+ },
114
117
  "actions": {
115
118
  "type": "object",
116
119
  "additionalProperties": {
@@ -174,9 +177,17 @@
174
177
  "type": "Property"
175
178
  }
176
179
  },
180
+ "avatarPress": {
181
+ "type": "string",
182
+ "description": "Event fired when the user clicks on the avatar.\nParameters:\n- lockingUserID: The ID of the user locking the property\n- lockingUserName: The name of the user locking the property\n- lockingUserInitials: The initials of the user locking the property\n- lockingUserColor: The color associated to the user locking the property\n",
183
+ "artifactType": "XMLProperty",
184
+ "metadata": {
185
+ "type": "Event"
186
+ }
187
+ },
177
188
  "lockChange": {
178
189
  "type": "string",
179
- "description": "Event fired when the lock status changes.\nParameters:\n- isLocked : true if the property is locked, false otherwise\n- lockingUserID: the ID of the user locking the property (undefined if not locked)\n- lockingUserName: the name of the user locking the property (undefined if not locked)\n- lockingUserInitials: the initials of the user locking the property (undefined if not locked)\n- lockingUserColor: the color associated to the user locking the property (undefined if not locked)\n",
190
+ "description": "Event fired when the lock status changes.\nParameters:\n- isLocked : True if the property is locked, false otherwise\n- lockingUserID: The ID of the user locking the property (undefined if not locked)\n- lockingUserName: The name of the user locking the property (undefined if not locked)\n- lockingUserInitials: The initials of the user locking the property (undefined if not locked)\n- lockingUserColor: The color associated to the user locking the property (undefined if not locked)\n",
180
191
  "artifactType": "XMLProperty",
181
192
  "metadata": {
182
193
  "type": "Event"
@@ -446,7 +457,7 @@
446
457
  "type": "object",
447
458
  "properties": {
448
459
  "number": {
449
- "type": "any",
460
+ "type": "string",
450
461
  "description": "The Number to be displayed.",
451
462
  "artifactType": "XMLProperty",
452
463
  "metadata": {
@@ -462,15 +473,22 @@
462
473
  }
463
474
  },
464
475
  "status": {
465
- "type": "any",
476
+ "type": "string",
466
477
  "description": "The Status to be displayed.",
467
478
  "artifactType": "XMLProperty",
468
479
  "metadata": {
469
480
  "type": "Property"
470
- }
481
+ },
482
+ "enum": [
483
+ "Success",
484
+ "Error",
485
+ "Warning",
486
+ "None",
487
+ "Information"
488
+ ]
471
489
  },
472
490
  "text": {
473
- "type": "any",
491
+ "type": "string",
474
492
  "description": "The Text to be displayed.",
475
493
  "artifactType": "XMLProperty",
476
494
  "metadata": {
@@ -479,7 +497,7 @@
479
497
  "i18nClassification": "TXT: Text of the KPITag"
480
498
  },
481
499
  "tooltip": {
482
- "type": "any",
500
+ "type": "string",
483
501
  "description": "The Tooltip to be displayed.",
484
502
  "artifactType": "XMLProperty",
485
503
  "metadata": {
@@ -488,7 +506,7 @@
488
506
  "i18nClassification": "CAP: Tooltip of the KPITag"
489
507
  },
490
508
  "unit": {
491
- "type": "any",
509
+ "type": "string",
492
510
  "description": "The Unit of Measure of the number to be displayed.",
493
511
  "artifactType": "XMLProperty",
494
512
  "metadata": {
@@ -625,7 +643,13 @@
625
643
  "artifactType": "XMLProperty",
626
644
  "metadata": {
627
645
  "type": "Property"
628
- }
646
+ },
647
+ "enum": [
648
+ "XS",
649
+ "S",
650
+ "M",
651
+ "L"
652
+ ]
629
653
  },
630
654
  "id": {
631
655
  "type": "string",
@@ -925,6 +949,18 @@
925
949
  "isViewNode": true,
926
950
  "type": "object",
927
951
  "properties": {
952
+ "colorPalette": {
953
+ "type": "string",
954
+ "description": "Color palette to be used by the control. The supported values are \"Standard\" (default) and \"Pastel\".",
955
+ "artifactType": "XMLProperty",
956
+ "metadata": {
957
+ "type": "Property"
958
+ },
959
+ "enum": [
960
+ "Standard",
961
+ "Pastel"
962
+ ]
963
+ },
928
964
  "contextPath": {
929
965
  "type": "string",
930
966
  "description": "Context path for the binding context.",
@@ -997,15 +1033,6 @@
997
1033
  "isViewNode": true,
998
1034
  "type": "object",
999
1035
  "properties": {
1000
- "for": {
1001
- "$ref": "#/definitions/string[]",
1002
- "description": "for",
1003
- "artifactType": "XMLProperty",
1004
- "isViewNode": true,
1005
- "metadata": {
1006
- "type": "Property"
1007
- }
1008
- },
1009
1036
  "headerLevel": {
1010
1037
  "type": "string",
1011
1038
  "description": "Header level for the variant management, determining its position or style.",
@@ -1066,6 +1093,14 @@
1066
1093
  "type": "Property"
1067
1094
  }
1068
1095
  },
1096
+ "overflowGroup": {
1097
+ "type": "number",
1098
+ "description": "Defines the overflow group of the action in the overflow toolbar.",
1099
+ "artifactType": "XMLProperty",
1100
+ "metadata": {
1101
+ "type": "Property"
1102
+ }
1103
+ },
1069
1104
  "placement": {
1070
1105
  "type": "string",
1071
1106
  "description": "Defines where this action should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
@@ -1139,6 +1174,14 @@
1139
1174
  "type": "Property"
1140
1175
  }
1141
1176
  },
1177
+ "overflowGroup": {
1178
+ "type": "number",
1179
+ "description": "Defines the overflow group of the action in the overflow toolbar.",
1180
+ "artifactType": "XMLProperty",
1181
+ "metadata": {
1182
+ "type": "Property"
1183
+ }
1184
+ },
1142
1185
  "placement": {
1143
1186
  "type": "string",
1144
1187
  "description": "Defines where this action group should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
@@ -1200,14 +1243,6 @@
1200
1243
  "type": "Property"
1201
1244
  }
1202
1245
  },
1203
- "filterBar": {
1204
- "type": "string",
1205
- "description": "Id of the FilterBar building block associated with the chart.",
1206
- "artifactType": "XMLProperty",
1207
- "metadata": {
1208
- "type": "Property"
1209
- }
1210
- },
1211
1246
  "header": {
1212
1247
  "type": "string",
1213
1248
  "description": "Specifies the header text that is shown in the chart",
@@ -1270,6 +1305,17 @@
1270
1305
  "type": "Property"
1271
1306
  }
1272
1307
  },
1308
+ "actionOverflowGroups": {
1309
+ "type": "object",
1310
+ "additionalProperties": {
1311
+ "$ref": "#/definitions/sap.fe.macros.chart.OverflowGroup"
1312
+ },
1313
+ "isViewNode": true,
1314
+ "metadata": {
1315
+ "path": [],
1316
+ "type": "Aggregation"
1317
+ }
1318
+ },
1273
1319
  "actions": {
1274
1320
  "type": "object",
1275
1321
  "additionalProperties": {
@@ -1296,6 +1342,42 @@
1296
1342
  "type": "Control"
1297
1343
  }
1298
1344
  },
1345
+ "sap.fe.macros.chart.OverflowGroup": {
1346
+ "description": "Definition of an overflow group to be used in the chart toolbar",
1347
+ "isViewNode": true,
1348
+ "type": "object",
1349
+ "properties": {
1350
+ "overflowGroup": {
1351
+ "type": "number",
1352
+ "description": "Defines the group of the toolbar separator in the overflow toolbar.",
1353
+ "artifactType": "XMLProperty",
1354
+ "metadata": {
1355
+ "type": "Property"
1356
+ }
1357
+ },
1358
+ "showSeparator": {
1359
+ "type": "boolean",
1360
+ "description": "Defines if a toolbar separator should be displayed.",
1361
+ "artifactType": "XMLProperty",
1362
+ "metadata": {
1363
+ "type": "Property"
1364
+ }
1365
+ },
1366
+ "id": {
1367
+ "type": "string",
1368
+ "description": "Unique id of control",
1369
+ "artifactType": "XMLProperty",
1370
+ "metadata": {
1371
+ "type": "Property"
1372
+ }
1373
+ }
1374
+ },
1375
+ "additionalProperties": false,
1376
+ "metadata": {
1377
+ "path": [],
1378
+ "type": "Control"
1379
+ }
1380
+ },
1299
1381
  "sap.fe.macros.controls.BuildingBlockObjectProperty": {
1300
1382
  "description": "Base class for building block complex object properties that can be serialized to XML.",
1301
1383
  "isViewNode": true,
@@ -1499,7 +1581,10 @@
1499
1581
  "metadata": {
1500
1582
  "type": "Property"
1501
1583
  },
1502
- "const": "RadioButtons"
1584
+ "enum": [
1585
+ "RadioButtons",
1586
+ ""
1587
+ ]
1503
1588
  },
1504
1589
  "measureDisplayMode": {
1505
1590
  "type": "string",
@@ -1916,6 +2001,14 @@
1916
2001
  "type": "Property"
1917
2002
  }
1918
2003
  },
2004
+ "layout": {
2005
+ "type": "object",
2006
+ "description": "Defines the layout to be used within the form.\nIt defaults to the ColumnLayout, but you can also use a ResponsiveGridLayout.\nAll the properties of the ResponsiveGridLayout can be added to the configuration.",
2007
+ "artifactType": "XMLProperty",
2008
+ "metadata": {
2009
+ "type": "Property"
2010
+ }
2011
+ },
1919
2012
  "metaPath": {
1920
2013
  "$ref": "#/definitions/sap.ui.model.Context",
1921
2014
  "description": "metaPath",
@@ -1992,7 +2085,13 @@
1992
2085
  "artifactType": "XMLProperty",
1993
2086
  "metadata": {
1994
2087
  "type": "Property"
1995
- }
2088
+ },
2089
+ "enum": [
2090
+ "XS",
2091
+ "S",
2092
+ "M",
2093
+ "L"
2094
+ ]
1996
2095
  },
1997
2096
  "id": {
1998
2097
  "type": "string",
@@ -2182,6 +2281,14 @@
2182
2281
  "type": "Property"
2183
2282
  }
2184
2283
  },
2284
+ "overflowGroup": {
2285
+ "type": "number",
2286
+ "description": "Defines the overflow group of the action in the overflow toolbar.",
2287
+ "artifactType": "XMLProperty",
2288
+ "metadata": {
2289
+ "type": "Property"
2290
+ }
2291
+ },
2185
2292
  "placement": {
2186
2293
  "type": "string",
2187
2294
  "description": "Defines where this action should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
@@ -2194,6 +2301,14 @@
2194
2301
  "Before"
2195
2302
  ]
2196
2303
  },
2304
+ "priority": {
2305
+ "type": "string",
2306
+ "description": "Defines the priority of the action in the overflow toolbar.",
2307
+ "artifactType": "XMLProperty",
2308
+ "metadata": {
2309
+ "type": "Property"
2310
+ }
2311
+ },
2197
2312
  "requiresSelection": {
2198
2313
  "type": "boolean",
2199
2314
  "description": "Defines if the action requires a selection.",
@@ -2271,6 +2386,14 @@
2271
2386
  "type": "Property"
2272
2387
  }
2273
2388
  },
2389
+ "overflowGroup": {
2390
+ "type": "number",
2391
+ "description": "Defines the overflow group of the action in the overflow toolbar.",
2392
+ "artifactType": "XMLProperty",
2393
+ "metadata": {
2394
+ "type": "Property"
2395
+ }
2396
+ },
2274
2397
  "placement": {
2275
2398
  "type": "string",
2276
2399
  "description": "Determines where this action group should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
@@ -2283,6 +2406,14 @@
2283
2406
  "Before"
2284
2407
  ]
2285
2408
  },
2409
+ "priority": {
2410
+ "type": "string",
2411
+ "description": "Defines the priority of the action in the overflow toolbar.",
2412
+ "artifactType": "XMLProperty",
2413
+ "metadata": {
2414
+ "type": "Property"
2415
+ }
2416
+ },
2286
2417
  "text": {
2287
2418
  "type": "string",
2288
2419
  "description": "The text that will be displayed for this action group",
@@ -2903,6 +3034,42 @@
2903
3034
  "defaultAggregation": "customContent"
2904
3035
  }
2905
3036
  },
3037
+ "sap.fe.macros.table.OverflowGroup": {
3038
+ "description": "Configuration of toolbar separators to be used inside the table toolbar",
3039
+ "isViewNode": true,
3040
+ "type": "object",
3041
+ "properties": {
3042
+ "overflowGroup": {
3043
+ "type": "number",
3044
+ "description": "Defines the group of the toolbar separator in the overflow toolbar.",
3045
+ "artifactType": "XMLProperty",
3046
+ "metadata": {
3047
+ "type": "Property"
3048
+ }
3049
+ },
3050
+ "showSeparator": {
3051
+ "type": "boolean",
3052
+ "description": "Defines if a toolbar separator should be displayed.",
3053
+ "artifactType": "XMLProperty",
3054
+ "metadata": {
3055
+ "type": "Property"
3056
+ }
3057
+ },
3058
+ "id": {
3059
+ "type": "string",
3060
+ "description": "Unique id of control",
3061
+ "artifactType": "XMLProperty",
3062
+ "metadata": {
3063
+ "type": "Property"
3064
+ }
3065
+ }
3066
+ },
3067
+ "additionalProperties": false,
3068
+ "metadata": {
3069
+ "path": [],
3070
+ "type": "Control"
3071
+ }
3072
+ },
2906
3073
  "sap.fe.macros.table.QuickVariantSelection": {
2907
3074
  "description": "Definition of the quickVariantSelection to be used inside the table.",
2908
3075
  "isViewNode": true,
@@ -3275,6 +3442,17 @@
3275
3442
  "type": "Property"
3276
3443
  }
3277
3444
  },
3445
+ "actionOverflowGroups": {
3446
+ "type": "object",
3447
+ "additionalProperties": {
3448
+ "$ref": "#/definitions/sap.fe.macros.table.OverflowGroup"
3449
+ },
3450
+ "isViewNode": true,
3451
+ "metadata": {
3452
+ "path": [],
3453
+ "type": "Aggregation"
3454
+ }
3455
+ },
3278
3456
  "actions": {
3279
3457
  "type": "object",
3280
3458
  "additionalProperties": {
@@ -3329,7 +3507,7 @@
3329
3507
  },
3330
3508
  "rowPress": {
3331
3509
  "type": "string",
3332
- "description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
3510
+ "description": "An event is triggered when the user chooses a row. The event contains information about which row is chosen.\nYou can set this to handle the navigation manually.\n",
3333
3511
  "artifactType": "XMLProperty",
3334
3512
  "metadata": {
3335
3513
  "type": "Event"
@@ -3681,6 +3859,17 @@
3681
3859
  "type": "Property"
3682
3860
  }
3683
3861
  },
3862
+ "actionOverflowGroups": {
3863
+ "type": "object",
3864
+ "additionalProperties": {
3865
+ "$ref": "#/definitions/sap.fe.macros.table.OverflowGroup"
3866
+ },
3867
+ "isViewNode": true,
3868
+ "metadata": {
3869
+ "path": [],
3870
+ "type": "Aggregation"
3871
+ }
3872
+ },
3684
3873
  "actions": {
3685
3874
  "type": "object",
3686
3875
  "additionalProperties": {
@@ -3735,7 +3924,7 @@
3735
3924
  },
3736
3925
  "rowPress": {
3737
3926
  "type": "string",
3738
- "description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
3927
+ "description": "An event is triggered when the user chooses a row. The event contains information about which row is chosen.\nYou can set this to handle the navigation manually.\n",
3739
3928
  "artifactType": "XMLProperty",
3740
3929
  "metadata": {
3741
3930
  "type": "Event"
@@ -4189,6 +4378,17 @@
4189
4378
  "type": "Property"
4190
4379
  }
4191
4380
  },
4381
+ "actionOverflowGroups": {
4382
+ "type": "object",
4383
+ "additionalProperties": {
4384
+ "$ref": "#/definitions/sap.fe.macros.table.OverflowGroup"
4385
+ },
4386
+ "isViewNode": true,
4387
+ "metadata": {
4388
+ "path": [],
4389
+ "type": "Aggregation"
4390
+ }
4391
+ },
4192
4392
  "actions": {
4193
4393
  "type": "object",
4194
4394
  "additionalProperties": {
@@ -4243,7 +4443,7 @@
4243
4443
  },
4244
4444
  "rowPress": {
4245
4445
  "type": "string",
4246
- "description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
4446
+ "description": "An event is triggered when the user chooses a row. The event contains information about which row is chosen.\nYou can set this to handle the navigation manually.\n",
4247
4447
  "artifactType": "XMLProperty",
4248
4448
  "metadata": {
4249
4449
  "type": "Event"
@@ -4630,6 +4830,17 @@
4630
4830
  "type": "Property"
4631
4831
  }
4632
4832
  },
4833
+ "actionOverflowGroups": {
4834
+ "type": "object",
4835
+ "additionalProperties": {
4836
+ "$ref": "#/definitions/sap.fe.macros.table.OverflowGroup"
4837
+ },
4838
+ "isViewNode": true,
4839
+ "metadata": {
4840
+ "path": [],
4841
+ "type": "Aggregation"
4842
+ }
4843
+ },
4633
4844
  "actions": {
4634
4845
  "type": "object",
4635
4846
  "additionalProperties": {
@@ -4684,7 +4895,7 @@
4684
4895
  },
4685
4896
  "rowPress": {
4686
4897
  "type": "string",
4687
- "description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
4898
+ "description": "An event is triggered when the user chooses a row. The event contains information about which row is chosen.\nYou can set this to handle the navigation manually.\n",
4688
4899
  "artifactType": "XMLProperty",
4689
4900
  "metadata": {
4690
4901
  "type": "Event"
@@ -4835,6 +5046,16 @@
4835
5046
  "defaultAggregation": "actions"
4836
5047
  }
4837
5048
  },
5049
+ "sap.fe.macros.CollectionBindingInfo.SerializedCollectionBindingInfo": {
5050
+ "isViewNode": true,
5051
+ "type": "object",
5052
+ "properties": {},
5053
+ "additionalProperties": false,
5054
+ "metadata": {
5055
+ "path": [],
5056
+ "type": "Control"
5057
+ }
5058
+ },
4838
5059
  "sap.fe.macros.controls.section.ISingleSectionContributor.ConsumerData": {
4839
5060
  "description": "Definition of data consumer by section from single control",
4840
5061
  "isViewNode": true,