@openui5/sap.ui.core 1.115.1 → 1.116.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 +18 -0
- package/.eslintrc.json +11 -0
- package/.reuse/dep5 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +1 -1
- package/src/jquery.sap.global.js +1 -1
- 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.sjax.js +2 -2
- package/src/jquery.sap.storage.js +3 -3
- package/src/sap/base/Event.js +106 -0
- package/src/sap/base/Eventing.js +320 -0
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/i18n/Formatting.js +991 -0
- package/src/sap/base/i18n/LanguageTag.js +189 -0
- package/src/sap/base/i18n/Localization.js +711 -0
- package/src/sap/base/i18n/ResourceBundle.js +5 -20
- package/src/sap/base/i18n/date/CalendarType.js +54 -0
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +105 -0
- package/src/sap/base/i18n/date/TimezoneUtils.js +287 -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 +3 -3
- package/src/sap/ui/Global.js +4 -4
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +4 -12
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +8 -12
- package/src/sap/ui/base/ManagedObjectMetadata.js +30 -7
- package/src/sap/ui/base/Metadata.js +1 -1
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/base/SyncPromise.js +10 -5
- package/src/sap/ui/core/.library +2 -2
- package/src/sap/ui/core/AccessKeysEnablement.js +10 -5
- package/src/sap/ui/core/AnimationMode.js +49 -0
- package/src/sap/ui/core/BusyIndicator.js +33 -42
- package/src/sap/ui/core/CalendarType.js +11 -37
- package/src/sap/ui/core/Component.js +4 -5
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +2 -2
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +409 -1270
- package/src/sap/ui/core/Control.js +4 -12
- package/src/sap/ui/core/ControlBehavior.js +157 -0
- package/src/sap/ui/core/Core.js +124 -132
- 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 +14 -3
- 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/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/IndicationColorSupport.js +1 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +5 -7
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +12 -12
- 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/Lib.js +109 -22
- 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 +151 -430
- package/src/sap/ui/core/LocaleData.js +39 -11
- 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 +1 -1
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/StaticArea.js +31 -17
- package/src/sap/ui/core/Theming.js +451 -0
- 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 +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 +1 -0
- package/src/sap/ui/core/_IconRegistry.js +7 -1
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +12 -83
- package/src/sap/ui/core/date/UI5Date.js +2 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +8 -10
- package/src/sap/ui/core/delegate/ScrollEnablement.js +5 -5
- 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 +20 -15
- package/src/sap/ui/core/format/TimezoneUtil.js +15 -273
- 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/messagebundle_cs.properties +1 -1
- package/src/sap/ui/core/messagebundle_cy.properties +1 -1
- package/src/sap/ui/core/messagebundle_da.properties +1 -1
- package/src/sap/ui/core/messagebundle_de.properties +1 -1
- package/src/sap/ui/core/messagebundle_el.properties +1 -1
- package/src/sap/ui/core/messagebundle_en.properties +1 -1
- package/src/sap/ui/core/messagebundle_en_GB.properties +1 -1
- package/src/sap/ui/core/messagebundle_es.properties +1 -1
- package/src/sap/ui/core/messagebundle_es_MX.properties +1 -1
- package/src/sap/ui/core/messagebundle_et.properties +1 -1
- package/src/sap/ui/core/messagebundle_id.properties +1 -1
- package/src/sap/ui/core/messagebundle_it.properties +49 -49
- package/src/sap/ui/core/messagebundle_iw.properties +1 -1
- package/src/sap/ui/core/messagebundle_kk.properties +1 -1
- package/src/sap/ui/core/messagebundle_ko.properties +1 -1
- package/src/sap/ui/core/messagebundle_lt.properties +1 -1
- package/src/sap/ui/core/messagebundle_lv.properties +1 -1
- package/src/sap/ui/core/messagebundle_ms.properties +8 -8
- package/src/sap/ui/core/messagebundle_nl.properties +1 -1
- package/src/sap/ui/core/messagebundle_no.properties +1 -1
- package/src/sap/ui/core/messagebundle_pl.properties +1 -1
- package/src/sap/ui/core/messagebundle_pt.properties +1 -1
- package/src/sap/ui/core/messagebundle_pt_PT.properties +1 -1
- package/src/sap/ui/core/messagebundle_ro.properties +1 -1
- package/src/sap/ui/core/messagebundle_sh.properties +1 -1
- package/src/sap/ui/core/messagebundle_sv.properties +1 -1
- package/src/sap/ui/core/messagebundle_th.properties +1 -1
- package/src/sap/ui/core/messagebundle_uk.properties +21 -21
- package/src/sap/ui/core/messagebundle_vi.properties +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 +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 +14 -16
- 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/HashChanger.js +1 -0
- package/src/sap/ui/core/routing/Route.js +1 -0
- package/src/sap/ui/core/routing/Router.js +3 -1
- package/src/sap/ui/core/rules/Config.support.js +2 -2
- package/src/sap/ui/core/rules/Model.support.js +3 -1
- 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 -1
- package/src/sap/ui/core/support/controls/TimelineOverview.js +1 -1
- package/src/sap/ui/core/support/plugins/ControlTree.js +2 -2
- 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/LocalBusyIndicator.less +4 -4
- package/src/sap/ui/core/themes/base/base.less +41 -20
- 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 +6 -5
- package/src/sap/ui/core/theming/ThemeManager.js +310 -447
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +5 -10
- 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 +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 +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +3 -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.js +1 -1
- package/src/sap/ui/events/PseudoEvents.js +17 -9
- package/src/sap/ui/model/Binding.js +19 -15
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/CompositeBinding.js +57 -19
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +1 -1
- package/src/sap/ui/model/ListBinding.js +42 -1
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +5 -4
- package/src/sap/ui/model/PropertyBinding.js +10 -0
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +4 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/base/ManagedObjectModel.js +1 -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/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +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 +8 -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 +3 -3
- 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 +3 -2
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +14 -3
- package/src/sap/ui/model/odata/v2/ODataModel.js +45 -31
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/Context.js +7 -3
- package/src/sap/ui/model/odata/v4/ODataBinding.js +68 -39
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +12 -8
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +30 -8
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +11 -9
- package/src/sap/ui/model/odata/v4/ODataModel.js +10 -14
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +64 -31
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +21 -16
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +2 -0
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +37 -14
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +11 -1
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +7 -4
- package/src/sap/ui/model/odata/v4/lib/_V2MetadataConverter.js +4 -4
- package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/test/Opa5.js +1 -1
- package/src/sap/ui/test/autowaiter/_autoWaiter.js +1 -1
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/gherkin/simpleGherkinParser.js +10 -5
- package/src/sap/ui/test/matchers/LabelFor.js +1 -0
- package/src/sap/ui/thirdparty/caja-html-sanitizer.js +111 -96
- package/src/sap/ui/util/ActivityDetection.js +7 -1
- package/src/sap/ui/util/Mobile.js +11 -8
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +5 -2
- package/src/ui5loader.js +169 -185
- package/test/sap/ui/core/FormatHelper.js +3 -2
- package/test/sap/ui/core/demokit/docuindex.json +6 -0
- package/test/sap/ui/core/demokit/sample/OpaBusyIndicator/OpaBusyIndicator.js +1 -1
- package/test/sap/ui/core/demokit/sample/OpaMatchers/OpaMatchers.js +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/MIT.ODataTypes.html +9 -14
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Opa.qunit.js +7 -0
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/tests/filter.js +2 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Component.js +27 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ListReport.controller.js +43 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ListReport.view.xml +47 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Main.controller.js +27 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Main.view.xml +7 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/NotFound.view.xml +8 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ObjectPage.controller.js +123 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/ObjectPage.view.xml +92 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Opa.qunit.html +27 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/Opa.qunit.js +69 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/README.html +55 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/SandboxModel.js +56 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/POST-SalesOrderList.json +66 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000000')-SO_2_SOITEM.json +57 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000000').json +20 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000001').json +9 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList('0500000007')-SO_2_BP.json +12 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/SalesOrderList.json +62 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_CurrencyCode.json +85 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_CurrencyCode.xml +185 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_ProductID.json +93 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/VH_ProductID.xml +262 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/data/metadata.xml +1779 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/manifest.json +134 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/DeepCreate/pages/Main.js +119 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/pages/Main.js +0 -41
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrderTP100_V2/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrderTP100_V4/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.controller.js +5 -17
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.view.xml +3 -3
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/test/integration/arrangements/Startup.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/test/integration/arrangements/Startup.js +1 -1
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +25 -7
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +86 -2
- package/test/sap/ui/core/qunit/DataState.qunit.js +2 -7
- package/test/sap/ui/core/qunit/HTML.qunit.js +31 -31
- package/test/sap/ui/core/qunit/Lib.qunit.js +55 -2
- package/test/sap/ui/core/qunit/LocalBusyIndicator.qunit.js +22 -15
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -3
- package/test/sap/ui/core/qunit/Object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/ThemeManager.qunit.js +2 -2
- package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +9 -3
- package/test/sap/ui/core/qunit/Theming.beforeBootstrap.qunit.js +13 -0
- package/test/sap/ui/core/qunit/Theming.qunit.js +229 -0
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +2 -7
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +2 -7
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +24 -0
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +275 -0
- package/test/sap/ui/core/qunit/base/i18n/Localization.qunit.js +259 -0
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +5 -6
- package/test/sap/ui/core/qunit/base/security/sanitizeHTML.qunit.js +17 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +1 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.beforeBootstrap.qunit.js +13 -12
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +388 -254
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +19 -30
- package/test/sap/ui/core/qunit/component/Models.qunit.js +7 -28
- package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +8 -26
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/manifestcomp/Component-preload.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/manifestcomp/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/mycomp/Component-preload.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/mycomp/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/async/mysubcomp/Component-preload.js +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/mysubcomp/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/customizing/customer/ext/Component.js +0 -4
- package/test/sap/ui/core/qunit/component/testdata/customizing/customer/ext/sync/Component.js +2 -6
- package/test/sap/ui/core/qunit/component/testdata/customizing/customersub/Component.js +0 -4
- package/test/sap/ui/core/qunit/component/testdata/inherit/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentA/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsync/parentB/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentA/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/inheritAsyncError/parentB/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/other/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/terminologies/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component1/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component2/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component3/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/component5/Component.js +2 -2
- package/test/sap/ui/core/qunit/component/testdata/terminologies/reuse/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/v1/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/v1empty/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/v1inline/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v1missing/Component.js +2 -7
- package/test/sap/ui/core/qunit/component/testdata/v2/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v2asyncRootView/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v2empty/Component.js +2 -9
- package/test/sap/ui/core/qunit/component/testdata/v2inline/Component.js +2 -5
- package/test/sap/ui/core/qunit/component/testdata/v2missing/Component.js +2 -9
- package/test/sap/ui/core/qunit/component/testdata/v2version/Component.js +2 -2
- package/test/sap/ui/core/qunit/dnd/DragDropInfo.qunit.js +1 -2
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +2 -0
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +2 -0
- package/test/sap/ui/core/qunit/gherkin/dataTableUtils.qunit.js +2 -2
- package/test/sap/ui/core/qunit/i18n/Locale.qunit.js +0 -52
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +1 -1
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +14 -24
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +18 -0
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/json/JSONPropertyBinding.qunit.js +7 -12
- package/test/sap/ui/core/qunit/json/JSONTwoWay.qunit.js +3 -8
- package/test/sap/ui/core/qunit/loader/fixture/amd-with-export-true/module1.js +2 -2
- package/test/sap/ui/core/qunit/messages/MessageMixin.qunit.js +2 -7
- package/test/sap/ui/core/qunit/messages/messagesUsage.qunit.js +1 -1
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +36 -11
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/Context.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +63 -6
- package/test/sap/ui/core/qunit/model/Model.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +40 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +2 -7
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +2 -7
- package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +9 -8
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -4
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/AnnotationParserNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/ODataMessageParser.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/ODataMessageParserNoFakeService.qunit.js +2 -8
- package/test/sap/ui/core/qunit/odata/ODataMetadataNoFakeService.qunit.js +1 -6
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +24 -0
- package/test/sap/ui/core/qunit/odata/v2/Context.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataContextBindingNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +31 -17
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +28 -19
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +70 -15
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +4 -9
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v2/_CreatedContextsCache.qunit.js +2 -7
- package/test/sap/ui/core/qunit/odata/v4/AnnotationHelper.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +45 -17
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +152 -151
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +55 -27
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +119 -4
- 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 +754 -195
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +42 -53
- package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +283 -170
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +103 -78
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +3 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +87 -58
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +3 -1
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +124 -22
- package/test/sap/ui/core/qunit/odata/v4/testsuite.odatav4.qunit.js +4 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +1 -1
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +5 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +17 -37
- package/test/sap/ui/core/qunit/routing/HashChanger.qunit.js +1 -6
- package/test/sap/ui/core/qunit/routing/RouterHashChanger.qunit.js +1 -10
- package/test/sap/ui/core/qunit/routing/async/Router.qunit.js +1 -22
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +1 -4
- package/test/sap/ui/core/qunit/rule/model/modelSupport.qunit.js +34 -1
- package/test/sap/ui/core/qunit/testdata/fastnavigation/view/FastNavigation.view.xml +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib1/i18n.properties +1 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib1/library.js +10 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib1/manifest.json +10 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib2/library.js +10 -0
- package/test/sap/ui/core/qunit/testdata/libraries/resourcebundle/lib2/messagebundle.properties +1 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.databinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +29 -0
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +397 -607
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +16 -2
- package/test/sap/ui/core/qunit/types/Types.qunit.js +2 -37
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/SyncPromise.qunit.js +4 -1
- package/test/sap/ui/core/qunit/util/jQuery.sap.measure.qunit.js +16 -11
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +4 -14
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +7 -11
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +1 -1
- package/test/sap/ui/core/qunit/xml/XMLTwoWay.qunit.js +3 -7
- package/test/sap/ui/core/relnotes/changes-1.115.json +1 -37
- package/test/sap/ui/core/relnotes/changes-1.116.json +82 -0
- 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/samples.js +2 -0
- package/ui5.yaml +1 -1
|
@@ -60,7 +60,7 @@ sap.ui.define([
|
|
|
60
60
|
* @hideconstructor
|
|
61
61
|
* @public
|
|
62
62
|
* @since 1.111.0
|
|
63
|
-
* @version 1.
|
|
63
|
+
* @version 1.116.0
|
|
64
64
|
*/
|
|
65
65
|
function UI5Date(vDateParts, sTimezoneID) {
|
|
66
66
|
var oDateInstance = UI5Date._createDateInstance(vDateParts);
|
|
@@ -197,7 +197,7 @@ sap.ui.define([
|
|
|
197
197
|
/**
|
|
198
198
|
* Clones this UI5Date instance.
|
|
199
199
|
*
|
|
200
|
-
* @returns {Date|module:sap/ui/core/date/UI5Date}
|
|
200
|
+
* @returns {Date|module:sap/ui/core/date/UI5Date} The cloned date instance
|
|
201
201
|
*
|
|
202
202
|
* @private
|
|
203
203
|
*/
|
|
@@ -12,15 +12,16 @@
|
|
|
12
12
|
|
|
13
13
|
// Provides class sap.ui.core.delegate.ItemNavigation
|
|
14
14
|
sap.ui.define([
|
|
15
|
+
'sap/base/i18n/Localization',
|
|
15
16
|
'sap/ui/base/EventProvider',
|
|
16
17
|
"sap/base/assert",
|
|
17
18
|
"sap/base/Log",
|
|
18
19
|
"sap/ui/events/KeyCodes",
|
|
19
20
|
"sap/ui/thirdparty/jquery",
|
|
20
|
-
"sap/ui/core/
|
|
21
|
+
"sap/ui/core/Element",
|
|
21
22
|
"sap/ui/dom/jquery/Selectors" // jQuery custom selectors ":sapFocusable"
|
|
22
23
|
],
|
|
23
|
-
function(EventProvider, assert, Log, KeyCodes, jQuery,
|
|
24
|
+
function(Localization, EventProvider, assert, Log, KeyCodes, jQuery, Element) {
|
|
24
25
|
"use strict";
|
|
25
26
|
/* eslint-disable no-lonely-if */
|
|
26
27
|
|
|
@@ -81,7 +82,7 @@ sap.ui.define([
|
|
|
81
82
|
* @param {Element[]} aItemDomRefs Array of DOM references representing the items for the navigation
|
|
82
83
|
* @param {boolean} [bNotInTabChain=false] Whether the selected element should be in the tab chain or not
|
|
83
84
|
*
|
|
84
|
-
* @version 1.
|
|
85
|
+
* @version 1.116.0
|
|
85
86
|
* @alias sap.ui.core.delegate.ItemNavigation
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
@@ -465,9 +466,6 @@ sap.ui.define([
|
|
|
465
466
|
*/
|
|
466
467
|
ItemNavigation.prototype.setTableMode = function(bTableMode, bTableList) {
|
|
467
468
|
this.bTableMode = bTableMode;
|
|
468
|
-
if (this.oConfiguration === undefined) {
|
|
469
|
-
this.oConfiguration = Configuration;
|
|
470
|
-
}
|
|
471
469
|
this.bTableList = bTableMode ? bTableList : false;
|
|
472
470
|
return this;
|
|
473
471
|
};
|
|
@@ -558,11 +556,11 @@ sap.ui.define([
|
|
|
558
556
|
var iOldIndex = iIndex;
|
|
559
557
|
if (oEvent && oEvent.keyCode == KeyCodes.ARROW_RIGHT) {
|
|
560
558
|
if (iCol < this.iColumns - 1) {
|
|
561
|
-
iIndex +=
|
|
559
|
+
iIndex += Localization.getRTL() ? -1 : 1;
|
|
562
560
|
}
|
|
563
561
|
} else if (oEvent && oEvent.keyCode == KeyCodes.ARROW_LEFT) {
|
|
564
562
|
if (iCol > 1) {
|
|
565
|
-
iIndex -=
|
|
563
|
+
iIndex -= Localization.getRTL() ? -1 : 1;
|
|
566
564
|
}
|
|
567
565
|
} else {
|
|
568
566
|
if (iCol > 1) {
|
|
@@ -791,7 +789,7 @@ sap.ui.define([
|
|
|
791
789
|
* @private
|
|
792
790
|
*/
|
|
793
791
|
ItemNavigation.prototype.onsapfocusleave = function(oEvent) {
|
|
794
|
-
if (!oEvent.relatedControlId || !this.oDomRef || !this.oDomRef.contains(
|
|
792
|
+
if (!oEvent.relatedControlId || !this.oDomRef || !this.oDomRef.contains(Element.registry.get(oEvent.relatedControlId).getFocusDomRef())) {
|
|
795
793
|
|
|
796
794
|
// entirely leaving the control handled by this ItemNavigation instance
|
|
797
795
|
var iIndex;
|
|
@@ -819,7 +817,7 @@ sap.ui.define([
|
|
|
819
817
|
}
|
|
820
818
|
}
|
|
821
819
|
|
|
822
|
-
if (!oEvent.relatedControlId || oParentDomRef.contains(
|
|
820
|
+
if (!oEvent.relatedControlId || oParentDomRef.contains(Element.registry.get(oEvent.relatedControlId).getFocusDomRef())) {
|
|
823
821
|
jQuery(this.aItemDomRefs[this.iFocusedIndex]).attr("tabindex", -1);
|
|
824
822
|
}
|
|
825
823
|
}
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
|
|
13
13
|
// Provides class sap.ui.core.delegate.ScrollEnablement
|
|
14
14
|
sap.ui.define([
|
|
15
|
+
'sap/base/i18n/Localization',
|
|
15
16
|
'sap/ui/Device',
|
|
16
17
|
'sap/ui/base/Object',
|
|
17
|
-
'sap/ui/core/Core',
|
|
18
18
|
'sap/ui/core/IntervalTrigger',
|
|
19
19
|
'sap/ui/core/ResizeHandler',
|
|
20
20
|
"sap/ui/thirdparty/jquery",
|
|
21
21
|
"sap/ui/events/KeyCodes"
|
|
22
22
|
],
|
|
23
23
|
function(
|
|
24
|
+
Localization,
|
|
24
25
|
Device,
|
|
25
26
|
BaseObject,
|
|
26
|
-
Core,
|
|
27
27
|
IntervalTrigger,
|
|
28
28
|
ResizeHandler,
|
|
29
29
|
jQuery,
|
|
@@ -58,7 +58,7 @@ sap.ui.define([
|
|
|
58
58
|
*
|
|
59
59
|
* @protected
|
|
60
60
|
* @alias sap.ui.core.delegate.ScrollEnablement
|
|
61
|
-
* @version 1.
|
|
61
|
+
* @version 1.116.0
|
|
62
62
|
* @author SAP SE
|
|
63
63
|
*/
|
|
64
64
|
var ScrollEnablement = BaseObject.extend("sap.ui.core.delegate.ScrollEnablement", /** @lends sap.ui.core.delegate.ScrollEnablement.prototype */ {
|
|
@@ -425,7 +425,7 @@ sap.ui.define([
|
|
|
425
425
|
}
|
|
426
426
|
|
|
427
427
|
if (!this.getVertical()) {
|
|
428
|
-
left =
|
|
428
|
+
left = Localization.getRTL() ?
|
|
429
429
|
container.clientWidth - container.scrollWidth : this._scrollX;
|
|
430
430
|
}
|
|
431
431
|
|
|
@@ -853,7 +853,7 @@ sap.ui.define([
|
|
|
853
853
|
if (oConfig.nonTouchScrolling === true) {
|
|
854
854
|
this._bDragScroll = true; // optional drag instead of native scrolling
|
|
855
855
|
}
|
|
856
|
-
if (
|
|
856
|
+
if (Localization.getRTL()) {
|
|
857
857
|
this._scrollX = 9999; // in RTL case initially scroll to the very right
|
|
858
858
|
}
|
|
859
859
|
},
|
|
@@ -452,29 +452,34 @@ sap.ui.define([
|
|
|
452
452
|
* </ul>
|
|
453
453
|
*/
|
|
454
454
|
DateFormat.getDateTimeWithTimezoneInstance = function(oFormatOptions, oLocale) {
|
|
455
|
-
// do not modify the input format options
|
|
456
455
|
if (oFormatOptions && !(oFormatOptions instanceof Locale)) {
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
456
|
+
/** @deprecated As of version 1.101.0 */
|
|
457
|
+
(function () {
|
|
458
|
+
// do not modify the input format options
|
|
459
|
+
oFormatOptions = Object.assign({}, oFormatOptions);
|
|
460
|
+
// translate old showTimezone values (backward compatibility)
|
|
461
|
+
if (typeof oFormatOptions.showTimezone === "string") {
|
|
462
|
+
var sShowTimezone = oFormatOptions.showTimezone;
|
|
463
|
+
if (oFormatOptions.showDate === undefined && oFormatOptions.showTime === undefined) {
|
|
464
|
+
if (sShowTimezone === "Hide") {
|
|
465
|
+
oFormatOptions.showTimezone = false;
|
|
466
|
+
} else if (sShowTimezone === "Only") {
|
|
467
|
+
oFormatOptions.showDate = false;
|
|
468
|
+
oFormatOptions.showTime = false;
|
|
469
|
+
}
|
|
467
470
|
}
|
|
471
|
+
oFormatOptions.showTimezone = sShowTimezone !== "Hide";
|
|
468
472
|
}
|
|
469
|
-
|
|
470
|
-
}
|
|
473
|
+
}());
|
|
471
474
|
if (oFormatOptions.showDate === false
|
|
472
475
|
&& oFormatOptions.showTime === false
|
|
473
476
|
&& oFormatOptions.showTimezone === false) {
|
|
474
|
-
throw new TypeError("Invalid Configuration. One of the following format options must be true:
|
|
477
|
+
throw new TypeError("Invalid Configuration. One of the following format options must be true: "
|
|
478
|
+
+ "showDate, showTime or showTimezone.");
|
|
475
479
|
}
|
|
476
480
|
}
|
|
477
|
-
return this.createInstance(oFormatOptions, oLocale,
|
|
481
|
+
return this.createInstance(oFormatOptions, oLocale,
|
|
482
|
+
DateFormat._getDateTimeWithTimezoneInfo(oFormatOptions || {}));
|
|
478
483
|
};
|
|
479
484
|
|
|
480
485
|
/**
|
|
@@ -3,286 +3,28 @@
|
|
|
3
3
|
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
|
-
sap
|
|
6
|
+
sap.ui.define([
|
|
7
|
+
"sap/base/i18n/date/TimezoneUtils"
|
|
8
|
+
], function(
|
|
9
|
+
TimezoneUtils
|
|
10
|
+
) {
|
|
8
11
|
"use strict";
|
|
9
|
-
|
|
10
12
|
/**
|
|
11
13
|
* Static collection of utility functions to handle time zone related conversions
|
|
12
14
|
*
|
|
13
15
|
* @author SAP SE
|
|
14
|
-
* @version 1.
|
|
16
|
+
* @version 1.116.0
|
|
15
17
|
* @namespace
|
|
16
|
-
* @
|
|
18
|
+
* @name module:sap/ui/core/format/TimezoneUtils
|
|
17
19
|
* @private
|
|
18
20
|
* @ui5-restricted sap.ui.core.Configuration, sap.ui.core.format.DateFormat
|
|
19
|
-
*/
|
|
20
|
-
var TimezoneUtil = {};
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Cache for the (browser's) local IANA timezone ID
|
|
24
|
-
*
|
|
25
|
-
* @type {string}
|
|
26
|
-
*/
|
|
27
|
-
var sLocalTimezone = "";
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Cache for valid time zones provided by <code>Intl.supportedValuesOf("timeZone")</code>
|
|
31
|
-
*
|
|
32
|
-
* @type {Array}
|
|
33
|
-
*/
|
|
34
|
-
var aSupportedTimezoneIDs;
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Cache for Intl.DateTimeFormat instances
|
|
38
|
-
*/
|
|
39
|
-
var oIntlDateTimeFormatCache = {
|
|
40
|
-
_oCache: new Map(),
|
|
41
|
-
/**
|
|
42
|
-
* When cache limit is reached, it gets cleared
|
|
43
|
-
*/
|
|
44
|
-
_iCacheLimit: 10,
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* Creates or gets an instance of Intl.DateTimeFormat.
|
|
48
|
-
*
|
|
49
|
-
* @param {string} sTimezone IANA timezone ID
|
|
50
|
-
* @returns {Intl.DateTimeFormat} Intl.DateTimeFormat instance
|
|
51
|
-
*/
|
|
52
|
-
get: function (sTimezone) {
|
|
53
|
-
var cacheEntry = this._oCache.get(sTimezone);
|
|
54
|
-
if (cacheEntry) {
|
|
55
|
-
return cacheEntry;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
var oOptions = {
|
|
59
|
-
hourCycle: "h23",
|
|
60
|
-
hour: "2-digit",
|
|
61
|
-
minute: "2-digit",
|
|
62
|
-
second: "2-digit",
|
|
63
|
-
fractionalSecondDigits: 3,
|
|
64
|
-
day: "2-digit",
|
|
65
|
-
month: "2-digit",
|
|
66
|
-
year: "numeric",
|
|
67
|
-
timeZone: sTimezone,
|
|
68
|
-
timeZoneName: 'short',
|
|
69
|
-
era: 'narrow',
|
|
70
|
-
weekday: "short"
|
|
71
|
-
};
|
|
72
|
-
var oInstance = new Intl.DateTimeFormat("en-US", oOptions);
|
|
73
|
-
|
|
74
|
-
// only store a limited number of entries in the cache
|
|
75
|
-
if (this._oCache.size === this._iCacheLimit) {
|
|
76
|
-
this._oCache = new Map();
|
|
77
|
-
}
|
|
78
|
-
this._oCache.set(sTimezone, oInstance);
|
|
79
|
-
return oInstance;
|
|
80
|
-
}
|
|
81
|
-
};
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* Uses the <code>Intl.supportedValuesOf('timeZone')</code> and <code>Intl.DateTimeFormat</code>
|
|
85
|
-
* API to check if the browser can handle the given IANA timezone ID.
|
|
86
|
-
* <code>Intl.supportedValuesOf('timeZone')</code> offers direct access to the list of supported
|
|
87
|
-
* time zones. It is not yet supported by all browsers but if it is supported and the given time
|
|
88
|
-
* zone is in the list it is faster than probing.
|
|
89
|
-
*
|
|
90
|
-
* <code>Intl.supportedValuesOf('timeZone')</code> does not return all IANA timezone IDs which
|
|
91
|
-
* the <code>Intl.DateTimeFormat</code> can handle, e.g. "Japan", "Etc/UTC".
|
|
92
|
-
*
|
|
93
|
-
* @param {string} sTimezone The IANA timezone ID which is checked, e.g <code>"Europe/Berlin"</code>
|
|
94
|
-
* @returns {boolean} Whether the time zone is a valid IANA timezone ID
|
|
95
|
-
* @private
|
|
96
|
-
* @ui5-restricted sap.ui.core.Configuration, sap.ui.core.format.DateFormat
|
|
97
|
-
*/
|
|
98
|
-
TimezoneUtil.isValidTimezone = function(sTimezone) {
|
|
99
|
-
if (!sTimezone) {
|
|
100
|
-
return false;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
if (Intl.supportedValuesOf) {
|
|
104
|
-
try {
|
|
105
|
-
aSupportedTimezoneIDs = aSupportedTimezoneIDs || Intl.supportedValuesOf('timeZone');
|
|
106
|
-
if (aSupportedTimezoneIDs.includes(sTimezone)) {
|
|
107
|
-
return true;
|
|
108
|
-
}
|
|
109
|
-
// although not contained in the supportedValues it still can be valid, therefore continue
|
|
110
|
-
} catch (oError) {
|
|
111
|
-
// ignore error
|
|
112
|
-
aSupportedTimezoneIDs = [];
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
try {
|
|
117
|
-
oIntlDateTimeFormatCache.get(sTimezone);
|
|
118
|
-
return true;
|
|
119
|
-
} catch (oError) {
|
|
120
|
-
return false;
|
|
121
|
-
}
|
|
122
|
-
};
|
|
123
|
-
|
|
124
|
-
/**
|
|
125
|
-
* Converts a date to a specific time zone.
|
|
126
|
-
* The resulting date reflects the given time zone such that the "UTC" Date methods
|
|
127
|
-
* can be used, e.g. Date#getUTCHours() to display the hours in the given time zone.
|
|
128
|
-
*
|
|
129
|
-
* @example
|
|
130
|
-
* var oDate = new Date("2021-10-13T15:22:33Z"); // UTC
|
|
131
|
-
* // time zone difference UTC-4 (DST)
|
|
132
|
-
* TimezoneUtil.convertToTimezone(oDate, "America/New_York");
|
|
133
|
-
* // result is:
|
|
134
|
-
* // 2021-10-13 11:22:33 in America/New_York
|
|
135
|
-
* // same as new Date("2021-10-13T11:22:33Z"); // UTC
|
|
136
|
-
*
|
|
137
|
-
* @param {Date} oDate The date which should be converted.
|
|
138
|
-
* @param {string} sTargetTimezone The target IANA timezone ID, e.g <code>"Europe/Berlin"</code>
|
|
139
|
-
* @returns {Date} The new date in the target time zone.
|
|
140
|
-
* @private
|
|
141
|
-
* @ui5-restricted sap.ui.core.format.DateFormat, sap.ui.unified, sap.m
|
|
142
|
-
*/
|
|
143
|
-
TimezoneUtil.convertToTimezone = function(oDate, sTargetTimezone) {
|
|
144
|
-
var oFormatParts = this._getParts(oDate, sTargetTimezone);
|
|
145
|
-
return TimezoneUtil._getDateFromParts(oFormatParts);
|
|
146
|
-
};
|
|
147
|
-
|
|
148
|
-
/**
|
|
149
|
-
* Uses the <code>Intl.DateTimeFormat</code> API to convert a date to a specific time zone.
|
|
150
|
-
*
|
|
151
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatToParts
|
|
152
|
-
* @param {Date} oDate The date which should be converted.
|
|
153
|
-
* @param {string} sTargetTimezone The target IANA timezone ID, e.g <code>"Europe/Berlin"</code>
|
|
154
|
-
* @returns {{
|
|
155
|
-
* day: string,
|
|
156
|
-
* era: string,
|
|
157
|
-
* fractionalSecond: string,
|
|
158
|
-
* hour: string,
|
|
159
|
-
* minute: string,
|
|
160
|
-
* month: string,
|
|
161
|
-
* second: string,
|
|
162
|
-
* timeZoneName: string,
|
|
163
|
-
* weekday: string,
|
|
164
|
-
* year: string
|
|
165
|
-
* }} An object containing the date and time fields considering the target time zone.
|
|
166
|
-
* @private
|
|
167
|
-
*/
|
|
168
|
-
TimezoneUtil._getParts = function(oDate, sTargetTimezone) {
|
|
169
|
-
var sKey, oPart,
|
|
170
|
-
oDateParts = Object.create(null),
|
|
171
|
-
oIntlDate = oIntlDateTimeFormatCache.get(sTargetTimezone),
|
|
172
|
-
// clone the date object before passing it to the Intl API, to ensure that no
|
|
173
|
-
// UniversalDate gets passed to it;
|
|
174
|
-
// no need to use UI5Date.getInstance as only the UTC timestamp is used
|
|
175
|
-
oParts = oIntlDate.formatToParts(new Date(oDate.getTime()));
|
|
176
|
-
|
|
177
|
-
for (sKey in oParts) {
|
|
178
|
-
oPart = oParts[sKey];
|
|
179
|
-
if (oPart.type !== "literal") {
|
|
180
|
-
oDateParts[oPart.type] = oPart.value;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
return oDateParts;
|
|
184
|
-
};
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
* Creates a Date from the provided date parts.
|
|
188
|
-
*
|
|
189
|
-
* @param {object} oParts Separated date and time fields as object, see {@link #_getParts}.
|
|
190
|
-
* @returns {Date} Returns the date object created from the provided parts.
|
|
191
|
-
* @private
|
|
192
|
-
*/
|
|
193
|
-
TimezoneUtil._getDateFromParts = function(oParts) {
|
|
194
|
-
// no need to use UI5Date.getInstance as only the UTC timestamp is used
|
|
195
|
-
var oDate = new Date(0),
|
|
196
|
-
iUTCYear = parseInt(oParts.year);
|
|
197
|
-
|
|
198
|
-
if (oParts.era === "B") {
|
|
199
|
-
// The JS Date uses astronomical year numbering which supports year zero and negative
|
|
200
|
-
// year numbers.
|
|
201
|
-
// The Intl.DateTimeFormat API uses eras (no year zero and no negative year numbers).
|
|
202
|
-
// years around zero overview:
|
|
203
|
-
// | Astronomical | In Era
|
|
204
|
-
// | 2 | 2 Anno Domini (era: "A")
|
|
205
|
-
// | 1 | 1 Anno Domini (era: "A")
|
|
206
|
-
// | 0 | 1 Before Christ (era: "B")
|
|
207
|
-
// | -1 | 2 Before Christ (era: "B")
|
|
208
|
-
// | -2 | 3 Before Christ (era: "B")
|
|
209
|
-
// For the conversion to the JS Date the parts returned by the Intl.DateTimeFormat API
|
|
210
|
-
// need to be adapted.
|
|
211
|
-
iUTCYear = (iUTCYear * -1) + 1;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
// Date.UTC cannot be used here to be able to support dates before the UNIX epoch
|
|
215
|
-
oDate.setUTCFullYear(iUTCYear,
|
|
216
|
-
parseInt(oParts.month) - 1,
|
|
217
|
-
parseInt(oParts.day));
|
|
218
|
-
oDate.setUTCHours(
|
|
219
|
-
parseInt(oParts.hour),
|
|
220
|
-
parseInt(oParts.minute),
|
|
221
|
-
parseInt(oParts.second),
|
|
222
|
-
parseInt(oParts.fractionalSecond || 0)); // some older browsers don't support fractionalSecond, e.g. Safari < 14.1 */
|
|
223
|
-
|
|
224
|
-
return oDate;
|
|
225
|
-
};
|
|
226
|
-
|
|
227
|
-
/**
|
|
228
|
-
* Gets the offset to UTC in seconds for a given date in the time zone specified.
|
|
229
|
-
*
|
|
230
|
-
* For non-unique points in time, the daylight saving time takes precedence over the standard
|
|
231
|
-
* time shortly after the switch back (e.g. clock gets set back 1 hour, duplicate hour).
|
|
232
21
|
*
|
|
233
|
-
* @
|
|
234
|
-
*
|
|
235
|
-
*
|
|
236
|
-
*
|
|
237
|
-
*
|
|
238
|
-
*
|
|
239
|
-
* // => -7200 seconds (-2 * 60 * 60 seconds)
|
|
240
|
-
*
|
|
241
|
-
* // daylight saving time (2018 Sun, 25 Mar, 02:00 CET → CEST +1 hour (DST start) UTC+2h)
|
|
242
|
-
* // the given date is taken as it is in the time zone
|
|
243
|
-
* TimezoneUtil.calculateOffset(new Date("2018-03-25T00:00:00Z"), "Europe/Berlin");
|
|
244
|
-
* // => -3600 seconds (-1 * 60 * 60 seconds), interpreted as: 2018-03-25 00:00:00 (CET)
|
|
245
|
-
*
|
|
246
|
-
* TimezoneUtil.calculateOffset(new Date("2018-03-25T03:00:00Z"), "Europe/Berlin");
|
|
247
|
-
* // => -7200 seconds (-2 * 60 * 60 seconds)
|
|
248
|
-
*
|
|
249
|
-
* var oHistoricalDate = new Date("1800-10-13T13:22:33Z");
|
|
250
|
-
* TimezoneUtil.calculateOffset(oHistoricalDate, "Europe/Berlin");
|
|
251
|
-
* // => -3208 seconds (-3208 seconds)
|
|
252
|
-
*
|
|
253
|
-
* @param {Date} oDate The date in the time zone used to calculate the offset to UTC.
|
|
254
|
-
* @param {string} sTimezoneSource The source IANA timezone ID, e.g <code>"Europe/Berlin"</code>
|
|
255
|
-
* @returns {number} The difference to UTC between the date in the time zone.
|
|
256
|
-
* @private
|
|
257
|
-
* @ui5-restricted sap.ui.core.format.DateFormat
|
|
258
|
-
*/
|
|
259
|
-
TimezoneUtil.calculateOffset = function(oDate, sTimezoneSource) {
|
|
260
|
-
var oFirstGuess = this.convertToTimezone(oDate, sTimezoneSource),
|
|
261
|
-
iInitialOffset = oDate.getTime() - oFirstGuess.getTime(),
|
|
262
|
-
// to get the correct summer/wintertime (daylight saving time) handling use the source
|
|
263
|
-
// date (apply the diff);
|
|
264
|
-
// no need to use UI5Date.getInstance as only the UTC timestamp is used
|
|
265
|
-
oDateSource = new Date(oDate.getTime() + iInitialOffset),
|
|
266
|
-
oDateTarget = this.convertToTimezone(oDateSource, sTimezoneSource);
|
|
267
|
-
|
|
268
|
-
return (oDateSource.getTime() - oDateTarget.getTime()) / 1000;
|
|
269
|
-
};
|
|
270
|
-
|
|
271
|
-
/**
|
|
272
|
-
* Retrieves the browser's local IANA timezone ID.
|
|
273
|
-
*
|
|
274
|
-
* @returns {string} The local IANA timezone ID of the browser, e.g <code>"Europe/Berlin"</code>
|
|
275
|
-
* @private
|
|
276
|
-
* @ui5-restricted sap.ui.core.Configuration,sap.m.DateTimeField
|
|
22
|
+
* @borrows sap/base/i18n/date/TimezoneUtils.isValidTimezone as isValidTimezone
|
|
23
|
+
* @borrows sap/base/i18n/date/TimezoneUtils.convertToTimezone as convertToTimezone
|
|
24
|
+
* @borrows sap/base/i18n/date/TimezoneUtils._getParts as _getParts
|
|
25
|
+
* @borrows sap/base/i18n/date/TimezoneUtils._getDateFromParts as _getDateFromParts
|
|
26
|
+
* @borrows sap/base/i18n/date/TimezoneUtils.calculateOffset as calculateOffset
|
|
27
|
+
* @borrows sap/base/i18n/date/TimezoneUtils.getLocalTimezone as getLocalTimezone
|
|
277
28
|
*/
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
return sLocalTimezone;
|
|
281
|
-
}
|
|
282
|
-
sLocalTimezone = new Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
283
|
-
return sLocalTimezone;
|
|
284
|
-
};
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
return TimezoneUtil;
|
|
288
|
-
});
|
|
29
|
+
return TimezoneUtils;
|
|
30
|
+
});
|
|
@@ -400,7 +400,7 @@ sap.ui.define([
|
|
|
400
400
|
* @see {@link topic:6322164936f047de941ec522b95d7b70 Hyphenation for Text Controls}
|
|
401
401
|
* @extends sap.ui.base.ManagedObject
|
|
402
402
|
* @author SAP SE
|
|
403
|
-
* @version 1.
|
|
403
|
+
* @version 1.116.0
|
|
404
404
|
* @hideconstructor
|
|
405
405
|
* @public
|
|
406
406
|
* @since 1.60
|
|
@@ -25,13 +25,13 @@ sap.ui.define([
|
|
|
25
25
|
* @namespace
|
|
26
26
|
* @alias sap.ui.core
|
|
27
27
|
* @author SAP SE
|
|
28
|
-
* @version 1.
|
|
28
|
+
* @version 1.116.0
|
|
29
29
|
* @since 0.8
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
32
|
var thisLib = Library.init({
|
|
33
33
|
name: "sap.ui.core",
|
|
34
|
-
version: "1.
|
|
34
|
+
version: "1.116.0",
|
|
35
35
|
designtime: "sap/ui/core/designtime/library.designtime",
|
|
36
36
|
types: [
|
|
37
37
|
|
|
@@ -1539,7 +1539,7 @@ sap.ui.define([
|
|
|
1539
1539
|
/**
|
|
1540
1540
|
* Sort order of a column.
|
|
1541
1541
|
*
|
|
1542
|
-
* @version 1.
|
|
1542
|
+
* @version 1.116.0
|
|
1543
1543
|
* @enum {string}
|
|
1544
1544
|
* @public
|
|
1545
1545
|
* @since 1.61.0
|
|
@@ -34,7 +34,7 @@ sap.ui.define([
|
|
|
34
34
|
* @extends sap.ui.base.Object
|
|
35
35
|
*
|
|
36
36
|
* @author SAP SE
|
|
37
|
-
* @version 1.
|
|
37
|
+
* @version 1.116.0
|
|
38
38
|
*
|
|
39
39
|
* @param {object} [mParameters] a map which contains the following parameter properties:
|
|
40
40
|
* @param {string} [mParameters.id] The message id: will be generated if no id is set
|
|
@@ -22,7 +22,7 @@ BUSY_VALUE_TEXT=Zam\u011Bstnan\u00FD
|
|
|
22
22
|
|
|
23
23
|
date.week.calendarweek.wide=Kalend\u00E1\u0159n\u00ED t\u00FDdny{0}
|
|
24
24
|
date.week.calendarweek.narrow=KT {0}
|
|
25
|
-
date.placeholder=
|
|
25
|
+
date.placeholder=nap\u0159\u00EDklad {0}
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
FileSize.Byte={0} Byte
|
|
@@ -22,7 +22,7 @@ BUSY_VALUE_TEXT=\u039A\u03B1\u03C4\u03B5\u03B9\u03BB\u03BB\u03B7\u03BC\u03BC\u03
|
|
|
22
22
|
|
|
23
23
|
date.week.calendarweek.wide=\u0397\u03BC/\u03B3\u03B9\u03B1\u03BA\u03AE \u0392\u03B4\u03BF\u03BC\u03AC\u03B4\u03B1 {0}
|
|
24
24
|
date.week.calendarweek.narrow=CW {0}
|
|
25
|
-
date.placeholder=\
|
|
25
|
+
date.placeholder=\u03C0.\u03C7. {0}
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
FileSize.Byte={0} Byte
|