@openui5/sap.ui.core 1.120.10 → 1.121.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.
Files changed (1065) hide show
  1. package/.eslintrc.json +5 -3
  2. package/.reuse/dep5 +23 -21
  3. package/THIRDPARTY.txt +6 -43
  4. package/package.json +1 -1
  5. package/src/jquery.sap.global.js +7 -7
  6. package/src/jquery.sap.properties.js +1 -1
  7. package/src/jquery.sap.resources.js +1 -1
  8. package/src/jquery.sap.script.js +1 -1
  9. package/src/jquery.sap.storage.js +3 -3
  10. package/src/jquery.sap.trace.js +1 -1
  11. package/src/sap/base/Event.js +1 -1
  12. package/src/sap/base/Eventing.js +1 -1
  13. package/src/sap/base/config.js +1 -1
  14. package/src/sap/base/future.js +57 -0
  15. package/src/sap/base/i18n/Formatting.js +7 -5
  16. package/src/sap/base/i18n/LanguageTag.js +2 -2
  17. package/src/sap/base/i18n/Localization.js +2 -2
  18. package/src/sap/base/i18n/ResourceBundle.js +115 -9
  19. package/src/sap/base/i18n/date/TimezoneUtils.js +5 -6
  20. package/src/sap/base/util/now.js +8 -13
  21. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  22. package/src/sap/base/util/restricted/_castArray.js +1 -1
  23. package/src/sap/base/util/restricted/_compact.js +1 -1
  24. package/src/sap/base/util/restricted/_curry.js +1 -1
  25. package/src/sap/base/util/restricted/_debounce.js +1 -1
  26. package/src/sap/base/util/restricted/_difference.js +1 -1
  27. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  28. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  29. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  30. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  31. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  32. package/src/sap/base/util/restricted/_flatten.js +1 -1
  33. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  34. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  35. package/src/sap/base/util/restricted/_intersection.js +1 -1
  36. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  37. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  38. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  39. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  40. package/src/sap/base/util/restricted/_isNil.js +1 -1
  41. package/src/sap/base/util/restricted/_max.js +1 -1
  42. package/src/sap/base/util/restricted/_merge.js +1 -1
  43. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  44. package/src/sap/base/util/restricted/_min.js +1 -1
  45. package/src/sap/base/util/restricted/_omit.js +1 -1
  46. package/src/sap/base/util/restricted/_pick.js +1 -1
  47. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  48. package/src/sap/base/util/restricted/_throttle.js +1 -1
  49. package/src/sap/base/util/restricted/_toArray.js +1 -1
  50. package/src/sap/base/util/restricted/_union.js +1 -1
  51. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  52. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  53. package/src/sap/base/util/restricted/_uniq.js +1 -1
  54. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  55. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  56. package/src/sap/base/util/restricted/_without.js +1 -1
  57. package/src/sap/base/util/restricted/_xor.js +1 -1
  58. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  59. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  60. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  61. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  62. package/src/sap/ui/Device.js +6 -3
  63. package/src/sap/ui/Global.js +14 -13
  64. package/src/sap/ui/VersionInfo.js +15 -3
  65. package/src/sap/ui/base/BindingParser.js +25 -15
  66. package/src/sap/ui/base/DataType.js +21 -13
  67. package/src/sap/ui/base/Event.js +1 -1
  68. package/src/sap/ui/base/EventProvider.js +1 -1
  69. package/src/sap/ui/base/ExpressionParser.js +5 -0
  70. package/src/sap/ui/base/Interface.js +1 -1
  71. package/src/sap/ui/base/ManagedObject.js +25 -14
  72. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  73. package/src/sap/ui/base/Metadata.js +28 -13
  74. package/src/sap/ui/base/Object.js +1 -1
  75. package/src/sap/ui/base/ObjectPool.js +1 -1
  76. package/src/sap/ui/core/.library +8 -7
  77. package/src/sap/ui/core/BusyIndicator.js +1 -1
  78. package/src/sap/ui/core/Component.js +133 -56
  79. package/src/sap/ui/core/ComponentContainer.js +14 -17
  80. package/src/sap/ui/core/ComponentMetadata.js +7 -3
  81. package/src/sap/ui/core/ComponentSupport.js +32 -13
  82. package/src/sap/ui/core/Configuration.js +1 -1
  83. package/src/sap/ui/core/Control.js +34 -19
  84. package/src/sap/ui/core/Core.js +42 -37
  85. package/src/sap/ui/core/CustomData.js +1 -1
  86. package/src/sap/ui/core/DeclarativeSupport.js +1 -1
  87. package/src/sap/ui/core/Element.js +6 -8
  88. package/src/sap/ui/core/ElementMetadata.js +35 -20
  89. package/src/sap/ui/core/EnabledPropagator.js +1 -1
  90. package/src/sap/ui/core/EventBus.js +1 -1
  91. package/src/sap/ui/core/ExtensionPoint.js +18 -11
  92. package/src/sap/ui/core/Fragment.js +69 -28
  93. package/src/sap/ui/core/HTML.js +3 -1
  94. package/src/sap/ui/core/History.js +1 -1
  95. package/src/sap/ui/core/Icon.js +1 -1
  96. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  97. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  98. package/src/sap/ui/core/InvisibleMessage.js +145 -125
  99. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  100. package/src/sap/ui/core/InvisibleText.js +6 -1
  101. package/src/sap/ui/core/Item.js +1 -1
  102. package/src/sap/ui/core/LabelEnablement.js +9 -2
  103. package/src/sap/ui/core/LayoutData.js +1 -1
  104. package/src/sap/ui/core/Lib.js +19 -12
  105. package/src/sap/ui/core/ListItem.js +1 -1
  106. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  107. package/src/sap/ui/core/Locale.js +2 -2
  108. package/src/sap/ui/core/LocaleData.js +16 -15
  109. package/src/sap/ui/core/Manifest.js +28 -28
  110. package/src/sap/ui/core/Message.js +1 -1
  111. package/src/sap/ui/core/Messaging.js +4 -4
  112. package/src/sap/ui/core/Popup.js +1 -47
  113. package/src/sap/ui/core/RenderManager.js +1 -1
  114. package/src/sap/ui/core/Renderer.js +12 -7
  115. package/src/sap/ui/core/Rendering.js +49 -42
  116. package/src/sap/ui/core/ResizeHandler.js +1 -1
  117. package/src/sap/ui/core/ScrollBar.js +7 -7
  118. package/src/sap/ui/core/ScrollBarRenderer.js +3 -3
  119. package/src/sap/ui/core/SeparatorItem.js +1 -1
  120. package/src/sap/ui/core/Shortcut.js +1 -0
  121. package/src/sap/ui/core/ShortcutHintsMixin.js +1 -1
  122. package/src/sap/ui/core/StashedControlSupport.js +39 -40
  123. package/src/sap/ui/core/Theming.js +15 -25
  124. package/src/sap/ui/core/Title.js +1 -1
  125. package/src/sap/ui/core/TooltipBase.js +4 -3
  126. package/src/sap/ui/core/UIArea.js +5 -3
  127. package/src/sap/ui/core/UIComponent.js +6 -4
  128. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  129. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  130. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  131. package/src/sap/ui/core/XMLComposite.js +1 -1
  132. package/src/sap/ui/core/XMLCompositeMetadata.js +2 -1
  133. package/src/sap/ui/core/XMLTemplateProcessor.js +44 -23
  134. package/src/sap/ui/core/cache/CacheManagerNOP.js +0 -1
  135. package/src/sap/ui/core/cldr/ar.json +47 -88
  136. package/src/sap/ui/core/cldr/ar_EG.json +47 -88
  137. package/src/sap/ui/core/cldr/ar_SA.json +48 -89
  138. package/src/sap/ui/core/cldr/bg.json +44 -156
  139. package/src/sap/ui/core/cldr/ca.json +265 -370
  140. package/src/sap/ui/core/cldr/cnr.json +545 -476
  141. package/src/sap/ui/core/cldr/cs.json +33 -467
  142. package/src/sap/ui/core/cldr/cy.json +36 -762
  143. package/src/sap/ui/core/cldr/da.json +43 -146
  144. package/src/sap/ui/core/cldr/de.json +47 -149
  145. package/src/sap/ui/core/cldr/de_AT.json +48 -150
  146. package/src/sap/ui/core/cldr/de_CH.json +86 -187
  147. package/src/sap/ui/core/cldr/el.json +28 -96
  148. package/src/sap/ui/core/cldr/el_CY.json +28 -96
  149. package/src/sap/ui/core/cldr/en.json +66 -27
  150. package/src/sap/ui/core/cldr/en_AU.json +314 -171
  151. package/src/sap/ui/core/cldr/en_GB.json +167 -33
  152. package/src/sap/ui/core/cldr/en_HK.json +57 -30
  153. package/src/sap/ui/core/cldr/en_IE.json +54 -27
  154. package/src/sap/ui/core/cldr/en_IN.json +139 -28
  155. package/src/sap/ui/core/cldr/en_NZ.json +55 -28
  156. package/src/sap/ui/core/cldr/en_PG.json +49 -22
  157. package/src/sap/ui/core/cldr/en_SG.json +51 -24
  158. package/src/sap/ui/core/cldr/en_ZA.json +61 -34
  159. package/src/sap/ui/core/cldr/es.json +25 -130
  160. package/src/sap/ui/core/cldr/es_AR.json +90 -191
  161. package/src/sap/ui/core/cldr/es_BO.json +63 -165
  162. package/src/sap/ui/core/cldr/es_CL.json +100 -202
  163. package/src/sap/ui/core/cldr/es_CO.json +54 -156
  164. package/src/sap/ui/core/cldr/es_MX.json +163 -258
  165. package/src/sap/ui/core/cldr/es_PE.json +65 -167
  166. package/src/sap/ui/core/cldr/es_UY.json +65 -167
  167. package/src/sap/ui/core/cldr/es_VE.json +43 -145
  168. package/src/sap/ui/core/cldr/et.json +44 -144
  169. package/src/sap/ui/core/cldr/fa.json +75 -80
  170. package/src/sap/ui/core/cldr/fi.json +38 -142
  171. package/src/sap/ui/core/cldr/fr.json +28 -22
  172. package/src/sap/ui/core/cldr/fr_BE.json +31 -25
  173. package/src/sap/ui/core/cldr/fr_CA.json +76 -69
  174. package/src/sap/ui/core/cldr/fr_CH.json +41 -35
  175. package/src/sap/ui/core/cldr/fr_LU.json +28 -22
  176. package/src/sap/ui/core/cldr/he.json +37 -426
  177. package/src/sap/ui/core/cldr/hi.json +40 -83
  178. package/src/sap/ui/core/cldr/hr.json +31 -286
  179. package/src/sap/ui/core/cldr/hu.json +46 -140
  180. package/src/sap/ui/core/cldr/id.json +31 -13
  181. package/src/sap/ui/core/cldr/it.json +59 -182
  182. package/src/sap/ui/core/cldr/it_CH.json +65 -188
  183. package/src/sap/ui/core/cldr/ja.json +103 -13
  184. package/src/sap/ui/core/cldr/kk.json +79 -67
  185. package/src/sap/ui/core/cldr/ko.json +29 -10
  186. package/src/sap/ui/core/cldr/lt.json +24 -366
  187. package/src/sap/ui/core/cldr/lv.json +30 -277
  188. package/src/sap/ui/core/cldr/mk.json +103 -198
  189. package/src/sap/ui/core/cldr/ms.json +30 -10
  190. package/src/sap/ui/core/cldr/nb.json +32 -133
  191. package/src/sap/ui/core/cldr/nl.json +37 -167
  192. package/src/sap/ui/core/cldr/nl_BE.json +108 -238
  193. package/src/sap/ui/core/cldr/pl.json +27 -384
  194. package/src/sap/ui/core/cldr/pt.json +37 -145
  195. package/src/sap/ui/core/cldr/pt_PT.json +32 -133
  196. package/src/sap/ui/core/cldr/ro.json +30 -289
  197. package/src/sap/ui/core/cldr/ru.json +27 -75
  198. package/src/sap/ui/core/cldr/ru_UA.json +27 -75
  199. package/src/sap/ui/core/cldr/sk.json +32 -438
  200. package/src/sap/ui/core/cldr/sl.json +131 -535
  201. package/src/sap/ui/core/cldr/sr.json +41 -332
  202. package/src/sap/ui/core/cldr/sr_Latn.json +192 -483
  203. package/src/sap/ui/core/cldr/sv.json +49 -137
  204. package/src/sap/ui/core/cldr/th.json +39 -20
  205. package/src/sap/ui/core/cldr/tr.json +33 -125
  206. package/src/sap/ui/core/cldr/uk.json +310 -252
  207. package/src/sap/ui/core/cldr/vi.json +458 -331
  208. package/src/sap/ui/core/cldr/zh_CN.json +39 -17
  209. package/src/sap/ui/core/cldr/zh_HK.json +49 -27
  210. package/src/sap/ui/core/cldr/zh_SG.json +53 -31
  211. package/src/sap/ui/core/cldr/zh_TW.json +31 -14
  212. package/src/sap/ui/core/date/CalendarUtils.js +11 -9
  213. package/src/sap/ui/core/date/Islamic.js +7 -2
  214. package/src/sap/ui/core/date/UI5Date.js +86 -34
  215. package/src/sap/ui/core/date/UniversalDate.js +16 -26
  216. package/src/sap/ui/core/date/UniversalDateUtils.js +14 -14
  217. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  218. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  219. package/src/sap/ui/core/dnd/DragAndDrop.js +4 -4
  220. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  221. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  222. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  223. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  224. package/src/sap/ui/core/format/DateFormat.js +37 -45
  225. package/src/sap/ui/core/format/FileSizeFormat.js +15 -16
  226. package/src/sap/ui/core/format/FormatUtils.js +36 -0
  227. package/src/sap/ui/core/format/ListFormat.js +4 -4
  228. package/src/sap/ui/core/format/NumberFormat.js +288 -125
  229. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  230. package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
  231. package/src/sap/ui/core/hyphenation/Hyphenation.js +16 -15
  232. package/src/sap/ui/core/library.js +26 -9
  233. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  234. package/src/sap/ui/core/message/Message.js +5 -5
  235. package/src/sap/ui/core/message/MessageManager.js +1 -1
  236. package/src/sap/ui/core/message/MessageMixin.js +1 -1
  237. package/src/sap/ui/core/message/MessageParser.js +1 -1
  238. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  239. package/src/sap/ui/core/messagebundle_mk.properties +1 -1
  240. package/src/sap/ui/core/mvc/Controller.js +49 -19
  241. package/src/sap/ui/core/mvc/ControllerExtension.js +5 -4
  242. package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +2 -2
  243. package/src/sap/ui/core/mvc/ControllerMetadata.js +3 -3
  244. package/src/sap/ui/core/mvc/EventHandlerResolver.js +6 -8
  245. package/src/sap/ui/core/mvc/HTMLView.js +1 -1
  246. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  247. package/src/sap/ui/core/mvc/JSView.js +1 -1
  248. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  249. package/src/sap/ui/core/mvc/View.js +8 -5
  250. package/src/sap/ui/core/mvc/XMLView.js +7 -5
  251. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  252. package/src/sap/ui/core/plugin/LessSupport.js +1 -1
  253. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  254. package/src/sap/ui/core/postmessage/Bus.js +5 -3
  255. package/src/sap/ui/core/postmessage/confirmationDialog.js +3 -3
  256. package/src/sap/ui/core/routing/HashChanger.js +21 -10
  257. package/src/sap/ui/core/routing/History.js +5 -5
  258. package/src/sap/ui/core/routing/Route.js +9 -7
  259. package/src/sap/ui/core/routing/Router.js +13 -7
  260. package/src/sap/ui/core/routing/Target.js +1 -1
  261. package/src/sap/ui/core/routing/Targets.js +5 -4
  262. package/src/sap/ui/core/routing/async/Target.js +10 -7
  263. package/src/sap/ui/core/routing/async/Targets.js +3 -3
  264. package/src/sap/ui/core/routing/sync/Target.js +4 -1
  265. package/src/sap/ui/core/rules/Config.support.js +3 -3
  266. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  267. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  268. package/src/sap/ui/core/service/Service.js +1 -1
  269. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  270. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  271. package/src/sap/ui/core/support/Plugin.js +1 -1
  272. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +9 -12
  273. package/src/sap/ui/core/support/Support.js +2 -2
  274. package/src/sap/ui/core/support/ToolsAPI.js +19 -6
  275. package/src/sap/ui/core/support/controls/InteractionTree.js +7 -7
  276. package/src/sap/ui/core/support/plugins/Breakpoint.js +8 -5
  277. package/src/sap/ui/core/support/plugins/ControlTree.js +26 -15
  278. package/src/sap/ui/core/support/plugins/Debugging.js +9 -6
  279. package/src/sap/ui/core/support/plugins/Interaction.js +9 -7
  280. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  281. package/src/sap/ui/core/support/plugins/Performance.js +6 -6
  282. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  283. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  284. package/src/sap/ui/core/support/plugins/Trace.js +4 -3
  285. package/src/sap/ui/core/support/plugins/ViewInfo.js +4 -2
  286. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +4 -4
  287. package/src/sap/ui/core/support/trace/E2eTraceLib.js +5 -5
  288. package/src/sap/ui/core/themes/base/Icon.less +2 -1
  289. package/src/sap/ui/core/themes/base/base.less +370 -371
  290. package/src/sap/ui/core/theming/Parameters.js +9 -8
  291. package/src/sap/ui/core/theming/ThemeHelper.js +4 -3
  292. package/src/sap/ui/core/theming/ThemeManager.js +8 -6
  293. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  294. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  295. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +6 -3
  296. package/src/sap/ui/core/tmpl/Template.js +1 -1
  297. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  298. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  299. package/src/sap/ui/core/util/Export.js +1 -1
  300. package/src/sap/ui/core/util/ExportCell.js +1 -1
  301. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  302. package/src/sap/ui/core/util/ExportRow.js +1 -1
  303. package/src/sap/ui/core/util/ExportType.js +1 -1
  304. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  305. package/src/sap/ui/core/util/File.js +1 -1
  306. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  307. package/src/sap/ui/core/util/MockServer.js +23 -13
  308. package/src/sap/ui/core/util/PasteHelper.js +3 -3
  309. package/src/sap/ui/core/util/_LocalizationHelper.js +10 -1
  310. package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +51 -5
  311. package/src/sap/ui/core/util/reflection/JsControlTreeModifier.js +2 -2
  312. package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +1 -0
  313. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  314. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  315. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  316. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  317. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  318. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  319. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  320. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  321. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  322. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  323. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  324. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  325. package/src/sap/ui/debug/ControlTree.js +6 -6
  326. package/src/sap/ui/debug/DebugEnv.js +1 -1
  327. package/src/sap/ui/debug/PropertyList.js +1 -1
  328. package/src/sap/ui/dom/isBehindOtherElement.js +0 -1
  329. package/src/sap/ui/events/isMouseEventDelayed.js +6 -12
  330. package/src/sap/ui/events/jquery/EventSimulation.js +4 -3
  331. package/src/sap/ui/events/jquery/EventTriggerHook.js +2 -3
  332. package/src/sap/ui/model/Binding.js +1 -1
  333. package/src/sap/ui/model/ClientListBinding.js +2 -0
  334. package/src/sap/ui/model/ClientModel.js +1 -1
  335. package/src/sap/ui/model/ClientTreeBinding.js +1 -0
  336. package/src/sap/ui/model/CompositeDataState.js +1 -1
  337. package/src/sap/ui/model/CompositeType.js +1 -1
  338. package/src/sap/ui/model/DataState.js +1 -1
  339. package/src/sap/ui/model/Filter.js +34 -4
  340. package/src/sap/ui/model/ManagedObjectBindingSupport.js +6 -3
  341. package/src/sap/ui/model/MetaModel.js +1 -1
  342. package/src/sap/ui/model/Model.js +6 -2
  343. package/src/sap/ui/model/SelectionModel.js +1 -1
  344. package/src/sap/ui/model/SimpleType.js +1 -1
  345. package/src/sap/ui/model/Sorter.js +4 -4
  346. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  347. package/src/sap/ui/model/Type.js +1 -1
  348. package/src/sap/ui/model/_Helper.js +4 -2
  349. package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -0
  350. package/src/sap/ui/model/json/JSONModel.js +6 -2
  351. package/src/sap/ui/model/message/MessageModel.js +1 -1
  352. package/src/sap/ui/model/odata/AnnotationHelper.js +12 -7
  353. package/src/sap/ui/model/odata/ODataAnnotations.js +4 -4
  354. package/src/sap/ui/model/odata/ODataMessageParser.js +4 -3
  355. package/src/sap/ui/model/odata/ODataMetaModel.js +2 -1
  356. package/src/sap/ui/model/odata/ODataMetadata.js +34 -4
  357. package/src/sap/ui/model/odata/ODataModel.js +5 -5
  358. package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
  359. package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +1 -0
  360. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +4 -2
  361. package/src/sap/ui/model/odata/ODataUtils.js +166 -131
  362. package/src/sap/ui/model/odata/type/Boolean.js +9 -7
  363. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  364. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  365. package/src/sap/ui/model/odata/type/Date.js +5 -4
  366. package/src/sap/ui/model/odata/type/DateTime.js +2 -2
  367. package/src/sap/ui/model/odata/type/DateTimeBase.js +4 -4
  368. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  369. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +4 -3
  370. package/src/sap/ui/model/odata/type/Decimal.js +5 -5
  371. package/src/sap/ui/model/odata/type/Double.js +4 -3
  372. package/src/sap/ui/model/odata/type/Guid.js +4 -3
  373. package/src/sap/ui/model/odata/type/Int.js +4 -4
  374. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  375. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  376. package/src/sap/ui/model/odata/type/Int64.js +4 -4
  377. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  378. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  379. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  380. package/src/sap/ui/model/odata/type/Single.js +4 -3
  381. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  382. package/src/sap/ui/model/odata/type/String.js +6 -5
  383. package/src/sap/ui/model/odata/type/Time.js +4 -4
  384. package/src/sap/ui/model/odata/type/TimeOfDay.js +5 -4
  385. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  386. package/src/sap/ui/model/odata/type/UnitMixin.js +3 -2
  387. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  388. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +4 -4
  389. package/src/sap/ui/model/odata/v2/ODataModel.js +55 -25
  390. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +5 -4
  391. package/src/sap/ui/model/odata/v4/Context.js +20 -7
  392. package/src/sap/ui/model/odata/v4/ODataBinding.js +14 -10
  393. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +8 -5
  394. package/src/sap/ui/model/odata/v4/ODataListBinding.js +56 -33
  395. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +7 -4
  396. package/src/sap/ui/model/odata/v4/ODataModel.js +25 -37
  397. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +10 -8
  398. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +9 -2
  399. package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +4 -4
  400. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +195 -59
  401. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +16 -6
  402. package/src/sap/ui/model/odata/v4/lib/_Cache.js +22 -15
  403. package/src/sap/ui/model/odata/v4/lib/_Helper.js +19 -11
  404. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +20 -11
  405. package/src/sap/ui/model/odata/v4/lib/_TreeState.js +122 -0
  406. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  407. package/src/sap/ui/model/type/Boolean.js +4 -4
  408. package/src/sap/ui/model/type/Currency.js +5 -5
  409. package/src/sap/ui/model/type/Date.js +5 -5
  410. package/src/sap/ui/model/type/DateInterval.js +6 -5
  411. package/src/sap/ui/model/type/DateTime.js +1 -1
  412. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  413. package/src/sap/ui/model/type/FileSize.js +5 -4
  414. package/src/sap/ui/model/type/Float.js +5 -5
  415. package/src/sap/ui/model/type/Integer.js +6 -6
  416. package/src/sap/ui/model/type/String.js +4 -3
  417. package/src/sap/ui/model/type/Time.js +1 -1
  418. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  419. package/src/sap/ui/model/type/Unit.js +8 -7
  420. package/src/sap/ui/model/xml/XMLModel.js +11 -3
  421. package/src/sap/ui/performance/trace/Interaction.js +8 -16
  422. package/src/sap/ui/performance/trace/initTraces.js +1 -1
  423. package/src/sap/ui/qunit/qunit-junit.js +415 -49
  424. package/src/sap/ui/qunit/utils/ControlIterator.js +4 -4
  425. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +3 -2
  426. package/src/sap/ui/qunit/utils/nextUIUpdate.js +15 -5
  427. package/src/sap/ui/test/OpaBuilder.js +3 -1
  428. package/src/sap/ui/test/OpaPlugin.js +103 -10
  429. package/src/sap/ui/test/autowaiter/_UIUpdatesWaiter.js +4 -4
  430. package/src/sap/ui/test/autowaiter/_navigationContainerWaiter.js +3 -3
  431. package/src/sap/ui/test/generic/TestBase.js +1 -1
  432. package/src/sap/ui/test/launchers/iFrameLauncher.js +18 -6
  433. package/src/sap/ui/test/matchers/Descendant.js +2 -1
  434. package/src/sap/ui/test/matchers/I18NText.js +6 -2
  435. package/src/sap/ui/test/matchers/Interactable.js +2 -3
  436. package/src/sap/ui/test/matchers/LabelFor.js +5 -3
  437. package/src/sap/ui/test/matchers/Matcher.js +20 -0
  438. package/src/sap/ui/test/matchers/Sibling.js +2 -1
  439. package/src/sap/ui/test/matchers/_Visitor.js +2 -4
  440. package/src/sap/ui/test/qunitPause.js +6 -4
  441. package/src/sap/ui/test/selectors/_ControlSelectorGenerator.js +4 -3
  442. package/src/sap/ui/test/selectors/_Selector.js +3 -3
  443. package/src/sap/ui/test/starter/_setupAndStart.js +5 -18
  444. package/src/sap/ui/test/starter/_utils.js +15 -1
  445. package/src/sap/ui/test/starter/createSuite.js +2 -0
  446. package/src/sap/ui/thirdparty/RequestRecorder.js +1 -1
  447. package/src/sap/ui/thirdparty/crossroads.js +3 -0
  448. package/src/sap/ui/thirdparty/qunit-2.js +1 -2
  449. package/src/sap/ui/thirdparty/qunit-reporter-junit.js +30 -8
  450. package/src/sap/ui/thirdparty/qunit.js +1 -2
  451. package/src/sap/ui/util/Storage.js +1 -1
  452. package/src/ui5loader-autoconfig.js +18 -4
  453. package/src/ui5loader.js +15 -4
  454. package/test/sap/ui/core/DateFormat.controller.js +3 -3
  455. package/test/sap/ui/core/ILabelableInterface.html +21 -0
  456. package/test/sap/ui/core/ILabelableInterface.js +81 -0
  457. package/test/sap/ui/core/NumberFormat.controller.js +4 -4
  458. package/test/sap/ui/core/Strings.controller.js +4 -4
  459. package/test/sap/ui/core/demokit/docuindex.json +8 -2
  460. package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +1 -1
  461. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/Component.js +2 -3
  462. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/css/style.css +3 -3
  463. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/categories/Component.js +2 -3
  464. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/products/Component.js +2 -3
  465. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/suppliers/Component.js +2 -3
  466. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/Component.js +20 -0
  467. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Home.controller.js +14 -0
  468. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Next.controller.js +21 -0
  469. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/manifest.json +94 -0
  470. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentDesktop.fragment.js +15 -0
  471. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentMobile.fragment.js +15 -0
  472. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeView.js +45 -0
  473. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/Next.view.xml +15 -0
  474. package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/RootView.js +22 -0
  475. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Opa.qunit.js +5 -4
  476. package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Opa.qunit.js +8 -5
  477. package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/ValueHelp.js +38 -35
  478. package/test/sap/ui/core/demokit/sample/common/Helper.js +7 -7
  479. package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +1 -1
  480. package/test/sap/ui/core/demokit/sample/common/pages/Any.js +5 -3
  481. package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +1 -1
  482. package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +1 -1
  483. package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +1 -1
  484. package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +1 -1
  485. package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTime/DateTime.controller.js +3 -3
  486. package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTimeOffset/DateTimeOffset.controller.js +3 -3
  487. package/test/sap/ui/core/demokit/sample/odata/types/v2/Time/Time.controller.js +3 -3
  488. package/test/sap/ui/core/demokit/sample/odata/types/v4/Date/Date.controller.js +3 -3
  489. package/test/sap/ui/core/demokit/sample/odata/types/v4/DateTimeOffset/DateTimeOffset.controller.js +3 -3
  490. package/test/sap/ui/core/demokit/sample/odata/types/v4/TimeOfDay/TimeOfDay.controller.js +3 -3
  491. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +10 -0
  492. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.view.xml +3 -0
  493. package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.controller.js +1 -2
  494. package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.view.xml +6 -3
  495. package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/formatRowHighlight.js +20 -0
  496. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +30 -24
  497. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +10 -8
  498. package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/Main.controller.js +1 -0
  499. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +1 -1
  500. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Opa.qunit.js +6 -0
  501. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +16 -17
  502. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +8 -14
  503. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +65 -31
  504. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/pages/Main.js +1 -0
  505. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersRTATest/Main.controller.js +1 -1
  506. package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +1 -1
  507. package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +1 -1
  508. package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +1 -1
  509. package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +1 -1
  510. package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +1 -1
  511. package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +1 -1
  512. package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +1 -1
  513. package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +1 -1
  514. package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +1 -1
  515. package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +1 -1
  516. package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +1 -1
  517. package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +1 -1
  518. package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +1 -1
  519. package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +1 -1
  520. package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +1 -1
  521. package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +1 -1
  522. package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +1 -1
  523. package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +1 -1
  524. package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +1 -1
  525. package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +1 -1
  526. package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +1 -1
  527. package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +1 -1
  528. package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +1 -1
  529. package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +1 -1
  530. package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +1 -1
  531. package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +1 -1
  532. package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +1 -1
  533. package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +1 -1
  534. package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +1 -1
  535. package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +1 -1
  536. package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +1 -1
  537. package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +1 -1
  538. package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +1 -1
  539. package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +1 -1
  540. package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +1 -1
  541. package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +1 -1
  542. package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +1 -1
  543. package/test/sap/ui/core/demokit/tutorial/odatav4/01/webapp/localService/mockserver.js +1 -1
  544. package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +1 -1
  545. package/test/sap/ui/core/demokit/tutorial/odatav4/02/webapp/localService/mockserver.js +1 -1
  546. package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +1 -1
  547. package/test/sap/ui/core/demokit/tutorial/odatav4/03/webapp/localService/mockserver.js +1 -1
  548. package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +1 -1
  549. package/test/sap/ui/core/demokit/tutorial/odatav4/04/webapp/localService/mockserver.js +1 -1
  550. package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +1 -1
  551. package/test/sap/ui/core/demokit/tutorial/odatav4/05/webapp/localService/mockserver.js +1 -1
  552. package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +1 -1
  553. package/test/sap/ui/core/demokit/tutorial/odatav4/06/webapp/localService/mockserver.js +1 -1
  554. package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +1 -1
  555. package/test/sap/ui/core/demokit/tutorial/odatav4/07/webapp/localService/mockserver.js +1 -1
  556. package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +1 -1
  557. package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/localService/mockserver.js +1 -1
  558. package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +1 -1
  559. package/test/sap/ui/core/demokit/tutorial/odatav4/09/webapp/localService/mockserver.js +1 -1
  560. package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +1 -1
  561. package/test/sap/ui/core/demokit/tutorial/odatav4/10/webapp/localService/mockserver.js +1 -1
  562. package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +1 -1
  563. package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/localService/mockserver.js +1 -1
  564. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +1 -1
  565. package/test/sap/ui/core/internal/samples/odata/twoFields/Main.controller.js +3 -1
  566. package/test/sap/ui/core/internal/samples/odata/twoFields/tests/pages/Main.js +3 -2
  567. package/test/sap/ui/core/internal/samples/odata/v2/Products/Opa.qunit.js +5 -4
  568. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.controller.js +4 -6
  569. package/test/sap/ui/core/internal/samples/odata/v2/TreeTable/Main.controller.js +6 -5
  570. package/test/sap/ui/core/qunit/AppCacheBuster.qunit.js +5 -5
  571. package/test/sap/ui/core/qunit/BindingParser.qunit.js +158 -24
  572. package/test/sap/ui/core/qunit/BlockLayerUtils.qunit.js +3 -6
  573. package/test/sap/ui/core/qunit/CalculatedFields.qunit.js +70 -81
  574. package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +13 -13
  575. package/test/sap/ui/core/qunit/ControlDefinition.qunit.js +5 -4
  576. package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +1 -1
  577. package/test/sap/ui/core/qunit/Core.qunit.js +42 -57
  578. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +10 -2
  579. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +2 -2
  580. package/test/sap/ui/core/qunit/Core_libraryTerminologies.qunit.js +4 -3
  581. package/test/sap/ui/core/qunit/CustomThemeFallback.qunit.js +2 -3
  582. package/test/sap/ui/core/qunit/DataBinding.qunit.js +125 -65
  583. package/test/sap/ui/core/qunit/Element_base.qunit.js +4 -1
  584. package/test/sap/ui/core/qunit/Element_destroy.qunit.js +6 -10
  585. package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +54 -43
  586. package/test/sap/ui/core/qunit/Element_metadata_selector.qunit.js +1 -1
  587. package/test/sap/ui/core/qunit/EnabledPropagator.qunit.js +3 -2
  588. package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +5 -2
  589. package/test/sap/ui/core/qunit/FieldGroup.qunit.js +3 -2
  590. package/test/sap/ui/core/qunit/Fragment.qunit.js +18 -2
  591. package/test/sap/ui/core/qunit/HTML.qunit.js +3 -2
  592. package/test/sap/ui/core/qunit/Hyphenation.qunit.js +30 -6
  593. package/test/sap/ui/core/qunit/Icon.qunit.js +4 -3
  594. package/test/sap/ui/core/qunit/InvisibleText.qunit.js +6 -5
  595. package/test/sap/ui/core/qunit/Lib.qunit.js +155 -14
  596. package/test/sap/ui/core/qunit/ListBinding.qunit.js +7 -42
  597. package/test/sap/ui/core/qunit/QUnit.qunit.js +6 -0
  598. package/test/sap/ui/core/qunit/RenderManager.qunit.js +13 -10
  599. package/test/sap/ui/core/qunit/{CoreEvents.qunit.js → Rendering.qunit.js} +68 -7
  600. package/test/sap/ui/core/qunit/ScrollBar.qunit.js +8 -7
  601. package/test/sap/ui/core/qunit/StashedControlSupport.qunit.js +65 -90
  602. package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.qunit.js +706 -0
  603. package/test/sap/ui/core/qunit/StaticBinding.qunit.js +49 -37
  604. package/test/sap/ui/core/qunit/ThemeManager.qunit.js +15 -11
  605. package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +5 -5
  606. package/test/sap/ui/core/qunit/ThemeParameters_legacyAPIs.qunit.js +7 -7
  607. package/test/sap/ui/core/qunit/Theming.qunit.js +174 -1
  608. package/test/sap/ui/core/qunit/VersionInfo.qunit.js +3 -0
  609. package/test/sap/ui/core/qunit/analytics/AnalyticalBinding.qunit.js +58 -0
  610. package/test/sap/ui/core/qunit/analytics/o4aMetadata.js +3 -0
  611. package/test/sap/ui/core/qunit/app/ThemeClassParameters.qunit.js +4 -4
  612. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +1 -1
  613. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +276 -44
  614. package/test/sap/ui/core/qunit/base/i18n/Localization.qunit.js +173 -26
  615. package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +408 -3
  616. package/test/sap/ui/core/qunit/base/util/now.qunit.js +2 -30
  617. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +6 -4
  618. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.qunit.js +4 -4
  619. package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.js +1 -1
  620. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +15 -6
  621. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +2 -3
  622. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.beforeBootstrap.qunit.js +4 -4
  623. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.qunit.js +1 -1
  624. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithNoJQuery.qunit.js +2 -1
  625. package/test/sap/ui/core/qunit/bootstrap/CalendarClassLoadingWithCustomBootTask.beforeBootstrap.qunit.js +8 -4
  626. package/test/sap/ui/core/qunit/bootstrap/{CalendarClassLoadingWithCustomBootTaskAndPreload.beforeBootstrap.qunit.js → CalendarClassLoadingWithCustomBootTask.beforeBootstrap_legacy.qunit.js} +5 -1
  627. package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +32 -28
  628. package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.html → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.html} +1 -1
  629. package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.js → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.js} +5 -1
  630. package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.html → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.html} +1 -1
  631. package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.js → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.js} +5 -1
  632. package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.html → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.html} +1 -1
  633. package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.js → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.js} +5 -1
  634. package/test/sap/ui/core/qunit/bootstrap/Configuration_language_via_URL.qunit.js +5 -0
  635. package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +5 -0
  636. package/test/sap/ui/core/qunit/bootstrap/DebugMode.beforeBootstrap.qunit.js +2 -2
  637. package/test/sap/ui/core/qunit/bootstrap/DebugMode.qunit.js +8 -8
  638. package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -4
  639. package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +11 -10
  640. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +2 -2
  641. package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +68 -13
  642. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.html +0 -1
  643. package/test/sap/ui/core/qunit/component/Component.qunit.js +40 -21
  644. package/test/sap/ui/core/qunit/component/ComponentSupport.qunit.js +65 -39
  645. package/test/sap/ui/core/qunit/component/Component_containedInLibrary.qunit.js +25 -6
  646. package/test/sap/ui/core/qunit/component/Manifest.qunit.js +9 -9
  647. package/test/sap/ui/core/qunit/component/Metadata.qunit.js +5 -5
  648. package/test/sap/ui/core/qunit/component/Metadata_unavoidablySync.qunit.js +1 -2
  649. package/test/sap/ui/core/qunit/component/Models.qunit.js +295 -157
  650. package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +3 -3
  651. package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.js +3 -4
  652. package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.json +1 -1
  653. package/test/sap/ui/core/qunit/component/testdata/async/lib2/library.js +3 -4
  654. package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.js +3 -4
  655. package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.json +1 -1
  656. package/test/sap/ui/core/qunit/component/testdata/async/lib3/library.js +3 -3
  657. package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.js +3 -4
  658. package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.json +1 -1
  659. package/test/sap/ui/core/qunit/component/testdata/async/lib4/library.js +3 -4
  660. package/test/sap/ui/core/qunit/component/testdata/inherit/parent/i18n/i18n.properties +3 -0
  661. package/test/sap/ui/core/qunit/component/testdata/inherit/parent/manifest.json +3 -1
  662. package/test/sap/ui/core/qunit/component/testdata/v2models/parent/Component.js +1 -4
  663. package/test/sap/ui/core/qunit/component/testdata/v4models/Component.js +1 -2
  664. package/test/sap/ui/core/qunit/component/testdata/v4models/cacheTokens/Component.js +1 -2
  665. package/test/sap/ui/core/qunit/component/testdata/v4models/unsupportedVersion/Component.js +1 -2
  666. package/test/sap/ui/core/qunit/component/testdata/verticalLayout/Component.js +2 -3
  667. package/test/sap/ui/core/qunit/component/testdata/view/Main.controller.js +1 -1
  668. package/test/sap/ui/core/qunit/composite/XMLComposite.qunit.js +3 -2
  669. package/test/sap/ui/core/qunit/csp/ContentSecurityPolicy.qunit.js +0 -1
  670. package/test/sap/ui/core/qunit/dnd/DragAndDrop.qunit.js +3 -3
  671. package/test/sap/ui/core/qunit/dnd/DragInfo.qunit.js +2 -1
  672. package/test/sap/ui/core/qunit/format/FormatUtils.qunit.js +36 -0
  673. package/test/sap/ui/core/qunit/generic/ControlMemoryLeaks.qunit.js +1 -1
  674. package/test/sap/ui/core/qunit/generic/DuplicateIdCheck.qunit.js +2 -2
  675. package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +6 -6
  676. package/test/sap/ui/core/qunit/i18n/CalendarUtils.qunit.js +3 -3
  677. package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +29 -29
  678. package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +6 -6
  679. package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +92 -78
  680. package/test/sap/ui/core/qunit/i18n/UI5Date.qunit.js +199 -33
  681. package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +111 -119
  682. package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +12 -38
  683. package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +1 -1
  684. package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +29 -28
  685. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -1
  686. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +3 -9
  687. package/test/sap/ui/core/qunit/internal/testsuite.models.qunit.js +7 -0
  688. package/test/sap/ui/core/qunit/jquery.sap.events.qunit.js +4 -68
  689. package/test/sap/ui/core/qunit/json/JSONBinding.qunit.js +4 -6
  690. package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +0 -1
  691. package/test/sap/ui/core/qunit/json/JSONModel.qunit.js +5 -18
  692. package/test/sap/ui/core/qunit/json/JSONPropertyBinding.qunit.js +15 -23
  693. package/test/sap/ui/core/qunit/json/JSONTreeBinding.qunit.js +6 -8
  694. package/test/sap/ui/core/qunit/json/JSONTwoWay.qunit.js +11 -13
  695. package/test/sap/ui/core/qunit/loader/asyncMode.qunit.html +0 -2
  696. package/test/sap/ui/core/qunit/loader/asyncMode.qunit.js +40 -34
  697. package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.html → asyncMode_legacyAPIs.qunit.html} +1 -1
  698. package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.js → asyncMode_legacyAPIs.qunit.js} +33 -4
  699. package/test/sap/ui/core/qunit/loader/conflictWithRequire.qunit.js +16 -16
  700. package/test/sap/ui/core/qunit/loader/testsuite.loader.qunit.js +2 -2
  701. package/test/sap/ui/core/qunit/messages/MessageMixin.qunit.js +46 -2
  702. package/test/sap/ui/core/qunit/mockserver/MockServer.qunit.js +859 -245
  703. package/test/sap/ui/core/qunit/mockserver/testsuite.mockserver.qunit.js +8 -0
  704. package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata.xml +3 -0
  705. package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata_ItemCustomer.xml +5 -0
  706. package/test/sap/ui/core/qunit/model/Filter.qunit.js +135 -44
  707. package/test/sap/ui/core/qunit/model/Sorter.qunit.js +10 -10
  708. package/test/sap/ui/core/qunit/model/_Helper.qunit.js +3 -1
  709. package/test/sap/ui/core/qunit/mvc/AnyViewAsync.qunit.js +11 -3
  710. package/test/sap/ui/core/qunit/mvc/AsyncXMLView.qunit.js +5 -5
  711. package/test/sap/ui/core/qunit/mvc/EventHandlerResolver.qunit.js +73 -47
  712. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +0 -4
  713. package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +78 -7
  714. package/test/sap/ui/core/qunit/mvc/testdata/inner.view.xml +3 -0
  715. package/test/sap/ui/core/qunit/mvc/testdata/middle.view.xml +8 -0
  716. package/test/sap/ui/core/qunit/mvc/testdata/outer.view.xml +5 -0
  717. package/test/sap/ui/core/qunit/mvc/testdata/test.controller.js +1 -1
  718. package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +3 -3
  719. package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncHTMLView_legacyAPIs.qunit.js +6 -7
  720. package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncXMLView_legacyAPIs.qunit.js +5 -7
  721. package/test/sap/ui/core/qunit/mvc_legacyAPIs/View_legacyAPIs.qunit.js +46 -1
  722. package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLTemplateProcessorRequireXML_legacyAPIs.qunit.js +0 -4
  723. package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLView_legacyAPIs.qunit.js +5 -5
  724. package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +60 -62
  725. package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +9 -9
  726. package/test/sap/ui/core/qunit/odata/ODataMessageParser.qunit.js +12 -46
  727. package/test/sap/ui/core/qunit/odata/ODataMessageParserNoFakeService.qunit.js +4 -3
  728. package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +7 -0
  729. package/test/sap/ui/core/qunit/odata/ODataMetadataNoFakeService.qunit.js +40 -0
  730. package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +365 -13
  731. package/test/sap/ui/core/qunit/odata/_AnnotationHelperExpression.qunit.js +7 -7
  732. package/test/sap/ui/core/qunit/odata/type/Boolean.qunit.js +5 -5
  733. package/test/sap/ui/core/qunit/odata/type/Currency.qunit.js +5 -5
  734. package/test/sap/ui/core/qunit/odata/type/Date.qunit.js +11 -11
  735. package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +54 -55
  736. package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +8 -8
  737. package/test/sap/ui/core/qunit/odata/type/Decimal.qunit.js +7 -7
  738. package/test/sap/ui/core/qunit/odata/type/Double.qunit.js +7 -7
  739. package/test/sap/ui/core/qunit/odata/type/Int.qunit.js +7 -7
  740. package/test/sap/ui/core/qunit/odata/type/Int64.qunit.js +7 -7
  741. package/test/sap/ui/core/qunit/odata/type/Single.qunit.js +6 -6
  742. package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +7 -7
  743. package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +12 -12
  744. package/test/sap/ui/core/qunit/odata/type/Unit.qunit.js +5 -5
  745. package/test/sap/ui/core/qunit/odata/v2/CanonicalRequests.qunit.js +1 -1
  746. package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +580 -130
  747. package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +79 -20
  748. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +23 -18
  749. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +24 -0
  750. package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +25 -203
  751. package/test/sap/ui/core/qunit/odata/v2/V2ODataModel.qunit.js +55 -192
  752. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelB.qunit.js +47 -261
  753. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +9 -9
  754. package/test/sap/ui/core/qunit/odata/v4/AnnotationHelper.qunit.js +4 -1
  755. package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +43 -5
  756. package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +30 -49
  757. package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +7 -6
  758. package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +142 -30
  759. package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +8 -6
  760. package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +2317 -470
  761. package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +12 -43
  762. package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +75 -40
  763. package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +43 -9
  764. package/test/sap/ui/core/qunit/odata/v4/ODataUtils.qunit.js +7 -7
  765. package/test/sap/ui/core/qunit/odata/v4/data/metadata_special_cases.xml +4 -0
  766. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +381 -182
  767. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +46 -29
  768. package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +38 -26
  769. package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +38 -10
  770. package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +45 -4
  771. package/test/sap/ui/core/qunit/odata/v4/lib/_TreeState.qunit.js +134 -0
  772. package/test/sap/ui/core/qunit/odata/v4/lib/_V2Requestor.qunit.js +7 -7
  773. package/test/sap/ui/core/qunit/odata/v4/testsuite.odatav4.qunit.js +1 -0
  774. package/test/sap/ui/core/qunit/opa/OpaBuilder.qunit.js +3 -1
  775. package/test/sap/ui/core/qunit/opa/RecordReplay.qunit.js +0 -1
  776. package/test/sap/ui/core/qunit/opa/_ControlFinder.qunit.js +5 -1
  777. package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +0 -1
  778. package/test/sap/ui/core/qunit/opa/actions/Press.qunit.js +4 -3
  779. package/test/sap/ui/core/qunit/opa/autowaiter/_XHRWaiter.js +1 -1
  780. package/test/sap/ui/core/qunit/opa/autowaiter/_navigationContainerWaiter.js +5 -5
  781. package/test/sap/ui/core/qunit/opa/fixture/bindingPath.js +20 -12
  782. package/test/sap/ui/core/qunit/opa/fixture/busyAfterStart.html +4 -4
  783. package/test/sap/ui/core/qunit/opa/fixture/emptySite.html +4 -2
  784. package/test/sap/ui/core/qunit/opa/fixture/emptySiteWithOpaExtensions.html +4 -2
  785. package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit1.html +4 -1
  786. package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit2.html +4 -1
  787. package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest.js +6 -3
  788. package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.html +5 -5
  789. package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit1.html +4 -2
  790. package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit2.html +4 -2
  791. package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest.js +4 -1
  792. package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit1.html +4 -2
  793. package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit2.html +4 -2
  794. package/test/sap/ui/core/qunit/opa/fixture/opaReportTest.js +4 -1
  795. package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit1.html +3 -1
  796. package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit2.html +3 -1
  797. package/test/sap/ui/core/qunit/opa/fixture/qunitPause.qunit.js +4 -1
  798. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.html +4 -3
  799. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +4 -1
  800. package/test/sap/ui/core/qunit/opa/matchers/I18NText.qunit.js +1 -1
  801. package/test/sap/ui/core/qunit/opa/matchers/LabelFor.qunit.js +2 -1
  802. package/test/sap/ui/core/qunit/opa/matchers/_Busy.qunit.js +2 -1
  803. package/test/sap/ui/core/qunit/opa/opa5/iFrame.qunit.js +6 -5
  804. package/test/sap/ui/core/qunit/opa/opa5/iFrameLogging.qunit.js +26 -6
  805. package/test/sap/ui/core/qunit/opa/opa5/matchersInFrame.qunit.js +1 -1
  806. package/test/sap/ui/core/qunit/opa/selectors/_BindingPath.js +2 -2
  807. package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorGenerator.js +3 -3
  808. package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorValidator.js +5 -2
  809. package/test/sap/ui/core/qunit/opa/selectors/_DropdownItem.js +3 -2
  810. package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +28 -18
  811. package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +26 -12
  812. package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +5 -8
  813. package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +71 -64
  814. package/test/sap/ui/core/qunit/routing/async/Router.qunit.js +55 -2
  815. package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/Component.js +0 -1
  816. package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/manifest.json +5 -1
  817. package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/Component.js +0 -1
  818. package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/manifest.json +5 -1
  819. package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/ParentExtended/Component.js +0 -1
  820. package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/Component.js +15 -0
  821. package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/manifest.json +37 -0
  822. package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/MyView1.view.xml +3 -0
  823. package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/RootView.view.xml +3 -0
  824. package/test/sap/ui/core/qunit/rule/app/syncXHR.qunit.js +9 -0
  825. package/test/sap/ui/core/qunit/rule/model/modelSupport.qunit.js +4 -7
  826. package/test/sap/ui/core/qunit/security/Security.qunit.js +133 -0
  827. package/test/sap/ui/core/qunit/service/Service.qunit.js +13 -10
  828. package/test/sap/ui/core/qunit/testdata/libraries/customBundle/custom-bundle.js +2 -2
  829. package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib2/library-preload.js +1 -1
  830. package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib3/library-preload.js +1 -1
  831. package/test/sap/ui/core/qunit/testdata/libraries/customCss/lib1/library.js +3 -4
  832. package/test/sap/ui/core/qunit/testdata/libraries/make.js +4 -4
  833. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library-preload.js +7 -4
  834. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library.js +7 -4
  835. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library-preload.json +1 -1
  836. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library.js +7 -4
  837. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library-preload.js +5 -4
  838. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library.js +5 -4
  839. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.js +3 -3
  840. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.json +1 -1
  841. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library.js +3 -3
  842. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library-preload.json +1 -1
  843. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library.js +3 -3
  844. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library-preload.js +3 -3
  845. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library.js +3 -3
  846. package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib7/library.js +3 -3
  847. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library-preload.js +7 -4
  848. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library.js +7 -4
  849. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library-preload.json +1 -1
  850. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library.js +7 -4
  851. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library-preload.js +5 -4
  852. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library.js +5 -4
  853. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.js +3 -3
  854. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.json +1 -1
  855. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library.js +3 -3
  856. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library-preload.json +1 -1
  857. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library.js +3 -3
  858. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library-preload.js +3 -3
  859. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library.js +3 -3
  860. package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib7/library.js +3 -3
  861. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -3
  862. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -3
  863. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -3
  864. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -3
  865. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +3 -3
  866. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +3 -3
  867. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library-preload.js +3 -3
  868. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library.js +3 -3
  869. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +3 -3
  870. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +3 -3
  871. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +3 -3
  872. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +3 -3
  873. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library-preload.js +3 -3
  874. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library.js +3 -3
  875. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +3 -3
  876. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +3 -3
  877. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library-preload.js +6 -4
  878. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library.js +6 -4
  879. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library-preload.js +3 -3
  880. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library.js +3 -3
  881. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library-preload.json +1 -1
  882. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library.js +7 -4
  883. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library-preload.js +5 -4
  884. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library.js +5 -4
  885. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.js +3 -3
  886. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.json +1 -1
  887. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library.js +3 -3
  888. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library-preload.json +1 -1
  889. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library.js +3 -3
  890. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library-preload.js +3 -3
  891. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library.js +3 -3
  892. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library-preload.js +3 -3
  893. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library.js +3 -3
  894. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library-preload.js +5 -4
  895. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library.js +5 -4
  896. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library-preload.js +5 -4
  897. package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library.js +5 -4
  898. package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library-preload.js +3 -3
  899. package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library.js +3 -3
  900. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library-preload.js +7 -4
  901. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library.js +7 -4
  902. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library-preload.json +1 -1
  903. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library.js +7 -4
  904. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library-preload.js +5 -4
  905. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library.js +5 -4
  906. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.js +3 -3
  907. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.json +1 -1
  908. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library.js +3 -3
  909. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library-preload.json +1 -1
  910. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library.js +3 -3
  911. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library-preload.js +3 -3
  912. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library.js +3 -3
  913. package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib7/library.js +3 -3
  914. package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library-preload.js +5 -4
  915. package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library.js +5 -4
  916. package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library-preload.json +1 -1
  917. package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library.js +6 -4
  918. package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library-preload.js +3 -3
  919. package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library.js +3 -3
  920. package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library-preload.js +5 -4
  921. package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library.js +5 -4
  922. package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library-preload.json +1 -1
  923. package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library.js +5 -4
  924. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library-preload.js +7 -4
  925. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library.js +7 -4
  926. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library-preload.js +6 -4
  927. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library.js +6 -4
  928. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library-preload.js +5 -4
  929. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library.js +5 -4
  930. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.js +3 -3
  931. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.json +1 -1
  932. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library.js +3 -3
  933. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library-preload.json +1 -1
  934. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library.js +3 -3
  935. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library-preload.js +3 -3
  936. package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library.js +3 -3
  937. package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library-preload.json +1 -1
  938. package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library.js +3 -3
  939. package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library-preload.json +1 -1
  940. package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library.js +3 -3
  941. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.js +3 -3
  942. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.json +1 -1
  943. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library.js +3 -3
  944. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library-preload.json +1 -1
  945. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library.js +3 -3
  946. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library-preload.js +3 -3
  947. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library.js +3 -3
  948. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library-preload.json +1 -1
  949. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library.js +3 -3
  950. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library-preload.js +3 -3
  951. package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library.js +3 -3
  952. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.js +3 -3
  953. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.json +1 -1
  954. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library.js +3 -3
  955. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library-preload.json +1 -1
  956. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library.js +3 -3
  957. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library-preload.js +3 -3
  958. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library.js +3 -3
  959. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library-preload.json +1 -1
  960. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library.js +3 -3
  961. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library-preload.js +3 -3
  962. package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library.js +3 -3
  963. package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library-preload.js +3 -3
  964. package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library.js +3 -3
  965. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/absoluteBundleUrl/library-preload.js +2 -2
  966. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
  967. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/notLoadedYet/library-preload.js +2 -2
  968. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/library-preload.js +2 -2
  969. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib1/library.js +6 -4
  970. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib10/library.js +6 -4
  971. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib11/library.js +5 -3
  972. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib12/library.js +5 -3
  973. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib13/library.js +5 -3
  974. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib14/library.js +5 -3
  975. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib15/library.js +5 -3
  976. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib16/library.js +5 -3
  977. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib17/library.js +6 -3
  978. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib2/library.js +6 -4
  979. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib3/library.js +6 -4
  980. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib4/library.js +6 -4
  981. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib5/library.js +6 -4
  982. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib6/library.js +6 -4
  983. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib7/library.js +6 -4
  984. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib8/library.js +6 -4
  985. package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib9/library.js +6 -4
  986. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require.view.xml +0 -1
  987. package/test/sap/ui/core/qunit/testsuite.qunit.js +2 -2
  988. package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +35 -0
  989. package/test/sap/ui/core/qunit/testsuites/testsuite.controls.qunit.js +2 -1
  990. package/test/sap/ui/core/qunit/testsuites/testsuite.eventing.qunit.js +0 -11
  991. package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +7 -0
  992. package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +4 -0
  993. package/test/sap/ui/core/qunit/types/Date.qunit.js +5 -5
  994. package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +92 -99
  995. package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +50 -50
  996. package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +5 -5
  997. package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +74 -4
  998. package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +332 -166
  999. package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +60 -24
  1000. package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +21 -21
  1001. package/test/sap/ui/core/qunit/types/Types.qunit.js +51 -48
  1002. package/test/sap/ui/core/qunit/types/ValidationHooks.qunit.js +151 -78
  1003. package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +7 -17
  1004. package/test/sap/ui/core/qunit/{types → ui5classes}/DataType.qunit.js +174 -17
  1005. package/test/sap/ui/core/qunit/{ManagedObjectMetadata.qunit.js → ui5classes/ManagedObjectMetadata.qunit.js} +0 -1
  1006. package/test/sap/ui/core/qunit/ui5classes/ManagedObjectRegistry.qunit.js +1 -1
  1007. package/test/sap/ui/core/qunit/{ManagedObject_BindingParser.qunit.js → ui5classes/ManagedObject_BindingParser.qunit.js} +1 -1
  1008. package/test/sap/ui/core/qunit/ui5classes/testsuite.ui5classes.qunit.html +11 -0
  1009. package/test/sap/ui/core/qunit/util/LabelEnablement.qunit.js +62 -0
  1010. package/test/sap/ui/core/qunit/util/PasteHelper.qunit.js +5 -5
  1011. package/test/sap/ui/core/qunit/util/Popup.qunit.js +3 -71
  1012. package/test/sap/ui/core/qunit/util/ValueStateSupport.qunit.js +3 -3
  1013. package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +6 -0
  1014. package/test/sap/ui/core/qunit/util/jQuery.sap.measure.qunit.js +31 -16
  1015. package/test/sap/ui/core/qunit/util/jquery.sap.trace.qunit.js +1 -1
  1016. package/test/sap/ui/core/qunit/util/postmessage/ConfirmationDialog.qunit.js +4 -6
  1017. package/test/sap/ui/core/qunit/util/reflection/BaseTreeModifier.qunit.js +11 -2
  1018. package/test/sap/ui/core/qunit/util/reflection/JsControlTreeModifier.qunit.js +4 -4
  1019. package/test/sap/ui/core/qunit/util/reflection/XmlTreeModifier.qunit.js +4 -4
  1020. package/test/sap/ui/core/qunit/util/support/SupportTool.qunit.js +3 -2
  1021. package/test/sap/ui/core/qunit/util/support/TechnicalInfo.opa.qunit.js +22 -83
  1022. package/test/sap/ui/core/qunit/util/support/TechnicalInfo.qunit.js +3 -3
  1023. package/test/sap/ui/core/qunit/util/support/TechnicalInfoDebugModules.opa.qunit.js +22 -83
  1024. package/test/sap/ui/core/qunit/xml/XMLBinding.qunit.js +0 -2
  1025. package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -4
  1026. package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +12 -14
  1027. package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +4 -6
  1028. package/test/sap/ui/core/qunit/xml/XMLTwoWay.qunit.js +8 -10
  1029. package/test/sap/ui/core/relnotes/changes-1.120.json +0 -510
  1030. package/test/sap/ui/core/relnotes/changes-1.121.json +604 -0
  1031. package/test/sap/ui/core/samples/components/config/modelPreloadAndEarlyRequests/manifest.json +3 -5
  1032. package/test/sap/ui/core/samples/databinding/UnitTable.controller.js +5 -5
  1033. package/test/sap/ui/core/terminologies/App.controller.js +3 -4
  1034. package/test/sap/ui/core/terminologies/main.js +4 -4
  1035. package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/firstItem-contextMenu.ref.lnk +1 -1
  1036. package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/initial.ref.lnk +1 -1
  1037. package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/lastItem-contextMenu.ref.lnk +1 -1
  1038. package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/leftDownBtn-contextMenu.ref.lnk +1 -1
  1039. package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/myButtonSample-contextMenu.ref.lnk +1 -1
  1040. package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/rightDownBtn-contextMenu.ref.lnk +1 -1
  1041. package/test/sap/ui/qunit/testrunner.html +5 -2
  1042. package/test/testsuite/js/samples.js +5 -4
  1043. package/test/testsuite/js/settings.js +1 -1
  1044. package/test/testsuite/js/testframe.js +1 -1
  1045. package/test/testsuite/welcome.html +1 -1
  1046. package/LICENSES/BSD-2-Clause.txt +0 -22
  1047. package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Formatter.js +0 -22
  1048. package/test/sap/ui/core/qunit/ManagedObjectRegistry.qunit.js +0 -150
  1049. package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/.library +0 -17
  1050. package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButton.js +0 -85
  1051. package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButtonRenderer.js +0 -63
  1052. package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/library.js +0 -24
  1053. package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/themes/base/library.css +0 -26
  1054. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.html +0 -12
  1055. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +0 -76
  1056. /package/test/sap/ui/core/qunit/bootstrap/{DebugMode.qunit.html → DebugModeSync.qunit.html} +0 -0
  1057. /package/test/sap/ui/core/qunit/{types → ui5classes}/AlternativeTypes.qunit.js +0 -0
  1058. /package/test/sap/ui/core/qunit/{ManagedObject.qunit.js → ui5classes/ManagedObject.qunit.js} +0 -0
  1059. /package/test/sap/ui/core/qunit/{ManagedObjectObserver.qunit.js → ui5classes/ManagedObjectObserver.qunit.js} +0 -0
  1060. /package/test/sap/ui/core/qunit/{ManagedObject_forwardAggregation.qunit.js → ui5classes/ManagedObject_forwardAggregation.qunit.js} +0 -0
  1061. /package/test/sap/ui/core/qunit/{ManagedObject_isPropertyInitial.qunit.js → ui5classes/ManagedObject_isPropertyInitial.qunit.js} +0 -0
  1062. /package/test/sap/ui/core/qunit/{Metadata.qunit.js → ui5classes/Metadata.qunit.js} +0 -0
  1063. /package/test/sap/ui/core/qunit/{Object.qunit.js → ui5classes/Object.qunit.js} +0 -0
  1064. /package/test/sap/ui/core/qunit/{Object_legacyAPIs.qunit.js → ui5classes/Object_legacyAPIs.qunit.js} +0 -0
  1065. /package/test/sap/ui/core/qunit/{testdata → ui5classes/fixture}/customboot/common.configure.ui5.js +0 -0
