@openui5/sap.ui.core 1.122.0 → 1.123.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/.dtsgenrc +7 -1
- package/.eslintrc.json +3 -0
- package/package.json +1 -1
- package/src/jquery.sap.global.js +1 -17
- 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/Event.js +1 -1
- package/src/sap/base/Eventing.js +1 -1
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/future.js +3 -1
- package/src/sap/base/i18n/Formatting.js +119 -94
- package/src/sap/base/i18n/LanguageTag.js +1 -1
- package/src/sap/base/i18n/date/TimezoneUtils.js +1 -1
- 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/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +7 -4
- package/src/sap/ui/base/BindingInfo.js +22 -0
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +5 -14
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +15 -14
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +1 -1
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +17 -16
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +1 -1
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +53 -18
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/Core.js +58 -21
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/Element.js +1 -1
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +1 -1
- package/src/sap/ui/core/EventBus.js +6 -2
- package/src/sap/ui/core/Fragment.js +10 -5
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- 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 +1 -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 +1 -1
- package/src/sap/ui/core/LocaleData.js +37 -21
- package/src/sap/ui/core/Manifest.js +1 -1
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/RenderManager.js +7 -1
- package/src/sap/ui/core/Renderer.js +4 -1
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +2 -2
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- 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 +37 -47
- package/src/sap/ui/core/UIComponent.js +1 -1
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- 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 +12 -0
- package/src/sap/ui/core/_IconRegistry.js +1 -0
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +2 -2
- 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/FormatUtils.js +1 -1
- package/src/sap/ui/core/format/NumberFormat.js +28 -3
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +6 -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 +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/mvc/HTMLView.js +1 -1
- 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 +12 -7
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/plugin/LessSupport.js +1 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -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/rules/CoreHelper.support.js +2 -3
- package/src/sap/ui/core/rules/Misc.support.js +3 -12
- package/src/sap/ui/core/rules/Theming.support.js +5 -9
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- 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/Support.js +1 -20
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -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 +1 -1
- 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/.theming +3 -1
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/theming/Parameters.js +5 -1
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +2 -2
- package/src/sap/ui/core/util/ExportCell.js +2 -2
- package/src/sap/ui/core/util/ExportColumn.js +2 -2
- package/src/sap/ui/core/util/ExportRow.js +2 -2
- package/src/sap/ui/core/util/ExportType.js +2 -2
- package/src/sap/ui/core/util/ExportTypeCSV.js +2 -2
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- 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/XMLPreprocessor.js +8 -13
- 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/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.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 +1 -1
- package/src/sap/ui/dom/jquery/Aria.js +19 -0
- package/src/sap/ui/events/jquery/EventExtension.js +4 -3
- 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 +4 -4
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +22 -33
- 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/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalVersionInfo.js +1 -1
- package/src/sap/ui/model/controlhelper/TreeBindingProxy.js +7 -1
- 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/AnnotationHelper.js +11 -8
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataExpressionAddons.js +21 -0
- 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 +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +1 -1
- 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/ODataModel.js +17 -48
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/AnnotationHelper.js +2 -0
- package/src/sap/ui/model/odata/v4/Context.js +66 -22
- package/src/sap/ui/model/odata/v4/ODataBinding.js +10 -11
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +207 -180
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +75 -52
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +9 -11
- package/src/sap/ui/model/odata/v4/ODataModel.js +34 -35
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +9 -9
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +20 -8
- package/src/sap/ui/model/odata/v4/SubmitMode.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +126 -46
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +56 -11
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +21 -34
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +16 -27
- package/src/sap/ui/model/odata/v4/lib/_MetadataConverter.js +2 -6
- package/src/sap/ui/model/odata/v4/lib/_MinMaxHelper.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_Parser.js +6 -5
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +49 -38
- package/src/sap/ui/model/odata/v4/lib/_TreeState.js +75 -24
- package/src/sap/ui/model/odata/v4/lib/_V2MetadataConverter.js +3 -4
- package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +4 -12
- package/src/sap/ui/model/odata/v4/lib/_V4MetadataConverter.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 +48 -4
- 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 +5 -4
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +4 -1
- package/src/sap/ui/test/ModuleTracking.js +46 -0
- package/src/sap/ui/test/OpaBuilder.js +19 -19
- package/src/sap/ui/test/autowaiter/_jsAnimationWaiter.js +39 -6
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/sap/ui/util/_enforceNoReturnValue.js +3 -1
- package/src/ui5loader-autoconfig.js +22 -16
- package/src/ui5loader.js +38 -1
- package/test/sap/ui/core/demokit/docuindex.json +17 -6
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicMessages/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicMessages/Controller.controller.js +30 -47
- package/test/sap/ui/core/demokit/sample/Messaging/BasicMessages/MessagePopover.fragment.xml +13 -0
- package/test/sap/ui/core/demokit/sample/Messaging/BasicMessages/View.view.xml +135 -0
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicMessages/manifest.json +2 -2
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicODataMessages/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/Messaging/BasicODataMessages/Controller.controller.js +58 -0
- package/test/sap/ui/core/demokit/sample/Messaging/BasicODataMessages/MessagePopover.fragment.xml +13 -0
- package/test/sap/ui/core/demokit/sample/Messaging/BasicODataMessages/View.view.xml +57 -0
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicODataMessages/localService/mockserver.js +11 -13
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicODataMessages/manifest.json +2 -2
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/manifest.json +2 -1
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/package.json +1 -1
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/Component.js +2 -2
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/controller/App.controller.js +12 -0
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/controller/BaseController.js +41 -0
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/controller/Employee.controller.js +54 -0
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/controller/NotFound.controller.js +9 -11
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/fragment/MessagePopover.fragment.xml +13 -0
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/i18n/i18n.properties +9 -0
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/index.html +20 -0
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/index.js +16 -0
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/localService/mockserver.js +27 -27
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/manifest.json +7 -4
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/view/App.view.xml +1 -1
- package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/view/Employee.view.xml +6 -6
- package/test/sap/ui/core/demokit/sample/Messaging/ODataBackendMessagesComp/webapp/view/NotFound.view.xml +13 -0
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Types.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/common/Helper.js +8 -9
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +1 -1
- package/test/sap/ui/core/demokit/sample/gherkin/GherkinWithOPA5/GherkinTestRunner.html +2 -2
- package/test/sap/ui/core/demokit/sample/gherkin/GherkinWithPageObjects/GherkinTestRunner.html +2 -2
- package/test/sap/ui/core/demokit/sample/gherkin/GherkinWithQUnit/GherkinTestRunner.html +2 -2
- package/test/sap/ui/core/demokit/sample/gherkin/GherkinWithQUnit/Steps.js +4 -5
- package/test/sap/ui/core/demokit/sample/gherkin/GherkinWithUIComponent/GherkinTestRunner.html +2 -2
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v2/AutoExpand/AutoExpand.view.xml +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/ConsumeV2Service/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/Draft/ObjectPage.controller.js +2 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/MIT.ListBinding.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/Main.controller.js +5 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/Main.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/MIT.ListBindingTemplate.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.view.xml +6 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/MusicArtists/ObjectPage.controller.js +5 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/Products/MIT.Products.html +2 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/Products/pages/Main.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +27 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrderTP100_V2/MIT.SalesOrderTP100.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrderTP100_V4/MIT.SalesOrderTP100.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/MIT.Basics.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/MIT.SalesOrderAdditionalTargets.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/MIT.SalesOrderCreate.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/MIT.SalesOrderCreateMultiple.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/MIT.SalesOrderCreateRelative.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/MIT.SalesOrderMessageHandling.html +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.controller.js +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/pages/Main.js +7 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/tests/MessageHandling.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersRTATest/MIT.RTA.html +2 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/MIT.SalesOrdersTemplate.html +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/Sticky/MIT.Sticky.html +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/Sticky/Main.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/Sticky/pages/Main.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/controller/App.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/webapp/controller/App.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/webapp/controller/App.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/controller/App.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/Products/Main.view.xml +1 -1
- package/test/sap/ui/core/qunit/CustomStyleClassSupport.qunit.js +12 -3
- package/test/sap/ui/core/qunit/CustomThemeFallback.qunit.js +33 -38
- package/test/sap/ui/core/qunit/CustomThemeFallback_unavoidablySync.qunit.js +119 -0
- package/test/sap/ui/core/qunit/EventBus.qunit.js +15 -0
- package/test/sap/ui/core/qunit/Lib_terminologies.qunit.js +109 -0
- package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.qunit.js +19 -0
- package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.view.xml +27 -0
- package/test/sap/ui/core/qunit/app/ThemeClassParameters.qunit.js +105 -140
- package/test/sap/ui/core/qunit/app/testsuite.app.qunit.js +75 -2
- package/test/sap/ui/core/qunit/base/Config.qunit.js +6 -2
- package/test/sap/ui/core/qunit/base/Config_bootstrap.qunit.html +4 -1
- package/test/sap/ui/core/qunit/base/Config_bootstrap.qunit.js +6 -2
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +6 -3
- package/test/sap/ui/core/qunit/base/Config_global.qunit.html +5 -2
- package/test/sap/ui/core/qunit/base/Config_meta.qunit.html +5 -2
- package/test/sap/ui/core/qunit/base/Config_noUrl.qunit.html +5 -2
- package/test/sap/ui/core/qunit/base/Config_noUrl.qunit.js +5 -1
- package/test/sap/ui/core/qunit/base/Config_url.qunit.html +5 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithNoJQuery-without-jquery-ui-position.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithNoJQuery.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.beforeBootstrap.qunit.js +7 -0
- package/test/sap/ui/core/qunit/bootstrap/DebugModeAsync.qunit.html +10 -4
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +7 -0
- package/test/sap/ui/core/qunit/component/Component_keepAlive.qunit.js +9 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.html +2 -2
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.html +2 -2
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.html +2 -2
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +2 -2
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +2 -2
- package/test/sap/ui/core/qunit/gherkin/testHarnessTests.js +1 -1
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +1 -1
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +15 -15
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/loader/config.qunit.js +14 -6
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +288 -0
- package/test/sap/ui/core/qunit/model/controlhelper/TreeBindingProxy.qunit.js +12 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +7 -2
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +223 -40
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBinding.qunit.js +78 -7
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +142 -17
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +93 -87
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +116 -86
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1828 -548
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +26 -23
- package/test/sap/ui/core/qunit/odata/v4/data/metadata_special_cases.xml +9 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +251 -113
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +50 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +31 -11
- package/test/sap/ui/core/qunit/odata/v4/lib/_Parser.qunit.js +8 -2
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +46 -31
- package/test/sap/ui/core/qunit/odata/v4/lib/_TreeState.qunit.js +144 -45
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2Requestor.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v4/lib/data/v2/QM_INSP_PLAN_SRV/metadata.xml +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/data/v2/QM_INSP_PLAN_SRV/metadata_only.xml +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +82 -0
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/i18n/i18n_fr.properties +1 -0
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/i18n/terminologies/oil/i18n_fr.properties +2 -0
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/themes/sap_hcb/library.css +3 -0
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +19 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +14 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +37 -20
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +21 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +126 -15
- package/test/sap/ui/core/qunit/ui5classes/ManagedObject.qunit.js +58 -4
- package/test/sap/ui/core/relnotes/changes-1.122.json +0 -22
- package/test/sap/ui/core/relnotes/changes-1.123.json +47 -0
- package/test/sap/ui/core/samples/databinding/DataBindingDeclarativeSyntax.js +55 -56
- package/test/sap/ui/core/samples/databinding/DatabindingDeclarativeSyntax.html +4 -4
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/firstItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/initial.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/lastItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/leftDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/myButtonSample-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/rightDownBtn-contextMenu.ref.lnk +1 -1
- package/test/testsuite/js/testfwk.js +47 -64
- package/test/sap/ui/core/demokit/sample/MessageManager/BasicMessages/MessagePopover.fragment.xml +0 -13
- package/test/sap/ui/core/demokit/sample/MessageManager/BasicMessages/View.view.xml +0 -136
- package/test/sap/ui/core/demokit/sample/MessageManager/BasicODataMessages/Controller.controller.js +0 -74
- package/test/sap/ui/core/demokit/sample/MessageManager/BasicODataMessages/MessagePopover.fragment.xml +0 -13
- package/test/sap/ui/core/demokit/sample/MessageManager/BasicODataMessages/View.view.xml +0 -58
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +0 -11
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/controller/App.controller.js +0 -14
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/controller/BaseController.js +0 -55
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/controller/Employee.controller.js +0 -56
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/fragment/MessagePopover.fragment.xml +0 -13
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/i18n/i18n.properties +0 -5
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/index.html +0 -42
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/webapp/view/NotFound.view.xml +0 -11
- package/test/sap/ui/core/qunit/app/beforeBootstrap.js +0 -19
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +0 -24
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicODataMessages/localService/metadata.xml +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicODataMessages/localService/mockdata/Employees.json +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/BasicODataMessages/localService/response/ODataErrorResponse.json +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/localService/metadata.xml +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/localService/mockdata/Employees.json +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/localService/mockdata/Employees_3.json +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/localService/response/ODataErrorResponseTemplate.json +0 -0
- /package/test/sap/ui/core/demokit/sample/{MessageManager → Messaging}/ODataBackendMessagesComp/webapp/localService/response/SAP-Message-Header.json +0 -0
|
@@ -41,7 +41,7 @@ sap.ui.define([
|
|
|
41
41
|
) {
|
|
42
42
|
"use strict";
|
|
43
43
|
|
|
44
|
-
var oVersion = new Version("1.
|
|
44
|
+
var oVersion = new Version("1.123.0");
|
|
45
45
|
var oFormatSettings;
|
|
46
46
|
|
|
47
47
|
// Lazy dependency to core
|
|
@@ -103,7 +103,16 @@ sap.ui.define([
|
|
|
103
103
|
* @extends sap.ui.base.Object
|
|
104
104
|
* @public
|
|
105
105
|
* @alias sap.ui.core.Configuration
|
|
106
|
-
* @deprecated As of
|
|
106
|
+
* @deprecated As of version 1.120. There's no single replacement for this class. Instead,
|
|
107
|
+
* several facades have been created for different topics, e.g. {@link module:sap/base/i18n/Localization
|
|
108
|
+
* Localization} for settings related to localization, {@link module:sap/base/i18n/Formatting Formatting}
|
|
109
|
+
* for settings related to data formatting, {@link module:sap/ui/core/Theming Theming} for theming related
|
|
110
|
+
* settings, {@link module:sap/ui/core/ControlBehavior ControlBehavior} for settings that are typically
|
|
111
|
+
* required when implementing the behavior of a control, {@link module:sap/ui/security/Security Security}
|
|
112
|
+
* for settings around security.
|
|
113
|
+
*
|
|
114
|
+
* Please check the individual methods of this class for their replacements, if any.
|
|
115
|
+
*
|
|
107
116
|
* @borrows module:sap/base/i18n/Localization.getLanguagesDeliveredWithCore as getLanguagesDeliveredWithCore
|
|
108
117
|
* @borrows module:sap/base/i18n/Localization.getSupportedLanguages as getSupportedLanguages
|
|
109
118
|
* @borrows module:sap/ui/core/getCompatibilityVersion as getCompatibilityVersion
|
|
@@ -512,7 +521,8 @@ sap.ui.define([
|
|
|
512
521
|
* @return {boolean} Wether the ARIA role 'application' should be added to the HTML body or not
|
|
513
522
|
* @since 1.27.0
|
|
514
523
|
* @public
|
|
515
|
-
* @deprecated As of
|
|
524
|
+
* @deprecated As of version 1.120, without a replacement. Was only used in the implementation
|
|
525
|
+
* of the framework itself.
|
|
516
526
|
*/
|
|
517
527
|
getAutoAriaBodyRole : function () {
|
|
518
528
|
return BaseConfig.get({ name: "sapUiAutoAriaBodyRole", type: BaseConfig.Type.Boolean });
|
|
@@ -564,7 +574,8 @@ sap.ui.define([
|
|
|
564
574
|
* @return {boolean|string} false - no adaptation, true - full adaptation, comma-separated list - partial adaptation
|
|
565
575
|
* Possible values: style, collapse, title, back, hierarchy
|
|
566
576
|
* @public
|
|
567
|
-
* @deprecated As of
|
|
577
|
+
* @deprecated As of version 1.120, without a replacement. All the Fiori 2.0 adaptation logic
|
|
578
|
+
* is handled by the framework, there should be no need for apps to know about it.
|
|
568
579
|
*/
|
|
569
580
|
getFiori2Adaptation : function () {
|
|
570
581
|
var aAdaptations = BaseConfig.get({
|
|
@@ -588,34 +599,48 @@ sap.ui.define([
|
|
|
588
599
|
* @returns {boolean} Whether the page runs in full debug mode
|
|
589
600
|
* @public
|
|
590
601
|
* @function
|
|
591
|
-
* @deprecated As of version 1.120
|
|
602
|
+
* @deprecated As of version 1.120, without a replacement. All debug mode
|
|
603
|
+
* functionality is implemented within the framework and should be transparent
|
|
604
|
+
* for application code. There's no need for a public accessor method.
|
|
592
605
|
*/
|
|
593
606
|
getDebug : Supportability.isDebugModeEnabled,
|
|
594
607
|
|
|
595
608
|
/**
|
|
596
609
|
* Returns whether the UI5 control inspector is displayed.
|
|
597
|
-
*
|
|
610
|
+
*
|
|
611
|
+
* Has only an effect when the sap-ui-debug module has been loaded.
|
|
612
|
+
*
|
|
598
613
|
* @return {boolean} whether the UI5 control inspector is displayed
|
|
599
614
|
* @public
|
|
600
615
|
* @function
|
|
601
|
-
* @deprecated As of
|
|
616
|
+
* @deprecated As of version 1.120, without a replacement. The inspect option
|
|
617
|
+
* is related to the very old sap-ui-debug module. As there are now much better
|
|
618
|
+
* development tools (e.g. the UI5 Inpsector browser extension), this option
|
|
619
|
+
* has been deprecated and the sap-ui-debug feature might be removed in future
|
|
620
|
+
* major versions of UI5.
|
|
602
621
|
*/
|
|
603
622
|
getInspect : Supportability.isControlInspectorEnabled,
|
|
604
623
|
|
|
605
624
|
/**
|
|
606
625
|
* Returns whether the text origin information is collected.
|
|
626
|
+
*
|
|
607
627
|
* @return {boolean} whether the text info is collected
|
|
608
628
|
* @public
|
|
609
629
|
* @function
|
|
610
|
-
* @deprecated As of
|
|
630
|
+
* @deprecated As of version 1.120. The origin info was intended as a mean to track
|
|
631
|
+
* down translation issues to the origin of a translated text. Meanwhile, with the
|
|
632
|
+
* pseudo logon language 3Q, a similar, more lightweight feature exists for use with
|
|
633
|
+
* OpenUI5 or SAPUI5 libraries.
|
|
611
634
|
*/
|
|
612
635
|
getOriginInfo : Supportability.collectOriginInfo,
|
|
613
636
|
|
|
614
637
|
/**
|
|
615
638
|
* Returns whether there should be an exception on any duplicate element IDs.
|
|
639
|
+
*
|
|
616
640
|
* @return {boolean} whether there should be an exception on any duplicate element IDs
|
|
617
641
|
* @public
|
|
618
|
-
* @deprecated As of
|
|
642
|
+
* @deprecated As of version 1.120, without a replacement. Future major versions of UI5 will
|
|
643
|
+
* always report duplicate IDs as an error as the framework heavily relies on their uniqueness.
|
|
619
644
|
*/
|
|
620
645
|
getNoDuplicateIds : function () {
|
|
621
646
|
return BaseConfig.get({ name: "sapUiNoDuplicateIds", type: BaseConfig.Type.Boolean, defaultValue: true, external: true });
|
|
@@ -694,7 +719,8 @@ sap.ui.define([
|
|
|
694
719
|
*
|
|
695
720
|
* @returns {string[]} array of base URLs
|
|
696
721
|
* @public
|
|
697
|
-
* @deprecated As of
|
|
722
|
+
* @deprecated As of version 1.120, without a replacement. Was only used within the implementation
|
|
723
|
+
* of the <code>AppCacheBuster</code>.
|
|
698
724
|
*/
|
|
699
725
|
getAppCacheBuster : function() {
|
|
700
726
|
return BaseConfig.get({name: "sapUiAppCacheBuster", type: BaseConfig.Type.StringArray, external: true, freeze: true});
|
|
@@ -705,7 +731,8 @@ sap.ui.define([
|
|
|
705
731
|
*
|
|
706
732
|
* @returns {string} "sync" | "async" | "batch"
|
|
707
733
|
* @public
|
|
708
|
-
* @deprecated As of
|
|
734
|
+
* @deprecated As of version 1.120, without a replacement. Was only used within the implementation
|
|
735
|
+
* of the <code>AppCacheBuster</code>.
|
|
709
736
|
*/
|
|
710
737
|
getAppCacheBusterMode : function() {
|
|
711
738
|
return BaseConfig.get({name: "sapUiXxAppCacheBusterMode", type: BaseConfig.Type.String, defaultValue: "sync", external: true, freeze: true});
|
|
@@ -717,7 +744,7 @@ sap.ui.define([
|
|
|
717
744
|
* @returns {boolean} true if customizing is disabled
|
|
718
745
|
* @private
|
|
719
746
|
* @ui5-restricted
|
|
720
|
-
* @deprecated As of
|
|
747
|
+
* @deprecated As of version 1.120, without a replacement.
|
|
721
748
|
*/
|
|
722
749
|
getDisableCustomizing : function() {
|
|
723
750
|
return BaseConfig.get({name: "sapUiXxDisableCustomizing", type: BaseConfig.Type.Boolean});
|
|
@@ -742,7 +769,8 @@ sap.ui.define([
|
|
|
742
769
|
* @returns {object[]} Flexibility services configuration
|
|
743
770
|
* @public
|
|
744
771
|
* @since 1.60.0
|
|
745
|
-
* @deprecated As of
|
|
772
|
+
* @deprecated As of version 1.120, without a replacement. Was only used by the Flexibility
|
|
773
|
+
* feature which now resolves this on its own.
|
|
746
774
|
*/
|
|
747
775
|
getFlexibilityServices : function() {
|
|
748
776
|
var FlexConfig = sap.ui.require("sap/ui/fl/initial/_internal/FlexConfiguration");
|
|
@@ -827,7 +855,8 @@ sap.ui.define([
|
|
|
827
855
|
* @returns {string|undefined} Module name (ID) of a file share support module
|
|
828
856
|
* @public
|
|
829
857
|
* @since 1.102
|
|
830
|
-
* @deprecated As of version 1.120
|
|
858
|
+
* @deprecated As of version 1.120, without a replacement. The configuration is only
|
|
859
|
+
* relevant for the <code>sap.ui.export</code> library.
|
|
831
860
|
*/
|
|
832
861
|
getFileShareSupport : function() {
|
|
833
862
|
return BaseConfig.get({
|
|
@@ -855,13 +884,14 @@ sap.ui.define([
|
|
|
855
884
|
* Flag if statistics are requested.
|
|
856
885
|
*
|
|
857
886
|
* Flag set by TechnicalInfo Popup will also be checked.
|
|
858
|
-
* So
|
|
887
|
+
* So it's active if set by URL parameter or manually via TechnicalInfo.
|
|
859
888
|
*
|
|
860
889
|
* @returns {boolean} Whether statistics are enabled
|
|
861
890
|
* @public
|
|
862
891
|
* @since 1.106.0
|
|
863
892
|
* @function
|
|
864
|
-
* @deprecated As of
|
|
893
|
+
* @deprecated As of version 1.120, without a replacment. The configuration is only relevant
|
|
894
|
+
* within the framework.
|
|
865
895
|
*/
|
|
866
896
|
getStatisticsEnabled : Supportability.isStatisticsEnabled,
|
|
867
897
|
|
|
@@ -943,7 +973,12 @@ sap.ui.define([
|
|
|
943
973
|
* @returns {this} Returns <code>this</code> to allow method chaining
|
|
944
974
|
* @public
|
|
945
975
|
* @since 1.38.6
|
|
946
|
-
* @deprecated As of
|
|
976
|
+
* @deprecated As of version 1.120, without a replacement. As the different settings have been
|
|
977
|
+
* spread across multiple new APIs (see {@link sap.ui.core.Configuration the deprecation hint
|
|
978
|
+
* for this class}), a common API for changing multiple settings no longer made sense.
|
|
979
|
+
*
|
|
980
|
+
* Please check the individual methods of this class for their replacements and call those
|
|
981
|
+
* replacement methods one by one.
|
|
947
982
|
*/
|
|
948
983
|
applySettings: function(mSettings) {
|
|
949
984
|
|
|
@@ -977,7 +1012,7 @@ sap.ui.define([
|
|
|
977
1012
|
*
|
|
978
1013
|
* @private
|
|
979
1014
|
* @ui5-restricted sap.ui.core.Core
|
|
980
|
-
* @deprecated As of
|
|
1015
|
+
* @deprecated As of version 1.120, without a replacement.
|
|
981
1016
|
*/
|
|
982
1017
|
setCore: function (oCore) {
|
|
983
1018
|
// Setting the core needs to happen before init
|
|
@@ -84,7 +84,7 @@ sap.ui.define([
|
|
|
84
84
|
* @extends sap.ui.core.Element
|
|
85
85
|
* @abstract
|
|
86
86
|
* @author SAP SE
|
|
87
|
-
* @version 1.
|
|
87
|
+
* @version 1.123.0
|
|
88
88
|
* @alias sap.ui.core.Control
|
|
89
89
|
*/
|
|
90
90
|
var Control = Element.extend("sap.ui.core.Control", /** @lends sap.ui.core.Control.prototype */ {
|
package/src/sap/ui/core/Core.js
CHANGED
|
@@ -343,7 +343,8 @@ sap.ui.define([
|
|
|
343
343
|
* @function
|
|
344
344
|
* @static
|
|
345
345
|
* @public
|
|
346
|
-
* @deprecated
|
|
346
|
+
* @deprecated As of version 1.119, without replacement. In future major versions, the Core no longer has
|
|
347
|
+
* a class nature and therefore can't be extended.
|
|
347
348
|
*/
|
|
348
349
|
|
|
349
350
|
/**
|
|
@@ -354,7 +355,8 @@ sap.ui.define([
|
|
|
354
355
|
* @static
|
|
355
356
|
* @name sap.ui.core.Core.getMetadata
|
|
356
357
|
* @function
|
|
357
|
-
* @deprecated
|
|
358
|
+
* @deprecated As of version 1.119, without replacement. In future major versions, the Core no longer has
|
|
359
|
+
* a class nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
|
|
358
360
|
*/
|
|
359
361
|
|
|
360
362
|
/**
|
|
@@ -380,7 +382,7 @@ sap.ui.define([
|
|
|
380
382
|
* @extends sap.ui.base.Object
|
|
381
383
|
* @final
|
|
382
384
|
* @author SAP SE
|
|
383
|
-
* @version 1.
|
|
385
|
+
* @version 1.123.0
|
|
384
386
|
* @alias sap.ui.core.Core
|
|
385
387
|
* @public
|
|
386
388
|
* @hideconstructor
|
|
@@ -820,7 +822,12 @@ sap.ui.define([
|
|
|
820
822
|
sap.ui.require(["sap/ui/core/support/Support", "sap/ui/support/Bootstrap"], fnCallbackSupportBootstrapInfo, function (oError) {
|
|
821
823
|
Log.error("Could not load support mode modules:", oError);
|
|
822
824
|
});
|
|
823
|
-
}
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* @deprecated
|
|
829
|
+
*/
|
|
830
|
+
if (!bAsync) {
|
|
824
831
|
Log.warning("Synchronous loading of Support mode. Set preload configuration to 'async' or switch to asynchronous bootstrap to prevent these synchronous request.", "SyncXHR", null, function() {
|
|
825
832
|
return {
|
|
826
833
|
type: "SyncXHR",
|
|
@@ -849,7 +856,12 @@ sap.ui.define([
|
|
|
849
856
|
], fnCallbackTestRecorder, function (oError) {
|
|
850
857
|
Log.error("Could not load test recorder:", oError);
|
|
851
858
|
});
|
|
852
|
-
}
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* @deprecated
|
|
863
|
+
*/
|
|
864
|
+
if (!bAsync) {
|
|
853
865
|
Log.warning("Synchronous loading of Test recorder mode. Set preload configuration to 'async' or switch to asynchronous bootstrap to prevent these synchronous request.", "SyncXHR", null, function() {
|
|
854
866
|
return {
|
|
855
867
|
type: "SyncXHR",
|
|
@@ -1075,6 +1087,10 @@ sap.ui.define([
|
|
|
1075
1087
|
sync: true
|
|
1076
1088
|
});
|
|
1077
1089
|
});
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* @deprecated
|
|
1093
|
+
*/
|
|
1078
1094
|
this.aModules.forEach( function(mod) {
|
|
1079
1095
|
// data-sap-ui-modules might contain legacy jquery.sap.* modules
|
|
1080
1096
|
sap.ui.requireSync( /^jquery\.sap\./.test(mod) ? mod : mod.replace(/\./g, "/")); // legacy-relevant: Sync loading of modules and libraries
|
|
@@ -1180,7 +1196,8 @@ sap.ui.define([
|
|
|
1180
1196
|
* @param {boolean} [bForceUpdate=false] Force updating URLs of currently loaded theme
|
|
1181
1197
|
* @return {this} the Core, to allow method chaining
|
|
1182
1198
|
* @since 1.10
|
|
1183
|
-
* @deprecated
|
|
1199
|
+
* @deprecated As of version 1.119, without replacement. The need to define the location for a theme
|
|
1200
|
+
* should be fully covered with the capabiltites of the {@link sap/base/config base configuration}.
|
|
1184
1201
|
* @public
|
|
1185
1202
|
*/
|
|
1186
1203
|
Core.prototype.setThemeRoot = function(sThemeName, aLibraryNames, sThemeBaseUrl, bForceUpdate) {
|
|
@@ -1433,7 +1450,9 @@ sap.ui.define([
|
|
|
1433
1450
|
* Lock should be called before and after the DOM is modified for rendering, roundtrips...
|
|
1434
1451
|
* Exceptions might be the case for asynchronous UI behavior
|
|
1435
1452
|
* @public
|
|
1436
|
-
* @deprecated
|
|
1453
|
+
* @deprecated As of version 1.118, without a replacement. The ability to prevent
|
|
1454
|
+
* the re-rendering of all <code>UIArea</code>s wasn't really used in the past and
|
|
1455
|
+
* did not provide a meaningful feature. It therefore has been abandoned.
|
|
1437
1456
|
*/
|
|
1438
1457
|
Core.prototype.lock = function () {
|
|
1439
1458
|
this.bLocked = true;
|
|
@@ -1447,7 +1466,9 @@ sap.ui.define([
|
|
|
1447
1466
|
*
|
|
1448
1467
|
* Browser events are dispatched to the controls again after this method is called.
|
|
1449
1468
|
* @public
|
|
1450
|
-
* @deprecated
|
|
1469
|
+
* @deprecated As of version 1.118, without a replacement. The ability to prevent
|
|
1470
|
+
* the re-rendering of all <code>UIArea</code>s wasn't really used in the past and
|
|
1471
|
+
* did not provide a meaningful feature. It therefore has been abandoned.
|
|
1451
1472
|
*/
|
|
1452
1473
|
Core.prototype.unlock = function () {
|
|
1453
1474
|
this.bLocked = false;
|
|
@@ -1457,10 +1478,13 @@ sap.ui.define([
|
|
|
1457
1478
|
};
|
|
1458
1479
|
|
|
1459
1480
|
/**
|
|
1460
|
-
* Returns the locked state of the <code>sap.ui.core.Core</code
|
|
1481
|
+
* Returns the locked state of the <code>sap.ui.core.Core</code>.
|
|
1482
|
+
*
|
|
1461
1483
|
* @return {boolean} locked state
|
|
1462
1484
|
* @public
|
|
1463
|
-
* @deprecated
|
|
1485
|
+
* @deprecated As of version 1.118, without a replacement. The ability to prevent
|
|
1486
|
+
* the re-rendering of all <code>UIArea</code>s wasn't really used in the past and
|
|
1487
|
+
* did not provide a meaningful feature. It therefore has been abandoned.
|
|
1464
1488
|
*/
|
|
1465
1489
|
Core.prototype.isLocked = function () {
|
|
1466
1490
|
return this.bLocked;
|
|
@@ -1495,8 +1519,10 @@ sap.ui.define([
|
|
|
1495
1519
|
* Calling this method before the Core has been {@link #isInitialized initialized},
|
|
1496
1520
|
* is not recommended.
|
|
1497
1521
|
*
|
|
1498
|
-
* @
|
|
1499
|
-
* @deprecated
|
|
1522
|
+
* @returns {sap.ui.core.RenderManager} New instance of the RenderManager
|
|
1523
|
+
* @deprecated As of version 1.119, without replacement. In the next major version,
|
|
1524
|
+
* synchronously rendering UI updates is no longer supported as it can lead to unnecessary
|
|
1525
|
+
* intermediate DOM updates or layout shifting etc. Controls should rather use invalidation.
|
|
1500
1526
|
* @public
|
|
1501
1527
|
*/
|
|
1502
1528
|
Core.prototype.createRenderManager = function() {
|
|
@@ -1506,10 +1532,10 @@ sap.ui.define([
|
|
|
1506
1532
|
};
|
|
1507
1533
|
|
|
1508
1534
|
/**
|
|
1509
|
-
* Returns the
|
|
1510
|
-
* @
|
|
1535
|
+
* Returns the ID of the control/element currently in focus.
|
|
1536
|
+
* @returns {string} the ID of the control/element currently in focus.
|
|
1511
1537
|
* @public
|
|
1512
|
-
* @deprecated
|
|
1538
|
+
* @deprecated As of version 1.119.
|
|
1513
1539
|
* Please use {@link sap.ui.core.Element.getActiveElement Element.getActiveElement} to get
|
|
1514
1540
|
* the currently focused element. You can then retrieve the ID of that element with
|
|
1515
1541
|
* {@link sap.ui.core.Element#getId Element#getId}. Please be aware,
|
|
@@ -1864,7 +1890,8 @@ sap.ui.define([
|
|
|
1864
1890
|
* @param {string} [sVariant] the variant to include (optional)
|
|
1865
1891
|
* @param {string} [sQuery] to be used only by the Core
|
|
1866
1892
|
* @public
|
|
1867
|
-
* @deprecated
|
|
1893
|
+
* @deprecated As of version 1.119, without replacement. There's no known use case that
|
|
1894
|
+
* would require a public API.
|
|
1868
1895
|
*/
|
|
1869
1896
|
Core.prototype.includeLibraryTheme = function(sLibName, sVariant, sQuery) {
|
|
1870
1897
|
var oLib = Library._get(sLibName, true /* bCreate */);
|
|
@@ -1887,7 +1914,8 @@ sap.ui.define([
|
|
|
1887
1914
|
*
|
|
1888
1915
|
* @return {Object<string,Object>} Map of library info objects keyed by the library names.
|
|
1889
1916
|
* @public
|
|
1890
|
-
* @deprecated
|
|
1917
|
+
* @deprecated As of version 1.119, without a 1:1 replacement. Callers that used <code>getLoadedLibraries</code>
|
|
1918
|
+
* to check whether a certain library is loaded, should rather use {@link sap.ui.core.Lib#isLoaded Library#isLoaded}.
|
|
1891
1919
|
*/
|
|
1892
1920
|
Core.prototype.getLoadedLibraries = function() {
|
|
1893
1921
|
return Library.all();
|
|
@@ -2028,7 +2056,9 @@ sap.ui.define([
|
|
|
2028
2056
|
*
|
|
2029
2057
|
* @return {boolean} true if there are pending (or executing) rendering tasks.
|
|
2030
2058
|
* @public
|
|
2031
|
-
* @deprecated
|
|
2059
|
+
* @deprecated As of version 1.118, without replacement. The known use cases in
|
|
2060
|
+
* testing environments are covered by other APIs or features, e.g. OPA's waitFor
|
|
2061
|
+
* mechanism.
|
|
2032
2062
|
*/
|
|
2033
2063
|
Core.prototype.getUIDirty = function() {
|
|
2034
2064
|
return Rendering.isPending();
|
|
@@ -2274,7 +2304,12 @@ sap.ui.define([
|
|
|
2274
2304
|
* In general, applications and Controls should avoid calling this method and
|
|
2275
2305
|
* instead let the framework manage any necessary rendering.
|
|
2276
2306
|
* @public
|
|
2277
|
-
* @deprecated
|
|
2307
|
+
* @deprecated As of version 1.118, without replacement. In the next major version,
|
|
2308
|
+
* synchronously rendering UI updates is no longer supported as it can lead to unnecessary
|
|
2309
|
+
* intermediate DOM updates or layout shifting etc. Controls should rather use invalidation
|
|
2310
|
+
* and apps should not trigger rendering at all but rather rely on the framework's automatic
|
|
2311
|
+
* update mechanisms. Test code can use the test module <code>sap/ui/qunit/utils/nextUIUpdate</code>
|
|
2312
|
+
* as a convenient way to wait for the next asynchronous rendering.
|
|
2278
2313
|
*/
|
|
2279
2314
|
Core.prototype.applyChanges = function() {
|
|
2280
2315
|
Rendering.renderPendingUIUpdates("forced by applyChanges");
|
|
@@ -2487,7 +2522,8 @@ sap.ui.define([
|
|
|
2487
2522
|
* @param {function} fnFunction Callback to be called for each control event
|
|
2488
2523
|
* @param {object} [oListener] Optional context object to call the callback on
|
|
2489
2524
|
* @public
|
|
2490
|
-
* @deprecated
|
|
2525
|
+
* @deprecated As of version 1.119 without a replacement. Applications should not have the need
|
|
2526
|
+
* to intercept all control events.
|
|
2491
2527
|
*/
|
|
2492
2528
|
Core.prototype.attachControlEvent = function(fnFunction, oListener) {
|
|
2493
2529
|
_oEventProvider.attachEvent(Core.M_EVENTS.ControlEvent, fnFunction, oListener);
|
|
@@ -2501,7 +2537,8 @@ sap.ui.define([
|
|
|
2501
2537
|
* @param {function} fnFunction Function to unregister
|
|
2502
2538
|
* @param {object} [oListener] Context object on which the given function had to be called
|
|
2503
2539
|
* @public
|
|
2504
|
-
* @deprecated
|
|
2540
|
+
* @deprecated As of version 1.119 without a replacement. Applications should not have the need
|
|
2541
|
+
* to intercept all control events.
|
|
2505
2542
|
*/
|
|
2506
2543
|
Core.prototype.detachControlEvent = function(fnFunction, oListener) {
|
|
2507
2544
|
_oEventProvider.detachEvent(Core.M_EVENTS.ControlEvent, fnFunction, oListener);
|
|
@@ -43,7 +43,7 @@ sap.ui.define([
|
|
|
43
43
|
*
|
|
44
44
|
* @param {boolean} [bDefault=true] Value that should be used as default value for the enhancement of the control.
|
|
45
45
|
* @param {boolean} [bLegacy=false] Whether the introduced property should use the old name <code>Enabled</code>.
|
|
46
|
-
* @version 1.
|
|
46
|
+
* @version 1.123.0
|
|
47
47
|
* @public
|
|
48
48
|
* @class
|
|
49
49
|
* @alias sap.ui.core.EnabledPropagator
|
|
@@ -31,7 +31,7 @@ sap.ui.define([
|
|
|
31
31
|
*
|
|
32
32
|
* @extends sap.ui.base.Object
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.123.0
|
|
35
35
|
* @public
|
|
36
36
|
* @since 1.8.0
|
|
37
37
|
* @alias sap.ui.core.EventBus
|
|
@@ -230,7 +230,11 @@ sap.ui.define([
|
|
|
230
230
|
var oInfo;
|
|
231
231
|
for (var i = 0, iL = aEventListeners.length; i < iL; i++) {
|
|
232
232
|
oInfo = aEventListeners[i];
|
|
233
|
-
|
|
233
|
+
try {
|
|
234
|
+
this._callListener(oInfo.fFunction, oInfo.oListener || this, sChannelId, sEventId, oData);
|
|
235
|
+
} catch (error) {
|
|
236
|
+
Log.error("Error occurred in calling the listener with index " + i + " in channel '" + sChannelId + "' for event '" + sEventId + "' (ignored). ", error, "sap.ui.core.EventBus");
|
|
237
|
+
}
|
|
234
238
|
}
|
|
235
239
|
} else if (Log.isLoggable(Log.Level.DEBUG, "sap.ui.core.EventBus")) {
|
|
236
240
|
// no listeners
|
|
@@ -99,7 +99,7 @@ function(
|
|
|
99
99
|
* @class
|
|
100
100
|
* @extends sap.ui.base.ManagedObject
|
|
101
101
|
* @author SAP SE
|
|
102
|
-
* @version 1.
|
|
102
|
+
* @version 1.123.0
|
|
103
103
|
* @public
|
|
104
104
|
* @alias sap.ui.core.Fragment
|
|
105
105
|
*/
|
|
@@ -905,10 +905,15 @@ function(
|
|
|
905
905
|
// Mixin fragmentContent into Fragment instance
|
|
906
906
|
merge(this, mSettings.fragmentContent);
|
|
907
907
|
} else {
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
908
|
+
/**
|
|
909
|
+
* @deprecated
|
|
910
|
+
*/
|
|
911
|
+
(() => {
|
|
912
|
+
/*** require fragment definition if not yet done... ***/
|
|
913
|
+
if (!mRegistry[mSettings.fragmentName]) {
|
|
914
|
+
sap.ui.requireSync(mSettings.fragmentName.replace(/\./g, "/") + ".fragment"); // legacy-relevant: Sync path
|
|
915
|
+
}
|
|
916
|
+
})();
|
|
912
917
|
/*** Step 2: merge() ***/
|
|
913
918
|
merge(this, mRegistry[mSettings.fragmentName]);
|
|
914
919
|
}
|
package/src/sap/ui/core/HTML.js
CHANGED
package/src/sap/ui/core/Icon.js
CHANGED
|
@@ -12,7 +12,7 @@ sap.ui.define([], function() {
|
|
|
12
12
|
* Provides the default renderer for the controls that have set their <code>visible</code> property to <code>false</code>.
|
|
13
13
|
*
|
|
14
14
|
* @author SAP SE
|
|
15
|
-
* @version 1.
|
|
15
|
+
* @version 1.123.0
|
|
16
16
|
* @alias module:sap/ui/core/InvisibleRenderer
|
|
17
17
|
* @since 1.66.0
|
|
18
18
|
* @protected
|
package/src/sap/ui/core/Item.js
CHANGED
|
@@ -144,7 +144,7 @@ sap.ui.define(['../base/ManagedObject', "sap/base/assert"],
|
|
|
144
144
|
* @see sap.ui.core.LabelEnablement#enrich
|
|
145
145
|
*
|
|
146
146
|
* @author SAP SE
|
|
147
|
-
* @version 1.
|
|
147
|
+
* @version 1.123.0
|
|
148
148
|
* @protected
|
|
149
149
|
* @alias sap.ui.core.LabelEnablement
|
|
150
150
|
* @namespace
|