@openui5/sap.ui.fl 1.134.0 → 1.136.0

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 (319) hide show
  1. package/REUSE.toml +649 -0
  2. package/THIRDPARTY.txt +23 -23
  3. package/package.json +3 -3
  4. package/src/sap/ui/fl/.library +2 -2
  5. package/src/sap/ui/fl/ChangePersistence.js +4 -4
  6. package/src/sap/ui/fl/ChangePersistenceFactory.js +2 -2
  7. package/src/sap/ui/fl/FakeLrepConnector.js +1 -1
  8. package/src/sap/ui/fl/FakeLrepConnectorLocalStorage.js +2 -2
  9. package/src/sap/ui/fl/FakeLrepConnectorSessionStorage.js +2 -2
  10. package/src/sap/ui/fl/FakeLrepLocalStorage.js +2 -2
  11. package/src/sap/ui/fl/FlexController.js +2 -2
  12. package/src/sap/ui/fl/FlexControllerFactory.js +2 -2
  13. package/src/sap/ui/fl/Layer.js +1 -1
  14. package/src/sap/ui/fl/LayerUtils.js +2 -2
  15. package/src/sap/ui/fl/Scenario.js +1 -1
  16. package/src/sap/ui/fl/Utils.js +15 -2
  17. package/src/sap/ui/fl/apply/_internal/DelegateMediator.js +2 -2
  18. package/src/sap/ui/fl/apply/_internal/appVariant/DescriptorChangeTypes.js +1 -1
  19. package/src/sap/ui/fl/apply/_internal/changes/Applier.js +1 -1
  20. package/src/sap/ui/fl/apply/_internal/changes/FlexCustomData.js +2 -2
  21. package/src/sap/ui/fl/apply/_internal/changes/Reverter.js +1 -1
  22. package/src/sap/ui/fl/apply/_internal/changes/Utils.js +17 -4
  23. package/src/sap/ui/fl/apply/_internal/changes/descriptor/Applier.js +4 -42
  24. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ApplyStrategyFactory.js +1 -1
  25. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ApplyUtil.js +1 -1
  26. package/src/sap/ui/fl/apply/_internal/changes/descriptor/InlineApplier.js +47 -0
  27. package/src/sap/ui/fl/apply/_internal/changes/descriptor/Preprocessor.js +3 -3
  28. package/src/sap/ui/fl/apply/_internal/changes/descriptor/Registration.js +2 -2
  29. package/src/sap/ui/fl/apply/_internal/changes/descriptor/RegistrationBuild.js +2 -2
  30. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/AddAnnotationsToOData.js +2 -2
  31. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewDataSource.js +2 -2
  32. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewInbound.js +2 -2
  33. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/AddNewOutbound.js +2 -2
  34. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/AddTechnicalAttributes.js +2 -2
  35. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeDataSource.js +2 -2
  36. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeInbound.js +2 -2
  37. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeOutbound.js +2 -2
  38. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/RemoveAllInboundsExceptOne.js +2 -2
  39. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/SetAch.js +2 -2
  40. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/SetDescription.js +2 -2
  41. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle.js +2 -2
  42. package/src/sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract.js +2 -2
  43. package/src/sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetCloudDevAdaptationStatus.js +2 -2
  44. package/src/sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetRegistrationIds.js +2 -2
  45. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ovp/AddNewCard.js +2 -2
  46. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ovp/ChangeCard.js +2 -2
  47. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ovp/DeleteCard.js +2 -2
  48. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddComponentUsages.js +2 -2
  49. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddLibrary.js +2 -2
  50. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddNewModel.js +2 -2
  51. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddNewModelEnhanceWith.js +2 -2
  52. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/ChangeModel.js +2 -2
  53. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/SetFlexExtensionPointEnabled.js +2 -2
  54. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/SetMinUI5Version.js +2 -2
  55. package/src/sap/ui/fl/apply/_internal/connectors/ObjectStorageConnector.js +1 -1
  56. package/src/sap/ui/fl/apply/_internal/connectors/ObjectStorageUtils.js +2 -2
  57. package/src/sap/ui/fl/apply/_internal/controlVariants/URLHandler.js +1 -1
  58. package/src/sap/ui/fl/apply/_internal/controlVariants/Utils.js +1 -1
  59. package/src/sap/ui/fl/apply/_internal/extensionPoint/Processor.js +2 -2
  60. package/src/sap/ui/fl/apply/_internal/extensionPoint/Registry.js +2 -2
  61. package/src/sap/ui/fl/apply/_internal/flexObjects/AnnotationChange.js +10 -2
  62. package/src/sap/ui/fl/apply/_internal/flexObjects/AppDescriptorChange.js +2 -2
  63. package/src/sap/ui/fl/apply/_internal/flexObjects/CompVariant.js +2 -2
  64. package/src/sap/ui/fl/apply/_internal/flexObjects/CompVariantRevertData.js +1 -1
  65. package/src/sap/ui/fl/apply/_internal/flexObjects/ControllerExtensionChange.js +2 -2
  66. package/src/sap/ui/fl/apply/_internal/flexObjects/FlVariant.js +2 -2
  67. package/src/sap/ui/fl/apply/_internal/flexObjects/FlexObject.js +12 -2
  68. package/src/sap/ui/fl/apply/_internal/flexObjects/FlexObjectFactory.js +39 -3
  69. package/src/sap/ui/fl/apply/_internal/flexObjects/RevertData.js +1 -1
  70. package/src/sap/ui/fl/apply/_internal/flexObjects/States.js +1 -1
  71. package/src/sap/ui/fl/apply/_internal/flexObjects/UIChange.js +6 -2
  72. package/src/sap/ui/fl/apply/_internal/flexObjects/UpdatableChange.js +1 -1
  73. package/src/sap/ui/fl/apply/_internal/flexObjects/Variant.js +2 -2
  74. package/src/sap/ui/fl/apply/_internal/flexObjects/VariantChange.js +78 -0
  75. package/src/sap/ui/fl/apply/_internal/flexObjects/VariantManagementChange.js +84 -0
  76. package/src/sap/ui/fl/apply/_internal/flexObjects/getVariantAuthor.js +2 -2
  77. package/src/sap/ui/fl/apply/_internal/flexState/DataSelector.js +1 -1
  78. package/src/sap/ui/fl/apply/_internal/flexState/FlexObjectState.js +2 -2
  79. package/src/sap/ui/fl/apply/_internal/flexState/FlexState.js +18 -8
  80. package/src/sap/ui/fl/apply/_internal/flexState/InitialPrepareFunctions.js +1 -1
  81. package/src/sap/ui/fl/apply/_internal/flexState/Loader.js +38 -10
  82. package/src/sap/ui/fl/apply/_internal/flexState/ManifestUtils.js +8 -10
  83. package/src/sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState.js +2 -2
  84. package/src/sap/ui/fl/apply/_internal/flexState/changes/DependencyHandler.js +2 -2
  85. package/src/sap/ui/fl/apply/_internal/flexState/changes/ExtensionPointState.js +2 -2
  86. package/src/sap/ui/fl/apply/_internal/flexState/changes/UIChangesState.js +2 -2
  87. package/src/sap/ui/fl/apply/_internal/flexState/communication/FLPAboutInfo.js +1 -1
  88. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantManagementState.js +2 -2
  89. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantMerger.js +3 -3
  90. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/Utils.js +1 -1
  91. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/prepareCompVariantsMap.js +1 -1
  92. package/src/sap/ui/fl/apply/_internal/flexState/controlVariants/Switcher.js +2 -2
  93. package/src/sap/ui/fl/apply/_internal/flexState/controlVariants/VariantManagementState.js +30 -5
  94. package/src/sap/ui/fl/apply/_internal/preprocessors/ComponentLifecycleHooks.js +5 -4
  95. package/src/sap/ui/fl/apply/_internal/preprocessors/ControllerExtension.js +28 -12
  96. package/src/sap/ui/fl/apply/_internal/preprocessors/RegistrationDelegator.js +5 -5
  97. package/src/sap/ui/fl/apply/_internal/preprocessors/XmlPreprocessor.js +2 -2
  98. package/src/sap/ui/fl/apply/api/AnnotationChangeHandlerAPI.js +1 -1
  99. package/src/sap/ui/fl/apply/api/ControlVariantApplyAPI.js +17 -6
  100. package/src/sap/ui/fl/apply/api/DelegateMediatorAPI.js +1 -1
  101. package/src/sap/ui/fl/apply/api/ExtensionPointRegistryAPI.js +1 -1
  102. package/src/sap/ui/fl/apply/api/FlexRuntimeInfoAPI.js +12 -1
  103. package/src/sap/ui/fl/apply/api/SmartVariantManagementApplyAPI.js +1 -1
  104. package/src/sap/ui/fl/apply/api/UI2PersonalizationApplyAPI.js +1 -1
  105. package/src/sap/ui/fl/changeHandler/AddIFrame.js +2 -2
  106. package/src/sap/ui/fl/changeHandler/AddXML.js +2 -2
  107. package/src/sap/ui/fl/changeHandler/AddXMLAtExtensionPoint.js +2 -2
  108. package/src/sap/ui/fl/changeHandler/Base.js +2 -2
  109. package/src/sap/ui/fl/changeHandler/BaseAddViaDelegate.js +2 -2
  110. package/src/sap/ui/fl/changeHandler/BaseAddXml.js +2 -2
  111. package/src/sap/ui/fl/changeHandler/BaseRename.js +2 -2
  112. package/src/sap/ui/fl/changeHandler/ChangeAnnotation.js +24 -5
  113. package/src/sap/ui/fl/changeHandler/HideControl.js +2 -2
  114. package/src/sap/ui/fl/changeHandler/MoveControls.js +2 -2
  115. package/src/sap/ui/fl/changeHandler/MoveElements.js +2 -2
  116. package/src/sap/ui/fl/changeHandler/PropertyBindingChange.js +2 -2
  117. package/src/sap/ui/fl/changeHandler/PropertyChange.js +2 -2
  118. package/src/sap/ui/fl/changeHandler/StashControl.js +2 -2
  119. package/src/sap/ui/fl/changeHandler/UnhideControl.js +2 -2
  120. package/src/sap/ui/fl/changeHandler/UnstashControl.js +2 -2
  121. package/src/sap/ui/fl/changeHandler/UpdateIFrame.js +2 -2
  122. package/src/sap/ui/fl/changeHandler/common/ChangeCategories.js +1 -1
  123. package/src/sap/ui/fl/changeHandler/common/createIFrame.js +1 -1
  124. package/src/sap/ui/fl/changeHandler/common/getTargetAggregationIndex.js +1 -1
  125. package/src/sap/ui/fl/changeHandler/common/revertAddedControls.js +1 -1
  126. package/src/sap/ui/fl/changeHandler/condenser/Classification.js +1 -1
  127. package/src/sap/ui/fl/descriptorRelated/Utils.js +1 -1
  128. package/src/sap/ui/fl/descriptorRelated/api/DescriptorChange.js +121 -0
  129. package/src/sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory.js +8 -96
  130. package/src/sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory.js +2 -2
  131. package/src/sap/ui/fl/descriptorRelated/api/DescriptorVariantFactory.js +2 -2
  132. package/src/sap/ui/fl/designtime/library.designtime.js +1 -1
  133. package/src/sap/ui/fl/designtime/util/IFrame.designtime.js +1 -1
  134. package/src/sap/ui/fl/designtime/util/editIFrame.js +1 -1
  135. package/src/sap/ui/fl/designtime/variants/VariantManagement.designtime.js +1 -1
  136. package/src/sap/ui/fl/initial/_internal/FlexConfiguration.js +2 -2
  137. package/src/sap/ui/fl/initial/_internal/FlexInfoSession.js +1 -1
  138. package/src/sap/ui/fl/initial/_internal/Storage.js +3 -8
  139. package/src/sap/ui/fl/initial/_internal/StorageFeaturesMerger.js +2 -2
  140. package/src/sap/ui/fl/initial/_internal/StorageResultMerger.js +1 -1
  141. package/src/sap/ui/fl/initial/_internal/StorageUtils.js +14 -2
  142. package/src/sap/ui/fl/initial/_internal/changeHandlers/ChangeHandlerRegistration.js +2 -2
  143. package/src/sap/ui/fl/initial/_internal/changeHandlers/ChangeHandlerStorage.js +2 -2
  144. package/src/sap/ui/fl/initial/_internal/connectors/BackendConnector.js +1 -1
  145. package/src/sap/ui/fl/initial/_internal/connectors/BtpServiceConnector.js +1 -1
  146. package/src/sap/ui/fl/initial/_internal/connectors/KeyUserConnector.js +1 -1
  147. package/src/sap/ui/fl/initial/_internal/connectors/LrepConnector.js +1 -1
  148. package/src/sap/ui/fl/initial/_internal/connectors/NeoLrepConnector.js +2 -1
  149. package/src/sap/ui/fl/initial/_internal/connectors/PersonalizationConnector.js +1 -1
  150. package/src/sap/ui/fl/initial/_internal/connectors/StaticFileConnector.js +1 -1
  151. package/src/sap/ui/fl/initial/_internal/connectors/Utils.js +2 -2
  152. package/src/sap/ui/fl/initial/_internal/storageResultDisassemble.js +2 -2
  153. package/src/sap/ui/fl/initial/api/InitialFlexAPI.js +2 -2
  154. package/src/sap/ui/fl/initial/api/Version.js +1 -1
  155. package/src/sap/ui/fl/interfaces/BaseLoadConnector.js +2 -2
  156. package/src/sap/ui/fl/interfaces/Delegate.js +2 -2
  157. package/src/sap/ui/fl/library.js +44 -44
  158. package/src/sap/ui/fl/library.support.js +1 -1
  159. package/src/sap/ui/fl/messagebundle.properties +0 -3
  160. package/src/sap/ui/fl/messagebundle_ar.properties +0 -2
  161. package/src/sap/ui/fl/messagebundle_bg.properties +0 -2
  162. package/src/sap/ui/fl/messagebundle_ca.properties +0 -2
  163. package/src/sap/ui/fl/messagebundle_cnr.properties +0 -2
  164. package/src/sap/ui/fl/messagebundle_cs.properties +0 -2
  165. package/src/sap/ui/fl/messagebundle_cy.properties +0 -2
  166. package/src/sap/ui/fl/messagebundle_da.properties +0 -2
  167. package/src/sap/ui/fl/messagebundle_de.properties +1 -3
  168. package/src/sap/ui/fl/messagebundle_el.properties +0 -2
  169. package/src/sap/ui/fl/messagebundle_en.properties +0 -2
  170. package/src/sap/ui/fl/messagebundle_en_GB.properties +0 -2
  171. package/src/sap/ui/fl/messagebundle_en_US_saprigi.properties +0 -2
  172. package/src/sap/ui/fl/messagebundle_es.properties +0 -2
  173. package/src/sap/ui/fl/messagebundle_es_MX.properties +0 -2
  174. package/src/sap/ui/fl/messagebundle_et.properties +0 -2
  175. package/src/sap/ui/fl/messagebundle_fi.properties +0 -2
  176. package/src/sap/ui/fl/messagebundle_fr.properties +0 -2
  177. package/src/sap/ui/fl/messagebundle_fr_CA.properties +0 -2
  178. package/src/sap/ui/fl/messagebundle_hi.properties +0 -2
  179. package/src/sap/ui/fl/messagebundle_hr.properties +0 -2
  180. package/src/sap/ui/fl/messagebundle_hu.properties +0 -2
  181. package/src/sap/ui/fl/messagebundle_id.properties +0 -2
  182. package/src/sap/ui/fl/messagebundle_it.properties +0 -2
  183. package/src/sap/ui/fl/messagebundle_iw.properties +0 -2
  184. package/src/sap/ui/fl/messagebundle_ja.properties +0 -2
  185. package/src/sap/ui/fl/messagebundle_kk.properties +0 -2
  186. package/src/sap/ui/fl/messagebundle_ko.properties +0 -2
  187. package/src/sap/ui/fl/messagebundle_lt.properties +0 -2
  188. package/src/sap/ui/fl/messagebundle_lv.properties +0 -2
  189. package/src/sap/ui/fl/messagebundle_mk.properties +0 -2
  190. package/src/sap/ui/fl/messagebundle_ms.properties +0 -2
  191. package/src/sap/ui/fl/messagebundle_nl.properties +0 -2
  192. package/src/sap/ui/fl/messagebundle_no.properties +0 -2
  193. package/src/sap/ui/fl/messagebundle_pl.properties +0 -2
  194. package/src/sap/ui/fl/messagebundle_pt.properties +0 -2
  195. package/src/sap/ui/fl/messagebundle_pt_PT.properties +0 -2
  196. package/src/sap/ui/fl/messagebundle_ro.properties +0 -2
  197. package/src/sap/ui/fl/messagebundle_ru.properties +0 -2
  198. package/src/sap/ui/fl/messagebundle_sh.properties +0 -2
  199. package/src/sap/ui/fl/messagebundle_sk.properties +0 -2
  200. package/src/sap/ui/fl/messagebundle_sl.properties +1 -3
  201. package/src/sap/ui/fl/messagebundle_sr.properties +0 -2
  202. package/src/sap/ui/fl/messagebundle_sv.properties +0 -2
  203. package/src/sap/ui/fl/messagebundle_th.properties +0 -2
  204. package/src/sap/ui/fl/messagebundle_tr.properties +0 -2
  205. package/src/sap/ui/fl/messagebundle_uk.properties +0 -2
  206. package/src/sap/ui/fl/messagebundle_vi.properties +0 -2
  207. package/src/sap/ui/fl/messagebundle_zh_CN.properties +0 -2
  208. package/src/sap/ui/fl/messagebundle_zh_TW.properties +0 -2
  209. package/src/sap/ui/fl/registry/Settings.js +11 -1
  210. package/src/sap/ui/fl/requireAsync.js +1 -1
  211. package/src/sap/ui/fl/support/_internal/extractChangeDependencies.js +1 -1
  212. package/src/sap/ui/fl/support/_internal/getAllUIChanges.js +2 -2
  213. package/src/sap/ui/fl/support/_internal/getChangeDependencies.js +2 -2
  214. package/src/sap/ui/fl/support/_internal/getFlexObjectInfos.js +2 -2
  215. package/src/sap/ui/fl/support/_internal/getFlexSettings.js +2 -2
  216. package/src/sap/ui/fl/support/api/SupportAPI.js +2 -2
  217. package/src/sap/ui/fl/support/apps/contentbrowser/Component.js +1 -1
  218. package/src/sap/ui/fl/support/apps/contentbrowser/controller/ContentDetails.controller.js +2 -2
  219. package/src/sap/ui/fl/support/apps/contentbrowser/controller/ContentDetailsEdit.controller.js +2 -2
  220. package/src/sap/ui/fl/support/apps/contentbrowser/controller/LayerContentMaster.controller.js +2 -2
  221. package/src/sap/ui/fl/support/apps/contentbrowser/controller/Layers.controller.js +2 -2
  222. package/src/sap/ui/fl/support/apps/contentbrowser/index.html +1 -1
  223. package/src/sap/ui/fl/support/apps/contentbrowser/lrepConnector/LRepConnector.js +2 -2
  224. package/src/sap/ui/fl/support/apps/contentbrowser/utils/DataUtils.js +2 -2
  225. package/src/sap/ui/fl/support/apps/contentbrowser/utils/ErrorUtils.js +2 -2
  226. package/src/sap/ui/fl/themes/base/library.source.less +1 -1
  227. package/src/sap/ui/fl/themes/sap_hcb/library.source.less +1 -1
  228. package/src/sap/ui/fl/transport/TransportDialog.js +1 -1
  229. package/src/sap/ui/fl/transport/TransportSelection.js +2 -2
  230. package/src/sap/ui/fl/util/DescriptorChangeCheck.js +1 -1
  231. package/src/sap/ui/fl/util/IFrame.flexibility.js +1 -1
  232. package/src/sap/ui/fl/util/IFrame.js +2 -2
  233. package/src/sap/ui/fl/util/IFrameRenderer.js +1 -1
  234. package/src/sap/ui/fl/util/ManagedObjectModel.js +2 -2
  235. package/src/sap/ui/fl/util/changePropertyValueByPath.js +1 -1
  236. package/src/sap/ui/fl/util/getContainerUserInfo.js +1 -1
  237. package/src/sap/ui/fl/util/resolveBinding.js +2 -2
  238. package/src/sap/ui/fl/variants/VariantManagement.js +1 -1
  239. package/src/sap/ui/fl/variants/VariantManager.js +22 -22
  240. package/src/sap/ui/fl/variants/VariantModel.js +6 -6
  241. package/src/sap/ui/fl/variants/context/Component.js +1 -1
  242. package/src/sap/ui/fl/variants/context/controller/ContextVisibility.controller.js +1 -1
  243. package/src/sap/ui/fl/write/_internal/SaveAs.js +1 -1
  244. package/src/sap/ui/fl/write/_internal/Storage.js +2 -2
  245. package/src/sap/ui/fl/write/_internal/Versions.js +2 -2
  246. package/src/sap/ui/fl/write/_internal/appVariant/AppVariant.js +2 -2
  247. package/src/sap/ui/fl/write/_internal/appVariant/AppVariantFactory.js +2 -2
  248. package/src/sap/ui/fl/write/_internal/appVariant/AppVariantInlineChange.js +2 -2
  249. package/src/sap/ui/fl/write/_internal/appVariant/AppVariantInlineChangeFactory.js +25 -22
  250. package/src/sap/ui/fl/write/_internal/condenser/Condenser.js +8 -10
  251. package/src/sap/ui/fl/write/_internal/condenser/UIReconstruction.js +2 -2
  252. package/src/sap/ui/fl/write/_internal/condenser/Utils.js +1 -1
  253. package/src/sap/ui/fl/write/_internal/condenser/classifications/Create.js +1 -1
  254. package/src/sap/ui/fl/write/_internal/condenser/classifications/Destroy.js +1 -1
  255. package/src/sap/ui/fl/write/_internal/condenser/classifications/LastOneWins.js +1 -1
  256. package/src/sap/ui/fl/write/_internal/condenser/classifications/Move.js +1 -1
  257. package/src/sap/ui/fl/write/_internal/condenser/classifications/Reverse.js +1 -1
  258. package/src/sap/ui/fl/write/_internal/condenser/classifications/Update.js +1 -1
  259. package/src/sap/ui/fl/write/_internal/connectors/BackendConnector.js +2 -2
  260. package/src/sap/ui/fl/write/_internal/connectors/BtpServiceConnector.js +2 -2
  261. package/src/sap/ui/fl/write/_internal/connectors/JsObjectConnector.js +1 -1
  262. package/src/sap/ui/fl/write/_internal/connectors/KeyUserConnector.js +2 -2
  263. package/src/sap/ui/fl/write/_internal/connectors/LocalStorageConnector.js +1 -1
  264. package/src/sap/ui/fl/write/_internal/connectors/LrepConnector.js +4 -3
  265. package/src/sap/ui/fl/write/_internal/connectors/NeoLrepConnector.js +2 -2
  266. package/src/sap/ui/fl/write/_internal/connectors/ObjectPathConnector.js +2 -2
  267. package/src/sap/ui/fl/write/_internal/connectors/ObjectStorageConnector.js +1 -1
  268. package/src/sap/ui/fl/write/_internal/connectors/PersonalizationConnector.js +2 -2
  269. package/src/sap/ui/fl/write/_internal/connectors/SessionStorageConnector.js +1 -1
  270. package/src/sap/ui/fl/write/_internal/connectors/Utils.js +2 -2
  271. package/src/sap/ui/fl/write/_internal/controlVariants/ControlVariantWriteUtils.js +1 -1
  272. package/src/sap/ui/fl/write/_internal/delegates/ODataV2ReadDelegate.js +1 -1
  273. package/src/sap/ui/fl/write/_internal/delegates/ODataV4ReadDelegate.js +1 -1
  274. package/src/sap/ui/fl/write/_internal/extensionPoint/Processor.js +2 -2
  275. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ABAPAccess.js +2 -2
  276. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant.js +2 -2
  277. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariantFactory.js +2 -2
  278. package/src/sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExtensibilityVariant.js +2 -2
  279. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ServiceValidation.js +2 -2
  280. package/src/sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExtensibilityVariant.js +2 -2
  281. package/src/sap/ui/fl/write/_internal/fieldExtensibility/UriParser.js +2 -2
  282. package/src/sap/ui/fl/write/_internal/fieldExtensibility/Utils.js +2 -2
  283. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/CAPAccess.js +2 -2
  284. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/dialog/CustomFieldCAPDialog.js +2 -2
  285. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/getEditorConfig.js +1 -1
  286. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
  287. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/propertyEditor/rangeEditor/RangeEditor.js +2 -2
  288. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/propertyEditor/timeEditor/TimeEditor.js +2 -2
  289. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/validators/IsRequired.js +1 -1
  290. package/src/sap/ui/fl/write/_internal/flexState/FlexObjectManager.js +16 -2
  291. package/src/sap/ui/fl/write/_internal/flexState/UI2Personalization/UI2PersonalizationState.js +2 -2
  292. package/src/sap/ui/fl/write/_internal/flexState/changes/UIChangeManager.js +2 -2
  293. package/src/sap/ui/fl/write/_internal/flexState/compVariants/CompVariantState.js +2 -2
  294. package/src/sap/ui/fl/write/_internal/transport/TransportDialog.js +1 -1
  295. package/src/sap/ui/fl/write/_internal/transport/TransportSelection.js +2 -2
  296. package/src/sap/ui/fl/write/_internal/transport/Transports.js +2 -2
  297. package/src/sap/ui/fl/write/api/Adaptations.js +1 -1
  298. package/src/sap/ui/fl/write/api/AppVariantWriteAPI.js +1 -1
  299. package/src/sap/ui/fl/write/api/BusinessNetworkAPI.js +137 -0
  300. package/src/sap/ui/fl/write/api/ChangesWriteAPI.js +53 -63
  301. package/src/sap/ui/fl/write/api/ContextBasedAdaptationsAPI.js +11 -11
  302. package/src/sap/ui/fl/write/api/ContextSharingAPI.js +1 -1
  303. package/src/sap/ui/fl/write/api/ControlPersonalizationWriteAPI.js +1 -1
  304. package/src/sap/ui/fl/write/api/FeaturesAPI.js +12 -1
  305. package/src/sap/ui/fl/write/api/FieldExtensibility.js +2 -2
  306. package/src/sap/ui/fl/write/api/LocalResetAPI.js +50 -30
  307. package/src/sap/ui/fl/write/api/PersistenceWriteAPI.js +74 -63
  308. package/src/sap/ui/fl/write/api/ReloadInfoAPI.js +6 -7
  309. package/src/sap/ui/fl/write/api/SACIntegrationUpdateVariant.js +1 -1
  310. package/src/sap/ui/fl/write/api/SmartBusinessWriteAPI.js +1 -1
  311. package/src/sap/ui/fl/write/api/SmartVariantManagementWriteAPI.js +1 -1
  312. package/src/sap/ui/fl/write/api/TranslationAPI.js +1 -1
  313. package/src/sap/ui/fl/write/api/UI2PersonalizationWriteAPI.js +1 -1
  314. package/src/sap/ui/fl/write/api/VersionsAPI.js +1 -1
  315. package/src/sap/ui/fl/write/api/connectors/FileListBaseConnector.js +1 -1
  316. package/src/sap/ui/fl/write/api/connectors/ObjectStorageConnector.js +3 -2
  317. package/src/sap/ui/fl/write/connectors/BaseConnector.js +1 -1
  318. package/ui5.yaml +1 -1
  319. package/.reuse/dep5 +0 -471
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ! OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -50,7 +50,7 @@ sap.ui.define([
50
50
  *
51
51
  * @namespace sap.ui.fl.variants.VariantManager
52
52
  * @since 1.132
53
- * @version 1.134.0
53
+ * @version 1.136.0
54
54
  * @private
55
55
  * @ui5-restricted sap.ui.fl, sap.ui.rta
56
56
  */
@@ -240,9 +240,16 @@ sap.ui.define([
240
240
  ..._difference(aNewVariantChanges, aVariantDeletionChanges),
241
241
  ...aVariantDeletionChanges.filter((oChange) => oChange.getState() !== States.LifecycleState.NEW)
242
242
  ];
243
- // Always pass the pre-defined changes here to avoid that UI changes that are part of the FlexState
244
- // are also persisted during variant manage save
245
- oVariantModel.oChangePersistence.saveDirtyChanges(oVariantModel.oAppComponent, false, aChanges);
243
+ // From the lowest to the highest layer, save the changes separately to ensure that the condense route is used.
244
+ const aLayers = Object.values(Layer).reverse();
245
+ for (const sCurrentLayer of aLayers) {
246
+ const aChangesOnLayer = aChanges.filter((oChange) => oChange.getLayer() === sCurrentLayer);
247
+ if (aChangesOnLayer.length > 0) {
248
+ // Always pass the pre-defined changes here to avoid that UI changes that are part of the FlexState
249
+ // are also persisted during variant manage save
250
+ await oVariantModel.oChangePersistence.saveDirtyChanges(oVariantModel.oAppComponent, false, aChangesOnLayer);
251
+ }
252
+ }
246
253
  };
247
254
 
248
255
  VariantManager.handleSaveEvent = async function(oVariantManagementControl, mParameters, oVariantModel) {
@@ -289,7 +296,8 @@ sap.ui.define([
289
296
  newVariantReference: sNewVariantReference,
290
297
  generator: mParameters.generator,
291
298
  additionalVariantChanges: [],
292
- adaptationId: getAdaptationId(sVariantChangeLayer, oAppComponent, oVariantModel.sFlexReference)
299
+ adaptationId: getAdaptationId(sVariantChangeLayer, oAppComponent, oVariantModel.sFlexReference),
300
+ executeOnSelection: mParameters.execute
293
301
  };
294
302
 
295
303
  var oBaseChangeProperties = {
@@ -309,18 +317,7 @@ sap.ui.define([
309
317
  fileType: "ctrl_variant_management_change",
310
318
  selector: JsControlTreeModifier.getSelector(sVariantManagementReference, mPropertyBag.appComponent)
311
319
  }, oBaseChangeProperties);
312
- mPropertyBag.additionalVariantChanges.push(FlexObjectFactory.createUIChange(mPropertyBagSetDefault));
313
- }
314
- if (mParameters.execute) {
315
- var mPropertyBagSetExecute = merge({
316
- changeType: "setExecuteOnSelect",
317
- content: {
318
- executeOnSelect: true
319
- },
320
- fileType: "ctrl_variant_change",
321
- selector: JsControlTreeModifier.getSelector(mPropertyBag.newVariantReference, mPropertyBag.appComponent)
322
- }, oBaseChangeProperties);
323
- mPropertyBag.additionalVariantChanges.push(FlexObjectFactory.createUIChange(mPropertyBagSetExecute));
320
+ mPropertyBag.additionalVariantChanges.push(FlexObjectFactory.createVariantManagementChange(mPropertyBagSetDefault));
324
321
  }
325
322
 
326
323
  const aCopiedVariantDirtyChanges = await VariantManager.copyVariant(mPropertyBag);
@@ -414,6 +411,7 @@ sap.ui.define([
414
411
  * @param {string} mPropertyBag.sourceVariantReference - <code>variantReference</code> of the source variant
415
412
  * @param {string} mPropertyBag.generator - Information about who created the change
416
413
  * @param {object} mPropertyBag.contexts - Context structure containing roles and countries
414
+ * @param {boolean} mPropertyBag.executeOnSelection - Apply automatically the content of the variant
417
415
  * @param {sap.ui.core.Control} oControl - Control instance to fetch the variant model
418
416
  * @returns {Promise<sap.ui.fl.apply._internal.flexObjects.FlexObject[]>} Resolves with dirty changes created during variant copy
419
417
  * @private
@@ -439,7 +437,7 @@ sap.ui.define([
439
437
  if (mPropertyBag.layer === Layer.PUBLIC) {
440
438
  oDuplicateVariantData.instance.setFavorite(false);
441
439
  var oChangeProperties = {
442
- selector: JsControlTreeModifier.getSelector(mPropertyBag.newVariantReference, mPropertyBag.appComponent),
440
+ variantId: mPropertyBag.newVariantReference,
443
441
  changeType: "setFavorite",
444
442
  fileType: "ctrl_variant_change",
445
443
  generator: mPropertyBag.generator,
@@ -447,7 +445,7 @@ sap.ui.define([
447
445
  reference: oVariantModel.sFlexReference,
448
446
  content: {favorite: true}
449
447
  };
450
- aChanges.push(FlexObjectFactory.createUIChange(oChangeProperties));
448
+ aChanges.push(FlexObjectFactory.createVariantChange(oChangeProperties));
451
449
  }
452
450
 
453
451
  // sets copied variant and associated changes as dirty
@@ -560,15 +558,17 @@ sap.ui.define([
560
558
  mNewChangeData.adaptationId = getAdaptationId(mPropertyBag.layer, mPropertyBag.appComponent, oVariantModel.sFlexReference);
561
559
  }
562
560
 
561
+ let oChange;
563
562
  if (mPropertyBag.changeType === "setDefault") {
564
563
  mNewChangeData.fileType = "ctrl_variant_management_change";
565
564
  mNewChangeData.selector = JsControlTreeModifier.getSelector(sVariantManagementReference, mPropertyBag.appComponent);
565
+ oChange = FlexObjectFactory.createVariantManagementChange(mNewChangeData);
566
566
  } else {
567
567
  mNewChangeData.fileType = "ctrl_variant_change";
568
- mNewChangeData.selector = JsControlTreeModifier.getSelector(mPropertyBag.variantReference, mPropertyBag.appComponent);
568
+ mNewChangeData.variantId = mPropertyBag.variantReference;
569
+ oChange = FlexObjectFactory.createVariantChange(mNewChangeData);
569
570
  }
570
571
 
571
- var oChange = FlexObjectFactory.createUIChange(mNewChangeData);
572
572
  // update change with additional content
573
573
  oChange.setContent(mAdditionalChangeContent);
574
574
  if (mPropertyBag.changeType === "setTitle") {
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -199,7 +199,7 @@ sap.ui.define([
199
199
  * @class Variant model implementation for JSON format.
200
200
  * @extends sap.ui.model.json.JSONModel
201
201
  * @author SAP SE
202
- * @version 1.134.0
202
+ * @version 1.136.0
203
203
  * @param {object} oData - Either the URL where to load the JSON from or a JS object
204
204
  * @param {object} mPropertyBag - Map of properties required for the constructor
205
205
  * @param {sap.ui.fl.FlexController} mPropertyBag.flexController - <code>FlexController</code> instance for the component which uses the variant model
@@ -489,7 +489,8 @@ sap.ui.define([
489
489
  adaptationId: mPropertyBag.adaptationId,
490
490
  reference: oSourceVariant.getFlexObjectMetadata().reference,
491
491
  generator: mPropertyBag.generator,
492
- variantManagementReference: mPropertyBag.variantManagementReference
492
+ variantManagementReference: mPropertyBag.variantManagementReference,
493
+ executeOnSelection: mPropertyBag.executeOnSelection
493
494
  };
494
495
  if (mPropertyBag.layer === Layer.VENDOR) {
495
496
  mProperties.user = "SAP";
@@ -918,10 +919,9 @@ sap.ui.define([
918
919
  changeType: "setTitle",
919
920
  layer: oVariant.layer,
920
921
  fileType: "ctrl_variant_change",
921
- selector: JsControlTreeModifier.getSelector(oVariant.key, this.oAppComponent)
922
-
922
+ variantId: oVariant.key
923
923
  };
924
- const oSetTitleChange = FlexObjectFactory.createUIChange(mChangeProperties);
924
+ const oSetTitleChange = FlexObjectFactory.createVariantChange(mChangeProperties);
925
925
  oSetTitleChange.setText("title", sResolvedTitle, "XFLD");
926
926
  oVariant.instance.setName(sResolvedTitle, true);
927
927
  // The change cannot be added as a dirty change but must survive a state invalidation
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  *
23
23
  * @namespace sap.ui.fl.write._internal.Storage
24
24
  * @since 1.67
25
- * @version 1.134.0
25
+ * @version 1.136.0
26
26
  * @private
27
27
  * @ui5-restricted sap.ui.fl
28
28
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -159,7 +159,7 @@ sap.ui.define([
159
159
  *
160
160
  * @namespace sap.ui.fl.write._internal.Versions
161
161
  * @since 1.74
162
- * @version 1.134.0
162
+ * @version 1.136.0
163
163
  * @private
164
164
  * @ui5-restricted sap.ui.fl
165
165
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @constructor
36
36
  * @alias sap.ui.fl.write._internal.appVariant.AppVariant
37
37
  * @author SAP SE
38
- * @version 1.134.0
38
+ * @version 1.136.0
39
39
  * @private
40
40
  * @ui5-restricted sap.ui.rta, smart business
41
41
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -32,7 +32,7 @@ sap.ui.define([
32
32
  * @namespace
33
33
  * @alias sap.ui.fl.write._internal.appVariant.AppVariantFactory
34
34
  * @author SAP SE
35
- * @version 1.134.0
35
+ * @version 1.136.0
36
36
  * @private
37
37
  * @ui5-restricted sap.ui.rta, smart business
38
38
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @constructor
29
29
  * @alias sap.ui.fl.write._internal.appVariant.AppVariantInlineChange
30
30
  * @author SAP SE
31
- * @version 1.134.0
31
+ * @version 1.136.0
32
32
  * @private
33
33
  * @ui5-restricted sap.ui.rta, smart business
34
34
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @namespace
36
36
  * @alias sap.ui.fl.write._internal.appVariant.AppVariantInlineChangeFactory
37
37
  * @author SAP SE
38
- * @version 1.134.0
38
+ * @version 1.136.0
39
39
  * @private
40
40
  * @ui5-restricted sap.ui.rta, smart business
41
41
  */
@@ -75,6 +75,9 @@ sap.ui.define([
75
75
  AppVariantInlineChangeFactory.createDescriptorInlineChange = function(mPropertyBag) {
76
76
  var fnTriggerChangeTypeMethod = mPropertyBag.changeType.replace("appdescr", "create");
77
77
  // This will call the right changeType method and will be validated properly
78
+ if (!this[fnTriggerChangeTypeMethod]) {
79
+ throw new Error(`Change type '${mPropertyBag.changeType}' is not supported`);
80
+ }
78
81
  return this[fnTriggerChangeTypeMethod](mPropertyBag);
79
82
  };
80
83
 
@@ -994,32 +997,32 @@ sap.ui.define([
994
997
  * Creates an inline change of change type <code>appdescr_fe_addNewPage</code>.
995
998
  *
996
999
  * @param {object} mPropertyBag Parameters of the change type
997
- * @param {string} mPropertyBag.changeType Inline change type of an app variant
998
- * @param {object} mPropertyBag.sourcePage Source page details
999
- * @param {string} mPropertyBag.sourcePage.id ID of the source page
1000
- * @param {string} mPropertyBag.sourcePage.navigationSource Navigation source of the source page
1001
- * @param {object} mPropertyBag.targetPage Target page details
1002
- * @param {string} mPropertyBag.targetPage.id ID of the target page
1003
- * @param {string} mPropertyBag.targetPage.type Type of the target page
1004
- * @param {string} mPropertyBag.targetPage.name Name of the target page component
1005
- * @param {string} mPropertyBag.targetPage.routePattern Route pattern for navigation
1006
- * @param {object} mPropertyBag.targetPage.settings Additional settings for the target page
1000
+ * @param {string} mPropertyBag.content.changeType Inline change type of an app variant
1001
+ * @param {object} mPropertyBag.content.sourcePage Source page details
1002
+ * @param {string} mPropertyBag.content.sourcePage.id ID of the source page
1003
+ * @param {string} mPropertyBag.content.sourcePage.navigationSource Navigation source of the source page
1004
+ * @param {object} mPropertyBag.content.targetPage Target page details
1005
+ * @param {string} mPropertyBag.content.targetPage.id ID of the target page
1006
+ * @param {string} mPropertyBag.content.targetPage.type Type of the target page
1007
+ * @param {string} mPropertyBag.content.targetPage.name Name of the target page component
1008
+ * @param {string} mPropertyBag.content.targetPage.routePattern Route pattern for navigation
1009
+ * @param {object} mPropertyBag.content.targetPage.settings Additional settings for the target page
1007
1010
  *
1008
1011
  * @return {Promise} Resolving when creating the app variant inline change was successful (without back end access)
1009
1012
  *
1010
1013
  * @private
1011
1014
  */
1012
1015
  AppVariantInlineChangeFactory.create_fe_addNewPage = function(mPropertyBag) {
1013
- Utils.checkParameterAndType(mPropertyBag.sourcePage, "id", "string");
1014
- Utils.checkParameterAndType(mPropertyBag.sourcePage, "navigationSource", "string");
1015
- Utils.checkParameterAndType(mPropertyBag.targetPage, "id", "string");
1016
- Utils.checkParameterAndType(mPropertyBag.targetPage, "type", "string");
1017
- Utils.checkParameterAndType(mPropertyBag.targetPage, "name", "string");
1018
- Utils.checkParameterAndType(mPropertyBag.targetPage, "routePattern", "string");
1019
- Utils.checkParameterAndType(mPropertyBag.targetPage, "settings", "object");
1020
- Utils.checkParameterAndType(mPropertyBag.targetPage.settings, "contextPath", "string");
1021
- Utils.checkParameterAndType(mPropertyBag.targetPage.settings, "pageLayout", "string");
1022
- Utils.checkParameterAndType(mPropertyBag.targetPage.settings, "controlConfiguration", "object");
1016
+ Utils.checkParameterAndType(mPropertyBag.content.sourcePage, "id", "string");
1017
+ Utils.checkParameterAndType(mPropertyBag.content.sourcePage, "navigationSource", "string");
1018
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage, "id", "string");
1019
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage, "type", "string");
1020
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage, "name", "string");
1021
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage, "routePattern", "string");
1022
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage, "settings", "object");
1023
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage.settings, "contextPath", "string");
1024
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage.settings, "pageLayout", "string");
1025
+ Utils.checkParameterAndType(mPropertyBag.content.targetPage.settings, "controlConfiguration", "object");
1023
1026
  return _createAppVariantInlineChange(mPropertyBag);
1024
1027
  };
1025
1028
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -53,7 +53,7 @@ sap.ui.define([
53
53
  * @namespace
54
54
  * @alias sap.ui.fl.write._internal.condenser.Condenser
55
55
  * @author SAP SE
56
- * @version 1.134.0
56
+ * @version 1.136.0
57
57
  */
58
58
  const Condenser = {};
59
59
 
@@ -215,18 +215,17 @@ sap.ui.define([
215
215
  async function getCondenserInfoFromChangeHandler(oAppComponent, oFlexObject) {
216
216
  let oChangeHandler;
217
217
  let bTemplateAffected = false;
218
- let mPropertyBag = {};
218
+ const mPropertyBag = {
219
+ modifier: JsControlTreeModifier,
220
+ appComponent: oAppComponent
221
+ };
219
222
  try {
220
223
  // UI changes require template handling
221
224
  if (oFlexObject instanceof UIChange) {
222
225
  const sControlId = JsControlTreeModifier.getControlIdBySelector(oFlexObject.getSelector(), oAppComponent);
223
226
  const oControl = Element.getElementById(sControlId);
224
227
  if (oControl) {
225
- mPropertyBag = {
226
- modifier: JsControlTreeModifier,
227
- appComponent: oAppComponent,
228
- view: FlUtils.getViewForControl(oControl)
229
- };
228
+ mPropertyBag.view = FlUtils.getViewForControl(oControl);
230
229
  const mControl = ChangesUtils.getControlIfTemplateAffected(oFlexObject, oControl, mPropertyBag);
231
230
  bTemplateAffected = mControl.bTemplateAffected;
232
231
  oChangeHandler = await ChangesUtils.getChangeHandler({
@@ -592,8 +591,7 @@ sap.ui.define([
592
591
  aChanges.slice(0).reverse().forEach((oChange) => {
593
592
  if (oChange.getState() === States.LifecycleState.DELETED) {
594
593
  oChange.condenserState = "delete";
595
- }
596
- if (oChange.canBeCondensed()) {
594
+ } else if (oChange.canBeCondensed()) {
597
595
  aCondensableChanges.push(oChange);
598
596
  } else {
599
597
  aNotCondensableChanges.push(oChange);
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * @namespace
32
32
  * @alias sap.ui.fl.write._internal.condenser.UIReconstruction
33
33
  * @author SAP SE
34
- * @version 1.134.0
34
+ * @version 1.136.0
35
35
  */
36
36
  const UIReconstruction = {};
37
37
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -74,7 +74,7 @@ sap.ui.define([
74
74
  *
75
75
  * @namespace sap.ui.fl.write._internal.connectors.BackendConnector
76
76
  * @since 1.72
77
- * @version 1.134.0
77
+ * @version 1.136.0
78
78
  * @private
79
79
  * @ui5-restricted sap.ui.fl.write._internal.connectors
80
80
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  * Connector for saving and deleting data from SAPUI5 Flexibility KeyUser service - including personalization.
26
26
  *
27
27
  * @namespace sap.ui.fl.write._internal.connectors.BtpServiceConnector
28
- * @version 1.134.0
28
+ * @version 1.136.0
29
29
  * @private
30
30
  * @ui5-restricted sap.ui.fl.write._internal.Storage
31
31
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  *
41
41
  * @namespace sap.ui.fl.write._internal.connectors.KeyUserConnector
42
42
  * @since 1.70
43
- * @version 1.134.0
43
+ * @version 1.136.0
44
44
  * @private
45
45
  * @ui5-restricted sap.ui.fl.write._internal.Storage
46
46
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -168,7 +168,7 @@ sap.ui.define([
168
168
  *
169
169
  * @namespace sap.ui.fl.write._internal.connectors.LrepConnector
170
170
  * @since 1.67
171
- * @version 1.134.0
171
+ * @version 1.136.0
172
172
  * @private
173
173
  * @ui5-restricted sap.ui.fl.write._internal.Storage
174
174
  */
@@ -388,7 +388,8 @@ sap.ui.define([
388
388
  InitialConnector._addClientInfo(mParameters);
389
389
  const sUrl = InitialUtils.getUrl(ROUTES.SEEN_FEATURES, mPropertyBag, mParameters);
390
390
  const oResult = await InitialUtils.sendRequest(sUrl, "GET", {initialConnector: InitialConnector});
391
- return oResult.response?.seenFeatureIds;
391
+ // The ABAP backend returns an empty string if no seen feature ids are available instead of { seenFeatureIds: [] }
392
+ return oResult.response?.seenFeatureIds || [];
392
393
  },
393
394
 
394
395
  /**
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  *
21
21
  * @namespace sap.ui.fl.write._internal.connectors.NeoLrepConnector
22
22
  * @since 1.81
23
- * @version 1.134.0
23
+ * @version 1.136.0
24
24
  * @private
25
25
  * @ui5-restricted sap.ui.fl.write._internal.Storage
26
26
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  *
25
25
  * @namespace sap.ui.fl.write._internal.connectors.ObjectPathConnector
26
26
  * @since 1.73
27
- * @version 1.134.0
27
+ * @version 1.136.0
28
28
  * @private
29
29
  * @ui5-restricted sap.ui.fl.write._internal.Storage
30
30
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  *
24
24
  * @namespace sap.ui.fl.write._internal.connectors.PersonalizationConnector
25
25
  * @since 1.70
26
- * @version 1.134.0
26
+ * @version 1.136.0
27
27
  * @private
28
28
  * @ui5-restricted sap.ui.fl.write._internal.Storage
29
29
  */