@@ -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": "43.0.0",
4
- "__buildtime": "2023-09-28T11:39:07.908Z",
3
+ "__version": "44.0.0",
4
+ "__buildtime": "2024-01-12T14:24:50.280Z",
5
5
  "languages": {
6
6
  "aa": "Tiếng Afar",
7
7
  "ab": "Tiếng Abkhazia",
@@ -61,6 +61,7 @@
61
61
  "bfd": "Tiếng Bafut",
62
62
  "bfq": "Tiếng Badaga",
63
63
  "bg": "Tiếng Bulgaria",
64
+ "bgc": "Tiếng Haryana",
64
65
  "bgn": "Tiếng Tây Balochi",
65
66
  "bho": "Tiếng Bhojpuri",
66
67
  "bi": "Tiếng Bislama",
@@ -926,6 +927,8 @@
926
927
  "IM": "Đảo Man",
927
928
  "IN": "Ấn Độ",
928
929
  "IO": "Lãnh thổ Ấn Độ Dương thuộc Anh",
930
+ "IO-alt-biot": "Lãnh thổ Ấn Độ Dương thuộc Anh",
931
+ "IO-alt-chagos": "Quần đảo Chagos",
929
932
  "IQ": "Iraq",
930
933
  "IR": "Iran",
931
934
  "IS": "Iceland",
@@ -992,7 +995,7 @@
992
995
  "NR": "Nauru",
993
996
  "NU": "Niue",
994
997
  "NZ": "New Zealand",
995
- "NZ-alt-variant": "New Zealand",
998
+ "NZ-alt-variant": "Aotearoa New Zealand",
996
999
  "OM": "Oman",
997
1000
  "PA": "Panama",
998
1001
  "PE": "Peru",
@@ -1090,7 +1093,7 @@
1090
1093
  "full": "EEEE, d MMMM, y",
1091
1094
  "long": "d MMMM, y",
1092
1095
  "medium": "d MMM, y",
1093
- "short": "dd/MM/y"
1096
+ "short": "d/M/yy"
1094
1097
  },
