@openui5/sap.ui.integration 1.144.0 → 1.146.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 (233) hide show
  1. package/REUSE.toml +40 -16
  2. package/THIRDPARTY.txt +28 -7
  3. package/package.json +6 -6
  4. package/src/sap/ui/integration/.library +1 -1
  5. package/src/sap/ui/integration/ActionDefinition.js +2 -3
  6. package/src/sap/ui/integration/Designtime.js +1 -2
  7. package/src/sap/ui/integration/Extension.js +5 -8
  8. package/src/sap/ui/integration/Host.js +14 -21
  9. package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
  10. package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
  11. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
  12. package/src/sap/ui/integration/cards/BaseContent.js +3 -2
  13. package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
  14. package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
  15. package/src/sap/ui/integration/cards/ComponentContent.js +1 -2
  16. package/src/sap/ui/integration/cards/Footer.js +1 -1
  17. package/src/sap/ui/integration/cards/Header.js +1 -1
  18. package/src/sap/ui/integration/cards/ListContent.js +1 -1
  19. package/src/sap/ui/integration/cards/NumericHeader.js +1 -1
  20. package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
  21. package/src/sap/ui/integration/cards/TableContent.js +3 -2
  22. package/src/sap/ui/integration/cards/TimelineContent.js +2 -2
  23. package/src/sap/ui/integration/cards/WebPageContent.js +2 -3
  24. package/src/sap/ui/integration/cards/actions/CardActions.js +3 -12
  25. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
  26. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
  27. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
  28. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
  29. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
  30. package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
  31. package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +1 -1
  32. package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +5 -1
  33. package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
  34. package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +1 -1
  35. package/src/sap/ui/integration/cards/filters/SearchFilter.js +1 -1
  36. package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
  37. package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
  38. package/src/sap/ui/integration/controls/ActionsStrip.js +1 -1
  39. package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
  40. package/src/sap/ui/integration/controls/BlockingMessage.js +1 -1
  41. package/src/sap/ui/integration/controls/ComboBox.js +1 -1
  42. package/src/sap/ui/integration/controls/HeaderInfoSectionColumn.js +1 -1
  43. package/src/sap/ui/integration/controls/HeaderInfoSectionRow.js +1 -1
  44. package/src/sap/ui/integration/controls/ImageWithOverlay.js +1 -1
  45. package/src/sap/ui/integration/controls/ListContentItem.js +1 -1
  46. package/src/sap/ui/integration/controls/Microchart.js +1 -1
  47. package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
  48. package/src/sap/ui/integration/controls/ObjectStatus.js +1 -1
  49. package/src/sap/ui/integration/delegate/OverflowHandler.js +1 -1
  50. package/src/sap/ui/integration/delegate/Paginator.js +1 -1
  51. package/src/sap/ui/integration/delegate/PreventKeyboardScrolling.js +1 -1
  52. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +18 -16
  53. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +1 -2
  54. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +9 -7
  55. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -2
  56. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -2
  57. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -3
  58. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -3
  59. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.fragment.xml +0 -1
  60. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +18 -4
  61. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -3
  62. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -3
  63. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -2
  64. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -3
  65. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -3
  66. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -2
  67. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -3
  68. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +2 -3
  69. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -3
  70. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -3
  71. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +2 -3
  72. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -3
  73. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +2 -3
  74. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -3
  75. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -3
  76. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -3
  77. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -3
  78. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -2
  79. package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +0 -1
  80. package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +0 -1
  81. package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +0 -1
  82. package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +0 -1
  83. package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +0 -1
  84. package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +0 -1
  85. package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +0 -1
  86. package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +0 -1
  87. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -2
  88. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -2
  89. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -2
  90. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -2
  91. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -2
  92. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -2
  93. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -2
  94. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -2
  95. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -2
  96. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -2
  97. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -2
  98. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -2
  99. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -2
  100. package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +0 -1
  101. package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +0 -1
  102. package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +0 -1
  103. package/src/sap/ui/integration/designtime/cardEditor/config/FooterConfig.js +0 -1
  104. package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +0 -1
  105. package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +0 -1
  106. package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +0 -1
  107. package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +0 -1
  108. package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +0 -1
  109. package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +0 -1
  110. package/src/sap/ui/integration/designtime/cardEditor/config/generateFooterActionsStripConfig.js +0 -1
  111. package/src/sap/ui/integration/designtime/cardEditor/config/index.js +0 -1
  112. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +2 -3
  113. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -3
  114. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +2 -3
  115. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -3
  116. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -3
  117. package/src/sap/ui/integration/designtime/editor/Card.js +1 -3
  118. package/src/sap/ui/integration/designtime/editor/CardEditor.js +2 -3
  119. package/src/sap/ui/integration/designtime/editor/CardPreview.js +1 -2
  120. package/src/sap/ui/integration/editor/Editor.js +88 -34
  121. package/src/sap/ui/integration/editor/EditorResourceBundles.js +5 -30
  122. package/src/sap/ui/integration/editor/Extension.js +1 -1
  123. package/src/sap/ui/integration/editor/Manifest.js +1 -1
  124. package/src/sap/ui/integration/editor/Settings.js +1 -2
  125. package/src/sap/ui/integration/editor/fields/BaseField.js +1 -4
  126. package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -2
  127. package/src/sap/ui/integration/editor/fields/DateField.js +1 -2
  128. package/src/sap/ui/integration/editor/fields/DateTimeField.js +1 -2
  129. package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -2
  130. package/src/sap/ui/integration/editor/fields/GroupField.js +1 -2
  131. package/src/sap/ui/integration/editor/fields/IntegerField.js +1 -2
  132. package/src/sap/ui/integration/editor/fields/NumberField.js +1 -2
  133. package/src/sap/ui/integration/editor/fields/ObjectField.js +1 -4
  134. package/src/sap/ui/integration/editor/fields/ObjectListField.js +1 -2
  135. package/src/sap/ui/integration/editor/fields/StringField.js +1 -4
  136. package/src/sap/ui/integration/editor/fields/StringListField.js +1 -2
  137. package/src/sap/ui/integration/editor/fields/fragment/Controller.js +1 -2
  138. package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +1 -2
  139. package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -2
  140. package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -2
  141. package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -2
  142. package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -2
  143. package/src/sap/ui/integration/extensions/OAuth3LO.js +1 -1
  144. package/src/sap/ui/integration/library.js +17 -22
  145. package/src/sap/ui/integration/messagebundle_ar.properties +2 -0
  146. package/src/sap/ui/integration/messagebundle_bg.properties +2 -0
  147. package/src/sap/ui/integration/messagebundle_ca.properties +2 -0
  148. package/src/sap/ui/integration/messagebundle_cnr.properties +3 -1
  149. package/src/sap/ui/integration/messagebundle_cs.properties +2 -0
  150. package/src/sap/ui/integration/messagebundle_cy.properties +2 -0
  151. package/src/sap/ui/integration/messagebundle_da.properties +2 -0
  152. package/src/sap/ui/integration/messagebundle_de.properties +2 -0
  153. package/src/sap/ui/integration/messagebundle_el.properties +2 -0
  154. package/src/sap/ui/integration/messagebundle_en.properties +2 -0
  155. package/src/sap/ui/integration/messagebundle_en_GB.properties +2 -0
  156. package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +2 -0
  157. package/src/sap/ui/integration/messagebundle_es.properties +2 -0
  158. package/src/sap/ui/integration/messagebundle_es_MX.properties +2 -0
  159. package/src/sap/ui/integration/messagebundle_et.properties +2 -0
  160. package/src/sap/ui/integration/messagebundle_fi.properties +2 -0
  161. package/src/sap/ui/integration/messagebundle_fr.properties +2 -0
  162. package/src/sap/ui/integration/messagebundle_fr_CA.properties +2 -0
  163. package/src/sap/ui/integration/messagebundle_hi.properties +2 -0
  164. package/src/sap/ui/integration/messagebundle_hr.properties +2 -0
  165. package/src/sap/ui/integration/messagebundle_hu.properties +2 -0
  166. package/src/sap/ui/integration/messagebundle_id.properties +3 -1
  167. package/src/sap/ui/integration/messagebundle_it.properties +2 -0
  168. package/src/sap/ui/integration/messagebundle_iw.properties +2 -0
  169. package/src/sap/ui/integration/messagebundle_ja.properties +2 -0
  170. package/src/sap/ui/integration/messagebundle_kk.properties +2 -0
  171. package/src/sap/ui/integration/messagebundle_ko.properties +2 -0
  172. package/src/sap/ui/integration/messagebundle_lt.properties +2 -0
  173. package/src/sap/ui/integration/messagebundle_lv.properties +2 -0
  174. package/src/sap/ui/integration/messagebundle_mk.properties +2 -0
  175. package/src/sap/ui/integration/messagebundle_ms.properties +2 -0
  176. package/src/sap/ui/integration/messagebundle_nl.properties +2 -0
  177. package/src/sap/ui/integration/messagebundle_no.properties +2 -0
  178. package/src/sap/ui/integration/messagebundle_pl.properties +2 -0
  179. package/src/sap/ui/integration/messagebundle_pt.properties +2 -0
  180. package/src/sap/ui/integration/messagebundle_pt_PT.properties +2 -0
  181. package/src/sap/ui/integration/messagebundle_ro.properties +2 -0
  182. package/src/sap/ui/integration/messagebundle_ru.properties +2 -0
  183. package/src/sap/ui/integration/messagebundle_sh.properties +3 -1
  184. package/src/sap/ui/integration/messagebundle_sk.properties +2 -0
  185. package/src/sap/ui/integration/messagebundle_sl.properties +2 -0
  186. package/src/sap/ui/integration/messagebundle_sr.properties +3 -1
  187. package/src/sap/ui/integration/messagebundle_sv.properties +2 -0
  188. package/src/sap/ui/integration/messagebundle_th.properties +2 -0
  189. package/src/sap/ui/integration/messagebundle_tr.properties +2 -0
  190. package/src/sap/ui/integration/messagebundle_uk.properties +2 -0
  191. package/src/sap/ui/integration/messagebundle_vi.properties +2 -0
  192. package/src/sap/ui/integration/messagebundle_zh_CN.properties +2 -0
  193. package/src/sap/ui/integration/messagebundle_zh_TW.properties +2 -0
  194. package/src/sap/ui/integration/model/ContextModel.js +1 -1
  195. package/src/sap/ui/integration/model/ObservableModel.js +1 -1
  196. package/src/sap/ui/integration/schemas/sap-card.json +78 -4
  197. package/src/sap/ui/integration/services/Data.js +0 -1
  198. package/src/sap/ui/integration/services/Navigation.js +0 -1
  199. package/src/sap/ui/integration/services/Service.js +0 -1
  200. package/src/sap/ui/integration/themes/base/ListContentItem.less +7 -7
  201. package/src/sap/ui/integration/themes/base/ObjectContent.less +8 -1
  202. package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +1 -1
  203. package/src/sap/ui/integration/util/BaseFactory.js +1 -1
  204. package/src/sap/ui/integration/util/BindingHelper.js +1 -1
  205. package/src/sap/ui/integration/util/BindingResolver.js +1 -1
  206. package/src/sap/ui/integration/util/CardObserver.js +1 -1
  207. package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
  208. package/src/sap/ui/integration/util/ContentFactory.js +1 -1
  209. package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
  210. package/src/sap/ui/integration/util/DataProvider.js +1 -1
  211. package/src/sap/ui/integration/util/DataProviderFactory.js +1 -2
  212. package/src/sap/ui/integration/util/Destinations.js +1 -1
  213. package/src/sap/ui/integration/util/DisplayVariants.js +1 -1
  214. package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
  215. package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
  216. package/src/sap/ui/integration/util/Form.js +1 -1
  217. package/src/sap/ui/integration/util/HeaderFactory.js +1 -1
  218. package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
  219. package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
  220. package/src/sap/ui/integration/util/Manifest.js +1 -1
  221. package/src/sap/ui/integration/util/ManifestResolver.js +0 -1
  222. package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
  223. package/src/sap/ui/integration/util/ObjectStatusFactory.js +1 -1
  224. package/src/sap/ui/integration/util/RadioButtonHelper.js +1 -1
  225. package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
  226. package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
  227. package/src/sap/ui/integration/util/ServiceManager.js +1 -1
  228. package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
  229. package/src/sap/ui/integration/util/SorterHelper.js +1 -1
  230. package/src/sap/ui/integration/util/Utils.js +2 -2
  231. package/src/sap/ui/integration/util/Validators.js +1 -1
  232. package/src/sap/ui/integration/widgets/Card.js +40 -50
  233. package/src/sap-ui-integration.js +1 -1
