@openui5/sap.ui.fl 1.109.0 → 1.110.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 (240) hide show
  1. package/.reuse/dep5 +16 -16
  2. package/THIRDPARTY.txt +2 -2
  3. package/package.json +3 -3
  4. package/src/sap/ui/fl/.library +2 -2
  5. package/src/sap/ui/fl/Cache.js +16 -3
  6. package/src/sap/ui/fl/ChangePersistence.js +10 -39
  7. package/src/sap/ui/fl/ChangePersistenceFactory.js +2 -2
  8. package/src/sap/ui/fl/FakeLrepConnector.js +1 -1
  9. package/src/sap/ui/fl/FakeLrepConnectorLocalStorage.js +2 -2
  10. package/src/sap/ui/fl/FakeLrepConnectorSessionStorage.js +2 -2
  11. package/src/sap/ui/fl/FakeLrepLocalStorage.js +2 -2
  12. package/src/sap/ui/fl/FlexController.js +2 -2
  13. package/src/sap/ui/fl/FlexControllerFactory.js +3 -3
  14. package/src/sap/ui/fl/Layer.js +2 -2
  15. package/src/sap/ui/fl/LayerUtils.js +2 -2
  16. package/src/sap/ui/fl/Scenario.js +1 -1
  17. package/src/sap/ui/fl/Utils.js +4 -25
  18. package/src/sap/ui/fl/apply/_internal/ChangesController.js +1 -1
  19. package/src/sap/ui/fl/apply/_internal/DelegateMediator.js +5 -5
  20. package/src/sap/ui/fl/apply/_internal/appVariant/DescriptorChangeTypes.js +1 -1
  21. package/src/sap/ui/fl/apply/_internal/changes/Applier.js +33 -81
  22. package/src/sap/ui/fl/apply/_internal/changes/FlexCustomData.js +42 -171
  23. package/src/sap/ui/fl/apply/_internal/changes/Reverter.js +8 -14
  24. package/src/sap/ui/fl/apply/_internal/changes/Utils.js +8 -13
  25. package/src/sap/ui/fl/apply/_internal/changes/descriptor/Applier.js +1 -1
  26. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ApplyStrategyFactory.js +1 -1
  27. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ApplyUtil.js +1 -1
  28. package/src/sap/ui/fl/apply/_internal/changes/descriptor/Preprocessor.js +2 -2
  29. package/src/sap/ui/fl/apply/_internal/changes/descriptor/Registration.js +2 -2
  30. package/src/sap/ui/fl/apply/_internal/changes/descriptor/RegistrationBuild.js +2 -2
  31. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/AddAnnotationsToOData.js +2 -2
  32. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeDataSource.js +2 -2
  33. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/ChangeInbound.js +2 -2
  34. package/src/sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle.js +2 -2
  35. package/src/sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract.js +2 -2
  36. package/src/sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetRegistrationIds.js +2 -2
  37. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ovp/AddNewCard.js +2 -2
  38. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ovp/ChangeCard.js +2 -2
  39. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ovp/DeleteCard.js +2 -2
  40. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddComponentUsages.js +2 -2
  41. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddLibrary.js +2 -2
  42. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddNewModel.js +2 -2
  43. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/AddNewModelEnhanceWith.js +2 -2
  44. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/SetFlexExtensionPointEnabled.js +2 -2
  45. package/src/sap/ui/fl/apply/_internal/changes/descriptor/ui5/SetMinUI5Version.js +2 -2
  46. package/src/sap/ui/fl/apply/_internal/connectors/ObjectStorageConnector.js +2 -2
  47. package/src/sap/ui/fl/apply/_internal/connectors/ObjectStorageUtils.js +2 -2
  48. package/src/sap/ui/fl/apply/_internal/controlVariants/URLHandler.js +1 -1
  49. package/src/sap/ui/fl/apply/_internal/controlVariants/Utils.js +1 -1
  50. package/src/sap/ui/fl/apply/_internal/extensionPoint/Processor.js +2 -2
  51. package/src/sap/ui/fl/apply/_internal/flexObjects/AppDescriptorChange.js +2 -2
  52. package/src/sap/ui/fl/apply/_internal/flexObjects/CompVariant.js +5 -7
  53. package/src/sap/ui/fl/apply/_internal/flexObjects/CompVariantRevertData.js +1 -1
  54. package/src/sap/ui/fl/apply/_internal/flexObjects/ControllerExtensionChange.js +2 -2
  55. package/src/sap/ui/fl/apply/_internal/flexObjects/FlVariant.js +2 -2
  56. package/src/sap/ui/fl/apply/_internal/flexObjects/FlexObject.js +3 -3
  57. package/src/sap/ui/fl/apply/_internal/flexObjects/FlexObjectFactory.js +9 -3
  58. package/src/sap/ui/fl/apply/_internal/flexObjects/RevertData.js +1 -1
  59. package/src/sap/ui/fl/apply/_internal/flexObjects/States.js +1 -1
  60. package/src/sap/ui/fl/apply/_internal/flexObjects/UIChange.js +2 -2
  61. package/src/sap/ui/fl/apply/_internal/flexObjects/UpdatableChange.js +2 -3
  62. package/src/sap/ui/fl/apply/_internal/flexObjects/Variant.js +2 -2
  63. package/src/sap/ui/fl/apply/_internal/flexState/DataSelector.js +235 -0
  64. package/src/sap/ui/fl/apply/_internal/flexState/FlexState.js +157 -33
  65. package/src/sap/ui/fl/apply/_internal/flexState/InitialPrepareFunctions.js +72 -0
  66. package/src/sap/ui/fl/apply/_internal/flexState/Loader.js +28 -3
  67. package/src/sap/ui/fl/apply/_internal/flexState/ManifestUtils.js +8 -8
  68. package/src/sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState.js +2 -2
  69. package/src/sap/ui/fl/apply/_internal/flexState/appDescriptorChanges/prepareAppDescriptorMap.js +1 -1
  70. package/src/sap/ui/fl/apply/_internal/flexState/changes/DependencyHandler.js +2 -2
  71. package/src/sap/ui/fl/apply/_internal/flexState/changes/ExtensionPointState.js +2 -2
  72. package/src/sap/ui/fl/apply/_internal/flexState/changes/prepareChangesMap.js +1 -1
  73. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantMerger.js +3 -3
  74. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/Utils.js +1 -1
  75. package/src/sap/ui/fl/apply/_internal/flexState/compVariants/prepareCompVariantsMap.js +1 -1
  76. package/src/sap/ui/fl/apply/_internal/flexState/controlVariants/Switcher.js +2 -2
  77. package/src/sap/ui/fl/apply/_internal/flexState/controlVariants/VariantManagementState.js +2 -2
  78. package/src/sap/ui/fl/apply/_internal/flexState/controlVariants/prepareVariantsMap.js +1 -1
  79. package/src/sap/ui/fl/apply/_internal/preprocessors/ControllerExtension.js +2 -2
  80. package/src/sap/ui/fl/apply/_internal/preprocessors/EventHistory.js +2 -2
  81. package/src/sap/ui/fl/apply/_internal/preprocessors/RegistrationDelegator.js +2 -2
  82. package/src/sap/ui/fl/apply/_internal/preprocessors/XmlPreprocessor.js +2 -2
  83. package/src/sap/ui/fl/apply/api/ControlVariantApplyAPI.js +3 -3
  84. package/src/sap/ui/fl/apply/api/DelegateMediatorAPI.js +1 -1
  85. package/src/sap/ui/fl/apply/api/FlexRuntimeInfoAPI.js +2 -2
  86. package/src/sap/ui/fl/apply/api/SmartVariantManagementApplyAPI.js +1 -1
  87. package/src/sap/ui/fl/apply/api/UI2PersonalizationApplyAPI.js +1 -1
  88. package/src/sap/ui/fl/changeHandler/AddIFrame.js +2 -2
  89. package/src/sap/ui/fl/changeHandler/AddXML.js +2 -2
  90. package/src/sap/ui/fl/changeHandler/AddXMLAtExtensionPoint.js +2 -2
  91. package/src/sap/ui/fl/changeHandler/Base.js +2 -2
  92. package/src/sap/ui/fl/changeHandler/BaseAddViaDelegate.js +2 -2
  93. package/src/sap/ui/fl/changeHandler/BaseAddXml.js +2 -2
  94. package/src/sap/ui/fl/changeHandler/BaseRename.js +2 -2
  95. package/src/sap/ui/fl/changeHandler/BaseTreeModifier.js +1 -1
  96. package/src/sap/ui/fl/changeHandler/HideControl.js +3 -3
  97. package/src/sap/ui/fl/changeHandler/MoveControls.js +2 -2
  98. package/src/sap/ui/fl/changeHandler/MoveElements.js +2 -2
  99. package/src/sap/ui/fl/changeHandler/PropertyBindingChange.js +2 -2
  100. package/src/sap/ui/fl/changeHandler/PropertyChange.js +2 -2
  101. package/src/sap/ui/fl/changeHandler/StashControl.js +3 -3
  102. package/src/sap/ui/fl/changeHandler/UnhideControl.js +2 -2
  103. package/src/sap/ui/fl/changeHandler/UnstashControl.js +2 -2
  104. package/src/sap/ui/fl/changeHandler/UpdateIFrame.js +2 -2
  105. package/src/sap/ui/fl/changeHandler/common/ChangeCategories.js +1 -1
  106. package/src/sap/ui/fl/changeHandler/common/createIFrame.js +1 -1
  107. package/src/sap/ui/fl/changeHandler/common/getTargetAggregationIndex.js +1 -1
  108. package/src/sap/ui/fl/changeHandler/common/revertAddedControls.js +1 -1
  109. package/src/sap/ui/fl/changeHandler/condenser/Classification.js +1 -1
  110. package/src/sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory.js +5 -5
  111. package/src/sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory.js +4 -4
  112. package/src/sap/ui/fl/descriptorRelated/api/DescriptorVariantFactory.js +2 -2
  113. package/src/sap/ui/fl/descriptorRelated/internal/Utils.js +1 -1
  114. package/src/sap/ui/fl/designtime/library.designtime.js +1 -1
  115. package/src/sap/ui/fl/designtime/util/IFrame.designtime.js +1 -1
  116. package/src/sap/ui/fl/designtime/variants/VariantManagement.designtime.js +1 -1
  117. package/src/sap/ui/fl/initial/_internal/Storage.js +2 -2
  118. package/src/sap/ui/fl/initial/_internal/StorageResultMerger.js +1 -1
  119. package/src/sap/ui/fl/initial/_internal/StorageUtils.js +4 -2
  120. package/src/sap/ui/fl/initial/_internal/changeHandlers/ChangeHandlerRegistration.js +2 -2
  121. package/src/sap/ui/fl/initial/_internal/changeHandlers/ChangeHandlerStorage.js +2 -2
  122. package/src/sap/ui/fl/initial/_internal/changeHandlers/ChangeRegistryItem.js +2 -2
  123. package/src/sap/ui/fl/initial/_internal/connectors/BackendConnector.js +1 -1
  124. package/src/sap/ui/fl/initial/_internal/connectors/KeyUserConnector.js +1 -1
  125. package/src/sap/ui/fl/initial/_internal/connectors/LrepConnector.js +1 -2
  126. package/src/sap/ui/fl/initial/_internal/connectors/NeoLrepConnector.js +1 -1
  127. package/src/sap/ui/fl/initial/_internal/connectors/PersonalizationConnector.js +1 -1
  128. package/src/sap/ui/fl/initial/_internal/connectors/StaticFileConnector.js +1 -1
  129. package/src/sap/ui/fl/initial/_internal/connectors/Utils.js +4 -4
  130. package/src/sap/ui/fl/initial/_internal/storageResultDisassemble.js +2 -2
  131. package/src/sap/ui/fl/interfaces/BaseLoadConnector.js +4 -4
  132. package/src/sap/ui/fl/interfaces/Delegate.js +2 -2
  133. package/src/sap/ui/fl/library.js +47 -48
  134. package/src/sap/ui/fl/library.support.js +1 -1
  135. package/src/sap/ui/fl/messagebundle_bg.properties +2 -2
  136. package/src/sap/ui/fl/messagebundle_it.properties +1 -1
  137. package/src/sap/ui/fl/registry/Settings.js +3 -13
  138. package/src/sap/ui/fl/requireAsync.js +1 -1
  139. package/src/sap/ui/fl/support/_internal/extractChangeDependencies.js +5 -3
  140. package/src/sap/ui/fl/support/_internal/getChangeDependencies.js +2 -2
  141. package/src/sap/ui/fl/support/_internal/getFlexSettings.js +2 -2
  142. package/src/sap/ui/fl/support/api/SupportAPI.js +2 -2
  143. package/src/sap/ui/fl/support/apps/contentbrowser/Component.js +1 -1
  144. package/src/sap/ui/fl/support/apps/contentbrowser/controller/ContentDetails.controller.js +2 -2
  145. package/src/sap/ui/fl/support/apps/contentbrowser/controller/ContentDetailsEdit.controller.js +2 -2
  146. package/src/sap/ui/fl/support/apps/contentbrowser/controller/LayerContentMaster.controller.js +2 -2
  147. package/src/sap/ui/fl/support/apps/contentbrowser/controller/Layers.controller.js +2 -2
  148. package/src/sap/ui/fl/support/apps/contentbrowser/lrepConnector/LRepConnector.js +2 -2
  149. package/src/sap/ui/fl/support/apps/contentbrowser/utils/DataUtils.js +8 -8
  150. package/src/sap/ui/fl/support/apps/contentbrowser/utils/ErrorUtils.js +5 -5
  151. package/src/sap/ui/fl/themes/base/library.source.less +1 -1
  152. package/src/sap/ui/fl/themes/sap_hcb/library.source.less +1 -1
  153. package/src/sap/ui/fl/transport/TransportDialog.js +1 -1
  154. package/src/sap/ui/fl/transport/TransportSelection.js +2 -2
  155. package/src/sap/ui/fl/util/DescriptorChangeCheck.js +1 -1
  156. package/src/sap/ui/fl/util/IFrame.flexibility.js +1 -1
  157. package/src/sap/ui/fl/util/IFrame.js +2 -2
  158. package/src/sap/ui/fl/util/IFrameRenderer.js +1 -1
  159. package/src/sap/ui/fl/util/ManagedObjectModel.js +2 -2
  160. package/src/sap/ui/fl/util/changePropertyValueByPath.js +1 -1
  161. package/src/sap/ui/fl/util/getContainerUserInfo.js +1 -1
  162. package/src/sap/ui/fl/util/resolveBinding.js +2 -2
  163. package/src/sap/ui/fl/variants/VariantManagement.js +32 -3
  164. package/src/sap/ui/fl/variants/VariantModel.js +2 -2
  165. package/src/sap/ui/fl/variants/context/Component.js +1 -1
  166. package/src/sap/ui/fl/variants/context/controller/ContextVisibility.controller.js +1 -2
  167. package/src/sap/ui/fl/write/_internal/FlexInfoSession.js +1 -1
  168. package/src/sap/ui/fl/write/_internal/SaveAs.js +1 -1
  169. package/src/sap/ui/fl/write/_internal/Storage.js +11 -2
  170. package/src/sap/ui/fl/write/_internal/StorageFeaturesMerger.js +3 -5
  171. package/src/sap/ui/fl/write/_internal/Versions.js +2 -2
  172. package/src/sap/ui/fl/write/_internal/appVariant/AppVariant.js +2 -2
  173. package/src/sap/ui/fl/write/_internal/appVariant/AppVariantFactory.js +2 -2
  174. package/src/sap/ui/fl/write/_internal/appVariant/AppVariantInlineChange.js +2 -2
  175. package/src/sap/ui/fl/write/_internal/appVariant/AppVariantInlineChangeFactory.js +4 -4
  176. package/src/sap/ui/fl/write/_internal/condenser/Condenser.js +2 -2
  177. package/src/sap/ui/fl/write/_internal/condenser/UIReconstruction.js +2 -2
  178. package/src/sap/ui/fl/write/_internal/condenser/Utils.js +1 -1
  179. package/src/sap/ui/fl/write/_internal/condenser/classifications/Create.js +1 -1
  180. package/src/sap/ui/fl/write/_internal/condenser/classifications/Destroy.js +1 -1
  181. package/src/sap/ui/fl/write/_internal/condenser/classifications/LastOneWins.js +1 -1
  182. package/src/sap/ui/fl/write/_internal/condenser/classifications/Move.js +1 -1
  183. package/src/sap/ui/fl/write/_internal/condenser/classifications/Reverse.js +1 -1
  184. package/src/sap/ui/fl/write/_internal/condenser/classifications/Update.js +1 -1
  185. package/src/sap/ui/fl/write/_internal/connectors/BackendConnector.js +2 -2
  186. package/src/sap/ui/fl/write/_internal/connectors/JsObjectConnector.js +1 -1
  187. package/src/sap/ui/fl/write/_internal/connectors/KeyUserConnector.js +2 -2
  188. package/src/sap/ui/fl/write/_internal/connectors/LocalStorageConnector.js +1 -1
  189. package/src/sap/ui/fl/write/_internal/connectors/LrepConnector.js +21 -5
  190. package/src/sap/ui/fl/write/_internal/connectors/NeoLrepConnector.js +8 -2
  191. package/src/sap/ui/fl/write/_internal/connectors/ObjectPathConnector.js +2 -2
  192. package/src/sap/ui/fl/write/_internal/connectors/ObjectStorageConnector.js +2 -2
  193. package/src/sap/ui/fl/write/_internal/connectors/PersonalizationConnector.js +2 -2
  194. package/src/sap/ui/fl/write/_internal/connectors/SessionStorageConnector.js +1 -1
  195. package/src/sap/ui/fl/write/_internal/connectors/Utils.js +5 -2
  196. package/src/sap/ui/fl/write/_internal/delegates/ODataV4ReadDelegate.js +1 -1
  197. package/src/sap/ui/fl/write/_internal/extensionPoint/Processor.js +2 -2
  198. package/src/sap/ui/fl/write/_internal/extensionPoint/Registry.js +2 -2
  199. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ABAPAccess.js +2 -2
  200. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant.js +2 -2
  201. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariantFactory.js +2 -2
  202. package/src/sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExtensibilityVariant.js +2 -2
  203. package/src/sap/ui/fl/write/_internal/fieldExtensibility/ServiceValidation.js +2 -2
  204. package/src/sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExtensibilityVariant.js +2 -2
  205. package/src/sap/ui/fl/write/_internal/fieldExtensibility/UriParser.js +2 -2
  206. package/src/sap/ui/fl/write/_internal/fieldExtensibility/Utils.js +2 -2
  207. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/CAPAccess.js +2 -2
  208. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/dialog/CustomFieldCAPDialog.js +2 -2
  209. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/getEditorConfig.js +1 -1
  210. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
  211. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/propertyEditor/rangeEditor/RangeEditor.js +2 -2
  212. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/propertyEditor/timeEditor/TimeEditor.js +2 -2
  213. package/src/sap/ui/fl/write/_internal/fieldExtensibility/cap/editor/validators/IsRequired.js +1 -1
  214. package/src/sap/ui/fl/write/_internal/flexState/FlexObjectState.js +2 -2
  215. package/src/sap/ui/fl/write/_internal/flexState/compVariants/CompVariantState.js +2 -2
  216. package/src/sap/ui/fl/write/_internal/transport/TransportDialog.js +1 -1
  217. package/src/sap/ui/fl/write/_internal/transport/TransportSelection.js +2 -2
  218. package/src/sap/ui/fl/write/_internal/transport/Transports.js +2 -2
  219. package/src/sap/ui/fl/write/api/AppVariantWriteAPI.js +1 -1
  220. package/src/sap/ui/fl/write/api/ChangesWriteAPI.js +1 -1
  221. package/src/sap/ui/fl/write/api/ContextBasedAdaptationsAPI.js +81 -15
  222. package/src/sap/ui/fl/write/api/ContextSharingAPI.js +3 -3
  223. package/src/sap/ui/fl/write/api/ControlPersonalizationWriteAPI.js +1 -1
  224. package/src/sap/ui/fl/write/api/ExtensionPointRegistryAPI.js +1 -1
  225. package/src/sap/ui/fl/write/api/FeaturesAPI.js +1 -1
  226. package/src/sap/ui/fl/write/api/FieldExtensibility.js +2 -2
  227. package/src/sap/ui/fl/write/api/LocalResetAPI.js +1 -1
  228. package/src/sap/ui/fl/write/api/PersistenceWriteAPI.js +2 -2
  229. package/src/sap/ui/fl/write/api/ReloadInfoAPI.js +1 -1
  230. package/src/sap/ui/fl/write/api/SmartBusinessWriteAPI.js +1 -1
  231. package/src/sap/ui/fl/write/api/SmartVariantManagementWriteAPI.js +1 -1
  232. package/src/sap/ui/fl/write/api/TranslationAPI.js +1 -1
  233. package/src/sap/ui/fl/write/api/UI2PersonalizationWriteAPI.js +1 -1
  234. package/src/sap/ui/fl/write/api/Version.js +1 -1
  235. package/src/sap/ui/fl/write/api/VersionsAPI.js +1 -1
  236. package/src/sap/ui/fl/write/api/connectors/FileListBaseConnector.js +2 -2
  237. package/src/sap/ui/fl/write/api/connectors/ObjectStorageConnector.js +2 -2
  238. package/src/sap/ui/fl/write/connectors/BaseConnector.js +7 -1
  239. package/src/sap/ui/fl/changeHandler/JsControlTreeModifier.js +0 -17
  240. package/src/sap/ui/fl/changeHandler/XmlTreeModifier.js +0 -17
