@sap/ux-specification 1.136.10 → 1.136.12

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 (369) hide show
  1. package/CHANGELOG.md +67 -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 +440 -135
  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 +90 -546
  17. package/dist/schemas/v4/ListReportConfig.json +33 -38
  18. package/dist/schemas/v4/ObjectPageConfig.json +70 -3
  19. package/dist/specification/package.json +13 -9
  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.d.ts +1 -0
  24. package/dist/specification/src/api.d.ts.map +1 -1
  25. package/dist/specification/src/api.js +7 -4
  26. package/dist/specification/src/api.js.map +1 -1
  27. package/dist/specification/src/ftfs/ftfs.d.ts +9 -0
  28. package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -0
  29. package/dist/specification/src/ftfs/ftfs.js +82 -0
  30. package/dist/specification/src/ftfs/ftfs.js.map +1 -0
  31. package/dist/specification/src/ftfs/index.d.ts +2 -0
  32. package/dist/specification/src/ftfs/index.d.ts.map +1 -0
  33. package/dist/specification/src/ftfs/index.js +6 -0
  34. package/dist/specification/src/ftfs/index.js.map +1 -0
  35. package/dist/specification/src/ftfs/parser/annotations.d.ts +9 -0
  36. package/dist/specification/src/ftfs/parser/annotations.d.ts.map +1 -0
  37. package/dist/specification/src/ftfs/parser/annotations.js +13 -0
  38. package/dist/specification/src/ftfs/parser/annotations.js.map +1 -0
  39. package/dist/specification/src/ftfs/parser/index.d.ts +15 -0
  40. package/dist/specification/src/ftfs/parser/index.d.ts.map +1 -0
  41. package/dist/specification/src/ftfs/parser/index.js +35 -0
  42. package/dist/specification/src/ftfs/parser/index.js.map +1 -0
  43. package/dist/specification/src/ftfs/parser/model/AggregationValidator.d.ts +65 -0
  44. package/dist/specification/src/ftfs/parser/model/AggregationValidator.d.ts.map +1 -0
  45. package/dist/specification/src/ftfs/parser/model/AggregationValidator.js +209 -0
  46. package/dist/specification/src/ftfs/parser/model/AggregationValidator.js.map +1 -0
  47. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.d.ts +49 -0
  48. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.d.ts.map +1 -0
  49. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.js +122 -0
  50. package/dist/specification/src/ftfs/parser/model/ArrayAggregation.js.map +1 -0
  51. package/dist/specification/src/ftfs/parser/model/NodeProperty.d.ts +38 -0
  52. package/dist/specification/src/ftfs/parser/model/NodeProperty.d.ts.map +1 -0
  53. package/dist/specification/src/ftfs/parser/model/NodeProperty.js +25 -0
  54. package/dist/specification/src/ftfs/parser/model/NodeProperty.js.map +1 -0
  55. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.d.ts +339 -0
  56. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.d.ts.map +1 -0
  57. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.js +682 -0
  58. package/dist/specification/src/ftfs/parser/model/ObjectAggregation.js.map +1 -0
  59. package/dist/specification/src/ftfs/parser/model/RootAggregation.d.ts +24 -0
  60. package/dist/specification/src/ftfs/parser/model/RootAggregation.d.ts.map +1 -0
  61. package/dist/specification/src/ftfs/parser/model/RootAggregation.js +57 -0
  62. package/dist/specification/src/ftfs/parser/model/RootAggregation.js.map +1 -0
  63. package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts +224 -0
  64. package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -0
  65. package/dist/specification/src/ftfs/parser/model/TreeModel.js +947 -0
  66. package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -0
  67. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.d.ts +34 -0
  68. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.d.ts.map +1 -0
  69. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.js +94 -0
  70. package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.js.map +1 -0
  71. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.d.ts +67 -0
  72. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.d.ts.map +1 -0
  73. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.js +113 -0
  74. package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.js.map +1 -0
  75. package/dist/specification/src/ftfs/parser/model/actions/index.d.ts +3 -0
  76. package/dist/specification/src/ftfs/parser/model/actions/index.d.ts.map +1 -0
  77. package/dist/specification/src/ftfs/parser/model/actions/index.js +19 -0
  78. package/dist/specification/src/ftfs/parser/model/actions/index.js.map +1 -0
  79. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.d.ts +17 -0
  80. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.d.ts.map +1 -0
  81. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.js +29 -0
  82. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.js.map +1 -0
  83. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.d.ts +46 -0
  84. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.d.ts.map +1 -0
  85. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.js +66 -0
  86. package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.js.map +1 -0
  87. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.d.ts +3 -0
  88. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.d.ts.map +1 -0
  89. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.js +19 -0
  90. package/dist/specification/src/ftfs/parser/model/additionalObjects/index.js.map +1 -0
  91. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.d.ts +21 -0
  92. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.d.ts.map +1 -0
  93. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.js +30 -0
  94. package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.js.map +1 -0
  95. package/dist/specification/src/ftfs/parser/model/chart/index.d.ts +2 -0
  96. package/dist/specification/src/ftfs/parser/model/chart/index.d.ts.map +1 -0
  97. package/dist/specification/src/ftfs/parser/model/chart/index.js +18 -0
  98. package/dist/specification/src/ftfs/parser/model/chart/index.js.map +1 -0
  99. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.d.ts +9 -0
  100. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.d.ts.map +1 -0
  101. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.js +16 -0
  102. package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.js.map +1 -0
  103. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.d.ts +25 -0
  104. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.d.ts.map +1 -0
  105. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.js +45 -0
  106. package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.js.map +1 -0
  107. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.d.ts +22 -0
  108. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.d.ts.map +1 -0
  109. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.js +37 -0
  110. package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.js.map +1 -0
  111. package/dist/specification/src/ftfs/parser/model/fields/index.d.ts +4 -0
  112. package/dist/specification/src/ftfs/parser/model/fields/index.d.ts.map +1 -0
  113. package/dist/specification/src/ftfs/parser/model/fields/index.js +20 -0
  114. package/dist/specification/src/ftfs/parser/model/fields/index.js.map +1 -0
  115. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.d.ts +39 -0
  116. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.d.ts.map +1 -0
  117. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.js +97 -0
  118. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.js.map +1 -0
  119. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.d.ts +36 -0
  120. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.d.ts.map +1 -0
  121. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.js +59 -0
  122. package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.js.map +1 -0
  123. package/dist/specification/src/ftfs/parser/model/filter-fields/index.d.ts +3 -0
  124. package/dist/specification/src/ftfs/parser/model/filter-fields/index.d.ts.map +1 -0
  125. package/dist/specification/src/ftfs/parser/model/filter-fields/index.js +19 -0
  126. package/dist/specification/src/ftfs/parser/model/filter-fields/index.js.map +1 -0
  127. package/dist/specification/src/ftfs/parser/model/index.d.ts +19 -0
  128. package/dist/specification/src/ftfs/parser/model/index.d.ts.map +1 -0
  129. package/dist/specification/src/ftfs/parser/model/index.js +35 -0
  130. package/dist/specification/src/ftfs/parser/model/index.js.map +1 -0
  131. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.d.ts +29 -0
  132. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.d.ts.map +1 -0
  133. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.js +50 -0
  134. package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.js.map +1 -0
  135. package/dist/specification/src/ftfs/parser/model/macros/index.d.ts +2 -0
  136. package/dist/specification/src/ftfs/parser/model/macros/index.d.ts.map +1 -0
  137. package/dist/specification/src/ftfs/parser/model/macros/index.js +18 -0
  138. package/dist/specification/src/ftfs/parser/model/macros/index.js.map +1 -0
  139. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.d.ts +31 -0
  140. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.d.ts.map +1 -0
  141. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.js +82 -0
  142. package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.js.map +1 -0
  143. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.d.ts +78 -0
  144. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.d.ts.map +1 -0
  145. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.js +126 -0
  146. package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.js.map +1 -0
  147. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.d.ts +135 -0
  148. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.d.ts.map +1 -0
  149. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.js +402 -0
  150. package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.js.map +1 -0
  151. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.d.ts +50 -0
  152. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.d.ts.map +1 -0
  153. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.js +120 -0
  154. package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.js.map +1 -0
  155. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.d.ts +39 -0
  156. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.d.ts.map +1 -0
  157. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.js +70 -0
  158. package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.js.map +1 -0
  159. package/dist/specification/src/ftfs/parser/model/sections/index.d.ts +6 -0
  160. package/dist/specification/src/ftfs/parser/model/sections/index.d.ts.map +1 -0
  161. package/dist/specification/src/ftfs/parser/model/sections/index.js +22 -0
  162. package/dist/specification/src/ftfs/parser/model/sections/index.js.map +1 -0
  163. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.d.ts +89 -0
  164. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.d.ts.map +1 -0
  165. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.js +175 -0
  166. package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.js.map +1 -0
  167. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.d.ts +113 -0
  168. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.d.ts.map +1 -0
  169. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.js +290 -0
  170. package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.js.map +1 -0
  171. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.d.ts +13 -0
  172. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.d.ts.map +1 -0
  173. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.js +21 -0
  174. package/dist/specification/src/ftfs/parser/model/table/TableAggregation.js.map +1 -0
  175. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.d.ts +15 -0
  176. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.d.ts.map +1 -0
  177. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.js +22 -0
  178. package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.js.map +1 -0
  179. package/dist/specification/src/ftfs/parser/model/table/index.d.ts +5 -0
  180. package/dist/specification/src/ftfs/parser/model/table/index.d.ts.map +1 -0
  181. package/dist/specification/src/ftfs/parser/model/table/index.js +21 -0
  182. package/dist/specification/src/ftfs/parser/model/table/index.js.map +1 -0
  183. package/dist/specification/src/ftfs/parser/model/table/utils.d.ts +12 -0
  184. package/dist/specification/src/ftfs/parser/model/table/utils.d.ts.map +1 -0
  185. package/dist/specification/src/ftfs/parser/model/table/utils.js +44 -0
  186. package/dist/specification/src/ftfs/parser/model/table/utils.js.map +1 -0
  187. package/dist/specification/src/ftfs/parser/model/types/annotations.d.ts +63 -0
  188. package/dist/specification/src/ftfs/parser/model/types/annotations.d.ts.map +1 -0
  189. package/dist/specification/src/ftfs/parser/model/types/annotations.js +29 -0
  190. package/dist/specification/src/ftfs/parser/model/types/annotations.js.map +1 -0
  191. package/dist/specification/src/ftfs/parser/model/types/common.d.ts +13 -0
  192. package/dist/specification/src/ftfs/parser/model/types/common.d.ts.map +1 -0
  193. package/dist/specification/src/ftfs/parser/model/types/common.js +3 -0
  194. package/dist/specification/src/ftfs/parser/model/types/common.js.map +1 -0
  195. package/dist/specification/src/ftfs/parser/model/types/index.d.ts +219 -0
  196. package/dist/specification/src/ftfs/parser/model/types/index.d.ts.map +1 -0
  197. package/dist/specification/src/ftfs/parser/model/types/index.js +156 -0
  198. package/dist/specification/src/ftfs/parser/model/types/index.js.map +1 -0
  199. package/dist/specification/src/ftfs/parser/model/utils/annotations.d.ts +38 -0
  200. package/dist/specification/src/ftfs/parser/model/utils/annotations.d.ts.map +1 -0
  201. package/dist/specification/src/ftfs/parser/model/utils/annotations.js +120 -0
  202. package/dist/specification/src/ftfs/parser/model/utils/annotations.js.map +1 -0
  203. package/dist/specification/src/ftfs/parser/model/utils/i18n.d.ts +33 -0
  204. package/dist/specification/src/ftfs/parser/model/utils/i18n.d.ts.map +1 -0
  205. package/dist/specification/src/ftfs/parser/model/utils/i18n.js +69 -0
  206. package/dist/specification/src/ftfs/parser/model/utils/i18n.js.map +1 -0
  207. package/dist/specification/src/ftfs/parser/model/utils/index.d.ts +6 -0
  208. package/dist/specification/src/ftfs/parser/model/utils/index.d.ts.map +1 -0
  209. package/dist/specification/src/ftfs/parser/model/utils/index.js +22 -0
  210. package/dist/specification/src/ftfs/parser/model/utils/index.js.map +1 -0
  211. package/dist/specification/src/ftfs/parser/model/utils/object.d.ts +25 -0
  212. package/dist/specification/src/ftfs/parser/model/utils/object.d.ts.map +1 -0
  213. package/dist/specification/src/ftfs/parser/model/utils/object.js +68 -0
  214. package/dist/specification/src/ftfs/parser/model/utils/object.js.map +1 -0
  215. package/dist/specification/src/ftfs/parser/model/utils/sort.d.ts +31 -0
  216. package/dist/specification/src/ftfs/parser/model/utils/sort.d.ts.map +1 -0
  217. package/dist/specification/src/ftfs/parser/model/utils/sort.js +18 -0
  218. package/dist/specification/src/ftfs/parser/model/utils/sort.js.map +1 -0
  219. package/dist/specification/src/ftfs/parser/model/utils/utils.d.ts +95 -0
  220. package/dist/specification/src/ftfs/parser/model/utils/utils.d.ts.map +1 -0
  221. package/dist/specification/src/ftfs/parser/model/utils/utils.js +267 -0
  222. package/dist/specification/src/ftfs/parser/model/utils/utils.js.map +1 -0
  223. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.d.ts +62 -0
  224. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.d.ts.map +1 -0
  225. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.js +111 -0
  226. package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.js.map +1 -0
  227. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.d.ts +54 -0
  228. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.d.ts.map +1 -0
  229. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.js +144 -0
  230. package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.js.map +1 -0
  231. package/dist/specification/src/ftfs/parser/model/views/index.d.ts +3 -0
  232. package/dist/specification/src/ftfs/parser/model/views/index.d.ts.map +1 -0
  233. package/dist/specification/src/ftfs/parser/model/views/index.js +19 -0
  234. package/dist/specification/src/ftfs/parser/model/views/index.js.map +1 -0
  235. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.d.ts +11 -0
  236. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.d.ts.map +1 -0
  237. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.js +18 -0
  238. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.js.map +1 -0
  239. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.d.ts +11 -0
  240. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.d.ts.map +1 -0
  241. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.js +18 -0
  242. package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.js.map +1 -0
  243. package/dist/specification/src/ftfs/parser/model/visual-filters/index.d.ts +3 -0
  244. package/dist/specification/src/ftfs/parser/model/visual-filters/index.d.ts.map +1 -0
  245. package/dist/specification/src/ftfs/parser/model/visual-filters/index.js +19 -0
  246. package/dist/specification/src/ftfs/parser/model/visual-filters/index.js.map +1 -0
  247. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
  248. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +1 -0
  249. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
  250. package/dist/specification/src/sync/common/i18n.json +7 -5
  251. package/dist/specification/src/sync/common/rules.d.ts +1 -0
  252. package/dist/specification/src/sync/common/rules.d.ts.map +1 -1
  253. package/dist/specification/src/sync/common/rules.js +35 -7
  254. package/dist/specification/src/sync/common/rules.js.map +1 -1
  255. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  256. package/dist/specification/src/sync/v2/generate/listReport.js +1 -92
  257. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  258. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
  259. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -17
  260. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
  261. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +40 -0
  262. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -0
  263. package/dist/specification/src/sync/v2/generate/stableIdUtils.js +179 -0
  264. package/dist/specification/src/sync/v2/generate/stableIdUtils.js.map +1 -0
  265. package/dist/specification/src/sync/v2/generate/utils.d.ts +63 -3
  266. package/dist/specification/src/sync/v2/generate/utils.d.ts.map +1 -1
  267. package/dist/specification/src/sync/v2/generate/utils.js +191 -7
  268. package/dist/specification/src/sync/v2/generate/utils.js.map +1 -1
  269. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts +59 -0
  270. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts.map +1 -1
  271. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js +193 -4
  272. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js.map +1 -1
  273. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +8 -0
  274. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
  275. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +52 -7
  276. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
  277. package/dist/specification/src/sync/v4/application.d.ts +23 -0
  278. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  279. package/dist/specification/src/sync/v4/application.js +37 -1
  280. package/dist/specification/src/sync/v4/application.js.map +1 -1
  281. package/dist/specification/src/sync/v4/export/controls/Field.d.ts +17 -0
  282. package/dist/specification/src/sync/v4/export/controls/Field.d.ts.map +1 -0
  283. package/dist/specification/src/sync/v4/export/controls/Field.js +74 -0
  284. package/dist/specification/src/sync/v4/export/controls/Field.js.map +1 -0
  285. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +4 -0
  286. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
  287. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +24 -1
  288. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  289. package/dist/specification/src/sync/v4/export/controls/Table.d.ts +9 -0
  290. package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
  291. package/dist/specification/src/sync/v4/export/controls/Table.js +57 -1
  292. package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
  293. package/dist/specification/src/sync/v4/export/controls/index.d.ts +1 -0
  294. package/dist/specification/src/sync/v4/export/controls/index.d.ts.map +1 -1
  295. package/dist/specification/src/sync/v4/export/controls/index.js +1 -0
  296. package/dist/specification/src/sync/v4/export/controls/index.js.map +1 -1
  297. package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
  298. package/dist/specification/src/sync/v4/export/export.js +15 -1
  299. package/dist/specification/src/sync/v4/export/export.js.map +1 -1
  300. package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +10 -0
  301. package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
  302. package/dist/specification/src/sync/v4/export/fpmCustomPage.js +55 -6
  303. package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
  304. package/dist/specification/src/sync/v4/export/manifest.js +1 -1
  305. package/dist/specification/src/sync/v4/export/manifest.js.map +1 -1
  306. package/dist/specification/src/sync/v4/generate/listReport.d.ts +2 -0
  307. package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +1 -1
  308. package/dist/specification/src/sync/v4/generate/listReport.js +48 -8
  309. package/dist/specification/src/sync/v4/generate/listReport.js.map +1 -1
  310. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  311. package/dist/specification/src/sync/v4/generate/objectPage.js +54 -10
  312. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  313. package/dist/specification/src/sync/v4/import/app/appProvider.d.ts.map +1 -1
  314. package/dist/specification/src/sync/v4/import/app/appProvider.js +3 -0
  315. package/dist/specification/src/sync/v4/import/app/appProvider.js.map +1 -1
  316. package/dist/specification/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
  317. package/dist/specification/src/sync/v4/import/pages/listReport.js +3 -1
  318. package/dist/specification/src/sync/v4/import/pages/listReport.js.map +1 -1
  319. package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
  320. package/dist/specification/src/sync/v4/import/pages/objectPage.js +59 -9
  321. package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
  322. package/dist/specification/src/sync/v4/utils/macros.d.ts +12 -4
  323. package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
  324. package/dist/specification/src/sync/v4/utils/macros.js +23 -8
  325. package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
  326. package/dist/specification/src/sync/v4/utils/utils.d.ts +17 -4
  327. package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
  328. package/dist/specification/src/sync/v4/utils/utils.js +76 -17
  329. package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
  330. package/dist/types/src/apiTypes.d.ts +56 -3
  331. package/dist/types/src/apiTypes.d.ts.map +1 -1
  332. package/dist/types/src/apiTypes.js +1 -0
  333. package/dist/types/src/apiTypes.js.map +1 -1
  334. package/dist/types/src/common/types.d.ts +12 -3
  335. package/dist/types/src/common/types.d.ts.map +1 -1
  336. package/dist/types/src/common/types.js +9 -0
  337. package/dist/types/src/common/types.js.map +1 -1
  338. package/dist/types/src/index.d.ts +1 -0
  339. package/dist/types/src/index.d.ts.map +1 -1
  340. package/dist/types/src/index.js +2 -1
  341. package/dist/types/src/index.js.map +1 -1
  342. package/dist/types/src/parser/application.d.ts +22 -0
  343. package/dist/types/src/parser/application.d.ts.map +1 -0
  344. package/dist/types/src/parser/application.js +3 -0
  345. package/dist/types/src/parser/application.js.map +1 -0
  346. package/dist/types/src/parser/index.d.ts +3 -0
  347. package/dist/types/src/parser/index.d.ts.map +1 -0
  348. package/dist/types/src/parser/index.js +18 -0
  349. package/dist/types/src/parser/index.js.map +1 -0
  350. package/dist/types/src/parser/model.d.ts +17 -0
  351. package/dist/types/src/parser/model.d.ts.map +1 -0
  352. package/dist/types/src/parser/model.js +3 -0
  353. package/dist/types/src/parser/model.js.map +1 -0
  354. package/dist/types/src/v4/controls/CustomField.d.ts +45 -0
  355. package/dist/types/src/v4/controls/CustomField.d.ts.map +1 -0
  356. package/dist/types/src/v4/controls/CustomField.js +9 -0
  357. package/dist/types/src/v4/controls/CustomField.js.map +1 -0
  358. package/dist/types/src/v4/controls/ObjectPageForm.d.ts +2 -1
  359. package/dist/types/src/v4/controls/ObjectPageForm.d.ts.map +1 -1
  360. package/dist/types/src/v4/controls/ObjectPageTable.d.ts +4 -1
  361. package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
  362. package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
  363. package/dist/types/src/v4/controls/Table.d.ts +16 -4
  364. package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
  365. package/dist/types/src/v4/controls/index.d.ts +1 -0
  366. package/dist/types/src/v4/controls/index.d.ts.map +1 -1
  367. package/dist/types/src/v4/controls/index.js +1 -0
  368. package/dist/types/src/v4/controls/index.js.map +1 -1
  369. package/package.json +13 -9
@@ -3,7 +3,6 @@
3
3
  "metadata": {
4
4
  "namespaces": [
5
5
  "sap.fe.macros",
6
- "sap.fe.macros.form",
7
6
  "sap.fe.macros.chart",
8
7
  "sap.fe.macros.controls",
9
8
  "sap.fe.macros.field",
@@ -137,92 +136,11 @@
137
136
  "type": "Control"
138
137
  }
139
138
  },
140
- "sap.fe.macros.CollaborativeDraftHandler": {
141
- "description": "A BuildingBlock to watch the lock status of a property and to react on changes.",
142
- "isViewNode": true,
143
- "type": "object",
144
- "properties": {
145
- "contextPath": {
146
- "type": "string",
147
- "description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework, and can be overwritten.",
148
- "artifactType": "XMLProperty",
149
- "metadata": {
150
- "type": "Property"
151
- }
152
- },
153
- "metaPath": {
154
- "type": "string",
155
- "description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
156
- "artifactType": "XMLProperty",
157
- "metadata": {
158
- "type": "Property"
159
- }
160
- },
161
- "showAvatar": {
162
- "type": "boolean",
163
- "description": "If set to true, the standard Avatar control is displayed to indicate the lock status.\nIf set to false, nothing is displayed.",
164
- "artifactType": "XMLProperty",
165
- "metadata": {
166
- "type": "Property"
167
- }
168
- },
169
- "id": {
170
- "type": "string",
171
- "description": "Unique id of control",
172
- "artifactType": "XMLProperty",
173
- "metadata": {
174
- "type": "Property"
175
- }
176
- },
177
- "lockChange": {
178
- "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",
180
- "artifactType": "XMLProperty",
181
- "metadata": {
182
- "type": "Event"
183
- }
184
- }
185
- },
186
- "additionalProperties": false,
187
- "metadata": {
188
- "path": [],
189
- "type": "Control"
190
- }
191
- },
192
139
  "sap.fe.macros.CollectionBindingInfo": {
193
- "description": "API to add parameters to the collection binding info.",
194
- "isViewNode": true,
195
- "type": "object",
196
- "properties": {
197
- "id": {
198
- "type": "string",
199
- "description": "Unique id of control",
200
- "artifactType": "XMLProperty",
201
- "metadata": {
202
- "type": "Property"
203
- }
204
- }
205
- },
206
- "additionalProperties": false,
207
- "metadata": {
208
- "path": [],
209
- "type": "Control"
210
- }
211
- },
212
- "sap.fe.macros.ConditionalSwitch": {
213
- "description": "Defines a conditional template that renders content based on the evaluation of a set of switchProperties.\nThe switchProperties are defined using the sap.fe.macros.ConditionalSwitchProperty building block.",
140
+ "description": "API to add parameters to the collection binding infos.",
214
141
  "isViewNode": true,
215
142
  "type": "object",
216
143
  "properties": {
217
- "factory": {
218
- "$ref": "#/definitions/function",
219
- "description": "factory",
220
- "artifactType": "XMLProperty",
221
- "isViewNode": true,
222
- "metadata": {
223
- "type": "Property"
224
- }
225
- },
226
144
  "id": {
227
145
  "type": "string",
228
146
  "description": "Unique id of control",
@@ -238,50 +156,6 @@
238
156
  "type": "Control"
239
157
  }
240
158
  },
241
- "sap.fe.macros.ConditionalSwitchProperty": {
242
- "description": "Defines a property with a key and a value that can be used in conditional templates.\nWhen the value is changed, a `valueChanged` event is fired.",
243
- "isViewNode": true,
244
- "type": "object",
245
- "properties": {
246
- "key": {
247
- "type": "string",
248
- "description": "The key of the property.",
249
- "artifactType": "XMLProperty",
250
- "metadata": {
251
- "type": "Property"
252
- }
253
- },
254
- "value": {
255
- "type": "any",
256
- "description": "The value of the property.",
257
- "artifactType": "XMLProperty",
258
- "metadata": {
259
- "type": "Property"
260
- }
261
- },
262
- "id": {
263
- "type": "string",
264
- "description": "Unique id of control",
265
- "artifactType": "XMLProperty",
266
- "metadata": {
267
- "type": "Property"
268
- }
269
- },
270
- "valueChanged": {
271
- "type": "string",
272
- "description": "Event fired when the value of the property is changed.\nThis is used internally by the `ConditionalTemplate` control to react to changes in the property value.",
273
- "artifactType": "XMLProperty",
274
- "metadata": {
275
- "type": "Event"
276
- }
277
- }
278
- },
279
- "additionalProperties": false,
280
- "metadata": {
281
- "path": [],
282
- "type": "Control"
283
- }
284
- },
285
159
  "sap.fe.macros.Field": {
286
160
  "description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\n<macros:Field id=\"MyField\" metaPath=\"MyProperty\" />\n\nOverview of Building Blocks\n",
287
161
  "isViewNode": true,
@@ -377,69 +251,6 @@
377
251
  "type": "Control"
378
252
  }
379
253
  },
