@sap/ux-specification 1.139.4 → 1.139.6

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 (272) hide show
  1. package/CHANGELOG.md +66 -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 +251 -254
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v2/ApplicationV2.json +46 -12
  16. package/dist/schemas/v2/ListReportNewConfig.json +136 -0
  17. package/dist/schemas/v2/ObjectPageConfig.json +11 -5
  18. package/dist/schemas/v4/ApplicationV4.json +61 -28
  19. package/dist/schemas/v4/BuildingBlocksConfig.json +163 -640
  20. package/dist/schemas/v4/ListReportConfig.json +248 -9
  21. package/dist/schemas/v4/ObjectPageConfig.json +269 -3
  22. package/dist/specification/package.json +16 -16
  23. package/dist/specification/scripts/macros/schema.d.ts +7 -0
  24. package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
  25. package/dist/specification/scripts/macros/schema.js +61 -14
  26. package/dist/specification/scripts/macros/schema.js.map +1 -1
  27. package/dist/specification/scripts/macros/types.d.ts +1 -0
  28. package/dist/specification/scripts/macros/types.d.ts.map +1 -1
  29. package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
  30. package/dist/specification/scripts/schema/to-json-schema.js +64 -9
  31. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  32. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
  33. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +1 -0
  34. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
  35. package/dist/specification/src/sync/common/decoration/decorators.d.ts +65 -4
  36. package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
  37. package/dist/specification/src/sync/common/decoration/decorators.js +138 -8
  38. package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
  39. package/dist/specification/src/sync/common/distTagEvaluator.d.ts +10 -3
  40. package/dist/specification/src/sync/common/distTagEvaluator.d.ts.map +1 -1
  41. package/dist/specification/src/sync/common/distTagEvaluator.js +14 -4
  42. package/dist/specification/src/sync/common/distTagEvaluator.js.map +1 -1
  43. package/dist/specification/src/sync/common/dist_tag.json +9 -5
  44. package/dist/specification/src/sync/common/generate/objectPage.d.ts +10 -1
  45. package/dist/specification/src/sync/common/generate/objectPage.d.ts.map +1 -1
  46. package/dist/specification/src/sync/common/generate/objectPage.js +63 -7
  47. package/dist/specification/src/sync/common/generate/objectPage.js.map +1 -1
  48. package/dist/specification/src/sync/common/generate/utils.d.ts +11 -4
  49. package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
  50. package/dist/specification/src/sync/common/generate/utils.js +32 -20
  51. package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
  52. package/dist/specification/src/sync/common/i18n.json +9 -2
  53. package/dist/specification/src/sync/common/rules.d.ts +1 -0
  54. package/dist/specification/src/sync/common/rules.d.ts.map +1 -1
  55. package/dist/specification/src/sync/common/rules.js +38 -13
  56. package/dist/specification/src/sync/common/rules.js.map +1 -1
  57. package/dist/specification/src/sync/common/utils.d.ts +64 -0
  58. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  59. package/dist/specification/src/sync/common/utils.js +149 -15
  60. package/dist/specification/src/sync/common/utils.js.map +1 -1
  61. package/dist/specification/src/sync/v2/application.d.ts +1 -0
  62. package/dist/specification/src/sync/v2/application.d.ts.map +1 -1
  63. package/dist/specification/src/sync/v2/application.js +18 -0
  64. package/dist/specification/src/sync/v2/application.js.map +1 -1
  65. package/dist/specification/src/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -1
  66. package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
  67. package/dist/specification/src/sync/v2/export/exportPage.js +15 -4
  68. package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
  69. package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
  70. package/dist/specification/src/sync/v2/export/exportPageGeneric.js +6 -12
  71. package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
  72. package/dist/specification/src/sync/v2/export/factory.d.ts +26 -0
  73. package/dist/specification/src/sync/v2/export/factory.d.ts.map +1 -1
  74. package/dist/specification/src/sync/v2/export/factory.js +3 -3
  75. package/dist/specification/src/sync/v2/export/factory.js.map +1 -1
  76. package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts +1 -0
  77. package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts.map +1 -1
  78. package/dist/specification/src/sync/v2/export/pages/ObjectPage.js +11 -0
  79. package/dist/specification/src/sync/v2/export/pages/ObjectPage.js.map +1 -1
  80. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  81. package/dist/specification/src/sync/v2/generate/listReport.js +46 -1
  82. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  83. package/dist/specification/src/sync/v2/generate/manifestPropertyUtils.d.ts +1 -2
  84. package/dist/specification/src/sync/v2/generate/manifestPropertyUtils.d.ts.map +1 -1
  85. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  86. package/dist/specification/src/sync/v2/generate/objectPage.js +63 -13
  87. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  88. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts +1 -1
  89. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
  90. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +4 -1
  91. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
  92. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +8 -0
  93. package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -1
  94. package/dist/specification/src/sync/v2/generate/stableIdUtils.js +1 -0
  95. package/dist/specification/src/sync/v2/generate/stableIdUtils.js.map +1 -1
  96. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +3 -2
  97. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js.map +1 -1
  98. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts +78 -0
  99. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts.map +1 -0
  100. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +454 -0
  101. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -0
  102. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts +22 -0
  103. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts.map +1 -0
  104. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js +124 -0
  105. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js.map +1 -0
  106. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +55 -0
  107. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -0
  108. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +152 -0
  109. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -0
  110. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +3 -0
  111. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
  112. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +3 -0
  113. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
  114. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +4 -2
  115. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
  116. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +61 -23
  117. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
  118. package/dist/specification/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
  119. package/dist/specification/src/sync/v2/import/pages/overviewPage.js +32 -13
  120. package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
  121. package/dist/specification/src/sync/v2/utils.d.ts +23 -0
  122. package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
  123. package/dist/specification/src/sync/v2/utils.js +67 -0
  124. package/dist/specification/src/sync/v2/utils.js.map +1 -1
  125. package/dist/specification/src/sync/v4/application.d.ts +4 -0
  126. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  127. package/dist/specification/src/sync/v4/application.js +51 -1
  128. package/dist/specification/src/sync/v4/application.js.map +1 -1
  129. package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -2
  130. package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
  131. package/dist/specification/src/sync/v4/export/controls/Header.js +14 -2
  132. package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
  133. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +3 -1
  134. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
  135. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +17 -2
  136. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
  137. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.d.ts +3 -1
  138. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.d.ts.map +1 -1
  139. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.js +20 -0
  140. package/dist/specification/src/sync/v4/export/controls/ObjectPageFooterAction.js.map +1 -1
  141. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.d.ts +6 -2
  142. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.d.ts.map +1 -1
  143. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.js +27 -4
  144. package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.js.map +1 -1
  145. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.d.ts +1 -0
  146. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.d.ts.map +1 -1
  147. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.js +10 -0
  148. package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.js.map +1 -1
  149. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.d.ts +7 -2
  150. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.d.ts.map +1 -1
  151. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.js +37 -4
  152. package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.js.map +1 -1
  153. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.d.ts +1 -0
  154. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.d.ts.map +1 -1
  155. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.js +10 -0
  156. package/dist/specification/src/sync/v4/export/controls/ObjectPageSectionAction.js.map +1 -1
  157. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +2 -0
  158. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
  159. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +10 -0
  160. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  161. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +4 -0
  162. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts.map +1 -1
  163. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js +30 -0
  164. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  165. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +7 -2
  166. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts.map +1 -1
  167. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.js +36 -3
  168. package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.js.map +1 -1
  169. package/dist/specification/src/sync/v4/export/controls/Table.d.ts +3 -0
  170. package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
  171. package/dist/specification/src/sync/v4/export/controls/Table.js +40 -23
  172. package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
  173. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts +7 -0
  174. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
  175. package/dist/specification/src/sync/v4/export/controls/TableColumn.js +60 -0
  176. package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  177. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +14 -4
  178. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
  179. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +75 -9
  180. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
  181. package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
  182. package/dist/specification/src/sync/v4/export/fpmCustomPage.js +13 -3
  183. package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
  184. package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts.map +1 -1
  185. package/dist/specification/src/sync/v4/export/pages/ListReport.js +2 -1
  186. package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
  187. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts +107 -0
  188. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts.map +1 -0
  189. package/dist/specification/src/sync/v4/generate/ListReportUtils.js +392 -0
  190. package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +1 -0
  191. package/dist/specification/src/sync/v4/generate/listReport.d.ts +107 -2
  192. package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +1 -1
  193. package/dist/specification/src/sync/v4/generate/listReport.js +176 -91
  194. package/dist/specification/src/sync/v4/generate/listReport.js.map +1 -1
  195. package/dist/specification/src/sync/v4/generate/objectPage.d.ts +1 -0
  196. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  197. package/dist/specification/src/sync/v4/generate/objectPage.js +64 -8
  198. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  199. package/dist/specification/src/sync/v4/sync-rules/App.d.ts +141 -0
  200. package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -0
  201. package/dist/specification/src/sync/v4/sync-rules/App.js +208 -0
  202. package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -0
  203. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +193 -0
  204. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -0
  205. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +384 -0
  206. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -0
  207. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +172 -0
  208. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -0
  209. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +410 -0
  210. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -0
  211. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +70 -0
  212. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -0
  213. package/dist/specification/src/sync/v4/sync-rules/Page.js +73 -0
  214. package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -0
  215. package/dist/specification/src/sync/v4/sync-rules/utils.d.ts +9 -0
  216. package/dist/specification/src/sync/v4/sync-rules/utils.d.ts.map +1 -0
  217. package/dist/specification/src/sync/v4/sync-rules/utils.js +43 -0
  218. package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -0
  219. package/dist/specification/src/sync/v4/utils/utils.d.ts +16 -4
  220. package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
  221. package/dist/specification/src/sync/v4/utils/utils.js +100 -26
  222. package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
  223. package/dist/types/src/common/types.d.ts +114 -3
  224. package/dist/types/src/common/types.d.ts.map +1 -1
  225. package/dist/types/src/common/types.js +8 -0
  226. package/dist/types/src/common/types.js.map +1 -1
  227. package/dist/types/src/common/webapp/manifest/Manifest.d.ts +1 -1
  228. package/dist/types/src/common/webapp/manifest/Manifest.d.ts.map +1 -1
  229. package/dist/types/src/v2/application.d.ts +18 -0
  230. package/dist/types/src/v2/application.d.ts.map +1 -1
  231. package/dist/types/src/v2/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  232. package/dist/types/src/v2/controls/ObjectPageTable.d.ts +4 -4
  233. package/dist/types/src/v2/controls/ObjectPageTable.d.ts.map +1 -1
  234. package/dist/types/src/v2/controls/Table.d.ts.map +1 -1
  235. package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts +10 -1
  236. package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts.map +1 -1
  237. package/dist/types/src/v4/application.d.ts +13 -6
  238. package/dist/types/src/v4/application.d.ts.map +1 -1
  239. package/dist/types/src/v4/controls/Action.d.ts +16 -0
  240. package/dist/types/src/v4/controls/Action.d.ts.map +1 -0
  241. package/dist/types/src/v4/controls/Action.js +11 -0
  242. package/dist/types/src/v4/controls/Action.js.map +1 -0
  243. package/dist/types/src/v4/controls/CustomAction.d.ts +2 -1
  244. package/dist/types/src/v4/controls/CustomAction.d.ts.map +1 -1
  245. package/dist/types/src/v4/controls/CustomAction.js.map +1 -1
  246. package/dist/types/src/v4/controls/ObjectPageFooter.d.ts +2 -1
  247. package/dist/types/src/v4/controls/ObjectPageFooter.d.ts.map +1 -1
  248. package/dist/types/src/v4/controls/ObjectPageForm.d.ts +6 -3
  249. package/dist/types/src/v4/controls/ObjectPageForm.d.ts.map +1 -1
  250. package/dist/types/src/v4/controls/ObjectPageHeader.d.ts +6 -3
  251. package/dist/types/src/v4/controls/ObjectPageHeader.d.ts.map +1 -1
  252. package/dist/types/src/v4/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  253. package/dist/types/src/v4/controls/ObjectPageSection.d.ts.map +1 -1
  254. package/dist/types/src/v4/controls/ObjectPageTable.d.ts +7 -0
  255. package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
  256. package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
  257. package/dist/types/src/v4/controls/ObjectPageToolBar.d.ts +10 -7
  258. package/dist/types/src/v4/controls/ObjectPageToolBar.d.ts.map +1 -1
  259. package/dist/types/src/v4/controls/Table.d.ts +14 -1
  260. package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
  261. package/dist/types/src/v4/controls/Table.js.map +1 -1
  262. package/dist/types/src/v4/controls/ToolBar.d.ts +32 -10
  263. package/dist/types/src/v4/controls/ToolBar.d.ts.map +1 -1
  264. package/dist/types/src/v4/controls/ToolBar.js.map +1 -1
  265. package/dist/types/src/v4/controls/index.d.ts +1 -0
  266. package/dist/types/src/v4/controls/index.d.ts.map +1 -1
  267. package/dist/types/src/v4/controls/index.js +1 -0
  268. package/dist/types/src/v4/controls/index.js.map +1 -1
  269. package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts +59 -0
  270. package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts.map +1 -1
  271. package/dist/types/src/v4/webapp/manifest/ManifestSettings.js.map +1 -1
  272. package/package.json +16 -16
