@openui5/sap.ui.core 1.102.2 → 1.104.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 (374) hide show
  1. package/.reuse/dep5 +17 -0
  2. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +5 -0
  3. package/THIRDPARTY.txt +35 -2
  4. package/package.json +1 -1
  5. package/src/jquery.sap.global.js +2 -2
  6. package/src/jquery.sap.properties.js +1 -1
  7. package/src/jquery.sap.resources.js +1 -1
  8. package/src/jquery.sap.script.js +1 -1
  9. package/src/jquery.sap.storage.js +3 -3
  10. package/src/sap/base/i18n/ResourceBundle.js +2 -2
  11. package/src/sap/base/util/LoaderExtensions.js +69 -61
  12. package/src/sap/base/util/fetch.js +230 -0
  13. package/src/sap/base/util/mixedFetch.js +69 -0
  14. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  15. package/src/sap/base/util/restricted/_castArray.js +1 -1
  16. package/src/sap/base/util/restricted/_compact.js +1 -1
  17. package/src/sap/base/util/restricted/_curry.js +1 -1
  18. package/src/sap/base/util/restricted/_debounce.js +1 -1
  19. package/src/sap/base/util/restricted/_difference.js +1 -1
  20. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  21. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  22. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  23. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  24. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  25. package/src/sap/base/util/restricted/_flatten.js +1 -1
  26. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  27. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  28. package/src/sap/base/util/restricted/_intersection.js +1 -1
  29. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  30. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  31. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  32. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  33. package/src/sap/base/util/restricted/_isNil.js +1 -1
  34. package/src/sap/base/util/restricted/_max.js +1 -1
  35. package/src/sap/base/util/restricted/_merge.js +1 -1
  36. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  37. package/src/sap/base/util/restricted/_min.js +1 -1
  38. package/src/sap/base/util/restricted/_omit.js +1 -1
  39. package/src/sap/base/util/restricted/_pick.js +1 -1
  40. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  41. package/src/sap/base/util/restricted/_throttle.js +1 -1
  42. package/src/sap/base/util/restricted/_toArray.js +1 -1
  43. package/src/sap/base/util/restricted/_union.js +1 -1
  44. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  45. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  46. package/src/sap/base/util/restricted/_uniq.js +1 -1
  47. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  48. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  49. package/src/sap/base/util/restricted/_without.js +1 -1
  50. package/src/sap/base/util/restricted/_xor.js +1 -1
  51. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  52. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  53. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  54. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  55. package/src/sap/base/util/syncFetch.js +73 -0
  56. package/src/sap/ui/Device.js +9 -3
  57. package/src/sap/ui/Global.js +4 -4
  58. package/src/sap/ui/VersionInfo.js +12 -6
  59. package/src/sap/ui/base/Event.js +1 -1
  60. package/src/sap/ui/base/EventProvider.js +2 -2
  61. package/src/sap/ui/base/ExpressionParser.js +2 -2
  62. package/src/sap/ui/base/Interface.js +1 -1
  63. package/src/sap/ui/base/ManagedObject.js +10 -8
  64. package/src/sap/ui/base/ManagedObjectMetadata.js +21 -8
  65. package/src/sap/ui/base/Metadata.js +1 -1
  66. package/src/sap/ui/base/Object.js +1 -1
  67. package/src/sap/ui/base/ObjectPool.js +1 -1
  68. package/src/sap/ui/base/SyncPromise.js +2 -0
  69. package/src/sap/ui/core/.library +17 -90
  70. package/src/sap/ui/core/AppCacheBuster.js +69 -55
  71. package/src/sap/ui/core/BusyIndicator.js +1 -1
  72. package/src/sap/ui/core/Component.js +51 -24
  73. package/src/sap/ui/core/ComponentContainer.js +1 -1
  74. package/src/sap/ui/core/ComponentMetadata.js +2 -2
  75. package/src/sap/ui/core/ComponentSupport.js +1 -1
  76. package/src/sap/ui/core/Configuration.js +45 -22
  77. package/src/sap/ui/core/Control.js +2 -2
  78. package/src/sap/ui/core/Core.js +56 -68
  79. package/src/sap/ui/core/CustomData.js +1 -1
  80. package/src/sap/ui/core/DeclarativeSupport.js +10 -9
  81. package/src/sap/ui/core/Element.js +20 -11
  82. package/src/sap/ui/core/ElementMetadata.js +1 -1
  83. package/src/sap/ui/core/EnabledPropagator.js +4 -2
  84. package/src/sap/ui/core/EventBus.js +1 -1
  85. package/src/sap/ui/core/FocusHandler.js +58 -35
  86. package/src/sap/ui/core/Fragment.js +17 -14
  87. package/src/sap/ui/core/HTML.js +2 -2
  88. package/src/sap/ui/core/History.js +1 -1
  89. package/src/sap/ui/core/Icon.js +6 -6
  90. package/src/sap/ui/core/IconPool.js +1 -3
  91. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  92. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  93. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  94. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  95. package/src/sap/ui/core/InvisibleText.js +4 -1
  96. package/src/sap/ui/core/Item.js +1 -1
  97. package/src/sap/ui/core/LabelEnablement.js +1 -1
  98. package/src/sap/ui/core/LayoutData.js +1 -1
  99. package/src/sap/ui/core/ListItem.js +1 -1
  100. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  101. package/src/sap/ui/core/Locale.js +28 -4
  102. package/src/sap/ui/core/LocaleData.js +3 -45
  103. package/src/sap/ui/core/Manifest.js +1 -1
  104. package/src/sap/ui/core/Message.js +1 -1
  105. package/src/sap/ui/core/Popup.js +4 -2
  106. package/src/sap/ui/core/RenderManager.js +11 -21
  107. package/src/sap/ui/core/Renderer.js +1 -1
  108. package/src/sap/ui/core/ResizeHandler.js +22 -43
  109. package/src/sap/ui/core/ScrollBar.js +1 -1
  110. package/src/sap/ui/core/SeparatorItem.js +1 -1
  111. package/src/sap/ui/core/ThemeCheck.js +7 -7
  112. package/src/sap/ui/core/Title.js +1 -1
  113. package/src/sap/ui/core/TooltipBase.js +1 -1
  114. package/src/sap/ui/core/UIArea.js +8 -5
  115. package/src/sap/ui/core/UIComponent.js +2 -2
  116. package/src/sap/ui/core/UIComponentMetadata.js +2 -2
  117. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  118. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  119. package/src/sap/ui/core/XMLComposite.js +1 -1
  120. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  121. package/src/sap/ui/core/XMLTemplateProcessor.js +3 -5
  122. package/src/sap/ui/core/_IconRegistry.js +66 -55
  123. package/src/sap/ui/core/cache/CacheManager.js +18 -14
  124. package/src/sap/ui/core/cache/CacheManagerNOP.js +5 -2
  125. package/src/sap/ui/core/cache/LRUPersistentCache.js +17 -9
  126. package/src/sap/ui/core/cldr/en.json +0 -1
  127. package/src/sap/ui/core/date/Buddhist.js +15 -13
  128. package/src/sap/ui/core/date/Japanese.js +0 -6
  129. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  130. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  131. package/src/sap/ui/core/dnd/DragAndDrop.js +1 -1
  132. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  133. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  134. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  135. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  136. package/src/sap/ui/core/format/DateFormat.js +2 -2
  137. package/src/sap/ui/core/format/NumberFormat.js +3 -3
  138. package/src/sap/ui/core/format/TimezoneUtil.js +2 -2
  139. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  140. package/src/sap/ui/core/library.js +3 -3
  141. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  142. package/src/sap/ui/core/message/Message.js +1 -1
  143. package/src/sap/ui/core/message/MessageManager.js +1 -1
  144. package/src/sap/ui/core/message/MessageParser.js +2 -2
  145. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  146. package/src/sap/ui/core/messagebundle_ar.properties +54 -53
  147. package/src/sap/ui/core/messagebundle_bg.properties +54 -53
  148. package/src/sap/ui/core/messagebundle_ca.properties +28 -27
  149. package/src/sap/ui/core/messagebundle_cs.properties +37 -36
  150. package/src/sap/ui/core/messagebundle_cy.properties +56 -55
  151. package/src/sap/ui/core/messagebundle_da.properties +53 -52
  152. package/src/sap/ui/core/messagebundle_de.properties +54 -53
  153. package/src/sap/ui/core/messagebundle_el.properties +47 -46
  154. package/src/sap/ui/core/messagebundle_en_US_sappsd.properties +1 -0
  155. package/src/sap/ui/core/messagebundle_en_US_saprigi.properties +1 -0
  156. package/src/sap/ui/core/messagebundle_en_US_saptrc.properties +1 -0
  157. package/src/sap/ui/core/messagebundle_es.properties +42 -41
  158. package/src/sap/ui/core/messagebundle_es_MX.properties +54 -53
  159. package/src/sap/ui/core/messagebundle_et.properties +51 -50
  160. package/src/sap/ui/core/messagebundle_fi.properties +48 -47
  161. package/src/sap/ui/core/messagebundle_fr.properties +36 -35
  162. package/src/sap/ui/core/messagebundle_fr_CA.properties +21 -20
  163. package/src/sap/ui/core/messagebundle_hi.properties +41 -40
  164. package/src/sap/ui/core/messagebundle_hr.properties +55 -54
  165. package/src/sap/ui/core/messagebundle_hu.properties +55 -54
  166. package/src/sap/ui/core/messagebundle_id.properties +55 -54
  167. package/src/sap/ui/core/messagebundle_it.properties +58 -57
  168. package/src/sap/ui/core/messagebundle_iw.properties +55 -54
  169. package/src/sap/ui/core/messagebundle_ja.properties +48 -47
  170. package/src/sap/ui/core/messagebundle_kk.properties +41 -40
  171. package/src/sap/ui/core/messagebundle_ko.properties +17 -16
  172. package/src/sap/ui/core/messagebundle_lt.properties +55 -54
  173. package/src/sap/ui/core/messagebundle_lv.properties +55 -54
  174. package/src/sap/ui/core/messagebundle_ms.properties +52 -51
  175. package/src/sap/ui/core/messagebundle_nl.properties +53 -52
  176. package/src/sap/ui/core/messagebundle_no.properties +53 -52
  177. package/src/sap/ui/core/messagebundle_pl.properties +52 -51
  178. package/src/sap/ui/core/messagebundle_pt.properties +54 -53
  179. package/src/sap/ui/core/messagebundle_pt_PT.properties +55 -54
  180. package/src/sap/ui/core/messagebundle_ro.properties +56 -55
  181. package/src/sap/ui/core/messagebundle_ru.properties +52 -51
  182. package/src/sap/ui/core/messagebundle_sh.properties +56 -55
  183. package/src/sap/ui/core/messagebundle_sk.properties +54 -53
  184. package/src/sap/ui/core/messagebundle_sl.properties +56 -55
  185. package/src/sap/ui/core/messagebundle_sv.properties +52 -51
  186. package/src/sap/ui/core/messagebundle_th.properties +25 -24
  187. package/src/sap/ui/core/messagebundle_tr.properties +56 -55
  188. package/src/sap/ui/core/messagebundle_uk.properties +55 -54
  189. package/src/sap/ui/core/messagebundle_vi.properties +55 -54
  190. package/src/sap/ui/core/messagebundle_zh_CN.properties +55 -54
  191. package/src/sap/ui/core/messagebundle_zh_TW.properties +55 -54
  192. package/src/sap/ui/core/mvc/ControllerExtension.js +1 -1
  193. package/src/sap/ui/core/mvc/HTMLView.js +12 -12
  194. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  195. package/src/sap/ui/core/mvc/JSView.js +1 -1
  196. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  197. package/src/sap/ui/core/mvc/View.js +1 -1
  198. package/src/sap/ui/core/mvc/XMLView.js +1 -2
  199. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  200. package/src/sap/ui/core/plugin/LessSupport.js +16 -14
  201. package/src/sap/ui/core/plugin/TemplatingSupport.js +2 -1
  202. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  203. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  204. package/src/sap/ui/core/routing/History.js +5 -3
  205. package/src/sap/ui/core/routing/Router.js +4 -2
  206. package/src/sap/ui/core/routing/Targets.js +2 -2
  207. package/src/sap/ui/core/routing/async/TargetCache.js +4 -0
  208. package/src/sap/ui/core/rules/Config.support.js +1 -1
  209. package/src/sap/ui/core/rules/View.support.js +11 -4
  210. package/src/sap/ui/core/search/OpenSearchProvider.js +24 -11
  211. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  212. package/src/sap/ui/core/service/Service.js +1 -1
  213. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  214. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  215. package/src/sap/ui/core/support/Plugin.js +1 -1
  216. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -1
  217. package/src/sap/ui/core/support/Support.js +2 -2
  218. package/src/sap/ui/core/support/ToolsAPI.js +4 -1
  219. package/src/sap/ui/core/support/plugins/ControlTree.js +3 -1
  220. package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
  221. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  222. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  223. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  224. package/src/sap/ui/core/support/plugins/TechInfo.js +46 -33
  225. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  226. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  227. package/src/sap/ui/core/themes/base/LocalBusyIndicator.less +1 -1
  228. package/src/sap/ui/core/themes/base/base.less +26 -26
  229. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  230. package/src/sap/ui/core/theming/Parameters.js +46 -40
  231. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  232. package/src/sap/ui/core/tmpl/DOMElement.js +2 -2
  233. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  234. package/src/sap/ui/core/tmpl/Template.js +5 -5
  235. package/src/sap/ui/core/tmpl/TemplateControl.js +2 -2
  236. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  237. package/src/sap/ui/core/util/Export.js +1 -1
  238. package/src/sap/ui/core/util/ExportCell.js +1 -1
  239. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  240. package/src/sap/ui/core/util/ExportRow.js +1 -1
  241. package/src/sap/ui/core/util/ExportType.js +1 -1
  242. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  243. package/src/sap/ui/core/util/File.js +1 -1
  244. package/src/sap/ui/core/util/LibraryInfo.js +61 -42
  245. package/src/sap/ui/core/util/MockServer.js +1 -1
  246. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  247. package/src/sap/ui/core/util/ResponsivePaddingsEnablement.js +2 -2
  248. package/src/sap/ui/core/util/XMLPreprocessor.js +2 -2
  249. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  250. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  251. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  252. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  253. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  254. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  255. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  256. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  257. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  258. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  259. package/src/sap/ui/debug/ControlTree.js +1 -1
  260. package/src/sap/ui/debug/DebugEnv.js +1 -1
  261. package/src/sap/ui/debug/PropertyList.js +19 -9
  262. package/src/sap/ui/dom/_ready.js +34 -0
  263. package/src/sap/ui/dom/containsOrEquals.js +2 -2
  264. package/src/sap/ui/dom/getFirstEditableInput.js +2 -2
  265. package/src/sap/ui/dom/jquery/Focusable.js +1 -1
  266. package/src/sap/ui/dom/jquery/control.js +1 -1
  267. package/src/sap/ui/events/jquery/EventExtension.js +1 -1
  268. package/src/sap/ui/events/jquery/EventSimulation.js +1 -1
  269. package/src/sap/ui/model/ClientModel.js +1 -1
  270. package/src/sap/ui/model/CompositeDataState.js +1 -1
  271. package/src/sap/ui/model/CompositeType.js +1 -1
  272. package/src/sap/ui/model/DataState.js +2 -2
  273. package/src/sap/ui/model/MetaModel.js +1 -1
  274. package/src/sap/ui/model/Model.js +1 -1
  275. package/src/sap/ui/model/SelectionModel.js +1 -1
  276. package/src/sap/ui/model/SimpleType.js +1 -1
  277. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  278. package/src/sap/ui/model/TreeBindingAdapter.js +134 -0
  279. package/src/sap/ui/model/Type.js +1 -1
  280. package/src/sap/ui/model/analytics/odata4analytics.js +2 -2
  281. package/src/sap/ui/model/json/JSONModel.js +1 -1
  282. package/src/sap/ui/model/message/MessageModel.js +1 -1
  283. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  284. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  285. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  286. package/src/sap/ui/model/odata/ODataMetadata.js +6 -3
  287. package/src/sap/ui/model/odata/ODataModel.js +1 -1
  288. package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +6 -0
  289. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +407 -91
  290. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  291. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  292. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  293. package/src/sap/ui/model/odata/type/Date.js +1 -1
  294. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  295. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  296. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  297. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  298. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  299. package/src/sap/ui/model/odata/type/Double.js +1 -1
  300. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  301. package/src/sap/ui/model/odata/type/Int.js +1 -1
  302. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  303. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  304. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  305. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  306. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  307. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  308. package/src/sap/ui/model/odata/type/Single.js +1 -1
  309. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  310. package/src/sap/ui/model/odata/type/String.js +1 -1
  311. package/src/sap/ui/model/odata/type/Time.js +1 -1
  312. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  313. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  314. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  315. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  316. package/src/sap/ui/model/odata/v2/ODataContextBinding.js +4 -1
  317. package/src/sap/ui/model/odata/v2/ODataModel.js +112 -104
  318. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +50 -5
  319. package/src/sap/ui/model/odata/v4/Context.js +9 -10
  320. package/src/sap/ui/model/odata/v4/ODataBinding.js +16 -8
  321. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +24 -1
  322. package/src/sap/ui/model/odata/v4/ODataListBinding.js +30 -2
  323. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +5 -5
  324. package/src/sap/ui/model/odata/v4/ODataModel.js +66 -3
  325. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +30 -1
  326. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +17 -6
  327. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +6 -6
  328. package/src/sap/ui/model/odata/v4/lib/_Cache.js +203 -30
  329. package/src/sap/ui/model/odata/v4/lib/_Helper.js +52 -3
  330. package/src/sap/ui/model/odata/v4/lib/_MinMaxHelper.js +1 -1
  331. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +3 -7
  332. package/src/sap/ui/model/odata/v4/lib/_V2MetadataConverter.js +1 -1
  333. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  334. package/src/sap/ui/model/type/Boolean.js +1 -1
  335. package/src/sap/ui/model/type/Currency.js +1 -1
  336. package/src/sap/ui/model/type/Date.js +1 -1
  337. package/src/sap/ui/model/type/DateInterval.js +1 -1
  338. package/src/sap/ui/model/type/DateTime.js +1 -1
  339. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  340. package/src/sap/ui/model/type/FileSize.js +1 -1
  341. package/src/sap/ui/model/type/Float.js +1 -1
  342. package/src/sap/ui/model/type/Integer.js +1 -1
  343. package/src/sap/ui/model/type/String.js +1 -1
  344. package/src/sap/ui/model/type/Time.js +1 -1
  345. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  346. package/src/sap/ui/model/type/Unit.js +1 -1
  347. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  348. package/src/sap/ui/qunit/sinon-qunit-bridge.js +1 -1
  349. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  350. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  351. package/src/sap/ui/security/FrameOptions.js +4 -2
  352. package/src/sap/ui/test/Opa5.js +1 -1
  353. package/src/sap/ui/test/OpaBuilder.js +1 -1
  354. package/src/sap/ui/test/OpaPlugin.js +3 -3
  355. package/src/sap/ui/test/TestUtils.js +35 -2
  356. package/src/sap/ui/test/_ControlFinder.js +5 -4
  357. package/src/sap/ui/test/actions/Drag.js +2 -2
  358. package/src/sap/ui/test/actions/Drop.js +2 -2
  359. package/src/sap/ui/test/actions/EnterText.js +8 -8
  360. package/src/sap/ui/test/actions/Press.js +5 -5
  361. package/src/sap/ui/test/actions/Scroll.js +1 -1
  362. package/src/sap/ui/test/generic/TestBase.js +1 -1
  363. package/src/sap/ui/test/matchers/Matcher.js +9 -11
  364. package/src/sap/ui/test/opaQunit.js +4 -3
  365. package/src/sap/ui/thirdparty/IPv6.js +1 -1
  366. package/src/sap/ui/thirdparty/SecondLevelDomains.js +1 -1
  367. package/src/sap/ui/thirdparty/URI.js +8 -2
  368. package/src/sap/ui/thirdparty/URITemplate.js +1 -1
  369. package/src/sap/ui/util/Mobile.js +59 -33
  370. package/src/sap/ui/util/Storage.js +2 -2
  371. package/src/sap/ui/util/XMLHelper.js +1 -1
  372. package/src/sap/ui/util/openWindow.js +1 -1
  373. package/src/ui5loader.js +3 -3
  374. package/ui5.yaml +71 -0
