@openui5/sap.ui.core 1.130.1 → 1.131.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/THIRDPARTY.txt +1 -1
- 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.storage.js +3 -3
- package/src/sap/base/Event.js +1 -1
- package/src/sap/base/Eventing.js +3 -2
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/i18n/LanguageTag.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +3 -1
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +3 -1
- package/src/sap/base/i18n/date/TimezoneUtils.js +1 -1
- package/src/sap/base/i18n/date/_EnumHelper.js +43 -0
- package/src/sap/base/util/clamp.js +26 -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 +11 -8
- package/src/sap/ui/Global.js +3 -3
- package/src/sap/ui/base/BindingInfo.js +4 -2
- package/src/sap/ui/base/DataType.js +7 -2
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +1 -1
- 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 +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/BlockLayerUtils.js +17 -29
- package/src/sap/ui/core/BusyIndicator.js +2 -15
- package/src/sap/ui/core/BusyIndicatorUtils.js +34 -3
- package/src/sap/ui/core/Component.js +1 -1
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +1 -1
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +1 -1
- package/src/sap/ui/core/ContextMenuSupport.js +2 -1
- package/src/sap/ui/core/Control.js +46 -10
- package/src/sap/ui/core/ControlBehavior.js +14 -18
- package/src/sap/ui/core/Core.js +2 -2
- 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 +230 -32
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +4 -4
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/FocusMode.js +28 -0
- 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 +1 -1
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +1 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +1 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +3 -3
- package/src/sap/ui/core/Manifest.js +2 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Popup.js +12 -0
- package/src/sap/ui/core/RenderManager.js +4 -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/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/_IconRegistry.js +1 -0
- package/src/sap/ui/core/cldr/ca.json +1 -1
- package/src/sap/ui/core/cldr/cs.json +1 -1
- package/src/sap/ui/core/cldr/es.json +2 -2
- package/src/sap/ui/core/cldr/es_AR.json +2 -2
- package/src/sap/ui/core/cldr/es_BO.json +2 -2
- package/src/sap/ui/core/cldr/es_CL.json +2 -2
- package/src/sap/ui/core/cldr/es_CO.json +2 -2
- package/src/sap/ui/core/cldr/es_PE.json +2 -2
- package/src/sap/ui/core/cldr/es_UY.json +2 -2
- package/src/sap/ui/core/cldr/es_VE.json +2 -2
- package/src/sap/ui/core/cldr/fi.json +1 -1
- package/src/sap/ui/core/cldr/hu.json +1 -1
- package/src/sap/ui/core/cldr/id.json +2 -2
- package/src/sap/ui/core/cldr/mk.json +2 -2
- package/src/sap/ui/core/cldr/tr.json +1 -1
- package/src/sap/ui/core/cldr/vi.json +2 -2
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +1 -1
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/fieldhelp/FieldHelpCustomData.js +5 -1
- package/src/sap/ui/core/format/FormatUtils.js +1 -1
- package/src/sap/ui/core/format/NumberFormat.js +29 -8
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +23 -19
- 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/MessageMixin.js +5 -2
- 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_no.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 +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/Target.js +5 -5
- 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/bootstrapFallback.js +1 -0
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +1 -1
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/themes/base/LocalBusyIndicator.less +1 -0
- package/src/sap/ui/core/themes/base/base.less +1353 -247
- 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/themes/base/global.less +32 -0
- package/src/sap/ui/core/themes/base/skeleton.less +93 -3
- package/src/sap/ui/core/theming/ThemeManager.js +2 -2
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +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/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +1 -1
- package/src/sap/ui/model/Filter.js +2 -1
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +1 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/Sorter.js +61 -31
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -3
- 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 +16 -6
- package/src/sap/ui/model/odata/ODataModel.js +1 -1
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +7 -4
- package/src/sap/ui/model/odata/v2/ODataModel.js +14 -10
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/Context.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataBinding.js +1 -0
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +6 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +66 -6
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +93 -19
- package/src/sap/ui/model/odata/v4/ODataModel.js +14 -4
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +3 -1
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +2 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +12 -1
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +51 -30
- 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/OpaBuilder.js +1 -1
- package/src/sap/ui/test/autowaiter/_promiseWaiter.js +21 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/starter/_utils.js +8 -1
- package/src/sap/ui/test/starter/createSuite.js +1 -1
- package/src/sap/ui/thirdparty/less.js +23 -72
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader.js +9 -4
- package/test/sap/ui/qunit/TestRunner.js +2 -0
|
@@ -401,7 +401,7 @@ sap.ui.define([
|
|
|
401
401
|
* @see {@link topic:6322164936f047de941ec522b95d7b70 Hyphenation for Text Controls}
|
|
402
402
|
* @extends sap.ui.base.ManagedObject
|
|
403
403
|
* @author SAP SE
|
|
404
|
-
* @version 1.
|
|
404
|
+
* @version 1.131.0
|
|
405
405
|
* @hideconstructor
|
|
406
406
|
* @public
|
|
407
407
|
* @since 1.60
|
|
@@ -26,13 +26,13 @@ sap.ui.define([
|
|
|
26
26
|
* @namespace
|
|
27
27
|
* @alias sap.ui.core
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.131.0
|
|
30
30
|
* @since 0.8
|
|
31
31
|
* @public
|
|
32
32
|
*/
|
|
33
33
|
var thisLib = Library.init({
|
|
34
34
|
name: "sap.ui.core",
|
|
35
|
-
version: "1.
|
|
35
|
+
version: "1.131.0",
|
|
36
36
|
designtime: "sap/ui/core/designtime/library.designtime",
|
|
37
37
|
apiVersion: 2,
|
|
38
38
|
types: [
|
|
@@ -1609,7 +1609,7 @@ sap.ui.define([
|
|
|
1609
1609
|
/**
|
|
1610
1610
|
* Sort order of a column.
|
|
1611
1611
|
*
|
|
1612
|
-
* @version 1.
|
|
1612
|
+
* @version 1.131.0
|
|
1613
1613
|
* @enum {string}
|
|
1614
1614
|
* @public
|
|
1615
1615
|
* @since 1.61.0
|
|
@@ -2042,13 +2042,13 @@ sap.ui.define([
|
|
|
2042
2042
|
*/
|
|
2043
2043
|
|
|
2044
2044
|
/**
|
|
2045
|
-
* Marker interface for controls that can be used as content of
|
|
2045
|
+
* Marker interface for controls that can be used as content of {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
|
|
2046
2046
|
*
|
|
2047
2047
|
* If the value-holding property of the control is not <code>value</code or <code>text</code>, the name of the
|
|
2048
|
-
* value-holding property must be returned in the
|
|
2048
|
+
* value-holding property must be returned in the {@link sap.ui.core.ISemanticFormContent.getFormValueProperty getFormValueProperty} function.
|
|
2049
2049
|
*
|
|
2050
2050
|
* If the value of the control needs some special output formatting (to show a description instead of a key), this
|
|
2051
|
-
* formatted text needs to be returned in the
|
|
2051
|
+
* formatted text needs to be returned in the {@link sap.ui.core.ISemanticFormContent.getFormFormattedValue getFormFormattedValue} function.
|
|
2052
2052
|
*
|
|
2053
2053
|
* @since 1.86.0
|
|
2054
2054
|
* @name sap.ui.core.ISemanticFormContent
|
|
@@ -2057,12 +2057,12 @@ sap.ui.define([
|
|
|
2057
2057
|
*/
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
* Returns the formatted value of a control used in a
|
|
2060
|
+
* Returns the formatted value of a control used in a {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
|
|
2061
2061
|
*
|
|
2062
|
-
* In the
|
|
2062
|
+
* In the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element, the assigned fields are rendered in edit mode. In display mode, a text
|
|
2063
2063
|
* is rendered that concatenates the values of all assigned fields. In some cases the displayed text does not match the value
|
|
2064
2064
|
* of the field and needs some formatting. In other cases the control does not have a <code>value</code> property,
|
|
2065
|
-
* so the
|
|
2065
|
+
* so the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element cannot determine the value.
|
|
2066
2066
|
*
|
|
2067
2067
|
* This is an optional method. If not defined, the <code>value</code> property or the <code>text</code> property is used to determine the value.
|
|
2068
2068
|
*
|
|
@@ -2074,12 +2074,12 @@ sap.ui.define([
|
|
|
2074
2074
|
*/
|
|
2075
2075
|
|
|
2076
2076
|
/**
|
|
2077
|
-
* Returns the name of the value-holding property of a control used in a
|
|
2077
|
+
* Returns the name of the value-holding property of a control used in a {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
|
|
2078
2078
|
*
|
|
2079
|
-
* In the
|
|
2079
|
+
* In the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element, the assigned fields are rendered in edit mode. In display mode, a text
|
|
2080
2080
|
* is rendered that concatenates the values of all assigned fields.
|
|
2081
2081
|
* So the concatenated text needs to be updated if the value of a control changes. If a control does not have a <code>value</code> property,
|
|
2082
|
-
* the
|
|
2082
|
+
* the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element needs to know the property it has to listen to for changes.
|
|
2083
2083
|
*
|
|
2084
2084
|
* This is an optional method. If not defined, the <code>value</code> property or the <code>text</code> property is used to determine the value.
|
|
2085
2085
|
*
|
|
@@ -2091,14 +2091,14 @@ sap.ui.define([
|
|
|
2091
2091
|
*/
|
|
2092
2092
|
|
|
2093
2093
|
/**
|
|
2094
|
-
* Returns the names of the properties of a control that might update the rendering in a
|
|
2094
|
+
* Returns the names of the properties of a control that might update the rendering in a {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement}.
|
|
2095
2095
|
*
|
|
2096
|
-
* In the
|
|
2096
|
+
* In the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} element, the assigned fields are rendered in edit mode. In display mode, depending on {@link sap.ui.core.ISemanticFormContent.getFormRenderAsControl getFormRenderAsControl},
|
|
2097
2097
|
* either a text is rendered, which concatenates the values of all assigned fields, or the control is rendered.
|
|
2098
2098
|
* So if a property of the control changes that might lead to a different rendering (some controls have a special rendering in display mode), the
|
|
2099
|
-
*
|
|
2099
|
+
* {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} needs to check the rendering.
|
|
2100
2100
|
*
|
|
2101
|
-
* This is an optional method. If not defined, no check for updates (only for property defined in
|
|
2101
|
+
* This is an optional method. If not defined, no check for updates (only for property defined in {@link sap.ui.core.ISemanticFormContent.getFormValueProperty getFormValueProperty}) is done once the control has been assigned.
|
|
2102
2102
|
*
|
|
2103
2103
|
* @returns {string[]} Name of the properties
|
|
2104
2104
|
* @since 1.117.0
|
|
@@ -2108,7 +2108,7 @@ sap.ui.define([
|
|
|
2108
2108
|
*/
|
|
2109
2109
|
|
|
2110
2110
|
/**
|
|
2111
|
-
* If set to <code>true</code>, the
|
|
2111
|
+
* If set to <code>true</code>, the {@link sap.ui.layout.form.SemanticFormElement SemanticFormElement} also renders the control in display mode, if the used {@link sap.ui.layout.form.FormLayout FormLayout} supports this.
|
|
2112
2112
|
*
|
|
2113
2113
|
* This is an optional method. If not defined, just the text is rendered.
|
|
2114
2114
|
*
|
|
@@ -2552,7 +2552,7 @@ sap.ui.define([
|
|
|
2552
2552
|
if ( sShortcutPkg ) {
|
|
2553
2553
|
lazy(sShortcutPkg, aClasses[i].toLowerCase(), sPackage + aClasses[i]);
|
|
2554
2554
|
} else {
|
|
2555
|
-
|
|
2555
|
+
lazy(sPackage + aClasses[i], "new extend getMetadata");
|
|
2556
2556
|
}
|
|
2557
2557
|
}
|
|
2558
2558
|
}
|
|
@@ -2561,7 +2561,7 @@ sap.ui.define([
|
|
|
2561
2561
|
lazy("sap.ui.core.message.MessageManager");
|
|
2562
2562
|
lazy("sap.ui.core.BusyIndicator", "show hide attachOpen detachOpen attachClose detachClose");
|
|
2563
2563
|
lazy("sap.ui.core.tmpl.Template", "registerType unregisterType");
|
|
2564
|
-
lazy("sap.ui.core.Fragment", "registerType byId createId");
|
|
2564
|
+
lazy("sap.ui.core.Fragment", "registerType byId createId load");
|
|
2565
2565
|
lazy("sap.ui.core.IconPool", "createControlByURI addIcon getIconURI getIconInfo isIconURI getIconCollectionNames getIconNames getIconForMimeType");
|
|
2566
2566
|
lazy("sap.ui.core.service.ServiceFactoryRegistry", "register unregister get");
|
|
2567
2567
|
|
|
@@ -2585,7 +2585,11 @@ sap.ui.define([
|
|
|
2585
2585
|
each("sap.ui.model.odata.type.", ["Boolean","Byte","Currency","Date","DateTime","DateTimeOffset","DateTimeWithTimezone","Decimal","Double","Guid","Int16","Int32","Int64","Raw","SByte","Single","Stream","String","Time","TimeOfDay","Unit"]);
|
|
2586
2586
|
each("sap.ui.core.", ["Locale","LocaleData","mvc.Controller", "UIComponent"]);
|
|
2587
2587
|
each("sap.ui.core.mvc.", ["Controller", "View", "JSView", "JSONView", "XMLView", "HTMLView", "TemplateView"], "sap.ui");
|
|
2588
|
+
lazy("sap.ui.core.mvc.Controller", "create");
|
|
2589
|
+
lazy("sap.ui.core.mvc.View", "create");
|
|
2590
|
+
lazy("sap.ui.core.mvc.XMLView", "create");
|
|
2588
2591
|
each("sap.ui.core.", ["Component"], "sap.ui");
|
|
2592
|
+
each("sap.ui.core.Component", "create");
|
|
2589
2593
|
each("sap.ui.core.tmpl.", ["Template"], "sap.ui");
|
|
2590
2594
|
each("sap.ui.core.routing.", ["HashChanger", "History", "Route", "Router", "Target", "Targets", "Views"]);
|
|
2591
2595
|
each("sap.ui.core.service.", ["ServiceFactory", "Service"]);
|
|
@@ -29,7 +29,7 @@ sap.ui.define(['sap/ui/core/Element', 'sap/ui/core/message/MessageProcessor'],
|
|
|
29
29
|
* @extends sap.ui.core.message.MessageProcessor
|
|
30
30
|
*
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.131.0
|
|
33
33
|
*
|
|
34
34
|
* @public
|
|
35
35
|
* @alias sap.ui.core.message.ControlMessageProcessor
|
|
@@ -35,7 +35,7 @@ sap.ui.define([
|
|
|
35
35
|
* @extends sap.ui.base.Object
|
|
36
36
|
*
|
|
37
37
|
* @author SAP SE
|
|
38
|
-
* @version 1.
|
|
38
|
+
* @version 1.131.0
|
|
39
39
|
*
|
|
40
40
|
* @param {object} [mParameters] a map which contains the following parameter properties:
|
|
41
41
|
* @param {string} [mParameters.id] The message id: will be generated if no id is set
|
|
@@ -46,8 +46,11 @@ sap.ui.define(["sap/ui/core/Element", "sap/ui/core/library", "sap/base/Log", "sa
|
|
|
46
46
|
// we simply take the first label text and ignore all others
|
|
47
47
|
var oLabel = Element.getElementById(sLabelId);
|
|
48
48
|
if (oLabel.getMetadata().isInstanceOf("sap.ui.core.Label") && oLabel.getText) {
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
let sAdditionalText = oMessage.getAdditionalText();
|
|
50
|
+
const sLabel = oLabel.getText();
|
|
51
|
+
if (!sAdditionalText || !sAdditionalText.includes(sLabel)) {
|
|
52
|
+
sAdditionalText = sAdditionalText ? `${sAdditionalText}, ${sLabel}` : sLabel;
|
|
53
|
+
oMessage.setAdditionalText(sAdditionalText);
|
|
51
54
|
bForceUpdate = true;
|
|
52
55
|
}
|
|
53
56
|
} else {
|
|
@@ -172,7 +172,7 @@ Icon.flag=Merk
|
|
|
172
172
|
Icon.forward=Videresend
|
|
173
173
|
Icon.full-screen=Aktiver modus for fullt skjermbilde
|
|
174
174
|
Icon.generate-shortcut=Opprett tilknytning
|
|
175
|
-
Icon.group-2=
|
|
175
|
+
Icon.group-2=Grupper
|
|
176
176
|
Icon.hide=Skjul
|
|
177
177
|
Icon.ipad=Nettbrett
|
|
178
178
|
Icon.ipad-2=Nettbrett
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @param {object} [mSettings] initial settings for the new control
|
|
28
28
|
*
|
|
29
29
|
* @extends sap.ui.core.mvc.View
|
|
30
|
-
* @version 1.
|
|
30
|
+
* @version 1.131.0
|
|
31
31
|
* @deprecated Since 1.90. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views}
|
|
32
32
|
* by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and
|
|
33
33
|
* creating the view instances with {@link sap.ui.core.mvc.View.create View.create}.
|
|
@@ -29,7 +29,7 @@ function(View, TemplateViewRenderer, ViewType, Log) {
|
|
|
29
29
|
* @extends sap.ui.core.mvc.View
|
|
30
30
|
*
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.131.0
|
|
33
33
|
*
|
|
34
34
|
* @public
|
|
35
35
|
* @deprecated Since version 1.56.0, use {@link sap.ui.core.mvc.XMLView} in combination with
|
|
@@ -113,7 +113,7 @@ sap.ui.define([
|
|
|
113
113
|
* bound content aggregation. An error will be thrown when the above combination is detected.
|
|
114
114
|
*
|
|
115
115
|
* @extends sap.ui.core.mvc.View
|
|
116
|
-
* @version 1.
|
|
116
|
+
* @version 1.131.0
|
|
117
117
|
*
|
|
118
118
|
* @public
|
|
119
119
|
* @alias sap.ui.core.mvc.XMLView
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @public
|
|
22
22
|
* @since 1.15.0
|
|
23
23
|
* @deprecated since 1.56, use an {@link sap.ui.core.mvc.XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View} instead
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.131.0
|
|
25
25
|
* @alias sap.ui.core.plugin.TemplatingSupport
|
|
26
26
|
*/
|
|
27
27
|
var TemplatingSupport = function() {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
sap.ui.define([
|
|
9
|
-
'sap/ui/core/
|
|
9
|
+
'sap/ui/core/Element',
|
|
10
10
|
'sap/ui/base/EventProvider',
|
|
11
11
|
'sap/ui/core/mvc/View',
|
|
12
12
|
'sap/ui/core/routing/async/Target',
|
|
@@ -14,7 +14,7 @@ sap.ui.define([
|
|
|
14
14
|
"sap/base/Log"
|
|
15
15
|
],
|
|
16
16
|
function(
|
|
17
|
-
|
|
17
|
+
Element,
|
|
18
18
|
EventProvider,
|
|
19
19
|
View,
|
|
20
20
|
asyncTarget,
|
|
@@ -30,9 +30,9 @@ sap.ui.define([
|
|
|
30
30
|
* @param {object} mSettings configuration object for the TitleProvider
|
|
31
31
|
* @param {object} mSettings.target Target for which the TitleProvider is created
|
|
32
32
|
* @private
|
|
33
|
-
* @extends sap.ui.core.
|
|
33
|
+
* @extends sap.ui.core.Element
|
|
34
34
|
*/
|
|
35
|
-
var TitleProvider =
|
|
35
|
+
var TitleProvider = Element.extend("sap.ui.core.routing.Target.TitleProvider", /** @lends sap.ui.core.routing.TitleProvider.prototype */ {
|
|
36
36
|
metadata: {
|
|
37
37
|
library: "sap.ui.core",
|
|
38
38
|
properties: {
|
|
@@ -49,7 +49,7 @@ sap.ui.define([
|
|
|
49
49
|
constructor: function(mSettings) {
|
|
50
50
|
this._oTarget = mSettings.target;
|
|
51
51
|
delete mSettings.target;
|
|
52
|
-
|
|
52
|
+
Element.prototype.constructor.call(this, mSettings);
|
|
53
53
|
},
|
|
54
54
|
setTitle: function(sTitle) {
|
|
55
55
|
// Setting title property should not trigger two way change in model
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @class
|
|
28
28
|
* A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
|
|
29
29
|
* @extends sap.ui.core.search.SearchProvider
|
|
30
|
-
* @version 1.
|
|
30
|
+
* @version 1.131.0
|
|
31
31
|
* @deprecated as of version 1.120. There is no API replacement.
|
|
32
32
|
*
|
|
33
33
|
* @public
|
|
@@ -23,7 +23,7 @@ sap.ui.define(['sap/ui/core/Element', "sap/base/Log", 'sap/ui/core/library'],
|
|
|
23
23
|
*
|
|
24
24
|
* Do not create instances of this class, but use a concrete subclass instead.
|
|
25
25
|
* @extends sap.ui.core.Element
|
|
26
|
-
* @version 1.
|
|
26
|
+
* @version 1.131.0
|
|
27
27
|
* @deprecated since 1.120. There is no API replacement.
|
|
28
28
|
*
|
|
29
29
|
* @public
|
|
@@ -83,7 +83,7 @@ sap.ui.define(['sap/ui/base/Object', 'sap/ui/core/service/Service', "sap/base/as
|
|
|
83
83
|
*
|
|
84
84
|
* @extends sap.ui.base.Object
|
|
85
85
|
* @author SAP SE
|
|
86
|
-
* @version 1.
|
|
86
|
+
* @version 1.131.0
|
|
87
87
|
* @alias sap.ui.core.service.ServiceFactory
|
|
88
88
|
* @private
|
|
89
89
|
* @ui5-restricted sap.ushell
|
|
@@ -31,7 +31,7 @@ sap.ui.define([
|
|
|
31
31
|
* @class This class provides the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
32
32
|
*
|
|
33
33
|
* @extends sap.ui.base.EventProvider
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.131.0
|
|
35
35
|
* @private
|
|
36
36
|
* @alias sap.ui.core.support.Support
|
|
37
37
|
*/
|
|
@@ -59,7 +59,7 @@ sap.ui.define([
|
|
|
59
59
|
* @class This class represents the ControlTree plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
60
60
|
*
|
|
61
61
|
* @extends sap.ui.core.support.Plugin
|
|
62
|
-
* @version 1.
|
|
62
|
+
* @version 1.131.0
|
|
63
63
|
* @private
|
|
64
64
|
* @alias sap.ui.core.support.plugins.ControlTree
|
|
65
65
|
*/
|
|
@@ -15,7 +15,7 @@ sap.ui.define(['sap/ui/core/support/Plugin', "sap/base/Log"],
|
|
|
15
15
|
* @class This class represents the LocalStorage plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
16
16
|
*
|
|
17
17
|
* @extends sap.ui.core.support.Plugin
|
|
18
|
-
* @version 1.
|
|
18
|
+
* @version 1.131.0
|
|
19
19
|
* @private
|
|
20
20
|
* @alias sap.ui.core.support.plugins.LocalStorage
|
|
21
21
|
*/
|
|
@@ -22,7 +22,7 @@ sap.ui.define([
|
|
|
22
22
|
* @class This class represents the selector plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
23
23
|
*
|
|
24
24
|
* @extends sap.ui.core.support.Plugin
|
|
25
|
-
* @version 1.
|
|
25
|
+
* @version 1.131.0
|
|
26
26
|
* @private
|
|
27
27
|
* @alias sap.ui.core.support.plugins.Selector
|
|
28
28
|
*/
|
|
@@ -36,7 +36,7 @@ sap.ui.define([
|
|
|
36
36
|
* @class This class represents the technical info plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
37
37
|
*
|
|
38
38
|
* @extends sap.ui.core.support.Plugin
|
|
39
|
-
* @version 1.
|
|
39
|
+
* @version 1.131.0
|
|
40
40
|
* @private
|
|
41
41
|
* @alias sap.ui.core.support.plugins.TechInfo
|
|
42
42
|
*/
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @class This class represents the trace plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
22
22
|
*
|
|
23
23
|
* @extends sap.ui.core.support.Plugin
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.131.0
|
|
25
25
|
* @private
|
|
26
26
|
* @alias sap.ui.core.support.plugins.Trace
|
|
27
27
|
*/
|
|
@@ -34,7 +34,7 @@ sap.ui.define([
|
|
|
34
34
|
* Creates an instance of sap.ui.core.support.plugins.ViewInfo.
|
|
35
35
|
* @class This class represents the ViewInfo plugin for the support tool functionality of UI5. This class is internal and all its functions must not be used by an application.
|
|
36
36
|
* @extends sap.ui.core.support.Plugin
|
|
37
|
-
* @version 1.
|
|
37
|
+
* @version 1.131.0
|
|
38
38
|
* @private
|
|
39
39
|
* @deprecated As of version 1.118
|
|
40
40
|
* @alias sap.ui.core.support.plugins.ViewInfo
|