@@ -27,42 +27,56 @@
27
27
  "properties": {
28
28
  "forceGlobalRefresh": {
29
29
  "description": "If forceGlobalRefresh is not explicitly set to false, a global model refresh is triggered when the annotated side effects are executed.",
30
- "type": "boolean"
30
+ "type": "boolean",
31
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.forceGlobalRefresh"
31
32
  },
32
33
  "flexibleColumnLayout": {
33
34
  "$ref": "#/definitions/FlexibleColumnLayout",
34
- "description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas."
35
+ "description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas.",
36
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout"
35
37
  },
36
38
  "tableColumnVerticalAlignment": {
37
39
  "$ref": "#/definitions/TableColumnVerticalAlignment",
38
- "description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table."
40
+ "description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table.",
41
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.tableColumnVerticalAlignment"
39
42
  },
40
43
  "draftDiscardConfirmationSettings": {
41
44
  "$ref": "#/definitions/DraftDiscardConfirmationSettings",
42
- "description": "Allows applications to configure confirmation popups in various scenarios."
45
+ "description": "Allows applications to configure confirmation popups in various scenarios.",
46
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.draftDiscardConfirmationSettings"
43
47
  },
44
48
  "statePreservationMode": {
45
49
  "$ref": "#/definitions/StatePreservationMode",
46
- "description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases."
50
+ "description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases.",
51
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.statePreservationMode"
52
+ },
53
+ "globalTableSettings": {
54
+ "$ref": "#/definitions/GlobalApplicationTableSettings",
55
+ "description": "Settings for all tables.",
56
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.tableSettings"
47
57
  },
48
58
  "title": {
49
59
  "description": "Defines the title for the application.",
50
60
  "i18nClassification": "TIT: Title of the application",
51
- "type": "string"
61
+ "type": "string",
62
+ "manifestPath": "$[\"sap.app\"].title"
52
63
  },
53
64
  "description": {
54
65
  "description": "Defines the description for the application.",
55
66
  "i18nClassification": "TIT: Description of the application",
56
- "type": "string"
67
+ "type": "string",
68
+ "manifestPath": "$[\"sap.app\"].description"
57
69
  },
58
70
  "flexEnabled": {
59
71
  "description": "Enables key user adaptation for an application.",
60
72
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ccd45ba3f0b446a0901b2c9d42b8ad53",
61
- "type": "boolean"
73
+ "type": "boolean",
74
+ "manifestPath": "$[\"sap.ui5\"].flexEnabled"
62
75
  },
63
76
  "cloudDevAdaptationStatus": {
64
77
  "$ref": "#/definitions/CloudDevAdaptationStatus",
65
- "description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released."
78
+ "description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released.",
79
+ "manifestPath": "$[\"sap.fiori\"].cloudDevAdaptationStatus"
66
80
  }
67
81
  },