@@ -1,14 +1,14 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
7
7
  sap.ui.define([
8
- "sap/m/MessagePopoverItem",
8
+ "sap/m/MessageItem",
9
9
  "sap/m/MessagePopover",
10
10
  "sap/ui/model/json/JSONModel"],
11
- function (MessagePopoverItem, MessagePopover, JSONModel) {
11
+ function (MessageItem, MessagePopover, JSONModel) {
12
12
  "use strict";
13
13
 
14
14
  /**
@@ -17,7 +17,7 @@ function (MessagePopoverItem, MessagePopover, JSONModel) {
17
17
  * @constructor
18
18
  * @alias sap.ui.fl.support.apps.contentbrowser.utils.ErrorUtils
19
19
  * @author SAP SE
20
- * @version 1.109.0
20
+ * @version 1.110.0
21
21
  * @experimental Since 1.45
22
22
  */
23
23
  var ErrorUtils = {};
@@ -26,7 +26,7 @@ function (MessagePopoverItem, MessagePopover, JSONModel) {
26
26
  ErrorUtils._messagesModel = undefined;
27
27
  ErrorUtils._emptyModel = new JSONModel([]);
28
28
 
29
- ErrorUtils._messageTemplate = new MessagePopoverItem({
29
+ ErrorUtils._messageTemplate = new MessageItem({
30
30
  type: "{messages>type}",
31
31
  title: "{messages>title}",
32
32
  description: "{messages>description}"
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -17,7 +17,7 @@ sap.ui.define([
17
17
  * @alias sap.ui.fl.transport.TransportSelection
18
18
  * @constructor
19
19
  * @author SAP SE
20
- * @version 1.109.0
20
+ * @version 1.110.0
21
21
  * @since 1.38.0
22
22
  * Helper object to select an ABAP transport for an LREP object. This is not a generic utility to select a transport request, but part
23
23
  * of the SmartVariant control.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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
  * @extends sap.ui.core.Control
54
54
  *
55
55
  * @author SAP SE
56
- * @version 1.109.0
56
+ * @version 1.110.0
57
57
  *
58
58
  * @constructor
59
59
  * @private
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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
  * @extends sap.ui.core.Element
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.109.0
28
+ * @version 1.110.0
29
29
  *
30
30
  * @constructor
31
31
  * @private
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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([
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  *
35
35
  * @function
36
36
  * @author SAP SE
37
- * @version 1.109.0
37
+ * @version 1.110.0
38
38
  * @alias sap.ui.fl.util.resolveBinding
39
39
  * @experimental
40
40
  * @since 1.91
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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,8 @@ sap.ui.define([
50
50
  metadata: {
51
51
  interfaces: [
52
52
  "sap.ui.core.IShrinkable",
53
- "sap.m.IOverflowToolbarContent"
53
+ "sap.m.IOverflowToolbarContent",
54
+ "sap.m.IToolbarInteractiveControl"
54
55
  ],
55
56
  library: "sap.ui.fl",
56
57
  designtime: "sap/ui/fl/designtime/variants/VariantManagement.designtime",
@@ -798,6 +799,22 @@ sap.ui.define([
798
799
  return this;
799
800
  };
800
801
 
802
+
803
+ /**
804
+ * Reinitializes the inner model registration. This is necessary when using a session dependent <code>VariantManagement</code>
805
+ * control that may be used across the lifecycle of more than one application.
806
+ *
807
+ * Since the <code>VariantModel</code> is being recreated depending on the lifecycle of the application,
808
+ * we need to ensure that when navigating into an application upon reusing the VM control, the latest context
809
+ * should be used.
810
+ *
811
+ * @ui-restricted sap.ui.mdc
812
+ */
813
+ VariantManagement.prototype.reinitialize = function() {
814
+ this.oContext = null;
815
+ this._setModel();
816
+ };
817
+
801
818
  VariantManagement.prototype._setModel = function() {
802
819
  this._setBindingContext();
803
820
  };
@@ -956,7 +973,7 @@ sap.ui.define([
956
973
  /**
957
974
  * Retrieves the apply automatically state for a variant.
958
975
  * @private
959
- * @ui5-restricted sap.mdc
976
+ * @ui5-restricted sap.ui.mdc
960
977
  * @param {object} oVariant the fl-variant object
961
978
  * @returns {boolean} apply automatically state
962
979
  */
@@ -1010,6 +1027,18 @@ sap.ui.define([
1010
1027
  return this;
1011
1028
  };
1012
1029
 
1030
+ /**
1031
+ * Required by the {@link sap.m.IToolbarInteractiveControl} interface.
1032
+ * Determines if the Control is interactive.
1033
+ *
1034
+ * @returns {boolean} If it is an interactive Control
1035
+ *
1036
+ * @private
1037
+ * @ui5-restricted sap.m.OverflowToolBar, sap.m.Toolbar
1038
+ */
1039
+ VariantManagement.prototype._getToolbarInteractive = function () {
1040
+ return true;
1041
+ };
1013
1042
 
1014
1043
  return VariantManagement;
1015
1044
  });
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -266,7 +266,7 @@ sap.ui.define([
266
266
  * @class Variant model implementation for JSON format.
267
267
  * @extends sap.ui.model.json.JSONModel
268
268
  * @author SAP SE
269
- * @version 1.109.0
269
+ * @version 1.110.0
270
270
  * @param {object} oData - Either the URL where to load the JSON from or a JS object
271
271
  * @param {object} mPropertyBag - Map of properties required for the constructor
272
272
  * @param {sap.ui.fl.FlexController} mPropertyBag.flexController - <code>FlexController</code> instance for the component which uses the variant model
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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([
@@ -64,7 +64,6 @@ sap.ui.define([
64
64
  return Controller.extend("sap.ui.fl.variants.context.controller.ContextVisibility", {
65
65
  onInit: function() {
66
66
  this.oSelectedContextsModel = this.getView().getModel("selectedContexts");
67
- this.oSelectedContextsModel.setProperty("/showMessageStrip", true);
68
67
  this.oContextsModel = this.getView().getModel("contexts");
69
68
  this.oI18n = this.getView().getModel("i18n").getResourceBundle();
70
69
  },
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ! OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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.109.0
25
+ * @version 1.110.0
26
26
  * @private
27
27
  * @ui5-restricted sap.ui.fl
28
28
  */
@@ -411,8 +411,17 @@ sap.ui.define([
411
411
  create: function(mPropertyBag) {
412
412
  return _getWriteConnectors()
413
413
  .then(_executeActionByName.bind(undefined, "contextBasedAdaptation.create", mPropertyBag));
414
+ },
415
+ reorder: function(mPropertyBag) {
416
+ return _getWriteConnectors()
417
+ .then(_executeActionByName.bind(undefined, "contextBasedAdaptation.reorder", mPropertyBag));
418
+ },
419
+ load: function(mPropertyBag) {
420
+ return _getWriteConnectors()
421
+ .then(_executeActionByName.bind(undefined, "contextBasedAdaptation.load", mPropertyBag));
414
422
  }
415
423
  };
424
+
416
425
  Storage.versions = {
417
426
  /**
418
427
  * Loads the versions for a given application and layer.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  *
17
17
  * @namespace sap.ui.fl.write._internal.StorageFeaturesMerger
18
18
  * @since 1.70
19
- * @version 1.109.0
19
+ * @version 1.110.0
20
20
  * @private
21
21
  * @ui5-restricted sap.ui.fl.write._internal.Storage
22
22
  */
@@ -28,7 +28,6 @@ sap.ui.define([
28
28
  isPublicFlVariantEnabled: false,
29
29
  isVariantPersonalizationEnabled: true,
30
30
  isContextSharingEnabled: true,
31
- isContextSharingEnabledForComp: true,
32
31
  isAtoAvailable: false,
33
32
  isAtoEnabled: false,
34
33
  versioning: {},
@@ -71,9 +70,8 @@ sap.ui.define([
71
70
  }
72
71
  });
73
72
  oResult.versioning = merge(oResult.versioning, _getVersioningFromResponse(oResponse));
74
- if (oResponse.isContextSharingEnabled !== undefined && oResponse.isContextSharingEnabledForComp === undefined) {
73
+ if (oResponse.isContextSharingEnabled !== undefined) {
75
74
  oResult.isContextSharingEnabled = oResponse.isContextSharingEnabled;
76
- oResult.isContextSharingEnabledForComp = oResponse.isContextSharingEnabled;
77
75
  }
78
76
  });
79
77
  return oResult;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -174,7 +174,7 @@ sap.ui.define([
174
174
  *
175
175
  * @namespace sap.ui.fl.write._internal.Versions
176
176
  * @since 1.74
177
- * @version 1.109.0
177
+ * @version 1.110.0
178
178
  * @private
179
179
  * @ui5-restricted sap.ui.fl
180
180
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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.109.0
38
+ * @version 1.110.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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * @namespace
35
35
  * @alias sap.ui.fl.write._internal.appVariant.AppVariantFactory
36
36
  * @author SAP SE
37
- * @version 1.109.0
37
+ * @version 1.110.0
38
38
  * @private
39
39
  * @ui5-restricted sap.ui.rta, smart business
40
40
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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.109.0
31
+ * @version 1.110.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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * @namespace
34
34
  * @alias sap.ui.fl.write._internal.appVariant.AppVariantInlineChangeFactory
35
35
  * @author SAP SE
36
- * @version 1.109.0
36
+ * @version 1.110.0
37
37
  * @private
38
38
  * @ui5-restricted sap.ui.rta, smart business
39
39
  */
@@ -918,7 +918,7 @@ sap.ui.define([
918
918
  * @return {Promise} Resolving when creating the app variant inline change was successful (without back end access)
919
919
  *
920
920
  * @private
921
- * @ui5-restricted WebIDE
921
+ * @ui5-restricted SAP Web IDE
922
922
  */
923
923
  AppVariantInlineChangeFactory.create_ui5_setFlexExtensionPointEnabled = function(mPropertyBag) {
924
924
  Utils.checkParameterAndType(mPropertyBag.content, "flexExtensionPointEnabled", "boolean");
@@ -960,7 +960,7 @@ sap.ui.define([
960
960
  * @return {Promise} Resolving when the descriptor inline change was created successfully (without back-end access)
961
961
  *
962
962
  * @private
963
- * @ui5-restricted WebIDE
963
+ * @ui5-restricted SAP Web IDE
964
964
  */
965
965
  AppVariantInlineChangeFactory.create_fiori_setAbstract = function(mPropertyBag) {
966
966
  Utils.checkParameterAndType(mPropertyBag.content, "abstract", "boolean");
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -51,7 +51,7 @@ sap.ui.define([
51
51
  * @namespace
52
52
  * @alias sap.ui.fl.write._internal.condenser.Condenser
53
53
  * @author SAP SE
54
- * @version 1.109.0
54
+ * @version 1.110.0
55
55
  */
56
56
  var Condenser = {};
57
57
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @namespace
30
30
  * @alias sap.ui.fl.write._internal.condenser.UIReconstruction
31
31
  * @author SAP SE
32
- * @version 1.109.0
32
+ * @version 1.110.0
33
33
  */
34
34
  var UIReconstruction = {};
35
35
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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.109.0
77
+ * @version 1.110.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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 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
  *
33
33
  * @namespace sap.ui.fl.write._internal.connectors.KeyUserConnector
34
34
  * @since 1.70
35
- * @version 1.109.0
35
+ * @version 1.110.0
36
36
  * @private
37
37
  * @ui5-restricted sap.ui.fl.write._internal.Storage
38
38
  */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6