package/REUSE.toml CHANGED
@@ -7,7 +7,7 @@ SPDX-PackageComment = "The code in this project may include calls to APIs (“AP
7
7
  [[annotations]]
8
8
  path = "**"
9
9
  precedence = "aggregate"
10
- SPDX-FileCopyrightText = "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors"
10
+ SPDX-FileCopyrightText = "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors"
11
11
  SPDX-License-Identifier = "Apache-2.0"
12
12
 
13
13
  #
@@ -102,7 +102,7 @@ SPDX-FileComment = "these files belong to: jQuery UI"
102
102
  path = "src/sap.ui.commons/src/sap/ui/commons/Carousel.js"
103
103
  precedence = "aggregate"
104
104
  SPDX-FileCopyrightText = [
105
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
105
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
106
106
  "Spencer Tipping"
107
107
  ]
108
108
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -122,7 +122,7 @@ SPDX-FileComment = "these files belong to: jQuery 3"
122
122
  path = "src/sap.ui.core/src/sap/base/util/isPlainObject.js"
123
123
  precedence = "aggregate"
124
124
  SPDX-FileCopyrightText = [
125
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
125
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
126
126
  "OpenJS Foundation and other contributors"
127
127
  ]
128
128
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -132,7 +132,7 @@ SPDX-FileComment = "these files contain content from SAP and jQuery 3: isPlainOb
132
132
  path = "src/sap.ui.core/src/sap/base/util/_merge.js"
