@openui5/sap.ui.core 1.120.7 → 1.121.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/.eslintrc.json +5 -3
- package/.reuse/dep5 +23 -21
- package/THIRDPARTY.txt +6 -43
- package/package.json +1 -1
- package/src/jquery.sap.global.js +7 -7
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +3 -3
- package/src/jquery.sap.trace.js +1 -1
- package/src/sap/base/Event.js +1 -1
- package/src/sap/base/Eventing.js +1 -1
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/future.js +57 -0
- package/src/sap/base/i18n/Formatting.js +24 -19
- package/src/sap/base/i18n/LanguageTag.js +2 -2
- package/src/sap/base/i18n/Localization.js +2 -2
- package/src/sap/base/i18n/ResourceBundle.js +115 -9
- package/src/sap/base/i18n/date/TimezoneUtils.js +5 -6
- package/src/sap/base/util/now.js +8 -13
- 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 +6 -3
- package/src/sap/ui/Global.js +16 -15
- package/src/sap/ui/VersionInfo.js +15 -3
- package/src/sap/ui/base/BindingParser.js +25 -15
- package/src/sap/ui/base/DataType.js +21 -13
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +5 -0
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +25 -14
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +28 -13
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +8 -7
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +133 -56
- package/src/sap/ui/core/ComponentContainer.js +14 -17
- package/src/sap/ui/core/ComponentMetadata.js +7 -3
- package/src/sap/ui/core/ComponentSupport.js +32 -13
- package/src/sap/ui/core/Configuration.js +69 -67
- package/src/sap/ui/core/Control.js +34 -19
- package/src/sap/ui/core/Core.js +49 -45
- 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 +6 -8
- package/src/sap/ui/core/ElementMetadata.js +35 -20
- package/src/sap/ui/core/EnabledPropagator.js +1 -1
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/ExtensionPoint.js +18 -11
- package/src/sap/ui/core/Fragment.js +69 -28
- package/src/sap/ui/core/HTML.js +3 -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 +145 -125
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +6 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +9 -2
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +22 -13
- 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 +2 -2
- package/src/sap/ui/core/LocaleData.js +16 -15
- package/src/sap/ui/core/Manifest.js +28 -28
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Messaging.js +4 -4
- package/src/sap/ui/core/Popup.js +1 -47
- package/src/sap/ui/core/RenderManager.js +1 -1
- package/src/sap/ui/core/Renderer.js +12 -7
- package/src/sap/ui/core/Rendering.js +49 -42
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +7 -7
- package/src/sap/ui/core/ScrollBarRenderer.js +3 -3
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +1 -0
- package/src/sap/ui/core/ShortcutHintsMixin.js +1 -1
- package/src/sap/ui/core/StashedControlSupport.js +39 -40
- package/src/sap/ui/core/Theming.js +15 -25
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +4 -3
- package/src/sap/ui/core/UIArea.js +5 -3
- package/src/sap/ui/core/UIComponent.js +6 -4
- 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 +2 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +44 -23
- package/src/sap/ui/core/cache/CacheManagerNOP.js +0 -1
- package/src/sap/ui/core/cldr/ar.json +47 -88
- package/src/sap/ui/core/cldr/ar_EG.json +47 -88
- package/src/sap/ui/core/cldr/ar_SA.json +48 -89
- package/src/sap/ui/core/cldr/bg.json +44 -156
- package/src/sap/ui/core/cldr/ca.json +265 -370
- package/src/sap/ui/core/cldr/cnr.json +545 -476
- package/src/sap/ui/core/cldr/cs.json +33 -467
- package/src/sap/ui/core/cldr/cy.json +36 -762
- package/src/sap/ui/core/cldr/da.json +43 -146
- package/src/sap/ui/core/cldr/de.json +47 -149
- package/src/sap/ui/core/cldr/de_AT.json +48 -150
- package/src/sap/ui/core/cldr/de_CH.json +86 -187
- package/src/sap/ui/core/cldr/el.json +28 -96
- package/src/sap/ui/core/cldr/el_CY.json +28 -96
- package/src/sap/ui/core/cldr/en.json +66 -27
- package/src/sap/ui/core/cldr/en_AU.json +314 -171
- package/src/sap/ui/core/cldr/en_GB.json +167 -33
- package/src/sap/ui/core/cldr/en_HK.json +57 -30
- package/src/sap/ui/core/cldr/en_IE.json +54 -27
- package/src/sap/ui/core/cldr/en_IN.json +139 -28
- package/src/sap/ui/core/cldr/en_NZ.json +55 -28
- package/src/sap/ui/core/cldr/en_PG.json +49 -22
- package/src/sap/ui/core/cldr/en_SG.json +51 -24
- package/src/sap/ui/core/cldr/en_ZA.json +61 -34
- package/src/sap/ui/core/cldr/es.json +25 -130
- package/src/sap/ui/core/cldr/es_AR.json +90 -191
- package/src/sap/ui/core/cldr/es_BO.json +63 -165
- package/src/sap/ui/core/cldr/es_CL.json +100 -202
- package/src/sap/ui/core/cldr/es_CO.json +54 -156
- package/src/sap/ui/core/cldr/es_MX.json +163 -258
- package/src/sap/ui/core/cldr/es_PE.json +65 -167
- package/src/sap/ui/core/cldr/es_UY.json +65 -167
- package/src/sap/ui/core/cldr/es_VE.json +43 -145
- package/src/sap/ui/core/cldr/et.json +44 -144
- package/src/sap/ui/core/cldr/fa.json +75 -80
- package/src/sap/ui/core/cldr/fi.json +38 -142
- package/src/sap/ui/core/cldr/fr.json +28 -22
- package/src/sap/ui/core/cldr/fr_BE.json +31 -25
- package/src/sap/ui/core/cldr/fr_CA.json +76 -69
- package/src/sap/ui/core/cldr/fr_CH.json +41 -35
- package/src/sap/ui/core/cldr/fr_LU.json +28 -22
- package/src/sap/ui/core/cldr/he.json +37 -426
- package/src/sap/ui/core/cldr/hi.json +40 -83
- package/src/sap/ui/core/cldr/hr.json +31 -286
- package/src/sap/ui/core/cldr/hu.json +46 -140
- package/src/sap/ui/core/cldr/id.json +31 -13
- package/src/sap/ui/core/cldr/it.json +59 -182
- package/src/sap/ui/core/cldr/it_CH.json +65 -188
- package/src/sap/ui/core/cldr/ja.json +103 -13
- package/src/sap/ui/core/cldr/kk.json +79 -67
- package/src/sap/ui/core/cldr/ko.json +29 -10
- package/src/sap/ui/core/cldr/lt.json +24 -366
- package/src/sap/ui/core/cldr/lv.json +30 -277
- package/src/sap/ui/core/cldr/mk.json +103 -198
- package/src/sap/ui/core/cldr/ms.json +30 -10
- package/src/sap/ui/core/cldr/nb.json +32 -133
- package/src/sap/ui/core/cldr/nl.json +37 -167
- package/src/sap/ui/core/cldr/nl_BE.json +108 -238
- package/src/sap/ui/core/cldr/pl.json +27 -384
- package/src/sap/ui/core/cldr/pt.json +37 -145
- package/src/sap/ui/core/cldr/pt_PT.json +32 -133
- package/src/sap/ui/core/cldr/ro.json +30 -289
- package/src/sap/ui/core/cldr/ru.json +27 -75
- package/src/sap/ui/core/cldr/ru_UA.json +27 -75
- package/src/sap/ui/core/cldr/sk.json +32 -438
- package/src/sap/ui/core/cldr/sl.json +131 -535
- package/src/sap/ui/core/cldr/sr.json +41 -332
- package/src/sap/ui/core/cldr/sr_Latn.json +192 -483
- package/src/sap/ui/core/cldr/sv.json +49 -137
- package/src/sap/ui/core/cldr/th.json +39 -20
- package/src/sap/ui/core/cldr/tr.json +33 -125
- package/src/sap/ui/core/cldr/uk.json +310 -252
- package/src/sap/ui/core/cldr/vi.json +458 -331
- package/src/sap/ui/core/cldr/zh_CN.json +39 -17
- package/src/sap/ui/core/cldr/zh_HK.json +49 -27
- package/src/sap/ui/core/cldr/zh_SG.json +53 -31
- package/src/sap/ui/core/cldr/zh_TW.json +31 -14
- package/src/sap/ui/core/date/CalendarUtils.js +11 -9
- package/src/sap/ui/core/date/Islamic.js +7 -2
- package/src/sap/ui/core/date/UI5Date.js +86 -34
- package/src/sap/ui/core/date/UniversalDate.js +16 -26
- package/src/sap/ui/core/date/UniversalDateUtils.js +14 -14
- 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/DragAndDrop.js +4 -4
- 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 +37 -45
- package/src/sap/ui/core/format/FileSizeFormat.js +15 -16
- package/src/sap/ui/core/format/FormatUtils.js +36 -0
- package/src/sap/ui/core/format/ListFormat.js +4 -4
- package/src/sap/ui/core/format/NumberFormat.js +288 -125
- 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 +16 -15
- package/src/sap/ui/core/library.js +26 -9
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +5 -5
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageMixin.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_mk.properties +1 -1
- package/src/sap/ui/core/mvc/Controller.js +49 -19
- package/src/sap/ui/core/mvc/ControllerExtension.js +5 -4
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +2 -2
- package/src/sap/ui/core/mvc/ControllerMetadata.js +3 -3
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +6 -8
- 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 +8 -5
- package/src/sap/ui/core/mvc/XMLView.js +7 -5
- 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 +5 -3
- package/src/sap/ui/core/postmessage/confirmationDialog.js +3 -3
- package/src/sap/ui/core/routing/HashChanger.js +21 -10
- package/src/sap/ui/core/routing/History.js +5 -5
- package/src/sap/ui/core/routing/Route.js +9 -7
- package/src/sap/ui/core/routing/Router.js +13 -7
- package/src/sap/ui/core/routing/Target.js +1 -1
- package/src/sap/ui/core/routing/Targets.js +5 -4
- package/src/sap/ui/core/routing/async/Target.js +10 -7
- package/src/sap/ui/core/routing/async/Targets.js +3 -3
- package/src/sap/ui/core/routing/sync/Target.js +4 -1
- package/src/sap/ui/core/rules/Config.support.js +3 -3
- 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/RuleEngineOpaExtension.js +9 -12
- package/src/sap/ui/core/support/Support.js +2 -2
- package/src/sap/ui/core/support/ToolsAPI.js +19 -6
- package/src/sap/ui/core/support/controls/InteractionTree.js +7 -7
- package/src/sap/ui/core/support/plugins/Breakpoint.js +8 -5
- package/src/sap/ui/core/support/plugins/ControlTree.js +26 -15
- package/src/sap/ui/core/support/plugins/Debugging.js +9 -6
- package/src/sap/ui/core/support/plugins/Interaction.js +9 -7
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +6 -6
- 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 +4 -3
- package/src/sap/ui/core/support/plugins/ViewInfo.js +4 -2
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +4 -4
- package/src/sap/ui/core/support/trace/E2eTraceLib.js +5 -5
- package/src/sap/ui/core/themes/base/Icon.less +2 -1
- package/src/sap/ui/core/themes/base/base.less +370 -371
- package/src/sap/ui/core/theming/Parameters.js +9 -8
- package/src/sap/ui/core/theming/ThemeHelper.js +4 -3
- package/src/sap/ui/core/theming/ThemeManager.js +8 -6
- 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 +6 -3
- 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 +23 -13
- package/src/sap/ui/core/util/PasteHelper.js +3 -3
- package/src/sap/ui/core/util/_LocalizationHelper.js +10 -1
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +51 -5
- package/src/sap/ui/core/util/reflection/JsControlTreeModifier.js +2 -2
- package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +1 -0
- 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 +6 -6
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/dom/isBehindOtherElement.js +0 -1
- package/src/sap/ui/events/isMouseEventDelayed.js +6 -12
- package/src/sap/ui/events/jquery/EventSimulation.js +4 -3
- package/src/sap/ui/events/jquery/EventTriggerHook.js +2 -3
- package/src/sap/ui/model/Binding.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +2 -0
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +1 -0
- 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 +34 -4
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +6 -3
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +6 -2
- 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 +4 -4
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/_Helper.js +4 -2
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -0
- package/src/sap/ui/model/json/JSONModel.js +6 -2
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +12 -7
- package/src/sap/ui/model/odata/ODataAnnotations.js +4 -4
- package/src/sap/ui/model/odata/ODataMessageParser.js +4 -3
- package/src/sap/ui/model/odata/ODataMetaModel.js +2 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +34 -4
- package/src/sap/ui/model/odata/ODataModel.js +5 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +1 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +4 -2
- package/src/sap/ui/model/odata/ODataUtils.js +166 -131
- package/src/sap/ui/model/odata/type/Boolean.js +9 -7
- 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 +5 -4
- package/src/sap/ui/model/odata/type/DateTime.js +2 -2
- package/src/sap/ui/model/odata/type/DateTimeBase.js +4 -4
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +4 -3
- package/src/sap/ui/model/odata/type/Decimal.js +5 -5
- package/src/sap/ui/model/odata/type/Double.js +4 -3
- package/src/sap/ui/model/odata/type/Guid.js +4 -3
- package/src/sap/ui/model/odata/type/Int.js +4 -4
- 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 +4 -4
- 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 +4 -3
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +6 -5
- package/src/sap/ui/model/odata/type/Time.js +4 -4
- package/src/sap/ui/model/odata/type/TimeOfDay.js +5 -4
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/type/UnitMixin.js +3 -2
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +4 -4
- package/src/sap/ui/model/odata/v2/ODataModel.js +55 -25
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +5 -4
- package/src/sap/ui/model/odata/v4/Context.js +20 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +11 -5
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +8 -5
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +56 -33
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +7 -4
- package/src/sap/ui/model/odata/v4/ODataModel.js +25 -15
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +10 -8
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +9 -2
- package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +4 -4
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +195 -59
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +16 -6
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +22 -15
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +19 -11
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +20 -11
- package/src/sap/ui/model/odata/v4/lib/_TreeState.js +122 -0
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +4 -4
- package/src/sap/ui/model/type/Currency.js +5 -5
- package/src/sap/ui/model/type/Date.js +5 -5
- package/src/sap/ui/model/type/DateInterval.js +6 -5
- 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 +5 -4
- package/src/sap/ui/model/type/Float.js +5 -5
- package/src/sap/ui/model/type/Integer.js +6 -6
- package/src/sap/ui/model/type/String.js +4 -3
- 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 +8 -7
- package/src/sap/ui/model/xml/XMLModel.js +11 -3
- package/src/sap/ui/performance/trace/Interaction.js +8 -16
- package/src/sap/ui/performance/trace/initTraces.js +1 -1
- package/src/sap/ui/qunit/qunit-junit.js +415 -49
- package/src/sap/ui/qunit/utils/ControlIterator.js +4 -4
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +3 -2
- package/src/sap/ui/qunit/utils/nextUIUpdate.js +15 -5
- package/src/sap/ui/test/OpaBuilder.js +3 -1
- package/src/sap/ui/test/OpaPlugin.js +103 -10
- package/src/sap/ui/test/autowaiter/_UIUpdatesWaiter.js +4 -4
- package/src/sap/ui/test/autowaiter/_navigationContainerWaiter.js +3 -3
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/launchers/iFrameLauncher.js +18 -6
- package/src/sap/ui/test/matchers/Descendant.js +2 -1
- package/src/sap/ui/test/matchers/I18NText.js +6 -2
- package/src/sap/ui/test/matchers/Interactable.js +2 -3
- package/src/sap/ui/test/matchers/LabelFor.js +5 -3
- package/src/sap/ui/test/matchers/Matcher.js +20 -0
- package/src/sap/ui/test/matchers/Sibling.js +2 -1
- package/src/sap/ui/test/matchers/_Visitor.js +2 -4
- package/src/sap/ui/test/qunitPause.js +6 -4
- package/src/sap/ui/test/selectors/_ControlSelectorGenerator.js +4 -3
- package/src/sap/ui/test/selectors/_Selector.js +3 -3
- package/src/sap/ui/test/starter/_setupAndStart.js +5 -18
- package/src/sap/ui/test/starter/_utils.js +15 -1
- package/src/sap/ui/test/starter/createSuite.js +2 -0
- package/src/sap/ui/thirdparty/RequestRecorder.js +1 -1
- package/src/sap/ui/thirdparty/crossroads.js +3 -0
- package/src/sap/ui/thirdparty/qunit-2.js +1 -2
- package/src/sap/ui/thirdparty/qunit-reporter-junit.js +30 -8
- package/src/sap/ui/thirdparty/qunit.js +1 -2
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +18 -4
- package/src/ui5loader.js +15 -4
- package/test/sap/ui/core/DateFormat.controller.js +3 -3
- package/test/sap/ui/core/ILabelableInterface.html +21 -0
- package/test/sap/ui/core/ILabelableInterface.js +81 -0
- package/test/sap/ui/core/NumberFormat.controller.js +4 -4
- package/test/sap/ui/core/Strings.controller.js +4 -4
- package/test/sap/ui/core/demokit/docuindex.json +8 -2
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/css/style.css +3 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/categories/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/products/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/suppliers/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/Component.js +20 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Home.controller.js +14 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Next.controller.js +21 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/manifest.json +94 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentDesktop.fragment.js +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentMobile.fragment.js +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeView.js +45 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/Next.view.xml +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/RootView.js +22 -0
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Opa.qunit.js +5 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Opa.qunit.js +8 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/ValueHelp.js +38 -35
- package/test/sap/ui/core/demokit/sample/common/Helper.js +7 -7
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +1 -1
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +5 -3
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTime/DateTime.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTimeOffset/DateTimeOffset.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v2/Time/Time.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/Date/Date.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/DateTimeOffset/DateTimeOffset.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/TimeOfDay/TimeOfDay.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +10 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.view.xml +3 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.controller.js +1 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.view.xml +6 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/formatRowHighlight.js +20 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +30 -24
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +10 -8
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/Main.controller.js +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Opa.qunit.js +6 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +16 -17
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +8 -14
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +65 -31
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/pages/Main.js +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersRTATest/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +1 -1
- package/test/sap/ui/core/internal/samples/odata/twoFields/Main.controller.js +3 -1
- package/test/sap/ui/core/internal/samples/odata/twoFields/tests/pages/Main.js +3 -2
- package/test/sap/ui/core/internal/samples/odata/v2/Products/Opa.qunit.js +5 -4
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.controller.js +4 -6
- package/test/sap/ui/core/internal/samples/odata/v2/TreeTable/Main.controller.js +6 -5
- package/test/sap/ui/core/qunit/AppCacheBuster.qunit.js +5 -5
- package/test/sap/ui/core/qunit/BindingParser.qunit.js +158 -24
- package/test/sap/ui/core/qunit/BlockLayerUtils.qunit.js +3 -6
- package/test/sap/ui/core/qunit/CalculatedFields.qunit.js +70 -81
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +13 -13
- package/test/sap/ui/core/qunit/ControlDefinition.qunit.js +5 -4
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Core.qunit.js +42 -57
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +10 -2
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +2 -2
- package/test/sap/ui/core/qunit/Core_libraryTerminologies.qunit.js +4 -3
- package/test/sap/ui/core/qunit/CustomThemeFallback.qunit.js +2 -3
- package/test/sap/ui/core/qunit/DataBinding.qunit.js +125 -65
- package/test/sap/ui/core/qunit/Element_base.qunit.js +4 -1
- package/test/sap/ui/core/qunit/Element_destroy.qunit.js +6 -10
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +54 -43
- package/test/sap/ui/core/qunit/Element_metadata_selector.qunit.js +1 -1
- package/test/sap/ui/core/qunit/EnabledPropagator.qunit.js +3 -2
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +5 -2
- package/test/sap/ui/core/qunit/FieldGroup.qunit.js +3 -2
- package/test/sap/ui/core/qunit/Fragment.qunit.js +18 -2
- package/test/sap/ui/core/qunit/HTML.qunit.js +3 -2
- package/test/sap/ui/core/qunit/Hyphenation.qunit.js +30 -6
- package/test/sap/ui/core/qunit/Icon.qunit.js +4 -3
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +6 -5
- package/test/sap/ui/core/qunit/Lib.qunit.js +156 -15
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +7 -42
- package/test/sap/ui/core/qunit/QUnit.qunit.js +6 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +13 -10
- package/test/sap/ui/core/qunit/{CoreEvents.qunit.js → Rendering.qunit.js} +68 -7
- package/test/sap/ui/core/qunit/ScrollBar.qunit.js +8 -7
- package/test/sap/ui/core/qunit/StashedControlSupport.qunit.js +65 -90
- package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.qunit.js +706 -0
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +49 -37
- package/test/sap/ui/core/qunit/ThemeManager.qunit.js +15 -11
- package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +5 -5
- package/test/sap/ui/core/qunit/ThemeParameters_legacyAPIs.qunit.js +7 -7
- package/test/sap/ui/core/qunit/Theming.qunit.js +174 -1
- package/test/sap/ui/core/qunit/VersionInfo.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/AnalyticalBinding.qunit.js +58 -0
- package/test/sap/ui/core/qunit/analytics/o4aMetadata.js +3 -0
- package/test/sap/ui/core/qunit/app/ThemeClassParameters.qunit.js +4 -4
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +1 -1
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +276 -44
- package/test/sap/ui/core/qunit/base/i18n/Localization.qunit.js +173 -26
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +408 -3
- package/test/sap/ui/core/qunit/base/util/now.qunit.js +2 -30
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +6 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +15 -6
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.beforeBootstrap.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithNoJQuery.qunit.js +2 -1
- package/test/sap/ui/core/qunit/bootstrap/CalendarClassLoadingWithCustomBootTask.beforeBootstrap.qunit.js +8 -4
- package/test/sap/ui/core/qunit/bootstrap/{CalendarClassLoadingWithCustomBootTaskAndPreload.beforeBootstrap.qunit.js → CalendarClassLoadingWithCustomBootTask.beforeBootstrap_legacy.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +32 -28
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.html → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.js → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.html → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.js → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.html → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.js → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration_language_via_URL.qunit.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.beforeBootstrap.qunit.js +2 -2
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.qunit.js +8 -8
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +11 -10
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +2 -2
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +68 -13
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.html +0 -1
- package/test/sap/ui/core/qunit/component/Component.qunit.js +40 -21
- package/test/sap/ui/core/qunit/component/ComponentSupport.qunit.js +65 -39
- package/test/sap/ui/core/qunit/component/Component_containedInLibrary.qunit.js +25 -6
- package/test/sap/ui/core/qunit/component/Manifest.qunit.js +9 -9
- package/test/sap/ui/core/qunit/component/Metadata.qunit.js +5 -5
- package/test/sap/ui/core/qunit/component/Metadata_unavoidablySync.qunit.js +1 -2
- package/test/sap/ui/core/qunit/component/Models.qunit.js +295 -157
- package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.js +3 -4
- 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 +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.js +3 -4
- 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 +3 -3
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.js +3 -4
- 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 +3 -4
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/i18n/i18n.properties +3 -0
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/manifest.json +3 -1
- package/test/sap/ui/core/qunit/component/testdata/v2models/parent/Component.js +1 -4
- package/test/sap/ui/core/qunit/component/testdata/v4models/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/cacheTokens/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/unsupportedVersion/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/verticalLayout/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/view/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/composite/XMLComposite.qunit.js +3 -2
- package/test/sap/ui/core/qunit/csp/ContentSecurityPolicy.qunit.js +0 -1
- package/test/sap/ui/core/qunit/dnd/DragAndDrop.qunit.js +3 -3
- package/test/sap/ui/core/qunit/dnd/DragInfo.qunit.js +2 -1
- package/test/sap/ui/core/qunit/format/FormatUtils.qunit.js +36 -0
- package/test/sap/ui/core/qunit/generic/ControlMemoryLeaks.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/DuplicateIdCheck.qunit.js +2 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +6 -6
- package/test/sap/ui/core/qunit/i18n/CalendarUtils.qunit.js +3 -3
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +29 -29
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +6 -6
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +92 -78
- package/test/sap/ui/core/qunit/i18n/UI5Date.qunit.js +199 -33
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +111 -119
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +12 -38
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +1 -1
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +29 -28
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +3 -9
- package/test/sap/ui/core/qunit/internal/testsuite.models.qunit.js +7 -0
- package/test/sap/ui/core/qunit/jquery.sap.events.qunit.js +4 -68
- package/test/sap/ui/core/qunit/json/JSONBinding.qunit.js +4 -6
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +0 -1
- package/test/sap/ui/core/qunit/json/JSONModel.qunit.js +5 -18
- package/test/sap/ui/core/qunit/json/JSONPropertyBinding.qunit.js +15 -23
- package/test/sap/ui/core/qunit/json/JSONTreeBinding.qunit.js +6 -8
- package/test/sap/ui/core/qunit/json/JSONTwoWay.qunit.js +11 -13
- package/test/sap/ui/core/qunit/loader/asyncMode.qunit.html +0 -2
- package/test/sap/ui/core/qunit/loader/asyncMode.qunit.js +40 -34
- package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.html → asyncMode_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.js → asyncMode_legacyAPIs.qunit.js} +33 -4
- package/test/sap/ui/core/qunit/loader/conflictWithRequire.qunit.js +16 -16
- package/test/sap/ui/core/qunit/loader/testsuite.loader.qunit.js +2 -2
- package/test/sap/ui/core/qunit/messages/MessageMixin.qunit.js +46 -2
- package/test/sap/ui/core/qunit/mockserver/MockServer.qunit.js +859 -245
- package/test/sap/ui/core/qunit/mockserver/testsuite.mockserver.qunit.js +8 -0
- package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata.xml +3 -0
- package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata_ItemCustomer.xml +5 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +135 -44
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +10 -10
- package/test/sap/ui/core/qunit/model/_Helper.qunit.js +3 -1
- package/test/sap/ui/core/qunit/mvc/AnyViewAsync.qunit.js +11 -3
- package/test/sap/ui/core/qunit/mvc/AsyncXMLView.qunit.js +5 -5
- package/test/sap/ui/core/qunit/mvc/EventHandlerResolver.qunit.js +73 -47
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +0 -4
- package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +78 -7
- package/test/sap/ui/core/qunit/mvc/testdata/inner.view.xml +3 -0
- package/test/sap/ui/core/qunit/mvc/testdata/middle.view.xml +8 -0
- package/test/sap/ui/core/qunit/mvc/testdata/outer.view.xml +5 -0
- package/test/sap/ui/core/qunit/mvc/testdata/test.controller.js +1 -1
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +3 -3
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncHTMLView_legacyAPIs.qunit.js +6 -7
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncXMLView_legacyAPIs.qunit.js +5 -7
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/View_legacyAPIs.qunit.js +46 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLTemplateProcessorRequireXML_legacyAPIs.qunit.js +0 -4
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLView_legacyAPIs.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +60 -62
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/ODataMessageParser.qunit.js +12 -46
- package/test/sap/ui/core/qunit/odata/ODataMessageParserNoFakeService.qunit.js +4 -3
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +7 -0
- package/test/sap/ui/core/qunit/odata/ODataMetadataNoFakeService.qunit.js +40 -0
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +365 -13
- package/test/sap/ui/core/qunit/odata/_AnnotationHelperExpression.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Boolean.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/type/Currency.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/type/Date.qunit.js +11 -11
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +54 -55
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +8 -8
- package/test/sap/ui/core/qunit/odata/type/Decimal.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Double.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Int.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Int64.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Single.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +12 -12
- package/test/sap/ui/core/qunit/odata/type/Unit.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v2/CanonicalRequests.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +580 -130
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +79 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +23 -18
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +24 -0
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +25 -203
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModel.qunit.js +55 -192
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelB.qunit.js +47 -261
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/AnnotationHelper.qunit.js +4 -1
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +43 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +15 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +7 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +142 -30
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +8 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +2317 -470
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +12 -4
- package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +75 -40
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +43 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataUtils.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/v4/data/metadata_special_cases.xml +4 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +381 -182
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +46 -29
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +38 -26
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +38 -10
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +45 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_TreeState.qunit.js +134 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2Requestor.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/v4/testsuite.odatav4.qunit.js +1 -0
- package/test/sap/ui/core/qunit/opa/OpaBuilder.qunit.js +3 -1
- package/test/sap/ui/core/qunit/opa/RecordReplay.qunit.js +0 -1
- package/test/sap/ui/core/qunit/opa/_ControlFinder.qunit.js +5 -1
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +0 -1
- package/test/sap/ui/core/qunit/opa/actions/Press.qunit.js +4 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_XHRWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_navigationContainerWaiter.js +5 -5
- package/test/sap/ui/core/qunit/opa/fixture/bindingPath.js +20 -12
- package/test/sap/ui/core/qunit/opa/fixture/busyAfterStart.html +4 -4
- package/test/sap/ui/core/qunit/opa/fixture/emptySite.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/emptySiteWithOpaExtensions.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit1.html +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit2.html +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest.js +6 -3
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.html +5 -5
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit1.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit2.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit1.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit2.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit1.html +3 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit2.html +3 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause.qunit.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.html +4 -3
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +4 -1
- package/test/sap/ui/core/qunit/opa/matchers/I18NText.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/LabelFor.qunit.js +2 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Busy.qunit.js +2 -1
- package/test/sap/ui/core/qunit/opa/opa5/iFrame.qunit.js +6 -5
- package/test/sap/ui/core/qunit/opa/opa5/iFrameLogging.qunit.js +26 -6
- package/test/sap/ui/core/qunit/opa/opa5/matchersInFrame.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_BindingPath.js +2 -2
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorGenerator.js +3 -3
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorValidator.js +5 -2
- package/test/sap/ui/core/qunit/opa/selectors/_DropdownItem.js +3 -2
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +28 -18
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +26 -12
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +5 -8
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +71 -64
- package/test/sap/ui/core/qunit/routing/async/Router.qunit.js +55 -2
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/manifest.json +5 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/manifest.json +5 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/ParentExtended/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/Component.js +15 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/manifest.json +37 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/MyView1.view.xml +3 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/RootView.view.xml +3 -0
- package/test/sap/ui/core/qunit/rule/app/syncXHR.qunit.js +9 -0
- package/test/sap/ui/core/qunit/rule/model/modelSupport.qunit.js +4 -7
- package/test/sap/ui/core/qunit/security/Security.qunit.js +133 -0
- package/test/sap/ui/core/qunit/service/Service.qunit.js +13 -10
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/custom-bundle.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib2/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib3/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/customCss/lib1/library.js +3 -4
- package/test/sap/ui/core/qunit/testdata/libraries/make.js +4 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library-preload.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library-preload.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/absoluteBundleUrl/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/notLoadedYet/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib1/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib10/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib11/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib12/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib13/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib14/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib15/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib16/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib17/library.js +6 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib3/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib4/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib5/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib6/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib7/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib8/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib9/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require.view.xml +0 -1
- package/test/sap/ui/core/qunit/testsuite.qunit.js +2 -2
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +35 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.eventing.qunit.js +0 -11
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +7 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +4 -0
- package/test/sap/ui/core/qunit/types/Date.qunit.js +5 -5
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +92 -99
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +50 -50
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +5 -5
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +74 -4
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +332 -166
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +60 -24
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +21 -21
- package/test/sap/ui/core/qunit/types/Types.qunit.js +51 -48
- package/test/sap/ui/core/qunit/types/ValidationHooks.qunit.js +151 -78
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +7 -17
- package/test/sap/ui/core/qunit/{types → ui5classes}/DataType.qunit.js +174 -17
- package/test/sap/ui/core/qunit/{ManagedObjectMetadata.qunit.js → ui5classes/ManagedObjectMetadata.qunit.js} +0 -1
- package/test/sap/ui/core/qunit/ui5classes/ManagedObjectRegistry.qunit.js +1 -1
- package/test/sap/ui/core/qunit/{ManagedObject_BindingParser.qunit.js → ui5classes/ManagedObject_BindingParser.qunit.js} +1 -1
- package/test/sap/ui/core/qunit/ui5classes/testsuite.ui5classes.qunit.html +11 -0
- package/test/sap/ui/core/qunit/util/LabelEnablement.qunit.js +62 -0
- package/test/sap/ui/core/qunit/util/PasteHelper.qunit.js +5 -5
- package/test/sap/ui/core/qunit/util/Popup.qunit.js +3 -71
- package/test/sap/ui/core/qunit/util/ValueStateSupport.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +6 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.measure.qunit.js +31 -16
- package/test/sap/ui/core/qunit/util/jquery.sap.trace.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/postmessage/ConfirmationDialog.qunit.js +4 -6
- package/test/sap/ui/core/qunit/util/reflection/BaseTreeModifier.qunit.js +11 -2
- package/test/sap/ui/core/qunit/util/reflection/JsControlTreeModifier.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/reflection/XmlTreeModifier.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/support/SupportTool.qunit.js +3 -2
- package/test/sap/ui/core/qunit/util/support/TechnicalInfo.opa.qunit.js +22 -83
- package/test/sap/ui/core/qunit/util/support/TechnicalInfo.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/support/TechnicalInfoDebugModules.opa.qunit.js +22 -83
- package/test/sap/ui/core/qunit/xml/XMLBinding.qunit.js +0 -2
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -4
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +12 -14
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +4 -6
- package/test/sap/ui/core/qunit/xml/XMLTwoWay.qunit.js +8 -10
- package/test/sap/ui/core/relnotes/changes-1.120.json +0 -500
- package/test/sap/ui/core/relnotes/changes-1.121.json +604 -0
- package/test/sap/ui/core/samples/components/config/modelPreloadAndEarlyRequests/manifest.json +3 -5
- package/test/sap/ui/core/samples/databinding/UnitTable.controller.js +5 -5
- package/test/sap/ui/core/terminologies/App.controller.js +3 -4
- package/test/sap/ui/core/terminologies/main.js +4 -4
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/firstItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/initial.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/lastItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/leftDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/myButtonSample-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/rightDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/qunit/testrunner.html +5 -2
- package/test/testsuite/js/samples.js +5 -4
- package/test/testsuite/js/settings.js +1 -1
- package/test/testsuite/js/testframe.js +1 -1
- package/test/testsuite/welcome.html +1 -1
- package/LICENSES/BSD-2-Clause.txt +0 -22
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Formatter.js +0 -22
- package/test/sap/ui/core/qunit/ManagedObjectRegistry.qunit.js +0 -150
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/.library +0 -17
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButton.js +0 -85
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButtonRenderer.js +0 -63
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/library.js +0 -24
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/themes/base/library.css +0 -26
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.html +0 -12
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +0 -76
- /package/test/sap/ui/core/qunit/bootstrap/{DebugMode.qunit.html → DebugModeSync.qunit.html} +0 -0
- /package/test/sap/ui/core/qunit/{types → ui5classes}/AlternativeTypes.qunit.js +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject.qunit.js → ui5classes/ManagedObject.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObjectObserver.qunit.js → ui5classes/ManagedObjectObserver.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject_forwardAggregation.qunit.js → ui5classes/ManagedObject_forwardAggregation.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject_isPropertyInitial.qunit.js → ui5classes/ManagedObject_isPropertyInitial.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Metadata.qunit.js → ui5classes/Metadata.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Object.qunit.js → ui5classes/Object.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Object_legacyAPIs.qunit.js → ui5classes/Object_legacyAPIs.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{testdata → ui5classes/fixture}/customboot/common.configure.ui5.js +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// /**
|
|
2
2
|
// * Copyright (c) 2012-2023 SAP SE or an SAP affiliate company and Theming Base Content contributors. Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
3
3
|
// * Theming Engine 1.23061.0
|
|
4
|
-
// * data:{"sModified":"2023-
|
|
4
|
+
// * data:{"sModified":"2023-12-13T07:44:03Z"}
|
|
5
5
|
// */
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
/******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.
|
|
8
|
+
/******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.10.0) *******************/
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
// [Label "Brand Color"]
|
|
@@ -7149,361 +7149,361 @@
|
|
|
7149
7149
|
// [Protected "true"]
|
|
7150
7150
|
// [Category "Internal"]
|
|
7151
7151
|
// [Type "asset"]
|
|
7152
|
-
|
|
7152
|
+
@sapFontUrl_SAP-icons_ttf: none;
|
|
7153
7153
|
|
|
7154
7154
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7155
7155
|
// [Protected "true"]
|
|
7156
7156
|
// [Category "Internal"]
|
|
7157
7157
|
// [Type "asset"]
|
|
7158
|
-
|
|
7158
|
+
@sapFontUrl_SAP-icons_woff: none;
|
|
7159
7159
|
|
|
7160
7160
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7161
7161
|
// [Protected "true"]
|
|
7162
7162
|
// [Category "Internal"]
|
|
7163
7163
|
// [Type "asset"]
|
|
7164
|
-
|
|
7164
|
+
@sapFontUrl_SAP-icons_woff2: none;
|
|
7165
7165
|
|
|
7166
7166
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7167
7167
|
// [Protected "true"]
|
|
7168
7168
|
// [Category "Internal"]
|
|
7169
7169
|
// [Type "asset"]
|
|
7170
|
-
|
|
7170
|
+
@sapFontUrl_SAP-icons-TNT_ttf: none;
|
|
7171
7171
|
|
|
7172
7172
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7173
7173
|
// [Protected "true"]
|
|
7174
7174
|
// [Category "Internal"]
|
|
7175
7175
|
// [Type "asset"]
|
|
7176
|
-
|
|
7176
|
+
@sapFontUrl_SAP-icons-TNT_woff: none;
|
|
7177
7177
|
|
|
7178
7178
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7179
7179
|
// [Protected "true"]
|
|
7180
7180
|
// [Category "Internal"]
|
|
7181
7181
|
// [Type "asset"]
|
|
7182
|
-
|
|
7182
|
+
@sapFontUrl_SAP-icons-TNT_woff2: none;
|
|
7183
7183
|
|
|
7184
7184
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7185
7185
|
// [Protected "true"]
|
|
7186
7186
|
// [Category "Internal"]
|
|
7187
7187
|
// [Type "asset"]
|
|
7188
|
-
|
|
7188
|
+
@sapFontUrl_SAP-icons-Business-Suite_ttf: none;
|
|
7189
7189
|
|
|
7190
7190
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7191
7191
|
// [Protected "true"]
|
|
7192
7192
|
// [Category "Internal"]
|
|
7193
7193
|
// [Type "asset"]
|
|
7194
|
-
|
|
7194
|
+
@sapFontUrl_SAP-icons-Business-Suite_woff: none;
|
|
7195
7195
|
|
|
7196
7196
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7197
7197
|
// [Protected "true"]
|
|
7198
7198
|
// [Category "Internal"]
|
|
7199
7199
|
// [Type "asset"]
|
|
7200
|
-
|
|
7200
|
+
@sapFontUrl_SAP-icons-Business-Suite_woff2: none;
|
|
7201
7201
|
|
|
7202
7202
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7203
7203
|
// [Protected "true"]
|
|
7204
7204
|
// [Category "Internal"]
|
|
7205
7205
|
// [Type "asset"]
|
|
7206
|
-
|
|
7206
|
+
@sapFontUrl_72_Regular_woff2: none;
|
|
7207
7207
|
|
|
7208
7208
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7209
7209
|
// [Protected "true"]
|
|
7210
7210
|
// [Category "Internal"]
|
|
7211
7211
|
// [Type "asset"]
|
|
7212
|
-
|
|
7212
|
+
@sapFontUrl_72_Regular_woff: none;
|
|
7213
7213
|
|
|
7214
7214
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7215
7215
|
// [Protected "true"]
|
|
7216
7216
|
// [Category "Internal"]
|
|
7217
7217
|
// [Type "asset"]
|
|
7218
|
-
|
|
7218
|
+
@sapFontUrl_72_Regular_full_woff2: none;
|
|
7219
7219
|
|
|
7220
7220
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7221
7221
|
// [Protected "true"]
|
|
7222
7222
|
// [Category "Internal"]
|
|
7223
7223
|
// [Type "asset"]
|
|
7224
|
-
|
|
7224
|
+
@sapFontUrl_72_Regular_full_woff: none;
|
|
7225
7225
|
|
|
7226
7226
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7227
7227
|
// [Protected "true"]
|
|
7228
7228
|
// [Category "Internal"]
|
|
7229
7229
|
// [Type "asset"]
|
|
7230
|
-
|
|
7230
|
+
@sapFontUrl_72_Bold_woff2: none;
|
|
7231
7231
|
|
|
7232
7232
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7233
7233
|
// [Protected "true"]
|
|
7234
7234
|
// [Category "Internal"]
|
|
7235
7235
|
// [Type "asset"]
|
|
7236
|
-
|
|
7236
|
+
@sapFontUrl_72_Bold_woff: none;
|
|
7237
7237
|
|
|
7238
7238
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7239
7239
|
// [Protected "true"]
|
|
7240
7240
|
// [Category "Internal"]
|
|
7241
7241
|
// [Type "asset"]
|
|
7242
|
-
|
|
7242
|
+
@sapFontUrl_72_Bold_full_woff2: none;
|
|
7243
7243
|
|
|
7244
7244
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7245
7245
|
// [Protected "true"]
|
|
7246
7246
|
// [Category "Internal"]
|
|
7247
7247
|
// [Type "asset"]
|
|
7248
|
-
|
|
7248
|
+
@sapFontUrl_72_Bold_full_woff: none;
|
|
7249
7249
|
|
|
7250
7250
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7251
7251
|
// [Protected "true"]
|
|
7252
7252
|
// [Category "Internal"]
|
|
7253
7253
|
// [Type "asset"]
|
|
7254
|
-
|
|
7254
|
+
@sapFontUrl_72_Semibold_woff2: none;
|
|
7255
7255
|
|
|
7256
7256
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7257
7257
|
// [Protected "true"]
|
|
7258
7258
|
// [Category "Internal"]
|
|
7259
7259
|
// [Type "asset"]
|
|
7260
|
-
|
|
7260
|
+
@sapFontUrl_72_Semibold_woff: none;
|
|
7261
7261
|
|
|
7262
7262
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7263
7263
|
// [Protected "true"]
|
|
7264
7264
|
// [Category "Internal"]
|
|
7265
7265
|
// [Type "asset"]
|
|
7266
|
-
|
|
7266
|
+
@sapFontUrl_72_Semibold_full_woff2: none;
|
|
7267
7267
|
|
|
7268
7268
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7269
7269
|
// [Protected "true"]
|
|
7270
7270
|
// [Category "Internal"]
|
|
7271
7271
|
// [Type "asset"]
|
|
7272
|
-
|
|
7272
|
+
@sapFontUrl_72_Semibold_full_woff: none;
|
|
7273
7273
|
|
|
7274
7274
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7275
7275
|
// [Protected "true"]
|
|
7276
7276
|
// [Category "Internal"]
|
|
7277
7277
|
// [Type "asset"]
|
|
7278
|
-
|
|
7278
|
+
@sapFontUrl_72_SemiboldDuplex_woff2: none;
|
|
7279
7279
|
|
|
7280
7280
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7281
7281
|
// [Protected "true"]
|
|
7282
7282
|
// [Category "Internal"]
|
|
7283
7283
|
// [Type "asset"]
|
|
7284
|
-
|
|
7284
|
+
@sapFontUrl_72_SemiboldDuplex_woff: none;
|
|
7285
7285
|
|
|
7286
7286
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7287
7287
|
// [Protected "true"]
|
|
7288
7288
|
// [Category "Internal"]
|
|
7289
7289
|
// [Type "asset"]
|
|
7290
|
-
|
|
7290
|
+
@sapFontUrl_72_SemiboldDuplex_full_woff2: none;
|
|
7291
7291
|
|
|
7292
7292
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7293
7293
|
// [Protected "true"]
|
|
7294
7294
|
// [Category "Internal"]
|
|
7295
7295
|
// [Type "asset"]
|
|
7296
|
-
|
|
7296
|
+
@sapFontUrl_72_SemiboldDuplex_full_woff: none;
|
|
7297
7297
|
|
|
7298
7298
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7299
7299
|
// [Protected "true"]
|
|
7300
7300
|
// [Category "Internal"]
|
|
7301
7301
|
// [Type "asset"]
|
|
7302
|
-
|
|
7302
|
+
@sapFontUrl_72_Light_woff2: none;
|
|
7303
7303
|
|
|
7304
7304
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7305
7305
|
// [Protected "true"]
|
|
7306
7306
|
// [Category "Internal"]
|
|
7307
7307
|
// [Type "asset"]
|
|
7308
|
-
|
|
7308
|
+
@sapFontUrl_72_Light_woff: none;
|
|
7309
7309
|
|
|
7310
7310
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7311
7311
|
// [Protected "true"]
|
|
7312
7312
|
// [Category "Internal"]
|
|
7313
7313
|
// [Type "asset"]
|
|
7314
|
-
|
|
7314
|
+
@sapFontUrl_72_Light_full_woff2: none;
|
|
7315
7315
|
|
|
7316
7316
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7317
7317
|
// [Protected "true"]
|
|
7318
7318
|
// [Category "Internal"]
|
|
7319
7319
|
// [Type "asset"]
|
|
7320
|
-
|
|
7320
|
+
@sapFontUrl_72_Light_full_woff: none;
|
|
7321
7321
|
|
|
7322
7322
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7323
7323
|
// [Protected "true"]
|
|
7324
7324
|
// [Category "Internal"]
|
|
7325
7325
|
// [Type "asset"]
|
|
7326
|
-
|
|
7326
|
+
@sapFontUrl_72_Black_woff2: none;
|
|
7327
7327
|
|
|
7328
7328
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7329
7329
|
// [Protected "true"]
|
|
7330
7330
|
// [Category "Internal"]
|
|
7331
7331
|
// [Type "asset"]
|
|
7332
|
-
|
|
7332
|
+
@sapFontUrl_72_Black_woff: none;
|
|
7333
7333
|
|
|
7334
7334
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7335
7335
|
// [Protected "true"]
|
|
7336
7336
|
// [Category "Internal"]
|
|
7337
7337
|
// [Type "asset"]
|
|
7338
|
-
|
|
7338
|
+
@sapFontUrl_72_Black_full_woff2: none;
|
|
7339
7339
|
|
|
7340
7340
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7341
7341
|
// [Protected "true"]
|
|
7342
7342
|
// [Category "Internal"]
|
|
7343
7343
|
// [Type "asset"]
|
|
7344
|
-
|
|
7344
|
+
@sapFontUrl_72_Black_full_woff: none;
|
|
7345
7345
|
|
|
7346
7346
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7347
7347
|
// [Protected "true"]
|
|
7348
7348
|
// [Category "Internal"]
|
|
7349
7349
|
// [Type "asset"]
|
|
7350
|
-
|
|
7350
|
+
@sapFontUrl_72_BoldItalic_woff2: none;
|
|
7351
7351
|
|
|
7352
7352
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7353
7353
|
// [Protected "true"]
|
|
7354
7354
|
// [Category "Internal"]
|
|
7355
7355
|
// [Type "asset"]
|
|
7356
|
-
|
|
7356
|
+
@sapFontUrl_72_BoldItalic_woff: none;
|
|
7357
7357
|
|
|
7358
7358
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7359
7359
|
// [Protected "true"]
|
|
7360
7360
|
// [Category "Internal"]
|
|
7361
7361
|
// [Type "asset"]
|
|
7362
|
-
|
|
7362
|
+
@sapFontUrl_72_BoldItalic_full_woff2: none;
|
|
7363
7363
|
|
|
7364
7364
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7365
7365
|
// [Protected "true"]
|
|
7366
7366
|
// [Category "Internal"]
|
|
7367
7367
|
// [Type "asset"]
|
|
7368
|
-
|
|
7368
|
+
@sapFontUrl_72_BoldItalic_full_woff: none;
|
|
7369
7369
|
|
|
7370
7370
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7371
7371
|
// [Protected "true"]
|
|
7372
7372
|
// [Category "Internal"]
|
|
7373
7373
|
// [Type "asset"]
|
|
7374
|
-
|
|
7374
|
+
@sapFontUrl_72_Condensed_woff2: none;
|
|
7375
7375
|
|
|
7376
7376
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7377
7377
|
// [Protected "true"]
|
|
7378
7378
|
// [Category "Internal"]
|
|
7379
7379
|
// [Type "asset"]
|
|
7380
|
-
|
|
7380
|
+
@sapFontUrl_72_Condensed_woff: none;
|
|
7381
7381
|
|
|
7382
7382
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7383
7383
|
// [Protected "true"]
|
|
7384
7384
|
// [Category "Internal"]
|
|
7385
7385
|
// [Type "asset"]
|
|
7386
|
-
|
|
7386
|
+
@sapFontUrl_72_Condensed_full_woff2: none;
|
|
7387
7387
|
|
|
7388
7388
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7389
7389
|
// [Protected "true"]
|
|
7390
7390
|
// [Category "Internal"]
|
|
7391
7391
|
// [Type "asset"]
|
|
7392
|
-
|
|
7392
|
+
@sapFontUrl_72_Condensed_full_woff: none;
|
|
7393
7393
|
|
|
7394
7394
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7395
7395
|
// [Protected "true"]
|
|
7396
7396
|
// [Category "Internal"]
|
|
7397
7397
|
// [Type "asset"]
|
|
7398
|
-
|
|
7398
|
+
@sapFontUrl_72_CondensedBold_woff2: none;
|
|
7399
7399
|
|
|
7400
7400
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7401
7401
|
// [Protected "true"]
|
|
7402
7402
|
// [Category "Internal"]
|
|
7403
7403
|
// [Type "asset"]
|
|
7404
|
-
|
|
7404
|
+
@sapFontUrl_72_CondensedBold_woff: none;
|
|
7405
7405
|
|
|
7406
7406
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7407
7407
|
// [Protected "true"]
|
|
7408
7408
|
// [Category "Internal"]
|
|
7409
7409
|
// [Type "asset"]
|
|
7410
|
-
|
|
7410
|
+
@sapFontUrl_72_CondensedBold_full_woff2: none;
|
|
7411
7411
|
|
|
7412
7412
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7413
7413
|
// [Protected "true"]
|
|
7414
7414
|
// [Category "Internal"]
|
|
7415
7415
|
// [Type "asset"]
|
|
7416
|
-
|
|
7416
|
+
@sapFontUrl_72_CondensedBold_full_woff: none;
|
|
7417
7417
|
|
|
7418
7418
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7419
7419
|
// [Protected "true"]
|
|
7420
7420
|
// [Category "Internal"]
|
|
7421
7421
|
// [Type "asset"]
|
|
7422
|
-
|
|
7422
|
+
@sapFontUrl_72_Italic_woff2: none;
|
|
7423
7423
|
|
|
7424
7424
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7425
7425
|
// [Protected "true"]
|
|
7426
7426
|
// [Category "Internal"]
|
|
7427
7427
|
// [Type "asset"]
|
|
7428
|
-
|
|
7428
|
+
@sapFontUrl_72_Italic_woff: none;
|
|
7429
7429
|
|
|
7430
7430
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7431
7431
|
// [Protected "true"]
|
|
7432
7432
|
// [Category "Internal"]
|
|
7433
7433
|
// [Type "asset"]
|
|
7434
|
-
|
|
7434
|
+
@sapFontUrl_72_Italic_full_woff2: none;
|
|
7435
7435
|
|
|
7436
7436
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7437
7437
|
// [Protected "true"]
|
|
7438
7438
|
// [Category "Internal"]
|
|
7439
7439
|
// [Type "asset"]
|
|
7440
|
-
|
|
7440
|
+
@sapFontUrl_72_Italic_full_woff: none;
|
|
7441
7441
|
|
|
7442
7442
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7443
7443
|
// [Protected "true"]
|
|
7444
7444
|
// [Category "Internal"]
|
|
7445
7445
|
// [Type "asset"]
|
|
7446
|
-
|
|
7446
|
+
@sapFontUrl_72Mono_Regular_woff2: none;
|
|
7447
7447
|
|
|
7448
7448
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7449
7449
|
// [Protected "true"]
|
|
7450
7450
|
// [Category "Internal"]
|
|
7451
7451
|
// [Type "asset"]
|
|
7452
|
-
|
|
7452
|
+
@sapFontUrl_72Mono_Regular_woff: none;
|
|
7453
7453
|
|
|
7454
7454
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7455
7455
|
// [Protected "true"]
|
|
7456
7456
|
// [Category "Internal"]
|
|
7457
7457
|
// [Type "asset"]
|
|
7458
|
-
|
|
7458
|
+
@sapFontUrl_72Mono_Regular_full_woff2: none;
|
|
7459
7459
|
|
|
7460
7460
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7461
7461
|
// [Protected "true"]
|
|
7462
7462
|
// [Category "Internal"]
|
|
7463
7463
|
// [Type "asset"]
|
|
7464
|
-
|
|
7464
|
+
@sapFontUrl_72Mono_Regular_full_woff: none;
|
|
7465
7465
|
|
|
7466
7466
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7467
7467
|
// [Protected "true"]
|
|
7468
7468
|
// [Category "Internal"]
|
|
7469
7469
|
// [Type "asset"]
|
|
7470
|
-
|
|
7470
|
+
@sapFontUrl_72Mono_Bold_woff2: none;
|
|
7471
7471
|
|
|
7472
7472
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7473
7473
|
// [Protected "true"]
|
|
7474
7474
|
// [Category "Internal"]
|
|
7475
7475
|
// [Type "asset"]
|
|
7476
|
-
|
|
7476
|
+
@sapFontUrl_72Mono_Bold_woff: none;
|
|
7477
7477
|
|
|
7478
7478
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7479
7479
|
// [Protected "true"]
|
|
7480
7480
|
// [Category "Internal"]
|
|
7481
7481
|
// [Type "asset"]
|
|
7482
|
-
|
|
7482
|
+
@sapFontUrl_72Mono_Bold_full_woff2: none;
|
|
7483
7483
|
|
|
7484
7484
|
// [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
|
|
7485
7485
|
// [Protected "true"]
|
|
7486
7486
|
// [Category "Internal"]
|
|
7487
7487
|
// [Type "asset"]
|
|
7488
|
-
|
|
7488
|
+
@sapFontUrl_72Mono_Bold_full_woff: none;
|
|
7489
7489
|
|
|
7490
7490
|
// [Tags "SapInternal", "Base", "URI", "Protected"]
|
|
7491
7491
|
// [Protected "true"]
|
|
7492
7492
|
// [Category "Internal"]
|
|
7493
7493
|
// [Type "asset"]
|
|
7494
|
-
|
|
7494
|
+
@sapSvgLib_SAP-icons: none;
|
|
7495
7495
|
|
|
7496
7496
|
// [Tags "SapInternal", "Base", "URI", "Protected"]
|
|
7497
7497
|
// [Protected "true"]
|
|
7498
7498
|
// [Category "Internal"]
|
|
7499
7499
|
// [Type "asset"]
|
|
7500
|
-
|
|
7500
|
+
@sapSvgLib_SAPGUI-icons: none;
|
|
7501
7501
|
|
|
7502
7502
|
// [Tags "SapInternal", "Base", "URI", "Protected"]
|
|
7503
7503
|
// [Protected "true"]
|
|
7504
7504
|
// [Category "Internal"]
|
|
7505
7505
|
// [Type "asset"]
|
|
7506
|
-
|
|
7506
|
+
@sapSvgLib_SAPWeb-icons: none;
|
|
7507
7507
|
|
|
7508
7508
|
// [Label "Default Background Color"]
|
|
7509
7509
|
// [Description "The default background color of this theme."]
|
|
@@ -7685,8 +7685,8 @@
|
|
|
7685
7685
|
// [Category "Internal"]
|
|
7686
7686
|
// [Type "string"]
|
|
7687
7687
|
@sapToBeDefined: ~"To Be Defined";
|
|
7688
|
-
@sapCss_SAP-icons:
|
|
7689
|
-
@sapCss_72:
|
|
7688
|
+
@sapCss_SAP-icons: false;
|
|
7689
|
+
@sapCss_72: false;
|
|
7690
7690
|
@sapCss_72full: @sapCss_72;
|
|
7691
7691
|
@sapCss_72Bold: @sapCss_72;
|
|
7692
7692
|
@sapCss_72Boldfull: @sapCss_72Bold;
|
|
@@ -7710,260 +7710,259 @@
|
|
|
7710
7710
|
@sapCss_72Monofull: @sapCss_72Mono;
|
|
7711
7711
|
@sapCss_72MonoBold: @sapCss_72Mono;
|
|
7712
7712
|
@sapCss_72MonoBoldfull: @sapCss_72MonoBold;
|
|
7713
|
-
@sapCss_SvgIconBase:
|
|
7713
|
+
@sapCss_SvgIconBase: false;
|
|
7714
7714
|
@sapCss_SvgIconCritical: @sapCss_SvgIconBase;
|
|
7715
7715
|
@sapCss_SvgIconPositive: @sapCss_SvgIconBase;
|
|
7716
7716
|
@sapCss_SvgIconNegative: @sapCss_SvgIconBase;
|
|
7717
7717
|
/*<SAP_FREETEXT_LESS>*/
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
|
|
7721
|
-
|
|
7722
|
-
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7726
|
-
|
|
7727
|
-
|
|
7728
|
-
|
|
7729
|
-
|
|
7730
|
-
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
|
|
7734
|
-
|
|
7735
|
-
|
|
7736
|
-
|
|
7737
|
-
|
|
7738
|
-
|
|
7739
|
-
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
|
|
7743
|
-
|
|
7744
|
-
|
|
7745
|
-
|
|
7746
|
-
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
|
-
|
|
7750
|
-
|
|
7751
|
-
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
|
|
7755
|
-
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
|
|
7759
|
-
|
|
7760
|
-
|
|
7761
|
-
|
|
7762
|
-
|
|
7763
|
-
|
|
7764
|
-
|
|
7765
|
-
|
|
7766
|
-
|
|
7767
|
-
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
|
|
7772
|
-
|
|
7773
|
-
|
|
7774
|
-
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
|
|
7778
|
-
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
|
|
7785
|
-
|
|
7786
|
-
|
|
7787
|
-
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
|
|
7802
|
-
|
|
7803
|
-
|
|
7804
|
-
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
7808
|
-
|
|
7809
|
-
|
|
7810
|
-
|
|
7811
|
-
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7816
|
-
|
|
7817
|
-
|
|
7818
|
-
|
|
7819
|
-
|
|
7820
|
-
|
|
7821
|
-
|
|
7822
|
-
|
|
7823
|
-
|
|
7824
|
-
|
|
7825
|
-
|
|
7826
|
-
|
|
7827
|
-
|
|
7828
|
-
|
|
7829
|
-
|
|
7830
|
-
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
|
|
7834
|
-
|
|
7835
|
-
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
|
|
7853
|
-
|
|
7854
|
-
|
|
7855
|
-
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
|
|
7860
|
-
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
|
|
7864
|
-
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
|
|
7868
|
-
|
|
7869
|
-
|
|
7870
|
-
|
|
7871
|
-
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
|
|
7881
|
-
|
|
7882
|
-
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
7892
|
-
|
|
7893
|
-
|
|
7894
|
-
|
|
7895
|
-
|
|
7896
|
-
|
|
7897
|
-
|
|
7898
|
-
|
|
7899
|
-
|
|
7900
|
-
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
7905
|
-
|
|
7906
|
-
|
|
7907
|
-
|
|
7908
|
-
|
|
7909
|
-
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
|
|
7915
|
-
|
|
7916
|
-
|
|
7917
|
-
|
|
7918
|
-
|
|
7919
|
-
|
|
7920
|
-
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
|
|
7925
|
-
|
|
7926
|
-
|
|
7927
|
-
|
|
7928
|
-
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
|
|
7935
|
-
|
|
7936
|
-
|
|
7937
|
-
|
|
7938
|
-
|
|
7939
|
-
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
|
|
7958
|
-
/*</SAP_FREETEXT_LESS
|
|
7959
|
-
// /**
|
|
7718
|
+
.sapCss_SAP-icons() when (@sapCss_SAP-icons) {@font-face {font-family: 'SAP-icons';
|
|
7719
|
+
src: @sapFontUrl_SAP-icons_woff2 format('woff2'), @sapFontUrl_SAP-icons_woff format('woff'), @sapFontUrl_SAP-icons_ttf format('truetype'), local('SAP-icons');
|
|
7720
|
+
font-weight: normal;
|
|
7721
|
+
font-style: normal;
|
|
7722
|
+
}
|
|
7723
|
+
}
|
|
7724
|
+
.sapCss_SAP-icons();
|
|
7725
|
+
.sapCss_72() when (@sapCss_72) {@font-face {font-family: '72';
|
|
7726
|
+
font-style: normal;
|
|
7727
|
+
font-weight: 400;
|
|
7728
|
+
src: @sapFontUrl_72_Regular_woff2 format('woff2'), @sapFontUrl_72_Regular_woff format('woff'), local('72');
|
|
7729
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7730
|
+
}
|
|
7731
|
+
}
|
|
7732
|
+
.sapCss_72();
|
|
7733
|
+
.sapCss_72full() when (@sapCss_72full) {@font-face {font-family: '72full';
|
|
7734
|
+
font-style: normal;
|
|
7735
|
+
font-weight: 400;
|
|
7736
|
+
src: @sapFontUrl_72_Regular_full_woff2 format('woff2'), @sapFontUrl_72_Regular_full_woff format('woff');
|
|
7737
|
+
}
|
|
7738
|
+
}
|
|
7739
|
+
.sapCss_72full();
|
|
7740
|
+
.sapCss_72Bold() when (@sapCss_72Bold) {@font-face {font-family: '72-Bold';
|
|
7741
|
+
src: @sapFontUrl_72_Bold_woff2 format('woff2'), @sapFontUrl_72_Bold_woff format('woff'), local('72-Bold');
|
|
7742
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7743
|
+
}
|
|
7744
|
+
@font-face {font-family: '72';
|
|
7745
|
+
font-style: normal;
|
|
7746
|
+
font-weight: 700;
|
|
7747
|
+
src: @sapFontUrl_72_Bold_woff2 format('woff2'), @sapFontUrl_72_Bold_woff format('woff'), local('72-Bold');
|
|
7748
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7749
|
+
}
|
|
7750
|
+
}
|
|
7751
|
+
.sapCss_72Bold();
|
|
7752
|
+
.sapCss_72Boldfull() when (@sapCss_72Boldfull) {@font-face {font-family: '72-Boldfull';
|
|
7753
|
+
src: @sapFontUrl_72_Bold_full_woff2 format('woff2'), @sapFontUrl_72_Bold_full_woff format('woff');
|
|
7754
|
+
}
|
|
7755
|
+
@font-face {font-family: '72full';
|
|
7756
|
+
font-style: normal;
|
|
7757
|
+
font-weight: 700;
|
|
7758
|
+
src: @sapFontUrl_72_Bold_full_woff2 format('woff2'), @sapFontUrl_72_Bold_full_woff format('woff');
|
|
7759
|
+
}
|
|
7760
|
+
}
|
|
7761
|
+
.sapCss_72Boldfull();
|
|
7762
|
+
.sapCss_72Semibold() when (@sapCss_72Semibold) {@font-face {font-family: '72-Semibold';
|
|
7763
|
+
src: @sapFontUrl_72_Semibold_woff2 format('woff2'), @sapFontUrl_72_Semibold_woff format('woff'), local('72-Semibold');
|
|
7764
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7765
|
+
}
|
|
7766
|
+
@font-face {font-family: '72';
|
|
7767
|
+
font-style: normal;
|
|
7768
|
+
font-weight: 600;
|
|
7769
|
+
src: @sapFontUrl_72_Semibold_woff2 format('woff2'), @sapFontUrl_72_Semibold_woff format('woff'), local('72-Semibold');
|
|
7770
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7771
|
+
}
|
|
7772
|
+
}
|
|
7773
|
+
.sapCss_72Semibold();
|
|
7774
|
+
.sapCss_72Semiboldfull() when (@sapCss_72Semiboldfull) {@font-face {font-family: '72-Semiboldfull';
|
|
7775
|
+
src: @sapFontUrl_72_Semibold_full_woff2 format('woff2'), @sapFontUrl_72_Semibold_full_woff format('woff');
|
|
7776
|
+
}
|
|
7777
|
+
@font-face {font-family: '72full';
|
|
7778
|
+
font-style: normal;
|
|
7779
|
+
font-weight: 600;
|
|
7780
|
+
src: @sapFontUrl_72_Semibold_full_woff2 format('woff2'), @sapFontUrl_72_Semibold_full_woff format('woff');
|
|
7781
|
+
}
|
|
7782
|
+
}
|
|
7783
|
+
.sapCss_72Semiboldfull();
|
|
7784
|
+
.sapCss_72SemiboldDuplex() when (@sapCss_72SemiboldDuplex) {@font-face {font-family: '72-SemiboldDuplex';
|
|
7785
|
+
src: @sapFontUrl_72_SemiboldDuplex_woff2 format('woff2'), @sapFontUrl_72_SemiboldDuplex_woff format('woff'), local('72-SemiboldDuplex');
|
|
7786
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7787
|
+
}
|
|
7788
|
+
}
|
|
7789
|
+
.sapCss_72SemiboldDuplex();
|
|
7790
|
+
.sapCss_72SemiboldDuplexfull() when (@sapCss_72SemiboldDuplexfull) {@font-face {font-family: '72-SemiboldDuplexfull';
|
|
7791
|
+
src: @sapFontUrl_72_SemiboldDuplex_full_woff2 format('woff2'), @sapFontUrl_72_SemiboldDuplex_full_woff format('woff');
|
|
7792
|
+
}
|
|
7793
|
+
}
|
|
7794
|
+
.sapCss_72SemiboldDuplexfull();
|
|
7795
|
+
.sapCss_72Light() when (@sapCss_72Light) {@font-face {font-family: '72-Light';
|
|
7796
|
+
src: @sapFontUrl_72_Light_woff2 format('woff2'), @sapFontUrl_72_Light_woff format('woff'), local('72-Light');
|
|
7797
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7798
|
+
}
|
|
7799
|
+
@font-face {font-family: '72';
|
|
7800
|
+
font-style: normal;
|
|
7801
|
+
font-weight: 300;
|
|
7802
|
+
src: @sapFontUrl_72_Light_woff2 format('woff2'), @sapFontUrl_72_Light_woff format('woff'), local('72-Light');
|
|
7803
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7804
|
+
}
|
|
7805
|
+
}
|
|
7806
|
+
.sapCss_72Light();
|
|
7807
|
+
.sapCss_72Lightfull() when (@sapCss_72Lightfull) {@font-face {font-family: '72-Lightfull';
|
|
7808
|
+
src: @sapFontUrl_72_Light_full_woff2 format('woff2'), @sapFontUrl_72_Light_full_woff format('woff');
|
|
7809
|
+
}
|
|
7810
|
+
@font-face {font-family: '72full';
|
|
7811
|
+
font-style: normal;
|
|
7812
|
+
font-weight: 300;
|
|
7813
|
+
src: @sapFontUrl_72_Light_full_woff2 format('woff2'), @sapFontUrl_72_Light_full_woff format('woff');
|
|
7814
|
+
}
|
|
7815
|
+
}
|
|
7816
|
+
.sapCss_72Lightfull();
|
|
7817
|
+
.sapCss_72Black() when (@sapCss_72Black) {@font-face {font-family: '72Black';
|
|
7818
|
+
src: @sapFontUrl_72_Black_woff2 format('woff2'), @sapFontUrl_72_Black_woff format('woff'), local('72Black');
|
|
7819
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+160-161, U+178, U+17D-17E, U+192, U+237, U+2C6-2C7, U+2DC, U+3BC, U+1E0E, U+2013-2014, U+2018-2019, U+201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7820
|
+
}
|
|
7821
|
+
@font-face {font-family: '72';
|
|
7822
|
+
font-style: normal;
|
|
7823
|
+
font-weight: 900;
|
|
7824
|
+
src: @sapFontUrl_72_Black_woff2 format('woff2'), @sapFontUrl_72_Black_woff format('woff'), local('72Black');
|
|
7825
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+160-161, U+178, U+17D-17E, U+192, U+237, U+2C6-2C7, U+2DC, U+3BC, U+1E0E, U+2013-2014, U+2018-2019, U+201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7826
|
+
}
|
|
7827
|
+
}
|
|
7828
|
+
.sapCss_72Black();
|
|
7829
|
+
.sapCss_72Blackfull() when (@sapCss_72Blackfull) {@font-face {font-family: '72Blackfull';
|
|
7830
|
+
src: @sapFontUrl_72_Black_full_woff2 format('woff2'), @sapFontUrl_72_Black_full_woff format('woff');
|
|
7831
|
+
}
|
|
7832
|
+
@font-face {font-family: '72full';
|
|
7833
|
+
font-style: normal;
|
|
7834
|
+
font-weight: 900;
|
|
7835
|
+
src: @sapFontUrl_72_Black_full_woff2 format('woff2'), @sapFontUrl_72_Black_full_woff format('woff');
|
|
7836
|
+
}
|
|
7837
|
+
}
|
|
7838
|
+
.sapCss_72Blackfull();
|
|
7839
|
+
.sapCss_72BoldItalic() when (@sapCss_72BoldItalic) {@font-face {font-family: '72-BoldItalic';
|
|
7840
|
+
src: @sapFontUrl_72_BoldItalic_woff2 format('woff2'), @sapFontUrl_72_BoldItalic_woff format('woff'), local('72-BoldItalic');
|
|
7841
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7842
|
+
}
|
|
7843
|
+
@font-face {font-family: '72';
|
|
7844
|
+
font-style: italic;
|
|
7845
|
+
font-weight: 700;
|
|
7846
|
+
src: @sapFontUrl_72_BoldItalic_woff2 format('woff2'), @sapFontUrl_72_BoldItalic_woff format('woff'), local('72-BoldItalic');
|
|
7847
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7848
|
+
}
|
|
7849
|
+
}
|
|
7850
|
+
.sapCss_72BoldItalic();
|
|
7851
|
+
.sapCss_72BoldItalicfull() when (@sapCss_72BoldItalicfull) {@font-face {font-family: '72full';
|
|
7852
|
+
font-style: italic;
|
|
7853
|
+
font-weight: 700;
|
|
7854
|
+
src: @sapFontUrl_72_BoldItalic_full_woff2 format('woff2'), @sapFontUrl_72_BoldItalic_full_woff format('woff');
|
|
7855
|
+
}
|
|
7856
|
+
}
|
|
7857
|
+
.sapCss_72BoldItalicfull();
|
|
7858
|
+
.sapCss_72Condensed() when (@sapCss_72Condensed) {@font-face {font-family: '72-Condensed';
|
|
7859
|
+
src: @sapFontUrl_72_Condensed_woff2 format('woff2'), @sapFontUrl_72_Condensed_woff format('woff'), local('72-Condensed');
|
|
7860
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7861
|
+
}
|
|
7862
|
+
@font-face {font-family: '72';
|
|
7863
|
+
font-style: normal;
|
|
7864
|
+
font-weight: 400;
|
|
7865
|
+
font-stretch: condensed;
|
|
7866
|
+
src: @sapFontUrl_72_Condensed_woff2 format('woff2'), @sapFontUrl_72_Condensed_woff format('woff'), local('72-Condensed');
|
|
7867
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7868
|
+
}
|
|
7869
|
+
}
|
|
7870
|
+
.sapCss_72Condensed();
|
|
7871
|
+
.sapCss_72Condensedfull() when (@sapCss_72Condensedfull) {@font-face {font-family: '72';
|
|
7872
|
+
font-style: normal;
|
|
7873
|
+
font-weight: 400;
|
|
7874
|
+
font-stretch: condensed;
|
|
7875
|
+
src: @sapFontUrl_72_Condensed_full_woff2 format('woff2'), @sapFontUrl_72_Condensed_full_woff format('woff');
|
|
7876
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7877
|
+
}
|
|
7878
|
+
}
|
|
7879
|
+
.sapCss_72Condensedfull();
|
|
7880
|
+
.sapCss_72CondensedBold() when (@sapCss_72CondensedBold) {@font-face {font-family: '72-CondensedBold';
|
|
7881
|
+
src: @sapFontUrl_72_CondensedBold_woff2 format('woff2'), @sapFontUrl_72_CondensedBold_woff format('woff'), local('72-CondensedBold');
|
|
7882
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7883
|
+
}
|
|
7884
|
+
@font-face {font-family: '72';
|
|
7885
|
+
font-style: normal;
|
|
7886
|
+
font-weight: 700;
|
|
7887
|
+
font-stretch: condensed;
|
|
7888
|
+
src: @sapFontUrl_72_CondensedBold_woff2 format('woff2'), @sapFontUrl_72_CondensedBold_woff format('woff'), local('72-CondensedBold');
|
|
7889
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7890
|
+
}
|
|
7891
|
+
}
|
|
7892
|
+
.sapCss_72CondensedBold();
|
|
7893
|
+
.sapCss_72CondensedBoldfull() when (@sapCss_72CondensedBoldfull) {@font-face {font-family: '72full';
|
|
7894
|
+
font-style: normal;
|
|
7895
|
+
font-weight: 700;
|
|
7896
|
+
font-stretch: condensed;
|
|
7897
|
+
src: @sapFontUrl_72_CondensedBold_full_woff2 format('woff2'), @sapFontUrl_72_CondensedBold_full_woff format('woff');
|
|
7898
|
+
}
|
|
7899
|
+
}
|
|
7900
|
+
.sapCss_72CondensedBoldfull();
|
|
7901
|
+
.sapCss_72Italic() when (@sapCss_72Italic) {@font-face {font-family: '72-Italic';
|
|
7902
|
+
src: @sapFontUrl_72_Italic_woff2 format('woff2'), @sapFontUrl_72_Italic_woff format('woff'), local('72-Italic');
|
|
7903
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7904
|
+
}
|
|
7905
|
+
@font-face {font-family: '72';
|
|
7906
|
+
font-style: italic;
|
|
7907
|
+
font-weight: 400;
|
|
7908
|
+
src: @sapFontUrl_72_Italic_woff2 format('woff2'), @sapFontUrl_72_Italic_woff format('woff'), local('72-Italic');
|
|
7909
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7910
|
+
}
|
|
7911
|
+
}
|
|
7912
|
+
.sapCss_72Italic();
|
|
7913
|
+
.sapCss_72Italicfull() when (@sapCss_72Italicfull) {@font-face {font-family: '72full';
|
|
7914
|
+
font-style: italic;
|
|
7915
|
+
font-weight: 400;
|
|
7916
|
+
src: @sapFontUrl_72_Italic_full_woff2 format('woff2'), @sapFontUrl_72_Italic_full_woff format('woff');
|
|
7917
|
+
}
|
|
7918
|
+
}
|
|
7919
|
+
.sapCss_72Italicfull();
|
|
7920
|
+
.sapCss_72Mono() when (@sapCss_72Mono) {@font-face {font-family: '72Mono';
|
|
7921
|
+
src: @sapFontUrl_72Mono_Regular_woff2 format('woff2'), @sapFontUrl_72Mono_Regular_woff format('woff'), local('72Mono');
|
|
7922
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7923
|
+
}
|
|
7924
|
+
}
|
|
7925
|
+
.sapCss_72Mono();
|
|
7926
|
+
.sapCss_72Monofull() when (@sapCss_72Monofull) {@font-face {font-family: '72Monofull';
|
|
7927
|
+
src: @sapFontUrl_72Mono_Regular_full_woff2 format('woff2'), @sapFontUrl_72Mono_Regular_full_woff format('woff');
|
|
7928
|
+
}
|
|
7929
|
+
}
|
|
7930
|
+
.sapCss_72Monofull();
|
|
7931
|
+
.sapCss_72MonoBold() when (@sapCss_72MonoBold) {@font-face {font-family: '72Mono-Bold';
|
|
7932
|
+
src: @sapFontUrl_72Mono_Bold_woff2 format('woff2'), @sapFontUrl_72Mono_Bold_woff format('woff'), local('72Mono-Bold');
|
|
7933
|
+
unicode-range: U+00, U+0D, U+20-7E, U+A0-FF, U+131, U+152-153, U+161, U+178, U+17D-17E, U+192, U+237, U+2C6, U+2DC, U+3BC, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
|
|
7934
|
+
}
|
|
7935
|
+
}
|
|
7936
|
+
.sapCss_72MonoBold();
|
|
7937
|
+
.sapCss_72MonoBoldfull() when (@sapCss_72MonoBoldfull) {@font-face {font-family: '72Mono-Boldfull';
|
|
7938
|
+
src: @sapFontUrl_72Mono_Bold_full_woff2 format('woff2'), @sapFontUrl_72Mono_Bold_full_woff format('woff');
|
|
7939
|
+
}
|
|
7940
|
+
}
|
|
7941
|
+
.sapCss_72MonoBoldfull();
|
|
7942
|
+
.sapCss_SvgIconNegative() when (@sapCss_SvgIconNegative) {.sapSvgIconNegative {fill: @sapNegativeElementColor !important;
|
|
7943
|
+
}
|
|
7944
|
+
}
|
|
7945
|
+
.sapCss_SvgIconNegative();
|
|
7946
|
+
.sapCss_SvgIconCritical() when (@sapCss_SvgIconCritical) {.sapSvgIconCritical {fill: @sapCriticalElementColor !important;
|
|
7947
|
+
}
|
|
7948
|
+
}
|
|
7949
|
+
.sapCss_SvgIconCritical();
|
|
7950
|
+
.sapCss_SvgIconPositive() when (@sapCss_SvgIconPositive) {.sapSvgIconPositive {fill: @sapPositiveElementColor !important;
|
|
7951
|
+
}
|
|
7952
|
+
}
|
|
7953
|
+
.sapCss_SvgIconPositive();
|
|
7954
|
+
.sapCss_SvgIconBase() when (@sapCss_SvgIconBase) {.sapSvgIconBase {fill: @sapBaseColor !important;
|
|
7955
|
+
}
|
|
7956
|
+
}
|
|
7957
|
+
.sapCss_SvgIconBase();
|
|
7958
|
+
/*</SAP_FREETEXT_LESS>*/// /**
|
|
7960
7959
|
// * Copyright (c) 2012-2023 SAP SE or an SAP affiliate company and Theming Base Content contributors. Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
7961
7960
|
// * Theming Engine 1.23061.0
|
|
7962
|
-
// * data:{"sModified":"2023-
|
|
7961
|
+
// * data:{"sModified":"2023-12-13T07:44:03Z"}
|
|
7963
7962
|
// */
|
|
7964
7963
|
|
|
7965
7964
|
|
|
7966
|
-
/******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.
|
|
7965
|
+
/******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.10.0) *******************/
|
|
7967
7966
|
|
|
7968
7967
|
|
|
7969
7968
|
// [Tags "SapInternal", "Base", "Dimension", "Protected"]
|
|
@@ -9639,7 +9638,7 @@
|
|
|
9639
9638
|
|
|
9640
9639
|
// [Tags "!Protected"]
|
|
9641
9640
|
// [Protected "!true"]
|
|
9642
|
-
@sapButton_Handle_Negative_TextColor: contrast(@sapButton_Handle_Negative_Background, @
|
|
9641
|
+
@sapButton_Handle_Negative_TextColor: contrast(@sapButton_Handle_Negative_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
9643
9642
|
|
|
9644
9643
|
// [Tags "!Protected"]
|
|
9645
9644
|
// [Protected "!true"]
|
|
@@ -9679,7 +9678,7 @@
|
|
|
9679
9678
|
|
|
9680
9679
|
// [Tags "!Protected"]
|
|
9681
9680
|
// [Protected "!true"]
|
|
9682
|
-
@sapButton_Handle_Positive_TextColor: contrast(@sapButton_Handle_Positive_Background, @
|
|
9681
|
+
@sapButton_Handle_Positive_TextColor: contrast(@sapButton_Handle_Positive_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
9683
9682
|
|
|
9684
9683
|
// [Tags "!Protected"]
|
|
9685
9684
|
// [Protected "!true"]
|
|
@@ -11010,66 +11009,66 @@
|
|
|
11010
11009
|
// [Tags "!Protected"]
|
|
11011
11010
|
// [Protected "!true"]
|
|
11012
11011
|
@sapChart_Sequence_Neutral: @sapChart_Neutral;
|
|
11013
|
-
|
|
11014
|
-
|
|
11015
|
-
|
|
11016
|
-
|
|
11017
|
-
|
|
11018
|
-
|
|
11019
|
-
|
|
11020
|
-
|
|
11021
|
-
|
|
11022
|
-
|
|
11023
|
-
|
|
11024
|
-
|
|
11025
|
-
|
|
11026
|
-
|
|
11027
|
-
|
|
11028
|
-
|
|
11029
|
-
|
|
11030
|
-
|
|
11031
|
-
|
|
11032
|
-
|
|
11033
|
-
|
|
11034
|
-
|
|
11035
|
-
|
|
11036
|
-
|
|
11037
|
-
|
|
11038
|
-
|
|
11039
|
-
|
|
11040
|
-
|
|
11041
|
-
|
|
11042
|
-
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
|
|
11047
|
-
|
|
11048
|
-
|
|
11049
|
-
|
|
11050
|
-
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11057
|
-
|
|
11058
|
-
|
|
11059
|
-
|
|
11060
|
-
|
|
11061
|
-
|
|
11062
|
-
|
|
11063
|
-
|
|
11064
|
-
|
|
11065
|
-
|
|
11066
|
-
|
|
11067
|
-
|
|
11068
|
-
|
|
11069
|
-
|
|
11070
|
-
|
|
11071
|
-
|
|
11072
|
-
|
|
11012
|
+
@sapFontUrl_SAP-icons_ttf: url(./../baseTheme/fonts/SAP-icons.ttf);
|
|
11013
|
+
@sapFontUrl_SAP-icons_woff: url(./../baseTheme/fonts/SAP-icons.woff);
|
|
11014
|
+
@sapFontUrl_SAP-icons_woff2: url(./../baseTheme/fonts/SAP-icons.woff2);
|
|
11015
|
+
@sapFontUrl_SAP-icons-TNT_ttf: url(./../baseTheme/fonts/SAP-icons-TNT.ttf);
|
|
11016
|
+
@sapFontUrl_SAP-icons-TNT_woff: url(./../baseTheme/fonts/SAP-icons-TNT.woff);
|
|
11017
|
+
@sapFontUrl_SAP-icons-TNT_woff2: url(./../baseTheme/fonts/SAP-icons-TNT.woff2);
|
|
11018
|
+
@sapFontUrl_SAP-icons-Business-Suite_ttf: url(./../baseTheme/fonts/BusinessSuiteInAppSymbols.ttf);
|
|
11019
|
+
@sapFontUrl_SAP-icons-Business-Suite_woff: url(./../baseTheme/fonts/BusinessSuiteInAppSymbols.woff);
|
|
11020
|
+
@sapFontUrl_SAP-icons-Business-Suite_woff2: url(./../baseTheme/fonts/BusinessSuiteInAppSymbols.woff2);
|
|
11021
|
+
@sapFontUrl_72_Regular_woff2: url(./../baseTheme/fonts/72-Regular.woff2);
|
|
11022
|
+
@sapFontUrl_72_Regular_woff: url(./../baseTheme/fonts/72-Regular.woff);
|
|
11023
|
+
@sapFontUrl_72_Regular_full_woff2: url(./../baseTheme/fonts/72-Regular-full.woff2);
|
|
11024
|
+
@sapFontUrl_72_Regular_full_woff: url(./../baseTheme/fonts/72-Regular-full.woff);
|
|
11025
|
+
@sapFontUrl_72_Bold_woff2: url(./../baseTheme/fonts/72-Bold.woff2);
|
|
11026
|
+
@sapFontUrl_72_Bold_woff: url(./../baseTheme/fonts/72-Bold.woff);
|
|
11027
|
+
@sapFontUrl_72_Bold_full_woff2: url(./../baseTheme/fonts/72-Bold-full.woff2);
|
|
11028
|
+
@sapFontUrl_72_Bold_full_woff: url(./../baseTheme/fonts/72-Bold-full.woff);
|
|
11029
|
+
@sapFontUrl_72_Semibold_woff2: url(./../baseTheme/fonts/72-Semibold.woff2);
|
|
11030
|
+
@sapFontUrl_72_Semibold_woff: url(./../baseTheme/fonts/72-Semibold.woff);
|
|
11031
|
+
@sapFontUrl_72_Semibold_full_woff2: url(./../baseTheme/fonts/72-Semibold-full.woff2);
|
|
11032
|
+
@sapFontUrl_72_Semibold_full_woff: url(./../baseTheme/fonts/72-Semibold-full.woff);
|
|
11033
|
+
@sapFontUrl_72_SemiboldDuplex_woff2: url(./../baseTheme/fonts/72-SemiboldDuplex.woff2);
|
|
11034
|
+
@sapFontUrl_72_SemiboldDuplex_woff: url(./../baseTheme/fonts/72-SemiboldDuplex.woff);
|
|
11035
|
+
@sapFontUrl_72_SemiboldDuplex_full_woff2: url(./../baseTheme/fonts/72-SemiboldDuplex-full.woff2);
|
|
11036
|
+
@sapFontUrl_72_SemiboldDuplex_full_woff: url(./../baseTheme/fonts/72-SemiboldDuplex-full.woff);
|
|
11037
|
+
@sapFontUrl_72_Light_woff2: url(./../baseTheme/fonts/72-Light.woff2);
|
|
11038
|
+
@sapFontUrl_72_Light_woff: url(./../baseTheme/fonts/72-Light.woff);
|
|
11039
|
+
@sapFontUrl_72_Light_full_woff2: url(./../baseTheme/fonts/72-Light-full.woff2);
|
|
11040
|
+
@sapFontUrl_72_Light_full_woff: url(./../baseTheme/fonts/72-Light-full.woff);
|
|
11041
|
+
@sapFontUrl_72_Black_woff2: url(./../baseTheme/fonts/72-Black.woff2);
|
|
11042
|
+
@sapFontUrl_72_Black_woff: url(./../baseTheme/fonts/72-Black.woff);
|
|
11043
|
+
@sapFontUrl_72_Black_full_woff2: url(./../baseTheme/fonts/72-Black-full.woff2);
|
|
11044
|
+
@sapFontUrl_72_Black_full_woff: url(./../baseTheme/fonts/72-Black-full.woff);
|
|
11045
|
+
@sapFontUrl_72_BoldItalic_woff2: url(./../baseTheme/fonts/72-BoldItalic.woff2);
|
|
11046
|
+
@sapFontUrl_72_BoldItalic_woff: url(./../baseTheme/fonts/72-BoldItalic.woff);
|
|
11047
|
+
@sapFontUrl_72_BoldItalic_full_woff2: url(./../baseTheme/fonts/72-BoldItalic-full.woff2);
|
|
11048
|
+
@sapFontUrl_72_BoldItalic_full_woff: url(./../baseTheme/fonts/72-BoldItalic-full.woff);
|
|
11049
|
+
@sapFontUrl_72_Condensed_woff2: url(./../baseTheme/fonts/72-Condensed.woff2);
|
|
11050
|
+
@sapFontUrl_72_Condensed_woff: url(./../baseTheme/fonts/72-Condensed.woff);
|
|
11051
|
+
@sapFontUrl_72_Condensed_full_woff2: url(./../baseTheme/fonts/72-Condensed-full.woff2);
|
|
11052
|
+
@sapFontUrl_72_Condensed_full_woff: url(./../baseTheme/fonts/72-Condensed-full.woff);
|
|
11053
|
+
@sapFontUrl_72_CondensedBold_woff2: url(./../baseTheme/fonts/72-CondensedBold.woff2);
|
|
11054
|
+
@sapFontUrl_72_CondensedBold_woff: url(./../baseTheme/fonts/72-CondensedBold.woff);
|
|
11055
|
+
@sapFontUrl_72_CondensedBold_full_woff2: url(./../baseTheme/fonts/72-CondensedBold-full.woff2);
|
|
11056
|
+
@sapFontUrl_72_CondensedBold_full_woff: url(./../baseTheme/fonts/72-CondensedBold-full.woff);
|
|
11057
|
+
@sapFontUrl_72_Italic_woff2: url(./../baseTheme/fonts/72-Italic.woff2);
|
|
11058
|
+
@sapFontUrl_72_Italic_woff: url(./../baseTheme/fonts/72-Italic.woff);
|
|
11059
|
+
@sapFontUrl_72_Italic_full_woff2: url(./../baseTheme/fonts/72-Italic-full.woff2);
|
|
11060
|
+
@sapFontUrl_72_Italic_full_woff: url(./../baseTheme/fonts/72-Italic-full.woff);
|
|
11061
|
+
@sapFontUrl_72Mono_Regular_woff2: url(./../baseTheme/fonts/72Mono-Regular.woff2);
|
|
11062
|
+
@sapFontUrl_72Mono_Regular_woff: url(./../baseTheme/fonts/72Mono-Regular.woff);
|
|
11063
|
+
@sapFontUrl_72Mono_Regular_full_woff2: url(./../baseTheme/fonts/72Mono-Regular-full.woff2);
|
|
11064
|
+
@sapFontUrl_72Mono_Regular_full_woff: url(./../baseTheme/fonts/72Mono-Regular-full.woff);
|
|
11065
|
+
@sapFontUrl_72Mono_Bold_woff2: url(./../baseTheme/fonts/72Mono-Bold.woff2);
|
|
11066
|
+
@sapFontUrl_72Mono_Bold_woff: url(./../baseTheme/fonts/72Mono-Bold.woff);
|
|
11067
|
+
@sapFontUrl_72Mono_Bold_full_woff2: url(./../baseTheme/fonts/72Mono-Bold-full.woff2);
|
|
11068
|
+
@sapFontUrl_72Mono_Bold_full_woff: url(./../baseTheme/fonts/72Mono-Bold-full.woff);
|
|
11069
|
+
@sapSvgLib_SAP-icons: none;
|
|
11070
|
+
@sapSvgLib_SAPGUI-icons: url(./../sap_belize/svg/libs/SAPGUI-icons.svg);
|
|
11071
|
+
@sapSvgLib_SAPWeb-icons: url(./../sap_belize/svg/libs/SAPWeb-icons.svg);
|
|
11073
11072
|
@sapBackgroundColorDefault: @sapBackgroundColor;
|
|
11074
11073
|
@sapList_HighlightColor: @sapHighlightColor;
|
|
11075
11074
|
@sapContent_ElementHeight: 1.37em;
|