@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": "ערבית ספרותית",
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
"as": "אסאמית",
|
|
33
34
|
"asa": "אסו",
|
|
34
35
|
"ast": "אסטורית",
|
|
36
|
+
"atj": "אטיקמק",
|
|
35
37
|
"av": "אווארית",
|
|
36
38
|
"awa": "אוואדית",
|
|
37
39
|
"ay": "איימארית",
|
|
@@ -92,13 +94,21 @@
|
|
|
92
94
|
"ckb": "כורדית סוראנית",
|
|
93
95
|
"ckb_alt-menu": "כורדית סוראנית",
|
|
94
96
|
"ckb_alt-variant": "כורדית סוראנית",
|
|
97
|
+
"clc": "צ׳ילקוטין",
|
|
95
98
|
"co": "קורסיקנית",
|
|
96
99
|
"cop": "קופטית",
|
|
97
100
|
"cr": "קרי",
|
|
101
|
+
"crg": "מצ׳יף",
|
|
98
102
|
"crh": "טטרית של קרים",
|
|
103
|
+
"crj": "קרי דרום מזרחי",
|
|
104
|
+
"crk": "קרי מישורים",
|
|
105
|
+
"crl": "קרי צפון מזרחי",
|
|
106
|
+
"crm": "מוס קרי",
|
|
107
|
+
"crr": "אלגונקוויאן בקרוליינה",
|
|
99
108
|
"crs": "קריאולית (סיישל)",
|
|
100
109
|
"cs": "צ׳כית",
|
|
101
110
|
"csb": "קשובית",
|
|
111
|
+
"csw": "סקרי של אזור הביצות",
|
|
102
112
|
"cu": "סלאבית כנסייתית עתיקה",
|
|
103
113
|
"cv": "צ׳ובאש",
|
|
104
114
|
"cy": "וולשית",
|
|
@@ -107,7 +117,6 @@
|
|
|
107
117
|
"dar": "דרגווה",
|
|
108
118
|
"dav": "טאיטה",
|
|
109
119
|
"de": "גרמנית",
|
|
110
|
-
"de_AT": "גרמנית (אוסטריה)",
|
|
111
120
|
"de_CH": "גרמנית (שוויץ)",
|
|
112
121
|
"del": "דלאוור",
|
|
113
122
|
"den": "סלאבית",
|
|
@@ -131,18 +140,10 @@
|
|
|
131
140
|
"el": "יוונית",
|
|
132
141
|
"elx": "עילמית",
|
|
133
142
|
"en": "אנגלית",
|
|
134
|
-
"en_AU": "אנגלית (אוסטרליה)",
|
|
135
|
-
"en_CA": "אנגלית (קנדה)",
|
|
136
|
-
"en_GB": "אנגלית (בריטניה)",
|
|
137
|
-
"en_GB-alt-short": "אנגלית (בריטניה)",
|
|
138
|
-
"en_US": "אנגלית (ארצות הברית)",
|
|
139
143
|
"en_US-alt-short": "אנגלית (ארה״ב)",
|
|
140
144
|
"enm": "אנגלית תיכונה",
|
|
141
145
|
"eo": "אספרנטו",
|
|
142
146
|
"es": "ספרדית",
|
|
143
|
-
"es_419": "ספרדית (אמריקה הלטינית)",
|
|
144
|
-
"es_ES": "ספרדית (ספרד)",
|
|
145
|
-
"es_MX": "ספרדית (מקסיקו)",
|
|
146
147
|
"et": "אסטונית",
|
|
147
148
|
"eu": "בסקית",
|
|
148
149
|
"ewo": "אוונדו",
|
|
@@ -157,7 +158,6 @@
|
|
|
157
158
|
"fo": "פארואזית",
|
|
158
159
|
"fon": "פון",
|
|
159
160
|
"fr": "צרפתית",
|
|
160
|
-
"fr_CA": "צרפתית (קנדה)",
|
|
161
161
|
"fr_CH": "צרפתית (שוויץ)",
|
|
162
162
|
"frc": "צרפתית קייג׳ונית",
|
|
163
163
|
"frm": "צרפתית תיכונה",
|
|
@@ -193,8 +193,10 @@
|
|
|
193
193
|
"hai": "האידה",
|
|
194
194
|
"hak": "סינית האקה",
|
|
195
195
|
"haw": "הוואית",
|
|
196
|
+
"hax": "האידה דרומית",
|
|
196
197
|
"he": "עברית",
|
|
197
198
|
"hi": "הינדי",
|
|
199
|
+
"hi_Latn-alt-variant": "הינגליש",
|
|
198
200
|
"hil": "היליגאינון",
|
|
199
201
|
"hit": "חתית",
|
|
200
202
|
"hmn": "המונג",
|
|
@@ -205,6 +207,7 @@
|
|
|
205
207
|
"ht": "קריאולית (האיטי)",
|
|
206
208
|
"hu": "הונגרית",
|
|
207
209
|
"hup": "הופה",
|
|
210
|
+
"hur": "הלקומלם",
|
|
208
211
|
"hy": "ארמנית",
|
|
209
212
|
"hz": "הררו",
|
|
210
213
|
"ia": "אינטרלינגואה",
|
|
@@ -215,6 +218,7 @@
|
|
|
215
218
|
"ig": "איגבו",
|
|
216
219
|
"ii": "סצ׳ואן יי",
|
|
217
220
|
"ik": "אינופיאק",
|
|
221
|
+
"ikt": "אינוקטיטוט במערב קנדה",
|
|
218
222
|
"ilo": "אילוקו",
|
|
219
223
|
"inh": "אינגושית",
|
|
220
224
|
"io": "אידו",
|
|
@@ -273,6 +277,7 @@
|
|
|
273
277
|
"kut": "קוטנאי",
|
|
274
278
|
"kv": "קומי",
|
|
275
279
|
"kw": "קורנית",
|
|
280
|
+
"kwk": "קוואקוואלה",
|
|
276
281
|
"ky": "קירגיזית",
|
|
277
282
|
"la": "לטינית",
|
|
278
283
|
"lad": "לדינו",
|
|
@@ -284,6 +289,7 @@
|
|
|
284
289
|
"lg": "גאנדה",
|
|
285
290
|
"li": "לימבורגית",
|
|
286
291
|
"lij": "ליגורית",
|
|
292
|
+
"lil": "לילואט",
|
|
287
293
|
"lkt": "לקוטה",
|
|
288
294
|
"ln": "לינגלה",
|
|
289
295
|
"lo": "לאו",
|
|
@@ -291,6 +297,7 @@
|
|
|
291
297
|
"lou": "קריאולית לואיזיאנית",
|
|
292
298
|
"loz": "לוזית",
|
|
293
299
|
"lrc": "לורית צפונית",
|
|
300
|
+
"lsm": "סמיה",
|
|
294
301
|
"lt": "ליטאית",
|
|
295
302
|
"lu": "לובה-קטנגה",
|
|
296
303
|
"lua": "לובה-לולואה",
|
|
@@ -326,9 +333,10 @@
|
|
|
326
333
|
"mn": "מונגולית",
|
|
327
334
|
"mnc": "מנצ׳ו",
|
|
328
335
|
"mni": "מניפורית",
|
|
336
|
+
"moe": "אינו-אמון",
|
|
329
337
|
"moh": "מוהוק",
|
|
330
338
|
"mos": "מוסי",
|
|
331
|
-
"mr": "
|
|
339
|
+
"mr": "מראטהית",
|
|
332
340
|
"ms": "מלאית",
|
|
333
341
|
"mt": "מלטית",
|
|
334
342
|
"mua": "מונדאנג",
|
|
@@ -354,7 +362,7 @@
|
|
|
354
362
|
"nia": "ניאס",
|
|
355
363
|
"niu": "ניואן",
|
|
356
364
|
"nl": "הולנדית",
|
|
357
|
-
"nl_BE": "פלמית",
|
|
365
|
+
"nl_BE": "הולנדית (פלמית)",
|
|
358
366
|
"nmg": "קוואסיו",
|
|
359
367
|
"nn": "נורווגית חדשה",
|
|
360
368
|
"nnh": "נגיאמבון",
|
|
@@ -374,6 +382,11 @@
|
|
|
374
382
|
"nzi": "נזימה",
|
|
375
383
|
"oc": "אוקסיטנית",
|
|
376
384
|
"oj": "אוג׳יבווה",
|
|
385
|
+
"ojb": "אוג׳יבווה צפון מערבית",
|
|
386
|
+
"ojc": "אוג׳יבווה (מרכז)",
|
|
387
|
+
"ojs": "אוג׳י-קרי",
|
|
388
|
+
"ojw": "אוביג׳ווה מערבית",
|
|
389
|
+
"oka": "אוקאנגן",
|
|
377
390
|
"om": "אורומו",
|
|
378
391
|
"or": "אורייה",
|
|
379
392
|
"os": "אוסטית",
|
|
@@ -385,19 +398,19 @@
|
|
|
385
398
|
"pam": "פמפאניה",
|
|
386
399
|
"pap": "פפיאמנטו",
|
|
387
400
|
"pau": "פלוואן",
|
|
388
|
-
"pcm": "
|
|
401
|
+
"pcm": "פידגין ניגרי",
|
|
389
402
|
"peo": "פרסית עתיקה",
|
|
390
403
|
"phn": "פיניקית",
|
|
391
404
|
"pi": "פאלי",
|
|
405
|
+
"pis": "פייג׳ין",
|
|
392
406
|
"pl": "פולנית",
|
|
393
407
|
"pon": "פונפיאן",
|
|
408
|
+
"pqm": "מליסיט-פאסמקוודי",
|
|
394
409
|
"prg": "פרוסית",
|
|
395
410
|
"pro": "פרובנסאל עתיקה",
|
|
396
411
|
"ps": "פאשטו",
|
|
397
412
|
"ps_alt-variant": "פושטו",
|
|
398
413
|
"pt": "פורטוגזית",
|
|
399
|
-
"pt_BR": "פורטוגזית (ברזיל)",
|
|
400
|
-
"pt_PT": "פורטוגזית (פורטוגל)",
|
|
401
414
|
"qu": "קצ׳ואה",
|
|
402
415
|
"quc": "קיצ׳ה",
|
|
403
416
|
"raj": "ראג׳סטאני",
|
|
@@ -443,6 +456,7 @@
|
|
|
443
456
|
"sid": "סידאמו",
|
|
444
457
|
"sk": "סלובקית",
|
|
445
458
|
"sl": "סלובנית",
|
|
459
|
+
"slh": "לשוטסיד",
|
|
446
460
|
"sm": "סמואית",
|
|
447
461
|
"sma": "סאמי דרומית",
|
|
448
462
|
"smj": "לולה סאמי",
|
|
@@ -459,6 +473,7 @@
|
|
|
459
473
|
"ss": "סאווזי",
|
|
460
474
|
"ssy": "סאהו",
|
|
461
475
|
"st": "סותו דרומית",
|
|
476
|
+
"str": "סאליש מיצרי חואן דה פוקה",
|
|
462
477
|
"su": "סונדנזית",
|
|
463
478
|
"suk": "סוקומה",
|
|
464
479
|
"sus": "סוסו",
|
|
@@ -470,13 +485,16 @@
|
|
|
470
485
|
"syc": "סירית קלאסית",
|
|
471
486
|
"syr": "סורית",
|
|
472
487
|
"ta": "טמילית",
|
|
488
|
+
"tce": "טצ׳ון דרומית",
|
|
473
489
|
"te": "טלוגו",
|
|
474
490
|
"tem": "טימנה",
|
|
475
491
|
"teo": "טסו",
|
|
476
492
|
"ter": "טרנו",
|
|
477
493
|
"tet": "טטום",
|
|
478
494
|
"tg": "טג׳יקית",
|
|
495
|
+
"tgx": "טגישית",
|
|
479
496
|
"th": "תאית",
|
|
497
|
+
"tht": "טלתנית",
|
|
480
498
|
"ti": "תיגרינית",
|
|
481
499
|
"tig": "טיגרית",
|
|
482
500
|
"tiv": "טיב",
|
|
@@ -489,12 +507,14 @@
|
|
|
489
507
|
"tn": "סוואנה",
|
|
490
508
|
"to": "טונגאית",
|
|
491
509
|
"tog": "ניאסה טונגה",
|
|
510
|
+
"tok": "טוקי פונה",
|
|
492
511
|
"tpi": "טוק פיסין",
|
|
493
512
|
"tr": "טורקית",
|
|
494
513
|
"trv": "טרוקו",
|
|
495
514
|
"ts": "טסונגה",
|
|
496
515
|
"tsi": "טסימשיאן",
|
|
497
516
|
"tt": "טטרית",
|
|
517
|
+
"ttm": "טצ׳ון צפונית",
|
|
498
518
|
"tum": "טומבוקה",
|
|
499
519
|
"tvl": "טובאלו",
|
|
500
520
|
"tw": "טווי",
|
|
@@ -533,7 +553,7 @@
|
|
|
533
553
|
"ybb": "ימבה",
|
|
534
554
|
"yi": "יידיש",
|
|
535
555
|
"yo": "יורובה",
|
|
536
|
-
"yrl": "
|
|
556
|
+
"yrl": "נינגטו",
|
|
537
557
|
"yue": "קנטונזית",
|
|
538
558
|
"yue_alt-menu": "סינית, קנטונזית",
|
|
539
559
|
"za": "זואנג",
|
|
@@ -574,10 +594,10 @@
|
|
|
574
594
|
"Bugi": "בוגינזי",
|
|
575
595
|
"Buhd": "בוהיד",
|
|
576
596
|
"Cakm": "צ׳אקמה",
|
|
577
|
-
"Cans": "
|
|
597
|
+
"Cans": "כתב הברתי קנדי ילידי מאוחד",
|
|
578
598
|
"Cari": "קריאן",
|
|
579
599
|
"Cham": "צ׳אם",
|
|
580
|
-
"Cher": "
|
|
600
|
+
"Cher": "צ׳רוקי",
|
|
581
601
|
"Chrs": "כורזמיאן",
|
|
582
602
|
"Copt": "קופטי",
|
|
583
603
|
"Cpmn": "ציפרו-מינואן",
|
|
@@ -625,7 +645,6 @@
|
|
|
625
645
|
"Jpan": "יפני",
|
|
626
646
|
"Kali": "קאי לי",
|
|
627
647
|
"Kana": "קטקאנה",
|
|
628
|
-
"Kawi": "Kawi",
|
|
629
648
|
"Khar": "חרושתי",
|
|
630
649
|
"Khmr": "חמרי",
|
|
631
650
|
"Khoj": "חוג׳קי",
|
|
@@ -661,7 +680,6 @@
|
|
|
661
680
|
"Mtei": "מאיטי מאייק",
|
|
662
681
|
"Mult": "מולטיני",
|
|
663
682
|
"Mymr": "מיאנמר",
|
|
664
|
-
"Nagm": "Nagm",
|
|
665
683
|
"Nand": "ננדינאגרי",
|
|
666
684
|
"Narb": "ערב צפון עתיק",
|
|
667
685
|
"Nbat": "נבטי",
|
|
@@ -701,7 +719,7 @@
|
|
|
701
719
|
"Sogo": "סוגדית עתיקה",
|
|
702
720
|
"Sora": "סורה סומפנג",
|
|
703
721
|
"Soyo": "סויומבו",
|
|
704
|
-
"Sund": "
|
|
722
|
+
"Sund": "סונדאני",
|
|
705
723
|
"Sylo": "סילוטי נגרי",
|
|
706
724
|
"Syrc": "סורי",
|
|
707
725
|
"Syrj": "סורי מערבי",
|
|
@@ -807,7 +825,7 @@
|
|
|
807
825
|
"BS": "איי בהאמה",
|
|
808
826
|
"BT": "בהוטן",
|
|
809
827
|
"BV": "האי בובה",
|
|
810
|
-
"BW": "
|
|
828
|
+
"BW": "בוטסואנה",
|
|
811
829
|
"BY": "בלארוס",
|
|
812
830
|
"BZ": "בליז",
|
|
813
831
|
"CA": "קנדה",
|
|
@@ -958,6 +976,7 @@
|
|
|
958
976
|
"NR": "נאורו",
|
|
959
977
|
"NU": "ניווה",
|
|
960
978
|
"NZ": "ניו זילנד",
|
|
979
|
+
"NZ-alt-variant": "אאוטארואה",
|
|
961
980
|
"OM": "עומאן",
|
|
962
981
|
"PA": "פנמה",
|
|
963
982
|
"PE": "פרו",
|
|
@@ -991,7 +1010,7 @@
|
|
|
991
1010
|
"SI": "סלובניה",
|
|
992
1011
|
"SJ": "סבאלברד ויאן מאיין",
|
|
993
1012
|
"SK": "סלובקיה",
|
|
994
|
-
"SL": "סיירה
|
|
1013
|
+
"SL": "סיירה לאון",
|
|
995
1014
|
"SM": "סן מרינו",
|
|
996
1015
|
"SN": "סנגל",
|
|
997
1016
|
"SO": "סומליה",
|
|
@@ -1017,6 +1036,7 @@
|
|
|
1017
1036
|
"TN": "תוניסיה",
|
|
1018
1037
|
"TO": "טונגה",
|
|
1019
1038
|
"TR": "טורקיה",
|
|
1039
|
+
"TR-alt-variant": "טורקיה",
|
|
1020
1040
|
"TT": "טרינידד וטובגו",
|
|
1021
1041
|
"TV": "טובאלו",
|
|
1022
1042
|
"TW": "טייוואן",
|
|
@@ -1063,8 +1083,8 @@
|
|
|
1063
1083
|
"short": "H:mm"
|
|
1064
1084
|
},
|
|
1065
1085
|
"dateTimeFormats": {
|
|
1066
|
-
"full": "{1}
|
|
1067
|
-
"long": "{1}
|
|
1086
|
+
"full": "{1}, {0}",
|
|
1087
|
+
"long": "{1}, {0}",
|
|
1068
1088
|
"medium": "{1}, {0}",
|
|
1069
1089
|
"short": "{1}, {0}",
|
|
1070
1090
|
"availableFormats": {
|
|
@@ -1603,8 +1623,8 @@
|
|
|
1603
1623
|
"short": "H:mm"
|
|
1604
1624
|
},
|
|
1605
1625
|
"dateTimeFormats": {
|
|
1606
|
-
"full": "{1}
|
|
1607
|
-
"long": "{1}
|
|
1626
|
+
"full": "{1}, {0}",
|
|
1627
|
+
"long": "{1}, {0}",
|
|
1608
1628
|
"medium": "{1}, {0}",
|
|
1609
1629
|
"short": "{1}, {0}",
|
|
1610
1630
|
"availableFormats": {
|
|
@@ -2115,10 +2135,10 @@
|
|
|
2115
2135
|
"0": "שנת היג׳רה"
|
|
2116
2136
|
},
|
|
2117
2137
|
"era-abbreviated": {
|
|
2118
|
-
"0": "
|
|
2138
|
+
"0": "הג׳רה"
|
|
2119
2139
|
},
|
|
2120
2140
|
"era-narrow": {
|
|
2121
|
-
"0": "
|
|
2141
|
+
"0": "הג׳רה"
|
|
2122
2142
|
}
|
|
2123
2143
|
},
|
|
2124
2144
|
"ca-japanese": {
|
|
@@ -2135,8 +2155,8 @@
|
|
|
2135
2155
|
"short": "H:mm"
|
|
2136
2156
|
},
|
|
2137
2157
|
"dateTimeFormats": {
|
|
2138
|
-
"full": "{1}
|
|
2139
|
-
"long": "{1}
|
|
2158
|
+
"full": "{1}, {0}",
|
|
2159
|
+
"long": "{1}, {0}",
|
|
2140
2160
|
"medium": "{1}, {0}",
|
|
2141
2161
|
"short": "{1}, {0}",
|
|
2142
2162
|
"availableFormats": {
|
|
@@ -2679,8 +2699,8 @@
|
|
|
2679
2699
|
"short": "H:mm"
|
|
2680
2700
|
},
|
|
2681
2701
|
"dateTimeFormats": {
|
|
2682
|
-
"full": "{1}
|
|
2683
|
-
"long": "{1}
|
|
2702
|
+
"full": "{1}, {0}",
|
|
2703
|
+
"long": "{1}, {0}",
|
|
2684
2704
|
"medium": "{1}, {0}",
|
|
2685
2705
|
"short": "{1}, {0}",
|
|
2686
2706
|
"availableFormats": {
|
|
@@ -3211,8 +3231,8 @@
|
|
|
3211
3231
|
"short": "H:mm"
|
|
3212
3232
|
},
|
|
3213
3233
|
"dateTimeFormats": {
|
|
3214
|
-
"full": "{1}
|
|
3215
|
-
"long": "{1}
|
|
3234
|
+
"full": "{1}, {0}",
|
|
3235
|
+
"long": "{1}, {0}",
|
|
3216
3236
|
"medium": "{1}, {0}",
|
|
3217
3237
|
"short": "{1}, {0}",
|
|
3218
3238
|
"availableFormats": {
|
|
@@ -4195,7 +4215,7 @@
|
|
|
4195
4215
|
"Khartoum": "חרטום",
|
|
4196
4216
|
"Kigali": "קיגלי",
|
|
4197
4217
|
"Kinshasa": "קינשסה",
|
|
4198
|
-
"Lagos": "
|
|
4218
|
+
"Lagos": "לאגוס",
|
|
4199
4219
|
"Libreville": "ליברוויל",
|
|
4200
4220
|
"Lome": "לומה",
|
|
4201
4221
|
"Luanda": "לואנדה",
|
|
@@ -4260,6 +4280,7 @@
|
|
|
4260
4280
|
"Cayman": "קיימן",
|
|
4261
4281
|
"Chicago": "שיקגו",
|
|
4262
4282
|
"Chihuahua": "צ׳יוואווה",
|
|
4283
|
+
"Ciudad_Juarez": "סיודד חוארס",
|
|
4263
4284
|
"Costa_Rica": "קוסטה ריקה",
|
|
4264
4285
|
"Creston": "קרסטון",
|
|
4265
4286
|
"Cuiaba": "קויאבה",
|
|
@@ -4331,9 +4352,9 @@
|
|
|
4331
4352
|
"Nome": "נום",
|
|
4332
4353
|
"Noronha": "נורוניה",
|
|
4333
4354
|
"North_Dakota": {
|
|
4334
|
-
"Beulah": "ביולה,
|
|
4335
|
-
"Center": "סנטר,
|
|
4336
|
-
"New_Salem": "ניו סיילם,
|
|
4355
|
+
"Beulah": "ביולה, דקוטה הצפונית",
|
|
4356
|
+
"Center": "סנטר, דקוטה הצפונית",
|
|
4357
|
+
"New_Salem": "ניו סיילם, דקוטה הצפונית"
|
|
4337
4358
|
},
|
|
4338
4359
|
"Nuuk": "נואוק",
|
|
4339
4360
|
"Ojinaga": "אוג׳ינאגה",
|
|
@@ -4380,7 +4401,7 @@
|
|
|
4380
4401
|
"_parent": "אמריקה"
|
|
4381
4402
|
},
|
|
4382
4403
|
"Antarctica": {
|
|
4383
|
-
"Casey": "
|
|
4404
|
+
"Casey": "קייסי",
|
|
4384
4405
|
"Davis": "דיוויס",
|
|
4385
4406
|
"DumontDUrville": "דומון ד׳אורוויל",
|
|
4386
4407
|
"Macquarie": "מקווארי",
|
|
@@ -4742,8 +4763,8 @@
|
|
|
4742
4763
|
"standard": "#,##0%"
|
|
4743
4764
|
},
|
|
4744
4765
|
"currencyFormat": {
|
|
4745
|
-
"standard": "#,##0.00
|
|
4746
|
-
"accounting": "
|
|
4766
|
+
"standard": "#,##0.00 ¤;-#,##0.00 ¤",
|
|
4767
|
+
"accounting": "#,##0.00 ¤;-#,##0.00 ¤",
|
|
4747
4768
|
"currencySpacing": {
|
|
4748
4769
|
"beforeCurrency": {
|
|
4749
4770
|
"currencyMatch": "[[:^S:]&[:^Z:]]",
|
|
@@ -4756,8 +4777,8 @@
|
|
|
4756
4777
|
"insertBetween": " "
|
|
4757
4778
|
}
|
|
4758
4779
|
},
|
|
4759
|
-
"sap-standard": "#,##0.00
|
|
4760
|
-
"sap-accounting": "
|
|
4780
|
+
"sap-standard": "#,##0.00 ¤;-#,##0.00 ¤",
|
|
4781
|
+
"sap-accounting": "#,##0.00 ¤;-#,##0.00 ¤"
|
|
4761
4782
|
},
|
|
4762
4783
|
"miscPattern": {
|
|
4763
4784
|
"approximately": "~{0}",
|
|
@@ -4766,54 +4787,54 @@
|
|
|
4766
4787
|
"range": "{0}–{1}"
|
|
4767
4788
|
},
|
|
4768
4789
|
"currencyFormat-short": {
|
|
4769
|
-
"1000-one": "¤0K",
|
|
4770
|
-
"1000-two": "¤0K",
|
|
4771
|
-
"1000-many": "¤0K",
|
|
4772
|
-
"1000-other": "¤0K",
|
|
4773
|
-
"10000-one": "¤00K",
|
|
4774
|
-
"10000-two": "¤00K",
|
|
4775
|
-
"10000-many": "¤00K",
|
|
4776
|
-
"10000-other": "¤00K",
|
|
4777
|
-
"100000-one": "¤000K",
|
|
4778
|
-
"100000-two": "¤000K",
|
|
4779
|
-
"100000-many": "¤000K",
|
|
4780
|
-
"100000-other": "¤000K",
|
|
4781
|
-
"1000000-one": "¤0M",
|
|
4782
|
-
"1000000-two": "¤0M",
|
|
4783
|
-
"1000000-many": "¤0M",
|
|
4784
|
-
"1000000-other": "¤0M",
|
|
4785
|
-
"10000000-one": "¤00M",
|
|
4786
|
-
"10000000-two": "¤00M",
|
|
4787
|
-
"10000000-many": "¤00M",
|
|
4788
|
-
"10000000-other": "¤00M",
|
|
4789
|
-
"100000000-one": "¤000M",
|
|
4790
|
-
"100000000-two": "¤000M",
|
|
4791
|
-
"100000000-many": "¤000M",
|
|
4792
|
-
"100000000-other": "¤000M",
|
|
4793
|
-
"1000000000-one": "¤0B",
|
|
4794
|
-
"1000000000-two": "¤0B",
|
|
4795
|
-
"1000000000-many": "¤0B",
|
|
4796
|
-
"1000000000-other": "¤0B",
|
|
4797
|
-
"10000000000-one": "¤00B",
|
|
4798
|
-
"10000000000-two": "¤00B",
|
|
4799
|
-
"10000000000-many": "¤00B",
|
|
4800
|
-
"10000000000-other": "¤00B",
|
|
4801
|
-
"100000000000-one": "¤000B",
|
|
4802
|
-
"100000000000-two": "¤000B",
|
|
4803
|
-
"100000000000-many": "¤000B",
|
|
4804
|
-
"100000000000-other": "¤000B",
|
|
4805
|
-
"1000000000000-one": "¤0T",
|
|
4806
|
-
"1000000000000-two": "¤0T",
|
|
4807
|
-
"1000000000000-many": "¤0T",
|
|
4808
|
-
"1000000000000-other": "¤0T",
|
|
4809
|
-
"10000000000000-one": "¤00T",
|
|
4810
|
-
"10000000000000-two": "¤00T",
|
|
4811
|
-
"10000000000000-many": "¤00T",
|
|
4812
|
-
"10000000000000-other": "¤00T",
|
|
4813
|
-
"100000000000000-one": "¤000T",
|
|
4814
|
-
"100000000000000-two": "¤000T",
|
|
4815
|
-
"100000000000000-many": "¤000T",
|
|
4816
|
-
"100000000000000-other": "¤000T"
|
|
4790
|
+
"1000-one": "¤ 0K",
|
|
4791
|
+
"1000-two": "¤ 0K",
|
|
4792
|
+
"1000-many": "¤ 0K",
|
|
4793
|
+
"1000-other": "¤ 0K",
|
|
4794
|
+
"10000-one": "¤ 00K",
|
|
4795
|
+
"10000-two": "¤ 00K",
|
|
4796
|
+
"10000-many": "¤ 00K",
|
|
4797
|
+
"10000-other": "¤ 00K",
|
|
4798
|
+
"100000-one": "¤ 000K",
|
|
4799
|
+
"100000-two": "¤ 000K",
|
|
4800
|
+
"100000-many": "¤ 000K",
|
|
4801
|
+
"100000-other": "¤ 000K",
|
|
4802
|
+
"1000000-one": "¤ 0M",
|
|
4803
|
+
"1000000-two": "¤ 0M",
|
|
4804
|
+
"1000000-many": "¤ 0M",
|
|
4805
|
+
"1000000-other": "¤ 0M",
|
|
4806
|
+
"10000000-one": "¤ 00M",
|
|
4807
|
+
"10000000-two": "¤ 00M",
|
|
4808
|
+
"10000000-many": "¤ 00M",
|
|
4809
|
+
"10000000-other": "¤ 00M",
|
|
4810
|
+
"100000000-one": "¤ 000M",
|
|
4811
|
+
"100000000-two": "¤ 000M",
|
|
4812
|
+
"100000000-many": "¤ 000M",
|
|
4813
|
+
"100000000-other": "¤ 000M",
|
|
4814
|
+
"1000000000-one": "¤ 0B",
|
|
4815
|
+
"1000000000-two": "¤ 0B",
|
|
4816
|
+
"1000000000-many": "¤ 0B",
|
|
4817
|
+
"1000000000-other": "¤ 0B",
|
|
4818
|
+
"10000000000-one": "¤ 00B",
|
|
4819
|
+
"10000000000-two": "¤ 00B",
|
|
4820
|
+
"10000000000-many": "¤ 00B",
|
|
4821
|
+
"10000000000-other": "¤ 00B",
|
|
4822
|
+
"100000000000-one": "¤ 000B",
|
|
4823
|
+
"100000000000-two": "¤ 000B",
|
|
4824
|
+
"100000000000-many": "¤ 000B",
|
|
4825
|
+
"100000000000-other": "¤ 000B",
|
|
4826
|
+
"1000000000000-one": "¤ 0T",
|
|
4827
|
+
"1000000000000-two": "¤ 0T",
|
|
4828
|
+
"1000000000000-many": "¤ 0T",
|
|
4829
|
+
"1000000000000-other": "¤ 0T",
|
|
4830
|
+
"10000000000000-one": "¤ 00T",
|
|
4831
|
+
"10000000000000-two": "¤ 00T",
|
|
4832
|
+
"10000000000000-many": "¤ 00T",
|
|
4833
|
+
"10000000000000-other": "¤ 00T",
|
|
4834
|
+
"100000000000000-one": "¤ 000T",
|
|
4835
|
+
"100000000000000-two": "¤ 000T",
|
|
4836
|
+
"100000000000000-many": "¤ 000T",
|
|
4837
|
+
"100000000000000-other": "¤ 000T"
|
|
4817
4838
|
},
|
|
4818
4839
|
"symbols-latn-decimal": ".",
|
|
4819
4840
|
"symbols-latn-group": ",",
|
|
@@ -4864,7 +4885,7 @@
|
|
|
4864
4885
|
"2": "{0} או {1}",
|
|
4865
4886
|
"start": "{0}, {1}",
|
|
4866
4887
|
"middle": "{0}, {1}",
|
|
4867
|
-
"end": "{0}
|
|
4888
|
+
"end": "{0} או {1}"
|
|
4868
4889
|
},
|
|
4869
4890
|
"listPattern-or-short": {
|
|
4870
4891
|
"2": "{0} או {1}",
|
|
@@ -4969,10 +4990,16 @@
|
|
|
4969
4990
|
},
|
|
4970
4991
|
"power2": {
|
|
4971
4992
|
"compoundUnitPattern1": "{0}²",
|
|
4993
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
4994
|
+
"compoundUnitPattern1-count-two": "{0}²",
|
|
4995
|
+
"compoundUnitPattern1-count-many": "{0}²",
|
|
4972
4996
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4973
4997
|
},
|
|
4974
4998
|
"power3": {
|
|
4975
4999
|
"compoundUnitPattern1": "{0}³",
|
|
5000
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
5001
|
+
"compoundUnitPattern1-count-two": "{0}³",
|
|
5002
|
+
"compoundUnitPattern1-count-many": "{0}³",
|
|
4976
5003
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4977
5004
|
},
|
|
4978
5005
|
"times": {
|
|
@@ -5153,10 +5180,16 @@
|
|
|
5153
5180
|
},
|
|
5154
5181
|
"concentr-permyriad": {
|
|
5155
5182
|
"displayName": "‱",
|
|
5183
|
+
"unitPattern-count-one": "{0}‱",
|
|
5184
|
+
"unitPattern-count-two": "{0}‱",
|
|
5185
|
+
"unitPattern-count-many": "{0}‱",
|
|
5156
5186
|
"unitPattern-count-other": "{0}‱"
|
|
5157
5187
|
},
|
|
5158
5188
|
"concentr-mole": {
|
|
5159
5189
|
"displayName": "mol",
|
|
5190
|
+
"unitPattern-count-one": "{0} mol",
|
|
5191
|
+
"unitPattern-count-two": "{0} mol",
|
|
5192
|
+
"unitPattern-count-many": "{0} mol",
|
|
5160
5193
|
"unitPattern-count-other": "{0} mol"
|
|
5161
5194
|
},
|
|
5162
5195
|
"consumption-liter-per-kilometer": {
|
|
@@ -5259,10 +5292,10 @@
|
|
|
5259
5292
|
},
|
|
5260
5293
|
"digital-bit": {
|
|
5261
5294
|
"displayName": "ביט",
|
|
5262
|
-
"unitPattern-count-one": "
|
|
5263
|
-
"unitPattern-count-two": "
|
|
5264
|
-
"unitPattern-count-many": "
|
|
5265
|
-
"unitPattern-count-other": "
|
|
5295
|
+
"unitPattern-count-one": "{0} ביט",
|
|
5296
|
+
"unitPattern-count-two": "{0} ביט",
|
|
5297
|
+
"unitPattern-count-many": "{0} ביט",
|
|
5298
|
+
"unitPattern-count-other": "{0} ביט"
|
|
5266
5299
|
},
|
|
5267
5300
|
"duration-century": {
|
|
5268
5301
|
"displayName": "מאות",
|
|
@@ -5286,6 +5319,14 @@
|
|
|
5286
5319
|
"unitPattern-count-other": "{0} שנים",
|
|
5287
5320
|
"perUnitPattern": "{0}/שנה"
|
|
5288
5321
|
},
|
|
5322
|
+
"duration-quarter": {
|
|
5323
|
+
"displayName": "רבעונים",
|
|
5324
|
+
"unitPattern-count-one": "{0} q",
|
|
5325
|
+
"unitPattern-count-two": "{0} q",
|
|
5326
|
+
"unitPattern-count-many": "{0} q",
|
|
5327
|
+
"unitPattern-count-other": "{0} q",
|
|
5328
|
+
"perUnitPattern": "{0}/q"
|
|
5329
|
+
},
|
|
5289
5330
|
"duration-month": {
|
|
5290
5331
|
"displayName": "חודשים",
|
|
5291
5332
|
"unitPattern-count-one": "חודש",
|
|
@@ -5427,30 +5468,45 @@
|
|
|
5427
5468
|
},
|
|
5428
5469
|
"energy-electronvolt": {
|
|
5429
5470
|
"displayName": "eV",
|
|
5471
|
+
"unitPattern-count-one": "{0} eV",
|
|
5472
|
+
"unitPattern-count-two": "{0} eV",
|
|
5473
|
+
"unitPattern-count-many": "{0} eV",
|
|
5430
5474
|
"unitPattern-count-other": "{0} eV"
|
|
5431
5475
|
},
|
|
5432
5476
|
"energy-british-thermal-unit": {
|
|
5433
5477
|
"displayName": "BTU",
|
|
5478
|
+
"unitPattern-count-one": "{0} Btu",
|
|
5479
|
+
"unitPattern-count-two": "{0} Btu",
|
|
5480
|
+
"unitPattern-count-many": "{0} Btu",
|
|
5434
5481
|
"unitPattern-count-other": "{0} Btu"
|
|
5435
5482
|
},
|
|
5436
5483
|
"energy-therm-us": {
|
|
5437
5484
|
"displayName": "US therm",
|
|
5485
|
+
"unitPattern-count-one": "{0} US therm",
|
|
5486
|
+
"unitPattern-count-two": "{0} US therm",
|
|
5487
|
+
"unitPattern-count-many": "{0} US therm",
|
|
5438
5488
|
"unitPattern-count-other": "{0} US therm"
|
|
5439
5489
|
},
|
|
5440
5490
|
"force-pound-force": {
|
|
5441
5491
|
"displayName": "lbf",
|
|
5492
|
+
"unitPattern-count-one": "{0} lbf",
|
|
5493
|
+
"unitPattern-count-two": "{0} lbf",
|
|
5494
|
+
"unitPattern-count-many": "{0} lbf",
|
|
5442
5495
|
"unitPattern-count-other": "{0} lbf"
|
|
5443
5496
|
},
|
|
5444
5497
|
"force-newton": {
|
|
5445
5498
|
"displayName": "N",
|
|
5499
|
+
"unitPattern-count-one": "{0} N",
|
|
5500
|
+
"unitPattern-count-two": "{0} N",
|
|
5501
|
+
"unitPattern-count-many": "{0} N",
|
|
5446
5502
|
"unitPattern-count-other": "{0} N"
|
|
5447
5503
|
},
|
|
5448
5504
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5449
5505
|
"displayName": "קוט״ש/100 ק״מ",
|
|
5450
|
-
"unitPattern-count-one": "{0}
|
|
5451
|
-
"unitPattern-count-two": "{0}
|
|
5452
|
-
"unitPattern-count-many": "{0}
|
|
5453
|
-
"unitPattern-count-other": "{0}
|
|
5506
|
+
"unitPattern-count-one": "{0} קוט\"ש/100 ק\"מ",
|
|
5507
|
+
"unitPattern-count-two": "{0} קוט\"ש/100 ק\"מ",
|
|
5508
|
+
"unitPattern-count-many": "{0} קוט\"ש/100 ק\"מ",
|
|
5509
|
+
"unitPattern-count-other": "{0} קוט\"ש/100 ק\"מ"
|
|
5454
5510
|
},
|
|
5455
5511
|
"frequency-gigahertz": {
|
|
5456
5512
|
"displayName": "GHz",
|
|
@@ -5516,12 +5572,14 @@
|
|
|
5516
5572
|
"unitPattern-count-other": "{0} ppi"
|
|
5517
5573
|
},
|
|
5518
5574
|
"graphics-dot-per-centimeter": {
|
|
5575
|
+
"displayName": "ppcm",
|
|
5519
5576
|
"unitPattern-count-one": "{0} dpcm",
|
|
5520
5577
|
"unitPattern-count-two": "{0} dpcm",
|
|
5521
5578
|
"unitPattern-count-many": "{0} dpcm",
|
|
5522
5579
|
"unitPattern-count-other": "{0} dpcm"
|
|
5523
5580
|
},
|
|
5524
5581
|
"graphics-dot-per-inch": {
|
|
5582
|
+
"displayName": "ppi",
|
|
5525
5583
|
"unitPattern-count-one": "{0} dpi",
|
|
5526
5584
|
"unitPattern-count-two": "{0} dpi",
|
|
5527
5585
|
"unitPattern-count-many": "{0} dpi",
|
|
@@ -5536,6 +5594,9 @@
|
|
|
5536
5594
|
},
|
|
5537
5595
|
"length-earth-radius": {
|
|
5538
5596
|
"displayName": "R⊕",
|
|
5597
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5598
|
+
"unitPattern-count-two": "{0} R⊕",
|
|
5599
|
+
"unitPattern-count-many": "{0} R⊕",
|
|
5539
5600
|
"unitPattern-count-other": "{0} R⊕"
|
|
5540
5601
|
},
|
|
5541
5602
|
"length-kilometer": {
|
|
@@ -5593,9 +5654,9 @@
|
|
|
5593
5654
|
"length-picometer": {
|
|
5594
5655
|
"displayName": "פ״מ",
|
|
5595
5656
|
"unitPattern-count-one": "פ“מ {0}",
|
|
5596
|
-
"unitPattern-count-two": "{0}
|
|
5597
|
-
"unitPattern-count-many": "{0}
|
|
5598
|
-
"unitPattern-count-other": "{0}
|
|
5657
|
+
"unitPattern-count-two": "{0} פ\"מ",
|
|
5658
|
+
"unitPattern-count-many": "{0} פ\"מ",
|
|
5659
|
+
"unitPattern-count-other": "{0} פ\"מ"
|
|
5599
5660
|
},
|
|
5600
5661
|
"length-mile": {
|
|
5601
5662
|
"displayName": "מייל",
|
|
@@ -5650,10 +5711,16 @@
|
|
|
5650
5711
|
},
|
|
5651
5712
|
"length-furlong": {
|
|
5652
5713
|
"displayName": "fur",
|
|
5714
|
+
"unitPattern-count-one": "{0} fur",
|
|
5715
|
+
"unitPattern-count-two": "{0} fur",
|
|
5716
|
+
"unitPattern-count-many": "{0} fur",
|
|
5653
5717
|
"unitPattern-count-other": "{0} fur"
|
|
5654
5718
|
},
|
|
5655
5719
|
"length-fathom": {
|
|
5656
5720
|
"displayName": "fm",
|
|
5721
|
+
"unitPattern-count-one": "{0} fth",
|
|
5722
|
+
"unitPattern-count-two": "{0} fth",
|
|
5723
|
+
"unitPattern-count-many": "{0} fth",
|
|
5657
5724
|
"unitPattern-count-other": "{0} fth"
|
|
5658
5725
|
},
|
|
5659
5726
|
"length-nautical-mile": {
|
|
@@ -5693,17 +5760,26 @@
|
|
|
5693
5760
|
},
|
|
5694
5761
|
"light-candela": {
|
|
5695
5762
|
"displayName": "cd",
|
|
5763
|
+
"unitPattern-count-one": "{0} cd",
|
|
5764
|
+
"unitPattern-count-two": "{0} cd",
|
|
5765
|
+
"unitPattern-count-many": "{0} cd",
|
|
5696
5766
|
"unitPattern-count-other": "{0} cd"
|
|
5697
5767
|
},
|
|
5698
5768
|
"light-lumen": {
|
|
5699
5769
|
"displayName": "lm",
|
|
5770
|
+
"unitPattern-count-one": "{0} lm",
|
|
5771
|
+
"unitPattern-count-two": "{0} lm",
|
|
5772
|
+
"unitPattern-count-many": "{0} lm",
|
|
5700
5773
|
"unitPattern-count-other": "{0} lm"
|
|
5701
5774
|
},
|
|
5702
5775
|
"light-solar-luminosity": {
|
|
5703
5776
|
"displayName": "L☉",
|
|
5777
|
+
"unitPattern-count-one": "{0} L☉",
|
|
5778
|
+
"unitPattern-count-two": "{0} L☉",
|
|
5779
|
+
"unitPattern-count-many": "{0} L☉",
|
|
5704
5780
|
"unitPattern-count-other": "{0} L☉"
|
|
5705
5781
|
},
|
|
5706
|
-
"mass-
|
|
5782
|
+
"mass-tonne": {
|
|
5707
5783
|
"displayName": "t",
|
|
5708
5784
|
"unitPattern-count-one": "{0} t",
|
|
5709
5785
|
"unitPattern-count-two": "{0} t",
|
|
@@ -5741,7 +5817,7 @@
|
|
|
5741
5817
|
"unitPattern-count-other": "{0} מק״ג"
|
|
5742
5818
|
},
|
|
5743
5819
|
"mass-ton": {
|
|
5744
|
-
"displayName": "
|
|
5820
|
+
"displayName": "טונה",
|
|
5745
5821
|
"unitPattern-count-one": "ט׳ {0}",
|
|
5746
5822
|
"unitPattern-count-two": "{0} ט׳",
|
|
5747
5823
|
"unitPattern-count-many": "{0} ט׳",
|
|
@@ -5786,14 +5862,23 @@
|
|
|
5786
5862
|
},
|
|
5787
5863
|
"mass-dalton": {
|
|
5788
5864
|
"displayName": "Da",
|
|
5865
|
+
"unitPattern-count-one": "{0} Da",
|
|
5866
|
+
"unitPattern-count-two": "{0} Da",
|
|
5867
|
+
"unitPattern-count-many": "{0} Da",
|
|
5789
5868
|
"unitPattern-count-other": "{0} Da"
|
|
5790
5869
|
},
|
|
5791
5870
|
"mass-earth-mass": {
|
|
5792
5871
|
"displayName": "M⊕",
|
|
5872
|
+
"unitPattern-count-one": "{0} M⊕",
|
|
5873
|
+
"unitPattern-count-two": "{0} M⊕",
|
|
5874
|
+
"unitPattern-count-many": "{0} M⊕",
|
|
5793
5875
|
"unitPattern-count-other": "{0} M⊕"
|
|
5794
5876
|
},
|
|
5795
5877
|
"mass-solar-mass": {
|
|
5796
5878
|
"displayName": "M☉",
|
|
5879
|
+
"unitPattern-count-one": "{0} M☉",
|
|
5880
|
+
"unitPattern-count-two": "{0} M☉",
|
|
5881
|
+
"unitPattern-count-many": "{0} M☉",
|
|
5797
5882
|
"unitPattern-count-other": "{0} M☉"
|
|
5798
5883
|
},
|
|
5799
5884
|
"mass-grain": {
|
|
@@ -5889,6 +5974,9 @@
|
|
|
5889
5974
|
},
|
|
5890
5975
|
"pressure-pascal": {
|
|
5891
5976
|
"displayName": "Pa",
|
|
5977
|
+
"unitPattern-count-one": "{0} Pa",
|
|
5978
|
+
"unitPattern-count-two": "{0} Pa",
|
|
5979
|
+
"unitPattern-count-many": "{0} Pa",
|
|
5892
5980
|
"unitPattern-count-other": "{0} Pa"
|
|
5893
5981
|
},
|
|
5894
5982
|
"pressure-hectopascal": {
|
|
@@ -5900,10 +5988,16 @@
|
|
|
5900
5988
|
},
|
|
5901
5989
|
"pressure-kilopascal": {
|
|
5902
5990
|
"displayName": "kPa",
|
|
5991
|
+
"unitPattern-count-one": "{0} kPa",
|
|
5992
|
+
"unitPattern-count-two": "{0} kPa",
|
|
5993
|
+
"unitPattern-count-many": "{0} kPa",
|
|
5903
5994
|
"unitPattern-count-other": "{0} kPa"
|
|
5904
5995
|
},
|
|
5905
5996
|
"pressure-megapascal": {
|
|
5906
5997
|
"displayName": "MPa",
|
|
5998
|
+
"unitPattern-count-one": "{0} MPa",
|
|
5999
|
+
"unitPattern-count-two": "{0} MPa",
|
|
6000
|
+
"unitPattern-count-many": "{0} MPa",
|
|
5907
6001
|
"unitPattern-count-other": "{0} MPa"
|
|
5908
6002
|
},
|
|
5909
6003
|
"speed-kilometer-per-hour": {
|
|
@@ -5964,10 +6058,16 @@
|
|
|
5964
6058
|
},
|
|
5965
6059
|
"torque-pound-force-foot": {
|
|
5966
6060
|
"displayName": "lbf⋅ft",
|
|
6061
|
+
"unitPattern-count-one": "{0} lbf⋅ft",
|
|
6062
|
+
"unitPattern-count-two": "{0} lbf⋅ft",
|
|
6063
|
+
"unitPattern-count-many": "{0} lbf⋅ft",
|
|
5967
6064
|
"unitPattern-count-other": "{0} lbf⋅ft"
|
|
5968
6065
|
},
|
|
5969
6066
|
"torque-newton-meter": {
|
|
5970
6067
|
"displayName": "N⋅m",
|
|
6068
|
+
"unitPattern-count-one": "{0} N⋅m",
|
|
6069
|
+
"unitPattern-count-two": "{0} N⋅m",
|
|
6070
|
+
"unitPattern-count-many": "{0} N⋅m",
|
|
5971
6071
|
"unitPattern-count-other": "{0} N⋅m"
|
|
5972
6072
|
},
|
|
5973
6073
|
"volume-cubic-kilometer": {
|
|
@@ -6087,6 +6187,9 @@
|
|
|
6087
6187
|
},
|
|
6088
6188
|
"volume-bushel": {
|
|
6089
6189
|
"displayName": "bu",
|
|
6190
|
+
"unitPattern-count-one": "{0} bu",
|
|
6191
|
+
"unitPattern-count-two": "{0} bu",
|
|
6192
|
+
"unitPattern-count-many": "{0} bu",
|
|
6090
6193
|
"unitPattern-count-other": "{0} bu"
|
|
6091
6194
|
},
|
|
6092
6195
|
"volume-gallon": {
|
|
@@ -6163,10 +6266,16 @@
|
|
|
6163
6266
|
},
|
|
6164
6267
|
"volume-dessert-spoon": {
|
|
6165
6268
|
"displayName": "dstspn",
|
|
6269
|
+
"unitPattern-count-one": "{0} dstspn",
|
|
6270
|
+
"unitPattern-count-two": "{0} dstspn",
|
|
6271
|
+
"unitPattern-count-many": "{0} dstspn",
|
|
6166
6272
|
"unitPattern-count-other": "{0} dstspn"
|
|
6167
6273
|
},
|
|
6168
6274
|
"volume-dessert-spoon-imperial": {
|
|
6169
6275
|
"displayName": "dstspn Imp",
|
|
6276
|
+
"unitPattern-count-one": "{0} dstspn Imp",
|
|
6277
|
+
"unitPattern-count-two": "{0} dstspn Imp",
|
|
6278
|
+
"unitPattern-count-many": "{0} dstspn Imp",
|
|
6170
6279
|
"unitPattern-count-other": "{0} dstspn Imp"
|
|
6171
6280
|
},
|
|
6172
6281
|
"volume-drop": {
|
|
@@ -6178,10 +6287,16 @@
|
|
|
6178
6287
|
},
|
|
6179
6288
|
"volume-dram": {
|
|
6180
6289
|
"displayName": "dram fluid",
|
|
6290
|
+
"unitPattern-count-one": "{0} dram fl",
|
|
6291
|
+
"unitPattern-count-two": "{0} dram fl",
|
|
6292
|
+
"unitPattern-count-many": "{0} dram fl",
|
|
6181
6293
|
"unitPattern-count-other": "{0} dram fl"
|
|
6182
6294
|
},
|
|
6183
6295
|
"volume-jigger": {
|
|
6184
6296
|
"displayName": "jigger",
|
|
6297
|
+
"unitPattern-count-one": "{0} jigger",
|
|
6298
|
+
"unitPattern-count-two": "{0} jigger",
|
|
6299
|
+
"unitPattern-count-many": "{0} jigger",
|
|
6185
6300
|
"unitPattern-count-other": "{0} jigger"
|
|
6186
6301
|
},
|
|
6187
6302
|
"volume-pinch": {
|
|
@@ -6193,6 +6308,9 @@
|
|
|
6193
6308
|
},
|
|
6194
6309
|
"volume-quart-imperial": {
|
|
6195
6310
|
"displayName": "qt Imp",
|
|
6311
|
+
"unitPattern-count-one": "{0} qt Imp.",
|
|
6312
|
+
"unitPattern-count-two": "{0} qt Imp.",
|
|
6313
|
+
"unitPattern-count-many": "{0} qt Imp.",
|
|
6196
6314
|
"unitPattern-count-other": "{0} qt Imp."
|
|
6197
6315
|
},
|
|
6198
6316
|
"coordinateUnit": {
|
|
@@ -6210,54 +6328,54 @@
|
|
|
6210
6328
|
"plusSign": "+⁺₊➕﬩﹢+"
|
|
6211
6329
|
},
|
|
6212
6330
|
"currencyFormat-sap-short": {
|
|
6213
|
-
"1000-one": "¤0K",
|
|
6214
|
-
"1000-two": "¤0K",
|
|
6215
|
-
"1000-many": "¤0K",
|
|
6216
|
-
"1000-other": "¤0K",
|
|
6217
|
-
"10000-one": "¤00K",
|
|
6218
|
-
"10000-two": "¤00K",
|
|
6219
|
-
"10000-many": "¤00K",
|
|
6220
|
-
"10000-other": "¤00K",
|
|
6221
|
-
"100000-one": "¤000K",
|
|
6222
|
-
"100000-two": "¤000K",
|
|
6223
|
-
"100000-many": "¤000K",
|
|
6224
|
-
"100000-other": "¤000K",
|
|
6225
|
-
"1000000-one": "¤0M",
|
|
6226
|
-
"1000000-two": "¤0M",
|
|
6227
|
-
"1000000-many": "¤0M",
|
|
6228
|
-
"1000000-other": "¤0M",
|
|
6229
|
-
"10000000-one": "¤00M",
|
|
6230
|
-
"10000000-two": "¤00M",
|
|
6231
|
-
"10000000-many": "¤00M",
|
|
6232
|
-
"10000000-other": "¤00M",
|
|
6233
|
-
"100000000-one": "¤000M",
|
|
6234
|
-
"100000000-two": "¤000M",
|
|
6235
|
-
"100000000-many": "¤000M",
|
|
6236
|
-
"100000000-other": "¤000M",
|
|
6237
|
-
"1000000000-one": "¤0B",
|
|
6238
|
-
"1000000000-two": "¤0B",
|
|
6239
|
-
"1000000000-many": "¤0B",
|
|
6240
|
-
"1000000000-other": "¤0B",
|
|
6241
|
-
"10000000000-one": "¤00B",
|
|
6242
|
-
"10000000000-two": "¤00B",
|
|
6243
|
-
"10000000000-many": "¤00B",
|
|
6244
|
-
"10000000000-other": "¤00B",
|
|
6245
|
-
"100000000000-one": "¤000B",
|
|
6246
|
-
"100000000000-two": "¤000B",
|
|
6247
|
-
"100000000000-many": "¤000B",
|
|
6248
|
-
"100000000000-other": "¤000B",
|
|
6249
|
-
"1000000000000-one": "¤0T",
|
|
6250
|
-
"1000000000000-two": "¤0T",
|
|
6251
|
-
"1000000000000-many": "¤0T",
|
|
6252
|
-
"1000000000000-other": "¤0T",
|
|
6253
|
-
"10000000000000-one": "¤00T",
|
|
6254
|
-
"10000000000000-two": "¤00T",
|
|
6255
|
-
"10000000000000-many": "¤00T",
|
|
6256
|
-
"10000000000000-other": "¤00T",
|
|
6257
|
-
"100000000000000-one": "¤000T",
|
|
6258
|
-
"100000000000000-two": "¤000T",
|
|
6259
|
-
"100000000000000-many": "¤000T",
|
|
6260
|
-
"100000000000000-other": "¤000T"
|
|
6331
|
+
"1000-one": "¤ 0K",
|
|
6332
|
+
"1000-two": "¤ 0K",
|
|
6333
|
+
"1000-many": "¤ 0K",
|
|
6334
|
+
"1000-other": "¤ 0K",
|
|
6335
|
+
"10000-one": "¤ 00K",
|
|
6336
|
+
"10000-two": "¤ 00K",
|
|
6337
|
+
"10000-many": "¤ 00K",
|
|
6338
|
+
"10000-other": "¤ 00K",
|
|
6339
|
+
"100000-one": "¤ 000K",
|
|
6340
|
+
"100000-two": "¤ 000K",
|
|
6341
|
+
"100000-many": "¤ 000K",
|
|
6342
|
+
"100000-other": "¤ 000K",
|
|
6343
|
+
"1000000-one": "¤ 0M",
|
|
6344
|
+
"1000000-two": "¤ 0M",
|
|
6345
|
+
"1000000-many": "¤ 0M",
|
|
6346
|
+
"1000000-other": "¤ 0M",
|
|
6347
|
+
"10000000-one": "¤ 00M",
|
|
6348
|
+
"10000000-two": "¤ 00M",
|
|
6349
|
+
"10000000-many": "¤ 00M",
|
|
6350
|
+
"10000000-other": "¤ 00M",
|
|
6351
|
+
"100000000-one": "¤ 000M",
|
|
6352
|
+
"100000000-two": "¤ 000M",
|
|
6353
|
+
"100000000-many": "¤ 000M",
|
|
6354
|
+
"100000000-other": "¤ 000M",
|
|
6355
|
+
"1000000000-one": "¤ 0B",
|
|
6356
|
+
"1000000000-two": "¤ 0B",
|
|
6357
|
+
"1000000000-many": "¤ 0B",
|
|
6358
|
+
"1000000000-other": "¤ 0B",
|
|
6359
|
+
"10000000000-one": "¤ 00B",
|
|
6360
|
+
"10000000000-two": "¤ 00B",
|
|
6361
|
+
"10000000000-many": "¤ 00B",
|
|
6362
|
+
"10000000000-other": "¤ 00B",
|
|
6363
|
+
"100000000000-one": "¤ 000B",
|
|
6364
|
+
"100000000000-two": "¤ 000B",
|
|
6365
|
+
"100000000000-many": "¤ 000B",
|
|
6366
|
+
"100000000000-other": "¤ 000B",
|
|
6367
|
+
"1000000000000-one": "¤ 0T",
|
|
6368
|
+
"1000000000000-two": "¤ 0T",
|
|
6369
|
+
"1000000000000-many": "¤ 0T",
|
|
6370
|
+
"1000000000000-other": "¤ 0T",
|
|
6371
|
+
"10000000000000-one": "¤ 00T",
|
|
6372
|
+
"10000000000000-two": "¤ 00T",
|
|
6373
|
+
"10000000000000-many": "¤ 00T",
|
|
6374
|
+
"10000000000000-other": "¤ 00T",
|
|
6375
|
+
"100000000000000-one": "¤ 000T",
|
|
6376
|
+
"100000000000000-two": "¤ 000T",
|
|
6377
|
+
"100000000000000-many": "¤ 000T",
|
|
6378
|
+
"100000000000000-other": "¤ 000T"
|
|
6261
6379
|
},
|
|
6262
6380
|
"currencyDigits": {
|
|
6263
6381
|
"ADP": 0,
|
|
@@ -6316,9 +6434,8 @@
|
|
|
6316
6434
|
"ZWD": 0
|
|
6317
6435
|
},
|
|
6318
6436
|
"plurals": {
|
|
6319
|
-
"one": "i = 1 and v = 0",
|
|
6320
|
-
"two": "i = 2 and v = 0"
|
|
6321
|
-
"many": "v = 0 and n != 0..10 and n % 10 = 0"
|
|
6437
|
+
"one": "i = 1 and v = 0 or i = 0 and v != 0",
|
|
6438
|
+
"two": "i = 2 and v = 0"
|
|
6322
6439
|
},
|
|
6323
6440
|
"weekData-minDays": 1,
|
|
6324
6441
|
"weekData-firstDay": 0,
|
|
@@ -6330,41 +6447,56 @@
|
|
|
6330
6447
|
},
|
|
6331
6448
|
"eras-gregorian": {
|
|
6332
6449
|
"0": {
|
|
6450
|
+
"_code": "gregory-inverse",
|
|
6451
|
+
"_aliases": "bc bce",
|
|
6333
6452
|
"_end": "0-12-31"
|
|
6334
6453
|
},
|
|
6335
6454
|
"1": {
|
|
6455
|
+
"_code": "gregory",
|
|
6456
|
+
"_aliases": "ad ce",
|
|
6336
6457
|
"_start": "1-01-01"
|
|
6337
6458
|
}
|
|
6338
6459
|
},
|
|
6339
6460
|
"eras-islamic": {
|
|
6340
6461
|
"0": {
|
|
6462
|
+
"_code": "islamic",
|
|
6463
|
+
"_aliases": "ah",
|
|
6341
6464
|
"_start": "622-7-15"
|
|
6342
6465
|
}
|
|
6343
6466
|
},
|
|
6344
6467
|
"eras-persian": {
|
|
6345
6468
|
"0": {
|
|
6469
|
+
"_code": "persian",
|
|
6470
|
+
"_aliases": "ap",
|
|
6346
6471
|
"_start": "622-01-01"
|
|
6347
6472
|
}
|
|
6348
6473
|
},
|
|
6349
6474
|
"eras-buddhist": {
|
|
6350
6475
|
"0": {
|
|
6476
|
+
"_code": "buddhist",
|
|
6477
|
+
"_aliases": "be",
|
|
6351
6478
|
"_start": "-542-01-01"
|
|
6352
6479
|
}
|
|
6353
6480
|
},
|
|
6354
6481
|
"eras-japanese": {
|
|
6355
6482
|
"232": {
|
|
6483
|
+
"_code": "meiji",
|
|
6356
6484
|
"_start": "1868-9-8"
|
|
6357
6485
|
},
|
|
6358
6486
|
"233": {
|
|
6487
|
+
"_code": "taisho",
|
|
6359
6488
|
"_start": "1912-7-30"
|
|
6360
6489
|
},
|
|
6361
6490
|
"234": {
|
|
6491
|
+
"_code": "showa",
|
|
6362
6492
|
"_start": "1926-12-25"
|
|
6363
6493
|
},
|
|
6364
6494
|
"235": {
|
|
6495
|
+
"_code": "heisei",
|
|
6365
6496
|
"_start": "1989-1-8"
|
|
6366
6497
|
},
|
|
6367
6498
|
"236": {
|
|
6499
|
+
"_code": "reiwa",
|
|
6368
6500
|
"_start": "2019-5-1"
|
|
6369
6501
|
}
|
|
6370
6502
|
},
|