133
133
  precedence = "aggregate"
134
134
  SPDX-FileCopyrightText = [
135
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
135
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
136
136
  "OpenJS Foundation and other contributors"
137
137
  ]
138
138
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -142,7 +142,7 @@ SPDX-FileComment = "these files contain content from SAP and jQuery 3: _merge.js
142
142
  path = "src/sap.ui.core/src/jquery.sap.script.js"
143
143
  precedence = "aggregate"
144
144
  SPDX-FileCopyrightText = [
145
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
145
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
146
146
  "OpenJS Foundation and other contributors"
147
147
  ]
148
148
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -152,7 +152,7 @@ SPDX-FileComment = "these files contain content from SAP and jQuery 3: jquery.sa
152
152
  path = "src/sap.ui.core/src/sap/ui/Device.js"
153
153
  precedence = "aggregate"
154
154
  SPDX-FileCopyrightText = [
155
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
155
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
156
156
  "2011, John Resig"
157
157
  ]
158
158
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -162,7 +162,7 @@ SPDX-FileComment = "these files contain content from SAP and jQuery 1: Device.js
162
162
  path = "src/sap.ui.core/src/sap/ui/dom/jquery/Selectors.js"
163
163
  precedence = "aggregate"
164
164
  SPDX-FileCopyrightText = [
165
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
165
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
166
166
  "2014 jQuery Foundation and other contributors"
167
167
  ]