68
82
  "additionalProperties": false
@@ -72,10 +86,12 @@
72
86
  "type": "object",
73
87
  "properties": {
74
88
  "defaultTwoColumnLayoutType": {
75
- "$ref": "#/definitions/FlexibleColumnLayoutType"
89
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
90
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout.defaultTwoColumnLayoutType"
76
91
  },
77
92
  "defaultThreeColumnLayoutType": {
78
- "$ref": "#/definitions/FlexibleColumnLayoutType"
93
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
94
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout.defaultThreeColumnLayoutType"
79
95
  }
80
96
  },
81
97
  "additionalProperties": false
@@ -108,7 +124,8 @@
108
124
  "enabled": {
109
125
  "description": "Allows applications to turn off the discard draft confirmation popup in various scenarios.",
110
126
  "type": "string",
111
- "const": "restricted"
127
+ "const": "restricted",
128
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.draftDiscardConfirmationSettings.enabled"
112
129
  }
113
130
  },
114
131
  "additionalProperties": false,
@@ -123,6 +140,23 @@
123
140
  ],
124
141
  "type": "string"
125
142
  },
143
+ "GlobalApplicationTableSettings": {
144
+ "type": "object",
145
+ "properties": {
146
+ "createMode": {
147
+ "description": "This property acts as a global default for all pages and tables in the application. Page-level or table-level definitions override this setting.\nYou can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
148
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b",
149
+ "enum": [
150
+ "creationRows",
151
+ "creationRowsHiddenInEditMode",
152
+ "inline"
153
+ ],
154
+ "type": "string",
155
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.tableSettings.createMode"
156
+ }
157
+ },
158
+ "additionalProperties": false
159
+ },
126
160
  "CloudDevAdaptationStatus": {
127
161
  "internal": true,
128
162
  "enum": [
@@ -15,6 +15,10 @@
15
15
  "$ref": "#/definitions/ListReportFilterBar",
16
16
  "description": "Filter Bar"
17
17
  },
18
+ "table": {
19
+ "$ref": "#/definitions/Table",
20
+ "description": "Table"
21
+ },
18
22
  "footer": {
19
23
  "$ref": "#/definitions/Toolbar",
20
24
  "description": "Footer"
@@ -418,6 +422,138 @@
418
422
  ],
419
423
  "type": "string"
420
424
  },