1095
1098
  "timeFormats": {
1096
1099
  "full": "HH:mm:ss zzzz",
@@ -1101,28 +1104,28 @@
1101
1104
  "dateTimeFormats": {
1102
1105
  "full": "{0} {1}",
1103
1106
  "long": "{0} {1}",
1104
- "medium": "{0}, {1}",
1105
- "short": "{0}, {1}",
1107
+ "medium": "{0} {1}",
1108
+ "short": "{0} {1}",
1106
1109
  "availableFormats": {
1107
- "Bh": "h B",
1110
+ "Bh": "h 'giờ' B",
1108
1111
  "Bhm": "h:mm B",
1109
1112
  "Bhms": "h:mm:ss B",
1110
1113
  "d": "d",
1111
1114
  "E": "ccc",
1112
- "EBhm": "E h:mm B",
1113
- "EBhms": "E h:mm:ss B",
1115
+ "EBhm": "h:mm B E",
1116
+ "EBhms": "h:mm:ss B E",
1114
1117
  "Ed": "E, 'ngày' d",
1115
- "Ehm": "E h:mm a",
1116
- "EHm": "E HH:mm",
1117
- "Ehms": "E h:mm:ss a",
1118
- "EHms": "E HH:mm:ss",
1118
+ "Ehm": "h:mm a E",
1119
+ "EHm": "HH:mm E",
1120
+ "Ehms": "h:mm:ss a E",
1121
+ "EHms": "HH:mm:ss E",
1119
1122
  "Gy": "y G",
1120
- "GyMd": "dd/MM/y GGGGG",
1123
+ "GyMd": "d/M/y G",
1121
1124
  "GyMMM": "MMM y G",
1122
- "GyMMMd": "dd MMM, y G",
1123
- "GyMMMEd": "E, dd/MM/y G",
1125
+ "GyMMMd": "d MMM, y G",
1126
+ "GyMMMEd": "E, d MMM, y G",
1124
1127
  "h": "h a",
1125
- "H": "HH",
1128
+ "H": "HH 'giờ'",
1126
1129
  "hm": "h:mm a",
1127
1130
  "Hm": "H:mm",
1128
1131
  "hms": "h:mm:ss a",
@@ -1132,8 +1135,8 @@
1132
1135
  "hmv": "h:mm a v",
1133
1136
  "Hmv": "HH:mm v",
1134
1137
  "M": "L",
1135
- "Md": "dd/M",
1136
- "MEd": "E, dd/M",
1138
+ "Md": "d/M",
1139
+ "MEd": "E, d/M",
1137
1140
  "MMdd": "dd-MM",
1138
1141
  "MMM": "LLL",
1139
1142
  "MMMd": "d MMM",
@@ -1145,7 +1148,7 @@
1145
1148
  "y": "y",
1146
1149
  "yM": "M/y",
1147
1150
  "yMd": "d/M/y",
1148
- "yMEd": "E, dd/M/y",
1151
+ "yMEd": "E, d/M/y",
1149
1152
  "yMM": "'tháng' MM, y",
1150
1153
  "yMMM": "MMM y",
1151
1154
  "yMMMd": "d MMM, y",
@@ -1172,8 +1175,8 @@
1172
1175
  "intervalFormats": {
1173
1176
  "intervalFormatFallback": "{0} – {1}",
1174
1177
  "Bh": {
1175
- "B": "h B h B",
1176
- "h": "h – h B"
1178
+ "B": "h 'giờ' Bh 'giờ' B",
1179
+ "h": "h – h 'giờ' B"
1177
1180
  },
1178
1181
  "Bhm": {
1179
1182
  "B": "h:mm B – h:mm B",
@@ -1181,31 +1184,31 @@
1181
1184
  "m": "h:mm – h:mm B"
1182
1185
  },
1183
1186
  "d": {
1184
- "d": "'Ngày' dddd"
1187
+ "d": "d  d"
1185
1188
  },
1186
1189
  "Gy": {
1187
1190
  "G": "y G – y G",
1188
1191
  "y": "y – y G"
1189
1192
  },
1190
1193
  "GyM": {
1191
- "G": "M/y GGGGG M/y GGGGG",
1192
- "M": "M/y– M/y GGGGG",
1193
- "y": "M/y – M/y GGGGG"
1194
+ "G": "M/y G  M/y G",
1195
+ "M": "M/y– M/y G",
1196
+ "y": "M/y – M/y G"
1194
1197
  },
1195
1198
  "GyMd": {
1196
- "d": "dd-MM-y – dd-MM-y GGGGG",
1197
- "G": "dd-MM-y GGGGG  dd-MM-y GGGGG",
1198
- "M": "dd-MM-y – dd-MM-y GGGGG",
1199
- "y": "dd-MM-y – dd-MM-y GGGGG"
1199
+ "d": "d/M/y – d/M/y G",
1200
+ "G": "d/M/y G    d/M/y G",
1201
+ "M": "d/M/y – d/M/y G",
1202
+ "y": "d/M/y – d/M/y G"
1200
1203
  },
1201
1204
  "GyMEd": {
1202
- "d": "E, dd-MM-yE, dd-MM-y GGGGG",
1203
- "G": "E, dd-MM-y GGGGG E, dd-MM-y GGGGG",
1204
- "M": "E, dd-MM-yE, dd-MM-y GGGGG",
1205
- "y": "E, dd-MM-yE, dd-MM-y GGGGG"
1205
+ "d": "E, d/M/yE, d/M/y G",
1206
+ "G": "E, d/M/y G  E, d/M/y G",
1207
+ "M": "E, d/M/yE, d/M/y G",
1208
+ "y": "E, d/M/yE, d/M/y G"
1206
1209
  },
1207
1210
  "GyMMM": {
1208
- "G": "MM y G MM y G",
1211
+ "G": "MMM y G  MMM y G",
1209
1212
  "M": "MMM – MMM y G",
1210
1213
  "y": "MMM y – MMM y G"
1211
1214
  },
@@ -1257,19 +1260,19 @@
1257
1260
  "M": "'Tháng' M – M"
1258
1261
  },
1259
1262
  "Md": {
1260
- "d": "dd/MM – dd/MM",
1261
- "M": "dd/MM – dd/MM"
1263
+ "d": "d/M – d/M",
1264
+ "M": "d/M – d/M"
1262
1265
  },
1263
1266
  "MEd": {
1264
- "d": "EEEE, dd/MM  EEEE, dd/MM",
1265
- "M": "EEEE, dd/MM  EEEE, dd/MM"
1267
+ "d": "E, d/M   E, d/M",
1268
+ "M": "E, d/M   E, d/M"
1266
1269
  },
1267
1270
  "MMM": {
1268
- "M": "MMM–MMM"
1271
+ "M": "MMMMMM"
1269
1272
  },
1270
1273
  "MMMd": {
1271
- "d": "'Ngày' dd - 'Ngày' dd 'tháng' M",
1272
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
1274
+ "d": "d – d MMM",
1275
+ "M": "d MMM  –  d MMM"
1273
1276
  },
1274
1277
  "MMMEd": {
1275
1278
  "d": "E, d MMM – E, d MMM",
@@ -1279,36 +1282,36 @@
1279
1282
  "y": "y–y"
1280
1283
  },
1281
1284
  "yM": {
1282
- "M": "MM/y – MM/y",
1283
- "y": "MM/y – MM/y"
1285
+ "M": "M/y – M/y",
1286
+ "y": "M/y – M/y"
1284
1287
  },
1285
1288
  "yMd": {
1286
- "d": "dd/MM/y – dd/MM/y",
1287
- "M": "dd/MM/y – dd/MM/y",
1288
- "y": "dd/MM/y – dd/MM/y"
1289
+ "d": "d/M/y – d/M/y",
1290
+ "M": "d/M/y – d/M/y",
1291
+ "y": "d/M/y – d/M/y"
1289
1292
  },
1290
1293
  "yMEd": {
1291
- "d": "EEEE, dd/MM/y EEEE, dd/MM/y",
1292
- "M": "EEEE, dd/MM/y EEEE, dd/MM/y",
1293
- "y": "EEEE, dd/MM/y EEEE, dd/MM/y"
1294
+ "d": "E, d/M/y  E, d/M/y",
1295
+ "M": "E, d/M/y  E, d/M/y",
1296
+ "y": "E, d/M/y  E, d/M/y"
1294
1297
  },
1295
1298
  "yMMM": {
1296
- "M": "'Tháng' M - 'Tháng' M 'năm' y",
1297
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y"
1299
+ "M": "MMM  –  MMM y",
1300
+ "y": "MMM y  –  MMM y"
1298
1301
  },
1299
1302
  "yMMMd": {
1300
1303
  "d": "d – d MMM, y",
1301
- "M": "d MMMd MMM, y",
1302
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y"
1304
+ "M": "d MMMd MMM, y",
1305
+ "y": "d MMM, y  –  d MMM, y"
1303
1306
  },
1304
1307
  "yMMMEd": {
1305
- "d": "EEEE, 'ngày' dd MMM EEEE, 'ngày' dd MMM 'năm' y",
1306
- "M": "E, dd 'tháng' M E, dd 'tháng' M, y",
1307
- "y": "E, dd 'tháng' M, yE, dd 'tháng' M, y"
1308
+ "d": "E, d MMM  E, d MMM, y",
1309
+ "M": "E, d MMM  E, d MMM, y",
1310
+ "y": "E, d MMM, yE, d MMM, y"
1308
1311
  },
1309
1312
  "yMMMM": {
1310
- "M": "MMMM–MMMM 'năm' y",
1311
- "y": "MMMM, yMMMM, y"
1313
+ "M": "MMMMMMMM 'năm' y",
1314
+ "y": "MMMM 'năm' yMMMM 'năm' y"
1312
1315
  }
1313
1316
  }
1314
1317
  },
@@ -1359,18 +1362,54 @@
1359
1362
  },