380
- "sap.fe.macros.form.FormElement": {
381
- "description": "Building block used to create a form element based on the metadata provided by OData V4.",
382
- "isViewNode": true,
383
- "type": "object",
384
- "properties": {
385
- "contextPath": {
386
- "type": "string",
387
- "description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
388
- "artifactType": "XMLProperty",
389
- "metadata": {
390
- "type": "Property"
391
- }
392
- },
393
- "label": {
394
- "type": "string",
395
- "description": "Label shown for the field. If not set, the label from the annotations will be shown.",
396
- "artifactType": "XMLProperty",
397
- "metadata": {
398
- "type": "Property"
399
- }
400
- },
401
- "metaPath": {
402
- "type": "string",
403
- "description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
404
- "artifactType": "XMLProperty",
405
- "metadata": {
406
- "type": "Property"
407
- }
408
- },
409
- "visible": {
410
- "type": "boolean",
411
- "description": "If set to false, the FormElement is not rendered.",
412
- "artifactType": "XMLProperty",
413
- "metadata": {
414
- "type": "Property"
415
- }
416
- },
417
- "id": {
418
- "type": "string",
419
- "description": "Unique id of control",
420
- "artifactType": "XMLProperty",
421
- "metadata": {
422
- "type": "Property"
423
- }
424
- },
425
- "fields": {
426
- "type": "object",
427
- "additionalProperties": {
428
- "$ref": "#/definitions/sap.ui.core.Control"
429
- },
430
- "isViewNode": true,
431
- "metadata": {
432
- "path": [],
433
- "type": "Aggregation"
434
- }
435
- }
436
- },
437
- "additionalProperties": false,
438
- "metadata": {
439
- "path": [],
440
- "type": "Control"
441
- }
442
- },
443
254
  "sap.fe.macros.KPITag": {
444
255
  "description": "Building block used to create a KPI tag.",
445
256
  "isViewNode": true,
@@ -657,7 +468,7 @@
657
468
  },