425
+ "Table": {
426
+ "description": "Table",
427
+ "isViewNode": true,
428
+ "type": "object",
429
+ "properties": {
430
+ "entitySet": {
431
+ "description": "This property can be used to indicate that a table or chart should be based on a different entity set than the main entity set",
432
+ "type": "string",
433
+ "artifactType": "Manifest",
434
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b6b59e4a4c3548cf83ff9c3b955d3ba3"
435
+ },
436
+ "annotationPath": {
437
+ "description": "Specify a SelectionVariant or SelectionPresentationVariant annotation for the entity set to configure the table or chart",
438
+ "type": "string",
439
+ "artifactType": "Manifest",
440
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/37aeed74e17a42caa2cba3123f0c15fc"
441
+ },
442
+ "showItemNavigationOnChart": {
443
+ "description": "To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest.",
444
+ "type": "boolean",
445
+ "artifactType": "Manifest"
446
+ },
447
+ "views": {
448
+ "$ref": "#/definitions/MultiViewsDefinition"
449
+ },
450
+ "quickVariantSelection": {
451
+ "$ref": "#/definitions/MultiViewsOnTable",
452
+ "description": "With quickVariantSelection, you can switch to multiple views (single table mode).\nEach view links to a variant you have added to your annotations."
453
+ },
454
+ "showTablePersonalisation": {
455
+ "description": "The showTablePersonalisation attribute can be set to false to hide the table personalization button.",
456
+ "type": "boolean",
457
+ "artifactType": "FlexChange",
458
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
459
+ },
460
+ "exportType": {
461
+ "$ref": "#/definitions/smarttable.ExportType",
462
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
463
+ "artifactType": "FlexChange",
464
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
465
+ },
466
+ "useExportToExcel": {
467
+ "description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
468
+ "type": "boolean",
469
+ "artifactType": "FlexChange",
470
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
471
+ }
472
+ },
473
+ "additionalProperties": false
474
+ },
475
+ "MultiViewsDefinition": {
476
+ "description": "Views",
477
+ "isViewNode": true,
478
+ "type": "object",
479
+ "properties": {
480
+ "enableAutoBinding": {
481
+ "description": "Use this property to ensure that data are automatically loaded when the page is opened.",
482
+ "type": "boolean",
483
+ "artifactType": "Manifest"
484
+ },
485
+ "showCounts": {
486
+ "description": "You can show the counts of entries of each view. To do so, add the showCounts option and set it to true.",
487
+ "type": "boolean",
488
+ "artifactType": "Manifest"
489
+ },
490
+ "variants": {
491
+ "$ref": "#/definitions/MultiViewsVariants",
492
+ "description": "List of views"
493
+ }
494
+ },
495
+ "additionalProperties": false,
496
+ "required": [
497
+ "variants"
498
+ ]
499
+ },
500
+ "MultiViewsVariants": {
501
+ "isViewNode": false,
502
+ "type": "object",
503
+ "additionalProperties": {
504
+ "$ref": "#/definitions/Table"
505
+ }
506
+ },
507
+ "MultiViewsOnTable": {
508
+ "type": "object",
509
+ "properties": {
510
+ "showCounts": {
511
+ "description": "To show the number of available records, set showCounts to true.",
512
+ "type": "boolean",
513
+ "artifactType": "Manifest"
514
+ },
515
+ "variants": {
516
+ "description": "The variants section contains a set of entries that point to a SelectionVariant or SelectionPresentationVariant annotation.",
517
+ "type": "object",
518
+ "additionalProperties": {
519
+ "$ref": "#/definitions/ViewOnTable"
520
+ },
521
+ "artifactType": "Manifest"
522
+ }
523
+ },
524
+ "additionalProperties": false,
525
+ "required": [
526
+ "variants"
527
+ ]
528
+ },
529
+ "ViewOnTable": {
530
+ "type": "object",
531
+ "properties": {
532
+ "key": {
533
+ "description": "The key property is mandatory. It is used for initializing the corresponding SegmentedButton item.",
534
+ "type": "string"
535
+ },
536
+ "annotationPath": {
537
+ "description": "Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation.",
538
+ "type": "string",
539
+ "artifactType": "Manifest"
540
+ }
541
+ },
542
+ "additionalProperties": false,
543
+ "required": [
544
+ "annotationPath",
545
+ "key"
546
+ ]
547
+ },
548
+ "smarttable.ExportType": {
549
+ "description": "Provides the type of services available for export in the `SmartTable` control.\n\nThis enum is part of the 'sap/ui/comp/library' module export and must be accessed by the property 'smarttable.ExportType'.",
550
+ "enum": [
551
+ "GW",
552
+ "UI5Client",
553
+ "UI5ClientPDF"
554
+ ],
555
+ "type": "string"
556
+ },
421
557
  "Toolbar": {
422
558
  "description": "Toolbar",
423
559
  "isViewNode": true,
@@ -56,6 +56,12 @@
56
56
  "footer": {
57
57
  "$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
58
58
  },
59
+ "createMode": {
60
+ "$ref": "#/definitions/CreateMode",
61
+ "description": "This property applies to all tables within the page. Individual tables can override this setting by defining the property explicitly at table level.\nYou can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
62
+ "artifactType": "Manifest",
63
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
64
+ },
59
65
  "$schema": {
60
66
  "type": "string"
61
67
  }
@@ -727,7 +733,7 @@
727
733
  },
