@openui5/sap.ui.core 1.105.0 → 1.106.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 +20 -17
- package/THIRDPARTY.txt +31 -21
- package/package.json +1 -1
- package/src/jquery.sap.dom.js +10 -10
- package/src/jquery.sap.global.js +24 -216
- package/src/jquery.sap.history.js +1 -1
- package/src/jquery.sap.properties.js +2 -2
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +4 -4
- package/src/sap/base/i18n/ResourceBundle.js +7 -11
- package/src/sap/base/util/ObjectPath.js +1 -1
- package/src/sap/base/util/Properties.js +1 -1
- package/src/sap/base/util/fetch.js +8 -10
- 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 +9 -16
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +7 -14
- package/src/sap/ui/VersionInfo.js +57 -54
- package/src/sap/ui/base/BindingInfo.js +198 -0
- package/src/sap/ui/base/DataType.js +1 -1
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +2 -2
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +209 -979
- package/src/sap/ui/base/ManagedObjectMetadata.js +6 -6
- 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/core/.library +13 -9
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +5 -5
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +5 -12
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +525 -336
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/Core.js +78 -125
- 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 +60 -4
- 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 +1 -1
- package/src/sap/ui/core/FocusHandler.js +29 -7
- package/src/sap/ui/core/Fragment.js +1 -1
- 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/IconPool.js +8 -8
- package/src/sap/ui/core/IndicationColorSupport.js +2 -2
- 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 +5 -5
- 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 +13 -8
- package/src/sap/ui/core/RenderManager.js +7 -1
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/ResizeHandler.js +7 -7
- package/src/sap/ui/core/ScrollBar.js +1 -1
- 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 +12 -13
- package/src/sap/ui/core/UIArea.js +8 -9
- package/src/sap/ui/core/UIComponent.js +3 -3
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +2 -2
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +2 -2
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +7 -7
- package/src/sap/ui/core/_ConfigurationProvider.js +187 -0
- package/src/sap/ui/core/cache/CacheManager.js +2 -2
- package/src/sap/ui/core/cldr/es_BO.json +3 -3
- package/src/sap/ui/core/cldr/es_CL.json +3 -3
- package/src/sap/ui/core/cldr/es_MX.json +3 -3
- package/src/sap/ui/core/cldr/es_PE.json +3 -3
- package/src/sap/ui/core/cldr/es_UY.json +3 -3
- package/src/sap/ui/core/cldr/es_VE.json +2 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +7 -6
- package/src/sap/ui/core/dnd/DragAndDrop.js +13 -9
- 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 +5 -0
- package/src/sap/ui/core/format/NumberFormat.js +1 -1
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- 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/Controller.js +5 -0
- 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 +2 -2
- 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 -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/routing/Router.js +1 -1
- package/src/sap/ui/core/rules/App.support.js +11 -13
- package/src/sap/ui/core/rules/Config.support.js +13 -13
- package/src/sap/ui/core/rules/CoreHelper.support.js +3 -3
- package/src/sap/ui/core/rules/Model.support.js +8 -8
- package/src/sap/ui/core/rules/Rendering.support.js +1 -1
- package/src/sap/ui/core/rules/Theming.support.js +8 -8
- package/src/sap/ui/core/rules/View.support.js +9 -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/Hotkeys.js +2 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/Support.js +1 -1
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Debugging.js +3 -3
- 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 +2 -2
- package/src/sap/ui/core/support/support.html +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -3
- package/src/sap/ui/core/themes/base/shared.less +6 -0
- package/src/sap/ui/core/theming/Parameters.js +8 -15
- 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 +6 -4
- 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 +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 +1 -1
- package/src/sap/ui/core/util/MockServer.js +45 -71
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/ResponsivePaddingsEnablement.js +4 -3
- package/src/sap/ui/core/util/XMLPreprocessor.js +2 -2
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +1 -1
- 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.css +1 -31
- package/src/sap/ui/debug/PropertyList.js +6 -250
- package/src/sap/ui/dom/getScrollbarSize.js +1 -1
- package/src/sap/ui/dom/jquery/control.js +1 -0
- package/src/sap/ui/events/jquery/EventSimulation.js +4 -4
- 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/Context.js +3 -0
- package/src/sap/ui/model/ContextBinding.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/ListBinding.js +2 -2
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +871 -0
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +16 -5
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +2 -2
- package/src/sap/ui/model/Sorter.js +2 -2
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/json/JSONModel.js +2 -2
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +4 -4
- 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 +10 -10
- 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/ODataTreeBindingFlat.js +22 -29
- 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 +5 -5
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataModel.js +4 -4
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/AnnotationHelper.js +3 -3
- package/src/sap/ui/model/odata/v4/Context.js +88 -54
- package/src/sap/ui/model/odata/v4/ODataBinding.js +47 -4
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +86 -66
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +96 -68
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +13 -10
- package/src/sap/ui/model/odata/v4/ODataModel.js +247 -27
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +23 -5
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +14 -8
- package/src/sap/ui/model/odata/v4/ODataUtils.js +7 -4
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +8 -8
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +40 -6
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +89 -69
- package/src/sap/ui/model/odata/v4/lib/_ConcatHelper.js +2 -3
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +47 -35
- package/src/sap/ui/model/odata/v4/lib/_MinMaxHelper.js +2 -3
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +5 -0
- package/src/sap/ui/model/resource/ResourceModel.js +2 -2
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +2 -2
- 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 +2 -2
- 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/QUnitUtils.js +1 -2
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/test/OpaBuilder.js +1 -1
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
|
@@ -73,7 +73,7 @@ function(
|
|
|
73
73
|
*
|
|
74
74
|
*
|
|
75
75
|
* @author Frank Weigel
|
|
76
|
-
* @version 1.
|
|
76
|
+
* @version 1.106.0
|
|
77
77
|
* @since 0.8.6
|
|
78
78
|
* @alias sap.ui.base.ManagedObjectMetadata
|
|
79
79
|
* @extends sap.ui.base.Metadata
|
|
@@ -985,7 +985,7 @@ function(
|
|
|
985
985
|
* in the constructor documentation of this class.
|
|
986
986
|
*
|
|
987
987
|
* @param {string} sName name of the property
|
|
988
|
-
* @returns {Object} An info object describing the property or <code>undefined</code>
|
|
988
|
+
* @returns {Object|undefined} An info object describing the property or <code>undefined</code>
|
|
989
989
|
* @public
|
|
990
990
|
* @since 1.27.0
|
|
991
991
|
*/
|
|
@@ -1121,7 +1121,7 @@ function(
|
|
|
1121
1121
|
* in the constructor documentation of this class.
|
|
1122
1122
|
*
|
|
1123
1123
|
* @param {string} [sName] name of the aggregation or empty
|
|
1124
|
-
* @returns {Object} An info object describing the aggregation or <code>undefined</code>
|
|
1124
|
+
* @returns {Object|undefined} An info object describing the aggregation or <code>undefined</code>
|
|
1125
1125
|
* @public
|
|
1126
1126
|
* @since 1.27.0
|
|
1127
1127
|
*/
|
|
@@ -1403,7 +1403,7 @@ function(
|
|
|
1403
1403
|
* in the constructor documentation of this class.
|
|
1404
1404
|
*
|
|
1405
1405
|
* @param {string} sName name of the property like setting
|
|
1406
|
-
* @returns {Object} An info object describing the property or aggregation or <code>undefined</code>
|
|
1406
|
+
* @returns {Object|undefined} An info object describing the property or aggregation or <code>undefined</code>
|
|
1407
1407
|
* @public
|
|
1408
1408
|
* @since 1.27.0
|
|
1409
1409
|
*/
|
|
@@ -1443,7 +1443,7 @@ function(
|
|
|
1443
1443
|
* in the constructor documentation of this class.
|
|
1444
1444
|
*
|
|
1445
1445
|
* @param {string} sName name of the association
|
|
1446
|
-
* @returns {Object} An info object describing the association or <code>undefined</code>
|
|
1446
|
+
* @returns {Object|undefined} An info object describing the association or <code>undefined</code>
|
|
1447
1447
|
* @public
|
|
1448
1448
|
* @since 1.27.0
|
|
1449
1449
|
*/
|
|
@@ -1551,7 +1551,7 @@ function(
|
|
|
1551
1551
|
* in the constructor documentation of this class.
|
|
1552
1552
|
*
|
|
1553
1553
|
* @param {string} sName name of the event
|
|
1554
|
-
* @returns {Object} An info object describing the event or <code>undefined</code>
|
|
1554
|
+
* @returns {Object|undefined} An info object describing the event or <code>undefined</code>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
* @since 1.27.0
|
|
1557
1557
|
*/
|
|
@@ -26,7 +26,7 @@ sap.ui.define(['./Metadata', "sap/base/Log"],
|
|
|
26
26
|
* @class Base class for all SAPUI5 Objects.
|
|
27
27
|
* @abstract
|
|
28
28
|
* @author Malte Wedel
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.106.0
|
|
30
30
|
* @public
|
|
31
31
|
* @alias sap.ui.base.Object
|
|
32
32
|
* @throws {Error} When an instance of the class or its subclasses is created without the <code>new</code> operator.
|
package/src/sap/ui/core/.library
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<copyright>OpenUI5
|
|
7
7
|
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
8
8
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
9
|
-
<version>1.
|
|
9
|
+
<version>1.106.0</version>
|
|
10
10
|
|
|
11
11
|
<documentation>The SAPUI5 Core Runtime.
|
|
12
12
|
|
|
@@ -183,17 +183,20 @@
|
|
|
183
183
|
<lib name="qunit" displayName="QUnit" version="1.18.0" homepage="https://qunitjs.com" id="73554900106100002636">
|
|
184
184
|
<license url="http://jQuery.org/license" type="MIT" />
|
|
185
185
|
<copyright>jQuery Foundation and other contributors</copyright>
|
|
186
|
-
<pattern>sap/ui/thirdparty/qunit
|
|
186
|
+
<pattern>sap/ui/thirdparty/qunit.css</pattern>
|
|
187
|
+
<pattern>sap/ui/thirdparty/qunit.js</pattern>
|
|
187
188
|
</lib>
|
|
188
189
|
<lib name="qunit-2" displayName="QUnit 2" version="2.3.2" homepage="https://qunitjs.com" id="73555000106100006951">
|
|
189
190
|
<license url="http://jQuery.org/license" type="MIT" />
|
|
190
191
|
<copyright>jQuery Foundation and other contributors</copyright>
|
|
191
|
-
<pattern>sap/ui/thirdparty/qunit-2
|
|
192
|
+
<pattern>sap/ui/thirdparty/qunit-2.css</pattern>
|
|
193
|
+
<pattern>sap/ui/thirdparty/qunit-2.js</pattern>
|
|
192
194
|
</lib>
|
|
193
195
|
<lib name="qunit-2.18" displayName="QUnit 2.18" version="2.18.0" homepage="https://qunitjs.com" id="73554900106100134323">
|
|
194
196
|
<license url="http://jQuery.org/license" type="MIT" />
|
|
195
197
|
<copyright>jQuery Foundation and other contributors</copyright>
|
|
196
|
-
<pattern>../test/sap/ui/core/qunit/thirdparty/qunit-2.18
|
|
198
|
+
<pattern>../test/sap/ui/core/qunit/thirdparty/qunit-2.18.css</pattern>
|
|
199
|
+
<pattern>../test/sap/ui/core/qunit/thirdparty/qunit-2.18.js</pattern>
|
|
197
200
|
</lib>
|
|
198
201
|
<lib name="jquery-migrate" displayName="jQuery-Migrate" version="3.3.1" homepage="https://github.com/jquery/jquery-migrate/" id="73555000106100043843">
|
|
199
202
|
<license url="https://github.com/jquery/jquery-migrate/blob/3.3.1/LICENSE.txt" type="MIT" />
|
|
@@ -214,7 +217,8 @@
|
|
|
214
217
|
<!-- version is "1.0.2-pre", in PPMS as "1.0.2" -->
|
|
215
218
|
<license url="http://jquery.org/license" type="MIT" />
|
|
216
219
|
<copyright>jQuery Foundation and other contributors</copyright>
|
|
217
|
-
<pattern>sap/ui/thirdparty/qunit-composite
|
|
220
|
+
<pattern>sap/ui/thirdparty/qunit-composite.css</pattern>
|
|
221
|
+
<pattern>sap/ui/thirdparty/qunit-composite.js</pattern>
|
|
218
222
|
</lib>
|
|
219
223
|
<lib name="qunit-reporter-junit" displayName="JUnit Reporter for QUnit" version="1.1.1" homepage="https://github.com/JamesMGreene/qunit-reporter-junit" id="73554900106100005540">
|
|
220
224
|
<license url="https://raw.githubusercontent.com/JamesMGreene/qunit-reporter-junit/master/LICENSE.txt" type="MIT" />
|
|
@@ -299,7 +303,7 @@
|
|
|
299
303
|
<lib name="sinonjs14" displayName="SinonJS 14" version="14.0.0" homepage="http://sinonjs.org" id="73554900106100134880">
|
|
300
304
|
<license url="https://raw.github.com/cjohansen/Sinon.JS/master/LICENSE" type="BSD-3-Clause" />
|
|
301
305
|
<copyright>2010-2022, Christian Johansen, christian@cjohansen.no</copyright>
|
|
302
|
-
<pattern>../test/sap/ui/core/qunit/thirdparty/sinon-14.0
|
|
306
|
+
<pattern>../test/sap/ui/core/qunit/thirdparty/sinon-14.0.js</pattern>
|
|
303
307
|
</lib>
|
|
304
308
|
<lib name="sinon-qunit" displayName="Sinon-qunit" version="2.0.0" homepage="http://sinonjs.org" id="73554900106100005534">
|
|
305
309
|
<license url="https://raw.github.com/cjohansen/Sinon.JS/master/LICENSE" type="BSD-3-Clause" />
|
|
@@ -374,7 +378,7 @@
|
|
|
374
378
|
<lib name="lodash" displayName="lodash" version="4.17.21" homepage="https://github.com/lodash/lodash" id="73555000106100057925">
|
|
375
379
|
<license url="https://github.com/lodash/lodash/blob/master/LICENSE" type="MIT" />
|
|
376
380
|
<copyright>OpenJS Foundation and other contributors</copyright>
|
|
377
|
-
<pattern>sap/
|
|
381
|
+
<pattern>sap/base/util/restricted/_/lodash.custom.js</pattern>
|
|
378
382
|
</lib>
|
|
379
383
|
<lib name="hyphenopoly" displayName="Hyphenopoly" version="3.4.0" homepage="https://github.com/mnater/Hyphenopoly" id="73555000106100074224">
|
|
380
384
|
<license url="https://github.com/mnater/Hyphenopoly/blob/master/LICENSE" type="MIT" />
|
|
@@ -384,12 +388,12 @@
|
|
|
384
388
|
<lib name="p-cancelable" displayName="p-cancelable" version="2.0.0" homepage="https://github.com/sindresorhus/p-cancelable/tree/v2.0.0" id="73555000106100034052">
|
|
385
389
|
<license url="https://github.com/sindresorhus/p-cancelable/blob/v2.0.0/license" type="MIT" />
|
|
386
390
|
<copyright>Sindre Sorhus <sindresorhus@gmail.com></copyright>
|
|
387
|
-
<pattern partial="true" otherContent="@babel/helpers" explanation="_CancelablePromise.js is derived from p-cancelable by Sindre Sorhus and was transpiled with Babel, so the resulting file contains Babel code fragments">sap/
|
|
391
|
+
<pattern partial="true" otherContent="@babel/helpers" explanation="_CancelablePromise.js is derived from p-cancelable by Sindre Sorhus and was transpiled with Babel, so the resulting file contains Babel code fragments">sap/base/util/restricted/_CancelablePromise.js</pattern>
|
|
388
392
|
</lib>
|
|
389
393
|
<lib name="@babel/helpers" displayName="@babel/helpers" version="7.10.4" homepage="https://github.com/babel/babel/tree/v7.10.4" id="73555000106100041674">
|
|
390
394
|
<license url="https://github.com/babel/babel/blob/v7.10.4/LICENSE" type="MIT" />
|
|
391
395
|
<copyright>2014-present Sebastian McKenzie and other contributors</copyright>
|
|
392
|
-
<pattern partial="true" otherContent="p-cancelable" explanation="_CancelablePromise.js is derived from p-cancelable by Sindre Sorhus and was transpiled with Babel, so the resulting file contains Babel code fragments">sap/
|
|
396
|
+
<pattern partial="true" otherContent="p-cancelable" explanation="_CancelablePromise.js is derived from p-cancelable by Sindre Sorhus and was transpiled with Babel, so the resulting file contains Babel code fragments">sap/base/util/restricted/_CancelablePromise.js</pattern>
|
|
393
397
|
<!-- Babel transformation added some helper code, hence Babel is mentioned here -->
|
|
394
398
|
</lib>
|
|
395
399
|
<lib name="jalaali" displayName="Jalaali JS" version="unknown" homepage="https://github.com/jalaali/jalaali-js/" id="73555000106100004826">
|
|
@@ -244,7 +244,7 @@ sap.ui.define([
|
|
|
244
244
|
* @extends sap.ui.base.ManagedObject
|
|
245
245
|
* @abstract
|
|
246
246
|
* @author SAP SE
|
|
247
|
-
* @version 1.
|
|
247
|
+
* @version 1.106.0
|
|
248
248
|
* @alias sap.ui.core.Component
|
|
249
249
|
* @since 1.9.2
|
|
250
250
|
*/
|
|
@@ -661,7 +661,7 @@ sap.ui.define([
|
|
|
661
661
|
* not a guarantee for the existence of the corresponding owner.
|
|
662
662
|
*
|
|
663
663
|
* @param {sap.ui.base.ManagedObject} oObject Object to retrieve the owner ID for
|
|
664
|
-
* @return {string} ID of the owner or <code>undefined</code>
|
|
664
|
+
* @return {string|undefined} ID of the owner or <code>undefined</code>
|
|
665
665
|
* @static
|
|
666
666
|
* @public
|
|
667
667
|
* @since 1.15.1
|
|
@@ -682,7 +682,7 @@ sap.ui.define([
|
|
|
682
682
|
* will be returned.
|
|
683
683
|
*
|
|
684
684
|
* @param {sap.ui.base.ManagedObject} oObject Object to retrieve the owner Component for
|
|
685
|
-
* @return {sap.ui.core.Component} the owner Component or <code>undefined</code>.
|
|
685
|
+
* @return {sap.ui.core.Component|undefined} the owner Component or <code>undefined</code>.
|
|
686
686
|
* @static
|
|
687
687
|
* @public
|
|
688
688
|
* @since 1.25.1
|
|
@@ -2668,7 +2668,7 @@ sap.ui.define([
|
|
|
2668
2668
|
* Returns an existing component instance, identified by its ID.
|
|
2669
2669
|
*
|
|
2670
2670
|
* @param {string} sId ID of the component.
|
|
2671
|
-
* @returns {sap.ui.core.Component} Component instance or <code>undefined</code> when no component
|
|
2671
|
+
* @returns {sap.ui.core.Component|undefined} Component instance or <code>undefined</code> when no component
|
|
2672
2672
|
* with the given ID exists.
|
|
2673
2673
|
* @since 1.56.0
|
|
2674
2674
|
* @static
|
|
@@ -2753,7 +2753,7 @@ sap.ui.define([
|
|
|
2753
2753
|
* component preload (should only be set via <code>sap.ui.component</code>)
|
|
2754
2754
|
* @param {boolean} mOptions.preloadOnly see <code>sap.ui.component.load</code> (<code>vConfig.asyncHints.preloadOnly</code>)
|
|
2755
2755
|
* @param {Promise|Promise[]} mOptions.waitFor see <code>sap.ui.component</code> (<code>vConfig.asyncHints.waitFor</code>)
|
|
2756
|
-
* @return {function|Promise} the constructor of the Component class or a Promise that will be fulfilled with the same
|
|
2756
|
+
* @return {function|Promise<function>} the constructor of the Component class or a Promise that will be fulfilled with the same
|
|
2757
2757
|
*
|
|
2758
2758
|
* @private
|
|
2759
2759
|
*/
|
|
@@ -8,24 +8,17 @@
|
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
'sap/ui/base/ManagedObjectMetadata',
|
|
10
10
|
'sap/ui/core/Manifest',
|
|
11
|
+
'sap/ui/core/Configuration',
|
|
11
12
|
'sap/base/Log',
|
|
12
13
|
'sap/base/util/extend',
|
|
13
14
|
'sap/base/util/deepExtend',
|
|
14
15
|
'sap/base/util/isPlainObject',
|
|
15
16
|
'sap/base/util/LoaderExtensions'
|
|
16
17
|
],
|
|
17
|
-
function(ManagedObjectMetadata, Manifest, Log, extend, deepExtend, isPlainObject, LoaderExtensions) {
|
|
18
|
+
function(ManagedObjectMetadata, Manifest, Configuration, Log, extend, deepExtend, isPlainObject, LoaderExtensions) {
|
|
18
19
|
"use strict";
|
|
19
20
|
|
|
20
|
-
var
|
|
21
|
-
|
|
22
|
-
var syncCallBehavior = 0; // ignore
|
|
23
|
-
if (oCfgData['xx-nosync'] === 'warn' || /(?:\?|&)sap-ui-xx-nosync=(?:warn)/.exec(window.location.search)) {
|
|
24
|
-
syncCallBehavior = 1;
|
|
25
|
-
}
|
|
26
|
-
if (oCfgData['xx-nosync'] === true || oCfgData['xx-nosync'] === 'true' || /(?:\?|&)sap-ui-xx-nosync=(?:x|X|true)/.exec(window.location.search)) {
|
|
27
|
-
syncCallBehavior = 2;
|
|
28
|
-
}
|
|
21
|
+
var syncCallBehavior = Configuration.getSyncCallBehavior();
|
|
29
22
|
|
|
30
23
|
/**
|
|
31
24
|
* Creates a new metadata object for a Component subclass.
|
|
@@ -36,7 +29,7 @@ sap.ui.define([
|
|
|
36
29
|
* @public
|
|
37
30
|
* @class
|
|
38
31
|
* @author SAP SE
|
|
39
|
-
* @version 1.
|
|
32
|
+
* @version 1.106.0
|
|
40
33
|
* @since 1.9.2
|
|
41
34
|
* @alias sap.ui.core.ComponentMetadata
|
|
42
35
|
* @extends sap.ui.base.ManagedObjectMetadata
|
|
@@ -601,7 +594,7 @@ sap.ui.define([
|
|
|
601
594
|
* manifest file! It returns only the entries which have been defined in
|
|
602
595
|
* the Component metadata or in the proper Component manifest.
|
|
603
596
|
*
|
|
604
|
-
* @
|
|
597
|
+
* @returns {string|null} Required version of UI5 or if not specified then <code>null</code>.
|
|
605
598
|
* @public
|
|
606
599
|
* @deprecated Since 1.27.1. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/minUI5Version")
|
|
607
600
|
*/
|