@openui5/sap.ui.core 1.130.1 → 1.131.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 (313) hide show
  1. package/THIRDPARTY.txt +1 -1
  2. package/package.json +1 -1
  3. package/src/jquery.sap.global.js +1 -1
  4. package/src/jquery.sap.properties.js +1 -1
  5. package/src/jquery.sap.resources.js +1 -1
  6. package/src/jquery.sap.script.js +1 -1
  7. package/src/jquery.sap.storage.js +3 -3
  8. package/src/sap/base/Event.js +1 -1
  9. package/src/sap/base/Eventing.js +3 -2
  10. package/src/sap/base/config.js +1 -1
  11. package/src/sap/base/i18n/LanguageTag.js +1 -1
  12. package/src/sap/base/i18n/date/CalendarType.js +3 -1
  13. package/src/sap/base/i18n/date/CalendarWeekNumbering.js +3 -1
  14. package/src/sap/base/i18n/date/TimezoneUtils.js +1 -1
  15. package/src/sap/base/i18n/date/_EnumHelper.js +43 -0
  16. package/src/sap/base/util/clamp.js +26 -0
  17. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  18. package/src/sap/base/util/restricted/_castArray.js +1 -1
  19. package/src/sap/base/util/restricted/_compact.js +1 -1
  20. package/src/sap/base/util/restricted/_curry.js +1 -1
  21. package/src/sap/base/util/restricted/_debounce.js +1 -1
  22. package/src/sap/base/util/restricted/_difference.js +1 -1
  23. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  24. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  25. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  26. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  27. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  28. package/src/sap/base/util/restricted/_flatten.js +1 -1
  29. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  30. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  31. package/src/sap/base/util/restricted/_intersection.js +1 -1
  32. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  33. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  34. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  35. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  36. package/src/sap/base/util/restricted/_isNil.js +1 -1
  37. package/src/sap/base/util/restricted/_max.js +1 -1
  38. package/src/sap/base/util/restricted/_merge.js +1 -1
  39. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  40. package/src/sap/base/util/restricted/_min.js +1 -1
  41. package/src/sap/base/util/restricted/_omit.js +1 -1
  42. package/src/sap/base/util/restricted/_pick.js +1 -1
  43. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  44. package/src/sap/base/util/restricted/_throttle.js +1 -1
  45. package/src/sap/base/util/restricted/_toArray.js +1 -1
  46. package/src/sap/base/util/restricted/_union.js +1 -1
  47. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  48. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  49. package/src/sap/base/util/restricted/_uniq.js +1 -1
  50. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  51. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  52. package/src/sap/base/util/restricted/_without.js +1 -1
  53. package/src/sap/base/util/restricted/_xor.js +1 -1
  54. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  55. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  56. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  57. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  58. package/src/sap/ui/Device.js +11 -8
  59. package/src/sap/ui/Global.js +3 -3
  60. package/src/sap/ui/base/BindingInfo.js +4 -2
  61. package/src/sap/ui/base/DataType.js +7 -2
  62. package/src/sap/ui/base/Event.js +1 -1
  63. package/src/sap/ui/base/EventProvider.js +1 -1
  64. package/src/sap/ui/base/Interface.js +1 -1
  65. package/src/sap/ui/base/ManagedObject.js +1 -1
  66. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  67. package/src/sap/ui/base/Metadata.js +1 -1
  68. package/src/sap/ui/base/Object.js +1 -1
  69. package/src/sap/ui/base/ObjectPool.js +1 -1
  70. package/src/sap/ui/core/.library +3 -3
  71. package/src/sap/ui/core/BlockLayerUtils.js +17 -29
  72. package/src/sap/ui/core/BusyIndicator.js +2 -15
  73. package/src/sap/ui/core/BusyIndicatorUtils.js +34 -3
  74. package/src/sap/ui/core/Component.js +1 -1
  75. package/src/sap/ui/core/ComponentContainer.js +1 -1
  76. package/src/sap/ui/core/ComponentMetadata.js +1 -1
  77. package/src/sap/ui/core/ComponentSupport.js +1 -1
  78. package/src/sap/ui/core/Configuration.js +1 -1
  79. package/src/sap/ui/core/ContextMenuSupport.js +2 -1
  80. package/src/sap/ui/core/Control.js +46 -10
  81. package/src/sap/ui/core/ControlBehavior.js +14 -18
  82. package/src/sap/ui/core/Core.js +2 -2
  83. package/src/sap/ui/core/CustomData.js +1 -1
  84. package/src/sap/ui/core/DeclarativeSupport.js +1 -1
  85. package/src/sap/ui/core/Element.js +230 -32
  86. package/src/sap/ui/core/ElementMetadata.js +1 -1
  87. package/src/sap/ui/core/EnabledPropagator.js +4 -4
  88. package/src/sap/ui/core/EventBus.js +1 -1
  89. package/src/sap/ui/core/FocusMode.js +28 -0
  90. package/src/sap/ui/core/Fragment.js +1 -1
  91. package/src/sap/ui/core/HTML.js +1 -1
  92. package/src/sap/ui/core/History.js +1 -1
  93. package/src/sap/ui/core/Icon.js +1 -1
  94. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  95. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  96. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  97. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  98. package/src/sap/ui/core/InvisibleText.js +1 -1
  99. package/src/sap/ui/core/Item.js +1 -1
  100. package/src/sap/ui/core/LabelEnablement.js +1 -1
  101. package/src/sap/ui/core/LayoutData.js +1 -1
  102. package/src/sap/ui/core/ListItem.js +1 -1
  103. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  104. package/src/sap/ui/core/Locale.js +1 -1
  105. package/src/sap/ui/core/LocaleData.js +3 -3
  106. package/src/sap/ui/core/Manifest.js +2 -2
  107. package/src/sap/ui/core/Message.js +1 -1
  108. package/src/sap/ui/core/Popup.js +12 -0
  109. package/src/sap/ui/core/RenderManager.js +4 -1
  110. package/src/sap/ui/core/Renderer.js +1 -1
  111. package/src/sap/ui/core/ResizeHandler.js +1 -1
  112. package/src/sap/ui/core/ScrollBar.js +1 -1
  113. package/src/sap/ui/core/SeparatorItem.js +1 -1
  114. package/src/sap/ui/core/Title.js +1 -1
  115. package/src/sap/ui/core/TooltipBase.js +1 -1
  116. package/src/sap/ui/core/UIArea.js +1 -1
  117. package/src/sap/ui/core/UIComponent.js +1 -1
  118. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  119. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  120. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  121. package/src/sap/ui/core/XMLComposite.js +1 -1
  122. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  123. package/src/sap/ui/core/_IconRegistry.js +1 -0
  124. package/src/sap/ui/core/cldr/ca.json +1 -1
  125. package/src/sap/ui/core/cldr/cs.json +1 -1
  126. package/src/sap/ui/core/cldr/es.json +2 -2
  127. package/src/sap/ui/core/cldr/es_AR.json +2 -2
  128. package/src/sap/ui/core/cldr/es_BO.json +2 -2
  129. package/src/sap/ui/core/cldr/es_CL.json +2 -2
  130. package/src/sap/ui/core/cldr/es_CO.json +2 -2
  131. package/src/sap/ui/core/cldr/es_PE.json +2 -2
  132. package/src/sap/ui/core/cldr/es_UY.json +2 -2
  133. package/src/sap/ui/core/cldr/es_VE.json +2 -2
  134. package/src/sap/ui/core/cldr/fi.json +1 -1
  135. package/src/sap/ui/core/cldr/hu.json +1 -1
  136. package/src/sap/ui/core/cldr/id.json +2 -2
  137. package/src/sap/ui/core/cldr/mk.json +2 -2
  138. package/src/sap/ui/core/cldr/tr.json +1 -1
  139. package/src/sap/ui/core/cldr/vi.json +2 -2
  140. package/src/sap/ui/core/date/CalendarWeekNumbering.js +1 -1
  141. package/src/sap/ui/core/date/UI5Date.js +1 -1
  142. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  143. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  144. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  145. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  146. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  147. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  148. package/src/sap/ui/core/fieldhelp/FieldHelpCustomData.js +5 -1
  149. package/src/sap/ui/core/format/FormatUtils.js +1 -1
  150. package/src/sap/ui/core/format/NumberFormat.js +29 -8
  151. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  152. package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
  153. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  154. package/src/sap/ui/core/library.js +23 -19
  155. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  156. package/src/sap/ui/core/message/Message.js +1 -1
  157. package/src/sap/ui/core/message/MessageManager.js +1 -1
  158. package/src/sap/ui/core/message/MessageMixin.js +5 -2
  159. package/src/sap/ui/core/message/MessageParser.js +1 -1
  160. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  161. package/src/sap/ui/core/messagebundle_no.properties +1 -1
  162. package/src/sap/ui/core/mvc/HTMLView.js +1 -1
  163. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  164. package/src/sap/ui/core/mvc/JSView.js +1 -1
  165. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  166. package/src/sap/ui/core/mvc/View.js +1 -1
  167. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  168. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  169. package/src/sap/ui/core/plugin/LessSupport.js +1 -1
  170. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  171. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  172. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  173. package/src/sap/ui/core/routing/Target.js +5 -5
  174. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  175. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  176. package/src/sap/ui/core/service/Service.js +1 -1
  177. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  178. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  179. package/src/sap/ui/core/support/Plugin.js +1 -1
  180. package/src/sap/ui/core/support/Support.js +1 -1
  181. package/src/sap/ui/core/support/bootstrapFallback.js +1 -0
  182. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  183. package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
  184. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  185. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  186. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  187. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  188. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  189. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  190. package/src/sap/ui/core/themes/base/LocalBusyIndicator.less +1 -0
  191. package/src/sap/ui/core/themes/base/base.less +1353 -247
  192. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  193. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  194. package/src/sap/ui/core/themes/base/global.less +32 -0
  195. package/src/sap/ui/core/themes/base/skeleton.less +93 -3
  196. package/src/sap/ui/core/theming/ThemeManager.js +2 -2
  197. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  198. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  199. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  200. package/src/sap/ui/core/tmpl/Template.js +1 -1
  201. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  202. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  203. package/src/sap/ui/core/util/Export.js +1 -1
  204. package/src/sap/ui/core/util/ExportCell.js +1 -1
  205. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  206. package/src/sap/ui/core/util/ExportRow.js +1 -1
  207. package/src/sap/ui/core/util/ExportType.js +1 -1
  208. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  209. package/src/sap/ui/core/util/File.js +1 -1
  210. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  211. package/src/sap/ui/core/util/MockServer.js +1 -1
  212. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  213. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  214. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  215. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  216. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  217. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  218. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  219. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  220. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  221. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  222. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  223. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  224. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  225. package/src/sap/ui/debug/ControlTree.js +1 -1
  226. package/src/sap/ui/debug/DebugEnv.js +1 -1
  227. package/src/sap/ui/debug/PropertyList.js +1 -1
  228. package/src/sap/ui/model/ClientModel.js +1 -1
  229. package/src/sap/ui/model/CompositeDataState.js +1 -1
  230. package/src/sap/ui/model/CompositeType.js +1 -1
  231. package/src/sap/ui/model/DataState.js +1 -1
  232. package/src/sap/ui/model/Filter.js +2 -1
  233. package/src/sap/ui/model/MetaModel.js +1 -1
  234. package/src/sap/ui/model/Model.js +1 -1
  235. package/src/sap/ui/model/SelectionModel.js +1 -1
  236. package/src/sap/ui/model/SimpleType.js +1 -1
  237. package/src/sap/ui/model/Sorter.js +61 -31
  238. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  239. package/src/sap/ui/model/Type.js +1 -1
  240. package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -3
  241. package/src/sap/ui/model/base/ManagedObjectModel.js +1 -1
  242. package/src/sap/ui/model/json/JSONModel.js +1 -1
  243. package/src/sap/ui/model/message/MessageModel.js +1 -1
  244. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  245. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  246. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  247. package/src/sap/ui/model/odata/ODataMetadata.js +16 -6
  248. package/src/sap/ui/model/odata/ODataModel.js +1 -1
  249. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  250. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  251. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  252. package/src/sap/ui/model/odata/type/Date.js +1 -1
  253. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  254. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  255. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  256. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  257. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  258. package/src/sap/ui/model/odata/type/Double.js +1 -1
  259. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  260. package/src/sap/ui/model/odata/type/Int.js +1 -1
  261. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  262. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  263. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  264. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  265. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  266. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  267. package/src/sap/ui/model/odata/type/Single.js +1 -1
  268. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  269. package/src/sap/ui/model/odata/type/String.js +1 -1
  270. package/src/sap/ui/model/odata/type/Time.js +1 -1
  271. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  272. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  273. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  274. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  275. package/src/sap/ui/model/odata/v2/ODataListBinding.js +7 -4
  276. package/src/sap/ui/model/odata/v2/ODataModel.js +14 -10
  277. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
  278. package/src/sap/ui/model/odata/v4/Context.js +1 -1
  279. package/src/sap/ui/model/odata/v4/ODataBinding.js +1 -0
  280. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +6 -1
  281. package/src/sap/ui/model/odata/v4/ODataListBinding.js +66 -6
  282. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +93 -19
  283. package/src/sap/ui/model/odata/v4/ODataModel.js +14 -4
  284. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +3 -1
  285. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +2 -1
  286. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +12 -1
  287. package/src/sap/ui/model/odata/v4/lib/_Cache.js +51 -30
  288. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  289. package/src/sap/ui/model/type/Boolean.js +1 -1
  290. package/src/sap/ui/model/type/Currency.js +1 -1
  291. package/src/sap/ui/model/type/Date.js +1 -1
  292. package/src/sap/ui/model/type/DateInterval.js +1 -1
  293. package/src/sap/ui/model/type/DateTime.js +1 -1
  294. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  295. package/src/sap/ui/model/type/FileSize.js +1 -1
  296. package/src/sap/ui/model/type/Float.js +1 -1
  297. package/src/sap/ui/model/type/Integer.js +1 -1
  298. package/src/sap/ui/model/type/String.js +1 -1
  299. package/src/sap/ui/model/type/Time.js +1 -1
  300. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  301. package/src/sap/ui/model/type/Unit.js +1 -1
  302. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  303. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  304. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  305. package/src/sap/ui/test/OpaBuilder.js +1 -1
  306. package/src/sap/ui/test/autowaiter/_promiseWaiter.js +21 -0
  307. package/src/sap/ui/test/generic/TestBase.js +1 -1
  308. package/src/sap/ui/test/starter/_utils.js +8 -1
  309. package/src/sap/ui/test/starter/createSuite.js +1 -1
  310. package/src/sap/ui/thirdparty/less.js +23 -72
  311. package/src/sap/ui/util/Storage.js +1 -1
  312. package/src/ui5loader.js +9 -4
  313. package/test/sap/ui/qunit/TestRunner.js +2 -0
@@ -13,7 +13,7 @@ sap.ui.define([
13
13
  * Static collection of utility functions to handle time zone related conversions.
14
14
  *
15
15
  * @author SAP SE
16
- * @version 1.130.1
16
+ * @version 1.131.0
17
17
  * @namespace
18
18
  * @name module:sap/ui/core/format/TimezoneUtil
19
19
  * @private
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
 
17
17
  const BASE_CVERS = Version("1.14");
18
18
 
19
- const VERSION = "1.130.1";
19
+ const VERSION = "1.131.0";
20
20
 
21
21
  var M_COMPAT_FEATURES = {
22
22
  "xx-test" : "1.15", //for testing purposes only
@@ -401,7 +401,7 @@ sap.ui.define([
401
401
  * @see {@link topic:6322164936f047de941ec522b95d7b70 Hyphenation for Text Controls}
402
402
  * @extends sap.ui.base.ManagedObject
403
403
  * @author SAP SE
404
- * @version 1.130.1
404
+ * @version 1.131.0
405
405
  * @hideconstructor
406
406
  * @public
407
407
  * @since 1.60
@@ -26,13 +26,13 @@ sap.ui.define([
26
26
  * @namespace
27
27
  * @alias sap.ui.core
28
28
  * @author SAP SE
29
- * @version 1.130.1
29
+ * @version 1.131.0
30
30
  * @since 0.8
31
31
  * @public
32
32
  */
33
33
  var thisLib = Library.init({
34
34
  name: "sap.ui.core",
35
- version: "1.130.1",
35
+ version: "1.131.0",
36
36
  designtime: "sap/ui/core/designtime/library.designtime",
37
37
  apiVersion: 2,
38
38
  types: [
@@ -1609,7 +1609,7 @@ sap.ui.define([
1609
1609
  /**
1610
1610
  * Sort order of a column.
1611
1611
  *
1612
- * @version 1.130.1
1612
+ * @version 1.131.0
1613
1613
  * @enum {string}
1614
1614
  * @public
1615
1615
  * @since 1.61.0
@@ -2042,13 +2042,13 @@ sap.ui.define([
2042
2042
  */
2043
2043
 
2044
2044
  /**
2045
- * Marker interface for controls that can be used as content of <code>sap.ui.layout.form.SemanticFormElement</code>.
2045
+ * Marker interface for controls that can be used as content of {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
2046
2046
  *
2047
2047
  * If the value-holding property of the control is not <code>value</code or <code>text</code>, the name of the
2048
- * value-holding property must be returned in the <code>getFormValueProperty</code> function.
2048
+ * value-holding property must be returned in the {@link sap.ui.core.ISemanticFormContent.getFormValueProperty getFormValueProperty} function.
2049
2049
  *
2050
2050
  * If the value of the control needs some special output formatting (to show a description instead of a key), this
2051
- * formatted text needs to be returned in the <code>getFormFormattedValue</code> function.
2051
+ * formatted text needs to be returned in the {@link sap.ui.core.ISemanticFormContent.getFormFormattedValue getFormFormattedValue} function.
2052
2052
  *
2053
2053
  * @since 1.86.0
2054
2054
  * @name sap.ui.core.ISemanticFormContent
@@ -2057,12 +2057,12 @@ sap.ui.define([
2057
2057
  */
2058
2058
 
2059
2059
  /**
2060
- * Returns the formatted value of a control used in a <code>SemanticFormElement</code>.
2060
+ * Returns the formatted value of a control used in a {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
2061
2061
  *
2062
- * In the <code>SemanticFormElement</code> element, the assigned fields are rendered in edit mode. In display mode, a text
2062
+ * In the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element, the assigned fields are rendered in edit mode. In display mode, a text
2063
2063
  * is rendered that concatenates the values of all assigned fields. In some cases the displayed text does not match the value
2064
2064
  * of the field and needs some formatting. In other cases the control does not have a <code>value</code> property,
2065
- * so the <code>SemanticFormElement</code> element cannot determine the value.
2065
+ * so the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element cannot determine the value.
2066
2066
  *
2067
2067
  * This is an optional method. If not defined, the <code>value</code> property or the <code>text</code> property is used to determine the value.
2068
2068
  *
@@ -2074,12 +2074,12 @@ sap.ui.define([
2074
2074
  */
2075
2075
 
2076
2076
  /**
2077
- * Returns the name of the value-holding property of a control used in a <code>SemanticFormElement</code>.
2077
+ * Returns the name of the value-holding property of a control used in a {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
2078
2078
  *
2079
- * In the <code>SemanticFormElement</code> element, the assigned fields are rendered in edit mode. In display mode, a text
2079
+ * In the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element, the assigned fields are rendered in edit mode. In display mode, a text
2080
2080
  * is rendered that concatenates the values of all assigned fields.
2081
2081
  * So the concatenated text needs to be updated if the value of a control changes. If a control does not have a <code>value</code> property,
2082
- * the <code>SemanticFormElement</code> element needs to know the propery it has to listen for changes.
2082
+ * the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element needs to know the property it has to listen to for changes.
2083
2083
  *
2084
2084
  * This is an optional method. If not defined, the <code>value</code> property or the <code>text</code> property is used to determine the value.
2085
2085
  *
@@ -2091,14 +2091,14 @@ sap.ui.define([
2091
2091
  */
2092
2092
 
2093
2093
  /**
2094
- * Returns the names of the properties of a control that might update the rendering in a <code>SemanticFormElement</code>.
2094
+ * Returns the names of the properties of a control that might update the rendering in a {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
2095
2095
  *
2096
- * In the <code>SemanticFormElement</code> element, the assigned fields are rendered in edit mode. In display mode, depending on <code>getFormRenderAsControl</code>,
2096
+ * In the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element, the assigned fields are rendered in edit mode. In display mode, depending on {@link sap.ui.core.ISemanticFormContent.getFormRenderAsControl getFormRenderAsControl},
2097
2097
  * either a text is rendered, which concatenates the values of all assigned fields, or the control is rendered.
2098
2098
  * So if a property of the control changes that might lead to a different rendering (some controls have a special rendering in display mode), the
2099
- * <code>SemanticFormElement</code> needs to check the rendering.
2099
+ * {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} needs to check the rendering.
2100
2100
  *
2101
- * This is an optional method. If not defined, no check for updates (only for property defined in <code>getFormValueProperty</code>) is done once the control has been assigned.
2101
+ * This is an optional method. If not defined, no check for updates (only for property defined in {@link sap.ui.core.ISemanticFormContent.getFormValueProperty getFormValueProperty}) is done once the control has been assigned.
2102
2102
  *
2103
2103
  * @returns {string[]} Name of the properties
2104
2104
  * @since 1.117.0
@@ -2108,7 +2108,7 @@ sap.ui.define([
2108
2108
  */
2109
2109
 
2110
2110
  /**
2111
- * If set to <code>true</code>, the <code>SemanticFormElement</code> also renders the control in display mode, if the used <code>FormLayout</code> supports this.
2111
+ * If set to <code>true</code>, the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} also renders the control in display mode, if the used {@link sap.ui.layout.form.FormLayout FormLayout} supports this.
2112
2112
  *
2113
2113
  * This is an optional method. If not defined, just the text is rendered.
2114
2114
  *
@@ -2552,7 +2552,7 @@ sap.ui.define([
2552
2552
  if ( sShortcutPkg ) {
2553
2553
  lazy(sShortcutPkg, aClasses[i].toLowerCase(), sPackage + aClasses[i]);
2554
2554
  } else {
2555
- lazy(sPackage + aClasses[i], "new extend getMetadata");
2555
+ lazy(sPackage + aClasses[i], "new extend getMetadata");
2556
2556
  }
2557
2557
  }
2558
2558
  }
@@ -2561,7 +2561,7 @@ sap.ui.define([
2561
2561
  lazy("sap.ui.core.message.MessageManager");
2562
2562
  lazy("sap.ui.core.BusyIndicator", "show hide attachOpen detachOpen attachClose detachClose");
2563
2563
  lazy("sap.ui.core.tmpl.Template", "registerType unregisterType");
2564
- lazy("sap.ui.core.Fragment", "registerType byId createId");
2564
+ lazy("sap.ui.core.Fragment", "registerType byId createId load");
2565
2565
  lazy("sap.ui.core.IconPool", "createControlByURI addIcon getIconURI getIconInfo isIconURI getIconCollectionNames getIconNames getIconForMimeType");
2566
2566
  lazy("sap.ui.core.service.ServiceFactoryRegistry", "register unregister get");
2567
2567
 
@@ -2585,7 +2585,11 @@ sap.ui.define([
2585
2585
  each("sap.ui.model.odata.type.", ["Boolean","Byte","Currency","Date","DateTime","DateTimeOffset","DateTimeWithTimezone","Decimal","Double","Guid","Int16","Int32","Int64","Raw","SByte","Single","Stream","String","Time","TimeOfDay","Unit"]);
2586
2586
  each("sap.ui.core.", ["Locale","LocaleData","mvc.Controller", "UIComponent"]);
2587
2587
  each("sap.ui.core.mvc.", ["Controller", "View", "JSView", "JSONView", "XMLView", "HTMLView", "TemplateView"], "sap.ui");
2588
+ lazy("sap.ui.core.mvc.Controller", "create");
2589
+ lazy("sap.ui.core.mvc.View", "create");
2590
+ lazy("sap.ui.core.mvc.XMLView", "create");
2588
2591
  each("sap.ui.core.", ["Component"], "sap.ui");
2592
+ each("sap.ui.core.Component", "create");
2589
2593
  each("sap.ui.core.tmpl.", ["Template"], "sap.ui");
2590
2594
  each("sap.ui.core.routing.", ["HashChanger", "History", "Route", "Router", "Target", "Targets", "Views"]);
2591
2595
  each("sap.ui.core.service.", ["ServiceFactory", "Service"]);
@@ -29,7 +29,7 @@ sap.ui.define(['sap/ui/core/Element', 'sap/ui/core/message/MessageProcessor'],
29
29
  * @extends sap.ui.core.message.MessageProcessor
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.130.1
32
+ * @version 1.131.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.130.1
38
+ * @version 1.131.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
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * @extends sap.ui.base.Object
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.130.1
40
+ * @version 1.131.0
41
41
  *
42
42
  * @public
43
43
  * @alias sap.ui.core.message.MessageManager
@@ -46,8 +46,11 @@ sap.ui.define(["sap/ui/core/Element", "sap/ui/core/library", "sap/base/Log", "sa
46
46
  // we simply take the first label text and ignore all others
47
47
  var oLabel = Element.getElementById(sLabelId);
48
48
  if (oLabel.getMetadata().isInstanceOf("sap.ui.core.Label") && oLabel.getText) {
49
- if (oMessage.getAdditionalText() !== oLabel.getText()) {
50
- oMessage.setAdditionalText(oLabel.getText());
49
+ let sAdditionalText = oMessage.getAdditionalText();
50
+ const sLabel = oLabel.getText();
51
+ if (!sAdditionalText || !sAdditionalText.includes(sLabel)) {
52
+ sAdditionalText = sAdditionalText ? `${sAdditionalText}, ${sLabel}` : sLabel;
53
+ oMessage.setAdditionalText(sAdditionalText);
51
54
  bForceUpdate = true;
52
55
  }
53
56
  } else {
@@ -17,7 +17,7 @@ sap.ui.define(["sap/ui/base/Object", "sap/base/Log"],
17
17
  * @extends sap.ui.base.Object
18
18
  *
19
19
  * @author SAP SE
20
- * @version 1.130.1
20
+ * @version 1.131.0
21
21
  * @public
22
22
  * @abstract
23
23
  * @alias sap.ui.core.message.MessageParser
@@ -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.130.1
30
+ * @version 1.131.0
31
31
  *
32
32
  * @public
33
33
  * @alias sap.ui.core.message.MessageProcessor
@@ -172,7 +172,7 @@ Icon.flag=Merk
172
172
  Icon.forward=Videresend
173
173
  Icon.full-screen=Aktiver modus for fullt skjermbilde
174
174
  Icon.generate-shortcut=Opprett tilknytning
175
- Icon.group-2=Gruppe
175
+ Icon.group-2=Grupper
176
176
  Icon.hide=Skjul
177
177
  Icon.ipad=Nettbrett
178
178
  Icon.ipad-2=Nettbrett
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * @extends sap.ui.core.mvc.View
44
44
  *
45
45
  * @author SAP SE
46
- * @version 1.130.1
46
+ * @version 1.131.0
47
47
  *
48
48
  * @public
49
49
  * @since 1.9.2
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * @class
44
44
  * A View defined using JSON.
45
45
  * @extends sap.ui.core.mvc.View
46
- * @version 1.130.1
46
+ * @version 1.131.0
47
47
  *
48
48
  * @public
49
49
  * @alias sap.ui.core.mvc.JSONView
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @param {object} [mSettings] initial settings for the new control
28
28
  *
29
29
  * @extends sap.ui.core.mvc.View
30
- * @version 1.130.1
30
+ * @version 1.131.0
31
31
  * @deprecated Since 1.90. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views}
32
32
  * by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and
33
33
  * creating the view instances with {@link sap.ui.core.mvc.View.create View.create}.
@@ -29,7 +29,7 @@ function(View, TemplateViewRenderer, ViewType, Log) {
29
29
  * @extends sap.ui.core.mvc.View
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.130.1
32
+ * @version 1.131.0
33
33
  *
34
34
  * @public
35
35
  * @deprecated Since version 1.56.0, use {@link sap.ui.core.mvc.XMLView} in combination with
@@ -144,7 +144,7 @@ sap.ui.define([
144
144
  * The default implementation of this method returns <code>false</code>.
145
145
  *
146
146
  * @extends sap.ui.core.Control
147
- * @version 1.130.1
147
+ * @version 1.131.0
148
148
  *
149
149
  * @public
150
150
  * @alias sap.ui.core.mvc.View
@@ -113,7 +113,7 @@ sap.ui.define([
113
113
  * bound content aggregation. An error will be thrown when the above combination is detected.
114
114
  *
115
115
  * @extends sap.ui.core.mvc.View
116
- * @version 1.130.1
116
+ * @version 1.131.0
117
117
  *
118
118
  * @public
119
119
  * @alias sap.ui.core.mvc.XMLView
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @see sap.ui.core.DeclarativeSupport
22
22
  * @public
23
23
  * @since 1.7.0
24
- * @version 1.130.1
24
+ * @version 1.131.0
25
25
  * @alias sap.ui.core.plugin.DeclarativeSupport
26
26
  * @deprecated since 1.120
27
27
  */
@@ -44,7 +44,7 @@
44
44
  * feature - DO NOT USE IN PRODUCTIVE SCENARIOS!!
45
45
  *
46
46
  * @author Peter Muessig
47
- * @version 1.130.1
47
+ * @version 1.131.0
48
48
  * @private
49
49
  * @alias sap.ui.core.plugin.LessSupport
50
50
  */
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @public
22
22
  * @since 1.15.0
23
23
  * @deprecated since 1.56, use an {@link sap.ui.core.mvc.XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View} instead
24
- * @version 1.130.1
24
+ * @version 1.131.0
25
25
  * @alias sap.ui.core.plugin.TemplatingSupport
26
26
  */
27
27
  var TemplatingSupport = function() {
@@ -38,7 +38,7 @@ function (
38
38
  * @alias sap.ui.core.postmessage.Bus
39
39
  * @author SAP SE
40
40
  * @since 1.56.0
41
- * @version 1.130.1
41
+ * @version 1.131.0
42
42
  * @private
43
43
  * @ui5-restricted sap.ui.core.support, sap.ui.support, sap.ui.rta
44
44
  */
@@ -13,7 +13,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
13
13
  *
14
14
  * @author SAP SE
15
15
  * @since 1.56.0
16
- * @version 1.130.1
16
+ * @version 1.131.0
17
17
  *
18
18
  * @function
19
19
  * @param {string} sMessage - Dialog message
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
  sap.ui.define([
9
- 'sap/ui/core/Control',
9
+ 'sap/ui/core/Element',
10
10
  'sap/ui/base/EventProvider',
11
11
  'sap/ui/core/mvc/View',
12
12
  'sap/ui/core/routing/async/Target',
@@ -14,7 +14,7 @@ sap.ui.define([
14
14
  "sap/base/Log"
15
15
  ],
16
16
  function(
17
- Control,
17
+ Element,
18
18
  EventProvider,
19
19
  View,
20
20
  asyncTarget,
@@ -30,9 +30,9 @@ sap.ui.define([
30
30
  * @param {object} mSettings configuration object for the TitleProvider
31
31
  * @param {object} mSettings.target Target for which the TitleProvider is created
32
32
  * @private
33
- * @extends sap.ui.core.Control
33
+ * @extends sap.ui.core.Element
34
34
  */
35
- var TitleProvider = Control.extend("sap.ui.core.routing.Target.TitleProvider", /** @lends sap.ui.core.routing.TitleProvider.prototype */ {
35
+ var TitleProvider = Element.extend("sap.ui.core.routing.Target.TitleProvider", /** @lends sap.ui.core.routing.TitleProvider.prototype */ {
36
36
  metadata: {
37
37
  library: "sap.ui.core",
38
38
  properties: {
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  constructor: function(mSettings) {
50
50
  this._oTarget = mSettings.target;
51
51
  delete mSettings.target;
52
- Control.prototype.constructor.call(this, mSettings);
52
+ Element.prototype.constructor.call(this, mSettings);
53
53
  },
54
54
  setTitle: function(sTitle) {
55
55
  // Setting title property should not trigger two way change in model
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @class
28
28
  * A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
29
29
  * @extends sap.ui.core.search.SearchProvider
30
- * @version 1.130.1
30
+ * @version 1.131.0
31
31
  * @deprecated as of version 1.120. There is no API replacement.
32
32
  *
33
33
  * @public
@@ -23,7 +23,7 @@ sap.ui.define(['sap/ui/core/Element', "sap/base/Log", 'sap/ui/core/library'],
23
23
  *
24
24
  * Do not create instances of this class, but use a concrete subclass instead.
25
25
  * @extends sap.ui.core.Element
26
- * @version 1.130.1
26
+ * @version 1.131.0
27
27
  * @deprecated since 1.120. There is no API replacement.
28
28
  *
29
29
  * @public
@@ -69,7 +69,7 @@ sap.ui.define(['sap/ui/base/Object', "sap/base/assert", "sap/base/Log"],
69
69
  *
70
70
  * @extends sap.ui.base.Object
71
71
  * @author SAP SE
72
- * @version 1.130.1
72
+ * @version 1.131.0
73
73
  * @alias sap.ui.core.service.Service
74
74
  * @abstract
75
75
  * @private
@@ -83,7 +83,7 @@ sap.ui.define(['sap/ui/base/Object', 'sap/ui/core/service/Service', "sap/base/as
83
83
  *
84
84
  * @extends sap.ui.base.Object
85
85
  * @author SAP SE
86
- * @version 1.130.1
86
+ * @version 1.131.0
87
87
  * @alias sap.ui.core.service.ServiceFactory
88
88
  * @private
89
89
  * @ui5-restricted sap.ushell
@@ -18,7 +18,7 @@ sap.ui.define(['./ServiceFactory', "sap/base/assert"],
18
18
  * The service factory registry.
19
19
  *
20
20
  * @author SAP SE
21
- * @version 1.130.1
21
+ * @version 1.131.0
22
22
  * @alias sap.ui.core.service.ServiceFactoryRegistry
23
23
  * @private
24
24
  * @ui5-restricted sap.ushell
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  *
22
22
  * @abstract
23
23
  * @extends sap.ui.base.Object
24
- * @version 1.130.1
24
+ * @version 1.131.0
25
25
  * @private
26
26
  * @ui5-restricted
27
27
  * @alias sap.ui.core.support.Plugin
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * @class This class provides the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
32
32
  *
33
33
  * @extends sap.ui.base.EventProvider
34
- * @version 1.130.1
34
+ * @version 1.131.0
35
35
  * @private
36
36
  * @alias sap.ui.core.support.Support
37
37
  */
@@ -17,6 +17,7 @@
17
17
  }
18
18
 
19
19
  // do nothing if UI5 is already loaded
20
+ // ui5lint-disable-next-line no-globals
20
21
  if (globalThis.sap?.ui) {
21
22
  return;
22
23
  }
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * @class This class represents the ControlTree plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
60
60
  *
61
61
  * @extends sap.ui.core.support.Plugin
62
- * @version 1.130.1
62
+ * @version 1.131.0
63
63
  * @private
64
64
  * @alias sap.ui.core.support.plugins.ControlTree
65
65
  */
@@ -42,7 +42,7 @@ sap.ui.define([
42
42
  * With this plugIn the performance measurements are displayed
43
43
  *
44
44
  * @extends sap.ui.core.support.Plugin
45
- * @version 1.130.1
45
+ * @version 1.131.0
46
46
  * @private
47
47
  * @alias sap.ui.core.support.plugins.Interaction
48
48
  */
@@ -15,7 +15,7 @@ sap.ui.define(['sap/ui/core/support/Plugin', "sap/base/Log"],
15
15
  * @class This class represents the LocalStorage plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
16
16
  *
17
17
  * @extends sap.ui.core.support.Plugin
18
- * @version 1.130.1
18
+ * @version 1.131.0
19
19
  * @private
20
20
  * @alias sap.ui.core.support.plugins.LocalStorage
21
21
  */
@@ -56,7 +56,7 @@ sap.ui.define([
56
56
  * With this plugIn the performance measurements are displayed
57
57
  *
58
58
  * @extends sap.ui.core.support.Plugin
59
- * @version 1.130.1
59
+ * @version 1.131.0
60
60
  * @private
61
61
  * @alias sap.ui.core.support.plugins.Performance
62
62
  */
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @class This class represents the selector plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
23
23
  *
24
24
  * @extends sap.ui.core.support.Plugin
25
- * @version 1.130.1
25
+ * @version 1.131.0
26
26
  * @private
27
27
  * @alias sap.ui.core.support.plugins.Selector
28
28
  */
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @class This class represents the technical info plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
37
37
  *
38
38
  * @extends sap.ui.core.support.Plugin
39
- * @version 1.130.1
39
+ * @version 1.131.0
40
40
  * @private
41
41
  * @alias sap.ui.core.support.plugins.TechInfo
42
42
  */
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @class This class represents the trace plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
22
22
  *
23
23
  * @extends sap.ui.core.support.Plugin
24
- * @version 1.130.1
24
+ * @version 1.131.0
25
25
  * @private
26
26
  * @alias sap.ui.core.support.plugins.Trace
27
27
  */
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * Creates an instance of sap.ui.core.support.plugins.ViewInfo.
35
35
  * @class This class represents the ViewInfo plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
36
36
  * @extends sap.ui.core.support.Plugin
37
- * @version 1.130.1
37
+ * @version 1.131.0
38
38
  * @private
39
39
  * @deprecated As of version 1.118
40
40
  * @alias sap.ui.core.support.plugins.ViewInfo
@@ -34,6 +34,7 @@
34
34
  top: 0;
35
35
  right: 0;
36
36
  bottom: 0;
37
+ border-radius: 0.375rem;
37
38
  border: @sapUiContentFocusWidth @sapUiContentFocusStyle @sapUiContentFocusColor;
38
39
  pointer-events: none;
39
40
  }