728
734
  "createMode": {
729
735
  "$ref": "#/definitions/CreateMode",
730
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
736
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
731
737
  "artifactType": "Manifest",
732
738
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
733
739
  },
@@ -1198,7 +1204,7 @@
1198
1204
  },
1199
1205
  "createMode": {
1200
1206
  "$ref": "#/definitions/CreateMode",
1201
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1207
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1202
1208
  "artifactType": "Manifest",
1203
1209
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1204
1210
  },
@@ -1298,7 +1304,7 @@
1298
1304
  },
1299
1305
  "createMode": {
1300
1306
  "$ref": "#/definitions/CreateMode",
1301
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1307
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1302
1308
  "artifactType": "Manifest",
1303
1309
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1304
1310
  },
@@ -1398,7 +1404,7 @@
1398
1404
  },
1399
1405
  "createMode": {
1400
1406
  "$ref": "#/definitions/CreateMode",
1401
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1407
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1402
1408
  "artifactType": "Manifest",
1403
1409
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1404
1410
  },
@@ -1498,7 +1504,7 @@
1498
1504
  },
1499
1505
  "createMode": {
1500
1506
  "$ref": "#/definitions/CreateMode",
1501
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1507
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1502
1508
  "artifactType": "Manifest",
1503
1509
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1504
1510
  },
