@openui5/sap.ui.core 1.107.1 → 1.108.1

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 (287) hide show
  1. package/.dtsgenrc +63 -0
  2. package/THIRDPARTY.txt +1 -1
  3. package/package.json +1 -1
  4. package/src/jquery.sap.global.js +1 -1
  5. package/src/jquery.sap.properties.js +1 -1
  6. package/src/jquery.sap.resources.js +1 -1
  7. package/src/jquery.sap.script.js +1 -1
  8. package/src/jquery.sap.storage.js +3 -3
  9. package/src/sap/base/i18n/ResourceBundle.js +10 -0
  10. package/src/sap/base/security/URLListValidator.js +36 -3
  11. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  12. package/src/sap/base/util/restricted/_castArray.js +1 -1
  13. package/src/sap/base/util/restricted/_compact.js +1 -1
  14. package/src/sap/base/util/restricted/_curry.js +1 -1
  15. package/src/sap/base/util/restricted/_debounce.js +1 -1
  16. package/src/sap/base/util/restricted/_difference.js +1 -1
  17. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  18. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  19. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  20. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  21. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  22. package/src/sap/base/util/restricted/_flatten.js +1 -1
  23. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  24. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  25. package/src/sap/base/util/restricted/_intersection.js +1 -1
  26. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  27. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  28. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  29. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  30. package/src/sap/base/util/restricted/_isNil.js +1 -1
  31. package/src/sap/base/util/restricted/_max.js +1 -1
  32. package/src/sap/base/util/restricted/_merge.js +1 -1
  33. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  34. package/src/sap/base/util/restricted/_min.js +1 -1
  35. package/src/sap/base/util/restricted/_omit.js +1 -1
  36. package/src/sap/base/util/restricted/_pick.js +1 -1
  37. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  38. package/src/sap/base/util/restricted/_throttle.js +1 -1
  39. package/src/sap/base/util/restricted/_toArray.js +1 -1
  40. package/src/sap/base/util/restricted/_union.js +1 -1
  41. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  42. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  43. package/src/sap/base/util/restricted/_uniq.js +1 -1
  44. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  45. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  46. package/src/sap/base/util/restricted/_without.js +1 -1
  47. package/src/sap/base/util/restricted/_xor.js +1 -1
  48. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  49. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  50. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  51. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  52. package/src/sap/ui/Device.js +3 -3
  53. package/src/sap/ui/Global.js +4 -4
  54. package/src/sap/ui/base/Event.js +1 -1
  55. package/src/sap/ui/base/EventProvider.js +1 -1
  56. package/src/sap/ui/base/Interface.js +1 -1
  57. package/src/sap/ui/base/ManagedObject.js +2 -2
  58. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  59. package/src/sap/ui/base/Metadata.js +1 -1
  60. package/src/sap/ui/base/Object.js +1 -1
  61. package/src/sap/ui/base/ObjectPool.js +1 -1
  62. package/src/sap/ui/core/.library +50 -50
  63. package/src/sap/ui/core/BusyIndicator.js +1 -1
  64. package/src/sap/ui/core/BusyIndicatorUtils.js +22 -8
  65. package/src/sap/ui/core/Component.js +21 -4
  66. package/src/sap/ui/core/ComponentContainer.js +5 -1
  67. package/src/sap/ui/core/ComponentMetadata.js +1 -1
  68. package/src/sap/ui/core/ComponentSupport.js +1 -1
  69. package/src/sap/ui/core/Configuration.js +2 -15
  70. package/src/sap/ui/core/Control.js +20 -2
  71. package/src/sap/ui/core/Core.js +311 -413
  72. package/src/sap/ui/core/CustomData.js +1 -1
  73. package/src/sap/ui/core/DeclarativeSupport.js +1 -1
  74. package/src/sap/ui/core/Element.js +1 -1
  75. package/src/sap/ui/core/ElementMetadata.js +1 -1
  76. package/src/sap/ui/core/EnabledPropagator.js +1 -1
  77. package/src/sap/ui/core/EventBus.js +1 -1
  78. package/src/sap/ui/core/FocusHandler.js +12 -14
  79. package/src/sap/ui/core/Fragment.js +5 -2
  80. package/src/sap/ui/core/HTML.js +1 -1
  81. package/src/sap/ui/core/History.js +1 -1
  82. package/src/sap/ui/core/Icon.js +1 -1
  83. package/src/sap/ui/core/IconPool.js +7 -1
  84. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  85. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  86. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  87. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  88. package/src/sap/ui/core/InvisibleText.js +1 -1
  89. package/src/sap/ui/core/Item.js +1 -1
  90. package/src/sap/ui/core/LabelEnablement.js +1 -1
  91. package/src/sap/ui/core/LayoutData.js +1 -1
  92. package/src/sap/ui/core/ListItem.js +1 -1
  93. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  94. package/src/sap/ui/core/Locale.js +1 -1
  95. package/src/sap/ui/core/LocaleData.js +1 -1
  96. package/src/sap/ui/core/Manifest.js +16 -83
  97. package/src/sap/ui/core/Message.js +1 -1
  98. package/src/sap/ui/core/Popup.js +14 -4
  99. package/src/sap/ui/core/RenderManager.js +111 -109
  100. package/src/sap/ui/core/Renderer.js +1 -1
  101. package/src/sap/ui/core/ResizeHandler.js +1 -1
  102. package/src/sap/ui/core/ScrollBar.js +1 -1
  103. package/src/sap/ui/core/SeparatorItem.js +1 -1
  104. package/src/sap/ui/core/ShortcutHintsMixin.js +20 -0
  105. package/src/sap/ui/core/Title.js +1 -1
  106. package/src/sap/ui/core/TooltipBase.js +1 -1
  107. package/src/sap/ui/core/UIArea.js +4 -2
  108. package/src/sap/ui/core/UIComponent.js +1 -1
  109. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  110. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  111. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  112. package/src/sap/ui/core/XMLComposite.js +1 -1
  113. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  114. package/src/sap/ui/core/_IconRegistry.js +11 -7
  115. package/src/sap/ui/core/_UrlResolver.js +139 -0
  116. package/src/sap/ui/core/date/CalendarUtils.js +87 -0
  117. package/src/sap/ui/core/date/CalendarWeekNumbering.js +73 -0
  118. package/src/sap/ui/core/date/UniversalDate.js +198 -74
  119. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  120. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  121. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  122. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  123. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  124. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  125. package/src/sap/ui/core/format/DateFormat.js +187 -57
  126. package/src/sap/ui/core/format/NumberFormat.js +64 -23
  127. package/src/sap/ui/core/format/TimezoneUtil.js +3 -1
  128. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  129. package/src/sap/ui/core/library.js +19 -10
  130. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  131. package/src/sap/ui/core/message/Message.js +5 -3
  132. package/src/sap/ui/core/message/MessageManager.js +1 -1
  133. package/src/sap/ui/core/message/MessageParser.js +1 -1
  134. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  135. package/src/sap/ui/core/messagebundle_fr.properties +1 -1
  136. package/src/sap/ui/core/mvc/HTMLView.js +10 -2
  137. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  138. package/src/sap/ui/core/mvc/JSView.js +1 -1
  139. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  140. package/src/sap/ui/core/mvc/View.js +1 -1
  141. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  142. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  143. package/src/sap/ui/core/plugin/LessSupport.js +21 -20
  144. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  145. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  146. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  147. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  148. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  149. package/src/sap/ui/core/service/Service.js +1 -1
  150. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  151. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  152. package/src/sap/ui/core/support/Plugin.js +1 -1
  153. package/src/sap/ui/core/support/Support.js +1 -1
  154. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  155. package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
  156. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  157. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  158. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  159. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  160. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  161. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  162. package/src/sap/ui/core/themes/base/LocalBusyIndicator.less +3 -3
  163. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  164. package/src/sap/ui/core/theming/Parameters.js +31 -12
  165. package/src/sap/ui/core/theming/ThemeHelper.js +56 -1
  166. package/src/sap/ui/core/theming/ThemeManager.js +817 -0
  167. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  168. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  169. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  170. package/src/sap/ui/core/tmpl/Template.js +1 -1
  171. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  172. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  173. package/src/sap/ui/core/util/Export.js +1 -1
  174. package/src/sap/ui/core/util/ExportCell.js +1 -1
  175. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  176. package/src/sap/ui/core/util/ExportRow.js +1 -1
  177. package/src/sap/ui/core/util/ExportType.js +1 -1
  178. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  179. package/src/sap/ui/core/util/File.js +1 -1
  180. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  181. package/src/sap/ui/core/util/MockServer.js +1 -1
  182. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  183. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +2 -1
  184. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  185. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  186. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  187. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  188. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  189. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  190. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  191. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  192. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  193. package/src/sap/ui/debug/ControlTree.js +1 -1
  194. package/src/sap/ui/debug/DebugEnv.js +1 -1
  195. package/src/sap/ui/debug/PropertyList.js +1 -1
  196. package/src/sap/ui/dom/getFirstEditableInput.js +25 -6
  197. package/src/sap/ui/dom/includeStylesheet.js +2 -2
  198. package/src/sap/ui/model/ClientListBinding.js +11 -4
  199. package/src/sap/ui/model/ClientModel.js +1 -1
  200. package/src/sap/ui/model/ClientTreeBinding.js +60 -5
  201. package/src/sap/ui/model/CompositeDataState.js +1 -1
  202. package/src/sap/ui/model/CompositeType.js +1 -1
  203. package/src/sap/ui/model/DataState.js +1 -1
  204. package/src/sap/ui/model/Filter.js +6 -6
  205. package/src/sap/ui/model/MetaModel.js +1 -1
  206. package/src/sap/ui/model/Model.js +1 -1
  207. package/src/sap/ui/model/SelectionModel.js +1 -1
  208. package/src/sap/ui/model/SimpleType.js +1 -1
  209. package/src/sap/ui/model/Sorter.js +6 -4
  210. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  211. package/src/sap/ui/model/TreeBinding.js +18 -0
  212. package/src/sap/ui/model/TreeBindingCompatibilityAdapter.js +1 -1
  213. package/src/sap/ui/model/Type.js +1 -1
  214. package/src/sap/ui/model/analytics/AnalyticalTreeBindingAdapter.js +28 -34
  215. package/src/sap/ui/model/controlhelper/TreeBindingProxy.js +590 -0
  216. package/src/sap/ui/model/json/JSONModel.js +1 -1
  217. package/src/sap/ui/model/message/MessageModel.js +1 -1
  218. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  219. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  220. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  221. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  222. package/src/sap/ui/model/odata/ODataModel.js +1 -1
  223. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  224. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  225. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  226. package/src/sap/ui/model/odata/type/Date.js +1 -1
  227. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  228. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  229. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  230. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  231. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  232. package/src/sap/ui/model/odata/type/Double.js +1 -1
  233. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  234. package/src/sap/ui/model/odata/type/Int.js +1 -1
  235. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  236. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  237. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  238. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  239. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  240. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  241. package/src/sap/ui/model/odata/type/Single.js +1 -1
  242. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  243. package/src/sap/ui/model/odata/type/String.js +1 -1
  244. package/src/sap/ui/model/odata/type/Time.js +1 -1
  245. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  246. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  247. package/src/sap/ui/model/odata/v2/BatchMode.js +2 -2
  248. package/src/sap/ui/model/odata/v2/Context.js +169 -4
  249. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  250. package/src/sap/ui/model/odata/v2/ODataListBinding.js +39 -17
  251. package/src/sap/ui/model/odata/v2/ODataModel.js +219 -82
  252. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
  253. package/src/sap/ui/model/odata/v4/Context.js +35 -22
  254. package/src/sap/ui/model/odata/v4/ODataBinding.js +28 -22
  255. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +6 -6
  256. package/src/sap/ui/model/odata/v4/ODataListBinding.js +111 -89
  257. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +5 -4
  258. package/src/sap/ui/model/odata/v4/ODataModel.js +84 -46
  259. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +19 -20
  260. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +3 -3
  261. package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +1 -1
  262. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +12 -5
  263. package/src/sap/ui/model/odata/v4/lib/_Cache.js +130 -64
  264. package/src/sap/ui/model/odata/v4/lib/_Helper.js +1 -1
  265. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +56 -15
  266. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  267. package/src/sap/ui/model/type/Boolean.js +1 -1
  268. package/src/sap/ui/model/type/Currency.js +1 -1
  269. package/src/sap/ui/model/type/Date.js +1 -1
  270. package/src/sap/ui/model/type/DateInterval.js +1 -1
  271. package/src/sap/ui/model/type/DateTime.js +1 -1
  272. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  273. package/src/sap/ui/model/type/FileSize.js +1 -1
  274. package/src/sap/ui/model/type/Float.js +1 -1
  275. package/src/sap/ui/model/type/Integer.js +1 -1
  276. package/src/sap/ui/model/type/String.js +1 -1
  277. package/src/sap/ui/model/type/Time.js +1 -1
  278. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  279. package/src/sap/ui/model/type/Unit.js +1 -1
  280. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  281. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  282. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  283. package/src/sap/ui/test/TestUtils.js +20 -0
  284. package/src/sap/ui/test/generic/TestBase.js +1 -1
  285. package/src/sap/ui/thirdparty/mobify-carousel.js +0 -4
  286. package/src/sap/ui/util/Storage.js +1 -1
  287. package/src/sap/ui/core/ThemeCheck.js +0 -389
