@openui5/sap.ui.core 1.136.4 → 1.139.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 (333) hide show
  1. package/.eslintrc.json +3 -3
  2. package/README.md +1 -1
  3. package/REUSE.toml +8 -29
  4. package/THIRDPARTY.txt +72 -90
  5. package/package.json +2 -2
  6. package/src/jquery.sap.global.js +1 -1
  7. package/src/jquery.sap.properties.js +1 -1
  8. package/src/jquery.sap.resources.js +1 -1
  9. package/src/jquery.sap.script.js +1 -1
  10. package/src/jquery.sap.storage.js +3 -3
  11. package/src/sap/base/Event.js +1 -1
  12. package/src/sap/base/Eventing.js +1 -1
  13. package/src/sap/base/config.js +1 -1
  14. package/src/sap/base/i18n/LanguageFallback.js +18 -2
  15. package/src/sap/base/i18n/LanguageTag.js +1 -1
  16. package/src/sap/base/i18n/Localization.js +5 -3
  17. package/src/sap/base/i18n/ResourceBundle.js +59 -35
  18. package/src/sap/base/i18n/date/TimezoneUtils.js +1 -1
  19. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  20. package/src/sap/base/util/restricted/_castArray.js +1 -1
  21. package/src/sap/base/util/restricted/_compact.js +1 -1
  22. package/src/sap/base/util/restricted/_curry.js +1 -1
  23. package/src/sap/base/util/restricted/_debounce.js +1 -1
  24. package/src/sap/base/util/restricted/_difference.js +1 -1
  25. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  26. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  27. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  28. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  29. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  30. package/src/sap/base/util/restricted/_flatten.js +1 -1
  31. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  32. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  33. package/src/sap/base/util/restricted/_intersection.js +1 -1
  34. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  35. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  36. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  37. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  38. package/src/sap/base/util/restricted/_isNil.js +1 -1
  39. package/src/sap/base/util/restricted/_max.js +1 -1
  40. package/src/sap/base/util/restricted/_merge.js +1 -1
  41. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  42. package/src/sap/base/util/restricted/_min.js +1 -1
  43. package/src/sap/base/util/restricted/_omit.js +1 -1
  44. package/src/sap/base/util/restricted/_pick.js +1 -1
  45. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  46. package/src/sap/base/util/restricted/_throttle.js +1 -1
  47. package/src/sap/base/util/restricted/_toArray.js +1 -1
  48. package/src/sap/base/util/restricted/_union.js +1 -1
  49. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  50. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  51. package/src/sap/base/util/restricted/_uniq.js +1 -1
  52. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  53. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  54. package/src/sap/base/util/restricted/_without.js +1 -1
  55. package/src/sap/base/util/restricted/_xor.js +1 -1
  56. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  57. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  58. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  59. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  60. package/src/sap/ui/Device.js +3 -3
  61. package/src/sap/ui/Global.js +3 -3
  62. package/src/sap/ui/base/BindingInfo.js +18 -9
  63. package/src/sap/ui/base/BindingParser.js +13 -6
  64. package/src/sap/ui/base/Event.js +1 -1
  65. package/src/sap/ui/base/EventProvider.js +1 -8
  66. package/src/sap/ui/base/Interface.js +1 -1
  67. package/src/sap/ui/base/ManagedObject.js +37 -27
  68. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  69. package/src/sap/ui/base/Metadata.js +1 -1
  70. package/src/sap/ui/base/Object.js +1 -1
  71. package/src/sap/ui/base/ObjectPool.js +1 -1
  72. package/src/sap/ui/base/OwnStatics.js +49 -0
  73. package/src/sap/ui/core/.library +9 -31
  74. package/src/sap/ui/core/BusyIndicator.js +8 -8
  75. package/src/sap/ui/core/Component.js +63 -73
  76. package/src/sap/ui/core/ComponentContainer.js +34 -4
  77. package/src/sap/ui/core/ComponentMetadata.js +1 -1
  78. package/src/sap/ui/core/ComponentSupport.js +1 -1
  79. package/src/sap/ui/core/Configuration.js +1 -1
  80. package/src/sap/ui/core/Control.js +1 -1
  81. package/src/sap/ui/core/Core.js +2 -2
  82. package/src/sap/ui/core/CustomData.js +1 -1
  83. package/src/sap/ui/core/DeclarativeSupport.js +13 -11
  84. package/src/sap/ui/core/Element.js +1 -3
  85. package/src/sap/ui/core/ElementMetadata.js +1 -1
  86. package/src/sap/ui/core/EnabledPropagator.js +1 -1
  87. package/src/sap/ui/core/EventBus.js +1 -1
  88. package/src/sap/ui/core/ExtensionPoint.js +4 -4
  89. package/src/sap/ui/core/Fragment.js +10 -6
  90. package/src/sap/ui/core/HTML.js +1 -1
  91. package/src/sap/ui/core/History.js +1 -1
  92. package/src/sap/ui/core/Icon.js +1 -1
  93. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  94. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  95. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  96. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  97. package/src/sap/ui/core/InvisibleText.js +1 -1
  98. package/src/sap/ui/core/Item.js +1 -1
  99. package/src/sap/ui/core/LabelEnablement.js +1 -1
  100. package/src/sap/ui/core/LayoutData.js +1 -1
  101. package/src/sap/ui/core/Lib.js +39 -24
  102. package/src/sap/ui/core/ListItem.js +1 -1
  103. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  104. package/src/sap/ui/core/Locale.js +1 -1
  105. package/src/sap/ui/core/LocaleData.js +1 -1
  106. package/src/sap/ui/core/Manifest.js +1 -1
  107. package/src/sap/ui/core/Message.js +1 -1
  108. package/src/sap/ui/core/Popup.js +39 -178
  109. package/src/sap/ui/core/RenderManager.js +1 -1
  110. package/src/sap/ui/core/Renderer.js +1 -1
  111. package/src/sap/ui/core/ResizeHandler.js +1 -1
  112. package/src/sap/ui/core/ScrollBar.js +1 -1
  113. package/src/sap/ui/core/SeparatorItem.js +1 -1
  114. package/src/sap/ui/core/Theming.js +2 -2
  115. package/src/sap/ui/core/Title.js +1 -1
  116. package/src/sap/ui/core/TooltipBase.js +1 -1
  117. package/src/sap/ui/core/UIArea.js +1 -1
  118. package/src/sap/ui/core/UIComponent.js +16 -57
  119. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  120. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  121. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  122. package/src/sap/ui/core/XMLComposite.js +1 -1
  123. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  124. package/src/sap/ui/core/XMLTemplateProcessor.js +5 -1
  125. package/src/sap/ui/core/_IconRegistry.js +2 -0
  126. package/src/sap/ui/core/date/UI5Date.js +1 -1
  127. package/src/sap/ui/core/delegate/ItemNavigation.js +2 -2
  128. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  129. package/src/sap/ui/core/dnd/DragDropBase.js +12 -2
  130. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  131. package/src/sap/ui/core/dnd/DragInfo.js +5 -3
  132. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  133. package/src/sap/ui/core/format/FormatUtils.js +1 -1
  134. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  135. package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
  136. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  137. package/src/sap/ui/core/interaction/KeyboardInteractionDisplay.js +64 -37
  138. package/src/sap/ui/core/library.js +3 -3
  139. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  140. package/src/sap/ui/core/message/Message.js +1 -1
  141. package/src/sap/ui/core/message/MessageManager.js +1 -1
  142. package/src/sap/ui/core/message/MessageParser.js +1 -1
  143. package/src/sap/ui/core/message/MessageProcessor.js +6 -6
  144. package/src/sap/ui/core/messagebundle.properties +58 -28
  145. package/src/sap/ui/core/messagebundle_mk.properties +3 -3
  146. package/src/sap/ui/core/mvc/Controller.js +5 -1
  147. package/src/sap/ui/core/mvc/HTMLView.js +6 -2
  148. package/src/sap/ui/core/mvc/JSONView.js +6 -2
  149. package/src/sap/ui/core/mvc/JSView.js +6 -3
  150. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  151. package/src/sap/ui/core/mvc/View.js +69 -195
  152. package/src/sap/ui/core/mvc/XMLView.js +7 -2
  153. package/src/sap/ui/core/mvc/_ViewFactory.js +196 -0
  154. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  155. package/src/sap/ui/core/plugin/LessSupport.js +1 -1
  156. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  157. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  158. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  159. package/src/sap/ui/core/routing/Route.js +197 -13
  160. package/src/sap/ui/core/routing/Router.js +19 -8
  161. package/src/sap/ui/core/routing/RouterHashChanger.js +12 -3
  162. package/src/sap/ui/core/routing/Target.js +714 -61
  163. package/src/sap/ui/core/routing/TargetCache.js +205 -25
  164. package/src/sap/ui/core/routing/Targets.js +162 -67
  165. package/src/sap/ui/core/routing/Views.js +1 -0
  166. package/src/sap/ui/core/routing/sync/Route.js +1 -1
  167. package/src/sap/ui/core/routing/sync/Target.js +11 -1
  168. package/src/sap/ui/core/routing/sync/TargetCache.js +3 -3
  169. package/src/sap/ui/core/routing/sync/Targets.js +1 -1
  170. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  171. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  172. package/src/sap/ui/core/service/Service.js +1 -48
  173. package/src/sap/ui/core/service/ServiceFactory.js +44 -4
  174. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  175. package/src/sap/ui/core/support/Plugin.js +1 -1
  176. package/src/sap/ui/core/support/Support.js +356 -353
  177. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  178. package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
  179. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  180. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  181. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  182. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  183. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  184. package/src/sap/ui/core/support/plugins/ViewInfo.js +4 -2
  185. package/src/sap/ui/core/themes/base/base.less +20 -20
  186. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  187. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  188. package/src/sap/ui/core/themes/base/global.less +4 -0
  189. package/src/sap/ui/core/themes/base/skeleton.less +3 -3
  190. package/src/sap/ui/core/theming/ThemeHelper.js +1 -18
  191. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  192. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  193. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +4 -4
  194. package/src/sap/ui/core/tmpl/Template.js +1 -1
  195. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  196. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  197. package/src/sap/ui/core/util/Export.js +1 -1
  198. package/src/sap/ui/core/util/ExportCell.js +1 -1
  199. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  200. package/src/sap/ui/core/util/ExportRow.js +1 -1
  201. package/src/sap/ui/core/util/ExportType.js +1 -1
  202. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  203. package/src/sap/ui/core/util/File.js +1 -1
  204. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  205. package/src/sap/ui/core/util/MockServer.js +1 -1
  206. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  207. package/src/sap/ui/core/util/XMLPreprocessor.js +8 -1
  208. package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +4 -4
  209. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  210. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  211. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  212. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  213. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  214. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  215. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  216. package/src/sap/ui/core/webc/WebComponent.js +2 -3
  217. package/src/sap/ui/core/webc/WebComponentMetadata.js +2 -3
  218. package/src/sap/ui/core/webc/WebComponentRenderer.js +1 -1
  219. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  220. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  221. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  222. package/src/sap/ui/debug/ControlTree.js +1 -1
  223. package/src/sap/ui/debug/DebugEnv.js +1 -1
  224. package/src/sap/ui/debug/PropertyList.js +1 -1
  225. package/src/sap/ui/model/ClientModel.js +2 -2
  226. package/src/sap/ui/model/CompositeDataState.js +1 -1
  227. package/src/sap/ui/model/CompositeType.js +1 -1
  228. package/src/sap/ui/model/DataState.js +1 -1
  229. package/src/sap/ui/model/Filter.js +55 -35
  230. package/src/sap/ui/model/FilterOperator.js +79 -9
  231. package/src/sap/ui/model/MetaModel.js +1 -1
  232. package/src/sap/ui/model/Model.js +1 -1
  233. package/src/sap/ui/model/SelectionModel.js +1 -1
  234. package/src/sap/ui/model/SimpleType.js +1 -1
  235. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  236. package/src/sap/ui/model/Type.js +1 -1
  237. package/src/sap/ui/model/analytics/AnalyticalBinding.js +2 -1
  238. package/src/sap/ui/model/analytics/AnalyticalTreeBindingAdapter.js +2 -1
  239. package/src/sap/ui/model/analytics/ODataModelAdapter.js +2 -1
  240. package/src/sap/ui/model/analytics/odata4analytics.js +2 -1
  241. package/src/sap/ui/model/json/JSONModel.js +1 -1
  242. package/src/sap/ui/model/message/MessageModel.js +1 -1
  243. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  244. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  245. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  246. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  247. package/src/sap/ui/model/odata/ODataModel.js +3 -3
  248. package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +2 -1
  249. package/src/sap/ui/model/odata/_AnnotationHelperExpression.js +3 -3
  250. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  251. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  252. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  253. package/src/sap/ui/model/odata/type/Date.js +1 -1
  254. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  255. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  256. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  257. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  258. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  259. package/src/sap/ui/model/odata/type/Double.js +1 -1
  260. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  261. package/src/sap/ui/model/odata/type/Int.js +1 -1
  262. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  263. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  264. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  265. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  266. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  267. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  268. package/src/sap/ui/model/odata/type/Single.js +1 -1
  269. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  270. package/src/sap/ui/model/odata/type/String.js +1 -1
  271. package/src/sap/ui/model/odata/type/Time.js +1 -1
  272. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  273. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  274. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  275. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  276. package/src/sap/ui/model/odata/v2/ODataModel.js +2 -2
  277. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
  278. package/src/sap/ui/model/odata/v4/Context.js +20 -17
  279. package/src/sap/ui/model/odata/v4/ODataBinding.js +2 -2
  280. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +4 -4
  281. package/src/sap/ui/model/odata/v4/ODataListBinding.js +34 -22
  282. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +60 -22
  283. package/src/sap/ui/model/odata/v4/ODataModel.js +9 -8
  284. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +2 -2
  285. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
  286. package/src/sap/ui/model/odata/v4/ODataUtils.js +2 -2
  287. package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +4 -4
  288. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +98 -89
  289. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +39 -7
  290. package/src/sap/ui/model/odata/v4/lib/_Cache.js +32 -26
  291. package/src/sap/ui/model/odata/v4/lib/_GroupLock.js +10 -4
  292. package/src/sap/ui/model/odata/v4/lib/_Helper.js +44 -24
  293. package/src/sap/ui/model/odata/v4/lib/_MinMaxHelper.js +1 -1
  294. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +50 -19
  295. package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
  296. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  297. package/src/sap/ui/model/type/Boolean.js +1 -1
  298. package/src/sap/ui/model/type/Currency.js +1 -1
  299. package/src/sap/ui/model/type/Date.js +1 -1
  300. package/src/sap/ui/model/type/DateInterval.js +1 -1
  301. package/src/sap/ui/model/type/DateTime.js +1 -1
  302. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  303. package/src/sap/ui/model/type/FileSize.js +1 -1
  304. package/src/sap/ui/model/type/Float.js +1 -1
  305. package/src/sap/ui/model/type/Integer.js +1 -1
  306. package/src/sap/ui/model/type/String.js +1 -1
  307. package/src/sap/ui/model/type/Time.js +1 -1
  308. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  309. package/src/sap/ui/model/type/Unit.js +1 -4
  310. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  311. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  312. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  313. package/src/sap/ui/test/Opa.js +14 -2
  314. package/src/sap/ui/test/Opa5.js +61 -10
  315. package/src/sap/ui/test/TestUtils.js +6 -2
  316. package/src/sap/ui/test/generic/GenericTestCollection.js +11 -1
  317. package/src/sap/ui/test/generic/TestBase.js +1 -1
  318. package/src/sap/ui/thirdparty/datajs.js +13 -10
  319. package/src/sap/ui/thirdparty/jquery.js +1 -1
  320. package/src/sap/ui/util/Storage.js +1 -1
  321. package/src/ui5loader-autoconfig.js +49 -59
  322. package/src/ui5loader.js +1 -1
  323. package/src/sap/ui/core/routing/async/Route.js +0 -186
  324. package/src/sap/ui/core/routing/async/Target.js +0 -712
  325. package/src/sap/ui/core/routing/async/TargetCache.js +0 -196
  326. package/src/sap/ui/core/routing/async/Targets.js +0 -130
  327. package/src/sap/ui/thirdparty/iscroll-lite.js +0 -603
  328. package/src/sap/ui/thirdparty/iscroll.js +0 -1104
  329. package/src/sap/ui/thirdparty/mobiscroll/css/mobiscroll-core.css +0 -416
  330. package/src/sap/ui/thirdparty/mobiscroll/js/mobiscroll-core.js +0 -127
  331. package/src/sap/ui/thirdparty/mobiscroll/js/mobiscroll-datetime.js +0 -818
  332. package/src/sap/ui/thirdparty/mobiscroll/js/mobiscroll-scroller.js +0 -1264
  333. package/src/sap/ui/thirdparty/swipe-view.js +0 -560
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * @class This class represents the ControlTree plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
60
60
  *