@@ -27,23 +27,28 @@
27
27
  "properties": {
28
28
  "flexibleColumnLayout": {
29
29
  "$ref": "#/definitions/FlexibleColumnLayoutV4",
30
- "description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas."
30
+ "description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas.",
31
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout"
31
32
  },
32
33
  "path": {
33
34
  "description": "Represents a prefix that is prepended in front of the viewName",
34
- "type": "string"
35
+ "type": "string",
36
+ "manifestPath": "$[\"sap.ui5\"].routing.config.path"
35
37
  },
36
38
  "viewType": {
37
39
  "$ref": "#/definitions/ViewTypes",
38
- "description": "standard view type of views"
40
+ "description": "standard view type of views",
41
+ "manifestPath": "$[\"sap.ui5\"].routing.config.viewType"
39
42
  },
40
43
  "controllerExtensions": {
41
44
  "$ref": "#/definitions/ControllerExtensions",
42
- "description": "Controller extensions allow users to extensiate default behaviour with custom controllers code."
45
+ "description": "Controller extensions allow users to extensiate default behaviour with custom controllers code.",
46
+ "manifestPath": "$[\"sap.ui5\"].extends.extensions[\"sap.ui.controllerExtensions\"].controllerExtensions"
43
47
  },
44
48
  "dependencies": {
45
49
  "$ref": "#/definitions/Dependencies",
46
- "description": "Dependencies of the application."
50
+ "description": "Dependencies of the application.",
51
+ "manifestPath": "$[\"sap.ui5\"].dependencies"
47
52
  },
48
53
  "hideDraft": {
49
54
  "description": "Hidden draft features.",
@@ -53,24 +58,28 @@
53
58
  "properties": {
54
59
  "enabled": {
55
60
  "description": "All features related to draft handling can be hidden from the UI while the draft functionality remains active in the background. To achieve this, enable the 'Hide Draft' property.",
56
- "descriptionSrcURL": "https://sapui5.hana.ondemand.com/#/topic/ed9aa41c563a44b18701529c8327db4d",
61
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ed9aa41c563a44b18701529c8327db4d",
57
62
  "type": "boolean",
58
- "const": true
63
+ "const": true,
64
+ "manifestPath": "$[\"sap.fe\"].app.hideDraft.enabled"
59
65
  },
60
66
  "stayOnCurrentPageAfterSave": {
61
67
  "description": "Determines whether to stay on the current page after saving an object.\nTo ensure a consistent experience, set this and 'Stay On Current Page After Cancel' to the same value.",
62
- "descriptionSrcURL": "https://sapui5.hana.ondemand.com/#/topic/ed9aa41c563a44b18701529c8327db4d",
63
- "type": "boolean"
68
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ed9aa41c563a44b18701529c8327db4d",
69
+ "type": "boolean",
70
+ "manifestPath": "$[\"sap.fe\"].app.hideDraft.stayOnCurrentPageAfterSave"
64
71
  },
65
72
  "stayOnCurrentPageAfterCancel": {
66
73
  "description": "Determines whether to stay on the current page after canceling an object.\nTo ensure a consistent experience, set this and 'Stay On Current Page After Save' to the same value.",
67
- "descriptionSrcURL": "https://sapui5.hana.ondemand.com/#/topic/ed9aa41c563a44b18701529c8327db4d",
68
- "type": "boolean"
74
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ed9aa41c563a44b18701529c8327db4d",
75
+ "type": "boolean",
76
+ "manifestPath": "$[\"sap.fe\"].app.hideDraft.stayOnCurrentPageAfterCancel"
69
77
  },
70
78
  "hideCreateNext": {
71
79
  "description": "Controls the visibility of the 'Create Next' button.",
72
- "descriptionSrcURL": "https://sapui5.hana.ondemand.com/#/topic/ed9aa41c563a44b18701529c8327db4d",
73
- "type": "boolean"
80
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ed9aa41c563a44b18701529c8327db4d",
81
+ "type": "boolean",
82
+ "manifestPath": "$[\"sap.fe\"].app.hideDraft.hideCreateNext"
74
83
  }
75
84
  },
76
85
  "additionalProperties": false,
@@ -83,41 +92,59 @@
83
92
  "properties": {
84
93
  "enabled": {
85
94
  "description": "All features related to draft handling can be hidden from the UI while the draft functionality remains active in the background. To achieve this, enable the 'Hide Draft' property.",
86
- "descriptionSrcURL": "https://sapui5.hana.ondemand.com/#/topic/ed9aa41c563a44b18701529c8327db4d",
95
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ed9aa41c563a44b18701529c8327db4d",
87
96
  "type": "boolean",
88
- "const": false
97
+ "const": false,
98
+ "manifestPath": "$[\"sap.fe\"].app.hideDraft.enabled"
89
99
  }
90
100
  },
91
101
  "additionalProperties": false
92
102
  }
93
- ]
103
+ ],
104
+ "manifestPath": "$[\"sap.fe\"].app.hideDraft"
94
105
  },