658
469
  "items": {
659
470
  "type": "any",
660
- "description": "Property added to be able to add data / items to the multi-input field using a different model",
471
+ "description": "Property added to be able to add data / items to the multi value field via a different model",
661
472
  "artifactType": "XMLProperty",
662
473
  "metadata": {
663
474
  "type": "Property"
@@ -695,13 +506,13 @@
695
506
  }
696
507
  },
697
508
  "sap.fe.macros.Page": {
698
- "description": "Building block used to create a custom page with a title and the content. By default, the page includes a title.",
509
+ "description": "Provides a Page building block that can be used to create a page with a title and content\nBy default, the page comes with an ObjectTitle",
699
510
  "isViewNode": true,
700
511
  "type": "object",
701
512
  "properties": {
702
513
  "avatarSrc": {
703
514
  "type": "string",
704
- "description": "Source of the avatar image. This property is considered only if the title property is defined.",
515
+ "description": "Avatar source of the page. It is considered only if the title property is specified.",
705
516
  "artifactType": "XMLProperty",
706
517
  "metadata": {
707
518
  "type": "Property"
@@ -709,7 +520,7 @@
709
520
  },
710
521
  "description": {
711
522
  "type": "string",
712
- "description": "Provides additional details of the page. This property is considered only if the title property is defined.",
523
+ "description": "Description of the page. It is considered only if the title property is specified.",
713
524
  "artifactType": "XMLProperty",
714
525
  "metadata": {
715
526
  "type": "Property"
@@ -717,7 +528,7 @@
717
528
  },
718
529
  "title": {
719
530
  "type": "string",
720
- "description": "Title of the page. If no title is provided, the title, avatar, and description are derived from the unqualified HeaderInfo annotation associated with the entity.",
531
+ "description": "Title of the page\nIf title is not given, then we will add a title, avatar and description based on the unqualified HeaderInfo associated to the entity",
721
532
  "artifactType": "XMLProperty",
722
533
  "metadata": {
723
534
  "type": "Property"
@@ -914,79 +725,6 @@
914
725
  }
915
726
  },
916
727
  "additionalProperties": false,
917
- "metadata": {
918
- "path": [],
919
- "type": "Control",
920
- "defaultAggregation": "shareOptions"
921
- }
922
- },
923
- "sap.fe.macros.Status": {
924
- "description": "Building block to display a status and criticality.",
925
- "isViewNode": true,
926
- "type": "object",
927
- "properties": {
928
- "contextPath": {
929
- "type": "string",
930
- "description": "Context path for the binding context.",
931
- "artifactType": "XMLProperty",
932
- "metadata": {
933
- "type": "Property"
934
- }
935
- },
936
- "inverted": {
937
- "type": "boolean",
938
- "description": "Determines whether the background color reflects the set state of the ObjectStatus instead of the control's text.",
939
- "artifactType": "XMLProperty",
940
- "metadata": {
941
- "type": "Property"
942
- }
943
- },
944
- "largeDesign": {
945
- "type": "boolean",
946
- "description": "Indicates whether the ObjectStatus should be displayed in large design mode.",
947
- "artifactType": "XMLProperty",
948
- "metadata": {
949
- "type": "Property"
950
- }
951
- },
952
- "metaPath": {
953
- "type": "string",
954
- "description": "Metadata path to the DataField annotation or property.",
955
- "artifactType": "XMLProperty",
956
- "metadata": {
957
- "type": "Property"
958
- }
959
- },
960
- "reactiveAreaMode": {
961
- "type": "string",
962
- "description": "When the Status is clickable, it defines the size of the reactive area of the clickable element:\n- ReactiveAreaMode.Inline - The Status is displayed as part of a sentence.\n- ReactiveAreaMode.Overlay - The Status is displayed as an overlay on top of other interactive parts of the page.\nNote: It is designed to make the clickable element easier to activate and helps meet the WCAG 2.2 Target Size requirement. It is applicable only for the SAP Horizon themes. Note: The size of the reactive area is sufficiently large to help users avoid accidentally selecting (clicking or tapping) unintended UI elements. UI elements positioned over other parts of the page may need an invisible active touch area. This ensures that no elements beneath are activated accidentally when the user tries to interact with the overlay element.\n",
963
- "artifactType": "XMLProperty",
964
- "metadata": {
965
- "type": "Property"
966
- },
967
- "enum": [
968
- "Inline",
969
- "Overlay"
970
- ]
971
- },
972
- "id": {
973
- "type": "string",
974
- "description": "Unique id of control",
975
- "artifactType": "XMLProperty",
976
- "metadata": {
977
- "type": "Property"
978
- }
979
- },
980
- "press": {
981
- "type": "string",
982
- "description": "Press event fired when the ObjectStatus is clicked.",
983
- "artifactType": "XMLProperty",
984
- "metadata": {
985
- "type": "Event"
986
- }
987
- }
988
- },
989
- "additionalProperties": false,
990
728
  "metadata": {
991
729
  "path": [],
992
730
  "type": "Control"
@@ -1183,8 +921,7 @@
1183
921
  "additionalProperties": false,
1184
922
  "metadata": {
1185
923
  "path": [],
1186
- "type": "Control",
1187
- "defaultAggregation": "actions"
924
+ "type": "Control"
1188
925
  }
1189
926
  },
1190
927
  "sap.fe.macros.chart.Chart": {
@@ -1458,7 +1195,7 @@
1458
1195
  "properties": {
1459
1196
  "dateTimePattern": {
1460
1197
  "type": "string",
1461
- "description": "Property for defining a custom pattern for the date, time, or dateTime format. \nIf a dateTimePattern is defined, the dateTimeStyle is ignored.\n",
1198
+ "description": "Property for defining a custom pattern for the date, time, or dateTime format. \nIf there is a dateTimePattern defined dateTimeStyle is ignored.\n",
1462
1199
  "artifactType": "XMLProperty",
1463
1200
  "metadata": {
1464
1201
  "type": "Property"
@@ -1466,7 +1203,7 @@
1466
1203
  },
1467
1204
  "dateTimeStyle": {
1468
1205
  "type": "string",
1469
- "description": "Property for defining the display style for the date, time, or dateTime format. \nIf there is a dateTimePattern defined, dateTimeStyle is ignored.\n",
1206
+ "description": "Property for defining the display style for the date, time, or dateTime format. \nIf there is a dateTimePattern defined dateTimeStyle is ignored.\n",
1470
1207
  "artifactType": "XMLProperty",
1471
1208
  "metadata": {
1472
1209
  "type": "Property"
@@ -1521,18 +1258,6 @@
1521
1258
  "type": "Property"
1522
1259
  }
1523
1260
  },
1524
- "reactiveAreaMode": {
1525
- "type": "string",
1526
- "description": "When the Field is displayed as a clickable element, it defines the size of the reactive area of the clickable element:\n- ReactiveAreaMode.Inline - The link is displayed as part of a sentence.\n- ReactiveAreaMode.Overlay - The link is displayed as an overlay on top of other interactive parts of the page.\nNote: It is designed to make the clickable element easier to activate and helps meet the WCAG 2.2 Target Size requirement. It is applicable only for the SAP Horizon themes. Note: The size of the reactive area is sufficiently large to help users avoid accidentally selecting (clicking or tapping) unintended UI elements. UI elements positioned over other parts of the page may need an invisible active touch area. This ensures that no elements beneath are activated accidentally when the user tries to interact with the overlay element.\n",
1527
- "artifactType": "XMLProperty",
1528
- "metadata": {
1529
- "type": "Property"
1530
- },
1531
- "enum": [
1532
- "Inline",
1533
- "Overlay"
1534
- ]
1535
- },
1536
1261
  "showDate": {
1537
1262
  "type": "boolean",
1538
1263
  "description": "Defines if the date part of a date time with timezone field should be shown. \n\nThe dateTimeOffset field must have a timezone annotation.\nThe default value is true.\n",
@@ -1949,6 +1674,80 @@
1949
1674
  "type": "Control"
1950
1675
  }
1951
1676
  },
1677
+ "sap.fe.macros.FormElement": {
1678
+ "description": "Building block used to create a form element based on the metadata provided by OData V4.",
1679
+ "isViewNode": true,
1680
+ "type": "object",
1681
+ "properties": {
1682
+ "contextPath": {
1683
+ "$ref": "#/definitions/sap.ui.model.Context",
1684
+ "description": "contextPath",
1685
+ "artifactType": "XMLProperty",
1686
+ "isViewNode": true,
1687
+ "metadata": {
1688
+ "type": "Property"
1689
+ }
1690
+ },
1691
+ "label": {
1692
+ "type": "string",
1693
+ "description": "Label shown for the field. If not set, the label from the annotations will be shown.",
1694
+ "artifactType": "XMLProperty",
1695
+ "metadata": {
1696
+ "type": "Property"
1697
+ },
1698
+ "i18nClassification": "FLD: Label of the form element"
1699
+ },
1700
+ "metaPath": {
1701
+ "$ref": "#/definitions/sap.ui.model.Context",
1702
+ "description": "metaPath",
1703
+ "artifactType": "XMLProperty",
1704
+ "isViewNode": true,
1705
+ "metadata": {
1706
+ "type": "Property"
1707
+ }
1708
+ },
1709
+ "visible": {
1710
+ "type": "boolean",
1711
+ "description": "If set to false, the FormElement is not rendered.",
1712
+ "artifactType": "XMLProperty",
1713
+ "metadata": {
1714
+ "type": "Property"
1715
+ }
1716
+ },
1717
+ "id": {
1718
+ "type": "string",
1719
+ "description": "Unique id of control",
1720
+ "artifactType": "XMLProperty",
1721
+ "metadata": {
1722
+ "type": "Property"
1723
+ }
1724
+ },
1725
+ "fields": {
1726
+ "type": "object",
1727
+ "additionalProperties": {
1728
+ "$ref": "#/definitions/sap.ui.core.Control"
1729
+ },
1730
+ "isViewNode": true,
1731
+ "metadata": {
1732
+ "path": [],
1733
+ "type": "Aggregation"
1734
+ }
1735
+ },
1736
+ "change": {
1737
+ "type": "string",
1738
+ "description": "The event is triggered when the field is changed.",
1739
+ "artifactType": "XMLProperty",
1740
+ "metadata": {
1741
+ "type": "Event"
1742
+ }
1743
+ }
1744
+ },
1745
+ "additionalProperties": false,
1746
+ "metadata": {
1747
+ "path": [],
1748
+ "type": "Control"
1749
+ }
1750
+ },
1952
1751
  "sap.fe.macros.microchart.MicroChart": {
1953
1752
  "description": "Building block used to create a MicroChart based on the metadata provided by OData V4.\n\nUsually, a contextPath and metaPath is expected.\nUsage example:\n\nsap.ui.require([\"sap/fe/macros/microchart/MicroChart\"], function(MicroChart) {\n\t ...\n\t new MicroChart(\"microChartID\", {metaPath:\"MyProperty\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the MicroChart that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
1954
1753
  "isViewNode": true,
@@ -2166,14 +1965,6 @@
2166
1965
  "type": "Property"
2167
1966
  }
2168
1967
  },
2169
- "isAIOperation": {
2170
- "type": "boolean",
2171
- "description": "Displays the AI Icon on the action button.",
2172
- "artifactType": "XMLProperty",
2173
- "metadata": {
2174
- "type": "Property"
2175
- }
2176
- },
2177
1968
  "key": {
2178
1969
  "type": "string",
2179
1970
  "description": "Unique identifier of the action",
@@ -2315,8 +2106,7 @@
2315
2106
  "additionalProperties": false,
2316
2107
  "metadata": {
2317
2108
  "path": [],
2318
- "type": "Control",
2319
- "defaultAggregation": "actions"
2109
+ "type": "Control"
2320
2110
  }
2321
2111
  },
2322
2112
  "sap.fe.macros.table.ActionGroupOverride": {
@@ -2375,8 +2165,7 @@
2375
2165
  "additionalProperties": false,
2376
2166
  "metadata": {
2377
2167
  "path": [],
2378
- "type": "Control",
2379
- "defaultAggregation": "actions"
2168
+ "type": "Control"
2380
2169
  }
2381
2170
  },
2382
2171
  "sap.fe.macros.table.ActionOverride": {
@@ -2436,14 +2225,6 @@
2436
2225
  "type": "Property"
2437
2226
  }
2438
2227
  },
2439
- "isAIOperation": {
2440
- "type": "boolean",
2441
- "description": "Displays the AI Icon on the action button.",
2442
- "artifactType": "XMLProperty",
2443
- "metadata": {
2444
- "type": "Property"
2445
- }
2446
- },
2447
2228
  "key": {
2448
2229
  "type": "string",
2449
2230
  "description": "Unique identifier of the action to overridden.",
@@ -2544,14 +2325,6 @@
2544
2325
  "type": "Property"
2545
2326
  }
2546
2327
  },
2547
- "disableExport": {
2548
- "type": "boolean",
2549
- "description": "Determines if the column should be excluded from the export.",
2550
- "artifactType": "XMLProperty",
2551
- "metadata": {
2552
- "type": "Property"
2553
- }
2554
- },
2555
2328
  "header": {
2556
2329
  "type": "string",
2557
2330
  "description": "The text that will be displayed for this column header",
@@ -2658,22 +2431,6 @@
2658
2431
  "isViewNode": true,
2659
2432
  "type": "object",
2660
2433
  "properties": {
2661
- "falseValue": {
2662
- "type": "string",
2663
- "description": "Determines the text associated to a Boolean type with 'false' as value.",
2664
- "artifactType": "XMLProperty",
2665
- "metadata": {
2666
- "type": "Property"
2667
- }
2668
- },
2669
- "label": {
2670
- "type": "string",
2671
- "description": "Determines the column header text.",
2672
- "artifactType": "XMLProperty",
2673
- "metadata": {
2674
- "type": "Property"
2675
- }
2676
- },
2677
2434
  "property": {
2678
2435
  "$ref": "#/definitions/string[]",
2679
2436
  "description": "property",
@@ -2691,22 +2448,6 @@
2691
2448
  "type": "Property"
2692
2449
  }
2693
2450
  },
2694
- "textAlign": {
2695
- "type": "string",
2696
- "description": "Determines the alignment of the column of the cell contents.\nAvailable options are:\n- Left\n- Right\n- Center\n- Begin\n- End\n\n",
2697
- "artifactType": "XMLProperty",
2698
- "metadata": {
2699
- "type": "Property"
2700
- }
2701
- },
2702
- "trueValue": {
2703
- "type": "string",
2704
- "description": "Determines the text associated to a Boolean type with 'true' as value.",
2705
- "artifactType": "XMLProperty",
2706
- "metadata": {
2707
- "type": "Property"
2708
- }
2709
- },
2710
2451
  "type": {
2711
2452
  "type": "string",
2712
2453
  "description": "Determines the data type of the field",
@@ -2715,14 +2456,6 @@
2715
2456
  "type": "Property"
2716
2457
  }
2717
2458
  },
2718
- "valueMap": {
2719
- "type": "object",
2720
- "description": "Determines the mapping object holding the values associated with a specific key.\nEnumeration type must be used when valueMap is provided.",
2721
- "artifactType": "XMLProperty",
2722
- "metadata": {
2723
- "type": "Property"
2724
- }
2725
- },
2726
2459
  "width": {
2727
2460
  "type": "number",
2728
2461
  "description": "Determines the width of the column in characters",
@@ -2767,14 +2500,6 @@
2767
2500
  "type": "Property"
2768
2501
  }
2769
2502
  },
2770
- "disableExport": {
2771
- "type": "boolean",
2772
- "description": "Determines if the column should be excluded from the export.",
2773
- "artifactType": "XMLProperty",
2774
- "metadata": {
2775
- "type": "Property"
2776
- }
2777
- },
2778
2503
  "horizontalAlign": {
2779
2504
  "type": "string",
2780
2505
  "description": "Aligns the header as well as the content horizontally",
@@ -2899,8 +2624,7 @@
2899
2624
  "additionalProperties": false,
2900
2625
  "metadata": {
2901
2626
  "path": [],
2902
- "type": "Control",
2903
- "defaultAggregation": "customContent"
2627
+ "type": "Control"
2904
2628
  }
2905
2629
  },
2906
2630
  "sap.fe.macros.table.QuickVariantSelection": {
@@ -2978,14 +2702,6 @@
2978
2702
  "type": "Property"
2979
2703
  }
2980
2704
  },
2981
- "disableColumnFreeze": {
2982
- "type": "boolean",
2983
- "description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
2984
- "artifactType": "XMLProperty",
2985
- "metadata": {
2986
- "type": "Property"
2987
- }
2988
- },
2989
2705
  "disableCopyToClipboard": {
2990
2706
  "type": "boolean",
2991
2707
  "description": "Controls if the copy functionality of the table is disabled or not.",
@@ -3042,14 +2758,6 @@
3042
2758
  "type": "Property"
3043
2759
  }
3044
2760
  },