168
168
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -179,7 +179,7 @@ SPDX-FileComment = "these files belong to: jQuery UI 1.10"
179
179
  path = "src/sap.ui.core/src/jquery.sap.dom.js"
180
180
  precedence = "aggregate"
181
181
  SPDX-FileCopyrightText = [
182
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
182
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
183
183
  "2014 jQuery Foundation and other contributors"
184
184
  ]
185
185
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -189,7 +189,7 @@ SPDX-FileComment = "these files contain content from SAP and jQuery UI 1.10: jqu
189
189
  path = "src/sap.ui.core/src/sap/ui/dom/jquery/zIndex.js"
190
190
  precedence = "aggregate"
191
191
  SPDX-FileCopyrightText = [
192
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
192
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
193
193
  "2014 jQuery Foundation and other contributors"
194
194
  ]
195
195
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -243,7 +243,7 @@ SPDX-FileComment = "these files belong to: jQuery Mobile"
243
243
  path = "src/sap.ui.core/src/sap/ui/util/_FeatureDetection.js"
244
244
  precedence = "aggregate"
245
245
  SPDX-FileCopyrightText = [
246
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
246
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
247
247
  "2012 Wei-Ko Kao"
248
248
  ]
249
249
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -270,7 +270,7 @@ SPDX-FileComment = "these files belong to: JUnit Reporter for QUnit"
270
270
  path = "src/sap.ui.core/src/sap/ui/qunit/qunit-junit.js"
271
271
  precedence = "aggregate"
272
272
  SPDX-FileCopyrightText = [
273
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
273
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
274
274
  "jQuery Foundation and other contributors"
275
275
  ]
276
276
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -421,7 +421,7 @@ SPDX-FileComment = "these files belong to: blanket.js"
421
421
  path = "src/sap.ui.core/src/sap/base/util/JSTokenizer.js"
422
422
  precedence = "aggregate"
423
423
  SPDX-FileCopyrightText = [
424
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
424
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
425
425
  "Douglas Crockford"
426
426
  ]
427
427
  SPDX-License-Identifier = "Apache-2.0 and LicenseRef-JSONinJSPublicDomain"
@@ -431,7 +431,7 @@ SPDX-FileComment = "these files contain content from SAP and JSON in JS: JSToken
431
431
  path = "src/sap.ui.core/src/sap/ui/base/ExpressionParser.js"
432
432
  precedence = "aggregate"
433
433
  SPDX-FileCopyrightText = [
434
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
434
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
435
435
  "2010 Douglas Crockford"
436
436
  ]
437
437
  SPDX-License-Identifier = "Apache-2.0"
@@ -479,7 +479,7 @@ SPDX-FileComment = "these files contain content from p-cancelable and @babel/hel
479
479
  path = "src/sap.ui.core/src/sap/ui/core/date/Persian.js"
480
480
  precedence = "aggregate"
481
481
  SPDX-FileCopyrightText = [
482
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
482
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
483
483
  "Behrang Norouzinia"
484
484
  ]
485
485
  SPDX-License-Identifier = "Apache-2.0 and MIT"
@@ -496,7 +496,7 @@ SPDX-FileComment = "these files belong to: vkBeautify"
496
496
  path = "src/sap.ui.core/src/sap/ui/core/cache/LRUPersistentCache.js"
497
497
  precedence = "aggregate"
498
498
  SPDX-FileCopyrightText = [
499
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
499
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
500
500
  "Isaac Z. Schlueter and Contributors"
501
501
  ]
502
502
  SPDX-License-Identifier = "Apache-2.0 and ISC"
@@ -589,6 +589,30 @@ SPDX-License-Identifier = "MIT"
589
589
  SPDX-FileComment = "these files belong to: @cfworker/json-schema"
590
590
 
591
591
 
592
+ # Library: sap.ui.mdc:
593
+
594
+ [[annotations]]
595
+ path = "src/sap.ui.mdc/test/sap/ui/mdc/demokit/sample/Chart/ChartJS/control/ChartJS.js"
596
+ precedence = "aggregate"
597
+ SPDX-FileCopyrightText = "2025 Chart.js Contributors"
598
+ SPDX-License-Identifier = "MIT"
599
+ SPDX-FileComment = "these files belong to: Chart.js"
600
+
601
+ [[annotations]]
602
+ path = "src/sap.ui.mdc/test/sap/ui/mdc/demokit/sample/Chart/ChartJS/control/chartjs-plugin-zoom.js"
603
+ precedence = "aggregate"
604
+ SPDX-FileCopyrightText = "2016-2021 chartjs-plugin-zoom Contributors"
605
+ SPDX-License-Identifier = "MIT"
606
+ SPDX-FileComment = "these files belong to: chartjs-plugin-zoom"
607
+
608
+ [[annotations]]
609
+ path = "src/sap.ui.mdc/test/sap/ui/mdc/demokit/sample/Chart/ChartJS/control/hammerjs.js"
610
+ precedence = "aggregate"
611
+ SPDX-FileCopyrightText = "2011-2017 by Jorik Tangelder (Eight Media)"
612
+ SPDX-License-Identifier = "MIT"
613
+ SPDX-FileComment = "these files belong to: hammer.js"
614
+
615
+
592
616
  # Library: sap.ui.webc.common:
