@openui5/sap.ui.core 1.93.3 → 1.96.2
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/.eslintrc.json +13 -2
- package/.reuse/dep5 +6 -11
- package/THIRDPARTY.txt +10 -16
- package/package.json +1 -1
- package/src/jquery.sap.global.js +5 -2
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +3 -3
- package/src/jquery.sap.stubs.js +2 -1
- package/src/jquery.sap.trace.js +2 -1
- package/src/sap/base/i18n/ResourceBundle.js +6 -2
- package/src/sap/base/strings/whitespaceReplacer.js +52 -0
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/ui/Device.js +37 -42
- package/src/sap/ui/Global.js +8 -7
- package/src/sap/ui/base/DataType.js +14 -8
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +9 -6
- package/src/sap/ui/base/Interface.js +3 -49
- package/src/sap/ui/base/ManagedObject.js +12 -7
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +1 -1
- package/src/sap/ui/base/Object.js +49 -4
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/base/syncXHRFix.js +2 -1
- package/src/sap/ui/core/.library +5 -5
- package/src/sap/ui/core/AppCacheBuster.js +4 -4
- package/src/sap/ui/core/BusyIndicator.js +1 -11
- package/src/sap/ui/core/Component.js +300 -140
- package/src/sap/ui/core/ComponentContainer.js +24 -8
- package/src/sap/ui/core/ComponentMetadata.js +14 -3
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +67 -31
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/Core.js +103 -25
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/CustomizingConfiguration.js +35 -260
- package/src/sap/ui/core/DeclarativeSupport.js +3 -2
- package/src/sap/ui/core/Element.js +1 -1
- package/src/sap/ui/core/ElementMetadata.js +4 -2
- package/src/sap/ui/core/EnabledPropagator.js +91 -73
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/ExtensionPoint.js +7 -14
- package/src/sap/ui/core/Fragment.js +30 -32
- 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 +7 -8
- package/src/sap/ui/core/IconPool.js +26 -1097
- package/src/sap/ui/core/IconRenderer.js +6 -6
- 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 +26 -4
- package/src/sap/ui/core/LocaleData.js +1 -1
- package/src/sap/ui/core/Manifest.js +4 -61
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Patcher.js +27 -3
- package/src/sap/ui/core/Placeholder.js +28 -15
- package/src/sap/ui/core/RenderManager.js +36 -6
- package/src/sap/ui/core/Renderer.js +13 -3
- 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/ShortcutHintsMixin.js +14 -7
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +1 -1
- package/src/sap/ui/core/UIArea.js +1 -1
- package/src/sap/ui/core/UIComponent.js +42 -16
- 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 +2 -2
- package/src/sap/ui/core/XMLCompositeMetadata.js +2 -2
- package/src/sap/ui/core/XMLTemplateProcessor.js +116 -41
- package/src/sap/ui/core/_IconRegistry.js +1148 -0
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +6 -3
- 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 +2 -2
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/format/NumberFormat.js +16 -1
- package/src/sap/ui/core/hyphenation/Hyphenation.js +73 -221
- package/src/sap/ui/core/hyphenation/HyphenationTestingWords.js +11 -10
- 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 +13 -15
- 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/messagebundle_de.properties +1 -1
- package/src/sap/ui/core/messagebundle_fr.properties +1 -1
- package/src/sap/ui/core/messagebundle_it.properties +1 -1
- package/src/sap/ui/core/messagebundle_pl.properties +1 -1
- package/src/sap/ui/core/messagebundle_th.properties +2 -2
- package/src/sap/ui/core/mvc/Controller.js +38 -19
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +30 -32
- package/src/sap/ui/core/mvc/ControllerMetadata.js +18 -18
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +2 -2
- package/src/sap/ui/core/mvc/JSView.js +2 -2
- package/src/sap/ui/core/mvc/TemplateView.js +2 -2
- package/src/sap/ui/core/mvc/View.js +58 -85
- package/src/sap/ui/core/mvc/XMLView.js +2 -2
- package/src/sap/ui/core/mvc/XMLViewRenderer.js +17 -20
- 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/History.js +10 -2
- package/src/sap/ui/core/routing/Router.js +8 -1
- package/src/sap/ui/core/routing/Target.js +13 -0
- package/src/sap/ui/core/routing/Targets.js +13 -2
- package/src/sap/ui/core/routing/async/Route.js +1 -1
- package/src/sap/ui/core/routing/async/Target.js +353 -259
- 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/BootSupportTool.js +11 -0
- package/src/sap/ui/core/support/InteractionTree.css +4 -0
- 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/ViewInfo.css +599 -0
- package/src/sap/ui/core/support/controls/InteractionTree.js +352 -222
- package/src/sap/ui/core/support/controls/ObjectViewer.js +3 -41
- package/src/sap/ui/core/support/controls/TimelineOverview.js +49 -24
- package/src/sap/ui/core/support/controls/TreeViewer.js +12 -58
- package/src/sap/ui/core/support/plugins/ControlTree.js +59 -68
- package/src/sap/ui/core/support/plugins/Debugging.js +9 -11
- package/src/sap/ui/core/support/plugins/Interaction.js +2 -2
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +147 -75
- package/src/sap/ui/core/support/plugins/Selector.js +19 -24
- package/src/sap/ui/core/support/plugins/TechInfo.js +5 -5
- package/src/sap/ui/core/support/plugins/Trace.js +95 -32
- package/src/sap/ui/core/support/plugins/ViewInfo.js +9 -73
- package/src/sap/ui/core/support/support.css +109 -14
- package/src/sap/ui/core/support/support.html +6 -2
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.fragment.xml +1 -0
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +149 -72
- package/src/sap/ui/core/themes/base/Icon.less +9 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/theming/Parameters.js +6 -4
- 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 +10 -28
- package/src/sap/ui/core/tmpl/TemplateControl.js +4 -4
- package/src/sap/ui/core/tmpl/_parsePath.js +35 -0
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/DraftEnabledMockServer.js +9 -4
- 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 +5 -5
- package/src/sap/ui/core/util/MockServerAnnotationsHandler.js +3 -2
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +11 -12
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +136 -63
- package/src/sap/ui/core/util/reflection/JsControlTreeModifier.js +170 -153
- package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +424 -293
- 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 +10 -4
- package/src/sap/ui/debug/DebugEnv.js +3 -4
- package/src/sap/ui/debug/Highlighter.js +8 -2
- package/src/sap/ui/debug/PropertyList.css +55 -0
- package/src/sap/ui/debug/PropertyList.js +111 -182
- package/src/sap/ui/model/Binding.js +174 -118
- package/src/sap/ui/model/ClientContextBinding.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +1 -3
- package/src/sap/ui/model/ClientModel.js +4 -4
- package/src/sap/ui/model/ClientPropertyBinding.js +4 -2
- package/src/sap/ui/model/ClientTreeBinding.js +15 -9
- package/src/sap/ui/model/ClientTreeBindingAdapter.js +28 -23
- package/src/sap/ui/model/CompositeBinding.js +98 -77
- package/src/sap/ui/model/CompositeDataState.js +2 -2
- package/src/sap/ui/model/CompositeType.js +2 -2
- package/src/sap/ui/model/Context.js +4 -2
- package/src/sap/ui/model/ContextBinding.js +6 -14
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +255 -53
- package/src/sap/ui/model/FilterOperator.js +1 -1
- package/src/sap/ui/model/FilterProcessor.js +27 -17
- package/src/sap/ui/model/FilterType.js +1 -1
- package/src/sap/ui/model/ListBinding.js +180 -117
- package/src/sap/ui/model/MetaModel.js +4 -9
- package/src/sap/ui/model/Model.js +345 -294
- package/src/sap/ui/model/PropertyBinding.js +92 -58
- package/src/sap/ui/model/SelectionModel.js +2 -2
- package/src/sap/ui/model/SimpleType.js +2 -2
- package/src/sap/ui/model/Sorter.js +1 -1
- package/src/sap/ui/model/SorterProcessor.js +1 -1
- package/src/sap/ui/model/StaticBinding.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +2 -2
- package/src/sap/ui/model/TreeBinding.js +1 -1
- package/src/sap/ui/model/TreeBindingAdapter.js +251 -100
- package/src/sap/ui/model/TreeBindingCompatibilityAdapter.js +16 -9
- package/src/sap/ui/model/TreeBindingUtils.js +1 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +8 -4
- package/src/sap/ui/model/analytics/AnalyticalTreeBindingAdapter.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalVersionInfo.js +1 -1
- package/src/sap/ui/model/analytics/BatchResponseCollector.js +1 -1
- package/src/sap/ui/model/analytics/ODataModelAdapter.js +1 -1
- package/src/sap/ui/model/analytics/odata4analytics.js +34 -25
- package/src/sap/ui/model/base/ManagedObjectModel.js +4 -0
- package/src/sap/ui/model/json/JSONListBinding.js +8 -5
- package/src/sap/ui/model/json/JSONModel.js +24 -15
- package/src/sap/ui/model/json/JSONPropertyBinding.js +4 -3
- package/src/sap/ui/model/json/JSONTreeBinding.js +1 -1
- package/src/sap/ui/model/message/MessageListBinding.js +6 -3
- package/src/sap/ui/model/message/MessageModel.js +23 -15
- package/src/sap/ui/model/message/MessagePropertyBinding.js +2 -2
- package/src/sap/ui/model/odata/AnnotationHelper.js +1 -1
- package/src/sap/ui/model/odata/AnnotationParser.js +1 -1
- package/src/sap/ui/model/odata/CountMode.js +1 -1
- package/src/sap/ui/model/odata/Filter.js +1 -1
- package/src/sap/ui/model/odata/ODataAnnotations.js +2 -2
- package/src/sap/ui/model/odata/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +1 -1
- package/src/sap/ui/model/odata/ODataMessageParser.js +2 -2
- package/src/sap/ui/model/odata/ODataMetaModel.js +5 -3
- package/src/sap/ui/model/odata/ODataMetadata.js +2 -2
- package/src/sap/ui/model/odata/ODataModel.js +8 -7
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/ODataTreeBinding.js +65 -33
- package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +1 -1
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +2 -2
- package/src/sap/ui/model/odata/ODataUtils.js +13 -11
- package/src/sap/ui/model/odata/OperationMode.js +1 -1
- package/src/sap/ui/model/odata/_AnnotationHelperExpression.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/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 +81 -9
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +3 -3
- package/src/sap/ui/model/odata/v2/ODataContextBinding.js +39 -49
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +236 -73
- package/src/sap/ui/model/odata/v2/ODataModel.js +314 -164
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +110 -97
- package/src/sap/ui/model/odata/v2/_CreatedContextsCache.js +129 -0
- package/src/sap/ui/model/odata/v4/Context.js +6 -3
- package/src/sap/ui/model/odata/v4/ODataBinding.js +5 -6
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +117 -40
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +95 -15
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +44 -31
- package/src/sap/ui/model/odata/v4/ODataModel.js +86 -78
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +47 -28
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +11 -7
- package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +10 -3
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +8 -1
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +24 -16
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +32 -30
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +52 -17
- package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +2 -2
- package/src/sap/ui/model/resource/ResourceModel.js +6 -2
- package/src/sap/ui/model/resource/ResourcePropertyBinding.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +2 -2
- package/src/sap/ui/model/type/Currency.js +2 -2
- package/src/sap/ui/model/type/Date.js +9 -3
- package/src/sap/ui/model/type/DateInterval.js +4 -2
- package/src/sap/ui/model/type/DateTime.js +2 -2
- package/src/sap/ui/model/type/DateTimeInterval.js +2 -2
- package/src/sap/ui/model/type/FileSize.js +4 -2
- package/src/sap/ui/model/type/Float.js +4 -2
- package/src/sap/ui/model/type/Integer.js +4 -2
- package/src/sap/ui/model/type/String.js +2 -2
- package/src/sap/ui/model/type/Time.js +2 -2
- package/src/sap/ui/model/type/TimeInterval.js +2 -2
- package/src/sap/ui/model/type/Unit.js +14 -7
- package/src/sap/ui/model/xml/XMLListBinding.js +15 -9
- package/src/sap/ui/model/xml/XMLModel.js +70 -41
- package/src/sap/ui/model/xml/XMLPropertyBinding.js +4 -4
- package/src/sap/ui/model/xml/XMLTreeBinding.js +5 -4
- package/src/sap/ui/performance/trace/Interaction.js +30 -15
- package/src/sap/ui/performance/trace/initTraces.js +1 -1
- package/src/sap/ui/qunit/QUnitUtils.js +3 -2
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +9 -11
- package/src/sap/ui/test/TestUtils.js +11 -4
- package/src/sap/ui/test/actions/Drag.js +6 -2
- package/src/sap/ui/test/actions/Drop.js +6 -2
- package/src/sap/ui/test/actions/EnterText.js +6 -0
- package/src/sap/ui/test/actions/Press.js +6 -0
- package/src/sap/ui/test/actions/Scroll.js +6 -0
- package/src/sap/ui/test/autowaiter/_resourceWaiter.js +4 -4
- package/src/sap/ui/test/launchers/componentLauncher.js +0 -4
- package/src/sap/ui/test/matchers/I18NText.js +29 -11
- package/src/sap/ui/test/opaQunit.js +5 -0
- package/src/sap/ui/thirdparty/crossroads.js +6 -4
- package/src/sap/ui/thirdparty/hyphenopoly/Hyphenopoly.js +1196 -0
- package/src/sap/ui/thirdparty/hyphenopoly/Hyphenopoly_Loader.js +797 -0
- package/src/sap/ui/thirdparty/hyphenopoly/hyphenEngine.asm.js +108 -127
- package/src/sap/ui/thirdparty/hyphenopoly/hyphenEngine.wasm +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/bg.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/ca.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/da.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/de.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/el-monoton.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/en-us.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/es.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/et.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/fi.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/fr.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/hi.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/hr.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/hu.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/it.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/lt.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/nb-no.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/nl.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/pt.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/ru.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/sl.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/sv.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/th.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/tr.hpb +0 -0
- package/src/sap/ui/thirdparty/hyphenopoly/patterns/uk.hpb +0 -0
- package/src/sap/ui/thirdparty/jquery.js +9 -1
- package/src/sap/ui/thirdparty/qunit-2.js +1 -1
- package/src/sap/ui/thirdparty/qunit.js +1 -1
- package/src/sap/ui/util/Mobile.js +2 -20
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/sap/ui/util/isCrossOriginURL.js +16 -6
- package/src/sap-ui-core-nojQuery.js +1 -1
- package/src/sap-ui-core.js +1 -1
- package/src/sap-ui-debug.js +3 -17
- package/ui5.yaml +5 -2
- package/src/sap/ui/core/support/plugins/MessageTest.js +0 -96
- package/src/sap/ui/thirdparty/hyphenopoly/hyphenopoly.bundle.js +0 -860
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
/*eslint-disable max-len */
|
|
7
7
|
// Provides an abstract property binding.
|
|
8
8
|
sap.ui.define([
|
|
9
9
|
'./Binding',
|
|
@@ -60,8 +60,9 @@ sap.ui.define([
|
|
|
60
60
|
*/
|
|
61
61
|
|
|
62
62
|
/**
|
|
63
|
-
* Sets the value for this binding. A model implementation should check if the current default
|
|
64
|
-
* setting the binding value and if so set the new value
|
|
63
|
+
* Sets the value for this binding. A model implementation should check if the current default
|
|
64
|
+
* binding mode permits setting the binding value, and if so, set the new value in the model,
|
|
65
|
+
* too.
|
|
65
66
|
*
|
|
66
67
|
* @function
|
|
67
68
|
* @name sap.ui.model.PropertyBinding.prototype.setValue
|
|
@@ -71,9 +72,10 @@ sap.ui.define([
|
|
|
71
72
|
*/
|
|
72
73
|
|
|
73
74
|
/**
|
|
74
|
-
* Returns a value
|
|
75
|
+
* Returns a value formatted using the given function.
|
|
75
76
|
*
|
|
76
|
-
* @param {function} fnFormat
|
|
77
|
+
* @param {function} fnFormat The function to format the value
|
|
78
|
+
* @returns {any} The formatted value
|
|
77
79
|
*
|
|
78
80
|
* @private
|
|
79
81
|
*/
|
|
@@ -85,8 +87,13 @@ sap.ui.define([
|
|
|
85
87
|
/**
|
|
86
88
|
* Sets a value, after it has been parsed and validated using the given function
|
|
87
89
|
*
|
|
88
|
-
* @param {any} vValue
|
|
89
|
-
*
|
|
90
|
+
* @param {any} vValue
|
|
91
|
+
* The value to set for this binding
|
|
92
|
+
* @param {function} fnParse
|
|
93
|
+
* The function to parse the value
|
|
94
|
+
*
|
|
95
|
+
* @returns {Promise|undefined}
|
|
96
|
+
* A promise to set the value; <code>undefined</code> if the binding has no type
|
|
90
97
|
*
|
|
91
98
|
* @throws sap.ui.model.ParseException
|
|
92
99
|
* @throws sap.ui.model.ValidateException
|
|
@@ -115,13 +122,16 @@ sap.ui.define([
|
|
|
115
122
|
} else {
|
|
116
123
|
oDataState.setInvalidValue(undefined);
|
|
117
124
|
that.setValue(vValue);
|
|
125
|
+
return undefined;
|
|
118
126
|
}
|
|
119
127
|
};
|
|
120
128
|
|
|
121
|
-
/**
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
129
|
+
/**
|
|
130
|
+
* Convert raw to external representation.
|
|
131
|
+
*
|
|
132
|
+
* @param {any} vValue Raw value
|
|
133
|
+
* @return {any} External value
|
|
134
|
+
* @private
|
|
125
135
|
*/
|
|
126
136
|
PropertyBinding.prototype._rawToExternal = function(vValue) {
|
|
127
137
|
if (this.oType) {
|
|
@@ -133,10 +143,12 @@ sap.ui.define([
|
|
|
133
143
|
return vValue;
|
|
134
144
|
};
|
|
135
145
|
|
|
136
|
-
/**
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
146
|
+
/**
|
|
147
|
+
* Convert external to raw representation.
|
|
148
|
+
*
|
|
149
|
+
* @param {any} vValue External value
|
|
150
|
+
* @return {any} Raw value
|
|
151
|
+
* @private
|
|
140
152
|
*/
|
|
141
153
|
PropertyBinding.prototype._externalToRaw = function(vValue) {
|
|
142
154
|
// formatter doesn't support two way binding
|
|
@@ -146,10 +158,12 @@ sap.ui.define([
|
|
|
146
158
|
return vValue;
|
|
147
159
|
};
|
|
148
160
|
|
|
149
|
-
/**
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
*
|
|
161
|
+
/**
|
|
162
|
+
* Convert raw to internal representation.
|
|
163
|
+
*
|
|
164
|
+
* @param {any} vValue Raw value
|
|
165
|
+
* @return {any} Internal value
|
|
166
|
+
* @private
|
|
153
167
|
*/
|
|
154
168
|
PropertyBinding.prototype._rawToInternal = function(vValue) {
|
|
155
169
|
var oFormat;
|
|
@@ -161,10 +175,11 @@ sap.ui.define([
|
|
|
161
175
|
return vValue;
|
|
162
176
|
};
|
|
163
177
|
|
|
164
|
-
/**
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
178
|
+
/**
|
|
179
|
+
* Convert internal to raw representation
|
|
180
|
+
* @param {any} vValue Internal value
|
|
181
|
+
* @return {any} Raw value
|
|
182
|
+
* @private
|
|
168
183
|
*/
|
|
169
184
|
PropertyBinding.prototype._internalToRaw = function(vValue) {
|
|
170
185
|
var oFormat;
|
|
@@ -177,7 +192,8 @@ sap.ui.define([
|
|
|
177
192
|
};
|
|
178
193
|
|
|
179
194
|
/**
|
|
180
|
-
* Returns the current external value of the bound target which is formatted via a type or
|
|
195
|
+
* Returns the current external value of the bound target which is formatted via a type or
|
|
196
|
+
* formatter function.
|
|
181
197
|
*
|
|
182
198
|
* @throws sap.ui.model.FormatException
|
|
183
199
|
*
|
|
@@ -197,12 +213,12 @@ sap.ui.define([
|
|
|
197
213
|
};
|
|
198
214
|
|
|
199
215
|
/**
|
|
200
|
-
* Sets the value for this binding. The value is parsed and validated against its type and then
|
|
201
|
-
* A model implementation should check if the current default binding mode
|
|
202
|
-
* setting the binding value and if so set the new value
|
|
216
|
+
* Sets the value for this binding. The value is parsed and validated against its type and then
|
|
217
|
+
* set to the binding. A model implementation should check if the current default binding mode
|
|
218
|
+
* permits setting the binding value, and if so, set the new value in the model, too.
|
|
203
219
|
*
|
|
204
|
-
* @param {any} vValue
|
|
205
|
-
* @return {undefined|Promise}
|
|
220
|
+
* @param {any} vValue The value to set for this binding
|
|
221
|
+
* @return {undefined|Promise} A promise in case of asynchronous type parsing or validation
|
|
206
222
|
* @throws sap.ui.model.ParseException
|
|
207
223
|
* @throws sap.ui.model.ValidateException
|
|
208
224
|
*
|
|
@@ -217,20 +233,24 @@ sap.ui.define([
|
|
|
217
233
|
default:
|
|
218
234
|
if (this.fnFormatter) {
|
|
219
235
|
Log.warning("Tried to use twoway binding, but a formatter function is used");
|
|
220
|
-
return;
|
|
236
|
+
return undefined;
|
|
221
237
|
}
|
|
222
238
|
return this._setBoundValue(vValue, this._externalToRaw.bind(this));
|
|
223
239
|
}
|
|
224
240
|
};
|
|
225
241
|
|
|
226
242
|
/**
|
|
227
|
-
* Returns the related JavaScript primitive value of the bound target which is parsed by the
|
|
228
|
-
*
|
|
243
|
+
* Returns the related JavaScript primitive value of the bound target which is parsed by the
|
|
244
|
+
* {@link sap.ui.model.SimpleType#getModelFormat model format} of this binding's type. If this
|
|
245
|
+
* binding doesn't have a type, the original value which is stored in the model is returned.
|
|
229
246
|
*
|
|
230
|
-
* This method will be used when targetType
|
|
231
|
-
*
|
|
247
|
+
* This method will be used when targetType is set to "internal" or when it's included in a
|
|
248
|
+
* {@link sap.ui.model.CompositeBinding CompositeBinding} and the CompositeBinding needs to have
|
|
249
|
+
* the related JavaScript primitive values for its type or formatter.
|
|
232
250
|
*
|
|
233
|
-
* @return {any}
|
|
251
|
+
* @return {any}
|
|
252
|
+
* The value which is parsed by the model format of the bound target, or the original value in
|
|
253
|
+
* case of no type.
|
|
234
254
|
*
|
|
235
255
|
* @public
|
|
236
256
|
*/
|
|
@@ -239,9 +259,14 @@ sap.ui.define([
|
|
|
239
259
|
};
|
|
240
260
|
|
|
241
261
|
/**
|
|
242
|
-
* Sets the value for this binding with the related JavaScript primitive type. The value is
|
|
262
|
+
* Sets the value for this binding with the related JavaScript primitive type. The value is
|
|
263
|
+
* formatted with the {@link sap.ui.model.SimpleType#getModelFormat model format} and validated
|
|
264
|
+
* against its type and then set to the model.
|
|
243
265
|
*
|
|
244
|
-
* @param {any} vValue
|
|
266
|
+
* @param {any} vValue
|
|
267
|
+
* The value to set for this binding
|
|
268
|
+
* @returns {Promise|undefined}
|
|
269
|
+
* A promise to set the value; <code>undefined</code> if the binding has no type
|
|
245
270
|
*
|
|
246
271
|
* @throws sap.ui.model.ValidateException
|
|
247
272
|
*
|
|
@@ -252,12 +277,15 @@ sap.ui.define([
|
|
|
252
277
|
};
|
|
253
278
|
|
|
254
279
|
/**
|
|
255
|
-
* Returns the raw model value, as it exists in the model dataset
|
|
280
|
+
* Returns the raw model value, as it exists in the model dataset.
|
|
256
281
|
*
|
|
257
|
-
* This method will be used when targetType of a binding is set to "raw" or it's
|
|
258
|
-
*
|
|
282
|
+
* This method will be used when targetType of a binding is set to "raw" or when it's include
|
|
283
|
+
* in a {@link sap.ui.model.CompositeBinding CompositeBinding} and the CompositeBinding needs to
|
|
284
|
+
* have the related JavaScript primitive values for its type or formatter.
|
|
259
285
|
*
|
|
260
|
-
* @return {any}
|
|
286
|
+
* @return {any}
|
|
287
|
+
* The value which is parsed by the model format of the bound target, or the original value in
|
|
288
|
+
* case of no type.
|
|
261
289
|
*
|
|
262
290
|
* @public
|
|
263
291
|
*/
|
|
@@ -271,7 +299,10 @@ sap.ui.define([
|
|
|
271
299
|
* Sets the value for this binding with the raw model value. This setter will perform type
|
|
272
300
|
* validation, in case a type is defined on the binding.
|
|
273
301
|
*
|
|
274
|
-
* @param {any} vValue
|
|
302
|
+
* @param {any} vValue
|
|
303
|
+
* The value to set for this binding
|
|
304
|
+
* @returns {Promise|undefined}
|
|
305
|
+
* A promise to set the value; <code>undefined</code> if the binding has no type
|
|
275
306
|
*
|
|
276
307
|
* @throws sap.ui.model.ValidateException
|
|
277
308
|
*
|
|
@@ -284,11 +315,14 @@ sap.ui.define([
|
|
|
284
315
|
};
|
|
285
316
|
|
|
286
317
|
/**
|
|
287
|
-
* Sets the optional type and internal type for the binding. The type and internal type are used
|
|
288
|
-
* The internal type is the property type of the element
|
|
318
|
+
* Sets the optional type and internal type for the binding. The type and internal type are used
|
|
319
|
+
* to do the parsing/formatting correctly. The internal type is the property type of the element
|
|
320
|
+
* which the value is formatted to.
|
|
289
321
|
*
|
|
290
|
-
* @param {sap.ui.model.Type} oType
|
|
291
|
-
*
|
|
322
|
+
* @param {sap.ui.model.Type} oType
|
|
323
|
+
* The type for the binding
|
|
324
|
+
* @param {string} sInternalType
|
|
325
|
+
* The internal type of the element property which this binding is bound against.
|
|
292
326
|
*
|
|
293
327
|
* @public
|
|
294
328
|
*/
|
|
@@ -298,8 +332,8 @@ sap.ui.define([
|
|
|
298
332
|
};
|
|
299
333
|
|
|
300
334
|
/**
|
|
301
|
-
* Returns the type if any for the binding.
|
|
302
|
-
* @returns {sap.ui.model.Type}
|
|
335
|
+
* Returns the type (if any) for the binding.
|
|
336
|
+
* @returns {sap.ui.model.Type} The binding type
|
|
303
337
|
* @public
|
|
304
338
|
*/
|
|
305
339
|
PropertyBinding.prototype.getType = function() {
|
|
@@ -308,8 +342,8 @@ sap.ui.define([
|
|
|
308
342
|
|
|
309
343
|
/**
|
|
310
344
|
* Sets the optional formatter function for the binding.
|
|
311
|
-
|
|
312
|
-
* @param {function} fnFormatter
|
|
345
|
+
*
|
|
346
|
+
* @param {function} fnFormatter The formatter function for the binding
|
|
313
347
|
*
|
|
314
348
|
* @public
|
|
315
349
|
*/
|
|
@@ -318,8 +352,8 @@ sap.ui.define([
|
|
|
318
352
|
};
|
|
319
353
|
|
|
320
354
|
/**
|
|
321
|
-
* Returns the formatter function
|
|
322
|
-
* @returns {Function}
|
|
355
|
+
* Returns the formatter function.
|
|
356
|
+
* @returns {Function} The formatter function
|
|
323
357
|
* @public
|
|
324
358
|
*/
|
|
325
359
|
PropertyBinding.prototype.getFormatter = function() {
|
|
@@ -327,8 +361,8 @@ sap.ui.define([
|
|
|
327
361
|
};
|
|
328
362
|
|
|
329
363
|
/**
|
|
330
|
-
* Returns the binding mode
|
|
331
|
-
* @returns {sap.ui.model.BindingMode}
|
|
364
|
+
* Returns the binding mode.
|
|
365
|
+
* @returns {sap.ui.model.BindingMode} The binding mode
|
|
332
366
|
* @public
|
|
333
367
|
*/
|
|
334
368
|
PropertyBinding.prototype.getBindingMode = function() {
|
|
@@ -336,8 +370,8 @@ sap.ui.define([
|
|
|
336
370
|
};
|
|
337
371
|
|
|
338
372
|
/**
|
|
339
|
-
* Sets the binding mode
|
|
340
|
-
* @param {sap.ui.model.BindingMode} sBindingMode
|
|
373
|
+
* Sets the binding mode.
|
|
374
|
+
* @param {sap.ui.model.BindingMode} sBindingMode The binding mode
|
|
341
375
|
* @protected
|
|
342
376
|
*/
|
|
343
377
|
PropertyBinding.prototype.setBindingMode = function(sBindingMode) {
|
|
@@ -347,8 +381,8 @@ sap.ui.define([
|
|
|
347
381
|
/**
|
|
348
382
|
* Resumes the binding update. Change events will be fired again.
|
|
349
383
|
*
|
|
350
|
-
* When the binding is resumed and the control value was changed in the meantime, the control
|
|
351
|
-
* current value from the model and a change event will be fired.
|
|
384
|
+
* When the binding is resumed and the control value was changed in the meantime, the control
|
|
385
|
+
* value will be set to the current value from the model and a change event will be fired.
|
|
352
386
|
* @public
|
|
353
387
|
*/
|
|
354
388
|
PropertyBinding.prototype.resume = function() {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
/*eslint-disable max-len */
|
|
7
7
|
// Provides class sap.ui.model.SelectionModel
|
|
8
8
|
sap.ui.define(['sap/ui/base/EventProvider', "sap/base/assert"],
|
|
9
9
|
function(EventProvider, assert) {
|
|
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/base/EventProvider', "sap/base/assert"],
|
|
|
20
20
|
* @extends sap.ui.base.EventProvider
|
|
21
21
|
*
|
|
22
22
|
* @author SAP SE
|
|
23
|
-
* @version 1.
|
|
23
|
+
* @version 1.96.2
|
|
24
24
|
*
|
|
25
25
|
* @param {int} iSelectionMode <code>sap.ui.model.SelectionModel.SINGLE_SELECTION</code> or <code>sap.ui.model.SelectionModel.MULTI_SELECTION</code>
|
|
26
26
|
*
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
/*eslint-disable max-len */
|
|
7
7
|
// Provides the base implementation for all simple type implementations that are able to format,
|
|
8
8
|
// parse and validate values
|
|
9
9
|
sap.ui.define([
|
|
@@ -46,7 +46,7 @@ sap.ui.define([
|
|
|
46
46
|
*
|
|
47
47
|
* @extends sap.ui.model.Type
|
|
48
48
|
* @public
|
|
49
|
-
* @version 1.
|
|
49
|
+
* @version 1.96.2
|
|
50
50
|
*/
|
|
51
51
|
var SimpleType = Type.extend("sap.ui.model.SimpleType", /** @lends sap.ui.model.SimpleType.prototype */ {
|
|
52
52
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
/*eslint-disable max-len */
|
|
7
7
|
// Provides the concept of a sorter for list bindings
|
|
8
8
|
sap.ui.define(['sap/ui/base/Object', "sap/base/Log"],
|
|
9
9
|
function(BaseObject, Log) {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
/*eslint-disable max-len */
|
|
7
7
|
// Provides enumeration sap.ui.model.TreeAutoExpandMode
|
|
8
8
|
sap.ui.define([],
|
|
9
9
|
function() {
|
|
@@ -12,7 +12,7 @@ sap.ui.define([],
|
|
|
12
12
|
/**
|
|
13
13
|
* Different modes for setting the auto expand mode on tree or analytical bindings.
|
|
14
14
|
*
|
|
15
|
-
* @version 1.
|
|
15
|
+
* @version 1.96.2
|
|
16
16
|
* @enum {string}
|
|
17
17
|
* @alias sap.ui.model.TreeAutoExpandMode
|
|
18
18
|
* @protected
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
/*eslint-disable max-len */
|
|
7
7
|
// Provides an abstraction for list bindings
|
|
8
8
|
sap.ui.define(['./Binding', './Filter', './Sorter'],
|
|
9
9
|
function(Binding, Filter, Sorter) {
|