@sap/ux-specification 1.136.15 → 1.136.17

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 (244) hide show
  1. package/CHANGELOG.md +258 -165
  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 +280 -274
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v2/AnalyticalListPageConfig.json +3 -3
  16. package/dist/schemas/v2/ListReportConfig.json +5 -5
  17. package/dist/schemas/v2/ListReportNewConfig.json +1 -1
  18. package/dist/schemas/v2/ObjectPageConfig.json +5 -5
  19. package/dist/schemas/v4/ApplicationV4.json +1 -1
  20. package/dist/schemas/v4/BuildingBlocksConfig.json +100 -10
  21. package/dist/schemas/v4/ListReportConfig.json +24 -6
  22. package/dist/schemas/v4/ObjectPageConfig.json +32 -8
  23. package/dist/specification/package.json +14 -12
  24. package/dist/specification/scripts/extractDocu.js +18 -1
  25. package/dist/specification/scripts/extractDocu.js.map +1 -1
  26. package/dist/specification/scripts/generate-validity-report.d.ts +15 -0
  27. package/dist/specification/scripts/generate-validity-report.d.ts.map +1 -0
  28. package/dist/specification/scripts/generate-validity-report.js +367 -0
  29. package/dist/specification/scripts/generate-validity-report.js.map +1 -0
  30. package/dist/specification/scripts/macros/corrections.d.ts +40 -0
  31. package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
  32. package/dist/specification/scripts/macros/corrections.js +114 -7
  33. package/dist/specification/scripts/macros/corrections.js.map +1 -1
  34. package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
  35. package/dist/specification/scripts/macros/schema.js +14 -1
  36. package/dist/specification/scripts/macros/schema.js.map +1 -1
  37. package/dist/specification/scripts/macros/types.d.ts +1 -0
  38. package/dist/specification/scripts/macros/types.d.ts.map +1 -1
  39. package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
  40. package/dist/specification/scripts/schema/to-json-schema.js +2 -13
  41. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  42. package/dist/specification/src/api.js +1 -1
  43. package/dist/specification/src/i18n/i18n.d.ts.map +1 -1
  44. package/dist/specification/src/i18n/i18n.js +2 -1
  45. package/dist/specification/src/i18n/i18n.js.map +1 -1
  46. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts +8 -1
  47. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
  48. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +10 -6
  49. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
  50. package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +503 -0
  51. package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -0
  52. package/dist/specification/src/sync/common/decoration/decorator-paths.js +497 -0
  53. package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -0
  54. package/dist/specification/src/sync/common/decoration/decorators.d.ts +116 -24
  55. package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
  56. package/dist/specification/src/sync/common/decoration/decorators.js +308 -78
  57. package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
  58. package/dist/specification/src/sync/common/decoration/index.d.ts +1 -0
  59. package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
  60. package/dist/specification/src/sync/common/decoration/index.js +1 -0
  61. package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
  62. package/dist/specification/src/sync/common/dist_tag.json +8 -3
  63. package/dist/specification/src/sync/common/generate/utils.d.ts +2 -1
  64. package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
  65. package/dist/specification/src/sync/common/generate/utils.js +5 -1
  66. package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
  67. package/dist/specification/src/sync/common/i18n.json +2 -1
  68. package/dist/specification/src/sync/common/rules.d.ts +20 -0
  69. package/dist/specification/src/sync/common/rules.d.ts.map +1 -1
  70. package/dist/specification/src/sync/common/rules.js +22 -2
  71. package/dist/specification/src/sync/common/rules.js.map +1 -1
  72. package/dist/specification/src/sync/common/utils.d.ts +22 -6
  73. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  74. package/dist/specification/src/sync/common/utils.js +122 -18
  75. package/dist/specification/src/sync/common/utils.js.map +1 -1
  76. package/dist/specification/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  77. package/dist/specification/src/sync/v2/generate/analyticalListReport.js +9 -7
  78. package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  79. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  80. package/dist/specification/src/sync/v2/generate/listReport.js +3 -1
  81. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  82. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  83. package/dist/specification/src/sync/v2/generate/objectPage.js +58 -2
  84. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  85. package/dist/specification/src/sync/v2/generate/overviewPage.d.ts +1 -9
  86. package/dist/specification/src/sync/v2/generate/overviewPage.d.ts.map +1 -1
  87. package/dist/specification/src/sync/v2/generate/overviewPage.js +30 -1
  88. package/dist/specification/src/sync/v2/generate/overviewPage.js.map +1 -1
  89. package/dist/specification/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
  90. package/dist/specification/src/sync/v2/import/app/appProvider.js +2 -0
  91. package/dist/specification/src/sync/v2/import/app/appProvider.js.map +1 -1
  92. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.d.ts +2 -1
  93. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -1
  94. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.js +5 -0
  95. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  96. package/dist/specification/src/sync/v2/import/pages/listReport.d.ts +2 -1
  97. package/dist/specification/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
  98. package/dist/specification/src/sync/v2/import/pages/listReport.js +5 -0
  99. package/dist/specification/src/sync/v2/import/pages/listReport.js.map +1 -1
  100. package/dist/specification/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
  101. package/dist/specification/src/sync/v2/import/pages/objectPage.js +2 -1
  102. package/dist/specification/src/sync/v2/import/pages/objectPage.js.map +1 -1
  103. package/dist/specification/src/sync/v2/import/utils.d.ts +28 -1
  104. package/dist/specification/src/sync/v2/import/utils.d.ts.map +1 -1
  105. package/dist/specification/src/sync/v2/import/utils.js +37 -0
  106. package/dist/specification/src/sync/v2/import/utils.js.map +1 -1
  107. package/dist/specification/src/sync/v2/utils.d.ts +12 -2
  108. package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
  109. package/dist/specification/src/sync/v2/utils.js +19 -2
  110. package/dist/specification/src/sync/v2/utils.js.map +1 -1
  111. package/dist/specification/src/sync/v4/application.d.ts +31 -2
  112. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  113. package/dist/specification/src/sync/v4/application.js +44 -4
  114. package/dist/specification/src/sync/v4/application.js.map +1 -1
  115. package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +2 -1
  116. package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
  117. package/dist/specification/src/sync/v4/export/controls/FilterBar.js +2 -1
  118. package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
  119. package/dist/specification/src/sync/v4/export/controls/Header.d.ts +4 -3
  120. package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
  121. package/dist/specification/src/sync/v4/export/controls/Header.js +7 -3
  122. package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
  123. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +2 -1
  124. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
  125. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +7 -0
  126. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
  127. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +2 -1
  128. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
  129. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +2 -1
  130. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
  131. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +1 -1
  132. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
  133. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +0 -13
  134. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  135. package/dist/specification/src/sync/v4/export/controls/Table.d.ts +32 -17
  136. package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
  137. package/dist/specification/src/sync/v4/export/controls/Table.js +84 -58
  138. package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
  139. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
  140. package/dist/specification/src/sync/v4/export/controls/TableColumn.js +2 -2
  141. package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  142. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
  143. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +2 -2
  144. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
  145. package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
  146. package/dist/specification/src/sync/v4/export/export.js +25 -3
  147. package/dist/specification/src/sync/v4/export/export.js.map +1 -1
  148. package/dist/specification/src/sync/v4/export/pages/ListReport.js +1 -1
  149. package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
  150. package/dist/specification/src/sync/v4/generate/actions.d.ts +1 -1
  151. package/dist/specification/src/sync/v4/generate/actions.d.ts.map +1 -1
  152. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
  153. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +20 -12
  154. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  155. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
  156. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +16 -1
  157. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
  158. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
  159. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +10 -1
  160. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
  161. package/dist/specification/src/sync/v4/generate/index.d.ts +1 -1
  162. package/dist/specification/src/sync/v4/generate/index.d.ts.map +1 -1
  163. package/dist/specification/src/sync/v4/generate/index.js +1 -1
  164. package/dist/specification/src/sync/v4/generate/index.js.map +1 -1
  165. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +73 -0
  166. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -0
  167. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +354 -0
  168. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -0
  169. package/dist/specification/src/sync/v4/generate/{listReport.d.ts → list-report/listReport.d.ts} +27 -16
  170. package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -0
  171. package/dist/specification/src/sync/v4/generate/{listReport.js → list-report/listReport.js} +191 -163
  172. package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -0
  173. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  174. package/dist/specification/src/sync/v4/generate/objectPage.js +145 -44
  175. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  176. package/dist/specification/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
  177. package/dist/specification/src/sync/v4/import/pages/listReport.js +2 -1
  178. package/dist/specification/src/sync/v4/import/pages/listReport.js.map +1 -1
  179. package/dist/specification/src/sync/v4/import/utils.js +5 -3
  180. package/dist/specification/src/sync/v4/import/utils.js.map +1 -1
  181. package/dist/specification/src/sync/v4/sync-rules/App.d.ts +9 -7
  182. package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
  183. package/dist/specification/src/sync/v4/sync-rules/App.js +4 -8
  184. package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
  185. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -9
  186. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
  187. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +2 -11
  188. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
  189. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +219 -96
  190. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
  191. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +557 -211
  192. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
  193. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +17 -22
  194. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
  195. package/dist/specification/src/sync/v4/sync-rules/Page.js +15 -22
  196. package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
  197. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.d.ts +1 -0
  198. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.d.ts.map +1 -1
  199. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.js +17 -9
  200. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.js.map +1 -1
  201. package/dist/specification/src/sync/v4/sync-rules/index.d.ts +5 -0
  202. package/dist/specification/src/sync/v4/sync-rules/index.d.ts.map +1 -0
  203. package/dist/specification/src/sync/v4/sync-rules/index.js +21 -0
  204. package/dist/specification/src/sync/v4/sync-rules/index.js.map +1 -0
  205. package/dist/specification/src/sync/v4/sync-rules/utils.d.ts.map +1 -1
  206. package/dist/specification/src/sync/v4/sync-rules/utils.js +4 -0
  207. package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -1
  208. package/dist/specification/src/sync/v4/utils/index.d.ts +2 -0
  209. package/dist/specification/src/sync/v4/utils/index.d.ts.map +1 -0
  210. package/dist/specification/src/sync/v4/utils/index.js +18 -0
  211. package/dist/specification/src/sync/v4/utils/index.js.map +1 -0
  212. package/dist/specification/src/sync/v4/utils/utils.d.ts +9 -1
  213. package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
  214. package/dist/specification/src/sync/v4/utils/utils.js +17 -2
  215. package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
  216. package/dist/specification/test/test-projects/v2sttaProdMan2/webapp/manifest.json +550 -0
  217. package/dist/specification/test/test-projects/v4new/webapp/manifest.json +147 -0
  218. package/dist/specification/test/test-utils/utils.d.ts +71 -0
  219. package/dist/specification/test/test-utils/utils.d.ts.map +1 -0
  220. package/dist/specification/test/test-utils/utils.js +400 -0
  221. package/dist/specification/test/test-utils/utils.js.map +1 -0
  222. package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +131 -0
  223. package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -0
  224. package/dist/specification/test/unit/decorators/validity-test-utils.js +661 -0
  225. package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -0
  226. package/dist/types/src/apiTypes.d.ts +2 -3
  227. package/dist/types/src/apiTypes.d.ts.map +1 -1
  228. package/dist/types/src/apiTypes.js.map +1 -1
  229. package/dist/types/src/common/types.d.ts +119 -13
  230. package/dist/types/src/common/types.d.ts.map +1 -1
  231. package/dist/types/src/common/types.js.map +1 -1
  232. package/dist/types/src/v2/controls/ObjectPageTable.d.ts +1 -1
  233. package/dist/types/src/v2/controls/Table.d.ts +1 -1
  234. package/dist/types/src/v4/controls/ObjectPageTable.d.ts +1 -1
  235. package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
  236. package/dist/types/src/v4/controls/Table.d.ts +3 -3
  237. package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
  238. package/package.json +14 -12
  239. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts +0 -107
  240. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts.map +0 -1
  241. package/dist/specification/src/sync/v4/generate/ListReportUtils.js +0 -394
  242. package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +0 -1
  243. package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +0 -1
  244. package/dist/specification/src/sync/v4/generate/listReport.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -6,11 +6,82 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