1360
1363
  "stand-alone": {
1361
1364
  "abbreviated": [
1362
- "Thg 1",
1363
- "Thg 2",
1364
- "Thg 3",
1365
- "Thg 4",
1366
- "Thg 5",
1367
- "Thg 6",
1368
- "Thg 7",
1369
- "Thg 8",
1370
- "Thg 9",
1371
- "Thg 10",
1372
- "Thg 11",
1373
- "Thg 12"
1365
+ [
1366
+ "Tháng 1",
1367
+ "Thg 1"
1368
+ ],
1369
+ [
1370
+ "Tháng 2",
1371
+ "Thg 2"
1372
+ ],
1373
+ [
1374
+ "Tháng 3",
1375
+ "Thg 3"
1376
+ ],
1377
+ [
1378
+ "Tháng 4",
1379
+ "Thg 4"
1380
+ ],
1381
+ [
1382
+ "Tháng 5",
1383
+ "Thg 5"
1384
+ ],
1385
+ [
1386
+ "Tháng 6",
1387
+ "Thg 6"
1388
+ ],
1389
+ [
1390
+ "Tháng 7",
1391
+ "Thg 7"
1392
+ ],
1393
+ [
1394
+ "Tháng 8",
1395
+ "Thg 8"
1396
+ ],
1397
+ [
1398
+ "Tháng 9",
1399
+ "Thg 9"
1400
+ ],
1401
+ [
1402
+ "Tháng 10",
1403
+ "Thg 10"
1404
+ ],
1405
+ [
1406
+ "Tháng 11",
1407
+ "Thg 11"
1408
+ ],
1409
+ [
1410
+ "Tháng 12",
1411
+ "Thg 12"
1412
+ ]
1374
1413
  ],
1375
1414
  "narrow": [
1376
1415
  "1",
@@ -1572,7 +1611,7 @@
1572
1611
  },
1573
1612
  "wide": {
1574
1613
  "midnight": "nửa đêm",
1575
- "noon": "TR",
1614
+ "noon": "trưa",
1576
1615
  "morning1": "sáng",
1577
1616
  "afternoon1": "chiều",
1578
1617
  "evening1": "tối",
@@ -1607,24 +1646,24 @@
1607
1646
  }
1608
1647
  },