3045
- "exportFileName": {
3046
- "type": "string",
3047
- "description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
3048
- "artifactType": "XMLProperty",
3049
- "metadata": {
3050
- "type": "Property"
3051
- }
3052
- },
3053
2761
  "exportRequestSize": {
3054
2762
  "type": "number",
3055
2763
  "description": "Maximum allowed number of records to be exported in one request.",
@@ -3058,14 +2766,6 @@
3058
2766
  "type": "Property"
3059
2767
  }
3060
2768
  },
3061
- "exportSheetName": {
3062
- "type": "string",
3063
- "description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
3064
- "artifactType": "XMLProperty",
3065
- "metadata": {
3066
- "type": "Property"
3067
- }
3068
- },
3069
2769
  "filterBar": {
3070
2770
  "type": "string",
3071
2771
  "description": "ID of the FilterBar building block associated with the table.",
@@ -3151,19 +2851,6 @@
3151
2851
  "type": "Property"
3152
2852
  }
3153
2853
  },
3154
- "popinLayout": {
3155
- "type": "string",
3156
- "description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
3157
- "artifactType": "XMLProperty",
3158
- "metadata": {
3159
- "type": "Property"
3160
- },
3161
- "enum": [
3162
- "Block",
3163
- "GridLarge",
3164
- "GridSmall"
3165
- ]
3166
- },
3167
2854
  "readOnly": {
3168
2855
  "type": "boolean",
3169
2856
  "description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
@@ -3225,14 +2912,6 @@
3225
2912
  "ForceSingle"
3226
2913
  ]