6
6
 
7
7
  # Prerequisites
8
8
 
9
- [NodeJS](https://nodejs.org/en/download/) Version `20.14.0` or higher
9
+ You have [Node.js](https://nodejs.org/en/download/) version `20.14.0` or higher installed
10
+
11
+ ## [1.136.17] - 2026-03-19
12
+
13
+ ### Added
14
+
15
+ - Enhanced the object page schema by adding `manifestPath` support for action properties inside manifest-based action menus
16
+ - Enhanced the object page schema by adding `manifestPath` support for chart sections, custom sections, and analytical list pages in OData V2 applications
17
+
18
+ ### Fixed
19
+
20
+ - Fixed an incorrect validation message with `analyticalConfiguration` in list report pages with multiple views
21
+ - Corrected the `annotationPath` for the Chart building block where `metaPath` was set to the selection variant annotation
22
+ - Fixed an issue where `undefined.position` was created in the `manifest.json` file during view creation and deletion for OData V4 applications
23
+ - Fixed the incomplete conversion of aggregations to schema logic in the building block `api.json` file
24
+ - Fixed an issue where building block properties had the `any` type instead of a specific type
25
+ - Fixed the initialization configuration of `i18next`
26
+
27
+ ### Quality
28
+
29
+ Upgrades:
30
+
31
+ | Package | Change |
32
+ | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
33
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.43.7` -> `0.43.10`] |
34
+ | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.35.10` -> `1.35.13`] |
35
+ | [i18next](https://www.i18next.com) | [`25.8.13` -> `25.8.18`] |
36
+ | [eslint](https://eslint.org) | [`9.39.3` -> `9.39.4`] |
37
+ | [tar](https://github.com/npm/node-tar) | [`7.5.10` -> `7.5.11`] |
38
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.27.3` -> `0.27.4`] |
39
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io) | [`8.54.0` -> `8.57.1`] |
40
+ | [@typescript-eslint/parser](https://typescript-eslint.io) | [`8.54.0` -> `8.57.1`] |
41
+
42
+ ## [1.136.16] - 2026-03-05
43
+
44
+ ### Added
45
+
46
+ - Added support for retrieving name options for the `ButtonGroup` from the `enum` map in the Rich Text Editor building block
47
+ - Enhanced the page schema by adding `manifestPath` support for actions, sections, columns, fields, and filter fields in OData V4 applications
48
+ - Enhanced the page schema by adding `manifestPath` support for overview page properties in OData V2 applications
49
+ - Enhanced the logic for resolving descriptions in the view node of building blocks.
50
+
51
+ ### Fixed
52
+
53
+ - Fixed an issue with the `useExportToExcel` and other flex properties where two flex changes were created instead of one for object pages in OData V2 applications
54
+ - Fixed an issue where the `enableMassEdit` property was converted to an empty object in OData V4 applications
55
+ - Fixed an issue where an empty view setup was defined with `"showCounts": true` which led to a "Cannot read properties of undefined (reading 'length') error"
56
+ - Fixed an issue where the `creationMode/name` property pointed to a table in an incorrect section and the `$ref` schema was incorrectly shared between sections
57
+ - Fixed an issue where the `personalization` property could not be set to `true` or `false` if a subproperty was defined
58
+ - Fixed an issue where a crash occurred during schema generation when a selection field has no value. Added a warning message instead.
59
+ - Fixed an issue where `undefined.position` is created in `manifest.json` during view creation/deletion for OData V4 applications.
60
+ - Fixed an issue where wrong `entityType` was resolved for `ListReport` page generation when `NavigationProperty` has `Partner` attribute.
61
+
62
+ ### Quality
63
+
64
+ Upgrades:
65
+
66
+ | Package | Change |
67
+ | -------------------------------------------------------------------- | ------------------------ |
68
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.27.2` -> `0.27.3`] |
69
+ | [semver](https://github.com/npm/node-semver) | [`7.7.3` -> `7.7.4`] |
70
+ | [i18next](https://www.i18next.com) | [`25.8.0` -> `25.8.13`] |
71
+ | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) | [`1.35.2` -> `1.35.10`] |
72
+ | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) | [`0.14.6` -> `0.15.0`] |
73
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) | [`0.42.6` -> `0.43.1`] |
74
+ | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) | [`0.9.8` -> `0.10.0`] |
75
+ | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) | [`0.10.20` -> `0.10.21`] |
76
+ | [axios](https://github.com/axios/axios) | [`1.13.5` -> `1.13.6`] |
77
+ | [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped) | [`3.5.33` -> `3.5.34`] |
78
+ | [eslint](https://eslint.org) | [`9.39.2` -> `9.39.3`] |
79
+ | [tar](https://github.com/npm/node-tar) | [`7.5.9` -> `7.5.11`] |
10
80
 
11
81
  ## [1.136.15] - 2026-02-04
12
82
 
13
83
  ### Fixed
84
+
14
85
  - Fixed an issue where a dot was used in a `additionalSemanticObjects` node text in the outline of the Page Editor
15
86
  - Updated the description for the `additionalSemanticObjects` property in the schema
16
87
  - Fixed an issue where an empty `[sap.ui5][routing][config]` object was always created in the `manifest.json` file, even when no related changes were made in OData V4 applications.
@@ -21,10 +92,11 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
21
92
  - Added missing definitions within `additionalProperties` that were not included in the schema for macro elements such as `sap.fe.macros.table.MassEdit`
22
93
 
23
94
  ### Added
24
- - Enhanced the RTE ButtonGroup with the following changes:
25
- - Hidden the ID
26
- - Made the Name read-only
27
- - Improved the labels
95
+
96
+ - Enhanced the RTE ButtonGroup with the following changes:
97
+ - Hidden the ID
98
+ - Made the Name read-only
99
+ - Improved the labels
28
100
  - Updated the UI ordering for the propertyIndex based on the `customToolbarPriority` attribute for RTE Button Groups
29
101
  - Added the ability to view, add, maintain, and delete action menus based on manifest settings in the Page Editor
30
102
 
@@ -32,33 +104,36 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
32
104
 
33
105
  Upgrades:
34
106
 
35
- | Package | Change |
36
- |---|---|
37
- | [axios](https://github.com/axios/axios) ([source](https://github.com/axios/axios)) | `1.13.2` → `1.13.5` |
107
+ | Package | Change |
108
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- |
109
+ | [axios](https://github.com/axios/axios) ([source](https://github.com/axios/axios)) | `1.13.2` → `1.13.5` |
38
110
  | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter)) | `0.10.19` → `0.10.20` |
39
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | `0.41.6` → `0.42.6` |
40
- | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | `1.34.4` → `1.35.2` |
41
- | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | `0.14.5` → `0.14.6` |
42
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) | `8.53.1` → `8.54.0` |
43
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) | `8.53.1` → `8.54.0` |
44
- | [eslint](https://eslint.org) | `9.26.0` → `9.39.2` |
45
- | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.5` → `10.1.8` |
46
- | [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) | `5.3.5` → `5.3.6` |
47
- | [i18next](https://www.i18next.com) | `25.7.4` → `25.8.0` |
48
- | [prettier](https://prettier.io) | `3.8.0` → `3.8.1` |
49
- | [tar](https://github.com/isaacs/node-tar) | `7.5.7` → `7.5.9` |
111
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | `0.41.6` → `0.42.6` |
112
+ | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | `1.34.4` → `1.35.2` |
113
+ | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | `0.14.5` → `0.14.6` |
114
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) | `8.53.1` → `8.54.0` |
115
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) | `8.53.1` → `8.54.0` |
116
+ | [eslint](https://eslint.org) | `9.26.0` → `9.39.2` |
117
+ | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.5` → `10.1.8` |
118
+ | [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) | `5.3.5` → `5.3.6` |
119
+ | [i18next](https://www.i18next.com) | `25.7.4` → `25.8.0` |
120
+ | [prettier](https://prettier.io) | `3.8.0` → `3.8.1` |
121
+ | [tar](https://github.com/isaacs/node-tar) | `7.5.7` → `7.5.9` |
50
122
 
51
123
  ## [1.136.14] - 2023-01-21
52
124
 
53
125
  ### Added
126
+
54
127
  - Added support for setting the `tooltip`, `importance`, and `required` properties for custom columns
55
128
  - Enhanced the page schema by adding `manifestPath` support for table properties and static nodes (such as the header and the root page level) for OData V2 applications
56
129
  - Added support for the `CreateMode` property at the page level and application level for OData V2 applications
57
130
 
58
131
  ### Changed
132
+
59
133
  - Refactored the initial step of generating a list report page for OData V4 applications
60
134
 
61
135
  ### Fixed
136
+
62
137
  - Ensures compatibility with newer OData v4.01 services while maintaining backward compatibility with existing v4.0 services.
63
138
  - Fixed an issue where the empty `sap.ui.generic.app` property was removed and an empty `chartSettings` property was added to the `manifest.json` file when exporting an overview page for OData V2 applications
64
139
 
@@ -66,31 +141,34 @@ Upgrades:
66
141
 
67
142
  Upgrades:
68
143
 
69
- | Package | Change |
70
- |---|---|
71
- | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter)) | [`0.10.9` -> `0.10.19`] |
72
- | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/edmx-parser)) | [`0.9.6` -> `0.9.8`] |
73
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.40.2` -> `0.40.11`] |
74
- | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.33.0` -> `1.34.2`] |
75
- | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | [`0.13.2` -> `0.14.5`] |
76
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.51.0` -> `8.53.1`] |
77
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.51.0` -> `8.53.1`] |
78
- | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.4` → `5.5.5`] |
79
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.7.3` -> `25.7.4`] |
80
- | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.6.2` → `3.8.0`] |
81
- | [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.65.1` -> `0.67.1`] |
144
+ | Package | Change |
145
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
146
+ | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/annotation-converter)) | [`0.10.9` -> `0.10.19`] |
147
+ | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/edmx-parser)) | [`0.9.6` -> `0.9.8`] |
148
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.40.2` -> `0.40.11`] |
149
+ | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.33.0` -> `1.34.2`] |
150
+ | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | [`0.13.2` -> `0.14.5`] |
151
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.51.0` -> `8.53.1`] |
152
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.51.0` -> `8.53.1`] |
153
+ | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.4` → `5.5.5`] |
154
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.7.3` -> `25.7.4`] |
155
+ | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.6.2` → `3.8.0`] |
156
+ | [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.65.1` -> `0.67.1`] |
82
157
 