1609
1648
  "era-wide": {
1610
- "0": "Trước Thiên Chúa",
1649
+ "0": "Trước Chúa Giáng Sinh",
1611
1650
  "1": "Sau Công Nguyên"
1612
1651
  },
1613
1652
  "era-abbreviated": {
1614
1653
  "0": "TCN",
1615
- "1": "CN"
1654
+ "1": "SCN"
1616
1655
  },
1617
1656
  "era-narrow": {
1618
- "0": "tr. CN",
1619
- "1": "sau CN"
1657
+ "0": "TCN",
1658
+ "1": "CN"
1620
1659
  }
1621
1660
  },
1622
1661
  "ca-islamic": {
1623
1662
  "dateFormats": {
1624
- "full": "EEEE, 'ngày' dd 'tháng' MM 'năm' y G",
1625
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
1626
- "medium": "dd-MM-y G",
1627
- "short": "dd/MM/y GGGGG"
1663
+ "full": "EEEE, 'ngày' d 'tháng' M 'năm' y G",
1664
+ "long": "'ngày' d 'tháng' M 'năm' y G",
1665
+ "medium": "d MMM, y G",
1666
+ "short": "d/M/y GGGGG"
1628
1667
  },
1629
1668
  "timeFormats": {
1630
1669
  "full": "HH:mm:ss zzzz",
@@ -1633,37 +1672,37 @@
1633
1672
  "short": "HH:mm"
1634
1673
  },
1635
1674
  "dateTimeFormats": {
1636
- "full": "{1} {0}",
1637
- "long": "{1} {0}",
1638
- "medium": "{1} {0}",
1639
- "short": "{1} {0}",
1675
+ "full": "{0} {1}",
1676
+ "long": "{0} {1}",
1677
+ "medium": "{0} {1}",
1678
+ "short": "{0} {1}",
1640
1679
  "availableFormats": {
1641
- "Bh": "h B",
1680
+ "Bh": "h 'giờ' B",
1642
1681
  "Bhm": "h:mm B",
1643
1682
  "Bhms": "h:mm:ss B",
1644
- "d": "'Ngày' dd",
1683
+ "d": "d",
1645
1684
  "E": "ccc",
1646
- "EBhm": "E h:mm B",
1647
- "EBhms": "E h:mm:ss B",
1648
- "Ed": "E, dd",
1649
- "Ehm": "E h:mm a",
1650
- "EHm": "E HH:mm",
1651
- "Ehms": "E h:mm:ss a",
1652
- "EHms": "E HH:mm:ss",
1685
+ "EBhm": "h:mm B E",
1686
+ "EBhms": "h:mm:ss B E",
1687
+ "Ed": "E, 'ngày' d",
1688
+ "Ehm": "h:mm a E",
1689
+ "EHm": "HH:mm E",
1690
+ "Ehms": "h:mm:ss a E",
1691
+ "EHms": "HH:mm:ss E",
1653
1692
  "Gy": "y G",
1654
- "GyMd": "dd/MM/y GGGGG",
1693
+ "GyMd": "d/M/y GGGGG",
1655
1694
  "GyMMM": "MMM y G",
1656
1695
  "GyMMMd": "d MMM, y G",
1657
1696
  "GyMMMEd": "E, d MMM, y G",
1658
1697
  "h": "h a",
1659
- "H": "HH",
1698
+ "H": "HH 'giờ'",
1660
1699
  "hm": "h:mm a",
1661
1700
  "Hm": "HH:mm",
1662
1701
  "hms": "h:mm:ss a",
1663
1702
  "Hms": "HH:mm:ss",
1664
1703
  "M": "L",
1665
- "Md": "dd/M",
1666
- "MEd": "E, dd/M",
1704
+ "Md": "d/M",
1705
+ "MEd": "E, d/M",
1667
1706
  "MMdd": "dd-MM",
1668
1707
  "MMM": "LLL",
1669
1708
  "MMMd": "d MMM",
@@ -1673,8 +1712,8 @@
1673
1712
  "ms": "mm:ss",
1674
1713
  "y": "y G",
1675
1714
  "yyyy": "y G",
1676
- "yyyyM": "M/y G",
1677
- "yyyyMd": "d/M/y G",
1715
+ "yyyyM": "M/y GGGGG",
1716
+ "yyyyMd": "d/M/y GGGGG",
1678
1717
  "yyyyMEd": "E, d/M/y GGGGG",
1679
1718
  "yyyyMM": "MM-y G",
1680
1719
  "yyyyMMM": "MMM y G",
@@ -1709,7 +1748,7 @@
1709
1748
  "m": "h:mm – h:mm B"
1710
1749
  },
1711
1750
  "d": {
1712
- "d": "'Ngày' dddd"
1751
+ "d": "dd"
1713
1752
  },
1714
1753
  "Gy": {
1715
1754
  "G": "y G – y G",
@@ -1782,60 +1821,60 @@
1782
1821
  "H": "HH'h'-HH'h' v"
1783
1822
  },
1784
1823
  "M": {
1785
- "M": "'Tháng' M - 'Tháng' M"
1824
+ "M": "M – M"
1786
1825
  },
1787
1826
  "Md": {
1788
- "d": "dd/MM – dd/MM",
1789
- "M": "dd/MM – dd/MM"
1827
+ "d": "d/M – d/M",
1828
+ "M": "d/M – d/M"
1790
1829
  },
1791
1830
  "MEd": {
1792
- "d": "EEEE, dd/MM  EEEE, dd/MM",
1793
- "M": "EEEE, dd/MM  EEEE, dd/MM"
1831
+ "d": "E, d/M   E, d/M",
1832
+ "M": "E, d/M   E, d/M"
1794
1833
  },
1795
1834
  "MMM": {
1796
- "M": "MMM–MMM"
1835
+ "M": "MMMMMM"
1797
1836
  },
1798
1837
  "MMMd": {
1799
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
1800
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
1838
+ "d": "d – d MMM",
1839
+ "M": "d MMM  –  d MMM"
1801
1840
  },
1802
1841
  "MMMEd": {
1803
- "d": "EEEE, 'ngày' dd  EEEE, 'ngày' dd 'tháng' M",
1804
- "M": "EEEE, 'ngày' dd 'tháng' M  EEEE, 'ngày' dd 'tháng' M"
1842
+ "d": "E, d MMM    E, d MMM",
1843
+ "M": "E, d MMM    E, d MMM"
1805
1844
  },
1806
1845
  "y": {
1807
1846
  "y": "y–y G"
1808
1847
  },
1809
1848
  "yM": {
1810
- "M": "MM/y – MM/y G",
1811
- "y": "MM/y – MM/y G"
1849
+ "M": "M/y – M/y GGGGG",
1850
+ "y": "M/y – M/y GGGGG"
1812
1851
  },
1813
1852
  "yMd": {
1814
- "d": "dd/MM/y – dd/MM/y G",
1815
- "M": "dd/MM/y – dd/MM/y G",
1816
- "y": "dd/MM/y – dd/MM/y G"
1853
+ "d": "d/M/y – d/M/y GGGGG",
1854
+ "M": "d/M/y – d/M/y GGGGG",
1855
+ "y": "d/M/y – d/M/y GGGGG"
1817
1856
  },
1818
1857
  "yMEd": {
1819
- "d": "EEEE, dd/MM/y EEEE, dd/MM/y G",
1820
- "M": "EEEE, dd/MM/y EEEE, dd/MM/y G",
1821
- "y": "EEEE, dd/MM/y EEEE, dd/MM/y G"
1858
+ "d": "E, d/M/y  E, d/M/y GGGGG",
1859
+ "M": "E, d/M/y  E, d/M/y GGGGG",
1860
+ "y": "E, d/M/y  E, d/M/y GGGGG"
1822
1861
  },
1823
1862
  "yMMM": {
1824
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
1825
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
1863
+ "M": "MMM  –  MMM y G",
1864
+ "y": "MMM y  –  MMM y G"
1826
1865
  },
1827
1866
  "yMMMd": {
1828
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
1829
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
1830
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
1867
+ "d": "d – d MMM, y G",
1868
+ "M": "d MMM  –  d MMM, y G",
1869
+ "y": "d MMM, y  –  d MMM, y G"
1831
1870
  },
1832
1871
  "yMMMEd": {
1833
- "d": "EEEE, 'ngày' dd MMM EEEE, 'ngày' dd MMM 'năm' y G",
1834
- "M": "E, dd 'tháng' M E, dd 'tháng' M, y G",
1835
- "y": "E, dd 'tháng' M, yE, dd 'tháng' M, y G"
1872
+ "d": "E, d MMM  E, d MMM, y G",
1873
+ "M": "E, d MMM  E, d MMM, y G",
1874
+ "y": "E, d MMM, yE, d MMM, y G"
1836
1875
  },
1837
1876
  "yMMMM": {
1838
- "M": "MMMM–MMMM y G",
1877
+ "M": "MMMMMMMM y G",
1839
1878
  "y": "MMMM y – MMMM y G"
1840
1879
  }
1841
1880
  }
@@ -2100,7 +2139,7 @@
2100
2139
  },
