@openui5/sap.ui.core 1.98.0 → 1.99.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (351) hide show
  1. package/.eslintrc.json +32 -1
  2. package/package.json +1 -1
  3. package/src/jquery.sap.global.js +1 -1
  4. package/src/jquery.sap.mobile.js +29 -11
  5. package/src/jquery.sap.properties.js +1 -1
  6. package/src/jquery.sap.resources.js +1 -1
  7. package/src/jquery.sap.script.js +1 -1
  8. package/src/jquery.sap.storage.js +3 -3
  9. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  10. package/src/sap/base/util/restricted/_castArray.js +1 -1
  11. package/src/sap/base/util/restricted/_compact.js +1 -1
  12. package/src/sap/base/util/restricted/_curry.js +1 -1
  13. package/src/sap/base/util/restricted/_debounce.js +1 -1
  14. package/src/sap/base/util/restricted/_difference.js +1 -1
  15. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  16. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  17. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  18. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  19. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  20. package/src/sap/base/util/restricted/_flatten.js +1 -1
  21. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  22. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  23. package/src/sap/base/util/restricted/_intersection.js +1 -1
  24. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  25. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  26. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  27. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  28. package/src/sap/base/util/restricted/_isNil.js +1 -1
  29. package/src/sap/base/util/restricted/_max.js +1 -1
  30. package/src/sap/base/util/restricted/_merge.js +1 -1
  31. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  32. package/src/sap/base/util/restricted/_min.js +1 -1
  33. package/src/sap/base/util/restricted/_omit.js +1 -1
  34. package/src/sap/base/util/restricted/_pick.js +1 -1
  35. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  36. package/src/sap/base/util/restricted/_throttle.js +1 -1
  37. package/src/sap/base/util/restricted/_toArray.js +1 -1
  38. package/src/sap/base/util/restricted/_union.js +1 -1
  39. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  40. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  41. package/src/sap/base/util/restricted/_uniq.js +1 -1
  42. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  43. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  44. package/src/sap/base/util/restricted/_without.js +1 -1
  45. package/src/sap/base/util/restricted/_xor.js +1 -1
  46. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  47. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  48. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  49. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  50. package/src/sap/ui/Device.js +3 -3
  51. package/src/sap/ui/Global.js +4 -4
  52. package/src/sap/ui/VersionInfo.js +13 -10
  53. package/src/sap/ui/base/BindingParser.js +34 -7
  54. package/src/sap/ui/base/Event.js +1 -1
  55. package/src/sap/ui/base/EventProvider.js +1 -1
  56. package/src/sap/ui/base/Interface.js +1 -1
  57. package/src/sap/ui/base/ManagedObject.js +32 -22
  58. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  59. package/src/sap/ui/base/Metadata.js +1 -1
  60. package/src/sap/ui/base/Object.js +1 -1
  61. package/src/sap/ui/base/ObjectPool.js +1 -1
  62. package/src/sap/ui/core/.library +1 -1
  63. package/src/sap/ui/core/BusyIndicator.js +1 -1
  64. package/src/sap/ui/core/Component.js +3 -3
  65. package/src/sap/ui/core/ComponentContainer.js +1 -1
  66. package/src/sap/ui/core/ComponentMetadata.js +1 -1
  67. package/src/sap/ui/core/ComponentSupport.js +1 -1
  68. package/src/sap/ui/core/Configuration.js +77 -10
  69. package/src/sap/ui/core/Control.js +2 -1
  70. package/src/sap/ui/core/Core.js +3 -3
  71. package/src/sap/ui/core/CustomData.js +1 -1
  72. package/src/sap/ui/core/DeclarativeSupport.js +1 -1
  73. package/src/sap/ui/core/Element.js +4 -7
  74. package/src/sap/ui/core/ElementMetadata.js +1 -1
  75. package/src/sap/ui/core/EnabledPropagator.js +1 -1
  76. package/src/sap/ui/core/EventBus.js +1 -1
  77. package/src/sap/ui/core/ExtensionPoint.js +1 -1
  78. package/src/sap/ui/core/FocusHandler.js +1 -1
  79. package/src/sap/ui/core/Fragment.js +1 -1
  80. package/src/sap/ui/core/HTML.js +1 -1
  81. package/src/sap/ui/core/HTMLRenderer.js +1 -1
  82. package/src/sap/ui/core/History.js +1 -1
  83. package/src/sap/ui/core/Icon.js +1 -1
  84. package/src/sap/ui/core/IconRenderer.js +1 -1
  85. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  86. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  87. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  88. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  89. package/src/sap/ui/core/InvisibleText.js +1 -1
  90. package/src/sap/ui/core/Item.js +1 -1
  91. package/src/sap/ui/core/LabelEnablement.js +9 -2
  92. package/src/sap/ui/core/LayoutData.js +1 -1
  93. package/src/sap/ui/core/ListItem.js +1 -1
  94. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  95. package/src/sap/ui/core/LocalBusyIndicatorRenderer.js +2 -2
  96. package/src/sap/ui/core/Locale.js +1 -1
  97. package/src/sap/ui/core/LocaleData.js +37 -2
  98. package/src/sap/ui/core/Manifest.js +1 -1
  99. package/src/sap/ui/core/Message.js +1 -1
  100. package/src/sap/ui/core/Popup.js +2 -2
  101. package/src/sap/ui/core/RenderManager.js +1 -1
  102. package/src/sap/ui/core/Renderer.js +1 -1
  103. package/src/sap/ui/core/ResizeHandler.js +1 -1
  104. package/src/sap/ui/core/ScrollBar.js +1 -1
  105. package/src/sap/ui/core/ScrollBarRenderer.js +1 -1
  106. package/src/sap/ui/core/SeparatorItem.js +1 -1
  107. package/src/sap/ui/core/Title.js +1 -1
  108. package/src/sap/ui/core/TooltipBase.js +1 -1
  109. package/src/sap/ui/core/UIArea.js +1 -1
  110. package/src/sap/ui/core/UIComponent.js +1 -1
  111. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  112. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  113. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  114. package/src/sap/ui/core/XMLComposite.js +1 -1
  115. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  116. package/src/sap/ui/core/_IconRegistry.js +10 -1
  117. package/src/sap/ui/core/date/Japanese.js +1 -1
  118. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  119. package/src/sap/ui/core/delegate/ScrollEnablement.js +9 -6
  120. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  121. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  122. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  123. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  124. package/src/sap/ui/core/format/DateFormat.js +524 -172
  125. package/src/sap/ui/core/format/DateFormatTimezoneDisplay.js +43 -0
  126. package/src/sap/ui/core/format/ListFormat.js +2 -2
  127. package/src/sap/ui/core/format/NumberFormat.js +190 -56
  128. package/src/sap/ui/core/format/TimezoneUtil.js +248 -0
  129. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  130. package/src/sap/ui/core/library.js +5 -5
  131. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  132. package/src/sap/ui/core/message/Message.js +1 -1
  133. package/src/sap/ui/core/message/MessageManager.js +1 -1
  134. package/src/sap/ui/core/message/MessageParser.js +1 -1
  135. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  136. package/src/sap/ui/core/messagebundle.properties +4 -0
  137. package/src/sap/ui/core/messagebundle_ar.properties +2 -0
  138. package/src/sap/ui/core/messagebundle_bg.properties +7 -5
  139. package/src/sap/ui/core/messagebundle_ca.properties +2 -0
  140. package/src/sap/ui/core/messagebundle_cs.properties +2 -0
  141. package/src/sap/ui/core/messagebundle_cy.properties +2 -0
  142. package/src/sap/ui/core/messagebundle_da.properties +2 -0
  143. package/src/sap/ui/core/messagebundle_de.properties +3 -1
  144. package/src/sap/ui/core/messagebundle_el.properties +2 -0
  145. package/src/sap/ui/core/messagebundle_en.properties +2 -0
  146. package/src/sap/ui/core/messagebundle_en_GB.properties +2 -0
  147. package/src/sap/ui/core/messagebundle_en_US_sappsd.properties +2 -0
  148. package/src/sap/ui/core/messagebundle_en_US_saprigi.properties +1 -0
  149. package/src/sap/ui/core/messagebundle_en_US_saptrc.properties +2 -0
  150. package/src/sap/ui/core/messagebundle_es.properties +2 -0
  151. package/src/sap/ui/core/messagebundle_es_MX.properties +2 -0
  152. package/src/sap/ui/core/messagebundle_et.properties +2 -0
  153. package/src/sap/ui/core/messagebundle_fi.properties +2 -0
  154. package/src/sap/ui/core/messagebundle_fr.properties +2 -0
  155. package/src/sap/ui/core/messagebundle_fr_CA.properties +2 -0
  156. package/src/sap/ui/core/messagebundle_hi.properties +2 -0
  157. package/src/sap/ui/core/messagebundle_hr.properties +2 -0
  158. package/src/sap/ui/core/messagebundle_hu.properties +2 -0
  159. package/src/sap/ui/core/messagebundle_id.properties +4 -2
  160. package/src/sap/ui/core/messagebundle_it.properties +2 -0
  161. package/src/sap/ui/core/messagebundle_iw.properties +2 -0
  162. package/src/sap/ui/core/messagebundle_ja.properties +2 -0
  163. package/src/sap/ui/core/messagebundle_kk.properties +2 -0
  164. package/src/sap/ui/core/messagebundle_ko.properties +2 -0
  165. package/src/sap/ui/core/messagebundle_lt.properties +2 -0
  166. package/src/sap/ui/core/messagebundle_lv.properties +3 -1
  167. package/src/sap/ui/core/messagebundle_ms.properties +2 -0
  168. package/src/sap/ui/core/messagebundle_nl.properties +2 -0
  169. package/src/sap/ui/core/messagebundle_no.properties +2 -0
  170. package/src/sap/ui/core/messagebundle_pl.properties +2 -0
  171. package/src/sap/ui/core/messagebundle_pt.properties +2 -0
  172. package/src/sap/ui/core/messagebundle_pt_PT.properties +2 -0
  173. package/src/sap/ui/core/messagebundle_ro.properties +2 -0
  174. package/src/sap/ui/core/messagebundle_ru.properties +2 -0
  175. package/src/sap/ui/core/messagebundle_sh.properties +2 -0
  176. package/src/sap/ui/core/messagebundle_sk.properties +2 -0
  177. package/src/sap/ui/core/messagebundle_sl.properties +2 -0
  178. package/src/sap/ui/core/messagebundle_sv.properties +2 -0
  179. package/src/sap/ui/core/messagebundle_th.properties +2 -0
  180. package/src/sap/ui/core/messagebundle_tr.properties +2 -0
  181. package/src/sap/ui/core/messagebundle_uk.properties +2 -0
  182. package/src/sap/ui/core/messagebundle_vi.properties +2 -0
  183. package/src/sap/ui/core/messagebundle_zh_CN.properties +2 -0
  184. package/src/sap/ui/core/messagebundle_zh_TW.properties +2 -0
  185. package/src/sap/ui/core/mvc/HTMLView.js +1 -1
  186. package/src/sap/ui/core/mvc/HTMLViewRenderer.js +1 -1
  187. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  188. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -1
  189. package/src/sap/ui/core/mvc/JSView.js +1 -1
  190. package/src/sap/ui/core/mvc/JSViewRenderer.js +1 -1
  191. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  192. package/src/sap/ui/core/mvc/TemplateViewRenderer.js +1 -1
  193. package/src/sap/ui/core/mvc/View.js +1 -1
  194. package/src/sap/ui/core/mvc/ViewRenderer.js +1 -1
  195. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  196. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  197. package/src/sap/ui/core/plugin/LessSupport.js +1 -1
  198. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  199. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  200. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  201. package/src/sap/ui/core/routing/Router.js +1 -1
  202. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  203. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  204. package/src/sap/ui/core/service/Service.js +1 -1
  205. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  206. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  207. package/src/sap/ui/core/support/Plugin.js +1 -1
  208. package/src/sap/ui/core/support/Support.js +1 -1
  209. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  210. package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
  211. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  212. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  213. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  214. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  215. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  216. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  217. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  218. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  219. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  220. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  221. package/src/sap/ui/core/tmpl/Template.js +1 -1
  222. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  223. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  224. package/src/sap/ui/core/util/Export.js +1 -1
  225. package/src/sap/ui/core/util/ExportCell.js +1 -1
  226. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  227. package/src/sap/ui/core/util/ExportRow.js +1 -1
  228. package/src/sap/ui/core/util/ExportType.js +1 -1
  229. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  230. package/src/sap/ui/core/util/File.js +1 -1
  231. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  232. package/src/sap/ui/core/util/MockServer.js +19 -17
  233. package/src/sap/ui/core/util/PasteHelper.js +4 -4
  234. package/src/sap/ui/core/util/XMLPreprocessor.js +16 -4
  235. package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +1 -1
  236. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  237. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  238. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  239. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  240. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  241. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  242. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  243. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  244. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  245. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  246. package/src/sap/ui/debug/ControlTree.js +1 -1
  247. package/src/sap/ui/debug/DebugEnv.js +1 -1
  248. package/src/sap/ui/debug/PropertyList.js +1 -1
  249. package/src/sap/ui/dom/includeStylesheet.js +8 -3
  250. package/src/sap/ui/events/jquery/EventExtension.js +1 -1
  251. package/src/sap/ui/model/Binding.js +4 -3
  252. package/src/sap/ui/model/ClientModel.js +1 -1
  253. package/src/sap/ui/model/ClientTreeBinding.js +1 -1
  254. package/src/sap/ui/model/CompositeBinding.js +1 -1
  255. package/src/sap/ui/model/CompositeDataState.js +1 -1
  256. package/src/sap/ui/model/CompositeType.js +1 -1
  257. package/src/sap/ui/model/ContextBinding.js +1 -1
  258. package/src/sap/ui/model/DataState.js +1 -1
  259. package/src/sap/ui/model/MetaModel.js +1 -2
  260. package/src/sap/ui/model/Model.js +1 -1
  261. package/src/sap/ui/model/SelectionModel.js +1 -1
  262. package/src/sap/ui/model/SimpleType.js +1 -1
  263. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  264. package/src/sap/ui/model/Type.js +1 -1
  265. package/src/sap/ui/model/analytics/AnalyticalBinding.js +1 -2
  266. package/src/sap/ui/model/base/ManagedObjectModel.js +1 -1
  267. package/src/sap/ui/model/json/JSONListBinding.js +1 -1
  268. package/src/sap/ui/model/json/JSONModel.js +1 -1
  269. package/src/sap/ui/model/json/JSONPropertyBinding.js +1 -1
  270. package/src/sap/ui/model/message/MessageListBinding.js +1 -1
  271. package/src/sap/ui/model/message/MessageModel.js +1 -1
  272. package/src/sap/ui/model/message/MessagePropertyBinding.js +1 -1
  273. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  274. package/src/sap/ui/model/odata/ODataListBinding.js +1 -1
  275. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  276. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  277. package/src/sap/ui/model/odata/ODataMetadata.js +3 -3
  278. package/src/sap/ui/model/odata/ODataModel.js +2 -2
  279. package/src/sap/ui/model/odata/ODataTreeBinding.js +1 -1
  280. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  281. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  282. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  283. package/src/sap/ui/model/odata/type/Date.js +1 -1
  284. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  285. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  286. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  287. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +338 -0
  288. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  289. package/src/sap/ui/model/odata/type/Double.js +1 -1
  290. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  291. package/src/sap/ui/model/odata/type/Int.js +1 -1
  292. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  293. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  294. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  295. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  296. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  297. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  298. package/src/sap/ui/model/odata/type/Single.js +1 -1
  299. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  300. package/src/sap/ui/model/odata/type/String.js +1 -1
  301. package/src/sap/ui/model/odata/type/Time.js +1 -1
  302. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  303. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  304. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  305. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  306. package/src/sap/ui/model/odata/v2/ODataContextBinding.js +8 -4
  307. package/src/sap/ui/model/odata/v2/ODataListBinding.js +32 -26
  308. package/src/sap/ui/model/odata/v2/ODataModel.js +11 -6
  309. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +3 -4
  310. package/src/sap/ui/model/odata/v4/AnnotationHelper.js +16 -17
  311. package/src/sap/ui/model/odata/v4/Context.js +90 -52
  312. package/src/sap/ui/model/odata/v4/ODataBinding.js +16 -9
  313. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +129 -170
  314. package/src/sap/ui/model/odata/v4/ODataListBinding.js +205 -179
  315. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +91 -63
  316. package/src/sap/ui/model/odata/v4/ODataModel.js +316 -249
  317. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +48 -25
  318. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +63 -60
  319. package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +2 -1
  320. package/src/sap/ui/model/odata/v4/lib/_Cache.js +41 -10
  321. package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -2
  322. package/src/sap/ui/model/odata/v4/lib/_MetadataConverter.js +2 -2
  323. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +20 -18
  324. package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
  325. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  326. package/src/sap/ui/model/resource/ResourcePropertyBinding.js +1 -1
  327. package/src/sap/ui/model/type/Boolean.js +1 -1
  328. package/src/sap/ui/model/type/Currency.js +1 -1
  329. package/src/sap/ui/model/type/Date.js +1 -1
  330. package/src/sap/ui/model/type/DateInterval.js +1 -1
  331. package/src/sap/ui/model/type/DateTime.js +1 -1
  332. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  333. package/src/sap/ui/model/type/FileSize.js +1 -1
  334. package/src/sap/ui/model/type/Float.js +1 -1
  335. package/src/sap/ui/model/type/Integer.js +1 -1
  336. package/src/sap/ui/model/type/String.js +1 -1
  337. package/src/sap/ui/model/type/Time.js +1 -1
  338. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  339. package/src/sap/ui/model/type/Unit.js +1 -1
  340. package/src/sap/ui/model/xml/XMLListBinding.js +1 -1
  341. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  342. package/src/sap/ui/model/xml/XMLPropertyBinding.js +1 -1
  343. package/src/sap/ui/performance/trace/Passport.js +3 -3
  344. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  345. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  346. package/src/sap/ui/test/Opa5.js +1 -1
  347. package/src/sap/ui/thirdparty/jqueryui/jquery-ui-datepicker.js +143 -3
  348. package/src/sap/ui/thirdparty/jqueryui/jquery-ui-position.js +8 -1
  349. package/src/sap/ui/thirdparty/mobify-carousel.js +1 -1
  350. package/src/sap/ui/util/Storage.js +1 -1
  351. package/src/ui5loader.js +1 -1
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * Implementation to access OData metadata
45
45
  *