83
158
  ## [1.136.13] - 2023-01-07
84
159
 
85
160
  ### Added
161
+
86
162
  - Introduced `manifestPath` property in v2/v4 App.json schemas to represent JSON path reference pointing to path in manifest.json file.
87
163
  - Enhanced page schema by adding `manifestPath` support for table properties and static nodes (FilterBar, Header).
88
164
 
89
165
  ### Fixed
166
+
90
167
  OData V4:
168
+
91
169
  - Macros. Change isViewNode: false for non UI related nodes for Table
92
170
  - Macros. Generated schema for macros control does not contains properties/aggregation from extended macros control/class. Scenario with RichTextEditorWithMetadata
93
- OData V2:
171
+ OData V2:
94
172
  - Unknown or unsupported properties are removed from `enableMassEdit` object during export
95
173
  - OVP. Export issue - not possible to remove not allowed chart card properties
96
174
 
@@ -98,25 +176,27 @@ OData V2:
98
176
 
99
177
  Upgrades:
100
178
 
101
- | Package | Change |
102
- |---|---|
103
- | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.32.12` -> `1.33.0`] |
104
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.3` -> `25.7.3`] |
105
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.40.0` -> `0.40.2`] |
106
- | [esbuild](https://github.com/evanw/esbuild) | [`0.27.1` → `0.27.2`] |
107
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.49.0` -> `8.51.0`] |
108
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.49.0` -> `8.51.0`] |
179
+ | Package | Change |
180
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
181
+ | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.32.12` -> `1.33.0`] |
182
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.3` -> `25.7.3`] |
183
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.40.0` -> `0.40.2`] |
184
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.27.1` → `0.27.2`] |
185
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.49.0` -> `8.51.0`] |
186
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.49.0` -> `8.51.0`] |
109
187
 
110
188
  ## [1.136.12] - 2025-11-26
111
189
 
112
190
  ### Added
191
+
113
192
  - Enhanced the `readApp` API method:
114
- - The method now returns an `applicationModel` where each page includes its own `TreeModel`
115
- - Added the `skipParsing` option (default: false) to allow skipping page parsing and model generation
193
+ - The method now returns an `applicationModel` where each page includes its own `TreeModel`
194
+ - Added the `skipParsing` option (default: false) to allow skipping page parsing and model generation
116
195
 
117
196
  ### Fixed
118
197
 
119
198
  OData V4:
199
+
120
200
  - Removed the `enableMassEdit` and `analyticalConfiguration` properties from the chart view
121
201
  - Avoid unnecessary deletion of `targets.{target}.contextPattern`
122
202
 
@@ -124,29 +204,29 @@ OData V4:
124
204
 
125
205
  Upgrades:
126
206
 
127
- | Package | Change |
128
- |---|---|
129
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.18` -> `0.39.25`] |
130
- | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | [`0.13.0` -> `0.13.2`] |
131
- | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.7` -> `0.10.9`] |
132
- | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.32.8` -> `1.32.9`] |
133
- | [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery) | [`3.5.32` -> `3.5.33`] |
134
- | [@types/mem-fs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mem-fs) | [`1.1.2` -> `1.1.5`] |
135
- | [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema) | [-> `7.0.5`] |
136
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.2` -> `25.6.3`] |
137
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.4` -> `8.48.0`] |
138
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.4` -> `8.48.0`] |
139
- | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.11.0` -> `1.13.2`] |
140
- | [es5-ext](https://github.com/medikoo/es5-ext) | [`0.10.63` -> `0.10.64`] |
141
- | [glob-parent](https://github.com/gulpjs/glob-parent) | [`6.0.1` -> `6.0.2`] |
142
- | [parse-url](https://github.com/IonicaBizau/parse-url) | [`9.0.0` -> `9.2.0`] |
143
- | [tar](https://github.com/isaacs/node-tar) | [`7.0.2` -> `7.5.2`] |
144
- | [js-yaml](https://github.com/nodeca/js-yaml) | [-> `4.1.1`] |
145
-
207
+ | Package | Change |
208
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
209
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.18` -> `0.39.25`] |
210
+ | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | [`0.13.0` -> `0.13.2`] |
211
+ | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.7` -> `0.10.9`] |
212
+ | [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.32.8` -> `1.32.9`] |
213
+ | [@types/jquery](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery) | [`3.5.32` -> `3.5.33`] |
214
+ | [@types/mem-fs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mem-fs) | [`1.1.2` -> `1.1.5`] |
215
+ | [@types/json-schema](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema) | [-> `7.0.5`] |
216
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.2` -> `25.6.3`] |
217
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.4` -> `8.48.0`] |
218
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.4` -> `8.48.0`] |
219
+ | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.11.0` -> `1.13.2`] |
220
+ | [es5-ext](https://github.com/medikoo/es5-ext) | [`0.10.63` -> `0.10.64`] |
221
+ | [glob-parent](https://github.com/gulpjs/glob-parent) | [`6.0.1` -> `6.0.2`] |
222
+ | [parse-url](https://github.com/IonicaBizau/parse-url) | [`9.0.0` -> `9.2.0`] |
223
+ | [tar](https://github.com/isaacs/node-tar) | [`7.0.2` -> `7.5.2`] |
224
+ | [js-yaml](https://github.com/nodeca/js-yaml) | [-> `4.1.1`] |
146
225
 
147
226
  ## [1.136.11] - 2025-11-12
148
227
 
149
228
  ### Added
229
+
150
230
  - Added the ability to delete building blocks on a custom page
151
231
  - Added the ability to delete the "Page" building block
152
232
  - Added the ability to create custom fields in form sections
@@ -154,6 +234,7 @@ Upgrades:
154
234
  - Added the new API method `readApp`: a simpler wrapper around `importProject` that only requires the app parameter (path or `ApplicationAccess` instance)
155
235
 
156
236
  ### Fixed
237
+
157
238
  - Fixed an issue where a message defined in i18n did not match the mode name capitalization
158
239
  - Removed unsupported navigation properties from the `creationMode: creationFields` property dropdown
159
240
  - Removed unsupported navigation properties from the `enableMassEdit: visibleFields/ignoredFields` property dropdown
@@ -162,46 +243,50 @@ Upgrades:
162
243
 
163
244
  Upgrades:
164
245
 
165
- | Package | Change |
166
- |---|---|
167
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.0` -> `25.6.2`] |
168
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.15` -> `0.39.18`] |
169
- | [esbuild](https://github.com/evanw/esbuild) | [`0.25.11` -> `0.27.0`] |
170
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`] |
171
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.0` -> `8.46.2`] |
172
- | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.12.0` -> `1.13.2`] |
173
- | [tar](https://github.com/isaacs/node-tar) | [`7.5.1` -> `7.5.2`] |
174
- | [glob](https://github.com/isaacs/node-glob) | [-> `10.5.0`] |
246
+ | Package | Change |
247
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
248
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.6.0` -> `25.6.2`] |
249
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.15` -> `0.39.18`] |
250
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.25.11` -> `0.27.0`] |
251
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`] |
252
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.0` -> `8.46.2`] |
253
+ | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.12.0` -> `1.13.2`] |
254
+ | [tar](https://github.com/isaacs/node-tar) | [`7.5.1` -> `7.5.2`] |
255
+ | [glob](https://github.com/isaacs/node-glob) | [-> `10.5.0`] |
175
256
 
176
257
  ## [1.136.10] - 2025-10-29
177
258
 
178
259
  ### Added
179
260
 
180
261
  OData V4:
262
+
181
263
  - Support for the `group` property for actions
182
264
  - Support for the `creationMode` property for the List Report tables
183
265
 
184
266
  ### Fixed
267
+
185
268
  - Fixed an issue where the Object Page synchronization of tables was not working correctly
186
269
 
187
270
  ### Quality
188
271
 
189
272
  Upgrades:
190
273
 
191
- | Package | Change |
192
- |---|---|
193
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.10` -> `0.39.15`] |
194
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`] |
195
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.0` -> `8.46.2`] |
196
- | [esbuild](https://github.com/evanw/esbuild) | [`0.25.10` -> `0.25.11`] |
197
- | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.6` -> `0.10.7`] |
274
+ | Package | Change |
275
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
276
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.10` -> `0.39.15`] |
277
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.0` -> `8.46.2`] |
278
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.0` -> `8.46.2`] |
279
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.25.10` -> `0.25.11`] |
280
+ | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.6` -> `0.10.7`] |
198
281
 
199
282
  ## [1.136.9] - 2025-10-15
200
283
 
201
284
  ### Added
285
+
202
286
  - Reverted macro labels to display building block type and ID
203
287
 
204
288
  ### Fixed
289
+
205
290
  - Fixed an issue where documentation links, represented by a book icon for the `Creation Mode` property, were missing in the Page Editor
206
291
  - Fixed an issue where the `Quick Variant Selection` settings were not properly transferred to the `manifest.json` file
207
292
  - Update macros schema node description and metadata for UI rendering
@@ -211,24 +296,25 @@ Upgrades:
211
296
 
212
297
  Upgrades:
213
298
 
214
- | Package | Change |
215
- |---|---|
216
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.5.2` -> `25.6.0`] |
217
- | [patch-package](https://github.com/ds300/patch-package) | [`8.0.0` -> `8.0.1`] |
218
- | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.9.2` -> `5.9.3`] |
219
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.2` -> `0.39.10`] |
220
- | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.5` -> `0.10.6`] |
221
- | [semver](https://github.com/npm/node-semver) | [`7.7.2` -> `7.7.3`] |
222
- | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.4` -> `29.4.5`] |
223
- | [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
224
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.45.0` -> `8.46.0`] |
225
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.45.0` -> `8.46.0`] |
299
+ | Package | Change |
300
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
301
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.5.2` -> `25.6.0`] |
302
+ | [patch-package](https://github.com/ds300/patch-package) | [`8.0.0` -> `8.0.1`] |
303
+ | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.9.2` -> `5.9.3`] |
304
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.39.2` -> `0.39.10`] |
305
+ | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.5` -> `0.10.6`] |
306
+ | [semver](https://github.com/npm/node-semver) | [`7.7.2` -> `7.7.3`] |
307
+ | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.4` -> `29.4.5`] |
308
+ | [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
309
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.45.0` -> `8.46.0`] |
310
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.45.0` -> `8.46.0`] |
226
311
 
227
312
  ## [1.136.8] - 2025-10-01
228
313
 
229
314
  ### Added
230
315
 
231
316
  OData V4:
317
+
232
318
  - `operationGroupingMode` property support for table `enableMassEdit`
233
319
  - Add icon support and improve description for main building blocks in schema
234
320
 
@@ -242,42 +328,44 @@ Upgrades:
242
328
 
243
329
  - Upgraded TS target to `ES2023`
244
330
 
245
- | Package | Change |
246
- |---|---|
247
- | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.1` -> `29.4.4`] |
248
- | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser)) | [`0.9.5` -> `0.9.6`] |
249
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.38.6` -> `0.39.2`] |
250
- | [esbuild](https://github.com/evanw/esbuild) | [`0.25.9` -> `0.25.10`] |
251
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.44.0` -> `8.45.0`] |
252
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.44.0` -> `8.45.0`] |
253
- | [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
331
+ | Package | Change |
332
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
333
+ | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.1` -> `29.4.4`] |
334
+ | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser)) | [`0.9.5` -> `0.9.6`] |
335
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.38.6` -> `0.39.2`] |
336
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.25.9` -> `0.25.10`] |
337
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.44.0` -> `8.45.0`] |
338
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.44.0` -> `8.45.0`] |
339
+ | [tar](https://github.com/isaacs/node-tar) | [`7.4.3` -> `7.5.1`] |
254
340
 
255
341
  ## [1.136.7] - 2025-09-17
256
342
 
257
343
  ### Added
258
344
 
259
345
  OData V4:
346
+
260
347
  - Object Page: Added support for the `rowCountMode: Interactive` property on grid, analytical, and tree tables.
261
348
 
262
349
  ### Quality
263
350
 
264
351
  Upgrades:
265
352
 
266
- | Package | Change |
267
- |---|---|
268
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.38.2` -> `0.38.6`] |
269
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.42.0` -> `8.44.0`] |
270
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.42.0` -> `8.44.0`] |
271
- | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.11.0` -> `1.12.0`] |
272
- | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.3` -> `0.10.5`] |
273
- | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser)) | [`0.8.2` -> `0.9.5`] |
274
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.2` -> `25.5.2`] |
353
+ | Package | Change |
354
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
355
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.38.2` -> `0.38.6`] |
356
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.42.0` -> `8.44.0`] |
357
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.42.0` -> `8.44.0`] |
358
+ | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.11.0` -> `1.12.0`] |
359
+ | [@sap-ux/annotation-converter](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/annotation-converter)) | [`0.10.3` -> `0.10.5`] |
360
+ | [@sap-ux/edmx-parser](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/HEAD/packages/edmx-parser)) | [`0.8.2` -> `0.9.5`] |
361
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.2` -> `25.5.2`] |
275
362
 
276
363
  ## [1.136.6] - 2025-09-03
277
364
 
278
365
  ### Added
279
366
 
280
367
  OData V4:
368
+
281
369
  - Added possibility to define the 'InlineCreationRows' mode as the default creation mode that is used for all tables within an application.
282
370
  - Object Page: Support of `creationMode` settings on tables
283
371
 
@@ -289,12 +377,12 @@ OVP page. Properties from different card types on the OVP page were not imported
289
377
 
290
378
  Upgrades:
291
379
 
292
- | Package | Change |
293
- |---|---|
294
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.40.0` -> `8.42.0`] |
295
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.40.0` -> `8.42.0`] |
296
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.38.0` -> `0.38.2`]) |
297
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.0` -> `25.4.2`] |
380
+ | Package | Change |
381
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
382
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.40.0` -> `8.42.0`] |
383
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.40.0` -> `8.42.0`] |
384
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.38.0` -> `0.38.2`]) |
385
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.4.0` -> `25.4.2`] |
298
386
 
299
387
  ## [1.136.5] - 2025-08-20
300
388
 
@@ -306,56 +394,57 @@ Page macros. Default aggregation `items` is not recognized
306
394
 
307
395
  Upgrades:
308
396
 
309
- | Package | Change |
310
- |---|---|
311
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.39.0` -> `8.40.0`] |
312
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.39.0` -> `8.40.0`] |
313
- | [esbuild](https://github.com/evanw/esbuild) | [`0.25.8` -> `0.25.9`] |
314
- | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.3` -> `5.5.4`] |
315
- | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.3.0` -> `25.4.0`] |
316
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.36.0` -> `0.38.0`] |
397
+ | Package | Change |
398
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
399
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.39.0` -> `8.40.0`] |
400
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.39.0` -> `8.40.0`] |
401
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.25.8` -> `0.25.9`] |
402
+ | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.3` -> `5.5.4`] |
403
+ | [i18next](https://www.i18next.com) ([source](https://github.com/i18next/i18next)) | [`25.3.0` -> `25.4.0`] |
404
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.36.0` -> `0.38.0`] |
317
405
 
318
406
  ## [1.136.4] - 2025-08-06
319
407
 
320
408
  ### Fixed
321
409
 
322
410
  OData V4:
411
+
323
412
  - Support of `enableMassEdit` properties for single view table
324
413
 
325
414
  ### Quality
326
415
 
327
416
  Upgrades:
328
417
 
329
- | Package | Change |
330
- |---|---|
331
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.37.0` -> `8.39.0`] |
332
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.37.0` -> `8.39.0`] |
333
- | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.8.3` -> `5.9.2`] |
334
- | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.0` -> `29.4.1`] |
335
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.35.5` -> `0.36.0`] |
336
- | [i18next](https://github.com/i18next/i18next) | [`23.16.8` -> `25.3.0`] |
337
- | [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.57.0` -> `0.65.1`] |
418
+ | Package | Change |
419
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
420
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.37.0` -> `8.39.0`] |
421
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.37.0` -> `8.39.0`] |
422
+ | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | [`5.8.3` -> `5.9.2`] |
423
+ | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.4.0` -> `29.4.1`] |
424
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.35.5` -> `0.36.0`] |
425
+ | [i18next](https://github.com/i18next/i18next) | [`23.16.8` -> `25.3.0`] |
426
+ | [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | [`0.57.0` -> `0.65.1`] |
338
427
 
339
428
  ## [1.136.3] - 2025-07-23
340
429
 
341
430
  ### Added
342
431
 
343
432
  OData V4:
433
+
344
434
  - Support of `enableMassEdit` properties for table
345
435
 
346
436
  ### Quality
347
437
 
348
438
  Upgrades:
349
439
 
350
- | Package | Change |
351
- |---|---|
352
- | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.10.0` -> `1.11.0`] |
353
- | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | [`9.1.0` -> `9.1.2`] |
354
- | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.1` -> `5.5.3`] |
355
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.35.1` -> `8.37.0`] |
356
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.35.1` -> `8.37.0`] |
357
- | [esbuild](https://github.com/evanw/esbuild) | [`0.25.5` -> `0.25.8`] |
358
-
440
+ | Package | Change |
441
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
442
+ | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.10.0` -> `1.11.0`] |
443
+ | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | [`9.1.0` -> `9.1.2`] |
444
+ | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.1` -> `5.5.3`] |
445
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.35.1` -> `8.37.0`] |
446
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.35.1` -> `8.37.0`] |
447
+ | [esbuild](https://github.com/evanw/esbuild) | [`0.25.5` -> `0.25.8`] |
359
448
 
360
449
  ## [1.136.2] - 2025-07-09
361
450
 
@@ -363,12 +452,12 @@ Upgrades:
363
452
 
364
453
  Upgrades:
365
454
 
366
- | Package | Change |
367
- |---|---|
455
+ | Package | Change |
456
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
368
457
  | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.35.0` -> `8.35.1`] |