2101
2140
  "wide": {
2102
2141
  "midnight": "nửa đêm",
2103
- "noon": "TR",
2142
+ "noon": "trưa",
2104
2143
  "morning1": "sáng",
2105
2144
  "afternoon1": "chiều",
2106
2145
  "evening1": "tối",
@@ -2158,37 +2197,37 @@
2158
2197
  "short": "HH:mm"
2159
2198
  },
2160
2199
  "dateTimeFormats": {
2161
- "full": "{1} {0}",
2162
- "long": "{1} {0}",
2163
- "medium": "{1} {0}",
2164
- "short": "{1} {0}",
2200
+ "full": "{0} {1}",
2201
+ "long": "{0} {1}",
2202
+ "medium": "{0} {1}",
2203
+ "short": "{0} {1}",
2165
2204
  "availableFormats": {
2166
- "Bh": "h B",
2205
+ "Bh": "h 'giờ' B",
2167
2206
  "Bhm": "h:mm B",
2168
2207
  "Bhms": "h:mm:ss B",
2169
- "d": "'Ngày' dd",
2208
+ "d": "d",
2170
2209
  "E": "ccc",
2171
- "EBhm": "E h:mm B",
2172
- "EBhms": "E h:mm:ss B",
2173
- "Ed": "E, dd",
2174
- "Ehm": "E h:mm a",
2175
- "EHm": "E HH:mm",
2176
- "Ehms": "E h:mm:ss a",
2177
- "EHms": "E HH:mm:ss",
2210
+ "EBhm": "h:mm B E",
2211
+ "EBhms": "h:mm:ss B E",
2212
+ "Ed": "E, 'ngày' d",
2213
+ "Ehm": "h:mm a E",
2214
+ "EHm": "HH:mm E",
2215
+ "Ehms": "h:mm:ss a E",
2216
+ "EHms": "HH:mm:ss E",
2178
2217
  "Gy": "y G",
2179
- "GyMd": "dd/MM/y GGGGG",
2218
+ "GyMd": "d/M/y GGGGG",
2180
2219
  "GyMMM": "MMM y G",
2181
2220
  "GyMMMd": "d MMM, y G",
2182
2221
  "GyMMMEd": "E, d MMM, y G",
2183
2222
  "h": "h a",
2184
- "H": "HH",
2223
+ "H": "HH 'giờ'",
2185
2224
  "hm": "h:mm a",
2186
2225
  "Hm": "HH:mm",
2187
2226
  "hms": "h:mm:ss a",
2188
2227
  "Hms": "HH:mm:ss",
2189
2228
  "M": "L",
2190
- "Md": "dd/M",
2191
- "MEd": "E, dd/M",
2229
+ "Md": "d/M",
2230
+ "MEd": "E, d/M",
2192
2231
  "MMdd": "dd-MM",
2193
2232
  "MMM": "LLL",
2194
2233
  "MMMd": "d MMM",
@@ -2198,8 +2237,8 @@
2198
2237
  "ms": "mm:ss",
2199
2238
  "y": "y G",
2200
2239
  "yyyy": "y G",
2201
- "yyyyM": "M/y G",
2202
- "yyyyMd": "d/M/y G",
2240
+ "yyyyM": "M/y GGGGG",
2241
+ "yyyyMd": "d/M/y GGGGG",
2203
2242
  "yyyyMEd": "E, d/M/y GGGGG",
2204
2243
  "yyyyMM": "MM-y G",
2205
2244
  "yyyyMMM": "MMM y G",
@@ -2234,7 +2273,7 @@
2234
2273
  "m": "h:mm – h:mm B"
2235
2274
  },
2236
2275
  "d": {
2237
- "d": "'Ngày' dddd"
2276
+ "d": "dd"
2238
2277
  },
2239
2278
  "Gy": {
2240
2279
  "G": "y G – y G",
@@ -2307,67 +2346,67 @@
2307
2346
  "H": "HH'h'-HH'h' v"
2308
2347
  },
2309
2348
  "M": {
2310
- "M": "'Tháng' M - 'Tháng' M"
2349
+ "M": "M – M"
2311
2350
  },
2312
2351
  "Md": {
2313
- "d": "dd/MM – dd/MM",
2314
- "M": "dd/MM – dd/MM"
2352
+ "d": "d/M – d/M",
2353
+ "M": "d/M – d/M"
2315
2354
  },
2316
2355
  "MEd": {
2317
- "d": "EEEE, dd/MM  EEEE, dd/MM",
2318
- "M": "EEEE, dd/MM  EEEE, dd/MM"
2356
+ "d": "E, d/M   E, d/M",
2357
+ "M": "E, d/M   E, d/M"
2319
2358
  },
2320
2359
  "MMM": {
2321
- "M": "MMM–MMM"
2360
+ "M": "MMMMMM"
2322
2361
  },
2323
2362
  "MMMd": {
2324
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
2325
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
2363
+ "d": "d – d MMM",
2364
+ "M": "d MMM  –  d MMM"
2326
2365
  },
2327
2366
  "MMMEd": {
2328
- "d": "EEEE, 'ngày' dd  EEEE, 'ngày' dd 'tháng' M",
2329
- "M": "EEEE, 'ngày' dd 'tháng' M  EEEE, 'ngày' dd 'tháng' M"
2367
+ "d": "E, d MMM    E, d MMM",
2368
+ "M": "E, d MMM    E, d MMM"
2330
2369
  },
2331
2370
  "y": {
2332
2371
  "y": "y–y G",
2333
2372
  "G": "y G–y G"
2334
2373
  },
2335
2374
  "yM": {
2336
- "M": "MM/y – MM/y G",
2337
- "y": "MM/y – MM/y G",
2338
- "G": "MM/y G – MM/y G"
2375
+ "M": "M/y – M/y GGGGG",
2376
+ "y": "M/y – M/y GGGGG",
2377
+ "G": "M/y GGGGG – M/y GGGGG"
2339
2378
  },
2340
2379
  "yMd": {
2341
- "d": "dd/MM/y – dd/MM/y G",
2342
- "M": "dd/MM/y – dd/MM/y G",
2343
- "y": "dd/MM/y – dd/MM/y G",
2344
- "G": "dd/MM/y G – dd/MM/y G"
2380
+ "d": "d/M/y – d/M/y GGGGG",
2381
+ "M": "d/M/y – d/M/y GGGGG",
2382
+ "y": "d/M/y – d/M/y GGGGG",
2383
+ "G": "d/M/y GGGGG – d/M/y GGGGG"
2345
2384
  },
2346
2385
  "yMEd": {
2347
- "d": "EEEE, dd/MM/y EEEE, dd/MM/y G",
2348
- "M": "EEEE, dd/MM/y EEEE, dd/MM/y G",
2349
- "y": "EEEE, dd/MM/y EEEE, dd/MM/y G",
2350
- "G": "EEEE, dd/MM/y G  EEEE, dd/MM/y G"
2386
+ "d": "E, d/M/y  E, d/M/y GGGGG",
2387
+ "M": "E, d/M/y  E, d/M/y GGGGG",
2388
+ "y": "E, d/M/y  E, d/M/y GGGGG",
2389
+ "G": "E, d/M/y GGGGG   E, d/M/y GGGGG"
2351
2390
  },
2352
2391
  "yMMM": {
2353
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
2354
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G",
2355
- "G": "'Tháng' M 'năm' y G - 'Tháng' M 'năm' y G"
2392
+ "M": "MMM  –  MMM y G",
2393
+ "y": "MMM y  –  MMM y G",
2394
+ "G": "MMM y G  –  MMM y G"
2356
2395
  },
2357
2396
  "yMMMd": {
2358
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2359
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2360
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G",
2361
- "G": "'Ngày G' dd 'tháng' M 'năm' y G - 'Ngày G' dd 'tháng' M 'năm' y G"
2397
+ "d": "d – d MMM, y G",
2398
+ "M": "d MMM  –  d MMM, y G",
2399
+ "y": "d MMM, y  –  d MMM, y G",
2400
+ "G": "d MMM, y G  –  d MMM, y G"
2362
2401
  },
2363
2402
  "yMMMEd": {
2364
- "d": "EEEE, 'ngày' dd MMM EEEE, 'ngày' dd MMM 'năm' y G",
2365
- "M": "E, dd 'tháng' M E, dd 'tháng' M, y G",
2366
- "y": "E, dd 'tháng' M, yE, dd 'tháng' M, y G",
2367
- "G": "E, dd 'tháng' M, y GE, dd 'tháng' M, y G"
2403
+ "d": "E, d MMM  E, d MMM, y G",
2404
+ "M": "E, d MMM  E, d MMM, y G",
2405
+ "y": "E, d MMM, yE, d MMM, y G",
2406
+ "G": "E, d MMM, y GE, d MMM, y G"
2368
2407
  },
2369
2408
  "yMMMM": {
2370
- "M": "MMMM–MMMM y G",
2409
+ "M": "MMMMMMMM y G",
2371
2410
  "y": "MMMM y – MMMM y G",
2372
2411
  "G": "MMMM y G – MMMM y G"
2373
2412
  }
@@ -2420,18 +2459,54 @@
2420
2459
  },
