@openui5/sap.ui.core 1.119.0 → 1.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +6 -6
- package/package.json +1 -1
- package/src/jquery.sap.global.js +40 -111
- package/src/jquery.sap.properties.js +7 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +5 -3
- package/src/jquery.sap.storage.js +6 -3
- package/src/sap/base/Event.js +32 -78
- package/src/sap/base/Eventing.js +114 -271
- package/src/sap/base/Log.js +21 -1
- package/src/sap/base/config.js +14 -9
- package/src/sap/base/i18n/Formatting.js +378 -250
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +124 -85
- package/src/sap/base/i18n/ResourceBundle.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +2 -2
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
- package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
- package/src/sap/base/util/LoaderExtensions.js +8 -2
- package/src/sap/base/util/mixedFetch.js +1 -0
- package/src/sap/base/util/resolveReference.js +31 -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/base/util/syncFetch.js +1 -0
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +6 -7
- package/src/sap/ui/base/BindingInfo.js +3 -3
- package/src/sap/ui/base/BindingParser.js +5 -2
- package/src/sap/ui/base/DataType.js +57 -1
- package/src/sap/ui/base/DesignTime.js +69 -0
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +25 -4
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +102 -29
- package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
- package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
- package/src/sap/ui/base/Metadata.js +3 -3
- package/src/sap/ui/base/Object.js +19 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/AnimationMode.js +2 -2
- package/src/sap/ui/core/AppCacheBuster.js +30 -18
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/CalendarType.js +6 -0
- package/src/sap/ui/core/Component.js +150 -80
- package/src/sap/ui/core/ComponentContainer.js +4 -3
- package/src/sap/ui/core/ComponentMetadata.js +3 -4
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +390 -706
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/ControlBehavior.js +37 -28
- package/src/sap/ui/core/Core.js +327 -151
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +3 -1
- package/src/sap/ui/core/Element.js +18 -8
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +3 -2
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +13 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +2 -3
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +17 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +8 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +195 -29
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -32
- package/src/sap/ui/core/Manifest.js +4 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Placeholder.js +18 -0
- package/src/sap/ui/core/Popup.js +5 -0
- package/src/sap/ui/core/RenderManager.js +21 -17
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/Rendering.js +51 -47
- package/src/sap/ui/core/ResizeHandler.js +2 -2
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +5 -3
- package/src/sap/ui/core/Supportability.js +146 -0
- package/src/sap/ui/core/Theming.js +130 -88
- 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 +1 -4
- package/src/sap/ui/core/UIComponent.js +38 -12
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
- package/src/sap/ui/core/_IconRegistry.js +13 -6
- package/src/sap/ui/core/cldr/ar.json +143 -137
- package/src/sap/ui/core/cldr/ar_EG.json +143 -137
- package/src/sap/ui/core/cldr/ar_SA.json +143 -137
- package/src/sap/ui/core/cldr/bg.json +423 -423
- package/src/sap/ui/core/cldr/ca.json +541 -494
- package/src/sap/ui/core/cldr/cs.json +475 -364
- package/src/sap/ui/core/cldr/cy.json +656 -477
- package/src/sap/ui/core/cldr/da.json +334 -275
- package/src/sap/ui/core/cldr/de.json +388 -291
- package/src/sap/ui/core/cldr/de_AT.json +388 -291
- package/src/sap/ui/core/cldr/de_CH.json +394 -297
- package/src/sap/ui/core/cldr/el.json +169 -166
- package/src/sap/ui/core/cldr/el_CY.json +169 -166
- package/src/sap/ui/core/cldr/en.json +558 -521
- package/src/sap/ui/core/cldr/en_AU.json +558 -520
- package/src/sap/ui/core/cldr/en_GB.json +476 -439
- package/src/sap/ui/core/cldr/en_HK.json +520 -482
- package/src/sap/ui/core/cldr/en_IE.json +486 -448
- package/src/sap/ui/core/cldr/en_IN.json +466 -428
- package/src/sap/ui/core/cldr/en_NZ.json +506 -468
- package/src/sap/ui/core/cldr/en_PG.json +506 -468
- package/src/sap/ui/core/cldr/en_SG.json +506 -468
- package/src/sap/ui/core/cldr/en_ZA.json +486 -448
- package/src/sap/ui/core/cldr/es.json +473 -468
- package/src/sap/ui/core/cldr/es_AR.json +445 -440
- package/src/sap/ui/core/cldr/es_BO.json +479 -474
- package/src/sap/ui/core/cldr/es_CL.json +469 -464
- package/src/sap/ui/core/cldr/es_CO.json +387 -381
- package/src/sap/ui/core/cldr/es_MX.json +502 -497
- package/src/sap/ui/core/cldr/es_PE.json +455 -450
- package/src/sap/ui/core/cldr/es_UY.json +479 -474
- package/src/sap/ui/core/cldr/es_VE.json +499 -494
- package/src/sap/ui/core/cldr/et.json +378 -320
- package/src/sap/ui/core/cldr/fa.json +104 -104
- package/src/sap/ui/core/cldr/fi.json +401 -315
- package/src/sap/ui/core/cldr/fr.json +391 -385
- package/src/sap/ui/core/cldr/fr_BE.json +391 -385
- package/src/sap/ui/core/cldr/fr_CA.json +499 -493
- package/src/sap/ui/core/cldr/fr_CH.json +334 -328
- package/src/sap/ui/core/cldr/fr_LU.json +391 -385
- package/src/sap/ui/core/cldr/he.json +291 -159
- package/src/sap/ui/core/cldr/hi.json +157 -128
- package/src/sap/ui/core/cldr/hr.json +514 -461
- package/src/sap/ui/core/cldr/hu.json +287 -257
- package/src/sap/ui/core/cldr/id.json +463 -416
- package/src/sap/ui/core/cldr/it.json +468 -413
- package/src/sap/ui/core/cldr/it_CH.json +468 -413
- package/src/sap/ui/core/cldr/ja.json +98 -61
- package/src/sap/ui/core/cldr/kk.json +631 -571
- package/src/sap/ui/core/cldr/ko.json +79 -71
- package/src/sap/ui/core/cldr/lt.json +361 -270
- package/src/sap/ui/core/cldr/lv.json +234 -242
- package/src/sap/ui/core/cldr/ms.json +463 -408
- package/src/sap/ui/core/cldr/nb.json +176 -143
- package/src/sap/ui/core/cldr/nl.json +463 -393
- package/src/sap/ui/core/cldr/nl_BE.json +463 -393
- package/src/sap/ui/core/cldr/pl.json +633 -344
- package/src/sap/ui/core/cldr/pt.json +447 -336
- package/src/sap/ui/core/cldr/pt_PT.json +488 -449
- package/src/sap/ui/core/cldr/ro.json +477 -383
- package/src/sap/ui/core/cldr/ru.json +367 -332
- package/src/sap/ui/core/cldr/ru_UA.json +361 -326
- package/src/sap/ui/core/cldr/sk.json +502 -537
- package/src/sap/ui/core/cldr/sl.json +168 -161
- package/src/sap/ui/core/cldr/sr.json +276 -225
- package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
- package/src/sap/ui/core/cldr/sv.json +420 -346
- package/src/sap/ui/core/cldr/th.json +117 -94
- package/src/sap/ui/core/cldr/tr.json +413 -359
- package/src/sap/ui/core/cldr/uk.json +395 -368
- package/src/sap/ui/core/cldr/vi.json +392 -379
- package/src/sap/ui/core/cldr/zh_CN.json +91 -33
- package/src/sap/ui/core/cldr/zh_HK.json +90 -32
- package/src/sap/ui/core/cldr/zh_SG.json +90 -32
- package/src/sap/ui/core/cldr/zh_TW.json +75 -51
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/_Calendars.js +5 -2
- 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 +3 -2
- 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 +33 -21
- package/src/sap/ui/core/format/NumberFormat.js +3 -2
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +128 -8
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +2 -2
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/message/MessageType.js +2 -1
- package/src/sap/ui/core/messagebundle.properties +24 -0
- package/src/sap/ui/core/messagebundle_ar.properties +15 -3
- package/src/sap/ui/core/messagebundle_bg.properties +14 -2
- package/src/sap/ui/core/messagebundle_ca.properties +13 -1
- package/src/sap/ui/core/messagebundle_cs.properties +15 -3
- package/src/sap/ui/core/messagebundle_cy.properties +16 -4
- package/src/sap/ui/core/messagebundle_da.properties +15 -3
- package/src/sap/ui/core/messagebundle_de.properties +15 -3
- package/src/sap/ui/core/messagebundle_el.properties +16 -4
- package/src/sap/ui/core/messagebundle_en.properties +12 -0
- package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
- package/src/sap/ui/core/messagebundle_es.properties +15 -3
- package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
- package/src/sap/ui/core/messagebundle_et.properties +15 -3
- package/src/sap/ui/core/messagebundle_fi.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
- package/src/sap/ui/core/messagebundle_hi.properties +16 -4
- package/src/sap/ui/core/messagebundle_hr.properties +14 -2
- package/src/sap/ui/core/messagebundle_hu.properties +16 -4
- package/src/sap/ui/core/messagebundle_id.properties +15 -3
- package/src/sap/ui/core/messagebundle_it.properties +17 -5
- package/src/sap/ui/core/messagebundle_iw.properties +15 -3
- package/src/sap/ui/core/messagebundle_ja.properties +25 -13
- package/src/sap/ui/core/messagebundle_kk.properties +15 -3
- package/src/sap/ui/core/messagebundle_ko.properties +14 -2
- package/src/sap/ui/core/messagebundle_lt.properties +15 -3
- package/src/sap/ui/core/messagebundle_lv.properties +15 -3
- package/src/sap/ui/core/messagebundle_mk.properties +352 -0
- package/src/sap/ui/core/messagebundle_ms.properties +15 -3
- package/src/sap/ui/core/messagebundle_nl.properties +15 -3
- package/src/sap/ui/core/messagebundle_no.properties +14 -2
- package/src/sap/ui/core/messagebundle_pl.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
- package/src/sap/ui/core/messagebundle_ro.properties +15 -3
- package/src/sap/ui/core/messagebundle_ru.properties +15 -3
- package/src/sap/ui/core/messagebundle_sh.properties +43 -31
- package/src/sap/ui/core/messagebundle_sk.properties +16 -4
- package/src/sap/ui/core/messagebundle_sl.properties +15 -3
- package/src/sap/ui/core/messagebundle_sv.properties +22 -10
- package/src/sap/ui/core/messagebundle_th.properties +15 -3
- package/src/sap/ui/core/messagebundle_tr.properties +15 -3
- package/src/sap/ui/core/messagebundle_uk.properties +18 -6
- package/src/sap/ui/core/messagebundle_vi.properties +18 -6
- package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
- package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
- package/src/sap/ui/core/mvc/Controller.js +22 -16
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +4 -1
- package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +24 -14
- package/src/sap/ui/core/mvc/ViewType.js +2 -0
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
- package/src/sap/ui/core/plugin/LessSupport.js +3 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Router.js +2 -4
- package/src/sap/ui/core/routing/Target.js +1 -3
- package/src/sap/ui/core/routing/Targets.js +2 -3
- package/src/sap/ui/core/routing/Views.js +2 -3
- package/src/sap/ui/core/routing/async/Target.js +1 -1
- package/src/sap/ui/core/rules/Config.support.js +11 -17
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Hotkeys.js +5 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
- package/src/sap/ui/core/support/Support.js +3 -5
- package/src/sap/ui/core/support/ToolsAPI.js +15 -11
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +7 -5
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
- package/src/sap/ui/core/syncStyleClass.js +2 -2
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +9 -9
- package/src/sap/ui/core/theming/Parameters.js +18 -19
- package/src/sap/ui/core/theming/ThemeManager.js +23 -4
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +3 -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 +4 -4
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +29 -7
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +3 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +3 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +12 -2
- package/src/sap/ui/model/ListBinding.js +5 -0
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +5 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/TreeBinding.js +3 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
- package/src/sap/ui/model/json/JSONListBinding.js +3 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
- package/src/sap/ui/model/message/MessageListBinding.js +3 -0
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +9 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
- package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
- package/src/sap/ui/model/resource/ResourceModel.js +5 -6
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
- package/src/sap/ui/performance/BeaconRequest.js +2 -2
- package/src/sap/ui/qunit/QUnitUtils.js +64 -45
- package/src/sap/ui/qunit/qunit-coverage.js +6 -0
- package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/security/Security.js +128 -0
- package/src/sap/ui/test/BlanketReporter.js +2 -3
- package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
- package/src/sap/ui/test/BranchTracking.js +2 -3
- package/src/sap/ui/test/ModuleTracking.js +48 -20
- package/src/sap/ui/test/OpaExtension.js +3 -3
- package/src/sap/ui/test/OpaPlugin.js +16 -6
- package/src/sap/ui/test/TestUtils.js +7 -4
- package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
- package/src/sap/ui/test/_ControlFinder.js +3 -2
- package/src/sap/ui/test/_LogCollector.js +1 -0
- package/src/sap/ui/test/_UsageReport.js +115 -114
- package/src/sap/ui/test/actions/EnterText.js +20 -2
- package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
- package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
- package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
- package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +1 -1
- package/src/sap/ui/test/matchers/LabelFor.js +2 -12
- package/src/sap/ui/test/matchers/Matcher.js +1 -1
- package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
- package/src/sap/ui/test/selectors/_Selector.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +84 -11
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
- package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
- package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
- package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
- package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
- package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
- package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
- package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
- package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
- package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
- package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
- package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
- package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
- package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
- package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
- package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
- package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
- package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
- package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
- package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
- package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
- package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
- package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
- package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
- package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
- package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
- package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
- package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
- package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
- package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
- package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
- package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
- package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
- package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
- package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
- package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
- package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
- package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
- package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
- package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
- package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
- package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
- package/test/sap/ui/core/terminologies/App.controller.js +2 -3
- package/test/sap/ui/core/terminologies/main.js +2 -3
- package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
- package/src/sap/ui/core/ConfigTest.js +0 -17
- package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
- package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
- package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
- package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
- package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
SAPUI5_FRIDAY=
|
|
3
|
-
SAPUI5_GM_ZSTEP=
|
|
2
|
+
SAPUI5_FRIDAY=Th\u01B0\u0301 Sa\u0301u
|
|
3
|
+
SAPUI5_GM_ZSTEP=B\u01B0\u01A1\u0301c thu pho\u0301ng {0}
|
|
4
4
|
|
|
5
5
|
VALUE_STATE_ERROR=Mu\u0323c nh\u00E2\u0323p kh\u00F4ng h\u01A1\u0323p l\u00EA\u0323
|
|
6
6
|
VALUE_STATE_WARNING=Ca\u0309nh ba\u0301o \u0111\u01B0\u01A1\u0323c pha\u0301t ha\u0300nh
|
|
7
|
-
VALUE_STATE_SUCCESS=Mu\u0323c nh\u00E2\u0323p \u0111\u01B0\u01A1\u0323c
|
|
7
|
+
VALUE_STATE_SUCCESS=Mu\u0323c nh\u00E2\u0323p \u0111\u01B0\u01A1\u0323c la\u0300m cho co\u0301 hi\u00EA\u0323u l\u01B0\u0323c tha\u0300nh c\u00F4ng
|
|
8
8
|
VALUE_STATE_INFORMATION=Mu\u0323c nh\u00E2\u0323p th\u00F4ng tin
|
|
9
9
|
|
|
10
10
|
INDICATION_STATE_INDICATION01=Ma\u0300u chi\u0309 ba\u0301o 1
|
|
@@ -15,6 +15,18 @@ INDICATION_STATE_INDICATION05=Ma\u0300u chi\u0309 ba\u0301o 5
|
|
|
15
15
|
INDICATION_STATE_INDICATION06=Ma\u0300u chi\u0309 ba\u0301o 6
|
|
16
16
|
INDICATION_STATE_INDICATION07=Ma\u0300u chi\u0309 ba\u0301o 7
|
|
17
17
|
INDICATION_STATE_INDICATION08=Ma\u0300u chi\u0309 ba\u0301o 8
|
|
18
|
+
INDICATION_STATE_INDICATION09=Ma\u0300u chi\u0309 ba\u0301o 9
|
|
19
|
+
INDICATION_STATE_INDICATION10=Ma\u0300u chi\u0309 ba\u0301o 10
|
|
20
|
+
INDICATION_STATE_INDICATION11=Ma\u0300u chi\u0309 ba\u0301o 11
|
|
21
|
+
INDICATION_STATE_INDICATION12=Ma\u0300u chi\u0309 ba\u0301o 12
|
|
22
|
+
INDICATION_STATE_INDICATION13=Ma\u0300u chi\u0309 ba\u0301o 13
|
|
23
|
+
INDICATION_STATE_INDICATION14=Ma\u0300u chi\u0309 ba\u0301o 14
|
|
24
|
+
INDICATION_STATE_INDICATION15=Ma\u0300u chi\u0309 ba\u0301o 15
|
|
25
|
+
INDICATION_STATE_INDICATION16=Ma\u0300u chi\u0309 ba\u0301o 16
|
|
26
|
+
INDICATION_STATE_INDICATION17=Ma\u0300u chi\u0309 ba\u0301o 17
|
|
27
|
+
INDICATION_STATE_INDICATION18=Ma\u0300u chi\u0309 ba\u0301o 18
|
|
28
|
+
INDICATION_STATE_INDICATION19=Ma\u0300u chi\u0309 ba\u0301o 19
|
|
29
|
+
INDICATION_STATE_INDICATION20=Ma\u0300u chi\u0309 ba\u0301o 20
|
|
18
30
|
|
|
19
31
|
BUSY_TEXT=Vui lo\u0300ng ch\u01A1\u0300
|
|
20
32
|
BUSY_VALUE_TEXT=B\u00E2\u0323n
|
|
@@ -59,7 +71,7 @@ NO=Kh\u00F4ng
|
|
|
59
71
|
YES=Co\u0301
|
|
60
72
|
EnterYesOrNo=Nh\u00E2\u0323p "{0}" ho\u0103\u0323c "{1}".
|
|
61
73
|
EnterDigitsOnly=Chi\u0309 nh\u00E2\u0323p ca\u0301c ch\u01B0\u0303 s\u00F4\u0301
|
|
62
|
-
EnterMaximumOfDigits=Nh\u00E2\u0323p t\u00F4\u0301i \u0111a {0}
|
|
74
|
+
EnterMaximumOfDigits=Nh\u00E2\u0323p t\u00F4\u0301i \u0111a {0} s\u00F4\u0301.
|
|
63
75
|
EnterNumber=Nh\u00E2\u0323p s\u00F4\u0301
|
|
64
76
|
EnterNumberPrecision=Nh\u00E2\u0323p m\u00F4\u0323t s\u00F4\u0301 co\u0301 t\u00F4\u0301i \u0111a {0} ch\u01B0\u0303 s\u00F4\u0301, bao g\u00F4\u0300m b\u00E2\u0301t ky\u0300 ph\u00E2\u0300n th\u00E2\u0323p ph\u00E2n na\u0300o
|
|
65
77
|
EnterNumberInteger=Nh\u00E2\u0323p s\u00F4\u0301 co\u0301 t\u00F4\u0301i \u0111a {0} ch\u01B0\u0303 s\u00F4\u0301 \u0111\u00EA\u0301n b\u00EAn tra\u0301i cu\u0309a d\u00E2\u0301u ta\u0301ch th\u00E2\u0323p ph\u00E2n
|
|
@@ -72,7 +84,7 @@ EnterNumberMax=Nh\u00E2\u0323p s\u00F4\u0301 v\u01A1\u0301i gia\u0301 tri\u0323
|
|
|
72
84
|
EnterNumberMaxExclusive=Nh\u00E2\u0323p s\u00F4\u0301 nho\u0309 h\u01A1n {0}
|
|
73
85
|
EnterText=Nh\u00E2\u0323p v\u0103n ba\u0309n
|
|
74
86
|
EnterTextMaxLength=Nh\u00E2\u0323p v\u0103n ba\u0309n co\u0301 t\u00F4\u0301i \u0111a {0} ky\u0301 t\u01B0\u0323 va\u0300 khoa\u0309ng tr\u0103\u0301ng
|
|
75
|
-
EnterInt=Nh\u00E2\u0323p s\u00F4\u0301 kh\u00F4ng co\u0301 ph\u00E2\u0300n th\u00E2\u0323p ph\u00E2n
|
|
87
|
+
EnterInt=Nh\u00E2\u0323p s\u00F4\u0301 kh\u00F4ng co\u0301 ph\u00E2\u0300n th\u00E2\u0323p ph\u00E2n.
|
|
76
88
|
EnterDateTime=Nh\u00E2\u0323p nga\u0300y va\u0300 gi\u01A1\u0300 h\u01A1\u0323p l\u00EA\u0323 theo \u0111i\u0323nh da\u0323ng sau \u0111\u00E2y\: {0}
|
|
77
89
|
EnterDateTimeTimezone=Nh\u00E2\u0323p mu\u0301i gi\u01A1\u0300 h\u01A1\u0323p l\u00EA\u0323, vi\u0301 du\u0323\: {0}
|
|
78
90
|
EnterDate=Nh\u00E2\u0323p nga\u0300y h\u01A1\u0323p l\u00EA\u0323 theo \u0111i\u0323nh da\u0323ng sau \u0111\u00E2y\: {0}
|
|
@@ -176,7 +188,7 @@ Icon.message-success=Tha\u0300nh c\u00F4ng
|
|
|
176
188
|
Icon.message-warning=Ca\u0309nh ba\u0301o
|
|
177
189
|
Icon.move=Di chuy\u00EA\u0309n
|
|
178
190
|
Icon.multi-select=Cho\u0323n nhi\u00EA\u0300u
|
|
179
|
-
Icon.nav-back
|
|
191
|
+
Icon.nav-back=\u0110i\u00EA\u0300u h\u01B0\u01A1\u0301ng quay la\u0323i
|
|
180
192
|
Icon.overflow=Th\u00EAm
|
|
181
193
|
Icon.redo=La\u0300m la\u0323i
|
|
182
194
|
Icon.refresh=La\u0300m m\u01A1\u0301i
|
|
@@ -15,6 +15,18 @@ INDICATION_STATE_INDICATION05=\u6307\u793A\u989C\u8272 5
|
|
|
15
15
|
INDICATION_STATE_INDICATION06=\u6307\u793A\u989C\u8272 6
|
|
16
16
|
INDICATION_STATE_INDICATION07=\u6307\u793A\u989C\u8272 7
|
|
17
17
|
INDICATION_STATE_INDICATION08=\u6307\u793A\u989C\u8272 8
|
|
18
|
+
INDICATION_STATE_INDICATION09=\u6307\u793A\u989C\u8272 9
|
|
19
|
+
INDICATION_STATE_INDICATION10=\u6307\u793A\u989C\u8272 10
|
|
20
|
+
INDICATION_STATE_INDICATION11=\u6307\u793A\u989C\u8272 11
|
|
21
|
+
INDICATION_STATE_INDICATION12=\u6307\u793A\u989C\u8272 12
|
|
22
|
+
INDICATION_STATE_INDICATION13=\u6307\u793A\u989C\u8272 13
|
|
23
|
+
INDICATION_STATE_INDICATION14=\u6307\u793A\u989C\u8272 14
|
|
24
|
+
INDICATION_STATE_INDICATION15=\u6307\u793A\u989C\u8272 15
|
|
25
|
+
INDICATION_STATE_INDICATION16=\u6307\u793A\u989C\u8272 16
|
|
26
|
+
INDICATION_STATE_INDICATION17=\u6307\u793A\u989C\u8272 17
|
|
27
|
+
INDICATION_STATE_INDICATION18=\u6307\u793A\u989C\u8272 18
|
|
28
|
+
INDICATION_STATE_INDICATION19=\u6307\u793A\u989C\u8272 19
|
|
29
|
+
INDICATION_STATE_INDICATION20=\u6307\u793A\u989C\u8272 20
|
|
18
30
|
|
|
19
31
|
BUSY_TEXT=\u8BF7\u7A0D\u5019
|
|
20
32
|
BUSY_VALUE_TEXT=\u5FD9
|
|
@@ -59,7 +71,7 @@ NO=\u5426
|
|
|
59
71
|
YES=\u662F
|
|
60
72
|
EnterYesOrNo=\u8F93\u5165 "{0}" \u6216 "{1}"\u3002
|
|
61
73
|
EnterDigitsOnly=\u4EC5\u8F93\u5165\u6570\u5B57
|
|
62
|
-
EnterMaximumOfDigits=\u8F93\u5165\u6700\u591A {0} \u4F4D
|
|
74
|
+
EnterMaximumOfDigits=\u8F93\u5165\u6700\u591A {0} \u4F4D\u3002
|
|
63
75
|
EnterNumber=\u8F93\u5165\u6570\u5B57
|
|
64
76
|
EnterNumberPrecision=\u8F93\u5165\u6700\u591A {0} \u4F4D\u6570\u5B57\uFF0C\u5305\u62EC\u4EFB\u4F55\u5C0F\u6570\u4F4D
|
|
65
77
|
EnterNumberInteger=\u8F93\u5165\u5C0F\u6570\u5206\u9694\u7B26\u5DE6\u4FA7\u6700\u591A\u6709 {0} \u4F4D\u7684\u6570\u5B57
|
|
@@ -72,7 +84,7 @@ EnterNumberMax=\u8F93\u5165\u6700\u5927\u503C\u4E3A {0} \u7684\u6570\u5B57
|
|
|
72
84
|
EnterNumberMaxExclusive=\u8F93\u5165\u5C0F\u4E8E {0} \u7684\u6570\u5B57
|
|
73
85
|
EnterText=\u8F93\u5165\u6587\u672C
|
|
74
86
|
EnterTextMaxLength=\u8F93\u5165\u6700\u591A\u6709 {0} \u4E2A\u5B57\u7B26\u548C\u7A7A\u683C\u7684\u6587\u672C
|
|
75
|
-
EnterInt=\u8F93\u5165\u4E0D\u5E26\u5C0F\u6570\u7684\u6570\u5B57
|
|
87
|
+
EnterInt=\u8F93\u5165\u4E0D\u5E26\u5C0F\u6570\u7684\u6570\u5B57\u3002
|
|
76
88
|
EnterDateTime=\u6309\u4EE5\u4E0B\u683C\u5F0F\u8F93\u5165\u6709\u6548\u65E5\u671F\u548C\u6709\u6548\u65F6\u95F4\uFF1A {0}
|
|
77
89
|
EnterDateTimeTimezone=\u8F93\u5165\u6709\u6548\u65F6\u533A\uFF0C\u4F8B\u5982\uFF1A{0}
|
|
78
90
|
EnterDate=\u6309\u4EE5\u4E0B\u683C\u5F0F\u8F93\u5165\u6709\u6548\u65E5\u671F\uFF1A {0}
|
|
@@ -176,7 +188,7 @@ Icon.message-success=\u6210\u529F
|
|
|
176
188
|
Icon.message-warning=\u8B66\u544A
|
|
177
189
|
Icon.move=\u79FB\u52A8
|
|
178
190
|
Icon.multi-select=\u591A\u91CD\u9009\u62E9
|
|
179
|
-
Icon.nav-back=\
|
|
191
|
+
Icon.nav-back=\u5411\u540E\u5BFC\u822A
|
|
180
192
|
Icon.overflow=\u66F4\u591A
|
|
181
193
|
Icon.redo=\u91CD\u505A
|
|
182
194
|
Icon.refresh=\u5237\u65B0
|
|
@@ -15,6 +15,18 @@ INDICATION_STATE_INDICATION05=\u8868\u793A\u984F\u8272 5
|
|
|
15
15
|
INDICATION_STATE_INDICATION06=\u8868\u793A\u984F\u8272 6
|
|
16
16
|
INDICATION_STATE_INDICATION07=\u8868\u793A\u984F\u8272 7
|
|
17
17
|
INDICATION_STATE_INDICATION08=\u8868\u793A\u984F\u8272 8
|
|
18
|
+
INDICATION_STATE_INDICATION09=\u8868\u793A\u984F\u8272 9
|
|
19
|
+
INDICATION_STATE_INDICATION10=\u8868\u793A\u984F\u8272 10
|
|
20
|
+
INDICATION_STATE_INDICATION11=\u8868\u793A\u984F\u8272 11
|
|
21
|
+
INDICATION_STATE_INDICATION12=\u8868\u793A\u984F\u8272 12
|
|
22
|
+
INDICATION_STATE_INDICATION13=\u8868\u793A\u984F\u8272 13
|
|
23
|
+
INDICATION_STATE_INDICATION14=\u8868\u793A\u984F\u8272 14
|
|
24
|
+
INDICATION_STATE_INDICATION15=\u8868\u793A\u984F\u8272 15
|
|
25
|
+
INDICATION_STATE_INDICATION16=\u8868\u793A\u984F\u8272 16
|
|
26
|
+
INDICATION_STATE_INDICATION17=\u8868\u793A\u984F\u8272 17
|
|
27
|
+
INDICATION_STATE_INDICATION18=\u8868\u793A\u984F\u8272 18
|
|
28
|
+
INDICATION_STATE_INDICATION19=\u8868\u793A\u984F\u8272 19
|
|
29
|
+
INDICATION_STATE_INDICATION20=\u8868\u793A\u984F\u8272 20
|
|
18
30
|
|
|
19
31
|
BUSY_TEXT=\u8ACB\u7A0D\u5019
|
|
20
32
|
BUSY_VALUE_TEXT=\u5FD9\u788C\u4E2D
|
|
@@ -59,7 +71,7 @@ NO=\u5426
|
|
|
59
71
|
YES=\u662F
|
|
60
72
|
EnterYesOrNo=\u8F38\u5165\u300C{0}\u300D\u6216\u300C{1}\u300D\u3002
|
|
61
73
|
EnterDigitsOnly=\u50C5\u8F38\u5165\u6578\u5B57
|
|
62
|
-
EnterMaximumOfDigits=\
|
|
74
|
+
EnterMaximumOfDigits=\u8F38\u5165\u6700\u591A {0} \u4F4D\u6578\u7684\u6578\u5B57\u3002
|
|
63
75
|
EnterNumber=\u8F38\u5165\u6578\u5B57
|
|
64
76
|
EnterNumberPrecision=\u8F38\u5165\u6700\u591A\u542B {0} \u4F4D\u6578\u7684\u6578\u5B57\uFF0C\u5305\u542B\u5C0F\u6578\u4F4D
|
|
65
77
|
EnterNumberInteger=\u8F38\u5165\u5C0F\u6578\u9EDE\u7B26\u865F\u5DE6\u65B9\u6700\u591A\u542B {0} \u4F4D\u6578\u7684\u6578\u5B57
|
|
@@ -72,7 +84,7 @@ EnterNumberMax=\u8F38\u5165\u6700\u5927\u503C\u70BA {0} \u7684\u6578\u5B57
|
|
|
72
84
|
EnterNumberMaxExclusive=\u8F38\u5165\u5C0F\u65BC {0} \u7684\u6578\u5B57
|
|
73
85
|
EnterText=\u8F38\u5165\u6587\u5B57
|
|
74
86
|
EnterTextMaxLength=\u8F38\u5165\u6700\u591A\u542B {0} \u500B\u5B57\u5143\u548C\u7A7A\u683C\u7684\u5167\u6587
|
|
75
|
-
EnterInt=\
|
|
87
|
+
EnterInt=\u8F38\u5165\u4E0D\u542B\u5C0F\u6578\u4F4D\u7684\u6578\u5B57\u3002
|
|
76
88
|
EnterDateTime=\u4EE5\u4E0B\u5217\u683C\u5F0F\u8F38\u5165\u6709\u6548\u7684\u65E5\u671F\u548C\u6642\u9593\uFF1A{0}
|
|
77
89
|
EnterDateTimeTimezone=\u8ACB\u8F38\u5165\u6709\u6548\u6642\u5340\uFF0C\u4F8B\u5982\uFF1A{0}
|
|
78
90
|
EnterDate=\u4EE5\u4E0B\u5217\u683C\u5F0F\u8F38\u5165\u6709\u6548\u7684\u65E5\u671F\uFF1A{0}
|
|
@@ -176,7 +188,7 @@ Icon.message-success=\u6210\u529F
|
|
|
176
188
|
Icon.message-warning=\u8B66\u544A
|
|
177
189
|
Icon.move=\u79FB\u52D5
|
|
178
190
|
Icon.multi-select=\u591A\u91CD\u9078\u64C7
|
|
179
|
-
Icon.nav-back=\u8FD4\u56DE
|
|
191
|
+
Icon.nav-back=\u700F\u89BD\u8FD4\u56DE
|
|
180
192
|
Icon.overflow=\u66F4\u591A
|
|
181
193
|
Icon.redo=\u91CD\u505A
|
|
182
194
|
Icon.refresh=\u91CD\u65B0\u6574\u7406
|
|
@@ -282,27 +282,33 @@ sap.ui.define([
|
|
|
282
282
|
} else if (mRegistry[sName]) {
|
|
283
283
|
return Controller;
|
|
284
284
|
} else {
|
|
285
|
-
|
|
285
|
+
/** @deprecated since 1.120 */
|
|
286
286
|
return ObjectPath.get(sName);
|
|
287
287
|
}
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
ControllerClass = sap.ui.requireSync(sControllerName); // legacy-relevant: Sync path
|
|
302
|
-
return resolveClass(ControllerClass);
|
|
303
|
-
} else {
|
|
304
|
-
return ControllerClass;
|
|
290
|
+
/**
|
|
291
|
+
* Sync class resolution
|
|
292
|
+
* @deprecated since 1.120
|
|
293
|
+
*/
|
|
294
|
+
if (!bAsync) {
|
|
295
|
+
if (!ControllerClass) {
|
|
296
|
+
ControllerClass = sap.ui.requireSync(sControllerName); // legacy-relevant: Sync path
|
|
297
|
+
return resolveClass(ControllerClass);
|
|
298
|
+
} else {
|
|
299
|
+
return ControllerClass;
|
|
300
|
+
}
|
|
305
301
|
}
|
|
302
|
+
|
|
303
|
+
return new Promise(function(resolve, reject) {
|
|
304
|
+
if (!ControllerClass) {
|
|
305
|
+
sap.ui.require([sControllerName], function (ControllerClass) {
|
|
306
|
+
resolve(resolveClass(ControllerClass));
|
|
307
|
+
}, reject);
|
|
308
|
+
} else {
|
|
309
|
+
resolve(ControllerClass);
|
|
310
|
+
}
|
|
311
|
+
});
|
|
306
312
|
}
|
|
307
313
|
|
|
308
314
|
/*
|
|
@@ -16,7 +16,7 @@ sap.ui.define([
|
|
|
16
16
|
"sap/base/util/ObjectPath",
|
|
17
17
|
"sap/base/util/resolveReference",
|
|
18
18
|
"sap/base/Log",
|
|
19
|
-
"sap/ui/
|
|
19
|
+
"sap/ui/base/DesignTime"
|
|
20
20
|
],
|
|
21
21
|
function(
|
|
22
22
|
BindingParser,
|
|
@@ -29,7 +29,7 @@ sap.ui.define([
|
|
|
29
29
|
ObjectPath,
|
|
30
30
|
resolveReference,
|
|
31
31
|
Log,
|
|
32
|
-
|
|
32
|
+
DesignTime
|
|
33
33
|
) {
|
|
34
34
|
"use strict";
|
|
35
35
|
|
|
@@ -80,7 +80,7 @@ sap.ui.define([
|
|
|
80
80
|
var fnHandler, iStartBracket, sFunctionName;
|
|
81
81
|
sName = sName.trim();
|
|
82
82
|
|
|
83
|
-
if (
|
|
83
|
+
if (DesignTime.isControllerCodeDeactivated()) {
|
|
84
84
|
// When design mode is enabled, controller code is not loaded. That is why we stub the handler functions.
|
|
85
85
|
fnHandler = function() {};
|
|
86
86
|
} else {
|
|
@@ -308,7 +308,7 @@ sap.ui.define([
|
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
310
|
|
|
311
|
-
var
|
|
311
|
+
var oContext, oBinding, aBindings = [];
|
|
312
312
|
oBindingInfo.parts.forEach(function(oPart) {
|
|
313
313
|
var oModel;
|
|
314
314
|
if (oPart.model === "$parameters") {
|
|
@@ -323,13 +323,6 @@ sap.ui.define([
|
|
|
323
323
|
}
|
|
324
324
|
|
|
325
325
|
oType = oPart.type;
|
|
326
|
-
if (typeof oType == "string") {
|
|
327
|
-
fnTypeClass = ObjectPath.get(oType);
|
|
328
|
-
if (typeof fnTypeClass !== "function") {
|
|
329
|
-
throw new Error("Cannot find type \"" + oType + "\" used for binding \"" + oPart.path + "\"!");
|
|
330
|
-
}
|
|
331
|
-
oType = new fnTypeClass(oPart.formatOptions, oPart.constraints);
|
|
332
|
-
}
|
|
333
326
|
|
|
334
327
|
oBinding = oModel.bindProperty(oPart.path, oContext, oBindingInfo.parameters);
|
|
335
328
|
oBinding.setType(oType /* type that is able to parse etc. */, oPart.targetType /* string, boolean, etc. */ || "any");
|
|
@@ -342,10 +335,7 @@ sap.ui.define([
|
|
|
342
335
|
if (aBindings.length > 1 || ( oBindingInfo.formatter && oBindingInfo.formatter.textFragments )) {
|
|
343
336
|
// Create type instance if needed
|
|
344
337
|
oType = oBindingInfo.type;
|
|
345
|
-
|
|
346
|
-
fnTypeClass = ObjectPath.get(oType);
|
|
347
|
-
oType = new fnTypeClass(oBindingInfo.formatOptions, oBindingInfo.constraints);
|
|
348
|
-
}
|
|
338
|
+
|
|
349
339
|
oBinding = new CompositeBinding(aBindings, oBindingInfo.useRawValues, oBindingInfo.useInternalValues);
|
|
350
340
|
oBinding.setType(oType /* type that is able to parse etc. */, oPart.targetType /* string, boolean, etc. */ || "any");
|
|
351
341
|
oBinding.setBindingMode(BindingMode.OneTime);
|
|
@@ -43,7 +43,7 @@ sap.ui.define([
|
|
|
43
43
|
* @extends sap.ui.core.mvc.View
|
|
44
44
|
*
|
|
45
45
|
* @author SAP SE
|
|
46
|
-
* @version 1.
|
|
46
|
+
* @version 1.120.0
|
|
47
47
|
*
|
|
48
48
|
* @public
|
|
49
49
|
* @since 1.9.2
|
|
@@ -52,7 +52,7 @@ sap.ui.define([
|
|
|
52
52
|
* and as the use of HTML as syntax does not bring any advantages over XML. The HTML necessary for
|
|
53
53
|
* the <code>HTMLView</code> is not re-used for the HTML of the controls, but is fully replaced.
|
|
54
54
|
*
|
|
55
|
-
* Consider using {@link sap.ui.core.
|
|
55
|
+
* Consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes
|
|
56
56
|
* written in JavaScript) instead. For more information, see the documentation on
|
|
57
57
|
* {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
|
|
58
58
|
*/
|
|
@@ -43,10 +43,13 @@ sap.ui.define([
|
|
|
43
43
|
* @class
|
|
44
44
|
* A View defined using JSON.
|
|
45
45
|
* @extends sap.ui.core.mvc.View
|
|
46
|
-
* @version 1.
|
|
46
|
+
* @version 1.120.0
|
|
47
47
|
*
|
|
48
48
|
* @public
|
|
49
49
|
* @alias sap.ui.core.mvc.JSONView
|
|
50
|
+
* @deprecated Since version 1.120, please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes
|
|
51
|
+
* written in JavaScript) instead. For more information, see the documentation on
|
|
52
|
+
* {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
|
|
50
53
|
*/
|
|
51
54
|
var JSONView = View.extend("sap.ui.core.mvc.JSONView", /** @lends sap.ui.core.mvc.JSONView.prototype */ {
|
|
52
55
|
metadata : {
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @param {object} [mSettings] initial settings for the new control
|
|
28
28
|
*
|
|
29
29
|
* @extends sap.ui.core.mvc.View
|
|
30
|
-
* @version 1.
|
|
30
|
+
* @version 1.120.0
|
|
31
31
|
* @deprecated Since 1.90. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views}
|
|
32
32
|
* by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and
|
|
33
33
|
* creating the view instances with {@link sap.ui.core.mvc.View.create View.create}.
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// Provides enumeration sap.ui.
|
|
7
|
+
// Provides enumeration sap.ui.core.mvc.OverrideExecution
|
|
8
8
|
sap.ui.define(function() {
|
|
9
9
|
"use strict";
|
|
10
10
|
|
|
@@ -33,12 +33,12 @@ sap.ui.define(function() {
|
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* The override function is called instead of the original function
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
*
|
|
37
|
+
* This is the default option for ControllerExtension overrides
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
40
|
Instead: "Instead"
|
|
41
|
-
|
|
41
|
+
};
|
|
42
42
|
|
|
43
43
|
return OverrideExecution;
|
|
44
44
|
|
|
@@ -29,7 +29,7 @@ function(View, TemplateViewRenderer, ViewType, Log) {
|
|
|
29
29
|
* @extends sap.ui.core.mvc.View
|
|
30
30
|
*
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.120.0
|
|
33
33
|
*
|
|
34
34
|
* @public
|
|
35
35
|
* @deprecated Since version 1.56.0, use {@link sap.ui.core.mvc.XMLView} in combination with
|
|
@@ -12,8 +12,8 @@ sap.ui.define([
|
|
|
12
12
|
"sap/base/util/isEmptyObject",
|
|
13
13
|
"sap/base/util/merge",
|
|
14
14
|
"sap/ui/base/ManagedObject",
|
|
15
|
-
"sap/ui/core/Configuration",
|
|
16
15
|
"sap/ui/core/Control",
|
|
16
|
+
"sap/ui/base/DesignTime",
|
|
17
17
|
"sap/ui/core/Element",
|
|
18
18
|
"./Controller",
|
|
19
19
|
"./ViewRenderer",
|
|
@@ -26,8 +26,8 @@ sap.ui.define([
|
|
|
26
26
|
isEmptyObject,
|
|
27
27
|
merge,
|
|
28
28
|
ManagedObject,
|
|
29
|
-
Configuration,
|
|
30
29
|
Control,
|
|
30
|
+
DesignTime,
|
|
31
31
|
Element,
|
|
32
32
|
Controller,
|
|
33
33
|
ViewRenderer,
|
|
@@ -142,7 +142,7 @@ sap.ui.define([
|
|
|
142
142
|
* The default implementation of this method returns <code>false</code>.
|
|
143
143
|
*
|
|
144
144
|
* @extends sap.ui.core.Control
|
|
145
|
-
* @version 1.
|
|
145
|
+
* @version 1.120.0
|
|
146
146
|
*
|
|
147
147
|
* @public
|
|
148
148
|
* @alias sap.ui.core.mvc.View
|
|
@@ -442,7 +442,7 @@ sap.ui.define([
|
|
|
442
442
|
oController.oView = oThis;
|
|
443
443
|
};
|
|
444
444
|
|
|
445
|
-
if (!
|
|
445
|
+
if (!DesignTime.isControllerCodeDeactivated()) {
|
|
446
446
|
// only set when used internally
|
|
447
447
|
var oController = mSettings.controller,
|
|
448
448
|
sName = oController && typeof oController.getMetadata === "function" && oController.getMetadata().getName();
|
|
@@ -492,10 +492,8 @@ sap.ui.define([
|
|
|
492
492
|
}
|
|
493
493
|
}
|
|
494
494
|
} else if (bAsync) {
|
|
495
|
-
|
|
496
|
-
return
|
|
497
|
-
name: "sap.ui.core.mvc.EmptyControllerImpl"
|
|
498
|
-
}).then(connectToView);
|
|
495
|
+
const oController = Object.assign(new Controller(), { "_sap.ui.core.mvc.EmptyControllerImpl": true });
|
|
496
|
+
return Promise.resolve(oController).then(connectToView);
|
|
499
497
|
} else {
|
|
500
498
|
sap.ui.controller("sap.ui.core.mvc.EmptyControllerImpl", {"_sap.ui.core.mvc.EmptyControllerImpl":true}); // legacy-relevant: Sync path
|
|
501
499
|
oThis.oController = sap.ui.controller("sap.ui.core.mvc.EmptyControllerImpl"); // legacy-relevant: Sync path
|
|
@@ -1017,7 +1015,7 @@ sap.ui.define([
|
|
|
1017
1015
|
* See also the API references for the specific view factories:
|
|
1018
1016
|
* <ul>
|
|
1019
1017
|
* <li>{@link sap.ui.core.mvc.XMLView.create}</li>
|
|
1020
|
-
* <li>{@link sap.ui.core.mvc.JSONView.create}</li>
|
|
1018
|
+
* <li>{@link sap.ui.core.mvc.JSONView.create} (deprecated)</li>
|
|
1021
1019
|
* <li>{@link sap.ui.core.mvc.HTMLView.create} (deprecated)</li>
|
|
1022
1020
|
* </ul>
|
|
1023
1021
|
*
|
|
@@ -1262,17 +1260,29 @@ sap.ui.define([
|
|
|
1262
1260
|
}
|
|
1263
1261
|
if (!oViewSettings.type) {
|
|
1264
1262
|
throw new Error("No view type specified.");
|
|
1265
|
-
}
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
if (oViewSettings.type === ViewType.XML) {
|
|
1266
|
+
return 'sap/ui/core/mvc/XMLView';
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
/**
|
|
1270
|
+
* The different ViewTypes have been deprecated with different UI5 versions.
|
|
1271
|
+
* Please see the public "sap/ui/core/mvc/ViewType" enum for the specific versions.
|
|
1272
|
+
* @deprecated
|
|
1273
|
+
*/
|
|
1274
|
+
if (oViewSettings.type === ViewType.JS) {
|
|
1266
1275
|
sViewClass = 'sap/ui/core/mvc/JSView';
|
|
1267
1276
|
} else if (oViewSettings.type === ViewType.JSON) {
|
|
1268
1277
|
sViewClass = 'sap/ui/core/mvc/JSONView';
|
|
1269
|
-
} else if (oViewSettings.type === ViewType.XML) {
|
|
1270
|
-
sViewClass = 'sap/ui/core/mvc/XMLView';
|
|
1271
1278
|
} else if (oViewSettings.type === ViewType.HTML) {
|
|
1272
1279
|
sViewClass = 'sap/ui/core/mvc/HTMLView';
|
|
1273
1280
|
} else if (oViewSettings.type === ViewType.Template) {
|
|
1274
1281
|
sViewClass = 'sap/ui/core/mvc/TemplateView';
|
|
1275
|
-
}
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
// unknown view type
|
|
1285
|
+
if (!sViewClass) {
|
|
1276
1286
|
throw new Error("Unknown view type " + oViewSettings.type + " specified.");
|
|
1277
1287
|
}
|
|
1278
1288
|
|
|
@@ -1398,7 +1408,7 @@ sap.ui.define([
|
|
|
1398
1408
|
/**
|
|
1399
1409
|
* A method to be implemented by typed <code>View</code>s, returning the view UI.
|
|
1400
1410
|
*
|
|
1401
|
-
* While for declarative view types like <code>XMLView</code> or <code>JSONView</code> the user interface definition
|
|
1411
|
+
* While for declarative view types like <code>XMLView</code> or <code>JSONView</code> (deprecated) the user interface definition
|
|
1402
1412
|
* is declared in a separate file, <code>View</code>s programmatically constructs the UI. This happens in the
|
|
1403
1413
|
* <code>createContent</code> method, which every <code>View</code> needs to implement. The view implementation
|
|
1404
1414
|
* can construct the complete UI in this method, or only return the root control and create the remainder of the UI
|
|
@@ -24,6 +24,8 @@ sap.ui.define([], function () {
|
|
|
24
24
|
/**
|
|
25
25
|
* JSON View
|
|
26
26
|
* @public
|
|
27
|
+
* @deprecated Since version 1.120, please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes
|
|
28
|
+
* written in JavaScript) instead.
|
|
27
29
|
*/
|
|
28
30
|
JSON: "JSON",
|
|
29
31
|
|
|
@@ -110,7 +110,7 @@ sap.ui.define([
|
|
|
110
110
|
* bound content aggregation. An error will be thrown when the above combination is detected.
|
|
111
111
|
*
|
|
112
112
|
* @extends sap.ui.core.mvc.View
|
|
113
|
-
* @version 1.
|
|
113
|
+
* @version 1.120.0
|
|
114
114
|
*
|
|
115
115
|
* @public
|
|
116
116
|
* @alias sap.ui.core.mvc.XMLView
|
|
@@ -21,8 +21,9 @@ sap.ui.define([
|
|
|
21
21
|
* @see sap.ui.core.DeclarativeSupport
|
|
22
22
|
* @public
|
|
23
23
|
* @since 1.7.0
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.120.0
|
|
25
25
|
* @alias sap.ui.core.plugin.DeclarativeSupport
|
|
26
|
+
* @deprecated since 1.120
|
|
26
27
|
*/
|
|
27
28
|
var DeclarativeSupportPlugin = function() {
|
|
28
29
|
};
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* FEATURE TO INCREASE DEVELOPMENT EXPERIENCE! NO PRODUCTIVE USAGE ALLOWED!
|
|
9
|
+
* @fileoverview
|
|
10
|
+
* @deprecated As of version 1.120
|
|
9
11
|
*/
|
|
10
12
|
(function() {
|
|
11
13
|
"use strict";
|
|
@@ -42,7 +44,7 @@
|
|
|
42
44
|
* feature - DO NOT USE IN PRODUCTIVE SCENARIOS!!
|
|
43
45
|
*
|
|
44
46
|
* @author Peter Muessig
|
|
45
|
-
* @version 1.
|
|
47
|
+
* @version 1.120.0
|
|
46
48
|
* @private
|
|
47
49
|
* @alias sap.ui.core.plugin.LessSupport
|
|
48
50
|
*/
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @public
|
|
22
22
|
* @since 1.15.0
|
|
23
23
|
* @deprecated since 1.56, use an {@link sap.ui.core.mvc.XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View} instead
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.120.0
|
|
25
25
|
* @alias sap.ui.core.plugin.TemplatingSupport
|
|
26
26
|
*/
|
|
27
27
|
var TemplatingSupport = function() {
|
|
@@ -13,7 +13,6 @@ sap.ui.define([
|
|
|
13
13
|
'./Targets',
|
|
14
14
|
'./History',
|
|
15
15
|
'sap/ui/thirdparty/crossroads',
|
|
16
|
-
"sap/base/util/UriParameters",
|
|
17
16
|
"sap/base/util/each",
|
|
18
17
|
"sap/base/util/deepEqual",
|
|
19
18
|
"sap/base/util/isEmptyObject",
|
|
@@ -31,7 +30,6 @@ sap.ui.define([
|
|
|
31
30
|
Targets,
|
|
32
31
|
History,
|
|
33
32
|
crossroads,
|
|
34
|
-
UriParameters,
|
|
35
33
|
each,
|
|
36
34
|
deepEqual,
|
|
37
35
|
isEmptyObject,
|
|
@@ -233,7 +231,7 @@ sap.ui.define([
|
|
|
233
231
|
|
|
234
232
|
// temporarily: for checking the url param
|
|
235
233
|
function checkUrl() {
|
|
236
|
-
if (
|
|
234
|
+
if (new URLSearchParams(window.location.search).get("sap-ui-xx-asyncRouting") === "true") {
|
|
237
235
|
Log.warning("Activation of async view loading in routing via url parameter is only temporarily supported and may be removed soon", "Router");
|
|
238
236
|
return true;
|
|
239
237
|
}
|
|
@@ -666,7 +664,7 @@ sap.ui.define([
|
|
|
666
664
|
/**
|
|
667
665
|
* @typedef {object} sap.ui.core.routing.RouteInfo
|
|
668
666
|
* @property {string} name The route name
|
|
669
|
-
* @property {Object.<string, string
|
|
667
|
+
* @property {Object.<string, string|Object.<string, string>>} arguments The route data
|
|
670
668
|
* @public
|
|
671
669
|
*/
|
|
672
670
|
|
|
@@ -11,7 +11,6 @@ sap.ui.define([
|
|
|
11
11
|
'sap/ui/core/mvc/View',
|
|
12
12
|
'sap/ui/core/routing/async/Target',
|
|
13
13
|
'sap/ui/core/routing/sync/Target',
|
|
14
|
-
"sap/base/util/UriParameters",
|
|
15
14
|
"sap/base/Log"
|
|
16
15
|
],
|
|
17
16
|
function(
|
|
@@ -20,7 +19,6 @@ sap.ui.define([
|
|
|
20
19
|
View,
|
|
21
20
|
asyncTarget,
|
|
22
21
|
syncTarget,
|
|
23
|
-
UriParameters,
|
|
24
22
|
Log
|
|
25
23
|
) {
|
|
26
24
|
"use strict";
|
|
@@ -255,7 +253,7 @@ sap.ui.define([
|
|
|
255
253
|
var sErrorMessage;
|
|
256
254
|
// temporarily: for checking the url param
|
|
257
255
|
function checkUrl() {
|
|
258
|
-
if (
|
|
256
|
+
if (new URLSearchParams(window.location.search).get("sap-ui-xx-asyncRouting") === "true") {
|
|
259
257
|
Log.warning("Activation of async view loading in routing via url parameter is only temporarily supported and may be removed soon", "Target");
|
|
260
258
|
return true;
|
|
261
259
|
}
|
|
@@ -8,11 +8,10 @@ sap.ui.define([
|
|
|
8
8
|
'./Target',
|
|
9
9
|
'./async/Targets',
|
|
10
10
|
'./sync/Targets',
|
|
11
|
-
"sap/base/util/UriParameters",
|
|
12
11
|
"sap/base/Log",
|
|
13
12
|
"sap/base/util/deepExtend"
|
|
14
13
|
],
|
|
15
|
-
function(EventProvider, Target, asyncTargets, syncTargets,
|
|
14
|
+
function(EventProvider, Target, asyncTargets, syncTargets, Log, deepExtend) {
|
|
16
15
|
"use strict";
|
|
17
16
|
|
|
18
17
|
/**
|
|
@@ -101,7 +100,7 @@ sap.ui.define([
|
|
|
101
100
|
|
|
102
101
|
// temporarily: for checking the url param
|
|
103
102
|
function checkUrl() {
|
|
104
|
-
if (
|
|
103
|
+
if (new URLSearchParams(window.location.search).get("sap-ui-xx-asyncRouting") === "true") {
|
|
105
104
|
Log.warning("Activation of async view loading in routing via url parameter is only temporarily supported and may be removed soon", "Targets");
|
|
106
105
|
return true;
|
|
107
106
|
}
|
|
@@ -5,10 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
7
7
|
"./TargetCache",
|
|
8
|
-
"sap/base/util/UriParameters",
|
|
9
8
|
"sap/base/Log"
|
|
10
9
|
],
|
|
11
|
-
function(TargetCache,
|
|
10
|
+
function(TargetCache, Log) {
|
|
12
11
|
"use strict";
|
|
13
12
|
|
|
14
13
|
/**
|
|
@@ -39,7 +38,7 @@ sap.ui.define([
|
|
|
39
38
|
|
|
40
39
|
// temporarily: for checking the url param
|
|
41
40
|
function checkUrl() {
|
|
42
|
-
if (
|
|
41
|
+
if (new URLSearchParams(window.location.search).get("sap-ui-xx-asyncRouting") === "true") {
|
|
43
42
|
Log.warning("Activation of async view loading in routing via url parameter is only temporarily supported and may be removed soon", "TargetCache");
|
|
44
43
|
return true;
|
|
45
44
|
}
|