369
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.35.0` -> `8.35.1`] |
370
- | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.5.3` -> `3.6.2`] |
371
- | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.0` -> `5.5.1`] |
458
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.35.0` -> `8.35.1`] |
459
+ | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.5.3` -> `3.6.2`] |
460
+ | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.5.0` -> `5.5.1`] |
372
461
 
373
462
  ## [1.136.1] - 2025-06-25
374
463
 
@@ -376,15 +465,15 @@ Upgrades:
376
465
 
377
466
  Upgrades:
378
467
 
379
- | Package | Change |
380
- |---|---|
381
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.35.0` -> `0.35.5`]|
382
- | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.9.0` -> `1.10.0`] |
383
- | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | [`50.7.1` -> `50.8.0`] |
384
- | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.4.1` -> `5.5.0`] |
385
- | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.3.4` -> `29.4.0`] |
468
+ | Package | Change |
469
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
470
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | [`0.35.0` -> `0.35.5`] |
471
+ | [axios](https://axios-http.com) ([source](https://github.com/axios/axios)) | [`1.9.0` -> `1.10.0`] |
472
+ | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | [`50.7.1` -> `50.8.0`] |
473
+ | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`5.4.1` -> `5.5.0`] |
474
+ | [ts-jest](https://kulshekhar.github.io/ts-jest) ([source](https://github.com/kulshekhar/ts-jest)) | [`29.3.4` -> `29.4.0`] |
386
475
  | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.34.0` -> `8.35.0`] |
387
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.34.0` -> `8.35.0`] |
476
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.34.0` -> `8.35.0`] |
388
477
 
389
478
  ## [1.136.0] - 2025-06-11
390
479
 
@@ -393,32 +482,36 @@ Upgrades:
393
482
  First version for SAP UI5 1.136 and higher
394
483
 
395
484
  OData V4:
485
+
396
486
  - Support of `hideDraft` related internal setting
397
487
  - Basic support for new SAP Ariba LR/OP templates
398
488
 
399
489
  OData V4/V2:
490
+
400
491
  - Schema generation - add link to documentation for "flexibleColumnLayout" property
401
492
 
402
493
  ### Fixed
403
494
 
404
495
  OData V4:
496
+
405
497
  - Export of the empty application settings
406
498
 
407
499
  OData V4/V2:
500
+
408
501
  - Schema generation - update description for "flexibleColumnLayout" property
409
502
 
410
503
  ### Quality
411
504
 
412
505
  Upgrades:
413
506
 
414
- | Package | Type | Update | Change |
415
- |---|---|---|---|
416
- | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.4` -> `0.25.5`] |
417
- | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | minor | [`50.6.17` -> `50.7.1`] |
418
- | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.4.0` -> `5.4.1`] |
419
- | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.32.1` -> `8.34.0`]|
420
- | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.32.1` -> `8.34.0`] |
421
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | devDependencies | minor | [`0.33.28` -> `0.35.0`]
422
- | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | dependencies | minor | [`0.33.28` -> `0.35.0`]
423
- | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | devDependencies | minor | [`0.12.0` -> `0.13.0`]
424
- | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | dependencies | minor | [`0.12.0` -> `0.13.0`]
507
+ | Package | Type | Update | Change |
508
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------ | ----------------------- |
509
+ | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.25.4` -> `0.25.5`] |
510
+ | [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | devDependencies | minor | [`50.6.17` -> `50.7.1`] |
511
+ | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | devDependencies | patch | [`5.4.0` -> `5.4.1`] |
512
+ | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | devDependencies | minor | [`8.32.1` -> `8.34.0`] |
513
+ | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | devDependencies | minor | [`8.32.1` -> `8.34.0`] |
514
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | devDependencies | minor | [`0.33.28` -> `0.35.0`] |
515
+ | [@sap-ux/fe-fpm-writer](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/fe-fpm-writer)) | dependencies | minor | [`0.33.28` -> `0.35.0`] |
516
+ | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | devDependencies | minor | [`0.12.0` -> `0.13.0`] |
517
+ | [@sap-ux/vocabularies-types](https://github.com/SAP/open-ux-odata) ([source](https://github.com/SAP/open-ux-odata/tree/main/packages/vocabularies-types)) | dependencies | minor | [`0.12.0` -> `0.13.0`] |