2421
2460
  "stand-alone": {
2422
2461
  "abbreviated": [
2423
- "Thg 1",
2424
- "Thg 2",
2425
- "Thg 3",
2426
- "Thg 4",
2427
- "Thg 5",
2428
- "Thg 6",
2429
- "Thg 7",
2430
- "Thg 8",
2431
- "Thg 9",
2432
- "Thg 10",
2433
- "Thg 11",
2434
- "Thg 12"
2462
+ [
2463
+ "Tháng 1",
2464
+ "Thg 1"
2465
+ ],
2466
+ [
2467
+ "Tháng 2",
2468
+ "Thg 2"
2469
+ ],
2470
+ [
2471
+ "Tháng 3",
2472
+ "Thg 3"
2473
+ ],
2474
+ [
2475
+ "Tháng 4",
2476
+ "Thg 4"
2477
+ ],
2478
+ [
2479
+ "Tháng 5",
2480
+ "Thg 5"
2481
+ ],
2482
+ [
2483
+ "Tháng 6",
2484
+ "Thg 6"
2485
+ ],
2486
+ [
2487
+ "Tháng 7",
2488
+ "Thg 7"
2489
+ ],
2490
+ [
2491
+ "Tháng 8",
2492
+ "Thg 8"
2493
+ ],
2494
+ [
2495
+ "Tháng 9",
2496
+ "Thg 9"
2497
+ ],
2498
+ [
2499
+ "Tháng 10",
2500
+ "Thg 10"
2501
+ ],
2502
+ [
2503
+ "Tháng 11",
2504
+ "Thg 11"
2505
+ ],
2506
+ [
2507
+ "Tháng 12",
2508
+ "Thg 12"
2509
+ ]
2435
2510
  ],
2436
2511
  "narrow": [
2437
2512
  "1",
@@ -2633,7 +2708,7 @@
2633
2708
  },
2634
2709
  "wide": {
2635
2710
  "midnight": "nửa đêm",
2636
- "noon": "TR",
2711
+ "noon": "trưa",
2637
2712
  "morning1": "sáng",
2638
2713
  "afternoon1": "chiều",
2639
2714
  "evening1": "tối",
@@ -2691,10 +2766,10 @@
2691
2766
  },
2692
2767
  "ca-persian": {
2693
2768
  "dateFormats": {
2694
- "full": "EEEE, 'ngày' dd 'tháng' MM 'năm' y G",
2695
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2696
- "medium": "dd-MM-y G",
2697
- "short": "dd/MM/y GGGGG"
2769
+ "full": "EEEE, 'ngày' d 'tháng' M 'năm' y G",
2770
+ "long": "'ngày' d 'tháng' M 'năm' y G",
2771
+ "medium": "d MMM, y G",
2772
+ "short": "d/M/y GGGGG"
2698
2773
  },
2699
2774
  "timeFormats": {
2700
2775
  "full": "HH:mm:ss zzzz",
@@ -2703,37 +2778,37 @@
2703
2778
  "short": "HH:mm"
2704
2779
  },
2705
2780
  "dateTimeFormats": {
2706
- "full": "{1} {0}",
2707
- "long": "{1} {0}",
2708
- "medium": "{1} {0}",
2709
- "short": "{1} {0}",
2781
+ "full": "{0} {1}",
2782
+ "long": "{0} {1}",
2783
+ "medium": "{0} {1}",
2784
+ "short": "{0} {1}",
2710
2785
  "availableFormats": {
2711
- "Bh": "h B",
2786
+ "Bh": "h 'giờ' B",
2712
2787
  "Bhm": "h:mm B",
2713
2788
  "Bhms": "h:mm:ss B",
2714
- "d": "'Ngày' dd",
2789
+ "d": "d",
2715
2790
  "E": "ccc",
2716
- "EBhm": "E h:mm B",
2717
- "EBhms": "E h:mm:ss B",
2718
- "Ed": "E, dd",
2719
- "Ehm": "E h:mm a",
2720
- "EHm": "E HH:mm",
2721
- "Ehms": "E h:mm:ss a",
2722
- "EHms": "E HH:mm:ss",
2791
+ "EBhm": "h:mm B E",
2792
+ "EBhms": "h:mm:ss B E",
2793
+ "Ed": "E, 'ngày' d",
2794
+ "Ehm": "h:mm a E",
2795
+ "EHm": "HH:mm E",
2796
+ "Ehms": "h:mm:ss a E",
2797
+ "EHms": "HH:mm:ss E",
2723
2798
  "Gy": "y G",
2724
- "GyMd": "dd/MM/y GGGGG",
2799
+ "GyMd": "d/M/y GGGGG",
2725
2800
  "GyMMM": "MMM y G",
2726
2801
  "GyMMMd": "d MMM, y G",
2727
2802
  "GyMMMEd": "E, d MMM, y G",
2728
2803
  "h": "h a",
2729
- "H": "HH",
2804
+ "H": "HH 'giờ'",
2730
2805
  "hm": "h:mm a",
2731
2806
  "Hm": "HH:mm",
2732
2807
  "hms": "h:mm:ss a",
2733
2808
  "Hms": "HH:mm:ss",
2734
2809
  "M": "L",
2735
- "Md": "dd/M",
2736
- "MEd": "E, dd/M",
2810
+ "Md": "d/M",
2811
+ "MEd": "E, d/M",
2737
2812
  "MMdd": "dd-MM",
2738
2813
  "MMM": "LLL",
2739
2814
  "MMMd": "d MMM",
@@ -2743,8 +2818,8 @@
2743
2818
  "ms": "mm:ss",
2744
2819
  "y": "y G",
2745
2820
  "yyyy": "y G",
2746
- "yyyyM": "M/y G",
2747
- "yyyyMd": "d/M/y G",
2821
+ "yyyyM": "M/y GGGGG",
2822
+ "yyyyMd": "d/M/y GGGGG",
2748
2823
  "yyyyMEd": "E, d/M/y GGGGG",
2749
2824
  "yyyyMM": "MM-y G",
2750
2825
  "yyyyMMM": "MMM y G",
@@ -2779,7 +2854,7 @@
2779
2854
  "m": "h:mm – h:mm B"
2780
2855
  },
2781
2856
  "d": {
2782
- "d": "'Ngày' dddd"
2857
+ "d": "dd"
2783
2858
  },
2784
2859
  "Gy": {
2785
2860
  "G": "y G – y G",
@@ -2852,60 +2927,60 @@
2852
2927
  "H": "HH'h'-HH'h' v"
2853
2928
  },
2854
2929
  "M": {
2855
- "M": "'Tháng' M - 'Tháng' M"
2930
+ "M": "M – M"
2856
2931
  },
2857
2932
  "Md": {
2858
- "d": "dd/MM – dd/MM",
2859
- "M": "dd/MM – dd/MM"
2933
+ "d": "d/M – d/M",
2934
+ "M": "d/M – d/M"
2860
2935
  },
2861
2936
  "MEd": {
2862
- "d": "EEEE, dd/MM  EEEE, dd/MM",
2863
- "M": "EEEE, dd/MM  EEEE, dd/MM"
2937
+ "d": "E, d/M   E, d/M",
2938
+ "M": "E, d/M   E, d/M"
2864
2939
  },
2865
2940
  "MMM": {
2866
- "M": "MMM–MMM"
2941
+ "M": "MMMMMM"
2867
2942
  },
2868
2943
  "MMMd": {
2869
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
2870
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
2944
+ "d": "d – d MMM",
2945
+ "M": "d MMM  –  d MMM"
2871
2946
  },
2872
2947
  "MMMEd": {
2873
- "d": "EEEE, 'ngày' dd  EEEE, 'ngày' dd 'tháng' M",
2874
- "M": "EEEE, 'ngày' dd 'tháng' M  EEEE, 'ngày' dd 'tháng' M"
2948
+ "d": "E, d MMM    E, d MMM",
2949
+ "M": "E, d MMM    E, d MMM"
2875
2950
  },
2876
2951
  "y": {
2877
2952
  "y": "y–y G"
2878
2953
  },
2879
2954
  "yM": {
2880
- "M": "MM/y – MM/y G",
2881
- "y": "MM/y – MM/y G"
2955
+ "M": "M/y – M/y GGGGG",
2956
+ "y": "M/y – M/y GGGGG"
2882
2957
  },
2883
2958
  "yMd": {
2884
- "d": "dd/MM/y – dd/MM/y G",
2885
- "M": "dd/MM/y – dd/MM/y G",
2886
- "y": "dd/MM/y – dd/MM/y G"
2959
+ "d": "d/M/y – d/M/y GGGGG",
2960
+ "M": "d/M/y – d/M/y GGGGG",
2961
+ "y": "d/M/y – d/M/y GGGGG"
2887
2962
  },
2888
2963
  "yMEd": {
2889
- "d": "EEEE, dd/MM/y EEEE, dd/MM/y G",
2890
- "M": "EEEE, dd/MM/y EEEE, dd/MM/y G",
2891
- "y": "EEEE, dd/MM/y EEEE, dd/MM/y G"
2964
+ "d": "E, d/M/y  E, d/M/y GGGGG",
2965
+ "M": "E, d/M/y  E, d/M/y GGGGG",
2966
+ "y": "E, d/M/y  E, d/M/y GGGGG"
2892
2967
  },
2893
2968
  "yMMM": {
2894
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
2895
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
2969
+ "M": "MMM  –  MMM y G",
2970
+ "y": "MMM y  –  MMM y G"
2896
2971
  },
2897
2972
  "yMMMd": {
2898
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2899
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2900
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
2973
+ "d": "d – d MMM, y G",
2974
+ "M": "d MMM  –  d MMM, y G",
2975
+ "y": "d MMM, y  –  d MMM, y G"
2901
2976
  },
2902
2977
  "yMMMEd": {
2903
- "d": "EEEE, 'ngày' dd MMM EEEE, 'ngày' dd MMM 'năm' y G",
2904
- "M": "E, dd 'tháng' M E, dd 'tháng' M, y G",
2905
- "y": "E, dd 'tháng' M, yE, dd 'tháng' M, y G"
2978
+ "d": "E, d MMM  E, d MMM, y G",
2979
+ "M": "E, d MMM  E, d MMM, y G",
2980
+ "y": "E, d MMM, yE, d MMM, y G"
2906
2981
  },
2907
2982
  "yMMMM": {
2908
- "M": "MMMM–MMMM y G",
2983
+ "M": "MMMMMMMM y G",
2909
2984
  "y": "MMMM y – MMMM y G"
2910
2985
  }
2911
2986
  }
@@ -3170,7 +3245,7 @@
3170
3245
  },
3171
3246
  "wide": {
3172
3247
  "midnight": "nửa đêm",
3173
- "noon": "TR",
3248
+ "noon": "trưa",
3174
3249
  "morning1": "sáng",
3175
3250
  "afternoon1": "chiều",
3176
3251
  "evening1": "tối",
@@ -3217,9 +3292,9 @@
3217
3292
  "ca-buddhist": {
3218
3293
  "dateFormats": {
3219
3294
  "full": "EEEE, 'ngày' dd MMMM 'năm' y G",
3220
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
3221
- "medium": "dd-MM-y G",
3222
- "short": "dd/MM/y GGGGG"
3295
+ "long": "'ngày' d 'tháng' M 'năm' y G",
3296
+ "medium": "d MMM, y G",
3297
+ "short": "d/M/y GGGGG"
3223
3298
  },
3224
3299
  "timeFormats": {
3225
3300
  "full": "HH:mm:ss zzzz",
@@ -3228,36 +3303,36 @@
3228
3303
  "short": "HH:mm"
3229
3304
  },
3230
3305
  "dateTimeFormats": {
3231
- "full": "{1} {0}",
3232
- "long": "{1} {0}",
3233
- "medium": "{1} {0}",
3234
- "short": "{1} {0}",
3306
+ "full": "{0} {1}",
3307
+ "long": "{0} {1}",
3308
+ "medium": "{0} {1}",
3309
+ "short": "{0} {1}",
3235
3310
  "availableFormats": {
3236
- "Bh": "h B",
3311
+ "Bh": "h 'giờ' B",
3237
3312
  "Bhm": "h:mm B",
3238
3313
  "Bhms": "h:mm:ss B",
3239
3314
  "d": "'Ngày' dd",
3240
3315
  "E": "ccc",
3241
- "EBhm": "E h:mm B",
3242
- "EBhms": "E h:mm:ss B",
3243
- "Ed": "E, dd",
3244
- "Ehm": "E h:mm a",
3245
- "EHm": "E HH:mm",
3246
- "Ehms": "E h:mm:ss a",
3247
- "EHms": "E HH:mm:ss",
3316
+ "EBhm": "h:mm B E",
3317
+ "EBhms": "h:mm:ss B E",
3318
+ "Ed": "E, 'ngày' d",
3319
+ "Ehm": "h:mm a E",
3320
+ "EHm": "HH:mm E",
3321
+ "Ehms": "h:mm:ss a E",
3322
+ "EHms": "HH:mm:ss E",
3248
3323
  "Gy": "y G",
3249
- "GyMd": "dd/MM/y GGGGG",
3324
+ "GyMd": "d/M/y GGGGG",
3250
3325
  "GyMMM": "MMM y G",
3251
3326
  "GyMMMd": "d MMM, y G",
3252
3327
  "GyMMMEd": "E, d MMM, y G",
3253
3328
  "h": "h a",
3254
- "H": "HH",
3329
+ "H": "HH 'giờ'",
3255
3330
  "hm": "h:mm a",
3256
3331
  "Hm": "HH:mm",
3257
3332
  "hms": "h:mm:ss a",
3258
3333
  "Hms": "HH:mm:ss",
3259
3334
  "M": "'tháng' L",
3260
- "Md": "dd/M",
3335
+ "Md": "d/M",
3261
3336
  "MEd": "E, dd-M",
3262
3337
  "MMdd": "dd-MM",
3263
3338
  "MMM": "LLL",
@@ -3268,8 +3343,8 @@
3268
3343
  "ms": "mm:ss",
3269
3344
  "y": "y G",
3270
3345
  "yyyy": "y G",
3271
- "yyyyM": "M/y G",
3272
- "yyyyMd": "d/M/y G",
3346
+ "yyyyM": "M/y GGGGG",
3347
+ "yyyyMd": "d/M/y GGGGG",
3273
3348
  "yyyyMEd": "E, d/M/y GGGGG",
3274
3349
  "yyyyMM": "MM-y G",
3275
3350
  "yyyyMMM": "MMM y G",
@@ -3304,7 +3379,7 @@
3304
3379
  "m": "h:mm – h:mm B"
3305
3380
  },
3306
3381
  "d": {
3307
- "d": "'Ngày' dddd"
3382
+ "d": "dd"
3308
3383
  },
3309
3384
  "Gy": {
3310
3385
  "G": "y G – y G",
@@ -3377,60 +3452,60 @@
3377
3452
  "H": "HH'h'-HH'h' v"
3378
3453
  },
3379
3454
  "M": {
3380
- "M": "'Tháng' M - 'Tháng' M"
3455
+ "M": "M – M"
3381
3456
  },
3382
3457
  "Md": {
3383
- "d": "dd/MM – dd/MM",
3384
- "M": "dd/MM – dd/MM"
3458
+ "d": "d/M – d/M",
3459
+ "M": "d/M – d/M"
3385
3460
  },
3386
3461
  "MEd": {
3387
- "d": "EEEE, dd/MM  EEEE, dd/MM",
3388
- "M": "EEEE, dd/MM  EEEE, dd/MM"
3462
+ "d": "E, d/M   E, d/M",
3463
+ "M": "E, d/M   E, d/M"
3389
3464
  },
3390
3465
  "MMM": {
3391
- "M": "MMM–MMM"
3466
+ "M": "MMMMMM"
3392
3467
  },
3393
3468
  "MMMd": {
3394
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
3395
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
3469
+ "d": "d – d MMM",
3470
+ "M": "d MMM  –  d MMM"
3396
3471
  },
3397
3472
  "MMMEd": {
3398
- "d": "EEEE, 'ngày' dd  EEEE, 'ngày' dd 'tháng' M",
3399
- "M": "EEEE, 'ngày' dd 'tháng' M  EEEE, 'ngày' dd 'tháng' M"
3473
+ "d": "E, d MMM    E, d MMM",
3474
+ "M": "E, d MMM    E, d MMM"
3400
3475
  },
3401
3476
  "y": {
3402
3477
  "y": "y–y G"
3403
3478
  },
3404
3479
  "yM": {
3405
- "M": "MM/y – MM/y G",
3406
- "y": "MM/y – MM/y G"
3480
+ "M": "M/y – M/y GGGGG",
3481
+ "y": "M/y – M/y GGGGG"
3407
3482
  },
3408
3483
  "yMd": {
3409
- "d": "dd/MM/y – dd/MM/y G",
3410
- "M": "dd/MM/y – dd/MM/y G",
3411
- "y": "dd/MM/y – dd/MM/y G"
3484
+ "d": "d/M/y – d/M/y GGGGG",
3485
+ "M": "d/M/y – d/M/y GGGGG",
3486
+ "y": "d/M/y – d/M/y GGGGG"
3412
3487
  },
3413
3488
  "yMEd": {
3414
- "d": "EEEE, dd/MM/y EEEE, dd/MM/y G",
3415
- "M": "EEEE, dd/MM/y EEEE, dd/MM/y G",
3416
- "y": "EEEE, dd/MM/y EEEE, dd/MM/y G"
3489
+ "d": "E, d/M/y  E, d/M/y GGGGG",
3490
+ "M": "E, d/M/y  E, d/M/y GGGGG",
3491
+ "y": "E, d/M/y  E, d/M/y GGGGG"
3417
3492
  },
3418
3493
  "yMMM": {
3419
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
3420
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
3494
+ "M": "MMM  –  MMM y G",
3495
+ "y": "MMM y  –  MMM y G"
3421
3496
  },
3422
3497
  "yMMMd": {
3423
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
3424
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
3425
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
3498
+ "d": "d – d MMM, y G",
3499
+ "M": "d MMM  –  d MMM, y G",
3500
+ "y": "d MMM, y  –  d MMM, y G"
3426
3501
  },
3427
3502
  "yMMMEd": {
3428
- "d": "EEEE, 'ngày' dd MMM EEEE, 'ngày' dd MMM 'năm' y G",
3429
- "M": "E, dd 'tháng' M E, dd 'tháng' M, y G",
3430
- "y": "E, dd 'tháng' M, yE, dd 'tháng' M, y G"
3503
+ "d": "E, d MMM  E, d MMM, y G",
3504
+ "M": "E, d MMM  E, d MMM, y G",
3505
+ "y": "E, d MMM, yE, d MMM, y G"
3431
3506
  },
3432
3507
  "yMMMM": {
3433
- "M": "MMMM–MMMM y G",
3508
+ "M": "MMMMMMMM y G",
3434
3509
  "y": "MMMM y – MMMM y G"
3435
3510
  }
3436
3511
  }
@@ -3482,18 +3557,54 @@
3482
3557
  },
3483
3558
  "stand-alone": {
3484
3559
  "abbreviated": [
3485
- "Thg 1",
3486
- "Thg 2",
3487
- "Thg 3",
3488
- "Thg 4",
3489
- "Thg 5",
3490
- "Thg 6",
3491
- "Thg 7",
3492
- "Thg 8",
3493
- "Thg 9",
3494
- "Thg 10",
3495
- "Thg 11",
3496
- "Thg 12"
3560
+ [
3561
+ "Tháng 1",
3562
+ "Thg 1"
3563
+ ],
3564
+ [
3565
+ "Tháng 2",
3566
+ "Thg 2"
3567
+ ],
3568
+ [
3569
+ "Tháng 3",
3570
+ "Thg 3"
3571
+ ],
3572
+ [
3573
+ "Tháng 4",
3574
+ "Thg 4"
3575
+ ],
3576
+ [
3577
+ "Tháng 5",
3578
+ "Thg 5"
3579
+ ],
3580
+ [
3581
+ "Tháng 6",
3582
+ "Thg 6"
3583
+ ],
3584
+ [
3585
+ "Tháng 7",
3586
+ "Thg 7"
3587
+ ],
3588
+ [
3589
+ "Tháng 8",
3590
+ "Thg 8"
3591
+ ],
3592
+ [
3593
+ "Tháng 9",
3594
+ "Thg 9"
3595
+ ],
3596
+ [
3597
+ "Tháng 10",
3598
+ "Thg 10"
3599
+ ],
3600
+ [
3601
+ "Tháng 11",
3602
+ "Thg 11"
3603
+ ],
3604
+ [
3605
+ "Tháng 12",
3606
+ "Thg 12"
3607
+ ]
3497
3608
  ],
3498
3609
  "narrow": [
3499
3610
  "1",
@@ -3695,7 +3806,7 @@
3695
3806
  },
3696
3807
  "wide": {
3697
3808
  "midnight": "nửa đêm",
3698
- "noon": "TR",
3809
+ "noon": "trưa",
3699
3810
  "morning1": "sáng",
3700
3811
  "afternoon1": "chiều",
3701
3812
  "evening1": "tối",
@@ -4338,7 +4449,7 @@
4338
4449
  "Thimphu": "Thimphu",
4339
4450
  "Tokyo": "Tokyo",
4340
4451
  "Tomsk": "Tomsk",
4341
- "Ulaanbaatar": "Ulaanbaatar",
4452
+ "Ulaanbaatar": "Ulan Bator",
4342
4453
  "Urumqi": "Urumqi",
4343
4454
  "Ust-Nera": "Ust-Nera",
4344
4455
  "Vientiane": "Viêng Chăn",
@@ -4667,6 +4778,12 @@
4667
4778
  "10p-24": {
4668
4779
  "unitPrefixPattern": "y{0}"
4669
4780
  },
4781
+ "10p-27": {
4782
+ "unitPrefixPattern": "r{0}"
4783
+ },
4784
+ "10p-30": {
4785
+ "unitPrefixPattern": "q{0}"
4786
+ },
4670
4787
  "10p1": {
4671
4788
  "unitPrefixPattern": "da{0}"
4672
4789
  },
@@ -4697,6 +4814,12 @@
4697
4814
  "10p24": {
4698
4815
  "unitPrefixPattern": "Y{0}"
4699
4816
  },
4817
+ "10p27": {
4818
+ "unitPrefixPattern": "R{0}"
4819
+ },
4820
+ "10p30": {
4821
+ "unitPrefixPattern": "Q{0}"
4822
+ },
4700
4823
  "1024p1": {
4701
4824
  "unitPrefixPattern": "Ki{0}"
4702
4825
  },
@@ -4919,7 +5042,7 @@
4919
5042
  },
4920
5043
  "duration-quarter": {
4921
5044
  "displayName": "quý",
4922
- "unitPattern-count-other": "{0} qúy",
5045
+ "unitPattern-count-other": "{0} quý",
4923
5046
  "perUnitPattern": "{0}/quý"
4924
5047
  },
4925
5048
  "duration-month": {
@@ -4957,8 +5080,8 @@
4957
5080
  "unitPattern-count-other": "{0} mili giây"
4958
5081
  },
4959
5082
  "duration-microsecond": {
4960
- "displayName": "μs",
4961
- "unitPattern-count-other": "{0} μs"
5083
+ "displayName": "micrô giây",
5084
+ "unitPattern-count-other": "{0} micrô giây"
4962
5085
  },
4963
5086
  "duration-nanosecond": {
4964
5087
  "displayName": "nano giây",
@@ -4989,8 +5112,8 @@
4989
5112
  "unitPattern-count-other": "{0} cal"
4990
5113
  },
4991
5114
  "energy-foodcalorie": {
4992
- "displayName": "kcal",
4993
- "unitPattern-count-other": "{0} kcal"
5115
+ "displayName": "Cal",
5116
+ "unitPattern-count-other": "{0} Cal"
4994
5117
  },
4995
5118
  "energy-kilojoule": {
4996
5119
  "displayName": "kJ",
@@ -5049,20 +5172,20 @@
5049
5172
  "unitPattern-count-other": "{0} em"
5050
5173
  },
5051
5174
  "graphics-pixel": {
5052
- "displayName": "px",
5053
- "unitPattern-count-other": "{0} px"
5175
+ "displayName": "pixel",
5176
+ "unitPattern-count-other": "{0} pixel"
5054
5177
  },
5055
5178
  "graphics-megapixel": {
5056
5179
  "displayName": "megapixel",
5057
5180
  "unitPattern-count-other": "{0} MP"
5058
5181
  },
5059
5182
  "graphics-pixel-per-centimeter": {
5060
- "displayName": "ppcm",
5061
- "unitPattern-count-other": "{0} ppcm"
5183
+ "displayName": "pixel/cm",
5184
+ "unitPattern-count-other": "{0} pixel/cm"
5062
5185
  },
5063
5186
  "graphics-pixel-per-inch": {
5064
- "displayName": "ppi",
5065
- "unitPattern-count-other": "{0} ppi"
5187
+ "displayName": "pixel/inch",
5188
+ "unitPattern-count-other": "{0} pixel/inch"
5066
5189
  },
5067
5190
  "graphics-dot-per-centimeter": {
5068
5191
  "displayName": "dpcm",
@@ -5323,12 +5446,16 @@
5323
5446
  },
5324
5447
  "speed-mile-per-hour": {
5325
5448
  "displayName": "mi/h",
5326
- "unitPattern-count-other": "{0} mi/h"
5449
+ "unitPattern-count-other": "{0} mph"
5327
5450
  },
5328
5451
  "speed-knot": {
5329
5452
  "displayName": "kn",
5330
5453
  "unitPattern-count-other": "{0} kn"
5331
5454
  },
5455
+ "speed-beaufort": {
5456
+ "displayName": "Bft",
5457
+ "unitPattern-count-other": "B {0}"
5458
+ },
5332
5459
  "temperature-generic": {
5333
5460
  "displayName": "°",
5334
5461
  "unitPattern-count-other": "{0}°"
@@ -5394,7 +5521,7 @@
5394
5521
  "volume-liter": {
5395
5522
  "displayName": "l",
5396
5523
  "unitPattern-count-other": "{0} L",
5397
- "perUnitPattern": "{0}/l"
5524
+ "perUnitPattern": "{0}/L"
5398
5525
  },
5399
5526
  "volume-deciliter": {
5400
5527
  "displayName": "dL",
@@ -5443,7 +5570,7 @@
5443
5570
  "unitPattern-count-other": "{0} pt"
5444
5571
  },
5445
5572
  "volume-cup": {
5446
- "displayName": "c",
5573
+ "displayName": "tách",
5447
5574
  "unitPattern-count-other": "{0} tách"
5448
5575
  },
5449
5576
  "volume-fluid-ounce": {
@@ -5455,12 +5582,12 @@
5455
5582
  "unitPattern-count-other": "{0} fl oz Anh"
5456
5583
  },
5457
5584
  "volume-tablespoon": {
5458
- "displayName": "thìa xúp",
5459
- "unitPattern-count-other": "{0} thìa xúp"
5585
+ "displayName": "muỗng canh",
5586
+ "unitPattern-count-other": "{0} muỗng canh"
5460
5587
  },
5461
5588
  "volume-teaspoon": {
5462
- "displayName": "tsp",
5463
- "unitPattern-count-other": "{0} thìa cà phê"
5589
+ "displayName": "muỗng cà phê",
5590
+ "unitPattern-count-other": "{0} muỗng cà phê"
5464
5591
  },
5465
5592
  "volume-barrel": {
5466
5593
  "displayName": "thùng",
@@ -5468,11 +5595,11 @@
5468
5595
  },
5469
5596
  "volume-dessert-spoon": {
5470
5597
  "displayName": "thìa tráng miệng",
5471
- "unitPattern-count-other": "{0} thìa tm"
5598
+ "unitPattern-count-other": "{0} thìa tráng miệng"
5472
5599
  },
5473
5600
  "volume-dessert-spoon-imperial": {
5474
5601
  "displayName": "thìa tráng miệng Anh",
5475
- "unitPattern-count-other": "{0} thìa tm Anh"
5602
+ "unitPattern-count-other": "{0} thìa tráng miệng Anh"
5476
5603
  },
5477
5604
  "volume-drop": {
5478
5605
  "displayName": "giọt",
@@ -5504,9 +5631,9 @@
5504
5631
  }
5505
5632
  },
5506
5633
  "lenient-scope-number": {
5507
- "minusSign": "-‒⁻₋−➖﹣-",
5508
- "commaSign": ",،٫⹁、︐︑﹐﹑,、",
5509
- "plusSign": "+⁺₊➕﬩﹢+"
5634
+ "minusSign": "--﹣ ‑‒−⁻₋➖",
5635
+ "commaSign": ",,﹐︐ ⹁،٫、﹑、︑",
5636
+ "plusSign": "++﬩﹢⁺₊ ➕"
5510
5637
  },
5511
5638
  "currencyFormat-sap-short": {
5512
5639
  "1000-other": "0 N ¤",