46
46
  * @author SAP SE
47
- * @version 1.98.0
47
+ * @version 1.99.0
48
48
  *
49
49
  * @public
50
50
  * @alias sap.ui.model.odata.ODataMetadata
@@ -1530,14 +1530,14 @@ sap.ui.define([
1530
1530
  }
1531
1531
  return this.bMessageScopeSupported;
1532
1532
  };
1533
+
1533
1534
  /**
1534
1535
  * Check whether the given path points to a entity collection or not (single entity or not known).
1535
1536
  *
1536
- * @param {sPath} Entity path
1537
+ * @param {string} sPath Entity path
1537
1538
  * @returns {boolean} Whether the path points to a collection.
1538
1539
  * @private
1539
1540
  */
1540
-
1541
1541
  ODataMetadata.prototype._isCollection = function(sPath){
1542
1542
  var bCollection = false;
1543
1543
  var iIndex = sPath.lastIndexOf("/");
@@ -76,7 +76,7 @@ sap.ui.define([
76
76
  *
77
77
  *
78
78
  * @author SAP SE
79
- * @version 1.98.0
79
+ * @version 1.99.0
80
80
  *
81
81
  * @public
82
82
  * @deprecated As of version 1.48, please use {@link sap.ui.model.odata.v2.ODataModel} instead.
@@ -1097,7 +1097,7 @@ sap.ui.define([
1097
1097
  * Private method iterating the registered bindings of this model instance and initiating their
1098
1098
  * check for an update.
1099
1099
  *
1100
- * @param {boolean} bForceUpdate
1100
+ * @param {boolean} [bForceUpdate]
1101
1101
  * Whether change events is fired regardless of the bindings state
1102
1102
  * @param {boolean} bAsync
1103
1103
  * Whether the check is done asynchronously
@@ -550,7 +550,7 @@ sap.ui.define([
550
550
  * Check whether this Binding would provide new values and in case it changed,
551
551
  * inform interested parties about this.
552
552
  *
553
- * @param {boolean} bForceUpdate
553
+ * @param {boolean} [bForceUpdate]
554
554
  * Whether a change event should be fired regardles of this bindings state
555
555
  * @param {object} [mChangedEntities]
556
556
  * A map of changed entities to check if an update is necessary.
@@ -87,7 +87,7 @@ sap.ui.define([
87
87
  * @extends sap.ui.model.odata.type.ODataType
88
88
  *
89
89
  * @author SAP SE
90
- * @version 1.98.0
90
+ * @version 1.99.0
91
91
  *
92
92
  * @alias sap.ui.model.odata.type.Boolean
93
93
  * @param {object} [oFormatOptions]
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @extends sap.ui.model.odata.type.Int
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.98.0
27
+ * @version 1.99.0
28
28
  *
29
29
  * @alias sap.ui.model.odata.type.Byte
30
30
  * @param {object} [oFormatOptions]
@@ -61,7 +61,7 @@ sap.ui.define([
61
61
  * @extends sap.ui.model.type.Currency
62
62
  * @public
63
63
  * @since 1.63.0
64
- * @version 1.98.0
64
+ * @version 1.99.0
65
65
  */
66
66
  var Currency = BaseCurrency.extend("sap.ui.model.odata.type.Currency", {
67
67
  constructor : function (oFormatOptions, oConstraints) {
@@ -106,7 +106,7 @@ sap.ui.define([
106
106
  * @extends sap.ui.model.odata.type.ODataType
107
107
  *
108
108
  * @author SAP SE
109
- * @version 1.98.0
109
+ * @version 1.99.0
110
110
  *
111
111
  * @alias sap.ui.model.odata.type.Date
112
112
  * @param {object} [oFormatOptions]
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * @extends sap.ui.model.odata.type.DateTimeBase
60
60
  *
61
61
  * @author SAP SE
62
- * @version 1.98.0
62
+ * @version 1.99.0
63
63
  *
64
64
  * @alias sap.ui.model.odata.type.DateTime
65
65
  * @param {object} [oFormatOptions]
@@ -132,7 +132,7 @@ sap.ui.define([
132
132
  * @extends sap.ui.model.odata.type.ODataType
133
133
  * @public
134
134
  * @since 1.27.0
135
- * @version 1.98.0
135
+ * @version 1.99.0
136
136
  */
137
137
  var DateTimeBase = ODataType.extend("sap.ui.model.odata.type.DateTimeBase", {
138
138
  constructor : function (oFormatOptions, oConstraints) {
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.model.odata.type.DateTimeBase
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.98.0
31
+ * @version 1.99.0
32
32
  *
33
33
  * @alias sap.ui.model.odata.type.DateTimeOffset
34
34
  * @param {object} [oFormatOptions]
@@ -0,0 +1,338 @@
1
+ /*!
2
+ * OpenUI5
3
+ * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
+ */
6
+
7
+ sap.ui.define([
8
+ "sap/ui/core/format/DateFormat",
9
+ "sap/ui/core/format/DateFormatTimezoneDisplay",
10
+ "sap/ui/model/CompositeType",
11
+ "sap/ui/model/FormatException",
12
+ "sap/ui/model/ParseException"
13
+ ], function (DateFormat, DateFormatTimezoneDisplay, CompositeType, FormatException,
14
+ ParseException) {
15
+ "use strict";
16
+
17
+ var oDemoDateTime = new Date(Date.UTC(new Date().getFullYear(), 11, 31, 23, 59, 58)),
18
+ sObjectRequiresHide = "Type 'object' requires format option 'showTimezone' set to "
19
+ + "sap.ui.core.format.DateFormatTimezoneDisplay.Hide";
20
+
21
+ /*
22
+ * Returns the formatter. Creates it lazily.
23
+ *
24
+ * @param {sap.ui.model.odata.type.DateTimeWithTimezone} oType
25
+ * The type instance
26
+ * @returns {sap.ui.core.format.DateFormat}
27
+ * The formatter
28
+ */
29
+ function getFormatter(oType) {
30
+ if (!oType.oFormat) {
31
+ oType.oFormat = DateFormat.getDateTimeWithTimezoneInstance(oType.oFormatOptions);
32
+ }
33
+ return oType.oFormat;
34
+ }
35
+
36
+ /**
37
+ * Constructor for a <code>DateTimeWithTimezone</code> composite type.
38
+ *
39
+ * @param {object} [oFormatOptions]
40
+ * Format options. For a list of all available options, see
41
+ * {@link sap.ui.core.format.DateFormat.getDateTimeWithTimezoneInstance DateFormat}.
42
+ * Format options are immutable, that is, they can only be set once on construction.
43
+ * @param {object} [oConstraints]
44
+ * Constraints are not supported
45
+ * @throws {Error}
46
+ * If constraints are given
47
+ *
48
+ * @alias sap.ui.model.odata.type.DateTimeWithTimezone
49
+ * @author SAP SE
50
+ * @class This class represents the <code>DateTimeWithTimezone</code> composite type which has
51
+ * the parts timestamp and time zone. The type formats the timestamp part using the time zone
52
+ * part. For this, the timestamp part has to be provided in the UTC time zone.
53
+ * @extends sap.ui.model.CompositeType
54
+ * @public
55
+ * @since 1.99.0
56
+ * @experimental The behavior of this type may change in the future.
57
+ * @version 1.99.0
58
+ */
59
+ var DateTimeWithTimezone = CompositeType.extend("sap.ui.model.odata.type.DateTimeWithTimezone",
60
+ {
61
+ constructor : function (oFormatOptions, oConstraints) {
62
+ if (oConstraints && Object.keys(oConstraints).length) {
63
+ throw new Error("Type " + this.getName() + " does not support constraints");
64
+ }
65
+ oFormatOptions = Object.assign({}, oFormatOptions);
66
+ CompositeType.call(this, oFormatOptions);
67
+ this.oFormat = null;
68
+ this.bParseWithValues = true;
69
+ this.bUseInternalValues = true;
70
+
71
+ // must not overwrite setConstraints and setFormatOptions on prototype as they are
72
+ // called in SimpleType constructor
73
+ this.setConstraints = function () {
74
+ throw new Error("Constraints are immutable");
75
+ };
76
+ this.setFormatOptions = function () {
77
+ throw new Error("Format options are immutable");
78
+ };
79
+ }
80
+ });
81
+
82
+ /*
83
+ * Returns the locale-dependent error message corresponding to the type's format option
84
+ * <code>showTimezone</code>.
85
+ *
86
+ * @returns {string}
87
+ * The locale-dependent error message
88
+ *
89
+ * @private
90
+ */
91
+ DateTimeWithTimezone.prototype._getErrorMessage = function () {
92
+ var sMessageKey = this.oFormatOptions.showTimezone === DateFormatTimezoneDisplay.Only
93
+ ? "EnterDateTimeTimezone"
94
+ : "EnterDateTime";
95
+
96
+ return sap.ui.getCore().getLibraryResourceBundle()
97
+ .getText(sMessageKey, [this.formatValue([oDemoDateTime, "America/New_York"],
98
+ "string")]);
99
+ };
100
+
101
+ /**
102
+ * Formats the given values of the parts of the <code>DateTimeWithTimezone</code> composite type
103
+ * to the given target type.
104
+ *
105
+ * @param {array} aValues
106
+ * The array of the part values to be formatted; the first entry has to be a <code>Date</code>
107
+ * object for the timestamp, and the second entry has to be a string representing a time zone
108
+ * ID
109
+ * @param {string} sTargetType
110
+ * The target type, must be "object", "string", or a type with one of these types as its
111
+ * {@link sap.ui.base.DataType#getPrimitiveType primitive type}; see
112
+ * {@link sap.ui.model.odata.type} for more information
113
+ * @returns {any}
114
+ * The formatted output value; <code>null</code>,
115
+ * <ul>
116
+ * <li>if <code>aValues</code> is not set, or</li>
117
+ * <li>if the time zone in <code>aValues</code> is not set, or</li>
118
+ * <li>if the timestamp in <code>aValues</code> is not set and the <code>showTimezone</code>
119
+ * format option is set to <code>sap.ui.core.format.DateFormatTimezoneDisplay.Hide</code>
120
+ * </li>
121
+ * </ul>
122
+ * @throws {sap.ui.model.FormatException}
123
+ * If
124
+ * <ul>
125
+ * <li><code>sTargetType</code> is unsupported,</li>
126
+ * <li>a timestamp is given in <code>aValues</code> that is not an instance of
127
+ * <code>Date</code>,</li>
128
+ * <li>the <code>sTargetType</code> is "object" or an equivalent primitive type, and the
129
+ * <code>showTimezone</code> format option is not
130
+ * <code>sap.ui.core.format.DateFormatTimezoneDisplay.Hide</code></li>
131
+ * </ul>
132
+ * @public
133
+ */
134
+ DateTimeWithTimezone.prototype.formatValue = function (aValues, sTargetType) {
135
+ var sShowTimezone = this.oFormatOptions.showTimezone,
136
+ oTimestamp = aValues && aValues[0],
137
+ sTimezone = aValues && aValues[1];
138
+
139
+ if (!aValues
140
+ || !sTimezone // time zone is mandatory
141
+ || oTimestamp === undefined // data is not yet available (OData V4)
142
+ // if time zone is not shown falsy timestamps cannot be formatted -> return null
143
+ || (!oTimestamp && sShowTimezone === DateFormatTimezoneDisplay.Hide)) {
144
+ return null;
145
+ }
146
+
147
+ if (oTimestamp && !(oTimestamp instanceof Date)) {
148
+ throw new FormatException("Timestamp value for " + this.getName()
149
+ + " is not an instance of Date: " + oTimestamp);
150
+ }
151
+
152
+ switch (this.getPrimitiveType(sTargetType)) {
153
+ case "object":
154
+ if (sShowTimezone !== DateFormatTimezoneDisplay.Hide) {
155
+ throw new FormatException(sObjectRequiresHide);
156
+ }
157
+
158
+ return oTimestamp;
159
+ case "string":
160
+ return getFormatter(this).format(oTimestamp, sTimezone);
161
+ default:
162
+ throw new FormatException("Don't know how to format " + this.getName() + " to "
163
+ + sTargetType);
164
+ }
165
+ };
166
+
167
+ /**
168
+ * Returns the type's name.
169
+ *
170
+ * @returns {string}
171
+ * The type's name
172
+ *
173
+ * @public
174
+ */
175
+ DateTimeWithTimezone.prototype.getName = function () {
176
+ return "sap.ui.model.odata.type.DateTimeWithTimezone";
177
+ };
178
+
179
+
180
+ /**
181
+ * Gets an array of indices that determine which parts of this type shall not propagate their
182
+ * model messages to the attached control. Prerequisite is that the corresponding binding
183
+ * supports this feature, see {@link sap.ui.model.Binding#supportsIgnoreMessages}. If the
184
+ * <code>showTimezone</code> format option is set to
185
+ * <code>sap.ui.core.format.DateFormatTimezoneDisplay.Hide</code> and the time zone is not shown
186
+ * in the control, the part for the time zone shall not propagate model messages to the control.
187
+ * Analogously, if the format option <code>showTimezone</code> is set to
188
+ * <code>sap.ui.core.format.DateFormatTimezoneDisplay.Only</code>, the date and time are not
189
+ * shown in the control and the parts for the date and time shall not propagate model messages
190
+ * to the control.
191
+ *
192
+ * @return {number[]}
193
+ * An array of indices that determine which parts of this type shall not propagate their
194
+ * model messages to the attached control
195
+ *
196
+ * @public
197
+ * @see sap.ui.model.Binding#supportsIgnoreMessages
198
+ */
199
+ // @override sap.ui.model.CompositeType#getPartsIgnoringMessages
200
+ DateTimeWithTimezone.prototype.getPartsIgnoringMessages = function () {
201
+ var sShowTimezone = this.oFormatOptions.showTimezone;
202
+
203
+ if (sShowTimezone === DateFormatTimezoneDisplay.Only) {
204
+ return [0];
205
+ } else if (sShowTimezone === DateFormatTimezoneDisplay.Hide) {
206
+ return [1];
207
+ }
208
+
209
+ return [];
210
+ };
211
+
212
+ /**
213
+ * Parses the given value.
214
+ *
215
+ * @param {string|Date} vValue
216
+ * The value to be parsed
217
+ * @param {string} sSourceType
218
+ * The source type (the expected type of <code>vValue</code>); must be "object", "string", or
219
+ * a type with one of these types as its
220
+ * {@link sap.ui.base.DataType#getPrimitiveType primitive type}; see
221
+ * {@link sap.ui.model.odata.type} for more information
222
+ * @param {any[]} [aCurrentValues]
223
+ * The array of current part values; the first entry has to be a <code>Date</code> object for
224
+ * the timestamp, and the second entry has to be a string representing a time zone ID;
225
+ * <b>Note:</b> This parameter is required, see definition of this parameter in
226
+ * {@link sap.ui.model.CompositeType#parseValue}
227
+ * @returns {any[]}
228
+ * An array with two entries; the first one is a <code>Date</code> object for the timestamp
229
+ * and the second one is a string representing a time zone ID; if a part is hidden via the
230
+ * format option <code>showTimezone</code>, the corresponding entry in the array is set to
231
+ * <code>undefined</code>
232
+ * @throws {sap.ui.model.ParseException}
233
+ * If
234
+ * <ul>
235
+ * <li><code>sSourceType</code> is unsupported,</li>
236
+ * <li>the value is not parsable,</li>
237
+ * <li>the <code>showTimezone</code> format option is
238
+ * <code>sap.ui.core.format.DateFormatTimezoneDisplay.Only</code> but no value is given,
239
+ * </li>
240
+ * <li><code>aCurrentValues</code> is not given,</li>
241
+ * <li>the <code>sSourceType</code> is "object" or an equivalent primitive type, and the
242
+ * <code>showTimezone</code> format option is not
243
+ * <code>sap.ui.core.format.DateFormatTimezoneDisplay.Hide</code>,</li>
244
+ * <li>the <code>sSourceType</code> is "object" or an equivalent primitive type, and the
245
+ * value is not an instance of <code>Date</code></li>
246
+ * </ul>
247
+ *
248
+ * @public
249
+ */
250
+ DateTimeWithTimezone.prototype.parseValue = function (vValue, sSourceType, aCurrentValues) {
251
+ var sCurrentTimezone, aDateWithTimezone,
252
+ sShowTimezone = this.oFormatOptions.showTimezone;
253
+
254
+ if (!aCurrentValues) {
255
+ throw new ParseException("'aCurrentValues' is mandatory");
256
+ }
257
+
258
+ switch (this.getPrimitiveType(sSourceType)) {
259
+ case "object":
260
+ if (sShowTimezone !== DateFormatTimezoneDisplay.Hide) {
261
+ throw new ParseException(sObjectRequiresHide);
262
+ }
263
+
264
+ if (!vValue) {
265
+ return [null, /*unchanged*/undefined];
266
+ }
267
+
268
+ if (!aCurrentValues[1]) {
269
+ throw new ParseException(sap.ui.getCore().getLibraryResourceBundle()
270
+ .getText("EnterDateTimeTimezoneFirst"));
271
+ }
272
+
273
+ if (!(vValue instanceof Date)) {
274
+ throw new ParseException("Given value must be an instance of Date");
275
+ }
276
+
277
+ return [vValue, undefined];
278
+ case "string":
279
+ if (!vValue) {
280
+ if (sShowTimezone === DateFormatTimezoneDisplay.Only) {
281
+ throw new ParseException(this._getErrorMessage());
282
+ }
283
+
284
+ return [null, /*unchanged*/undefined];
285
+ }
286
+
287
+ if (!aCurrentValues[1] && sShowTimezone === DateFormatTimezoneDisplay.Hide) {
288
+ throw new ParseException(sap.ui.getCore().getLibraryResourceBundle()
289
+ .getText("EnterDateTimeTimezoneFirst"));
290
+ }
291
+
292
+ sCurrentTimezone = aCurrentValues[1]
293
+ || sap.ui.getCore().getConfiguration().getTimezone();
294
+ aDateWithTimezone = getFormatter(this).parse(vValue, sCurrentTimezone);
295
+ if (!aDateWithTimezone) {
296
+ throw new ParseException(this._getErrorMessage());
297
+ }
298
+ // if time zone has been defaulted because current value does not have a time zone
299
+ // then the default time zone has to be added to the result if the time zone part of
300
+ // the parsed value indicates that it has not been changed; this can happen only
301
+ // if showTimezone format option is 'Show' or not set; in case of 'Hide' a
302
+ // ParseException is thrown earlier; in case of 'Only' the time zone part is never
303
+ // undefined
304
+ if (!aCurrentValues[1] && aDateWithTimezone[1] === undefined) {
305
+ aDateWithTimezone[1] = sCurrentTimezone;
306
+ }
307
+
308
+ return aDateWithTimezone;
309
+ default:
310
+ throw new ParseException("Don't know how to parse " + this.getName() + " from "
311
+ + sSourceType);
312
+ }
313
+ };
314
+
315
+ /**
316
+ * Validates whether the given raw values meet the defined constraints. This method does nothing
317
+ * as no constraints are supported.
318
+ *
319
+ * @param {any[]} aValues
320
+ * The set of values to be validated
321
+ *
322
+ * @public
323
+ * @see sap.ui.model.SimpleType#validateValue
324
+ */
325
+ DateTimeWithTimezone.prototype.validateValue = function (aValues) {
326
+ };
327
+
328
+ /**
329
+ * Called by the framework when any localization setting has changed.
330
+ *
331
+ * @private
332
+ */
333
+ DateTimeWithTimezone.prototype._handleLocalizationChange = function () {
334
+ this.oFormat = null;
335
+ };
336
+
337
+ return DateTimeWithTimezone;
338
+ });
@@ -201,7 +201,7 @@ sap.ui.define([
201
201
  * @extends sap.ui.model.odata.type.ODataType
202
202
  *
203
203
  * @author SAP SE
204
- * @version 1.98.0
204
+ * @version 1.99.0
205
205
  *
206
206
  * @alias sap.ui.model.odata.type.Decimal
207
207
  * @param {object} [oFormatOptions]
@@ -95,7 +95,7 @@ sap.ui.define([
95
95
  * @extends sap.ui.model.odata.type.ODataType
96
96
  *
97
97
  * @author SAP SE
98
- * @version 1.98.0
98
+ * @version 1.99.0
99
99
  *
100
100
  * @alias sap.ui.model.odata.type.Double
101
101
  * @param {object} [oFormatOptions]
@@ -62,7 +62,7 @@ sap.ui.define([
62
62
  * @extends sap.ui.model.odata.type.ODataType
63
63
  *
64
64
  * @author SAP SE
65
- * @version 1.98.0
65
+ * @version 1.99.0
66
66
  *
67
67
  * @alias sap.ui.model.odata.type.Guid
68
68
  * @param {object} [oFormatOptions]
@@ -80,7 +80,7 @@ sap.ui.define([
80
80
  * @extends sap.ui.model.odata.type.ODataType
81
81
  *
82
82
  * @author SAP SE
83
- * @version 1.98.0
83
+ * @version 1.99.0
84
84
  *
85
85
  * @abstract
86
86
  * @alias sap.ui.model.odata.type.Int
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @extends sap.ui.model.odata.type.Int
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.98.0
27
+ * @version 1.99.0
28
28
  *
29
29
  * @alias sap.ui.model.odata.type.Int16
30
30
  * @param {object} [oFormatOptions]
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @extends sap.ui.model.odata.type.Int
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.98.0
27
+ * @version 1.99.0
28
28
  *
29
29
  * @alias sap.ui.model.odata.type.Int32
30
30
  * @param {object} [oFormatOptions]
@@ -137,7 +137,7 @@ sap.ui.define([
137
137
  * @extends sap.ui.model.odata.type.ODataType
138
138
  *
139
139
  * @author SAP SE
140
- * @version 1.98.0
140
+ * @version 1.99.0
141
141
  *
142
142
  * @alias sap.ui.model.odata.type.Int64
143
143
  * @param {object} [oFormatOptions]
@@ -115,7 +115,7 @@ sap.ui.define([
115
115
  * @extends sap.ui.model.SimpleType
116
116
  *
117
117
  * @author SAP SE
118
- * @version 1.98.0
118
+ * @version 1.99.0
119
119
  *
120
120
  * @abstract
121
121
  * @alias sap.ui.model.odata.type.ODataType
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.ui.model.odata.type.ODataType
31
31
  * @public
32
32
  * @since 1.37.0
33
- * @version 1.98.0
33
+ * @version 1.99.0
34
34
  */
35
35
  var Raw = ODataType.extend("sap.ui.model.odata.type.Raw", {
36
36
  constructor : function (oFormatOptions, oConstraints) {
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @extends sap.ui.model.odata.type.Int
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.98.0
27
+ * @version 1.99.0
28
28
  *
29
29
  * @alias sap.ui.model.odata.type.SByte
30
30
  * @param {object} [oFormatOptions]
@@ -95,7 +95,7 @@ sap.ui.define([
95
95
  * @extends sap.ui.model.odata.type.ODataType
96
96
  *
97
97
  * @author SAP SE
98
- * @version 1.98.0
98
+ * @version 1.99.0
99
99
  *
100
100
  * @alias sap.ui.model.odata.type.Single
101
101
  * @param {object} [oFormatOptions]
@@ -60,7 +60,7 @@ sap.ui.define([
60
60
  * @extends sap.ui.model.odata.type.ODataType
61
61
  * @public
62
62
  * @since 1.51.0
63
- * @version 1.98.0
63
+ * @version 1.99.0
64
64
  */
65
65
  var Stream = ODataType.extend("sap.ui.model.odata.type.Stream", {
66
66
  constructor : function (oFormatOptions, oConstraints) {
@@ -84,7 +84,7 @@ sap.ui.define([
84
84
  * @extends sap.ui.model.odata.type.ODataType
85
85
  *
86
86
  * @author SAP SE
87
- * @version 1.98.0
87
+ * @version 1.99.0
88
88
  *
89
89
  * @alias sap.ui.model.odata.type.String
90
90
  * @param {object} [oFormatOptions]
@@ -154,7 +154,7 @@ sap.ui.define([
154
154
  * @extends sap.ui.model.odata.type.ODataType
155
155
  *
156
156
  * @author SAP SE
157
- * @version 1.98.0
157
+ * @version 1.99.0
158
158
  *
159
159
  * @alias sap.ui.model.odata.type.Time
160
160
  * @param {object} [oFormatOptions]
@@ -110,7 +110,7 @@ sap.ui.define([
110
110
  * @extends sap.ui.model.odata.type.ODataType
111
111
  * @public
112
112
  * @since 1.37.0
113
- * @version 1.98.0
113
+ * @version 1.99.0
114
114
  */
115
115
  var TimeOfDay = ODataType.extend("sap.ui.model.odata.type.TimeOfDay", {
116
116
  constructor : function (oFormatOptions, oConstraints) {
@@ -63,7 +63,7 @@ sap.ui.define([
63
63
  * @extends sap.ui.model.type.Unit
64
64
  * @public
65
65
  * @since 1.63.0
66
- * @version 1.98.0
66
+ * @version 1.99.0
67
67
  */
68
68
  var Unit = BaseUnit.extend("sap.ui.model.odata.type.Unit", {
69
69
  constructor : function (oFormatOptions, oConstraints, aDynamicFormatOptionNames) {
@@ -57,7 +57,7 @@ sap.ui.define([
57
57
  * @hideconstructor
58
58
  * @public
59
59
  * @since 1.93.0
60
- * @version 1.98.0
60
+ * @version 1.99.0
61
61
  */
62
62
  var Context = BaseContext.extend("sap.ui.model.odata.v2.Context", {
63
63
  constructor : function (oModel, sPath, sDeepPath, oCreatePromise, bInactive) {
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @class Annotation loader for OData V2 services
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.98.0
38
+ * @version 1.99.0
39
39
  *
40
40
  * @public
41
41
  * @since 1.37.0