593
617
 
594
618
  [[annotations]]
@@ -646,7 +670,7 @@ SPDX-FileComment = "these files belong to: UI5 Web Components"
646
670
  path = "lib/jsdoc/ui5/plugin.js"
647
671
  precedence = "aggregate"
648
672
  SPDX-FileCopyrightText = [
649
- "2025 SAP SE or an SAP affiliate company and OpenUI5 contributors",
673
+ "2026 SAP SE or an SAP affiliate company and OpenUI5 contributors",
650
674
  "2011-present Michael Mathews micmath@gmail.com and the contributors to JSDoc"
651
675
  ]
652
676
  SPDX-License-Identifier = "Apache-2.0"
package/THIRDPARTY.txt CHANGED
@@ -6,31 +6,31 @@ The full text of all referenced licenses is appended at the end of this file.
6
6
 
7
7
  Library: sap.f:
8
8
 
9
- Component: UI5 Web Components, version: 2.15.0
9
+ Component: UI5 Web Components, version: 2.19.2
10
10
  Copyright: SAP
11
11
  License: Apache-2.0
12
12
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
13
13
  Contained in: src/sap.f/src/sap/f/thirdparty/**
14
14
 
15
- Component: UI5 Web Components Fiori, version: 2.15.0
15
+ Component: UI5 Web Components Fiori, version: 2.19.2
16
16
  Copyright: SAP
17
17
  License: Apache-2.0
18
18
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
19
19
  Contained in: src/sap.f/src/sap/f/thirdparty/**
20
20
 
21
- Component: UI5 Web Components Icons, version: 2.15.0
21
+ Component: UI5 Web Components Icons, version: 2.19.2
22
22
  Copyright: SAP
23
23
  License: Apache-2.0
24
24
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
25
25
  Contained in: src/sap.f/src/sap/f/thirdparty/**
26
26
 
27
- Component: UI5 Web Components Icons Business Suite, version: 2.15.0
27
+ Component: UI5 Web Components Icons Business Suite, version: 2.19.2
28
28
  Copyright: SAP
29
29
  License: Apache-2.0
30
30
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
31
31
  Contained in: src/sap.f/src/sap/f/thirdparty/**
32
32
 
33
- Component: UI5 Web Components Icons TNT, version: 2.15.0
33
+ Component: UI5 Web Components Icons TNT, version: 2.19.2
34
34
  Copyright: SAP
35
35
  License: Apache-2.0
36
36
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
@@ -309,7 +309,7 @@ License: MIT
309
309
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
310
310
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/bignumber.js
311
311
 
312
- Component: lodash, version: 4.17.21
312
+ Component: lodash, version: 4.17.23
313
313
  Copyright: OpenJS Foundation and other contributors
314
314
  License: MIT
315
315
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
@@ -425,6 +425,27 @@ License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
425
425
  Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/CfWorkerJsonSchemaValidator.js
426
426
 
427
427
 
428
+ Library: sap.ui.mdc:
429
+
430
+ Component: Chart.js, version: 4.5.0
431
+ Copyright: 2025 Chart.js Contributors
432
+ License: MIT
433
+ License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
434
+ Contained in: src/sap.ui.mdc/test/sap/ui/mdc/demokit/sample/Chart/ChartJS/control/ChartJS.js
435
+
436
+ Component: chartjs-plugin-zoom, version: 1.0.1
437
+ Copyright: 2016-2021 chartjs-plugin-zoom Contributors
438
+ License: MIT
439
+ License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
440
+ Contained in: src/sap.ui.mdc/test/sap/ui/mdc/demokit/sample/Chart/ChartJS/control/chartjs-plugin-zoom.js
441
+
442
+ Component: hammer.js, version: 2.0.7
443
+ Copyright: 2011-2017 by Jorik Tangelder (Eight Media)
444
+ License: MIT
445
+ License Text: https://github.com/UI5/openui5/blob/master/LICENSES/MIT.txt
446
+ Contained in: src/sap.ui.mdc/test/sap/ui/mdc/demokit/sample/Chart/ChartJS/control/hammerjs.js
447
+
448
+
428
449
  Library: sap.ui.webc.common:
429
450
 
430
451
  Component: UI5 Web Components, version: 1.18.0
@@ -477,7 +498,7 @@ License: Apache-2.0
477
498
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
478
499
  Contained in: lib/jsdoc/ui5/plugin.js
479
500
 
480
- Component: SAP Theming Base Content, version: 11.32.2-20250827135846+79bb30d311678435d61b21db26ecbe07d6b05079
501
+ Component: SAP Theming Base Content, version: 11.34.0
481
502
  Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
482
503
  License: Apache-2.0
483
504
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.integration",
3
- "version": "1.144.0",
3
+ "version": "1.146.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.integration",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,10 +14,10 @@
14
14
  "url": "https://github.com/UI5/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.f": "1.144.0",
18
- "@openui5/sap.m": "1.144.0",
19
- "@openui5/sap.ui.core": "1.144.0",
20
- "@openui5/sap.ui.layout": "1.144.0",
21
- "@openui5/sap.ui.unified": "1.144.0"
17
+ "@openui5/sap.f": "1.146.0",
18
+ "@openui5/sap.m": "1.146.0",
19
+ "@openui5/sap.ui.core": "1.146.0",
20
+ "@openui5/sap.ui.layout": "1.146.0",
21
+ "@openui5/sap.ui.unified": "1.146.0"
22
22
  }
23
23
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2026 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.144.0</version>
9
+ <version>1.146.0</version>
10
10
 
11
11
  <documentation>SAPUI5 library with integration-related controls.</documentation>
12
12
 
@@ -28,12 +28,11 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Element
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.144.0
31
+ * @version 1.146.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
35
- * @experimental Since 1.85. Disclaimer: this class is in a beta state - incompatible API changes may be done before its official public release. Use at your own discretion.
36
- * @since 1.85
35
+ * @ui5-experimental-since 1.85
37
36
  * @alias sap.ui.integration.ActionDefinition
38
37
  */