3227
2914
  },
3228
- "threshold": {
3229
- "type": "number",
3230
- "description": "Defines the number of records to be initially requested from the back end.",
3231
- "artifactType": "XMLProperty",
3232
- "metadata": {
3233
- "type": "Property"
3234
- }
3235
- },
3236
2915
  "type": {
3237
2916
  "type": "string",
3238
2917
  "description": "Defines the type of table that will be used by the building block to render the data.\nAllowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.\n",
@@ -3321,7 +3000,7 @@
3321
3000
  },
3322
3001
  "beforeRebindTable": {
3323
3002
  "type": "string",
3324
- "description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
3003
+ "description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
3325
3004
  "artifactType": "XMLProperty",
3326
3005
  "metadata": {
3327
3006
  "type": "Event"
@@ -3389,14 +3068,6 @@
3389
3068
  "type": "Property"
3390
3069
  }
3391
3070
  },
3392
- "disableColumnFreeze": {
3393
- "type": "boolean",
3394
- "description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
3395
- "artifactType": "XMLProperty",
3396
- "metadata": {
3397
- "type": "Property"
3398
- }
3399
- },
3400
3071
  "disableCopyToClipboard": {
3401
3072
  "type": "boolean",
3402
3073
  "description": "Controls if the copy functionality of the table is disabled or not.",
@@ -3453,14 +3124,6 @@
3453
3124
  "type": "Property"
3454
3125
  }