61
61
  * @extends sap.ui.core.support.Plugin
62
- * @version 1.136.4
62
+ * @version 1.139.0
63
63
  * @private
64
64
  * @alias sap.ui.core.support.plugins.ControlTree
65
65
  */
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * With this plugIn the performance measurements are displayed
45
45
  *
46
46
  * @extends sap.ui.core.support.Plugin
47
- * @version 1.136.4
47
+ * @version 1.139.0
48
48
  * @private
49
49
  * @alias sap.ui.core.support.plugins.Interaction
50
50
  */
@@ -15,7 +15,7 @@ sap.ui.define(['sap/ui/core/support/Plugin', "sap/base/Log"],
15
15
  * @class This class represents the LocalStorage plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
16
16
  *
17
17
  * @extends sap.ui.core.support.Plugin
18
- * @version 1.136.4
18
+ * @version 1.139.0
19
19
  * @private
20
20
  * @alias sap.ui.core.support.plugins.LocalStorage
21
21
  */
@@ -56,7 +56,7 @@ sap.ui.define([
56
56
  * With this plugIn the performance measurements are displayed
57
57
  *
58
58
  * @extends sap.ui.core.support.Plugin
59
- * @version 1.136.4
59
+ * @version 1.139.0
60
60
  * @private
61
61
  * @alias sap.ui.core.support.plugins.Performance
62
62
  */
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @class This class represents the selector plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
23
23
  *
24
24
  * @extends sap.ui.core.support.Plugin
25
- * @version 1.136.4
25
+ * @version 1.139.0
26
26
  * @private
27
27
  * @alias sap.ui.core.support.plugins.Selector
28
28
  */
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @class This class represents the technical info plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
37
37
  *
38
38
  * @extends sap.ui.core.support.Plugin
39
- * @version 1.136.4
39
+ * @version 1.139.0
40
40
  * @private
41
41
  * @alias sap.ui.core.support.plugins.TechInfo
42
42
  */
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @class This class represents the trace plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
22
22
  *
23
23
  * @extends sap.ui.core.support.Plugin
24
- * @version 1.136.4
24
+ * @version 1.139.0
25
25
  * @private
26
26
  * @alias sap.ui.core.support.plugins.Trace
27
27
  */
@@ -13,6 +13,7 @@ sap.ui.define([
13
13
  "sap/ui/core/support/controls/ObjectViewer",
14
14
  "sap/ui/Device",
15
15
  "sap/base/Log",
16
+ "sap/ui/base/BindingInfo",
16
17
  "sap/ui/base/DataType",
17
18
  "sap/ui/base/ManagedObject",
18
19
  "sap/ui/thirdparty/jquery"
@@ -24,6 +25,7 @@ sap.ui.define([
24
25
  ObjectViewer,
25
26
  Device,
26
27
  Log,
28
+ BindingInfo,
27
29
  DataType,
28
30
  ManagedObject,
29
31
  $
@@ -34,7 +36,7 @@ sap.ui.define([
34
36
  * Creates an instance of sap.ui.core.support.plugins.ViewInfo.
35
37
  * @class This class represents the ViewInfo plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
36
38
  * @extends sap.ui.core.support.Plugin
37
- * @version 1.136.4
39
+ * @version 1.139.0
38
40
  * @private
39
41
  * @deprecated As of version 1.118
40
42
  * @alias sap.ui.core.support.plugins.ViewInfo
@@ -426,7 +428,7 @@ sap.ui.define([
426
428
  ViewInfo.prototype.parseScalarType = function(sType, sValue, sName, oController) {
427
429
  // check for a binding expression (string)
428
430
  try {
429
- var oBindingInfo = ManagedObject.bindingParser(sValue, oController, true);
431
+ var oBindingInfo = BindingInfo.parse(sValue, oController, true);
430
432
  if ( oBindingInfo && typeof oBindingInfo === "object" ) {
431
433
  return {binding:oBindingInfo};
432
434
  }
@@ -1,11 +1,11 @@
1
1
  // /**
2
2
  // * Copyright (c) 2012-2025 SAP SE or an SAP affiliate company. All rights reserved.
3
- // * Theming Engine 16.0.7
4
- // * data:{"sModified":"2025-06-12T08:20:09Z"}
3
+ // * Theming Engine 16.0.2
4
+ // * data:{"sModified":"2025-05-14T05:17:18Z"}
5
5
  // */
6
6
 
7
7
 
8
- /******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.31.0) *******************/
8
+ /******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.30.0) *******************/
9
9
 
10
10
 
11
11
  // [Label "Brand Color"]
@@ -49,7 +49,7 @@
49
49
  @sapBackgroundColor: @sapDefault_Color;
50
50
 
51
51
  // [Label "Font Family"]
52
- // [Description "A prioritized list of preferred font family names."]
52
+ // [Description "The preferred font family."]
53
53
  // [Tags "Quick", "Base", "Content", "Font", "Protected"]
54
54
  // [Protected "true"]
55
55
  // [Category "Text"]
@@ -776,7 +776,7 @@
776
776
  @sapContent_LabelColor: @sapDefault_Color;
777
777
 
778
778
  // [Label "Monospace Font Family"]
779
- // [Description "A prioritized list of preferred monospace font family names."]
779
+ // [Description "Defines which monospaced font is used for specific texts in the content area."]
780
780
  // [Tags "Base", "Content", "Font", "Protected"]
781
781
  // [Protected "true"]
782
782
  // [Category "Text"]
@@ -784,7 +784,7 @@
784
784
  @sapContent_MonospaceFontFamily: @sapDefault_Font;
785
785
 
786
786
  // [Label "Monospace Bold Font Family"]
787
- // [Description "A prioritized list of preferred monospace bold font family names."]
787
+ // [Description "Defines which monospaced bold font is used for specific texts in the content area."]
788
788
  // [TranslationKey "sapContent_MonoBoldFontFamily"]
789
789
  // [Tags "Base", "Content", "Font", "Protected"]
790
790
  // [Protected "true"]
@@ -793,7 +793,7 @@
793
793
  @sapContent_MonospaceBoldFontFamily: @sapDefault_Font;
794
794
 
795
795
  // [Label "Icon Font Family"]
796
- // [Description "A prioritized list of preferred font family names for SAP-icons."]
796
+ // [Description "Defines which font is used to display the font icons."]
797
797
  // [Tags "Base", "Content", "Font", "Protected"]
798
798
  // [Protected "true"]
799
799
  // [Category "Icon"]
@@ -1391,7 +1391,7 @@
1391
1391
  @sapContent_Information_HeaderShadow: @sapDefault_Shadow;
1392
1392
 
1393
1393
  // [Label "Light Font Family"]
1394
- // [Description "A prioritized list of preferred light font family names."]
1394
+ // [Description "The preferred light font family."]
1395
1395
  // [Tags "Base", "Content", "Font", "Protected"]
1396
1396
  // [Protected "true"]
1397
1397
  // [Category "Text"]
@@ -1399,7 +1399,7 @@
1399
1399
  @sapFontLightFamily: @sapDefault_Font;
1400
1400
 
1401
1401
  // [Label "Bold Font Family"]
1402
- // [Description "A prioritized list of preferred bold font family names."]
1402
+ // [Description "The preferred bold font family of headers."]
1403
1403
  // [Tags "Base", "Content", "Font", "Protected"]
1404
1404
  // [Protected "true"]
1405
1405
  // [Category "Text"]
@@ -1407,7 +1407,7 @@
1407
1407
  @sapFontBoldFamily: @sapDefault_Font;
1408
1408
 
1409
1409
  // [Label "Semi Bold Font Family"]
1410
- // [Description "A prioritized list of preferred semi bold font family names."]
1410
+ // [Description "The preferred semi bold font family."]
1411
1411
  // [Tags "Base", "Content", "Font", "Protected"]
1412
1412
  // [Protected "true"]
1413
1413
  // [Category "Text"]
@@ -1415,7 +1415,7 @@
1415
1415
  @sapFontSemiboldFamily: @sapDefault_Font;
1416
1416
 
1417
1417
  // [Label "Semi Bold Duplex Font Family"]
1418
- // [Description "A prioritized list of preferred semi bold duplex font family names."]
1418
+ // [Description "The preferred semi bold duplex font family (with the same widths as @sapFontFamily)."]
1419
1419
  // [Tags "Base", "Content", "Font", "Protected"]
1420
1420
  // [Protected "true"]
1421
1421
  // [Category "Text"]
@@ -1423,7 +1423,7 @@
1423
1423
  @sapFontSemiboldDuplexFamily: @sapDefault_Font;
1424
1424
 
1425
1425
  // [Label "Black Font Family"]
1426
- // [Description "A prioritized list of preferred black font family names."]
1426
+ // [Description "The preferred black font family of headers."]
1427
1427
  // [Tags "Base", "Content", "Font", "Protected"]
1428
1428
  // [Protected "true"]
1429
1429
  // [Category "Text"]
@@ -1431,7 +1431,7 @@
1431
1431
  @sapFontBlackFamily: @sapDefault_Font;
1432
1432
 
1433
1433
  // [Label "Header Font Family"]
1434
- // [Description "A prioritized list of preferred font family names for headers."]
1434
+ // [Description "The preferred font family of headers."]
1435
1435
  // [Tags "Base", "Content", "Font", "Protected"]
1436
1436
  // [Protected "true"]
1437
1437
  // [Category "Text"]
@@ -3014,7 +3014,7 @@
3014
3014
  @sapButton_TextColor: @sapDefault_Color;
3015
3015
 
3016
3016
  // [Label "Button Font Family"]
3017
- // [Description "A prioritized list of preferred font family names for buttons."]
3017
+ // [Description "The font family of buttons."]
3018
3018
  // [Tags "Base", "Button", "Font", "Protected"]
3019
3019
  // [Protected "true"]
3020
3020
  // [Category "Button", "Standard"]
@@ -3112,7 +3112,7 @@
3112
3112
  @sapButton_Emphasized_TextColor: @sapDefault_Color;
3113
3113
 
3114
3114
  // [Label "Emphasized Button Font Family"]
3115
- // [Description "A prioritized list of preferred font family names for emphasized buttons."]
3115
+ // [Description "The font family of emphasized buttons."]
3116
3116
  // [Tags "Base", "Button", "Font", "Protected"]
3117
3117
  // [Protected "true"]
3118
3118
  // [Category "Button", "Emphasized"]
@@ -5966,7 +5966,7 @@
5966
5966
  @sapObjectHeader_Title_SnappedFontSize: @sapDefault_Dimension;
5967
5967
 
5968
5968
  // [Label "Object Header Title Font Family"]
5969
- // [Description "A prioritized list of preferred font family names for object header titles."]
5969
+ // [Description "The font family of object header titles."]
5970
5970
  // [TranslationKey "sapObjectHeader_TtlFntFmly"]
5971
5971
  // [Tags "Base", "Page", "Font", "Protected", "ObjectHeader"]
5972
5972
  // [Protected "true"]
@@ -13358,12 +13358,12 @@ fill: @sapBaseColor !important;
13358
13358
  /*</SAP_FREETEXT_LESS>*//*!SAP_POSTPROCESS_REDUCE_END*/
13359
13359
  // /**
13360
13360
  // * Copyright (c) 2012-2025 SAP SE or an SAP affiliate company. All rights reserved.
13361
- // * Theming Engine 16.0.7
13362
- // * data:{"sModified":"2025-06-12T08:20:10Z"}
13361
+ // * Theming Engine 16.0.2
13362
+ // * data:{"sModified":"2025-05-14T05:17:19Z"}
13363
13363
  // */
13364
13364
 
13365
13365
 
13366
- /******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.31.0) *******************/
13366
+ /******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.30.0) *******************/
13367
13367
 
13368
13368
 
13369
13369
  // [Tags "SapInternal", "Base", "Dimension", "Protected"]
@@ -14301,7 +14301,7 @@ fill: @sapBaseColor !important;
14301
14301
 
14302
14302
  // [Tags "!Protected"]
14303
14303
  // [Protected "!true"]
14304
- @sapShell_SubBrand_TextColor: contrast(@sapShellColor, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
14304
+ @sapShell_SubBrand_TextColor: contrast(@sapShellColor, @sapTextColor,@sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
14305
14305
  @sapShell_Category_1_Background: @sapHC_StandardBackground;
14306
14306
 
14307
14307
  // [Tags "!Protected"]
@@ -202,6 +202,10 @@
202
202
  @sapUiContentMarginSmall: @sapContent_Margin_Small;
203
203
  @sapUiContentMarginMedium: @sapContent_Margin_Medium;
204
204
  @sapUiContentMarginLarge: @sapContent_Margin_Large;
205
+ @sapUiContentMarginS: @sapContent_Margin_S;
206
+ @sapUiContentMarginM: @sapContent_Margin_M;
207
+ @sapUiContentMarginL: @sapContent_Margin_L;
208
+ @sapUiContentMarginXL: @sapContent_Margin_XL;
205
209
  @sapUiContentGap: @sapContent_Gap;
206
210
  @sapUiContentPaddingS: @sapContent_Padding_S;
207
211
  @sapUiContentPaddingM: @sapContent_Padding_M;
@@ -1,11 +1,11 @@
1
1
  // /**
2
2
  // * Copyright (c) 2012-2025 SAP SE or an SAP affiliate company. All rights reserved.
3
- // * Theming Engine 16.0.7
4
- // * data:{"sModified":"2025-06-12T08:20:09Z"}
3
+ // * Theming Engine 16.0.2
4
+ // * data:{"sModified":"2025-05-14T05:17:18Z"}
5
5
  // */
6
6
 
7
7
 
8
- /******************* FILE /Base/baseLib/baseTheme/skeleton.less (Version 11.31.0) *******************/
8
+ /******************* FILE /Base/baseLib/baseTheme/skeleton.less (Version 11.30.0) *******************/
9
9
 
10
10
  /*!SAP_POSTPROCESS_REDUCE_START*/
11
11
 
@@ -4,25 +4,13 @@
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
7
- 'sap/base/config',
8
7
  'sap/base/future',
9
8
  'sap/base/Log'
10
- ], function (BaseConfig, future, Log) {
9
+ ], function (future, Log) {
11
10
  "use strict";
12
11
 
13
12
  var mLibThemeMetadata = {};
14
13
 
15
- /**
16
- * [COMPATIBILITY] in case deprecated (and removed) themes are still needed, the fallback might be deactivated
17
- * [ RESTRICTED ] This is not a public offering and must not be used by applications!
18
- * @ui5-transform-hint replace-local false
19
- */
20
- const bThemeFallbackDeactivated = BaseConfig.get({
21
- name: "sapUiXxDeactivateThemeFallback",
22
- type: "boolean",
23
- value: false,
24
- external: false // must not be usable via URL parameter!
25
- });
26
14
 
27
15
  // Theme defaulting
28
16
  const DEFAULT_THEME = "sap_horizon";
@@ -218,11 +206,6 @@ sap.ui.define([
218
206
  * @returns {string} the validated and transformed theme name
219
207
  */
220
208
  ThemeHelper.validateAndFallbackTheme = function(sTheme, sThemeRoot) {
221
- // refer to comment at the top of this module
222
- if (bThemeFallbackDeactivated) {
223
- return sTheme;
224
- }
225
-
226
209
  // check cache for already determined fallback
227
210
  // only do this for themes from the default location (potential SAP standard themes)
228
211
  if (sThemeRoot == null && mThemeFallbacks[sTheme]) {
@@ -19,7 +19,7 @@ sap.ui.define(['sap/ui/core/Element', 'sap/ui/core/library'],
19
19
  * @class
20
20
  * Represents a DOM attribute of a DOM element.
21
21
  * @extends sap.ui.core.Element
22
- * @version 1.136.4
22
+ * @version 1.139.0
23
23
  *
24
24
  * @public
25
25
  * @since 1.15
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @class
28
28
  * Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
29
29
  * @extends sap.ui.core.Control
30
- * @version 1.136.4
30
+ * @version 1.139.0
31
31
  *
32
32
  * @public
33
33
  * @since 1.15
@@ -9,7 +9,7 @@ sap.ui.define([
9
9
  './TemplateControl',
10
10
  "sap/ui/core/RenderManager",
11
11
  'sap/ui/thirdparty/handlebars',
12
- 'sap/ui/base/ManagedObject',
12
+ 'sap/ui/base/BindingInfo',
13
13
  'sap/base/util/ObjectPath',
14
14
  "sap/base/security/encodeXML",
15
15
  "sap/base/util/isEmptyObject",
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  TemplateControl,
22
22
  RenderManager,
23
23
  Handlebars,
24
- ManagedObject,
24
+ BindingInfo,
25
25
  ObjectPath,
26
26
  encodeXML,
27
27
  isEmptyObject
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * @extends sap.ui.core.tmpl.Template
50
50
  * @abstract
51
51
  * @author SAP SE
52
- * @version 1.136.4
52
+ * @version 1.139.0
53
53
  * @alias sap.ui.core.tmpl.HandlebarsTemplate
54
54
  * @since 1.15
55
55
  * @deprecated as of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View} instead.
@@ -399,7 +399,7 @@ sap.ui.define([
399
399
  // the aggregation is bound => so we create a binding info object
400
400
  // which is used in the createControl function of the TemplateControl
401
401
  // to create a proper binding
402
- var oBindingInfo = ManagedObject.bindingParser(mSettings[sAggregationName], oView && oView.getController());
402
+ var oBindingInfo = BindingInfo.parse(mSettings[sAggregationName], oView && oView.getController());
403
403
  oBindingInfo.template = oChildControl;
404
404
  oNewControl.bindAggregation(sAggregationName, oBindingInfo);
405
405
  } else {
@@ -54,7 +54,7 @@ function(
54
54
  * @extends sap.ui.base.ManagedObject
55
55
  * @abstract
56
56
  * @author SAP SE
57
- * @version 1.136.4
57
+ * @version 1.139.0
58
58
  * @alias sap.ui.core.tmpl.Template
59
59
  * @since 1.15
60
60
  * @deprecated since 1.56, use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View} instead.
@@ -45,7 +45,7 @@ sap.ui.define([
45
45
  * @class
46
46
  * This is the base class for all template controls. Template controls are declared based on templates.
47
47
  * @extends sap.ui.core.Control
48
- * @version 1.136.4
48
+ * @version 1.139.0
49
49
  *
50
50
  * @public
51
51
  * @since 1.15
@@ -12,7 +12,7 @@ sap.ui.define([], function() {
12
12
  *
13
13
  * @class Utility class for asyncHints
14
14
  * @author SAP SE
15
- * @version 1.136.4
15
+ * @version 1.139.0
16
16
  *
17
17
  * @private
18
18
  * @ui5-restricted sap.ushell
@@ -141,7 +141,7 @@ sap.ui.define([
141
141
  * @extends sap.ui.core.Control
142
142
  *
143
143
  * @author SAP SE
144
- * @version 1.136.4
144
+ * @version 1.139.0
145
145
  * @since 1.22.0
146
146
  *
147
147
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/core/Element'],
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.136.4
23
+ * @version 1.139.0
24
24
  * @since 1.22.0
25
25
  *
26
26
  * @public
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.base.ManagedObject
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.136.4
26
+ * @version 1.139.0
27
27
  * @since 1.22.0
28
28
  *
29
29
  * @public
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.base.ManagedObject
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.136.4
26
+ * @version 1.139.0
27
27
  * @since 1.22.0
28
28
  *
29
29
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/base/ManagedObject'],
20
20
  * @extends sap.ui.base.ManagedObject
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.136.4
23
+ * @version 1.139.0
24
24
  * @since 1.22.0
25
25
  *
26
26
  * @public
@@ -38,7 +38,7 @@ sap.ui.define(['./ExportType'],
38
38
  * @extends sap.ui.core.util.ExportType
39
39
  *
40
40
  * @author SAP SE
41
- * @version 1.136.4
41
+ * @version 1.139.0
42
42
  * @since 1.22.0
43
43
  *
44
44
  * @public
@@ -13,7 +13,7 @@ sap.ui.define(["sap/ui/thirdparty/jquery"],
13
13
  * Utility class to handle files.
14
14
  *
15
15
  * @author SAP SE
16
- * @version 1.136.4
16
+ * @version 1.139.0
17
17
  * @namespace
18
18
  *
19
19
  * @public
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  *
22
22
  * @extends sap.ui.base.Object
23
23
  * @author SAP SE
24
- * @version 1.136.4
24
+ * @version 1.139.0
25
25
  * @private
26
26
  * @alias sap.ui.core.util.LibraryInfo
27
27
  */
@@ -46,7 +46,7 @@ sap.ui
46
46
  * @class Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
47
47
  * @extends sap.ui.base.ManagedObject
48
48
  * @author SAP SE
49
- * @version 1.136.4
49
+ * @version 1.139.0
50
50
  * @public
51
51
  * @alias sap.ui.core.util.MockServer
52
52
  */
@@ -13,7 +13,7 @@ sap.ui.define([ "sap/ui/core/Lib", "sap/ui/model/ParseException", "sap/ui/model/
13
13
  *
14
14
  * @class Parses and validates data on the <code>paste</code> event of an SAPUI5 table.
15
15
  * @author SAP SE
16
- * @version 1.136.4
16
+ * @version 1.139.0
17
17
  * @private
18
18
  * @ui5-restricted sap.ui.table.Table, sap.m.Table, sap.m.plugins.PasteProvider, sap.m.MultiInput, sap.ui.mdc.FieldBase, sap.ui.comp.smarttable.SmartTable
19
19
  * @alias sap.ui.core.util.PasteHelper
@@ -609,6 +609,7 @@ sap.ui.define([
609
609
  mFragmentCache = {},
610
610
  iNestingLevel = 0,
611
611
  oScope = {}, // for BindingParser.complexParser()
612
+ /** @deprecated since 1.120.0 */
612
613
  fnSupportInfo = oViewInfo._supportInfo,
613
614
  bWarning = Log.isLoggable(Log.Level.WARNING, sXMLPreprocessor);
614
615
 
@@ -1778,6 +1779,7 @@ sap.ui.define([
1778
1779
  * getting the binding's value fails.
1779
1780
  */
1780
1781
  function visitAttribute(oElement, oAttribute, oWithControl) {
1782
+ /** @deprecated since 1.120.0 */
1781
1783
  if (fnSupportInfo) {
1782
1784
  fnSupportInfo({
1783
1785
  context : undefined /*context from node clone*/,
@@ -1788,6 +1790,7 @@ sap.ui.define([
1788
1790
  });
1789
1791
  }
1790
1792
  return resolveAttributeBinding(oElement, oAttribute, oWithControl)
1793
+ /** @deprecated since 1.120.0 */
1791
1794
  .then(function () {
1792
1795
  if (fnSupportInfo) {
1793
1796
  fnSupportInfo({
@@ -1868,7 +1871,9 @@ sap.ui.define([
1868
1871
  function visitAttributesAndChildren() {
1869
1872
  return visitAttributes(oNode, oWithControl).then(function () {
1870
1873
  return visitChildNodes(oNode, oWithControl);
1871
- }).then(function () {
1874
+ })
1875
+ /** @deprecated since 1.120.0 */
1876
+ .then(function () {
1872
1877
  if (fnSupportInfo) {
1873
1878
  fnSupportInfo({context : oNode,
1874
1879
  env : {caller : "visitNode", after : {name : oNode.tagName}}});
@@ -1880,6 +1885,7 @@ sap.ui.define([
1880
1885
  if (oNode.nodeType !== 1 /* Node.ELEMENT_NODE */) {
1881
1886
  return oSyncPromiseResolved;
1882
1887
  }
1888
+ /** @deprecated since 1.120.0 */
1883
1889
  if (fnSupportInfo) {
1884
1890
  fnSupportInfo({context : oNode,
1885
1891
  env : {caller : "visitNode", before : {name : oNode.tagName}}});
@@ -1974,6 +1980,7 @@ sap.ui.define([
1974
1980
  }
1975
1981
  }
1976
1982
  }
1983
+ /** @deprecated since 1.120.0 */
1977
1984
  if (fnSupportInfo) {
1978
1985
  fnSupportInfo({
1979
1986
  context : oRootElement,
@@ -9,16 +9,16 @@
9
9
  sap.ui.define([
10
10
  "sap/base/util/isPlainObject",
11
11
  "sap/base/util/merge",
12
+ "sap/ui/base/BindingInfo",
12
13
  "sap/ui/base/DataType",
13
- "sap/ui/base/ManagedObject",
14
14
  "sap/ui/core/util/reflection/BaseTreeModifier",
15
15
  "sap/ui/core/Fragment",
16
16
  "sap/ui/util/XMLHelper"
17
17
  ], function(
18
18
  isPlainObject,
19
19
  merge,
20
+ BindingInfo,
20
21
  DataType,
21
- ManagedObject,
22
22
  BaseTreeModifier,
23
23
  Fragment,
24
24
  XMLHelper
@@ -145,7 +145,7 @@ sap.ui.define([
145
145
  vPropertyValue = oPropertyInfo.getDefaultValue() || oType.getDefaultValue();
146
146
  } else {
147
147
  // unescape binding like XMLTemplateProcessor
148
- const vUnescaped = ManagedObject.bindingParser(vPropertyValue, undefined, true);
148
+ const vUnescaped = BindingInfo.parse(vPropertyValue, undefined, true);
149
149
  // if it is a binding, return undefined as it has to be handled differently
150
150
  if (isPlainObject(vUnescaped)) {
151
151
  if (vUnescaped.path || vUnescaped.parts) {
@@ -185,7 +185,7 @@ sap.ui.define([
185
185
  getPropertyBinding: function(oControl, sPropertyName) {
186
186
  const vPropertyValue = oControl.getAttribute(sPropertyName);
187
187
  if (vPropertyValue) {
188
- const vUnescaped = ManagedObject.bindingParser(vPropertyValue, undefined, true);
188
+ const vUnescaped = BindingInfo.parse(vPropertyValue, undefined, true);
189
189
  if (vUnescaped && (vUnescaped.path || vUnescaped.parts)) {
190
190
  return vUnescaped;
191
191
  }
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/base/EventProvider', './Serializer', './delegate/HTML', '
20
20
  * @class HTMLViewSerializer class.
21
21
  * @extends sap.ui.base.EventProvider
22
22
  * @author SAP SE
23
- * @version 1.136.4
23
+ * @version 1.139.0
24
24
  * @alias sap.ui.core.util.serializer.HTMLViewSerializer
25
25
  * @private
26
26
  * @ui5-restricted sap.watt, com.sap.webide
@@ -21,7 +21,7 @@ sap.ui.define(['sap/ui/base/EventProvider', "sap/base/assert"],
21
21
  * @class Serializer class.
22
22
  * @extends sap.ui.base.EventProvider
23
23
  * @author SAP SE
24
- * @version 1.136.4
24
+ * @version 1.139.0
25
25
  * @alias sap.ui.core.util.serializer.Serializer
26
26
  * @private
27
27
  * @ui5-restricted sap.watt, com.sap.webide
@@ -21,7 +21,7 @@ sap.ui.define(['sap/ui/base/EventProvider', './HTMLViewSerializer', './XMLViewSe
21
21
  * @class ViewSerializer class.
22
22
  * @extends sap.ui.base.EventProvider
23
23
  * @author SAP SE
24
- * @version 1.136.4
24
+ * @version 1.139.0
25
25
  * @alias sap.ui.core.util.serializer.ViewSerializer
26
26
  * @private
27
27
  * @ui5-restricted sap.watt, com.sap.webide
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/base/EventProvider', './Serializer', './delegate/XML', 's
20
20
  * @class XMLViewSerializer class.
21
21
  * @extends sap.ui.base.EventProvider
22
22
  * @author SAP SE
23
- * @version 1.136.4
23
+ * @version 1.139.0
24
24
  * @alias sap.ui.core.util.serializer.XMLViewSerializer
25
25
  * @private
26
26
  * @ui5-restricted sap.watt, com.sap.webide