39
38
  var ActionDefinition = Element.extend("sap.ui.integration.ActionDefinition", {
@@ -20,11 +20,10 @@ sap.ui.define([
20
20
  * @extends sap.ui.base.ManagedObject
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.144.0
23
+ * @version 1.146.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @experimental Since 1.75
28
27
  * @since 1.75
29
28
  * @alias sap.ui.integration.Designtime
30
29
  */
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @extends sap.ui.base.ManagedObject
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.144.0
29
+ * @version 1.146.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -39,8 +39,6 @@ sap.ui.define([
39
39
  properties: {
40
40
  /**
41
41
  * The actions configuration.
42
- * @experimental since 1.75
43
- * Disclaimer: this property is in a beta state - incompatible API changes may be done before its official public release. Use at your own discretion.
44
42
  * @deprecated Since version 1.85
45
43
  * This property is replaced by the <code>actions</code> aggregation of the card;
46
44
  */
@@ -51,7 +49,7 @@ sap.ui.define([
51
49
 
52
50
  /**
53
51
  * The formatters that can be used in the manifest.
54
- * @experimental since 1.79
52
+ * @ui5-experimental-since 1.79
55
53
  */
56
54
  formatters: {
57
55
  type: "object"
@@ -65,8 +63,7 @@ sap.ui.define([
65
63
  * When an action is triggered in the card it can be handled on several places by "action" event handlers. In consecutive order those places are: <code>Extension</code>, <code>Card</code>, <code>Host</code>.
66
64
  * Each of them can prevent the next one to handle the action by calling <code>oEvent.preventDefault()</code>.
67
65
  *
68
- * @experimental since 1.75
69
- * Disclaimer: this event is in a beta state - incompatible API changes may be done before its official public release. Use at your own discretion.
66
+ * @ui5-experimental-since 1.75
70
67
  */
71
68
  action: {
72
69
 
@@ -192,7 +189,7 @@ sap.ui.define([
192
189
  * Override this method to lazy load dependencies for the extension.
193
190
  *
194
191
  * @public
195
- * @experimental Since 1.108
192
+ * @ui5-experimental-since 1.108
196
193
  * @returns {Promise} Returns a promise. The card will wait for this promise to be resolved before continuing with the initialization.
197
194
  */
198
195
  Extension.prototype.loadDependencies = function () {
@@ -213,7 +210,7 @@ sap.ui.define([
213
210
  * Use this method to override the default behavior when fetching network resources.
214
211
  * Mimics the browser native Fetch API.
215
212
  * @public
216
- * @experimental Since 1.113. The API might change.
213
+ * @ui5-experimental-since 1.113
217
214
  * @param {string} sResource This defines the resource that you wish to fetch.
218
215
  * @param {object} mOptions An object containing any custom settings that you want to apply to the request.
219
216
  * @param {object} mRequestSettings The map of request settings defined in the card manifest. Use this only for reading, they can not be modified.
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.ui.core.Element
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.144.0
33
+ * @version 1.146.0
34
34
  *
35
35
  * @constructor
36
36
  * @public
@@ -43,8 +43,7 @@ sap.ui.define([
43
43
  properties: {
44
44
  /**
45
45
  * The actions configuration.
46
- * @experimental since 1.75
47
- * Disclaimer: this property is in a beta state - incompatible API changes may be done before its official public release. Use at your own discretion.
46
+ * @ui5-experimental-since 1.75
48
47
  */
49
48
  actions: {
50
49
  type: "sap.ui.integration.CardMenuAction[]"
@@ -85,8 +84,7 @@ sap.ui.define([
85
84
  * When an action is triggered in the card it can be handled on several places by "action" event handlers. In consecutive order those places are: <code>Extension</code>, <code>Card</code>, <code>Host</code>.
86
85
  * Each of them can prevent the next one to handle the action by calling <code>oEvent.preventDefault()</code>.
87
86
  *
88
- * @experimental since 1.75
89
- * Disclaimer: this event is in a beta state - incompatible API changes may be done before its official public release. Use at your own discretion.
87
+ * @ui5-experimental-since 1.75
90
88
  */
91
89
  action: {
92
90
 
@@ -141,7 +139,7 @@ sap.ui.define([
141
139
  /**
142
140
  * Fired when some card configuration settings are changed as a result of user interaction.
143
141
  * For example - filter value is changed.
144
- * @experimental since 1.96
142
+ * @ui5-experimental-since 1.96
145
143
  */
146
144
  cardConfigurationChange: {
147
145
  parameters: {
@@ -169,7 +167,7 @@ sap.ui.define([
169
167
  /**
170
168
  * Fired when the state of a card is changed.
171
169
  * For example - the card is ready, new page is selected inside the card, a filter is changed or data is refreshed.
172
- * @experimental since 1.107
170
+ * @ui5-experimental-since 1.107
173
171
  */
174
172
  cardStateChanged: {
175
173
  parameters: {
@@ -183,7 +181,7 @@ sap.ui.define([
183
181
  /**
184
182
  * Fired when the card is initially ready for the first time.
185
183
  * Will not be fired for consecutive refreshes or data changes.
186
- * @experimental since 1.116
184
+ * @ui5-experimental-since 1.116
187
185
  */
188
186
  cardInitialized: {
189
187
  parameters: {
@@ -196,7 +194,7 @@ sap.ui.define([
196
194
 
197
195
  /**
198
196
  * Fired when a message from channels like navigator.serviceWorker is received.
199
- * @experimental since 1.91
197
+ * @ui5-experimental-since 1.91
200
198
  */
201
199
  message: {
202
200
  parameters: {
@@ -284,10 +282,9 @@ sap.ui.define([
284
282
  * Applications must not call this method directly, it is called by the framework.
285
283
  *
286
284
  * @param {{data: object}} csrfTokenConfig The CSRF token configuration.
287
- * @experimental since 1.97
288
285
  * @returns {Promise<string>} A promise which resolves the CSRF token to its value.
289
286
  * @abstract
290
- * @protected
287
+ * @private
291
288
  * @deprecated As of version 1.120.0, the concept has been discarded.
292
289
  */
293
290
  Host.prototype.getCsrfToken = function (csrfTokenConfig) {
@@ -299,7 +296,6 @@ sap.ui.define([
299
296
  *
300
297
  * @param {{data: object}} mCSRFTokenConfig The CSRF token configuration.
301
298
  * @param {Promise<string>} pCSRFTokenValuePromise A promise which resolves the CSRF token to its value.
302
- * @experimental since 1.97
303
299
  * @abstract
304
300
  * @public
305
301
  * @deprecated As of version 1.120.0, the concept has been discarded.
@@ -312,7 +308,6 @@ sap.ui.define([
312
308
  * This function is called when a CSRF token has expired.
313
309
  *
314
310
  * @param {{data: object}} mCSRFTokenConfig The CSRF token configuration.
315
- * @experimental since 1.97
316
311
  * @abstract
317
312
  * @public
318
313
  * @deprecated As of version 1.120.0, the concept has been discarded.
@@ -349,8 +344,7 @@ sap.ui.define([
349
344
  *
350
345
  * @param {string} sPath The path to a context
351
346
  * @returns {Promise<null>} A promise which resolves with the value of this context.
352
- * @since 1.83
353
- * @experimental since 1.143
347
+ * @ui5-experimental-since 1.143
354
348
  * @abstract
355
349
  * @public
356
350
  */
@@ -396,8 +390,7 @@ sap.ui.define([
396
390
  * The context information and texts should be translated as they appear in the design-time UI of the Card Editor.
397
391
  *
398
392
  * @returns {Promise<object>} A promise which contains the context structure.
399
- * @since 1.83
400
- * @experimental since 1.143
393
+ * @ui5-experimental-since 1.143
401
394
  * @abstract
402
395
  * @public
403
396
  */
@@ -409,7 +402,7 @@ sap.ui.define([
409
402
  * Call this method if you want to use the experimental caching for all cards.
410
403
  * @private
411
404
  * @ui5-restricted
412
- * @experimental Since 1.91. The API might change.
405
+ * @since 1.91
413
406
  */
414
407
  Host.prototype.useExperimentalCaching = function () {
415
408
  this.bUseExperimentalCaching = true;
@@ -420,7 +413,7 @@ sap.ui.define([
420
413
  * Stops the usage of the experimental caching for all cards.
421
414
  * @private
422
415
  * @ui5-restricted
423
- * @experimental Since 1.91. The API might change.
416
+ * @since 1.91
424
417
  */
425
418
  Host.prototype.stopUsingExperimentalCaching = function () {
426
419
  this.bUseExperimentalCaching = false;
@@ -465,7 +458,7 @@ sap.ui.define([
465
458
  * Mimics the browser native Fetch API.
466
459
  * @private
467
460
  * @ui5-restricted
468
- * @experimental Since 1.113. The API might change.
461
+ * @since 1.113
469
462
  * @param {string} sResource This defines the resource that you wish to fetch.
470
463
  * @param {object} mOptions An object containing any custom settings that you want to apply to the request.
471
464
  * @param {object} mRequestSettings The map of request settings defined in the card manifest. Use this only for reading, they can not be modified.
@@ -488,7 +481,7 @@ sap.ui.define([
488
481
  * Override this method to change the source for the analytics cloud widget script.
489
482
  * @private
490
483
  * @ui5-restricted
491
- * @experimental Since 1.125. The API might change.
484
+ * @since 1.125
492
485
  */
493
486
  Host.prototype.getAnalyticsCloudWidgetSrc = function () { };
494
487
 
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.integration.cards.BaseContent
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.144.0
38
+ * @version 1.146.0
39
39
  *
40
40
  * @constructor
41
41
  * @private
@@ -94,7 +94,7 @@ sap.ui.define([
94
94
  * @extends sap.ui.integration.cards.BaseContent
95
95
  *
96
96
  * @author SAP SE
97
- * @version 1.144.0
97
+ * @version 1.146.0
98
98
  *
99
99
  * @constructor
100
100
  * @private
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * @extends sap.ui.integration.cards.BaseContent
44
44
  *
45
45
  * @author SAP SE
46
- * @version 1.144.0
46
+ * @version 1.146.0
47
47
  *
48
48
  * @constructor
49
49
  * @private
@@ -76,7 +76,7 @@ sap.ui.define([
76
76
  * @extends sap.ui.core.Control
77
77
  *
78
78
  * @author SAP SE
79
- * @version 1.144.0
79
+ * @version 1.146.0
80
80
  *
81
81
  * @constructor
82
82
  * @private
@@ -89,7 +89,6 @@ sap.ui.define([
89
89
  properties: {
90
90
  /**
91
91
  * Defines the design of the content.
92
- * @experimental Since 1.109
93
92
  * @since 1.109
94
93
  */
95
94
  design: {
@@ -521,10 +520,12 @@ sap.ui.define([
521
520
  this.destroyAggregation("_blockingMessage");
522
521
  this.setAggregation("_blockingMessage", BlockingMessage.create(mSettings, this.getCardInstance()));
523
522
  this._forceCompleteAwaitedEvents();
523
+ this.addStyleClass("sapUiIntCardContentWithBlockingMessage");
524
524
  };
525
525
 
526
526
  BaseContent.prototype.hideBlockingMessage = function () {
527
527
  this.destroyAggregation("_blockingMessage");
528
+ this.removeStyleClass("sapUiIntCardContentWithBlockingMessage");
528
529
  };
529
530
 
530
531
  BaseContent.prototype.getBlockingMessage = function () {
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.integration.cards.BaseContent
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.144.0
38
+ * @version 1.146.0
39
39
  *
40
40
  * @constructor
41
41
  * @private
@@ -79,7 +79,7 @@ sap.ui.define([
79
79
  * @extends sap.ui.integration.cards.BaseContent
80
80
  *
81
81
  * @author SAP SE
82
- * @version 1.144.0
82
+ * @version 1.146.0
83
83
  *
84
84
  * @constructor
85
85
  * @private
@@ -39,9 +39,8 @@ sap.ui.define([
39
39
  * @extends sap.ui.integration.cards.BaseContent
40
40
  *
41
41
  * @author SAP SE
42
- * @version 1.144.0
42
+ * @version 1.146.0
43
43
  *
44
- * @experimental
45
44
  * @constructor
46
45
  * @private
47
46
  * @alias sap.ui.integration.cards.ComponentContent
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * @extends sap.ui.core.Control
40
40
  *
41
41
  * @author SAP SE
42
- * @version 1.144.0
42
+ * @version 1.146.0
43
43
  *
44
44
  * @constructor
45
45
  * @ui5-restricted
@@ -48,7 +48,7 @@ sap.ui.define([
48
48
  * @extends sap.f.cards.Header
49
49
  *
50
50
  * @author SAP SE
51
- * @version 1.144.0
51
+ * @version 1.146.0
52
52
  *
53
53
  * @constructor
54
54
  * @private
@@ -69,7 +69,7 @@ sap.ui.define([
69
69
  * @extends sap.ui.integration.cards.BaseListContent
70
70
  *
71
71
  * @author SAP SE
72
- * @version 1.144.0
72
+ * @version 1.146.0
73
73
  *
74
74
  * @constructor
75
75
  * @private
@@ -50,7 +50,7 @@ sap.ui.define([
50
50
  * @extends sap.f.cards.NumericHeader
51
51
  *
52
52
  * @author SAP SE
53
- * @version 1.144.0
53
+ * @version 1.146.0
54
54
  *
55
55
  * @constructor
56
56
  * @private
@@ -135,7 +135,7 @@ sap.ui.define([
135
135
  *
136
136
  * @extends sap.ui.integration.cards.BaseContent
137
137
  * @author SAP SE
138
- * @version 1.144.0
138
+ * @version 1.146.0
139
139
  *
140
140
  * @constructor
141
141
  * @since 1.64