3455
3126
  },
3456
- "exportFileName": {
3457
- "type": "string",
3458
- "description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
3459
- "artifactType": "XMLProperty",
3460
- "metadata": {
3461
- "type": "Property"
3462
- }
3463
- },
3464
3127
  "exportRequestSize": {
3465
3128
  "type": "number",
3466
3129
  "description": "Maximum allowed number of records to be exported in one request.",
@@ -3469,14 +3132,6 @@
3469
3132
  "type": "Property"
3470
3133
  }
3471
3134
  },
3472
- "exportSheetName": {
3473
- "type": "string",
3474
- "description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
3475
- "artifactType": "XMLProperty",
3476
- "metadata": {
3477
- "type": "Property"
3478
- }
3479
- },
3480
3135
  "filterBar": {
3481
3136
  "type": "string",
3482
3137
  "description": "ID of the FilterBar building block associated with the table.",
@@ -3561,19 +3216,6 @@
3561
3216
  "type": "Property"
3562
3217
  }
3563
3218
  },
3564
- "popinLayout": {
3565
- "type": "string",
3566
- "description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
3567
- "artifactType": "XMLProperty",
3568
- "metadata": {
3569
- "type": "Property"
3570
- },
3571
- "enum": [
3572
- "Block",
3573
- "GridLarge",
3574
- "GridSmall"
3575
- ]
3576
- },
3577
3219
  "readOnly": {
3578
3220
  "type": "boolean",
3579
3221
  "description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
@@ -3635,14 +3277,6 @@
3635
3277
  "ForceSingle"
3636
3278
  ]