95
106
  "defaultCreationMode": {
96
107
  "description": "Define the default creation mode that is used for all tables, unless a specific creation mode has been set.",
97
- "descriptionSrcURL": "https://sapui5.hana.ondemand.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b",
108
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b",
98
109
  "enum": [
99
110
  "InlineCreationRows"
100
111
  ],
101
- "type": "string"
112
+ "type": "string",
113
+ "manifestPath": "$[\"sap.fe\"].macros.table.defaultCreationMode"
114
+ },
115
+ "defaultPopinLayout": {
116
+ "description": "Defines the default layout options of the table popins. A separate layout options of the table popins can be set for each responsive table in the application.",
117
+ "descriptionSrcURL": "https://help.sap.com/docs/SAPUI5/b1cda5dc7a7644eb886bc6ac04c0b438/7f844f1021cd4791b8f7408eac7c1cec.html",
118
+ "enum": [
119
+ "Block",
120
+ "GridLarge",
121
+ "GridSmall"
122
+ ],
123
+ "type": "string",
124
+ "manifestPath": "$[\"sap.fe\"].macros.table.defaultPopinLayout"
102
125
  },
103
126
  "title": {
104
127
  "description": "Defines the title for the application.",
105
128
  "i18nClassification": "TIT: Title of the application",
106
- "type": "string"
129
+ "type": "string",
130
+ "manifestPath": "$[\"sap.app\"].title"
107
131
  },