@@ -18,7 +18,7 @@ sap.ui.define([
18
18
  /**
19
19
  * @classdesc
20
20
  * This object provides persistent caching functionality.
21
- * The component is both private and experimental. It is currently supported to a limited set of environments:
21
+ * The component is both private and restricted to framework core usage. It is currently supported to a limited set of environments:
22
22
  * <ul>
23
23
  * <li>Google Chrome(version >=49) for desktop</li>
24
24
  * <li>Internet Explorer(version >=11) for desktop.</li>
@@ -55,7 +55,7 @@ sap.ui.define([
55
55
  * </ul>
56
56
  * @see sap.ui.core.Configuration
57
57
  * @private
58
- * @experimental
58
+ * @ui5-restricted sap.ui.core
59
59
  * @since 1.40.0
60
60
  * @namespace
61
61
  * @alias sap.ui.core.cache.CacheManager
@@ -129,10 +129,10 @@ sap.ui.define([
129
129
  Log.debug("Cache Manager: Setting value of type[" + typeof value + "] with key [" + key + "]");
130
130
 
131
131
  pSet = this._callInstanceMethod("set", arguments).then(function callInstanceHandler() {
132
- Log.debug("Cache Manager: Setting key [" + key + "] completed successfully");
132
+ this.logResolved("set");
133
133
  oMsr.endAsync();
134
134
  //nothing to return, just logging.
135
- }, function (e) {
135
+ }.bind(this), function (e) {
136
136
  Log.error("Cache Manager: Setting key [" + key + "] failed. Error:" + e);
137
137
  oMsr.endAsync();
138
138
  throw e;
@@ -159,10 +159,10 @@ sap.ui.define([
159
159
 
160
160
  Log.debug("Cache Manager: Getting key [" + key + "]");
161
161
  pGet = this._callInstanceMethod("get", arguments).then(function callInstanceHandler(v) {
162
- Log.debug("Cache Manager: Getting key [" + key + "] done");
162
+ this.logResolved("get");
163
163
  oMsr.endAsync();
164
164
  return v;
165
- }, function (e) {
165
+ }.bind(this), function (e) {
166
166
  Log.debug("Cache Manager: Getting key [" + key + "] failed. Error: " + e);
167
167
  oMsr.endAsync();
168
168
  throw e;
@@ -184,10 +184,10 @@ sap.ui.define([
184
184
  Log.debug("Cache Manager: has key [" + key + "] called");
185
185
 
186
186
  pHas = this._callInstanceMethod("has", arguments).then(function callInstanceHandler(result) {
187
+ this.logResolved("has");
187
188
  oMsr.endAsync();
188
- Log.debug("Cache Manager: has key [" + key + "] returned " + result);
189
189
  return result;
190
- });
190
+ }.bind(this));
191
191
  oMsr.endSync();
192
192
  return pHas;
193
193
  },
@@ -204,10 +204,10 @@ sap.ui.define([
204
204
  Log.debug("Cache Manager: del called.");
205
205
 
206
206
  pDel = this._callInstanceMethod("del", arguments).then(function callInstanceHandler() {
207
- Log.debug("Cache Manager: del completed successfully.");
207
+ this.logResolved("del");
208
208
  oMsr.endAsync();
209
209
  //nothing to return, just logging.
210
- }, function (e) {
210
+ }.bind(this), function (e) {
211
211
  Log.debug("Cache Manager: del failed. Error: " + e);
212
212
  oMsr.endAsync();
213
213
  throw e;
@@ -234,8 +234,8 @@ sap.ui.define([
234
234
  Log.debug("Cache Manager: delWithFilters called.");
235
235
 
236
236
  pDel = this._callInstanceMethod("delWithFilters", arguments).then(function callInstanceHandler() {
237
- Log.debug("Cache Manager: delWithFilters completed successfully.");
238
- }, function (e) {
237
+ this.logResolved("delWithFilters");
238
+ }.bind(this), function (e) {
239
239
  Log.debug("Cache Manager: delWithFilters failed. Error: " + e);
240
240
  throw e;
241
241
  });
@@ -254,10 +254,10 @@ sap.ui.define([
254
254
  Log.debug("Cache Manager: Reset called.");
255
255
 
256
256
  pReset = this._callInstanceMethod("reset", arguments).then(function callInstanceHandler() {
257
- Log.debug("Cache Manager: Reset completed successfully.");
257
+ this.logResolved("reset");
258
258
  oMsr.endAsync();
259
259
  //nothing to return, just logging.
260
- }, function (e) {
260
+ }.bind(this), function (e) {
261
261
  Log.debug("Cache Manager: Reset failed. Error: " + e);
262
262
  oMsr.endAsync();
263
263
  throw e;
@@ -379,6 +379,10 @@ sap.ui.define([
379
379
  });
380
380
  }
381
381
  return this._bSupportedEnvironment;
382
+ },
383
+
384
+ logResolved: function(sFnName) {
385
+ this._instance.logResolved && this._instance.logResolved(sFnName);
382
386
  }
383
387
  };
384
388
 
@@ -4,8 +4,8 @@
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
7
- sap.ui.define([],
8
- function () {
7
+ sap.ui.define(["sap/base/Log"],
8
+ function (Log) {
9
9
  "use strict";
10
10
 
11
11
  /**
@@ -20,6 +20,9 @@ sap.ui.define([],
20
20
  */
21
21
  var CacheManagerNOP = {
22
22
  name: "CacheManagerNOP",
23
+ logResolved: function(sFnName) {
24
+ Log.debug("Cache Manager is not supported on this environment.");
25
+ },
23
26
  set: function () {
24
27
  return Promise.resolve();
25
28
  },
@@ -4,14 +4,14 @@
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
7
- sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
8
- function(Log, Measurement) {
7
+ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement", "sap/ui/Global"],
8
+ function(Log, Measurement, Global) {
9
9
  "use strict";
10
10
 
11
11
  /**
12
12
  * @classdesc
13
13
  * This object provides cache functionality with persistence in IndexedDB.
14
- * The component is an experimental and private.
14
+ * The component is private and restricted to the factory class sap.ui.core.cache.CacheManager.
15
15
  * Do not use outside UI5 framework itself.
16
16
  * This implementation works with entries corresponding to a single ui5 version.
17
17
  * If the cache is loaded with different ui5 version, all previous entries will be deleted. The latter behavior is about of a further changes (feature requests)
@@ -20,7 +20,7 @@ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
20
20
  *
21
21
  * Do not use it directly, use {@link sap.ui.core.cache.CacheManager} instead
22
22
  * @private
23
- * @experimental
23
+ * @ui5-restricted sap.ui.core.cache.CacheManager, sap.ui.core.Configuration
24
24
  * @since 1.40.0
25
25
  * @namespace
26
26
  * @alias sap.ui.core.cache.LRUPersistentCache
@@ -28,6 +28,9 @@ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
28
28
 
29
29
  var LRUPersistentCache = {
30
30
  name: "LRUPersistentCache",
31
+ logResolved: function(sFnName) {
32
+ Log.debug("Cache Manager: " + sFnName + " completed successfully.");
33
+ },
31
34
 
32
35
  defaultOptions: {
33
36
  databaseName: "ui5-cachemanager-db",
@@ -166,8 +169,12 @@ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
166
169
  Log.warning("Cache Manager ignored 'has' for key [" + key + "]");
167
170
  return Promise.resolve(false);
168
171
  }
169
- return this.get(key).then(function (value) {
170
- return typeof value !== "undefined";
172
+ return this.get(key).then(function(value) {
173
+ var result = typeof value !== "undefined";
174
+
175
+ Log.debug("Cache Manager: has key [" + key + "] returned " + result);
176
+
177
+ return result;
171
178
  });
172
179
  },
173
180
 
@@ -320,7 +327,8 @@ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
320
327
  sKey = oCursor.value.key;
321
328
 
322
329
  if (sKey.indexOf(sPrefix) === 0
323
- && (!oFilters.olderThan || self._metadata.timestamps[sKey] <= oFilters.olderThan)) {
330
+ && (!oFilters.olderThan || !(sKey in self._metadata.timestamps)
331
+ || self._metadata.timestamps[sKey] <= oFilters.olderThan)) {
324
332
  oRequest = oCursor.delete();
325
333
  oRequest.onsuccess = function() {
326
334
  Log.debug('Deleted ' + sKey + '!');
@@ -365,7 +373,7 @@ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
365
373
  transaction.abort();
366
374
  };
367
375
  clearMetadataStoreReq.onsuccess = function () {
368
- self._metadata = initMetadata(sap.ui.version);
376
+ self._metadata = initMetadata(Global.version);
369
377
  assignRUCounters(self);
370
378
  };
371
379
  };
@@ -663,7 +671,7 @@ sap.ui.define(["sap/base/Log", "sap/ui/performance/Measurement"],
663
671
  }
664
672
 
665
673
  function initIndexedDB(instance) {
666
- instance._ui5version = sap.ui.version;
674
+ instance._ui5version = Global.version;
667
675
  return new Promise(function executorInitIndexedDB(resolve, reject) {
668
676
  var DBOpenRequest;
669
677
 
@@ -5393,7 +5393,6 @@
5393
5393
  "weekData-firstDay": 0,
5394
5394
  "weekData-weekendStart": 6,
5395
5395
  "weekData-weekendEnd": 0,
5396
- "weekData-algorithm": "FIRSTDAY_STARTS_FIRSTWEEK",
5397
5396
  "timeData": {
5398
5397
  "_allowed": "h hb H hB",
5399
5398
  "_preferred": "h"
@@ -9,13 +9,21 @@ sap.ui.define(['./UniversalDate', '../CalendarType', './_Calendars'],
9
9
  function(UniversalDate, CalendarType, _Calendars) {
10
10
  "use strict";
11
11
 
12
-
13
12
  /**
14
13
  * The Buddhist date class
15
14
  *
16
15
  * @class
17
- * The Buddhist date implements the Thai solar calendar (BE). In this calendar the year is offset by 543 compared to the
18
- * Gregorian calendar. Before 1941 the year start was 1st of April, so Januar to March belong to the previous year.
16
+ * The Buddhist date implements the Thai solar calendar (BE - Buddhist Era). In this calendar
17
+ * the year is offset by 543 compared to the Gregorian calendar.
18
+ * e.g. Year 2022 CE corresponds to 2565 BE
19
+ *
20
+ *
21
+ * Before 1941 CE the year start was 1st of April, so Januar to March belong to the previous year.
22
+ * <pre>
23
+ * Month | 1-3 | 4-6 | 7-9 | 10-12 | 1-3 | 4-6 | 7-9 | 10-12 | 1-3 | 4-6 | 7-9 | 10-12 | 1-3 | 4-6 | 7-9 | 10-12 |
24
+ * CE | 1939 | 1940 | 1941 | 1942 |
25
+ * BE 2481 | 2482 | 2483 | 2484 | 2485 |
26
+ * </pre>
19
27
  *
20
28
  * @private
21
29
  * @alias sap.ui.core.date.Buddhist
@@ -44,8 +52,8 @@ sap.ui.define(['./UniversalDate', '../CalendarType', './_Calendars'],
44
52
  /**
45
53
  * Find the matching Buddhist date for the given gregorian date
46
54
  *
47
- * @param {object} oGregorian
48
- * @return {object}
55
+ * @param {{year:int,month:int,day:int}} oGregorian Gregorian date
56
+ * @return {{year:int,month:int,day:int}} the resulting Buddhist date
49
57
  */
50
58
  function toBuddhist(oGregorian) {
51
59
  var iEraStartYear = UniversalDate.getEraStartDate(CalendarType.Buddhist, 0).year,
@@ -67,8 +75,8 @@ sap.ui.define(['./UniversalDate', '../CalendarType', './_Calendars'],
67
75
  /**
68
76
  * Calculate gregorian year from Buddhist year and month
69
77
  *
70
- * @param {object} oBuddhist
71
- * @return {int}
78
+ * @param {{year:int,month:int,day:int}} oBuddhist Buddhist date
79
+ * @return {{year:int,month:int,day:int}} the resulting Gregorian date
72
80
  */
73
81
  function toGregorian(oBuddhist) {
74
82
  var iEraStartYear = UniversalDate.getEraStartDate(CalendarType.Buddhist, 0).year,
@@ -188,12 +196,6 @@ sap.ui.define(['./UniversalDate', '../CalendarType', './_Calendars'],
188
196
  }
189
197
  return this._setUTCBuddhist(oBuddhist);
190
198
  };
191
- Buddhist.prototype.getWeek = function() {
192
- return UniversalDate.getWeekByDate(this.sCalendarType, this.oDate.getFullYear(), this.getMonth(), this.getDate());
193
- };
194
- Buddhist.prototype.getUTCWeek = function() {
195
- return UniversalDate.getWeekByDate(this.sCalendarType, this.oDate.getUTCFullYear(), this.getUTCMonth(), this.getUTCDate());
196
- };
197
199
 
198
200
  _Calendars.set(CalendarType.Buddhist, Buddhist);
199
201
 
@@ -230,12 +230,6 @@ sap.ui.define(['./UniversalDate', '../CalendarType', './_Calendars'],
230
230
  }
231
231
  return this._setUTCJapanese(oJapanese);
232
232
  };
233
- Japanese.prototype.getWeek = function() {
234
- return UniversalDate.getWeekByDate(this.sCalendarType, this.oDate.getFullYear(), this.getMonth(), this.getDate());
235
- };
236
- Japanese.prototype.getUTCWeek = function() {
237
- return UniversalDate.getWeekByDate(this.sCalendarType, this.oDate.getUTCFullYear(), this.getUTCMonth(), this.getUTCDate());
238
- };
239
233
 
240
234
  _Calendars.set(CalendarType.Japanese, Japanese);
241
235
 
@@ -81,7 +81,7 @@ sap.ui.define([
81
81
  * @param {Element[]} aItemDomRefs Array of DOM references representing the items for the navigation
82
82
  * @param {boolean} [bNotInTabChain=false] Whether the selected element should be in the tab chain or not
83
83
  *
84
- * @version 1.102.2
84
+ * @version 1.104.0
85
85
  * @alias sap.ui.core.delegate.ItemNavigation
86
86
  * @public
87
87
  */
@@ -58,7 +58,7 @@ sap.ui.define([
58
58
  *
59
59
  * @protected
60
60
  * @alias sap.ui.core.delegate.ScrollEnablement
61
- * @version 1.102.2
61
+ * @version 1.104.0
62
62
  * @author SAP SE
63
63
  */
64
64
  var ScrollEnablement = BaseObject.extend("sap.ui.core.delegate.ScrollEnablement", /** @lends sap.ui.core.delegate.ScrollEnablement.prototype */ {
@@ -191,7 +191,7 @@ function(lib, Device, UIArea, jQuery) {
191
191
  * Returns the data that has been set via <code>setComplexData</code> method.
192
192
  *
193
193
  * @param {string} sKey The key of the data
194
- * @returns {any} The previously set data or undefined
194
+ * @returns {any|undefined} The previously set data or undefined
195
195
  * @public
196
196
  */
197
197
  getComplexData: function(sKey) {
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  *
38
38
  * @extends sap.ui.core.Element
39
39
  * @author SAP SE
40
- * @version 1.102.2
40
+ * @version 1.104.0
41
41
  *
42
42
  * @public
43
43
  * @since 1.52
@@ -22,7 +22,7 @@ sap.ui.define(["./DragInfo", "./DropInfo", "sap/ui/Device", "sap/base/Log"],
22
22
  * @extends sap.ui.core.dnd.DropInfo
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.102.2
25
+ * @version 1.104.0
26
26
  *
27
27
  * @public
28
28
  * @since 1.52
@@ -22,7 +22,7 @@ sap.ui.define(["./DragDropBase"],
22
22
  * @extends sap.ui.core.dnd.DragDropBase
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.102.2
25
+ * @version 1.104.0
26
26
  *
27
27
  * @public
28
28
  * @since 1.56
@@ -21,7 +21,7 @@ sap.ui.define(["./DragDropBase"],
21
21
  * @extends sap.ui.core.dnd.DragDropBase
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.102.2
24
+ * @version 1.104.0
25
25
  *
26
26
  * @public
27
27
  * @since 1.56
@@ -2600,7 +2600,7 @@ sap.ui.define([
2600
2600
  * @param {string} sValue the string containing a formatted date/time value
2601
2601
  * @param {boolean} bUTC whether to use UTC, if no timezone is contained
2602
2602
  * @param {boolean} bStrict to use strict value check
2603
- * @return {Date} the parsed value or null if relative parsing not possible
2603
+ * @returns {Date|null} the parsed value or <code>null</code> if relative parsing not possible
2604
2604
  * @private
2605
2605
  */
2606
2606
  DateFormat.prototype.parseRelative = function(sValue, bUTC) {
@@ -2664,7 +2664,7 @@ sap.ui.define([
2664
2664
  * @param {boolean} bUTC whether to use UTC
2665
2665
  * @param {number[]} aRange scale ranges
2666
2666
  * @param {string} sTimezone the IANA timezone ID
2667
- * @return {string} the formatted output value or null if relative formatting not possible
2667
+ * @returns {string|null} the formatted output value or <code>null</code> if relative formatting is not possible
2668
2668
  * @private
2669
2669
  */
2670
2670
  DateFormat.prototype.formatRelative = function(oJSDate, bUTC, aRange, sTimezone) {
@@ -339,7 +339,7 @@ sap.ui.define([
339
339
  * oFormat.format(1234.56); // "1.234,56"
340
340
  * </pre>
341
341
  *
342
- # * @param {object} [oFormatOptions] The option object, which supports the following parameters.
342
+ * @param {object} [oFormatOptions] The option object, which supports the following parameters.
343
343
  * If no options are given, default values according to the type and locale settings are used.
344
344
  * @param {int} [oFormatOptions.decimals] defines the number of decimal digits
345
345
  * @param {string} [oFormatOptions.decimalSeparator] defines the character used as decimal separator.
@@ -2804,7 +2804,7 @@ sap.ui.define([
2804
2804
  }
2805
2805
 
2806
2806
  /**
2807
- * Parses number and currency
2807
+ * Parses number and currency.
2808
2808
  *
2809
2809
  * Search for the currency symbol first, looking for the longest match. In case no currency
2810
2810
  * symbol is found, search for a three letter currency code.
@@ -2819,7 +2819,7 @@ sap.ui.define([
2819
2819
  * @param {boolean} oConfig.customCurrenciesAvailable a flag to mark if custom currencies are available on the instance
2820
2820
  *
2821
2821
  * @private
2822
- * @return {object} returns object containing numberValue and currencyCode or null
2822
+ * @returns {object|undefined} returns object containing numberValue and currencyCode or undefined
2823
2823
  */
2824
2824
  function parseNumberAndCurrency(oConfig) {
2825
2825
  var sValue = oConfig.value;
@@ -11,7 +11,7 @@ sap.ui.define([], function() {
11
11
  * Static collection of utility functions to handle time zone related conversions
12
12
  *
13
13
  * @author SAP SE
14
- * @version 1.102.2
14
+ * @version 1.104.0
15
15
  * @namespace
16
16
  * @alias sap.ui.core.format.TimezoneUtil
17
17
  * @private
@@ -211,7 +211,7 @@ sap.ui.define([], function() {
211
211
  parseInt(oParts.hour),
212
212
  parseInt(oParts.minute),
213
213
  parseInt(oParts.second),
214
- parseInt(oParts.fractionalSecond));
214
+ parseInt(oParts.fractionalSecond || 0)); // some older browsers don't support fractionalSecond, e.g. Safari < 14.1 */
215
215
 
216
216
  return oDate;
217
217
  };
@@ -398,7 +398,7 @@ sap.ui.define([
398
398
  * @see {@link topic:6322164936f047de941ec522b95d7b70 Hyphenation for Text Controls}
399
399
  * @extends sap.ui.base.ManagedObject
400
400
  * @author SAP SE
401
- * @version 1.102.2
401
+ * @version 1.104.0
402
402
  * @hideconstructor
403
403
  * @public
404
404
  * @since 1.60
@@ -25,13 +25,13 @@ sap.ui.define([
25
25
  * @namespace
26
26
  * @alias sap.ui.core
27
27
  * @author SAP SE
28
- * @version 1.102.2
28
+ * @version 1.104.0
29
29
  * @since 0.8
30
30
  * @public
31
31
  */
32
32
  var thisLib = sap.ui.getCore().initLibrary({
33
33
  name : "sap.ui.core",
34
- version: "1.102.2",
34
+ version: "1.104.0",
35
35
  designtime: "sap/ui/core/designtime/library.designtime",
36
36
  types: [
37
37
 
@@ -1509,7 +1509,7 @@ sap.ui.define([
1509
1509
  /**
1510
1510
  * Sort order of a column.
1511
1511
  *
1512
- * @version 1.102.2
1512
+ * @version 1.104.0
1513
1513
  * @enum {string}
1514
1514
  * @public
1515
1515
  * @since 1.61.0
@@ -29,7 +29,7 @@ sap.ui.define(['sap/ui/core/message/MessageProcessor'],
29
29
  * @extends sap.ui.core.message.MessageProcessor
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.102.2
32
+ * @version 1.104.0
33
33
  *
34
34
  * @public
35
35
  * @alias sap.ui.core.message.ControlMessageProcessor
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.base.Object
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.102.2
38
+ * @version 1.104.0
39
39
  *
40
40
  * @param {object} [mParameters] a map which contains the following parameter properties:
41
41
  * @param {string} [mParameters.id] The message id: will be generated if no id is set
@@ -46,7 +46,7 @@ sap.ui.define([
46
46
  * @extends sap.ui.base.EventProvider
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.102.2
49
+ * @version 1.104.0
50
50
  *
51
51
  * @public
52
52
  * @alias sap.ui.core.message.MessageManager
@@ -24,7 +24,7 @@ sap.ui.define(["sap/ui/base/Object", "sap/base/Log"],
24
24
  * @extends sap.ui.base.Object
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.102.2
27
+ * @version 1.104.0
28
28
  * @public
29
29
  * @abstract
30
30
  * @alias sap.ui.core.message.MessageParser
@@ -56,7 +56,7 @@ MessageParser.prototype.setProcessor = function(oProcessor) {
56
56
  /**
57
57
  * Returns the registered processor on which the events for message handling can be fired
58
58
  *
59
- * @return {sap.ui.core.message.MessageProcessor} The currently set MessageProcessor or null if none is set
59
+ * @returns {sap.ui.core.message.MessageProcessor|null} The currently set MessageProcessor or <code>null</code> if none is set
60
60
  * @protected
61
61
  */
62
62
  MessageParser.prototype.getProcessor = function() {
@@ -27,7 +27,7 @@ sap.ui.define(['sap/ui/base/EventProvider', "sap/base/util/uid"],
27
27
  * @extends sap.ui.base.EventProvider
28
28
  *
29
29
  * @author SAP SE
30
- * @version 1.102.2
30
+ * @version 1.104.0
31
31
  *
32
32
  * @public
33
33
  * @alias sap.ui.core.message.MessageProcessor