3637
3279
  },
3638
- "threshold": {
3639
- "type": "number",
3640
- "description": "Defines the number of records to be initially requested from the back end.",
3641
- "artifactType": "XMLProperty",
3642
- "metadata": {
3643
- "type": "Property"
3644
- }
3645
- },
3646
3280
  "type": {
3647
3281
  "type": "string",
3648
3282
  "description": "Defines the type of table that will be used by the building block to render the data.\nAllowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.\n",
@@ -3727,7 +3361,7 @@
3727
3361
  },
3728
3362
  "beforeRebindTable": {
3729
3363
  "type": "string",
3730
- "description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
3364
+ "description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
3731
3365
  "artifactType": "XMLProperty",
3732
3366
  "metadata": {
3733
3367
  "type": "Event"
@@ -3861,14 +3495,6 @@
3861
3495
  "type": "Property"
3862
3496
  }
3863
3497
  },
3864
- "disableColumnFreeze": {
3865
- "type": "boolean",
3866
- "description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
3867
- "artifactType": "XMLProperty",
3868
- "metadata": {
3869
- "type": "Property"
3870
- }
3871
- },
3872
3498
  "disableCopyToClipboard": {
3873
3499
  "type": "boolean",
3874
3500
  "description": "Controls if the copy functionality of the table is disabled or not.",
@@ -3925,14 +3551,6 @@
3925
3551
  "type": "Property"
3926
3552
  }
3927
3553
  },
3928
- "exportFileName": {
3929
- "type": "string",
3930
- "description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
3931
- "artifactType": "XMLProperty",
3932
- "metadata": {
3933
- "type": "Property"
3934
- }
3935
- },
3936
3554
  "exportRequestSize": {
3937
3555
  "type": "number",
3938
3556
  "description": "Maximum allowed number of records to be exported in one request.",
@@ -3941,14 +3559,6 @@
3941
3559
  "type": "Property"
3942
3560
  }
3943
3561
  },
3944
- "exportSheetName": {
3945
- "type": "string",
3946
- "description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
3947
- "artifactType": "XMLProperty",
3948
- "metadata": {
3949
- "type": "Property"
3950
- }
3951
- },
3952
3562
  "filterBar": {
3953
3563
  "type": "string",
3954
3564
  "description": "ID of the FilterBar building block associated with the table.",
@@ -4073,19 +3683,6 @@
4073
3683
  "type": "Property"
4074
3684
  }
4075
3685
  },
4076
- "popinLayout": {
4077
- "type": "string",
4078
- "description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
4079
- "artifactType": "XMLProperty",
4080
- "metadata": {
4081
- "type": "Property"
4082
- },
4083
- "enum": [
4084
- "Block",
4085
- "GridLarge",
4086
- "GridSmall"
4087
- ]
4088
- },
4089
3686
  "readOnly": {
4090
3687
  "type": "boolean",
4091
3688
  "description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
@@ -4147,14 +3744,6 @@
4147
3744
  "ForceSingle"
4148
3745
  ]
4149
3746
  },
4150
- "threshold": {
4151
- "type": "number",
4152
- "description": "Defines the number of records to be initially requested from the back end.",
4153
- "artifactType": "XMLProperty",
4154
- "metadata": {
4155
- "type": "Property"
4156
- }
4157
- },
4158
3747
  "type": {
4159
3748
  "type": "string",
4160
3749
  "description": "Defines the type of table that will be used by the building block to render the data. This setting is defined by the framework.\nAllowed value is `TreeTable`.\n",
@@ -4235,7 +3824,7 @@
4235
3824
  },
4236
3825
  "beforeRebindTable": {
4237
3826
  "type": "string",
4238
- "description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
3827
+ "description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
4239
3828
  "artifactType": "XMLProperty",
4240
3829
  "metadata": {
4241
3830
  "type": "Event"
@@ -4302,14 +3891,6 @@
4302
3891
  "type": "Property"
4303
3892
  }
4304
3893
  },
4305
- "disableColumnFreeze": {
4306
- "type": "boolean",
4307
- "description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
4308
- "artifactType": "XMLProperty",
4309
- "metadata": {
4310
- "type": "Property"
4311
- }
4312
- },
4313
3894
  "disableCopyToClipboard": {
4314
3895
  "type": "boolean",
4315
3896
  "description": "Controls if the copy functionality of the table is disabled or not.",
@@ -4366,14 +3947,6 @@
4366
3947
  "type": "Property"
4367
3948
  }
4368
3949
  },
4369
- "exportFileName": {
4370
- "type": "string",
4371
- "description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
4372
- "artifactType": "XMLProperty",
4373
- "metadata": {
4374
- "type": "Property"
4375
- }
4376
- },
4377
3950
  "exportRequestSize": {
4378
3951
  "type": "number",
4379
3952
  "description": "Maximum allowed number of records to be exported in one request.",
@@ -4382,14 +3955,6 @@
4382
3955
  "type": "Property"
4383
3956
  }
4384
3957
  },
4385
- "exportSheetName": {
4386
- "type": "string",
4387
- "description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
4388
- "artifactType": "XMLProperty",
4389
- "metadata": {
4390
- "type": "Property"
4391
- }
4392
- },
4393
3958
  "filterBar": {
4394
3959
  "type": "string",
4395
3960
  "description": "ID of the FilterBar building block associated with the table.",
@@ -4514,19 +4079,6 @@
4514
4079
  "type": "Property"
4515
4080
  }
4516
4081
  },
4517
- "popinLayout": {
4518
- "type": "string",
4519
- "description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
4520
- "artifactType": "XMLProperty",
4521
- "metadata": {
4522
- "type": "Property"
4523
- },
4524
- "enum": [
4525
- "Block",
4526
- "GridLarge",
4527
- "GridSmall"
4528
- ]
4529
- },
4530
4082
  "readOnly": {
4531
4083
  "type": "boolean",
4532
4084
  "description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
@@ -4588,14 +4140,6 @@
4588
4140
  "ForceSingle"
4589
4141
  ]
4590
4142
  },
4591
- "threshold": {
4592
- "type": "number",
4593
- "description": "Defines the number of records to be initially requested from the back end.",
4594
- "artifactType": "XMLProperty",
4595
- "metadata": {
4596
- "type": "Property"
4597
- }
4598
- },
4599
4143
  "type": {
4600
4144
  "type": "string",
4601
4145
  "description": "Defines the type of table that will be used by the building block to render the data. This setting is defined by the framework.\nAllowed value is `TreeTable`.\n",
@@ -4676,7 +4220,7 @@
4676
4220
  },
4677
4221
  "beforeRebindTable": {
4678
4222
  "type": "string",
4679
- "description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
4223
+ "description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
4680
4224
  "artifactType": "XMLProperty",
4681
4225
  "metadata": {
4682
4226
  "type": "Event"