108
132
  "description": {
109
133
  "description": "Defines the description for the application.",
110
134
  "i18nClassification": "TIT: Description of the application",
111
- "type": "string"
135
+ "type": "string",
136
+ "manifestPath": "$[\"sap.app\"].description"
112
137
  },
113
138
  "flexEnabled": {
114
139
  "description": "Enables key user adaptation for an application.",
115
140
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ccd45ba3f0b446a0901b2c9d42b8ad53",
116
- "type": "boolean"
141
+ "type": "boolean",
142
+ "manifestPath": "$[\"sap.ui5\"].flexEnabled"
117
143
  },
118
144
  "cloudDevAdaptationStatus": {
119
145
  "$ref": "#/definitions/CloudDevAdaptationStatus",
120
- "description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released."
146
+ "description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released.",
147
+ "manifestPath": "$[\"sap.fiori\"].cloudDevAdaptationStatus"
121
148
  }
122
149
  },
123
150
  "additionalProperties": false
@@ -128,13 +155,16 @@
128
155
  "properties": {
129
156
  "limitFCLToTwoColumns": {
130
157
  "description": "Determines whether the Flexible Column Layout is limited to two columns. If set to true, the third level will be displayed in full screen mode rather than a third column.",
131
- "type": "boolean"
158
+ "type": "boolean",
159
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.limitFCLToTwoColumns"
132
160
  },
133
161
  "defaultTwoColumnLayoutType": {
134
- "$ref": "#/definitions/FlexibleColumnLayoutType"
162
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
163
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.defaultTwoColumnLayoutType"
135
164
  },
136
165
  "defaultThreeColumnLayoutType": {
137
- "$ref": "#/definitions/FlexibleColumnLayoutType"
166
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
167
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.defaultThreeColumnLayoutType"
138
168
  }
139
169
  },
140
170
  "additionalProperties": false
@@ -197,21 +227,24 @@
197
227
  {
198
228
  "type": "string"
199
229
  }
200
- ]
230
+ ],
231
+ "manifestPath": "$[\"sap.ui5\"].dependencies.minUI5Version"
201
232
  },
202
233
  "libs": {
203
234
  "description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
204
235
  "type": "object",
205
236
  "additionalProperties": {
206
237
  "$ref": "#/definitions/Lib"
207
- }
238
+ },
239
+ "manifestPath": "$[\"sap.ui5\"].dependencies.libs"
208
240
  },
209
241
  "components": {
210
242
  "description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
211
243
  "type": "object",
212
244
  "additionalProperties": {
213
245
  "$ref": "#/definitions/Component"
214
- }
246
+ },
247
+ "manifestPath": "$[\"sap.ui5\"].dependencies.components"
215
248
  }
216
249
  },
217
250
  "additionalProperties": false,