@openui5/sap.ui.core 1.119.1 → 1.120.1
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 +400 -256
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +125 -87
- 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 -85
- package/src/sap/ui/base/ManagedObjectMetadata.js +53 -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 +175 -86
- package/src/sap/ui/core/ComponentContainer.js +6 -5
- 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 +395 -709
- 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 +338 -216
- 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 +24 -10
- 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 +3 -3
- 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 +253 -57
- 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 +5 -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/Islamic.js +4 -4
- 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/ControllerExtensionProvider.js +1 -1
- 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 +25 -15
- 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 +2 -1
- package/src/sap/ui/core/search/SearchProvider.js +2 -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 +2 -2
- 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/_LocalizationHelper.js +122 -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 +9 -4
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +9 -4
- 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 +15 -5
- 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 +14 -8
- 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 +8 -2
- 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 +40 -15
- package/src/sap/ui/model/odata/v2/ODataModel.js +26 -62
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +38 -4
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +3 -0
- 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 +2 -2
- 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/performance/trace/Interaction.js +20 -16
- 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 +24 -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/MessageManager/ODataBackendMessagesComp/manifest.json +3 -10
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +11 -0
- 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/matcher/BindingPath/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +11 -0
- 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/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/01/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/01/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/02/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/03/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/04/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/05/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/Component.js +9 -27
- package/test/sap/ui/core/demokit/tutorial/databinding/06/manifest.json +22 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/07/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/08/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/09/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/10/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/11/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/12/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/13/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/14/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/Component.js +9 -32
- package/test/sap/ui/core/demokit/tutorial/databinding/15/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/navigation/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/Component.js +9 -35
- package/test/sap/ui/core/demokit/tutorial/navigation/02/manifest.json +30 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/Component.js +9 -37
- package/test/sap/ui/core/demokit/tutorial/navigation/03/manifest.json +32 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/04/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/05/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/Component.js +9 -40
- package/test/sap/ui/core/demokit/tutorial/navigation/06/manifest.json +35 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/Component.js +9 -42
- package/test/sap/ui/core/demokit/tutorial/navigation/07/manifest.json +37 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/08/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/09/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/Component.js +9 -47
- package/test/sap/ui/core/demokit/tutorial/navigation/10/manifest.json +42 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/11/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/12/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/13/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/14/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/15/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/16/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/17/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/manifest.json +25 -0
- 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/ClientModel.qunit.js +28 -28
- 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 +64 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +90 -4
- 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 +49 -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 +100 -7
- 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 +7 -4
- 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 +5 -2
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +5 -2
- 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 +68 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +46 -2
- 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/ODataModel_legacyAPIs.qunit.js +22 -22
- package/test/sap/ui/core/qunit/odata/ODataTreeBindingAdapter.qunit.js +1 -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 +52 -29
- 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 +8 -15
- 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 +211 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +32 -36
- 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/ODataBinding.qunit.js +19 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1896 -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 +66 -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/performance/trace/FESR.qunit.js +11 -2
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +4 -7
- 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 +442 -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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
|
|
3
|
-
"__version": "
|
|
4
|
-
"__buildtime": "
|
|
3
|
+
"__version": "43.0.0",
|
|
4
|
+
"__buildtime": "2023-09-28T11:39:07.908Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "अफ़ार",
|
|
7
7
|
"ab": "अब्ख़ाज़ियन",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"am": "अम्हेरी",
|
|
22
22
|
"an": "अर्गोनी",
|
|
23
23
|
"ang": "पुरानी अंग्रेज़ी",
|
|
24
|
+
"ann": "ओबोलो",
|
|
24
25
|
"anp": "अंगिका",
|
|
25
26
|
"ar": "अरबी",
|
|
26
27
|
"ar_001": "आधुनिक मानक अरबी",
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
"as": "असमिया",
|
|
34
35
|
"asa": "असु",
|
|
35
36
|
"ast": "अस्तुरियन",
|
|
37
|
+
"atj": "अतिकामेक्व",
|
|
36
38
|
"av": "अवेरिक",
|
|
37
39
|
"awa": "अवधी",
|
|
38
40
|
"ay": "आयमारा",
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
"ca": "कातालान",
|
|
67
69
|
"cad": "कैड्डो",
|
|
68
70
|
"car": "कैरिब",
|
|
71
|
+
"cay": "कायुगा",
|
|
69
72
|
"cch": "अत्सम",
|
|
70
73
|
"ccp": "चकमा",
|
|
71
74
|
"ce": "चेचन",
|
|
@@ -84,13 +87,21 @@
|
|
|
84
87
|
"ckb": "सोरानी कुर्दिश",
|
|
85
88
|
"ckb_alt-menu": "कुर्दी, सोरानी",
|
|
86
89
|
"ckb_alt-variant": "सोरानी कुर्दिश",
|
|
90
|
+
"clc": "चिलकोटिन",
|
|
87
91
|
"co": "कोर्सीकन",
|
|
88
92
|
"cop": "कॉप्टिक",
|
|
89
93
|
"cr": "क्री",
|
|
94
|
+
"crg": "मिचिफ़",
|
|
90
95
|
"crh": "क्रीमीन तुर्की",
|
|
96
|
+
"crj": "दक्षिण पूर्वी क्री",
|
|
97
|
+
"crk": "प्लेन्स क्री",
|
|
98
|
+
"crl": "नॉर्दन ईस्ट क्री",
|
|
99
|
+
"crm": "मूस क्री",
|
|
100
|
+
"crr": "कैरोलाइना एल्गोंक्वीयन",
|
|
91
101
|
"crs": "सेसेल्वा क्रिओल फ्रेंच",
|
|
92
102
|
"cs": "चेक",
|
|
93
103
|
"csb": "काशुबियन",
|
|
104
|
+
"csw": "स्वॉम्पी क्री",
|
|
94
105
|
"cu": "चर्च साल्विक",
|
|
95
106
|
"cv": "चूवाश",
|
|
96
107
|
"cy": "वेल्श",
|
|
@@ -131,7 +142,7 @@
|
|
|
131
142
|
"en_US-alt-short": "अमेरिकी अंग्रेज़ी",
|
|
132
143
|
"enm": "मध्यकालीन अंग्रेज़ी",
|
|
133
144
|
"eo": "एस्पेरेंतो",
|
|
134
|
-
"es": "
|
|
145
|
+
"es": "स्पेनिश",
|
|
135
146
|
"es_419": "लैटिन अमेरिकी स्पेनिश",
|
|
136
147
|
"es_ES": "यूरोपीय स्पेनिश",
|
|
137
148
|
"es_MX": "मैक्सिकन स्पेनिश",
|
|
@@ -183,8 +194,11 @@
|
|
|
183
194
|
"ha": "हौसा",
|
|
184
195
|
"hai": "हैडा",
|
|
185
196
|
"haw": "हवाई",
|
|
197
|
+
"hax": "दक्षिणी हाइदा",
|
|
186
198
|
"he": "हिब्रू",
|
|
187
199
|
"hi": "हिन्दी",
|
|
200
|
+
"hi_Latn": "हिन्दी (लैटिन)",
|
|
201
|
+
"hi_Latn-alt-variant": "हिंग्लिश",
|
|
188
202
|
"hil": "हिलिगेनन",
|
|
189
203
|
"hit": "हिताइत",
|
|
190
204
|
"hmn": "ह्मॉंग",
|
|
@@ -194,6 +208,7 @@
|
|
|
194
208
|
"ht": "हैतियाई",
|
|
195
209
|
"hu": "हंगेरियाई",
|
|
196
210
|
"hup": "हूपा",
|
|
211
|
+
"hur": "हल्कोमेलम",
|
|
197
212
|
"hy": "आर्मेनियाई",
|
|
198
213
|
"hz": "हरैरो",
|
|
199
214
|
"ia": "इंटरलिंगुआ",
|
|
@@ -204,12 +219,13 @@
|
|
|
204
219
|
"ig": "ईग्बो",
|
|
205
220
|
"ii": "सिचुआन यी",
|
|
206
221
|
"ik": "इनुपियाक्",
|
|
222
|
+
"ikt": "पश्चिमी कनाडाई इनुक्टिटुट",
|
|
207
223
|
"ilo": "इलोको",
|
|
208
224
|
"inh": "इंगुश",
|
|
209
225
|
"io": "इडौ",
|
|
210
226
|
"is": "आइसलैंडिक",
|
|
211
227
|
"it": "इतालवी",
|
|
212
|
-
"iu": "
|
|
228
|
+
"iu": "इनुक्टिटुट",
|
|
213
229
|
"ja": "जापानी",
|
|
214
230
|
"jbo": "लोज्बान",
|
|
215
231
|
"jgo": "नगोंबा",
|
|
@@ -230,7 +246,7 @@
|
|
|
230
246
|
"kea": "काबुवेर्दियानु",
|
|
231
247
|
"kfo": "कोरो",
|
|
232
248
|
"kg": "कोंगो",
|
|
233
|
-
"kgp": "
|
|
249
|
+
"kgp": "काइंगांग",
|
|
234
250
|
"kha": "खासी",
|
|
235
251
|
"kho": "खोतानीस",
|
|
236
252
|
"khq": "कोयरा चीनी",
|
|
@@ -261,6 +277,7 @@
|
|
|
261
277
|
"kut": "क्यूतनाई",
|
|
262
278
|
"kv": "कोमी",
|
|
263
279
|
"kw": "कोर्निश",
|
|
280
|
+
"kwk": "क्वॉकवाला",
|
|
264
281
|
"ky": "किर्गीज़",
|
|
265
282
|
"la": "लैटिन",
|
|
266
283
|
"lad": "लादीनो",
|
|
@@ -271,14 +288,16 @@
|
|
|
271
288
|
"lez": "लेज़्घीयन",
|
|
272
289
|
"lg": "गांडा",
|
|
273
290
|
"li": "लिंबर्गिश",
|
|
274
|
-
"
|
|
291
|
+
"lil": "लिलोएट",
|
|
275
292
|
"lkt": "लैकोटा",
|
|
293
|
+
"lmo": "लॉमबर्ड",
|
|
276
294
|
"ln": "लिंगाला",
|
|
277
295
|
"lo": "लाओ",
|
|
278
296
|
"lol": "मोंगो",
|
|
279
297
|
"lou": "लुईज़ियाना क्रियोल",
|
|
280
298
|
"loz": "लोज़ी",
|
|
281
299
|
"lrc": "उत्तरी लूरी",
|
|
300
|
+
"lsm": "सामिया",
|
|
282
301
|
"lt": "लिथुआनियाई",
|
|
283
302
|
"lu": "ल्यूबा-कटांगा",
|
|
284
303
|
"lua": "ल्यूबा-लुलुआ",
|
|
@@ -312,6 +331,7 @@
|
|
|
312
331
|
"mn": "मंगोलियाई",
|
|
313
332
|
"mnc": "मन्चु",
|
|
314
333
|
"mni": "मणिपुरी",
|
|
334
|
+
"moe": "इन्नु-एईमन",
|
|
315
335
|
"moh": "मोहौक",
|
|
316
336
|
"mos": "मोस्सी",
|
|
317
337
|
"mr": "मराठी",
|
|
@@ -359,8 +379,13 @@
|
|
|
359
379
|
"nzi": "न्ज़ीमा",
|
|
360
380
|
"oc": "ओसीटान",
|
|
361
381
|
"oj": "ओजिब्वा",
|
|
382
|
+
"ojb": "उत्तरपश्चिमी ओजिब्वे",
|
|
383
|
+
"ojc": "सेंट्रल ओजीब्वे",
|
|
384
|
+
"ojs": "ओजी-क्री",
|
|
385
|
+
"ojw": "पश्चिमी ओजिब्वा",
|
|
386
|
+
"oka": "ओकनागन",
|
|
362
387
|
"om": "ओरोमो",
|
|
363
|
-
"or": "
|
|
388
|
+
"or": "ओड़िया",
|
|
364
389
|
"os": "ओस्सेटिक",
|
|
365
390
|
"osa": "ओसेज",
|
|
366
391
|
"ota": "ओटोमान तुर्किश",
|
|
@@ -374,8 +399,10 @@
|
|
|
374
399
|
"peo": "पुरानी फारसी",
|
|
375
400
|
"phn": "फोएनिशियन",
|
|
376
401
|
"pi": "पाली",
|
|
402
|
+
"pis": "पाईजिन",
|
|
377
403
|
"pl": "पोलिश",
|
|
378
404
|
"pon": "पोह्नपिएन",
|
|
405
|
+
"pqm": "मलेसीट-पासेमेक्वोडी",
|
|
379
406
|
"prg": "प्रुशियाई",
|
|
380
407
|
"pro": "पुरानी प्रोवेन्सल",
|
|
381
408
|
"ps": "पश्तो",
|
|
@@ -426,6 +453,7 @@
|
|
|
426
453
|
"sid": "सिदामो",
|
|
427
454
|
"sk": "स्लोवाक",
|
|
428
455
|
"sl": "स्लोवेनियाई",
|
|
456
|
+
"slh": "दक्षिणी लशूटसीड",
|
|
429
457
|
"sm": "सामोन",
|
|
430
458
|
"sma": "दक्षिणी सामी",
|
|
431
459
|
"smj": "ल्युल सामी",
|
|
@@ -442,6 +470,7 @@
|
|
|
442
470
|
"ss": "स्वाती",
|
|
443
471
|
"ssy": "साहो",
|
|
444
472
|
"st": "दक्षिणी सेसेथो",
|
|
473
|
+
"str": "स्ट्रेट्स सैलिश",
|
|
445
474
|
"su": "सुंडानी",
|
|
446
475
|
"suk": "सुकुमा",
|
|
447
476
|
"sus": "सुसु",
|
|
@@ -453,13 +482,16 @@
|
|
|
453
482
|
"syc": "क्लासिकल सिरिएक",
|
|
454
483
|
"syr": "सिरिएक",
|
|
455
484
|
"ta": "तमिल",
|
|
485
|
+
"tce": "दक्षिणी टशोनी",
|
|
456
486
|
"te": "तेलुगू",
|
|
457
487
|
"tem": "टिम्ने",
|
|
458
488
|
"teo": "टेसो",
|
|
459
489
|
"ter": "तेरेनो",
|
|
460
490
|
"tet": "तेतुम",
|
|
461
491
|
"tg": "ताजिक",
|
|
492
|
+
"tgx": "टैगिश",
|
|
462
493
|
"th": "थाई",
|
|
494
|
+
"tht": "टैल्हटन",
|
|
463
495
|
"ti": "तिग्रीन्या",
|
|
464
496
|
"tig": "टाइग्रे",
|
|
465
497
|
"tiv": "तिव",
|
|
@@ -472,12 +504,14 @@
|
|
|
472
504
|
"tn": "सेत्स्वाना",
|
|
473
505
|
"to": "टोंगन",
|
|
474
506
|
"tog": "न्यासा टोन्गा",
|
|
507
|
+
"tok": "टोकी पोना",
|
|
475
508
|
"tpi": "टोक पिसिन",
|
|
476
509
|
"tr": "तुर्की",
|
|
477
510
|
"trv": "तारोको",
|
|
478
511
|
"ts": "सोंगा",
|
|
479
512
|
"tsi": "त्सिमीशियन",
|
|
480
513
|
"tt": "तातार",
|
|
514
|
+
"ttm": "उत्तरी टुशोनी",
|
|
481
515
|
"tum": "तम्बूका",
|
|
482
516
|
"tvl": "तुवालु",
|
|
483
517
|
"tw": "ट्वी",
|
|
@@ -516,7 +550,7 @@
|
|
|
516
550
|
"ybb": "येंबा",
|
|
517
551
|
"yi": "यहूदी",
|
|
518
552
|
"yo": "योरूबा",
|
|
519
|
-
"yrl": "
|
|
553
|
+
"yrl": "नेइंगातू",
|
|
520
554
|
"yue": "कैंटोनीज़",
|
|
521
555
|
"yue_alt-menu": "चीनी, कैंटोनीज़",
|
|
522
556
|
"za": "ज़ुआंग",
|
|
@@ -536,9 +570,7 @@
|
|
|
536
570
|
"zza": "ज़ाज़ा"
|
|
537
571
|
},
|
|
538
572
|
"scripts": {
|
|
539
|
-
"Adlm": "
|
|
540
|
-
"Aghb": "Aghb",
|
|
541
|
-
"Ahom": "Ahom",
|
|
573
|
+
"Adlm": "ऐडलम",
|
|
542
574
|
"Arab": "अरबी",
|
|
543
575
|
"Arab-alt-variant": "फ़ारसी-अरबी",
|
|
544
576
|
"Aran": "नस्तालीक़",
|
|
@@ -546,11 +578,8 @@
|
|
|
546
578
|
"Armn": "आर्मेनियाई",
|
|
547
579
|
"Avst": "अवेस्तन",
|
|
548
580
|
"Bali": "बाली",
|
|
549
|
-
"Bamu": "Bamu",
|
|
550
|
-
"Bass": "Bass",
|
|
551
581
|
"Batk": "बटकी",
|
|
552
582
|
"Beng": "बंगाली",
|
|
553
|
-
"Bhks": "Bhks",
|
|
554
583
|
"Blis": "ब्लिसिम्बॉल्स",
|
|
555
584
|
"Bopo": "बोपोमोफ़ो",
|
|
556
585
|
"Brah": "ब्रह्मी",
|
|
@@ -558,33 +587,24 @@
|
|
|
558
587
|
"Bugi": "बगिनीस",
|
|
559
588
|
"Buhd": "बुहिद",
|
|
560
589
|
"Cakm": "चकमा",
|
|
561
|
-
"Cans": "
|
|
590
|
+
"Cans": "यूनिफ़ाइड कैनेडियन एबोरिजनल सिलेबिक्स",
|
|
562
591
|
"Cari": "करैन",
|
|
563
592
|
"Cham": "चाम",
|
|
564
593
|
"Cher": "चेरोकी",
|
|
565
|
-
"Chrs": "Chrs",
|
|
566
594
|
"Cirt": "किर्थ",
|
|
567
595
|
"Copt": "कॉप्टिक",
|
|
568
|
-
"Cpmn": "Cpmn",
|
|
569
596
|
"Cprt": "काइप्रायट",
|
|
570
597
|
"Cyrl": "सिरिलिक",
|
|
571
598
|
"Cyrs": "ओल्ड चर्च स्लावोनिक सिरिलिक",
|
|
572
599
|
"Deva": "देवनागरी",
|
|
573
|
-
"Diak": "Diak",
|
|
574
|
-
"Dogr": "Dogr",
|
|
575
600
|
"Dsrt": "डेसरेट",
|
|
576
|
-
"Dupl": "Dupl",
|
|
577
601
|
"Egyd": "इजिप्शियन डेमोटिक",
|
|
578
602
|
"Egyh": "इजिप्शियन हाइरेटिक",
|
|
579
603
|
"Egyp": "इजिप्शियन हाइरोग्लिफ्स",
|
|
580
|
-
"Elba": "Elba",
|
|
581
|
-
"Elym": "Elym",
|
|
582
604
|
"Ethi": "इथियोपियाई",
|
|
583
605
|
"Geok": "जॉर्जियन खुतसुरी",
|
|
584
606
|
"Geor": "जॉर्जियन",
|
|
585
607
|
"Glag": "ग्लेगोलिटिक",
|
|
586
|
-
"Gong": "Gong",
|
|
587
|
-
"Gonm": "Gonm",
|
|
588
608
|
"Goth": "गोथिक",
|
|
589
609
|
"Gran": "ग्रन्थ",
|
|
590
610
|
"Grek": "यूनानी",
|
|
@@ -598,12 +618,9 @@
|
|
|
598
618
|
"Hans-alt-stand-alone": "सरलीकृत हान",
|
|
599
619
|
"Hant": "पारंपरिक",
|
|
600
620
|
"Hant-alt-stand-alone": "पारंपरिक हान",
|
|
601
|
-
"Hatr": "Hatr",
|
|
602
621
|
"Hebr": "हिब्रू",
|
|
603
622
|
"Hira": "हिरागाना",
|
|
604
|
-
"Hluw": "Hluw",
|
|
605
623
|
"Hmng": "पाहो ह्मोन्ग",
|
|
606
|
-
"Hmnp": "Hmnp",
|
|
607
624
|
"Hrkt": "जापानी सिलेबरीज़",
|
|
608
625
|
"Hung": "ऑल्ड हंगेरियन",
|
|
609
626
|
"Inds": "सिन्धु",
|
|
@@ -613,11 +630,8 @@
|
|
|
613
630
|
"Jpan": "जापानी",
|
|
614
631
|
"Kali": "कायाह ली",
|
|
615
632
|
"Kana": "काताकाना",
|
|
616
|
-
"Kawi": "Kawi",
|
|
617
633
|
"Khar": "खारोशथी",
|
|
618
634
|
"Khmr": "खमेर",
|
|
619
|
-
"Khoj": "Khoj",
|
|
620
|
-
"Kits": "Kits",
|
|
621
635
|
"Knda": "कन्नड़",
|
|
622
636
|
"Kore": "कोरियाई",
|
|
623
637
|
"Kthi": "कैथी",
|
|
@@ -630,43 +644,23 @@
|
|
|
630
644
|
"Limb": "लिम्बू",
|
|
631
645
|
"Lina": "लीनियर A",
|
|
632
646
|
"Linb": "लीनियर बी",
|
|
633
|
-
"Lisu": "Lisu",
|
|
634
647
|
"Lyci": "लिशियन",
|
|
635
648
|
"Lydi": "लिडियन",
|
|
636
|
-
"Mahj": "Mahj",
|
|
637
|
-
"Maka": "Maka",
|
|
638
649
|
"Mand": "मनडेन",
|
|
639
650
|
"Mani": "मनीशीन",
|
|
640
|
-
"Marc": "Marc",
|
|
641
651
|
"Maya": "मयान हाइरोग्लिफ्स",
|
|
642
|
-
"Medf": "Medf",
|
|
643
|
-
"Mend": "Mend",
|
|
644
|
-
"Merc": "Merc",
|
|
645
652
|
"Mero": "मेरोइटिक",
|
|
646
653
|
"Mlym": "मलयालम",
|
|
647
|
-
"Modi": "Modi",
|
|
648
654
|
"Mong": "मंगोलियाई",
|
|
649
655
|
"Moon": "मून",
|
|
650
|
-
"Mroo": "Mroo",
|
|
651
656
|
"Mtei": "मेइतेइ मायेक",
|
|
652
|
-
"Mult": "Mult",
|
|
653
657
|
"Mymr": "म्यांमार",
|
|
654
|
-
"Nagm": "Nagm",
|
|
655
|
-
"Nand": "Nand",
|
|
656
|
-
"Narb": "Narb",
|
|
657
|
-
"Nbat": "Nbat",
|
|
658
|
-
"Newa": "Newa",
|
|
659
658
|
"Nkoo": "एन्‘को",
|
|
660
|
-
"Nshu": "Nshu",
|
|
661
659
|
"Ogam": "ओगम",
|
|
662
|
-
"Olck": "
|
|
660
|
+
"Olck": "ओल चिकी",
|
|
663
661
|
"Orkh": "ओरखोन",
|
|
664
|
-
"Orya": "
|
|
665
|
-
"Osge": "Osge",
|
|
662
|
+
"Orya": "ओड़िया",
|
|
666
663
|
"Osma": "ओस्मान्या",
|
|
667
|
-
"Ougr": "Ougr",
|
|
668
|
-
"Palm": "Palm",
|
|
669
|
-
"Pauc": "Pauc",
|
|
670
664
|
"Perm": "ओल्ड परमिक",
|
|
671
665
|
"Phag": "फाग्स-पा",
|
|
672
666
|
"Phli": "इंस्क्रिपश्नल पाहलवी",
|
|
@@ -677,57 +671,39 @@
|
|
|
677
671
|
"Prti": "इंस्क्रिपश्नल पार्थियन",
|
|
678
672
|
"Qaag": "ज़ौजी",
|
|
679
673
|
"Rjng": "रीजांग",
|
|
680
|
-
"Rohg": "
|
|
674
|
+
"Rohg": "हनिफ़ि",
|
|
681
675
|
"Roro": "रोन्गोरोन्गो",
|
|
682
676
|
"Runr": "रूनिक",
|
|
683
677
|
"Samr": "समरिटन",
|
|
684
678
|
"Sara": "सराती",
|
|
685
|
-
"Sarb": "Sarb",
|
|
686
679
|
"Saur": "सौराष्ट्र",
|
|
687
680
|
"Sgnw": "सांकेतिक लेख",
|
|
688
681
|
"Shaw": "शावियान",
|
|
689
|
-
"Shrd": "Shrd",
|
|
690
|
-
"Sidd": "Sidd",
|
|
691
|
-
"Sind": "Sind",
|
|
692
682
|
"Sinh": "सिंहली",
|
|
693
|
-
"Sogd": "Sogd",
|
|
694
|
-
"Sogo": "Sogo",
|
|
695
|
-
"Sora": "Sora",
|
|
696
|
-
"Soyo": "Soyo",
|
|
697
683
|
"Sund": "सूडानी",
|
|
698
684
|
"Sylo": "सिलोती नागरी",
|
|
699
|
-
"Syrc": "
|
|
685
|
+
"Syrc": "सिरिएक",
|
|
700
686
|
"Syre": "एस्त्रेन्जेलो सिरिएक",
|
|
701
687
|
"Syrj": "पश्चिम सिरिएक",
|
|
702
688
|
"Syrn": "पूर्व सिरिएक",
|
|
703
689
|
"Tagb": "तगबन्वा",
|
|
704
|
-
"Takr": "Takr",
|
|
705
690
|
"Tale": "ताई ली",
|
|
706
691
|
"Talu": "नया ताई लु",
|
|
707
692
|
"Taml": "तमिल",
|
|
708
|
-
"Tang": "Tang",
|
|
709
693
|
"Tavt": "ताई विएत",
|
|
710
694
|
"Telu": "तेलुगू",
|
|
711
695
|
"Teng": "तेन्गवार",
|
|
712
|
-
"Tfng": "
|
|
696
|
+
"Tfng": "तिफ़िनाघ",
|
|
713
697
|
"Tglg": "टैगालोग",
|
|
714
698
|
"Thaa": "थाना",
|
|
715
699
|
"Thai": "थाई",
|
|
716
700
|
"Tibt": "तिब्बती",
|
|
717
|
-
"Tirh": "Tirh",
|
|
718
|
-
"Tnsa": "Tnsa",
|
|
719
|
-
"Toto": "Toto",
|
|
720
701
|
"Ugar": "युगारिटिक",
|
|
721
702
|
"Vaii": "वाई",
|
|
722
703
|
"Visp": "विसिबल स्पीच",
|
|
723
|
-
"Vith": "Vith",
|
|
724
|
-
"Wara": "Wara",
|
|
725
|
-
"Wcho": "Wcho",
|
|
726
704
|
"Xpeo": "पुरानी फारसी",
|
|
727
705
|
"Xsux": "सुमेरो अक्कादियन सुनिफॉर्म",
|
|
728
|
-
"Yezi": "Yezi",
|
|
729
706
|
"Yiii": "यी",
|
|
730
|
-
"Zanb": "Zanb",
|
|
731
707
|
"Zinh": "विरासत",
|
|
732
708
|
"Zmth": "गणितीय संकेतन",
|
|
733
709
|
"Zsye": "ईमोजी",
|
|
@@ -814,7 +790,7 @@
|
|
|
814
790
|
"CG": "कांगो – ब्राज़ाविल",
|
|
815
791
|
"CG-alt-variant": "कांगो (गणराज्य)",
|
|
816
792
|
"CH": "स्विट्ज़रलैंड",
|
|
817
|
-
"CI": "
|
|
793
|
+
"CI": "कोत दिवुआर",
|
|
818
794
|
"CI-alt-variant": "आइवरी कोस्ट",
|
|
819
795
|
"CK": "कुक द्वीपसमूह",
|
|
820
796
|
"CL": "चिली",
|
|
@@ -825,7 +801,7 @@
|
|
|
825
801
|
"CR": "कोस्टारिका",
|
|
826
802
|
"CU": "क्यूबा",
|
|
827
803
|
"CV": "केप वर्ड",
|
|
828
|
-
"CW": "
|
|
804
|
+
"CW": "कुरासाओ",
|
|
829
805
|
"CX": "क्रिसमस द्वीप",
|
|
830
806
|
"CY": "साइप्रस",
|
|
831
807
|
"CZ": "चेकिया",
|
|
@@ -954,6 +930,7 @@
|
|
|
954
930
|
"NR": "नाउरु",
|
|
955
931
|
"NU": "नीयू",
|
|
956
932
|
"NZ": "न्यूज़ीलैंड",
|
|
933
|
+
"NZ-alt-variant": "औटेआरोआ न्यूज़ीलैंड",
|
|
957
934
|
"OM": "ओमान",
|
|
958
935
|
"PA": "पनामा",
|
|
959
936
|
"PE": "पेरू",
|
|
@@ -1005,14 +982,15 @@
|
|
|
1005
982
|
"TF": "फ़्रांसीसी दक्षिणी क्षेत्र",
|
|
1006
983
|
"TG": "टोगो",
|
|
1007
984
|
"TH": "थाईलैंड",
|
|
1008
|
-
"TJ": "
|
|
985
|
+
"TJ": "ताजिकिस्तान",
|
|
1009
986
|
"TK": "तोकेलाउ",
|
|
1010
987
|
"TL": "तिमोर-लेस्त",
|
|
1011
988
|
"TL-alt-variant": "पूर्वी तिमोर",
|
|
1012
989
|
"TM": "तुर्कमेनिस्तान",
|
|
1013
990
|
"TN": "ट्यूनीशिया",
|
|
1014
991
|
"TO": "टोंगा",
|
|
1015
|
-
"TR": "
|
|
992
|
+
"TR": "तुर्किये",
|
|
993
|
+
"TR-alt-variant": "तुर्किये",
|
|
1016
994
|
"TT": "त्रिनिदाद और टोबैगो",
|
|
1017
995
|
"TV": "तुवालू",
|
|
1018
996
|
"TW": "ताईवान",
|
|
@@ -1059,8 +1037,8 @@
|
|
|
1059
1037
|
"short": "h:mm a"
|
|
1060
1038
|
},
|
|
1061
1039
|
"dateTimeFormats": {
|
|
1062
|
-
"full": "{1}
|
|
1063
|
-
"long": "{1}
|
|
1040
|
+
"full": "{1}, {0}",
|
|
1041
|
+
"long": "{1}, {0}",
|
|
1064
1042
|
"medium": "{1}, {0}",
|
|
1065
1043
|
"short": "{1}, {0}",
|
|
1066
1044
|
"availableFormats": {
|
|
@@ -1228,7 +1206,7 @@
|
|
|
1228
1206
|
"M": "MMM–MMM"
|
|
1229
1207
|
},
|
|
1230
1208
|
"MMMd": {
|
|
1231
|
-
"d": "d MMM
|
|
1209
|
+
"d": "d – d MMM",
|
|
1232
1210
|
"M": "d MMM – d MMM"
|
|
1233
1211
|
},
|
|
1234
1212
|
"MMMEd": {
|
|
@@ -1587,8 +1565,8 @@
|
|
|
1587
1565
|
"short": "h:mm a"
|
|
1588
1566
|
},
|
|
1589
1567
|
"dateTimeFormats": {
|
|
1590
|
-
"full": "{1}
|
|
1591
|
-
"long": "{1}
|
|
1568
|
+
"full": "{1}, {0}",
|
|
1569
|
+
"long": "{1}, {0}",
|
|
1592
1570
|
"medium": "{1}, {0}",
|
|
1593
1571
|
"short": "{1}, {0}",
|
|
1594
1572
|
"availableFormats": {
|
|
@@ -2105,8 +2083,8 @@
|
|
|
2105
2083
|
"short": "h:mm a"
|
|
2106
2084
|
},
|
|
2107
2085
|
"dateTimeFormats": {
|
|
2108
|
-
"full": "{1}
|
|
2109
|
-
"long": "{1}
|
|
2086
|
+
"full": "{1}, {0}",
|
|
2087
|
+
"long": "{1}, {0}",
|
|
2110
2088
|
"medium": "{1}, {0}",
|
|
2111
2089
|
"short": "{1}, {0}",
|
|
2112
2090
|
"availableFormats": {
|
|
@@ -2643,8 +2621,8 @@
|
|
|
2643
2621
|
"short": "h:mm a"
|
|
2644
2622
|
},
|
|
2645
2623
|
"dateTimeFormats": {
|
|
2646
|
-
"full": "{1}
|
|
2647
|
-
"long": "{1}
|
|
2624
|
+
"full": "{1}, {0}",
|
|
2625
|
+
"long": "{1}, {0}",
|
|
2648
2626
|
"medium": "{1}, {0}",
|
|
2649
2627
|
"short": "{1}, {0}",
|
|
2650
2628
|
"availableFormats": {
|
|
@@ -3161,8 +3139,8 @@
|
|
|
3161
3139
|
"short": "h:mm a"
|
|
3162
3140
|
},
|
|
3163
3141
|
"dateTimeFormats": {
|
|
3164
|
-
"full": "{1}
|
|
3165
|
-
"long": "{1}
|
|
3142
|
+
"full": "{1}, {0}",
|
|
3143
|
+
"long": "{1}, {0}",
|
|
3166
3144
|
"medium": "{1}, {0}",
|
|
3167
3145
|
"short": "{1}, {0}",
|
|
3168
3146
|
"availableFormats": {
|
|
@@ -4100,6 +4078,7 @@
|
|
|
4100
4078
|
"Cayman": "कैमेन",
|
|
4101
4079
|
"Chicago": "शिकागो",
|
|
4102
4080
|
"Chihuahua": "चिहुआहुआ",
|
|
4081
|
+
"Ciudad_Juarez": "स्युदाद ह्वारेज़",
|
|
4103
4082
|
"Costa_Rica": "कोस्टा रिका",
|
|
4104
4083
|
"Creston": "क्रेस्टन",
|
|
4105
4084
|
"Cuiaba": "क्यूआबा",
|
|
@@ -4558,30 +4537,30 @@
|
|
|
4558
4537
|
"range": "{0}–{1}"
|
|
4559
4538
|
},
|
|
4560
4539
|
"currencyFormat-short": {
|
|
4561
|
-
"1000-one": "¤0 हज़ार",
|
|
4562
|
-
"1000-other": "¤0 हज़ार",
|
|
4563
|
-
"10000-one": "¤00 हज़ार",
|
|
4564
|
-
"10000-other": "¤00 हज़ार",
|
|
4565
|
-
"100000-one": "¤0 लाख",
|
|
4566
|
-
"100000-other": "¤0 लाख",
|
|
4567
|
-
"1000000-one": "¤00 लाख",
|
|
4568
|
-
"1000000-other": "¤00 लाख",
|
|
4540
|
+
"1000-one": "¤ 0 हज़ार",
|
|
4541
|
+
"1000-other": "¤ 0 हज़ार",
|
|
4542
|
+
"10000-one": "¤ 00 हज़ार",
|
|
4543
|
+
"10000-other": "¤ 00 हज़ार",
|
|
4544
|
+
"100000-one": "¤ 0 लाख",
|
|
4545
|
+
"100000-other": "¤ 0 लाख",
|
|
4546
|
+
"1000000-one": "¤ 00 लाख",
|
|
4547
|
+
"1000000-other": "¤ 00 लाख",
|
|
4569
4548
|
"10000000-one": "¤0 क॰",
|
|
4570
|
-
"10000000-other": "¤0 क॰",
|
|
4571
|
-
"100000000-one": "¤00 क॰",
|
|
4572
|
-
"100000000-other": "¤00 क॰",
|
|
4573
|
-
"1000000000-one": "¤0 अ॰",
|
|
4574
|
-
"1000000000-other": "¤0 अ॰",
|
|
4575
|
-
"10000000000-one": "¤00 अ॰",
|
|
4576
|
-
"10000000000-other": "¤00 अ॰",
|
|
4577
|
-
"100000000000-one": "¤0 ख॰",
|
|
4578
|
-
"100000000000-other": "¤0 ख॰",
|
|
4579
|
-
"1000000000000-one": "¤00 ख॰",
|
|
4580
|
-
"1000000000000-other": "¤00 ख॰",
|
|
4581
|
-
"10000000000000-one": "¤0 नील",
|
|
4582
|
-
"10000000000000-other": "¤0 नील",
|
|
4583
|
-
"100000000000000-one": "¤00 नील",
|
|
4584
|
-
"100000000000000-other": "¤00 नील"
|
|
4549
|
+
"10000000-other": "¤ 0 क॰",
|
|
4550
|
+
"100000000-one": "¤ 00 क॰",
|
|
4551
|
+
"100000000-other": "¤ 00 क॰",
|
|
4552
|
+
"1000000000-one": "¤ 0 अ॰",
|
|
4553
|
+
"1000000000-other": "¤ 0 अ॰",
|
|
4554
|
+
"10000000000-one": "¤ 00 अ॰",
|
|
4555
|
+
"10000000000-other": "¤ 00 अ॰",
|
|
4556
|
+
"100000000000-one": "¤ 0 ख॰",
|
|
4557
|
+
"100000000000-other": "¤ 0 ख॰",
|
|
4558
|
+
"1000000000000-one": "¤ 00 ख॰",
|
|
4559
|
+
"1000000000000-other": "¤ 00 ख॰",
|
|
4560
|
+
"10000000000000-one": "¤ 0 नील",
|
|
4561
|
+
"10000000000000-other": "¤ 0 नील",
|
|
4562
|
+
"100000000000000-one": "¤ 00 नील",
|
|
4563
|
+
"100000000000000-other": "¤ 00 नील"
|
|
4585
4564
|
},
|
|
4586
4565
|
"symbols-latn-decimal": ".",
|
|
4587
4566
|
"symbols-latn-group": ",",
|
|
@@ -4708,16 +4687,16 @@
|
|
|
4708
4687
|
"unitPrefixPattern": "योटा {0}"
|
|
4709
4688
|
},
|
|
4710
4689
|
"1024p1": {
|
|
4711
|
-
"unitPrefixPattern": "
|
|
4690
|
+
"unitPrefixPattern": "कि.बी.{0}"
|
|
4712
4691
|
},
|
|
4713
4692
|
"1024p2": {
|
|
4714
|
-
"unitPrefixPattern": "
|
|
4693
|
+
"unitPrefixPattern": "मे.बी.{0}"
|
|
4715
4694
|
},
|
|
4716
4695
|
"1024p3": {
|
|
4717
|
-
"unitPrefixPattern": "
|
|
4696
|
+
"unitPrefixPattern": "जी.बी.{0}"
|
|
4718
4697
|
},
|
|
4719
4698
|
"1024p4": {
|
|
4720
|
-
"unitPrefixPattern": "
|
|
4699
|
+
"unitPrefixPattern": "टे.बी.{0}"
|
|
4721
4700
|
},
|
|
4722
4701
|
"1024p5": {
|
|
4723
4702
|
"unitPrefixPattern": "पे.बी.{0}"
|
|
@@ -4749,8 +4728,8 @@
|
|
|
4749
4728
|
},
|
|
4750
4729
|
"acceleration-g-force": {
|
|
4751
4730
|
"displayName": "गुरुत्व बल",
|
|
4752
|
-
"unitPattern-count-one": "{0}
|
|
4753
|
-
"unitPattern-count-other": "{0}
|
|
4731
|
+
"unitPattern-count-one": "{0} गु॰",
|
|
4732
|
+
"unitPattern-count-other": "{0} गु॰"
|
|
4754
4733
|
},
|
|
4755
4734
|
"acceleration-meter-per-square-second": {
|
|
4756
4735
|
"displayName": "मीटर/से²",
|
|
@@ -4854,6 +4833,7 @@
|
|
|
4854
4833
|
},
|
|
4855
4834
|
"concentr-item": {
|
|
4856
4835
|
"displayName": "item",
|
|
4836
|
+
"unitPattern-count-one": "{0} item",
|
|
4857
4837
|
"unitPattern-count-other": "{0} item"
|
|
4858
4838
|
},
|
|
4859
4839
|
"concentr-permillion": {
|
|
@@ -4873,6 +4853,7 @@
|
|
|
4873
4853
|
},
|
|
4874
4854
|
"concentr-permyriad": {
|
|
4875
4855
|
"displayName": "‱",
|
|
4856
|
+
"unitPattern-count-one": "{0}‱",
|
|
4876
4857
|
"unitPattern-count-other": "{0}‱"
|
|
4877
4858
|
},
|
|
4878
4859
|
"concentr-mole": {
|
|
@@ -4971,6 +4952,12 @@
|
|
|
4971
4952
|
"unitPattern-count-other": "{0} वर्ष",
|
|
4972
4953
|
"perUnitPattern": "{0}/वर्ष"
|
|
4973
4954
|
},
|
|
4955
|
+
"duration-quarter": {
|
|
4956
|
+
"displayName": "तिमा",
|
|
4957
|
+
"unitPattern-count-one": "{0} तिमा",
|
|
4958
|
+
"unitPattern-count-other": "{0} तिमा",
|
|
4959
|
+
"perUnitPattern": "{0}/ति"
|
|
4960
|
+
},
|
|
4974
4961
|
"duration-month": {
|
|
4975
4962
|
"displayName": "माह",
|
|
4976
4963
|
"unitPattern-count-one": "{0} माह",
|
|
@@ -5053,19 +5040,19 @@
|
|
|
5053
5040
|
"unitPattern-count-other": "{0} cal"
|
|
5054
5041
|
},
|
|
5055
5042
|
"energy-foodcalorie": {
|
|
5056
|
-
"displayName": "
|
|
5043
|
+
"displayName": "कैलोरी",
|
|
5057
5044
|
"unitPattern-count-one": "{0} Cal",
|
|
5058
5045
|
"unitPattern-count-other": "{0} Cal"
|
|
5059
5046
|
},
|
|
5060
5047
|
"energy-kilojoule": {
|
|
5061
5048
|
"displayName": "किलो जूल",
|
|
5062
|
-
"unitPattern-count-one": "{0}
|
|
5063
|
-
"unitPattern-count-other": "{0}
|
|
5049
|
+
"unitPattern-count-one": "{0} कि॰जू॰",
|
|
5050
|
+
"unitPattern-count-other": "{0} कि॰जू॰"
|
|
5064
5051
|
},
|
|
5065
5052
|
"energy-joule": {
|
|
5066
5053
|
"displayName": "जूल",
|
|
5067
|
-
"unitPattern-count-one": "{0}
|
|
5068
|
-
"unitPattern-count-other": "{0}
|
|
5054
|
+
"unitPattern-count-one": "{0} जू॰",
|
|
5055
|
+
"unitPattern-count-other": "{0} जू॰"
|
|
5069
5056
|
},
|
|
5070
5057
|
"energy-kilowatt-hour": {
|
|
5071
5058
|
"displayName": "kWh",
|
|
@@ -5074,10 +5061,12 @@
|
|
|
5074
5061
|
},
|
|
5075
5062
|
"energy-electronvolt": {
|
|
5076
5063
|
"displayName": "eV",
|
|
5064
|
+
"unitPattern-count-one": "{0} eV",
|
|
5077
5065
|
"unitPattern-count-other": "{0} eV"
|
|
5078
5066
|
},
|
|
5079
5067
|
"energy-british-thermal-unit": {
|
|
5080
5068
|
"displayName": "Btu",
|
|
5069
|
+
"unitPattern-count-one": "{0} Btu",
|
|
5081
5070
|
"unitPattern-count-other": "{0} Btu"
|
|
5082
5071
|
},
|
|
5083
5072
|
"energy-therm-us": {
|
|
@@ -5087,6 +5076,7 @@
|
|
|
5087
5076
|
},
|
|
5088
5077
|
"force-pound-force": {
|
|
5089
5078
|
"displayName": "lbf",
|
|
5079
|
+
"unitPattern-count-one": "{0} lbf",
|
|
5090
5080
|
"unitPattern-count-other": "{0} lbf"
|
|
5091
5081
|
},
|
|
5092
5082
|
"force-newton": {
|
|
@@ -5121,22 +5111,37 @@
|
|
|
5121
5111
|
},
|
|
5122
5112
|
"graphics-em": {
|
|
5123
5113
|
"displayName": "em",
|
|
5114
|
+
"unitPattern-count-one": "{0} em",
|
|
5124
5115
|
"unitPattern-count-other": "{0} em"
|
|
5125
5116
|
},
|
|
5126
5117
|
"graphics-pixel": {
|
|
5127
5118
|
"displayName": "पिक्सेल",
|
|
5119
|
+
"unitPattern-count-one": "{0} px",
|
|
5128
5120
|
"unitPattern-count-other": "{0} px"
|
|
5129
5121
|
},
|
|
5130
5122
|
"graphics-megapixel": {
|
|
5131
5123
|
"displayName": "मेगापिक्सेल",
|
|
5124
|
+
"unitPattern-count-one": "{0} MP",
|
|
5132
5125
|
"unitPattern-count-other": "{0} MP"
|
|
5133
5126
|
},
|
|
5134
5127
|
"graphics-pixel-per-centimeter": {
|
|
5135
5128
|
"displayName": "ppcm",
|
|
5129
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5136
5130
|
"unitPattern-count-other": "{0} ppcm"
|
|
5137
5131
|
},
|
|
5138
5132
|
"graphics-pixel-per-inch": {
|
|
5139
5133
|
"displayName": "ppi",
|
|
5134
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5135
|
+
"unitPattern-count-other": "{0} ppi"
|
|
5136
|
+
},
|
|
5137
|
+
"graphics-dot-per-centimeter": {
|
|
5138
|
+
"displayName": "ppcm",
|
|
5139
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5140
|
+
"unitPattern-count-other": "{0} ppcm"
|
|
5141
|
+
},
|
|
5142
|
+
"graphics-dot-per-inch": {
|
|
5143
|
+
"displayName": "ppi",
|
|
5144
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5140
5145
|
"unitPattern-count-other": "{0} ppi"
|
|
5141
5146
|
},
|
|
5142
5147
|
"graphics-dot": {
|
|
@@ -5146,6 +5151,7 @@
|
|
|
5146
5151
|
},
|
|
5147
5152
|
"length-earth-radius": {
|
|
5148
5153
|
"displayName": "R⊕",
|
|
5154
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5149
5155
|
"unitPattern-count-other": "{0} R⊕"
|
|
5150
5156
|
},
|
|
5151
5157
|
"length-kilometer": {
|
|
@@ -5255,6 +5261,7 @@
|
|
|
5255
5261
|
},
|
|
5256
5262
|
"length-solar-radius": {
|
|
5257
5263
|
"displayName": "R☉",
|
|
5264
|
+
"unitPattern-count-one": "{0} R☉",
|
|
5258
5265
|
"unitPattern-count-other": "{0} R☉"
|
|
5259
5266
|
},
|
|
5260
5267
|
"light-lux": {
|
|
@@ -5264,20 +5271,23 @@
|
|
|
5264
5271
|
},
|
|
5265
5272
|
"light-candela": {
|
|
5266
5273
|
"displayName": "cd",
|
|
5274
|
+
"unitPattern-count-one": "{0} cd",
|
|
5267
5275
|
"unitPattern-count-other": "{0} cd"
|
|
5268
5276
|
},
|
|
5269
5277
|
"light-lumen": {
|
|
5270
5278
|
"displayName": "lm",
|
|
5279
|
+
"unitPattern-count-one": "{0} lm",
|
|
5271
5280
|
"unitPattern-count-other": "{0} lm"
|
|
5272
5281
|
},
|
|
5273
5282
|
"light-solar-luminosity": {
|
|
5274
5283
|
"displayName": "L☉",
|
|
5284
|
+
"unitPattern-count-one": "{0} L☉",
|
|
5275
5285
|
"unitPattern-count-other": "{0} L☉"
|
|
5276
5286
|
},
|
|
5277
|
-
"mass-
|
|
5287
|
+
"mass-tonne": {
|
|
5278
5288
|
"displayName": "मीट्रिक टन",
|
|
5279
5289
|
"unitPattern-count-one": "{0} मीट्रिक टन",
|
|
5280
|
-
"unitPattern-count-other": "{0}
|
|
5290
|
+
"unitPattern-count-other": "{0} मी टन"
|
|
5281
5291
|
},
|
|
5282
5292
|
"mass-kilogram": {
|
|
5283
5293
|
"displayName": "कि॰ग्रा॰",
|
|
@@ -5340,10 +5350,12 @@
|
|
|
5340
5350
|
},
|
|
5341
5351
|
"mass-earth-mass": {
|
|
5342
5352
|
"displayName": "M⊕",
|
|
5353
|
+
"unitPattern-count-one": "{0} M⊕",
|
|
5343
5354
|
"unitPattern-count-other": "{0} M⊕"
|
|
5344
5355
|
},
|
|
5345
5356
|
"mass-solar-mass": {
|
|
5346
5357
|
"displayName": "M☉",
|
|
5358
|
+
"unitPattern-count-one": "{0} M☉",
|
|
5347
5359
|
"unitPattern-count-other": "{0} M☉"
|
|
5348
5360
|
},
|
|
5349
5361
|
"mass-grain": {
|
|
@@ -5473,6 +5485,7 @@
|
|
|
5473
5485
|
},
|
|
5474
5486
|
"torque-pound-force-foot": {
|
|
5475
5487
|
"displayName": "lbf⋅ft",
|
|
5488
|
+
"unitPattern-count-one": "{0} lbf⋅ft",
|
|
5476
5489
|
"unitPattern-count-other": "{0} lbf⋅ft"
|
|
5477
5490
|
},
|
|
5478
5491
|
"torque-newton-meter": {
|
|
@@ -5524,8 +5537,8 @@
|
|
|
5524
5537
|
},
|
|
5525
5538
|
"volume-hectoliter": {
|
|
5526
5539
|
"displayName": "है॰ली॰",
|
|
5527
|
-
"unitPattern-count-one": "{0}
|
|
5528
|
-
"unitPattern-count-other": "{0}
|
|
5540
|
+
"unitPattern-count-one": "{0} हे॰ली॰",
|
|
5541
|
+
"unitPattern-count-other": "{0} हे॰ली॰"
|
|
5529
5542
|
},
|
|
5530
5543
|
"volume-liter": {
|
|
5531
5544
|
"displayName": "लीटर",
|
|
@@ -5565,8 +5578,8 @@
|
|
|
5565
5578
|
},
|
|
5566
5579
|
"volume-bushel": {
|
|
5567
5580
|
"displayName": "बुशल",
|
|
5568
|
-
"unitPattern-count-one": "{0}
|
|
5569
|
-
"unitPattern-count-other": "{0}
|
|
5581
|
+
"unitPattern-count-one": "{0} बुश॰",
|
|
5582
|
+
"unitPattern-count-other": "{0} बुश॰"
|
|
5570
5583
|
},
|
|
5571
5584
|
"volume-gallon": {
|
|
5572
5585
|
"displayName": "गैलन",
|
|
@@ -5602,6 +5615,7 @@
|
|
|
5602
5615
|
},
|
|
5603
5616
|
"volume-fluid-ounce-imperial": {
|
|
5604
5617
|
"displayName": "Imp. fl oz",
|
|
5618
|
+
"unitPattern-count-one": "{0} fl oz Imp.",
|
|
5605
5619
|
"unitPattern-count-other": "{0} fl oz Imp."
|
|
5606
5620
|
},
|
|
5607
5621
|
"volume-tablespoon": {
|
|
@@ -5763,41 +5777,56 @@
|
|
|
5763
5777
|
},
|
|
5764
5778
|
"eras-gregorian": {
|
|
5765
5779
|
"0": {
|
|
5780
|
+
"_code": "gregory-inverse",
|
|
5781
|
+
"_aliases": "bc bce",
|
|
5766
5782
|
"_end": "0-12-31"
|
|
5767
5783
|
},
|
|
5768
5784
|
"1": {
|
|
5785
|
+
"_code": "gregory",
|
|
5786
|
+
"_aliases": "ad ce",
|
|
5769
5787
|
"_start": "1-01-01"
|
|
5770
5788
|
}
|
|
5771
5789
|
},
|
|
5772
5790
|
"eras-islamic": {
|
|
5773
5791
|
"0": {
|
|
5792
|
+
"_code": "islamic",
|
|
5793
|
+
"_aliases": "ah",
|
|
5774
5794
|
"_start": "622-7-15"
|
|
5775
5795
|
}
|
|
5776
5796
|
},
|
|
5777
5797
|
"eras-persian": {
|
|
5778
5798
|
"0": {
|
|
5799
|
+
"_code": "persian",
|
|
5800
|
+
"_aliases": "ap",
|
|
5779
5801
|
"_start": "622-01-01"
|
|
5780
5802
|
}
|
|
5781
5803
|
},
|
|
5782
5804
|
"eras-buddhist": {
|
|
5783
5805
|
"0": {
|
|
5806
|
+
"_code": "buddhist",
|
|
5807
|
+
"_aliases": "be",
|
|
5784
5808
|
"_start": "-542-01-01"
|
|
5785
5809
|
}
|
|
5786
5810
|
},
|
|
5787
5811
|
"eras-japanese": {
|
|
5788
5812
|
"232": {
|
|
5813
|
+
"_code": "meiji",
|
|
5789
5814
|
"_start": "1868-9-8"
|
|
5790
5815
|
},
|
|
5791
5816
|
"233": {
|
|
5817
|
+
"_code": "taisho",
|
|
5792
5818
|
"_start": "1912-7-30"
|
|
5793
5819
|
},
|
|
5794
5820
|
"234": {
|
|
5821
|
+
"_code": "showa",
|
|
5795
5822
|
"_start": "1926-12-25"
|
|
5796
5823
|
},
|
|
5797
5824
|
"235": {
|
|
5825
|
+
"_code": "heisei",
|
|
5798
5826
|
"_start": "1989-1-8"
|
|
5799
5827
|
},
|
|
5800
5828
|
"236": {
|
|
5829
|
+
"_code": "reiwa",
|
|
5801
5830
|
"_start": "2019-5-1"
|
|
5802
5831
|
}
|
|
5803
5832
|
},
|