@@ -10,7 +10,7 @@
10
10
  * @alias module:sap/base/util/restricted/_zipObjectDeep
11
11
  * @author SAP SE
12
12
  * @since 1.81
13
- * @version 1.107.1
13
+ * @version 1.108.1
14
14
  * @private
15
15
  * @ui5-restricted
16
16
  */
@@ -11,7 +11,7 @@
11
11
  * This API is independent from any other part of the UI5 framework. This allows it to be loaded beforehand, if it is needed, to create the UI5 bootstrap
12
12
  * dynamically depending on the capabilities of the browser or device.
13
13
  *
14
- * @version 1.107.1
14
+ * @version 1.108.1
15
15
  * @namespace
16
16
  * @name sap.ui.Device
17
17
  * @public
@@ -32,7 +32,7 @@ if (typeof window.sap.ui !== "object") {
32
32
 
33
33
  //Skip initialization if API is already available
34
34
  if (typeof window.sap.ui.Device === "object" || typeof window.sap.ui.Device === "function") {
35
- var apiVersion = "1.107.1";
35
+ var apiVersion = "1.108.1";
36
36
  window.sap.ui.Device._checkAPIVersion(apiVersion);
37
37
  return;
38
38
  }
@@ -105,7 +105,7 @@ if (typeof window.sap.ui !== "object") {
105
105
 
106
106
  //Only used internal to make clear when Device API is loaded in wrong version
107
107
  Device._checkAPIVersion = function(sVersion) {
108
- var v = "1.107.1";
108
+ var v = "1.108.1";
109
109
  if (v != sVersion) {
110
110
  oLogger.log(WARNING, "Device API version differs: " + v + " <-> " + sVersion);
111
111
  }
@@ -18,7 +18,7 @@
18
18
  * sap.ui.lazyRequire("sap.ui.core.Control");
19
19
  * sap.ui.lazyRequire("sap.m.Button");
20
20
  *
21
- * @version 1.107.1
21
+ * @version 1.108.1
22
22
  * @author SAP SE
23
23
  * @public
24
24
  */
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * The <code>sap</code> namespace is automatically registered with the
50
50
  * OpenAjax hub if it exists.
51
51
  *
52
- * @version 1.107.1
52
+ * @version 1.108.1
53
53
  * @namespace
54
54
  * @public
55
55
  * @name sap
@@ -62,7 +62,7 @@ sap.ui.define([
62
62
  * The <code>sap.ui</code> namespace is the central OpenAjax compliant entry
63
63
  * point for UI related JavaScript functionality provided by SAP.
64
64
  *
65
- * @version 1.107.1
65
+ * @version 1.108.1
66
66
  * @namespace
67
67
  * @name sap.ui
68
68
  * @public
@@ -76,7 +76,7 @@ sap.ui.define([
76
76
  * The version of the SAP UI Library
77
77
  * @type string
78
78
  */
79
- version: "1.107.1",
79
+ version: "1.108.1",
80
80
  // buildinfo.lastchange is deprecated and is therefore defaulted to empty string
81
81
  buildinfo : { lastchange : "", buildtime : "${buildtime}" }
82
82
  });
@@ -23,7 +23,7 @@ sap.ui.define(['./Object', "sap/base/assert"],
23
23
  * @extends sap.ui.base.Object
24
24
  * @implements sap.ui.base.Poolable
25
25
  * @author SAP SE
26
- * @version 1.107.1
26
+ * @version 1.108.1
27
27
  * @alias sap.ui.base.Event
28
28
  * @public
29
29
  */
@@ -18,7 +18,7 @@ sap.ui.define(['./Event', './Object', './ObjectPool', "sap/base/assert"],
18
18
  * @abstract
19
19
  * @extends sap.ui.base.Object
20
20
  * @author SAP SE
21
- * @version 1.107.1
21
+ * @version 1.108.1
22
22
  * @public
23
23
  * @alias sap.ui.base.EventProvider
24
24
  */
@@ -28,7 +28,7 @@ sap.ui.define(['sap/ui/base/Object'], function(BaseObject) {
28
28
  * no internals of the class can be accessed.
29
29
  *
30
30
  * @author Malte Wedel, Daniel Brinkmann
31
- * @version 1.107.1
31
+ * @version 1.108.1
32
32
  * @param {sap.ui.base.Object} oObject
33
33
  * Object for which a facade should be created
34
34
  * @param {string[]} aMethods
@@ -248,7 +248,7 @@ sap.ui.define([
248
248
  *
249
249
  * @extends sap.ui.base.EventProvider
250
250
  * @author SAP SE
251
- * @version 1.107.1
251
+ * @version 1.108.1
252
252
  * @public
253
253
  * @alias sap.ui.base.ManagedObject
254
254
  */
@@ -4198,7 +4198,7 @@ sap.ui.define([
4198
4198
  * refers to the default model.
4199
4199
  *
4200
4200
  * @param {string} [sModelName] name of the model to be retrieved
4201
- * @return {sap.ui.model.Model} oModel
4201
+ * @return {sap.ui.model.Model | undefined} oModel or undefined when there is no such model
4202
4202
  * @public
4203
4203
  */
4204
4204
  ManagedObject.prototype.getModel = function(sModelName) {
@@ -73,7 +73,7 @@ function(
73
73
  *
74
74
  *
75
75
  * @author Frank Weigel
76
- * @version 1.107.1
76
+ * @version 1.108.1
77
77
  * @since 0.8.6
78
78
  * @alias sap.ui.base.ManagedObjectMetadata
79
79
  * @extends sap.ui.base.Metadata
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  *
27
27
  * @class Metadata for a class.
28
28
  * @author Frank Weigel
29
- * @version 1.107.1
29
+ * @version 1.108.1
30
30
  * @since 0.8.6
31
31
  * @public
32
32
  * @alias sap.ui.base.Metadata
@@ -26,7 +26,7 @@ sap.ui.define(['./Metadata', "sap/base/Log"],
26
26
  * @class Base class for all SAPUI5 Objects.
27
27
  * @abstract
28
28
  * @author Malte Wedel
29
- * @version 1.107.1
29
+ * @version 1.108.1
30
30
  * @public
31
31
  * @alias sap.ui.base.Object
32
32
  * @throws {Error} When an instance of the class or its subclasses is created without the <code>new</code> operator.
@@ -59,7 +59,7 @@ sap.ui.define(['./Object'],
59
59
  *
60
60
  * @extends sap.ui.base.Object
61
61
  * @author SAP SE
62
- * @version 1.107.1
62
+ * @version 1.108.1
63
63
  * @alias sap.ui.base.ObjectPool
64
64
  * @public
65
65
  */
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.107.1</version>
9
+ <version>1.108.1</version>
10
10
 
11
11
  <documentation>The SAPUI5 Core Runtime.
12
12
 
@@ -151,7 +151,7 @@
151
151
  </jscoverage>
152
152
  <!-- Thirdparty references -->
153
153
  <thirdparty xmlns="http://www.sap.com/ui5/buildext/thirdparty" >
154
- <lib name="jquery-3" displayName="jQuery 3" version="3.6.0" homepage="https://jquery.com" id="73554900106100068050">
154
+ <lib name="jquery-3" displayName="jQuery 3" npmName="jquery" version="3.6.0" hash="df1ce1846e11e773d850061aa04da88a" homepage="https://jquery.com" id="73554900106100068050">
155
155
  <license url="http://jQuery.org/license" type="MIT"/>
156
156
  <copyright>OpenJS Foundation and other contributors</copyright>
157
157
  <pattern>sap/ui/thirdparty/jquery.js</pattern>
@@ -159,158 +159,158 @@
159
159
  <pattern partial="true" otherContent="SAP" explanation="_merge.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery">sap/base/util/_merge.js</pattern>
160
160
  <pattern partial="true" otherContent="SAP" explanation="jquery.sap.script.js is overall written by SAP, but contains a modified implementation of jQuery.extend taken from jQuery">jquery.sap.script.js</pattern>
161
161
  </lib>
162
- <lib name="jquery-1" displayName="jQuery 1" version="1.7.1" homepage="https://jquery.com" id="73554900106100019232">
162
+ <lib name="jquery-1" displayName="jQuery 1" npmName="n/a" version="1.7.1" homepage="https://jquery.com" id="73554900106100019232">
163
163
  <license url="http://jQuery.org/license" type="MIT"/>
164
164
  <copyright>2011, John Resig</copyright>
165
165
  <pattern partial="true" otherContent="SAP" explanation="Device.js is overall written by SAP, but contains code taken from jQuery 1.7.1 (see the respective comment)">sap/ui/Device.js</pattern>
166
166
  </lib>
167
- <lib name="jquery_UI_1-8-17" displayName="jQuery UI 1.8" version="1.8.17" homepage="https://jqueryui.com">
167
+ <lib name="jquery_UI_1-8-17" displayName="jQuery UI 1.8" npmName="n/a" version="1.8.17" homepage="https://jqueryui.com">
168
168
  <license url="http://jQuery.org/license" type="MIT" />
169
169
  <copyright>2014 jQuery Foundation and other contributors</copyright>
170
170
  <pattern partial="true" otherContent="SAP" explanation="Selectors.js is overall written by SAP, but contains code taken from jQuery UI (see the respective comments)">sap/ui/dom/jquery/Selectors.js</pattern>
171
171
  </lib>
172
- <lib name="jquery_UI-1-10-4" displayName="jQuery UI 1.10" version="1.10.4" homepage="https://jqueryui.com" id="73554900106100000044">
172
+ <lib name="jquery_UI-1-10-4" displayName="jQuery UI 1.10" npmName="jquery-ui" version="1.10.4" hash="3d3f58e254f8c6848fb56dbfebfbcd13" homepage="https://jqueryui.com" id="73554900106100000044">
173
173
  <license url="http://jQuery.org/license" type="MIT" />
174
174
  <copyright>2014 jQuery Foundation and other contributors</copyright>
175
175
  <pattern>sap/ui/thirdparty/jqueryui/*</pattern>
176
176
  <pattern partial="true" otherContent="SAP" explanation="jquery.sap.dom.js is overall written by SAP, but contains code taken from jQuery UI Core (see the respective comment)">jquery.sap.dom.js</pattern>
177
177
  </lib>
178
- <lib name="jquery_UI_1-11-1" displayName="jQuery UI 1.11" version="1.11.1" homepage="https://jqueryui.com">
178
+ <lib name="jquery_UI_1-11-1" displayName="jQuery UI 1.11" npmName="n/a" version="1.11.1" homepage="https://jqueryui.com">
179
179
  <license url="http://jQuery.org/license" type="MIT" />
180
180
  <copyright>2014 jQuery Foundation and other contributors</copyright>
181
181
  <pattern partial="true" otherContent="SAP" explanation="zIndex.js is overall written by SAP, but contains an implementation of the function 'fnzIndex' which is taken from jQuery UI Datepicker 1.11.1">sap/ui/dom/jquery/zIndex.js</pattern>
182
182
  </lib>
183
- <lib name="qunit" displayName="QUnit" version="1.18.0" homepage="https://qunitjs.com" id="73554900106100002636">
183
+ <lib name="qunit" displayName="QUnit" npmName="n/a" version="1.18.0" hash="a91331fed4313c15851f69d3d484d087" homepage="https://qunitjs.com" id="73554900106100002636">
184
184
  <license url="http://jQuery.org/license" type="MIT" />
185
185
  <copyright>jQuery Foundation and other contributors</copyright>
186
186
  <pattern>sap/ui/thirdparty/qunit.css</pattern>
187
187
  <pattern>sap/ui/thirdparty/qunit.js</pattern>
188
188
  </lib>
189
- <lib name="qunit-2" displayName="QUnit 2" version="2.3.2" homepage="https://qunitjs.com" id="73555000106100006951">
189
+ <lib name="qunit-2" displayName="QUnit 2" npmName="n/a" version="2.3.2" hash="5a663d008c04935ce54d7b13987fde53" homepage="https://qunitjs.com" id="73555000106100006951">
190
190
  <license url="http://jQuery.org/license" type="MIT" />
191
191
  <copyright>jQuery Foundation and other contributors</copyright>
192
192
  <pattern>sap/ui/thirdparty/qunit-2.css</pattern>
193
193
  <pattern>sap/ui/thirdparty/qunit-2.js</pattern>
194
194
  </lib>
195
- <lib name="qunit-2.18" displayName="QUnit 2.18" version="2.18.0" homepage="https://qunitjs.com" id="73554900106100134323">
195
+ <lib name="qunit-2.18" displayName="QUnit 2.18" npmName="qunit" version="2.18.0" hash="1b26c6342052e716bf0aec6574dae1a4" homepage="https://qunitjs.com" id="73554900106100134323">
196
196
  <license url="http://jQuery.org/license" type="MIT" />
197
197
  <copyright>jQuery Foundation and other contributors</copyright>
198
198
  <pattern>../test/sap/ui/core/qunit/thirdparty/qunit-2.18.css</pattern>
199
199
  <pattern>../test/sap/ui/core/qunit/thirdparty/qunit-2.18.js</pattern>
200
200
  </lib>
201
- <lib name="jquery-migrate" displayName="jQuery-Migrate" version="3.3.1" homepage="https://github.com/jquery/jquery-migrate/" id="73555000106100043843">
201
+ <lib name="jquery-migrate" displayName="jQuery-Migrate" npmName="jquery-migrate" version="3.3.1" hash="5421254af7837b366e32343522b87ef2" homepage="https://github.com/jquery/jquery-migrate/" id="73555000106100043843">
202
202
  <license url="https://github.com/jquery/jquery-migrate/blob/3.3.1/LICENSE.txt" type="MIT" />
203
203
  <copyright>OpenJS Foundation and other contributors</copyright>
204
204
  <pattern>sap/ui/thirdparty/jquery-compat.js</pattern>
205
205
  </lib>
206
- <lib name="jquery_mobile" displayName="jQuery Mobile" version="1.3.1" homepage="http://jquerymobile.com" id="73554900106100002438">
206
+ <lib name="jquery_mobile" displayName="jQuery Mobile" npmName="n/a" version="1.3.1" hash="ce7f0d13341afe624e75cf797f43192f" homepage="http://jquerymobile.com" id="73554900106100002438">
207
207
  <license url="http://jQuery.org/license" type="MIT" />
208
208
  <copyright>2010, 2013 jQuery Foundation, Inc. and other contributors</copyright>
209
209
  <pattern>sap/ui/thirdparty/jquery-mobile-custom.js</pattern>
210
210
  </lib>
211
- <lib name="jquery.rtl-scroll-type" displayName="jQuery.rtl-scroll-type" version="2.0.0" homepage="https://github.com/othree/jquery.rtl-scroll-type" id="73554900106100058148">
211
+ <lib name="jquery.rtl-scroll-type" displayName="jQuery.rtl-scroll-type" npmName="jquery.rtl-scroll-type" version="2.0.0" homepage="https://github.com/othree/jquery.rtl-scroll-type" id="73554900106100058148">
212
212
  <license url="https://github.com/othree/jquery.rtl-scroll-type/blob/master/LICENSE" type="MIT" />
213
213
  <copyright>2012 Wei-Ko Kao</copyright>
214
214
  <pattern partial="true" otherContent="SAP" explanation="_FeatureDetection.js is overall written by SAP, but contains code which is inspired by jQuery.rtl-scroll-type">sap/ui/util/_FeatureDetection.js</pattern>
215
215
  </lib>
216
- <lib name="qunit-composite" displayName="QUnit Composite" version="1.0.2-pre" homepage="https://github.com/jquery/qunit-composite" id="73555000106100004191">
216
+ <lib name="qunit-composite" displayName="QUnit Composite" npmName="n/a" version="1.0.2-pre" hash="f2d36d5a279d0c6b48e7eb1fb36ea9d9" homepage="https://github.com/jquery/qunit-composite" id="73555000106100004191">
217
217
  <!-- version is "1.0.2-pre", in PPMS as "1.0.2" -->
218
218
  <license url="http://jquery.org/license" type="MIT" />
219
219
  <copyright>jQuery Foundation and other contributors</copyright>
220
220
  <pattern>sap/ui/thirdparty/qunit-composite.css</pattern>
221
221
  <pattern>sap/ui/thirdparty/qunit-composite.js</pattern>
222
222
  </lib>
223
- <lib name="qunit-reporter-junit" displayName="JUnit Reporter for QUnit" version="1.1.1" homepage="https://github.com/JamesMGreene/qunit-reporter-junit" id="73554900106100005540">
223
+ <lib name="qunit-reporter-junit" displayName="JUnit Reporter for QUnit" npmName="qunit-reporter-junit" version="1.1.1" hash="494d573d58adc6a5fbfc539210bd9656" homepage="https://github.com/JamesMGreene/qunit-reporter-junit" id="73554900106100005540">
224
224
  <license url="https://raw.githubusercontent.com/JamesMGreene/qunit-reporter-junit/master/LICENSE.txt" type="MIT" />
225
225
  <copyright>jQuery Foundation and other contributors</copyright>
226
226
  <pattern>sap/ui/thirdparty/qunit-reporter-junit.js</pattern>
227
227
  </lib>
228
- <lib name="iscroll" displayName="cubiq.org - iScroll" version="4.2.5" homepage="https://github.com/cubiq/iscroll" id="73554900106100001862">
228
+ <lib name="iscroll" displayName="cubiq.org - iScroll" npmName="n/a" version="4.2.5" hash="d65adf04b7325742c53082ee3e87d034" homepage="https://github.com/cubiq/iscroll" id="73554900106100001862">
229
229
  <license url="https://github.com/cubiq/iscroll/blob/master/LICENSE" type="MIT" />
230
230
  <copyright>2012 Matteo Spinelli</copyright>
231
231
  <pattern>sap/ui/thirdparty/iscroll.js</pattern>
232
232
  </lib>
233
- <lib name="iscroll-lite" displayName="cubiq.org - iScroll Lite" version="4.1.6" homepage="https://github.com/cubiq/iscroll">
233
+ <lib name="iscroll-lite" displayName="cubiq.org - iScroll Lite" npmName="n/a" version="4.1.6" hash="c430198bf1e445e8717b911756f92dcd" homepage="https://github.com/cubiq/iscroll">
234
234
  <license url="https://github.com/cubiq/iscroll/blob/master/LICENSE" type="MIT" />
235
235
  <copyright>2011 Matteo Spinelli</copyright>
236
236
  <pattern>sap/ui/thirdparty/iscroll-lite.js</pattern>
237
237
  <!-- not in PPMS because it is a sub-module of iScroll -->
238
238
  </lib>
239
- <lib name="swipeview" displayName="cubiq.org - swipeview" version="1.0" homepage="https://github.com/cubiq/SwipeView/" id="73554900106100001918">
239
+ <lib name="swipeview" displayName="cubiq.org - swipeview" npmName="n/a" version="1.0" hash="1fd389111f3853ad478b8c8d8b733ee5" homepage="https://github.com/cubiq/SwipeView/" id="73554900106100001918">
240
240
  <license url="https://github.com/cubiq/SwipeView/blob/master/license.txt" type="MIT" />
241
241
  <copyright>2012 Matteo Spinelli</copyright>
242
242
  <pattern>sap/ui/thirdparty/swipe-view.js</pattern>
243
243
  </lib>
244
- <lib name="mobify" displayName="Mobify.js" version="1.1" homepage="http://www.mobify.com/mobifyjs/" id="73554900106100005548">
244
+ <lib name="mobify" displayName="Mobify.js" npmName="n/a" version="1.1" hash="6cf018dcb734b22f96f3485d6ad2ac13" homepage="http://www.mobify.com/mobifyjs/" id="73554900106100005548">
245
245
  <license url="http://www.mobify.com/mobifyjs/license/" type="MIT" file="../thirdparty/licenses/mobify-MIT-LICENSE.txt" />
246
246
  <copyright>Mobify R&amp;D Inc.</copyright>
247
247
  <pattern>sap/ui/thirdparty/mobify-carousel.js</pattern>
248
248
  </lib>
249
- <lib name="zynga" displayName="Zynga Scroller" version="1.2.1-0-g5d43806" homepage="http://zynga.github.com/scroller/" id="73554900106100001940">
249
+ <lib name="zynga" displayName="Zynga Scroller" npmName="n/a" version="1.2.1-0-g5d43806" hash="ed56a75783e6f24f8eefc6e625bc496f" homepage="http://zynga.github.com/scroller/" id="73554900106100001940">
250
250
  <license url="https://github.com/pbakaus/scroller/blob/master/LICENSE.txt" type="MIT" />
251
251
  <copyright>2011 Zynga Inc.</copyright>
252
252
  <pattern>sap/ui/thirdparty/zyngascroll.js</pattern>
253
253
  </lib>
254
- <lib name="less" displayName="LESS" version="1.6.3" homepage="http://lesscss.org/" id="73555000106100001897">
254
+ <lib name="less" displayName="LESS" npmName="less" version="1.6.3" hash="fb7893fd45c3d4c4b43242f7b7879977" homepage="http://lesscss.org/" id="73555000106100001897">
255
255
  <!-- there is also a copy of LESS outside the libraries, listed in the .repo file -->
256
256
  <license url="https://raw.github.com/cloudhead/less.js/master/LICENSE" type="Apache-2.0" />
257
257
  <copyright>2009-2014, Alexis Sellier</copyright>
258
258
  <pattern>sap/ui/thirdparty/less.js</pattern>
259
259
  </lib>
260
- <lib name="datajs" displayName="DataJS" version="unknown" homepage="http://datajs.codeplex.com/" id="73554900106100001652">
260
+ <lib name="datajs" displayName="DataJS" npmName="n/a" version="unknown" hash="0df06fd64d1ebdeb81cdd00d1cf04494" homepage="http://datajs.codeplex.com/" id="73554900106100001652">
261
261
  <!-- hints in the source code suggest this is version 1.1.0 with fixes from 1.1.1.beta2,
262
262
  but it could also be version 1.1.2 as modeled in PPMS -->
263
263
  <license url="http://datajs.codeplex.com/license" type="MIT" />
264
264
  <copyright>2011 Microsoft</copyright>
265
265
  <pattern>sap/ui/thirdparty/datajs.js</pattern>
266
266
  </lib>
267
- <lib name="d3" displayName="D3" version="3.4.12" homepage="http://d3js.org/" id="73554900106100001165">
267
+ <lib name="d3" displayName="D3" npmName="d3" version="3.4.12" hash="67f31efab40ccd934c9475b323f84260" homepage="http://d3js.org/" id="73554900106100001165">
268
268
  <license url="https://raw.github.com/mbostock/d3/master/LICENSE" type="BSD-3-Clause" />
269
269
  <copyright>2010-2014 Michael Bostock</copyright>
270
270
  <pattern>sap/ui/thirdparty/d3.js</pattern>
271
271
  </lib>
272
- <lib name="jszip" displayName="JSZip" version="2.2.0" homepage="http://stuartk.com/jszip/" id="73554900106100005531">
272
+ <lib name="jszip" displayName="JSZip" npmName="jszip" version="2.2.0" hash="a5402e9bb617f807e6f0af5b7cb9aab1" homepage="http://stuartk.com/jszip/" id="73554900106100005531">
273
273
  <license url="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown" type="MIT" />
274
274
  <copyright>2009-2014 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso</copyright>
275
275
  <pattern>sap/ui/thirdparty/jszip.js</pattern>
276
276
  </lib>
277
- <lib name="caja" displayName="Google-Caja JS HTML Sanitizer" version="Build 4884" homepage="http://code.google.com/p/google-caja/wiki/JsHtmlSanitizer" id="73554900106100001928">
277
+ <lib name="caja" displayName="Google-Caja JS HTML Sanitizer" npmName="n/a" version="Build 4884" hash="b83416d152b043dbf83f88b0e8b16f1a" homepage="http://code.google.com/p/google-caja/wiki/JsHtmlSanitizer" id="73554900106100001928">
278
278
  <license url="http://www.apache.org/licenses/LICENSE-2.0" type="Apache-2.0" />
279
279
  <copyright>Google Inc.</copyright>
280
280
  <pattern>sap/ui/thirdparty/caja-html-sanitizer.js</pattern>
281
281
  </lib>
282
- <lib name="cldr" displayName="Unicode Common Locale Data Repository" version="35.1" homepage="http://cldr.unicode.org/" id="73555000106100020909">
282
+ <lib name="cldr" displayName="Unicode Common Locale Data Repository" npmName="cldr-core" version="35.1" hash="067ae9f41caa6ebbe9a736b9bd64bc5e" homepage="http://cldr.unicode.org/" id="73555000106100020909">
283
283
  <license url="http://www.unicode.org/copyright.html" type="Unicode-DFS-2015" />
284
284
  <copyright>1991-2014 Unicode, Inc.</copyright>
285
285
  <pattern>sap/ui/core/cldr/*</pattern>
286
286
  </lib>
287
- <lib name="mobiscroll" displayName="MobiScroll" version="2.9.0" homepage="http://mobiscroll.com" id="73554900106100005562">
287
+ <lib name="mobiscroll" displayName="MobiScroll" npmName="n/a" version="2.9.0" hash="2a76d1439bbc5afaf10324b2108e4d9c" homepage="http://mobiscroll.com" id="73554900106100005562">
288
288
  <license url="http://opensource.org/licenses/mit-license.php" type="MIT" />
289
289
  <copyright>2010-2013, Acid Media</copyright>
290
290
  <pattern>sap/ui/thirdparty/mobiscroll/*</pattern>
291
291
  </lib>
292
- <lib name="sinonjs" displayName="SinonJS" version="1.14.1" homepage="http://sinonjs.org" id="73554900106100005532">
292
+ <lib name="sinonjs" displayName="SinonJS" npmName="sinon" version="1.14.1" hash="5bbc65549709e5c7adc2df0c38ba966a" homepage="http://sinonjs.org" id="73554900106100005532">
293
293
  <license url="https://raw.github.com/cjohansen/Sinon.JS/master/LICENSE" type="BSD-3-Clause" />
294
294
  <copyright>2010-2014, Christian Johansen, christian@cjohansen.no</copyright>
295
295
  <pattern>sap/ui/thirdparty/sinon.js</pattern>
296
296
  <pattern>sap/ui/thirdparty/sinon-server.js</pattern>
297
297
  </lib>
298
- <lib name="sinonjs4" displayName="SinonJS" version="4.4.6" homepage="http://sinonjs.org" id="73555000106100012145">
298
+ <lib name="sinonjs4" displayName="SinonJS" npmName="sinon" version="4.4.6" hash="927f92252e061294b7b2b80835c2966d" homepage="http://sinonjs.org" id="73555000106100012145">
299
299
  <license url="https://raw.github.com/cjohansen/Sinon.JS/master/LICENSE" type="BSD-3-Clause" />
300
300
  <copyright>2010-2017, Christian Johansen, christian@cjohansen.no</copyright>
301
301
  <pattern>sap/ui/thirdparty/sinon-4.js</pattern>
302
302
  </lib>
303
- <lib name="sinonjs14" displayName="SinonJS 14" version="14.0.0" homepage="http://sinonjs.org" id="73554900106100134880">
303
+ <lib name="sinonjs14" displayName="SinonJS 14" npmName="sinon" version="14.0.0" hash="55c6c2bd99ee9698685c47d9f2fb19a5" homepage="http://sinonjs.org" id="73554900106100134880">
304
304
  <license url="https://raw.github.com/cjohansen/Sinon.JS/master/LICENSE" type="BSD-3-Clause" />
305
305
  <copyright>2010-2022, Christian Johansen, christian@cjohansen.no</copyright>
306
306
  <pattern>../test/sap/ui/core/qunit/thirdparty/sinon-14.0.js</pattern>
307
307
  </lib>
308
- <lib name="sinon-qunit" displayName="Sinon-qunit" version="2.0.0" homepage="http://sinonjs.org" id="73554900106100005534">
308
+ <lib name="sinon-qunit" displayName="Sinon-qunit" npmName="sinon-qunit" version="2.0.0" hash="513b42becaeb0164dbbbb7e632dcac5d" homepage="http://sinonjs.org" id="73554900106100005534">
309
309
  <license url="https://raw.github.com/cjohansen/Sinon.JS/master/LICENSE" type="BSD-3-Clause" />
310
310
  <copyright>2010-2011, Christian Johansen</copyright>
311
311
  <pattern>sap/ui/thirdparty/sinon-qunit.js</pattern>
312
312
  </lib>
313
- <lib name="urijs" displayName="URI.js" version="1.19.11" homepage="http://medialize.github.com/URI.js/" id="73554900106100127022">
313
+ <lib name="urijs" displayName="URI.js" npmName="urijs" version="1.19.11" hash="6fa718e3b9b47eced2a0e212763f3a2b" homepage="http://medialize.github.com/URI.js/" id="73554900106100127022">
314
314
  <license url="http://opensource.org/licenses/mit-license" type="MIT" />
315
315
  <copyright>Rodney Rehm</copyright>
316
316
  <pattern>sap/ui/thirdparty/URI.js</pattern>
@@ -318,101 +318,101 @@
318
318
  <pattern>sap/ui/thirdparty/SecondLevelDomains.js</pattern>
319
319
  <pattern>sap/ui/thirdparty/IPv6.js</pattern>
320
320
  </lib>
321
- <lib name="punycodejs" displayName="punycode.js" version="1.4.0" homepage="https://github.com/bestiejs/punycode.js/" id="73554900106100045016">
321
+ <lib name="punycodejs" displayName="punycode.js" npmName="punycode" version="1.4.0" hash="7c8d076b2b4ebcfe0966bda2e42c133d" homepage="https://github.com/bestiejs/punycode.js/" id="73554900106100045016">
322
322
  <license url="https://github.com/bestiejs/punycode.js/blob/master/LICENSE-MIT.txt" type="MIT" />
323
323
  <copyright>Mathias Bynens</copyright>
324
324
  <pattern>sap/ui/thirdparty/punycode.js</pattern>
325
325
  </lib>
326
- <lib name="handlebars" displayName="handlebars" version="4.7.7" homepage="http://handlebarsjs.com/" id="73555000106100058827">
326
+ <lib name="handlebars" displayName="handlebars" npmName="handlebars" version="4.7.7" hash="f31c0c3e00864e12df33939cf24ee286" homepage="http://handlebarsjs.com/" id="73555000106100058827">
327
327
  <license url="https://github.com/handlebars-lang/handlebars.js/" type="MIT" />
328
328
  <copyright>2011-2019 by Yehuda Katz</copyright>
329
329
  <pattern>sap/ui/thirdparty/handlebars.js</pattern>
330
330
  </lib>
331
- <lib name="requirejs" displayName="requireJS" version="2.1.8" homepage="http://requirejs.org" id="73554900106100002036">
331
+ <lib name="requirejs" displayName="requireJS" npmName="requirejs" version="2.1.8" hash="5f6ee5f00610f2ef63c448eeb9c5a435" homepage="http://requirejs.org" id="73554900106100002036">
332
332
  <license url="https://github.com/jrburke/requirejs/blob/master/LICENSE" type="MIT" />
333
333
  <copyright>2010-2012, The Dojo Foundation</copyright>
334
334
  <pattern>sap/ui/thirdparty/require.js</pattern>
335
335
  </lib>
336
- <lib name="crossroadsjs" displayName="crossroads.js" version="0.12.0" homepage="https://github.com/millermedeiros/crossroads.js" id="73554900106100005551">
336
+ <lib name="crossroadsjs" displayName="crossroads.js" npmName="crossroads" version="0.12.0" hash="7a65d229bbecf1e40455b3c1e88f0490" homepage="https://github.com/millermedeiros/crossroads.js" id="73554900106100005551">
337
337
  <license url="http://opensource.org/licenses/mit-license.php" type="MIT" />
338
338
  <copyright>Miller Medeiros</copyright>
339
339
  <pattern>sap/ui/thirdparty/crossroads.js</pattern>
340
340
  </lib>
341
- <lib name="hasherjs" displayName="hasher.js" version="1.2.0" homepage="https://github.com/millermedeiros/Hasher" id="73554900106100002228">
341
+ <lib name="hasherjs" displayName="hasher.js" npmName="hasher" version="1.2.0" hash="d25245b03c1994b75d306896a6a98936" homepage="https://github.com/millermedeiros/Hasher" id="73554900106100002228">
342
342
  <license url="http://opensource.org/licenses/mit-license.php" type="MIT" />
343
343
  <copyright>Miller Medeiros</copyright>
344
344
  <pattern>sap/ui/thirdparty/hasher.js</pattern>
345
345
  </lib>
346
- <lib name="jssignals" displayName="JS-Signals" version="1.0.0" homepage="http://millermedeiros.github.io/js-signals/" id="73554900106100005560">
346
+ <lib name="jssignals" displayName="JS-Signals" npmName="signals" version="1.0.0" hash="c34e89f1b894cea6a89bb452376785a0" homepage="http://millermedeiros.github.io/js-signals/" id="73554900106100005560">
347
347
  <license url="http://opensource.org/licenses/mit-license.php" type="MIT" />
348
348
  <copyright>Miller Medeiros</copyright>
349
349
  <pattern>sap/ui/thirdparty/signals.js</pattern>
350
350
  </lib>
351
- <lib name="blanket" displayName="blanket.js" version="1.1.5" homepage="http://blanketjs.org/" id="73554900106100002118">
351
+ <lib name="blanket" displayName="blanket.js" npmName="blanket" version="1.1.5" hash="725a2c0a5157383a26657ebdf511742e" homepage="http://blanketjs.org/" id="73554900106100002118">
352
352
  <license url="https://github.com/alex-seville/blanket/blob/master/LICENSE" type="MIT" />
353
353
  <copyright>2013 Alex Seville</copyright>
354
354
  <pattern>sap/ui/thirdparty/blanket.js</pattern>
355
355
  </lib>
356
- <lib name="json-in-js" displayName="JSON in JS" version="ff55d8d451" homepage="https://github.com/douglascrockford/JSON-js" id="73554900106100003740">
356
+ <lib name="json-in-js" displayName="JSON in JS" npmName="n/a" version="ff55d8d451" homepage="https://github.com/douglascrockford/JSON-js" id="73554900106100003740">
357
357
  <license url="https://github.com/douglascrockford/JSON-js/blob/master/json2.js" type="LicenseRef-JSONinJSPublicDomain" />
358
358
  <copyright>Douglas Crockford</copyright>
359
359
  <pattern partial="true" otherContent="SAP" explanation="JSTokenizer.js is overall written by SAP, but contains code has been taken from the component JSON in JavaScript (https://github.com/douglascrockford/JSON-js/blob/master/json2.js) from Douglas Crockford which is licensed under Public Domain">sap/base/util/JSTokenizer.js</pattern>
360
360
  </lib>
361
- <lib name="tdop" displayName="Top Down Operator Precedence" version="unknown" homepage="https://github.com/douglascrockford/TDOP" id="73554900106100005552">
361
+ <lib name="tdop" displayName="Top Down Operator Precedence" npmName="n/a" version="unknown" homepage="https://github.com/douglascrockford/TDOP" id="73554900106100005552">
362
362
  <license url="http://www.apache.org/licenses/LICENSE-2.0" type="Apache-2.0" />
363
363
  <comment>License granted to SAP by Douglas Crockford</comment>
364
364
  <!-- there was mail exchange to get the module granted under Apache license -->
365
365
  <copyright>2010 Douglas Crockford</copyright>
366
366
  <pattern partial="true" otherContent="SAP" explanation="ExpressionParser.js is overall written by SAP, but contains code taken from or inspired by TDOP by Douglas Crockford (see the respective comment)">sap/ui/base/ExpressionParser.js</pattern>
367
367
  </lib>
368
- <lib name="klayjs" displayName="KLayJS" version="0.4.1" homepage="https://github.com/OpenKieler/klayjs" id="73554900106100012704">
368
+ <lib name="klayjs" displayName="KLayJS" npmName="klayjs" version="0.4.1" hash="2c56e7f04ee755e549f41a9547940a30" homepage="https://github.com/OpenKieler/klayjs" id="73554900106100012704">
369
369
  <license url="https://github.com/OpenKieler/klayjs/blob/master/LICENSE" type="EPL-1.0" />
370
370
  <copyright>Ulf Rueegg</copyright>
371
371
  <pattern>sap/ui/thirdparty/klay.js</pattern>
372
372
  </lib>
373
- <lib name="bignumber" displayName="bignumber.js" version="6.0.0" homepage="https://github.com/MikeMcl/bignumber.js" id="73555000106100012902">
373
+ <lib name="bignumber" displayName="bignumber.js" npmName="bignumber.js" version="6.0.0" hash="0fe1f6497d627ce6bff835a1e4cc5caa" homepage="https://github.com/MikeMcl/bignumber.js" id="73555000106100012902">
374
374
  <license url="https://github.com/MikeMcl/bignumber.js/blob/master/LICENCE" type="MIT" />
375
375
  <copyright>2018 Michael Mclaughlin</copyright>
376
376
  <pattern>sap/ui/thirdparty/bignumber.js</pattern>
377
377
  </lib>
378
- <lib name="lodash" displayName="lodash" version="4.17.21" homepage="https://github.com/lodash/lodash" id="73555000106100057925">
378
+ <lib name="lodash" displayName="lodash" npmName="lodash" version="4.17.21" hash="5ad8f4060a27fe02e24d21567ca45ea5" homepage="https://github.com/lodash/lodash" id="73555000106100057925">
379
379
  <license url="https://github.com/lodash/lodash/blob/master/LICENSE" type="MIT" />
380
380
  <copyright>OpenJS Foundation and other contributors</copyright>
381
381
  <pattern>sap/base/util/restricted/_/lodash.custom.js</pattern>
382
382
  </lib>
383
- <lib name="hyphenopoly" displayName="Hyphenopoly" version="3.4.0" homepage="https://github.com/mnater/Hyphenopoly" id="73555000106100074224">
383
+ <lib name="hyphenopoly" displayName="Hyphenopoly" npmName="hyphenopoly" version="3.4.0" hash="cc7f1e6a04746091b382c81810f5bc84" homepage="https://github.com/mnater/Hyphenopoly" id="73555000106100074224">
384
384
  <license url="https://github.com/mnater/Hyphenopoly/blob/master/LICENSE" type="MIT" />
385
385
  <copyright>2021 Mathias Nater</copyright>
386
386
  <pattern>sap/ui/thirdparty/hyphenopoly/*</pattern>
387
387
  </lib>
388
- <lib name="p-cancelable" displayName="p-cancelable" version="2.0.0" homepage="https://github.com/sindresorhus/p-cancelable/tree/v2.0.0" id="73555000106100034052">
388
+ <lib name="p-cancelable" displayName="p-cancelable" npmName="p-cancelable" version="2.0.0" homepage="https://github.com/sindresorhus/p-cancelable/tree/v2.0.0" id="73555000106100034052">
389
389
  <license url="https://github.com/sindresorhus/p-cancelable/blob/v2.0.0/license" type="MIT" />
390
390
  <copyright>Sindre Sorhus &lt;sindresorhus@gmail.com&gt;</copyright>
391
391
  <pattern partial="true" otherContent="@babel/helpers" explanation="_CancelablePromise.js is derived from p-cancelable by Sindre Sorhus and was transpiled with Babel, so the resulting file contains Babel code fragments">sap/base/util/restricted/_CancelablePromise.js</pattern>
392
392
  </lib>
393
- <lib name="@babel/helpers" displayName="@babel/helpers" version="7.10.4" homepage="https://github.com/babel/babel/tree/v7.10.4" id="73555000106100041674">
393
+ <lib name="@babel/helpers" displayName="@babel/helpers" npmName="@babel/helpers" version="7.10.4" homepage="https://github.com/babel/babel/tree/v7.10.4" id="73555000106100041674">
394
394
  <license url="https://github.com/babel/babel/blob/v7.10.4/LICENSE" type="MIT" />
395
395
  <copyright>2014-present Sebastian McKenzie and other contributors</copyright>
396
396
  <pattern partial="true" otherContent="p-cancelable" explanation="_CancelablePromise.js is derived from p-cancelable by Sindre Sorhus and was transpiled with Babel, so the resulting file contains Babel code fragments">sap/base/util/restricted/_CancelablePromise.js</pattern>
397
397
  <!-- Babel transformation added some helper code, hence Babel is mentioned here -->
398
398
  </lib>
399
- <lib name="jalaali" displayName="Jalaali JS" version="unknown" homepage="https://github.com/jalaali/jalaali-js/" id="73555000106100004826">
399
+ <lib name="jalaali" displayName="Jalaali JS" npmName="n/a" version="unknown" homepage="https://github.com/jalaali/jalaali-js/" id="73555000106100004826">
400
400
  <!-- version modeled in PPMS: 1.1.0 -->
401
401
  <license url="https://github.com/jalaali/jalaali-js/blob/master/LICENSE" type="MIT" />
402
402
  <copyright>Behrang Norouzinia</copyright>
403
403
  <pattern partial="true" otherContent="SAP" explanation="Persian.js is overall written by SAP, but the calculation is taken from jalaali-js">sap/ui/core/date/Persian.js</pattern>
404
404
  </lib>
405
- <lib name="vkbeautify" displayName="vkBeautify" version="0.99.00.beta" homepage="http://www.eslinstructor.net/vkbeautify/" id="73554900106100001834">
405
+ <lib name="vkbeautify" displayName="vkBeautify" npmName="n/a" version="0.99.00.beta" hash="699860673e5397142998aea71bbea904" homepage="http://www.eslinstructor.net/vkbeautify/" id="73554900106100001834">
406
406
  <license url="https://github.com/vkiryukhin/vkBeautify/blob/master/LICENSE" type="MIT" />
407
407
  <copyright>2012 Vadim Kiryukhin</copyright>
408
408
  <pattern>sap/ui/thirdparty/vkbeautify.js</pattern>
409
409
  </lib>
410
- <lib name="node-lru-cache" displayName="node-lru-cache" version="2.7.3" homepage="https://github.com/isaacs/node-lru-cache" id="73554900106100008214">
410
+ <lib name="node-lru-cache" displayName="node-lru-cache" npmName="lru-cache" version="2.7.3" homepage="https://github.com/isaacs/node-lru-cache" id="73554900106100008214">
411
411
  <license url="https://github.com/isaacs/node-lru-cache/blob/master/LICENSE" type="ISC" />
412
412
  <copyright>Isaac Z. Schlueter and Contributors</copyright>
413
413
  <pattern partial="true" otherContent="SAP" explanation="LRUPersistentCache.js is overall written by SAP, but portions ('Least Recently Used' logic) are taken from the node-lru-cache project (see https://github.com/isaacs/node-lru-cache/blob/v2.7.3/README.md) and modified.">sap/ui/core/cache/LRUPersistentCache.js</pattern>
414
414
  </lib>
415
- <lib name="tzdata" displayName="Time Zone Database" version="2022a" homepage="http://www.iana.org/time-zones" id="73554900106100123193">
415
+ <lib name="tzdata" displayName="Time Zone Database" npmName="n/a" version="2022a" homepage="http://www.iana.org/time-zones" id="73554900106100123193">
416
416
  <license url="https://github.com/eggert/tz/blob/main/LICENSE" type="LicenseRef-tzdata-PublicDomain" />
417
417
  <copyright>Arthur David Olson, Paul Eggert and other contributors</copyright>
418
418
  <pattern partial="true" otherContent="SAP" explanation="_timezones.js is overall written by SAP, but the list of IANA timezone IDs is taken from the Timezone Database">../test/sap/ui/core/qunit/i18n/helper/_timezones.js</pattern>
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  * Provides methods to show or hide a waiting animation covering the whole
39
39
  * page and blocking user interaction.
40
40
  * @namespace
41
- * @version 1.107.1
41
+ * @version 1.108.1
42
42
  * @public
43
43
  * @alias sap.ui.core.BusyIndicator
44
44
  */
@@ -25,17 +25,28 @@ sap.ui.define(['./BlockLayerUtils', 'sap/ui/core/library'],
25
25
  * Returns the HTML content for the busy indicator
26
26
  * styling + animation: LocalBusyIndicator.less
27
27
  *
28
- * @param {string} sSize either "Large" or "Medium". Other sizes will be mapped to "Medium"
28
+ * @param {string} sSize either "Large", "Medium" or "Section". Other sizes will be mapped to "Medium"
29
29
  * @returns {Element} the element for the busy indicator
30
30
  * @private
31
31
  * @ui5-restricted sap.ui.core, sap.chart
32
32
  */
33
33
  BusyIndicatorUtils.getElement = function(sSize) {
34
- //default size is medium
35
- var sSizeClass = "sapUiLocalBusyIndicatorSizeMedium";
34
+ var sSizeClass;
36
35
 
37
- if (sSize === "Large") {
38
- sSizeClass = "sapUiLocalBusyIndicatorSizeBig";
36
+ switch (sSize) {
37
+ case BusyIndicatorSize.Large:
38
+ sSizeClass = "sapUiLocalBusyIndicatorSizeBig sapUiLocalBusyIndicatorShowContainer";
39
+ break;
40
+ case BusyIndicatorSize.Medium:
41
+ sSizeClass = "sapUiLocalBusyIndicatorSizeMedium";
42
+ break;
43
+ case BusyIndicatorSize.Section:
44
+ sSizeClass = "sapUiLocalBusyIndicatorSizeSection sapUiLocalBusyIndicatorShowContainer";
45
+ break;
46
+ default:
47
+ //default size is medium
48
+ sSizeClass = "sapUiLocalBusyIndicatorSizeMedium";
49
+ break;
39
50
  }
40
51
 
41
52
  var oContainer = document.createElement("div");
@@ -86,16 +97,19 @@ sap.ui.define(['./BlockLayerUtils', 'sap/ui/core/library'],
86
97
  * @see sap.ui.core.BusyIndicatorSize
87
98
  */
88
99
  BusyIndicatorUtils.addHTML = function (oBusyBlockState, sSize) {
89
- var sSizeClass = "sapUiLocalBusyIndicatorSizeMedium",
90
- sAnimationSizeClass;
100
+ var sSizeClass, sAnimationSizeClass;
91
101
 
92
102
  switch (sSize) {
93
103
  case BusyIndicatorSize.Small:
94
104
  sSizeClass = "sapUiLocalBusyIndicatorSizeMedium";
95
105
  sAnimationSizeClass = "sapUiLocalBusyIndicatorAnimSmall";
96
106
  break;
107
+ case BusyIndicatorSize.Section:
108
+ sSizeClass = "sapUiLocalBusyIndicatorSizeSection sapUiLocalBusyIndicatorShowContainer";
109
+ sAnimationSizeClass = "sapUiLocalBusyIndicatorAnimStandard ";
110
+ break;
97
111
  case BusyIndicatorSize.Large:
98
- sSizeClass = "sapUiLocalBusyIndicatorSizeBig";
112
+ sSizeClass = "sapUiLocalBusyIndicatorSizeBig sapUiLocalBusyIndicatorShowContainer";
99
113
  sAnimationSizeClass = "sapUiLocalBusyIndicatorAnimStandard";
100
114
  break;
101
115
  case BusyIndicatorSize.Auto: