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