@openui5/sap.ui.integration 1.145.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 (180) hide show
  1. package/THIRDPARTY.txt +7 -7
  2. package/package.json +6 -6
  3. package/src/sap/ui/integration/.library +1 -1
  4. package/src/sap/ui/integration/ActionDefinition.js +2 -3
  5. package/src/sap/ui/integration/Designtime.js +1 -2
  6. package/src/sap/ui/integration/Extension.js +5 -8
  7. package/src/sap/ui/integration/Host.js +14 -21
  8. package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
  9. package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
  10. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
  11. package/src/sap/ui/integration/cards/BaseContent.js +3 -2
  12. package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
  13. package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
  14. package/src/sap/ui/integration/cards/ComponentContent.js +1 -2
  15. package/src/sap/ui/integration/cards/Footer.js +1 -1
  16. package/src/sap/ui/integration/cards/Header.js +1 -1
  17. package/src/sap/ui/integration/cards/ListContent.js +1 -1
  18. package/src/sap/ui/integration/cards/NumericHeader.js +1 -1
  19. package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
  20. package/src/sap/ui/integration/cards/TableContent.js +1 -1
  21. package/src/sap/ui/integration/cards/TimelineContent.js +2 -2
  22. package/src/sap/ui/integration/cards/WebPageContent.js +2 -3
  23. package/src/sap/ui/integration/cards/actions/CardActions.js +1 -1
  24. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
  25. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
  26. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
  27. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
  28. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
  29. package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
  30. package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +1 -1
  31. package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +5 -1
  32. package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
  33. package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +1 -1
  34. package/src/sap/ui/integration/cards/filters/SearchFilter.js +1 -1
  35. package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
  36. package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
  37. package/src/sap/ui/integration/controls/ActionsStrip.js +1 -1
  38. package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
  39. package/src/sap/ui/integration/controls/BlockingMessage.js +1 -1
  40. package/src/sap/ui/integration/controls/ComboBox.js +1 -1
  41. package/src/sap/ui/integration/controls/HeaderInfoSectionColumn.js +1 -1
  42. package/src/sap/ui/integration/controls/HeaderInfoSectionRow.js +1 -1
  43. package/src/sap/ui/integration/controls/ImageWithOverlay.js +1 -1
  44. package/src/sap/ui/integration/controls/ListContentItem.js +1 -1
  45. package/src/sap/ui/integration/controls/Microchart.js +1 -1
  46. package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
  47. package/src/sap/ui/integration/controls/ObjectStatus.js +1 -1
  48. package/src/sap/ui/integration/delegate/OverflowHandler.js +1 -1
  49. package/src/sap/ui/integration/delegate/Paginator.js +1 -1
  50. package/src/sap/ui/integration/delegate/PreventKeyboardScrolling.js +1 -1
  51. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +1 -2
  52. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +1 -2
  53. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -2
  54. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -2
  55. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -2
  56. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -3
  57. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -3
  58. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +18 -4
  59. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -3
  60. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -3
  61. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -2
  62. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -3
  63. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -3
  64. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -2
  65. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -3
  66. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +2 -3
  67. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -3
  68. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -3
  69. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +2 -3
  70. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -3
  71. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +2 -3
  72. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -3
  73. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -3
  74. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -3
  75. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -3
  76. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -2
  77. package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +0 -1
  78. package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +0 -1
  79. package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +0 -1
  80. package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +0 -1
  81. package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +0 -1
  82. package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +0 -1
  83. package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +0 -1
  84. package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +0 -1
  85. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -2
  86. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -2
  87. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -2
  88. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -2
  89. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -2
  90. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -2
  91. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -2
  92. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -2
  93. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -2
  94. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -2
  95. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -2
  96. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -2
  97. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -2
  98. package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +0 -1
  99. package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +0 -1
  100. package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +0 -1
  101. package/src/sap/ui/integration/designtime/cardEditor/config/FooterConfig.js +0 -1
  102. package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +0 -1
  103. package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +0 -1
  104. package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +0 -1
  105. package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +0 -1
  106. package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +0 -1
  107. package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +0 -1
  108. package/src/sap/ui/integration/designtime/cardEditor/config/generateFooterActionsStripConfig.js +0 -1
  109. package/src/sap/ui/integration/designtime/cardEditor/config/index.js +0 -1
  110. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +2 -3
  111. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -3
  112. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +2 -3
  113. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -3
  114. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -3
  115. package/src/sap/ui/integration/designtime/editor/Card.js +1 -3
  116. package/src/sap/ui/integration/designtime/editor/CardEditor.js +2 -3
  117. package/src/sap/ui/integration/designtime/editor/CardPreview.js +1 -2
  118. package/src/sap/ui/integration/editor/Editor.js +88 -34
  119. package/src/sap/ui/integration/editor/EditorResourceBundles.js +5 -30
  120. package/src/sap/ui/integration/editor/Extension.js +1 -1
  121. package/src/sap/ui/integration/editor/Manifest.js +1 -1
  122. package/src/sap/ui/integration/editor/Settings.js +1 -2
  123. package/src/sap/ui/integration/editor/fields/BaseField.js +1 -4
  124. package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -2
  125. package/src/sap/ui/integration/editor/fields/DateField.js +1 -2
  126. package/src/sap/ui/integration/editor/fields/DateTimeField.js +1 -2
  127. package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -2
  128. package/src/sap/ui/integration/editor/fields/GroupField.js +1 -2
  129. package/src/sap/ui/integration/editor/fields/IntegerField.js +1 -2
  130. package/src/sap/ui/integration/editor/fields/NumberField.js +1 -2
  131. package/src/sap/ui/integration/editor/fields/ObjectField.js +1 -4
  132. package/src/sap/ui/integration/editor/fields/ObjectListField.js +1 -2
  133. package/src/sap/ui/integration/editor/fields/StringField.js +1 -4
  134. package/src/sap/ui/integration/editor/fields/StringListField.js +1 -2
  135. package/src/sap/ui/integration/editor/fields/fragment/Controller.js +1 -2
  136. package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +1 -2
  137. package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -2
  138. package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -2
  139. package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -2
  140. package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -2
  141. package/src/sap/ui/integration/extensions/OAuth3LO.js +1 -1
  142. package/src/sap/ui/integration/library.js +17 -22
  143. package/src/sap/ui/integration/model/ContextModel.js +1 -1
  144. package/src/sap/ui/integration/model/ObservableModel.js +1 -1
  145. package/src/sap/ui/integration/schemas/sap-card.json +54 -4
  146. package/src/sap/ui/integration/services/Data.js +0 -1
  147. package/src/sap/ui/integration/services/Navigation.js +0 -1
  148. package/src/sap/ui/integration/services/Service.js +0 -1
  149. package/src/sap/ui/integration/themes/base/ObjectContent.less +8 -1
  150. package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +1 -1
  151. package/src/sap/ui/integration/util/BaseFactory.js +1 -1
  152. package/src/sap/ui/integration/util/BindingHelper.js +1 -1
  153. package/src/sap/ui/integration/util/BindingResolver.js +1 -1
  154. package/src/sap/ui/integration/util/CardObserver.js +1 -1
  155. package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
  156. package/src/sap/ui/integration/util/ContentFactory.js +1 -1
  157. package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
  158. package/src/sap/ui/integration/util/DataProvider.js +1 -1
  159. package/src/sap/ui/integration/util/DataProviderFactory.js +1 -2
  160. package/src/sap/ui/integration/util/Destinations.js +1 -1
  161. package/src/sap/ui/integration/util/DisplayVariants.js +1 -1
  162. package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
  163. package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
  164. package/src/sap/ui/integration/util/Form.js +1 -1
  165. package/src/sap/ui/integration/util/HeaderFactory.js +1 -1
  166. package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
  167. package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
  168. package/src/sap/ui/integration/util/Manifest.js +1 -1
  169. package/src/sap/ui/integration/util/ManifestResolver.js +0 -1
  170. package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
  171. package/src/sap/ui/integration/util/ObjectStatusFactory.js +1 -1
  172. package/src/sap/ui/integration/util/RadioButtonHelper.js +1 -1
  173. package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
  174. package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
  175. package/src/sap/ui/integration/util/ServiceManager.js +1 -1
  176. package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
  177. package/src/sap/ui/integration/util/SorterHelper.js +1 -1
  178. package/src/sap/ui/integration/util/Utils.js +1 -1
  179. package/src/sap/ui/integration/util/Validators.js +1 -1
  180. package/src/sap/ui/integration/widgets/Card.js +38 -48
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
@@ -498,7 +498,7 @@ License: Apache-2.0
498
498
  License Text: https://github.com/UI5/openui5/blob/master/LICENSES/Apache-2.0.txt
499
499
  Contained in: lib/jsdoc/ui5/plugin.js
500
500
 
501
- Component: SAP Theming Base Content, version: 11.32.2-20250827135846+79bb30d311678435d61b21db26ecbe07d6b05079
501
+ Component: SAP Theming Base Content, version: 11.34.0
502
502
  Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
503
503
  License: Apache-2.0
504
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.145.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.145.0",
18
- "@openui5/sap.m": "1.145.0",
19
- "@openui5/sap.ui.core": "1.145.0",
20
- "@openui5/sap.ui.layout": "1.145.0",
21
- "@openui5/sap.ui.unified": "1.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.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.145.0
138
+ * @version 1.146.0
139
139
  *
140
140
  * @constructor
141
141
  * @since 1.64
@@ -85,7 +85,7 @@ sap.ui.define([
85
85
  * @extends sap.ui.integration.cards.BaseListContent
86
86
  *
87
87
  * @author SAP SE
88
- * @version 1.145.0
88
+ * @version 1.146.0
89
89
  *
90
90
  * @constructor
91
91
  * @private
@@ -40,10 +40,10 @@ sap.ui.define([
40
40
  * @extends sap.ui.integration.cards.BaseListContent
41
41
  *
42
42
  * @author SAP SE
43
- * @version 1.145.0
43
+ * @version 1.146.0
44
44
  *
45
45
  * @constructor
46
- * @experimental
46
+ * @private
47
47
  * @since 1.61
48
48
  * @see {@link TODO Card}
49
49
  * @alias sap.ui.integration.cards.TimelineContent
@@ -36,10 +36,10 @@ sap.ui.define([
36
36
  * @extends sap.ui.integration.cards.BaseContent
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.145.0
39
+ * @version 1.146.0
40
40
  *
41
41
  * @constructor
42
- * @experimental
42
+ * @private
43
43
  * @since 1.90
44
44
  * @alias sap.ui.integration.cards.WebPageContent
45
45
  */
@@ -96,7 +96,6 @@ sap.ui.define([
96
96
  /**
97
97
  * If set to <code>true</code>, the <code>sandbox</code> attribute will not be added
98
98
  * Note: Omitting the <code>sandbox</code> attribute opens a security vulnerability and must be done with great caution and only if the content of the iframe page is fully trusted.
99
- * @experimental
100
99
  */
101
100
  omitSandbox: {
102
101
  type: "boolean",
@@ -63,7 +63,7 @@ sap.ui.define([
63
63
  * @extends sap.ui.base.ManagedObject
64
64
  *
65
65
  * @author SAP SE
66
- * @version 1.145.0
66
+ * @version 1.146.0
67
67
  *
68
68
  * @constructor
69
69
  * @private
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * <code>ui5-select</code>, or container with <code>ui5-radio-button</code>, or <code>ui5-checkbox</code> web components.
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.145.0
23
+ * @version 1.146.0
24
24
  *
25
25
  * @private
26
26
  * @since 1.74
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * <code>ui5-datepicker</code> web component.
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.145.0
22
+ * @version 1.146.0
23
23
  *
24
24
  * @private
25
25
  * @since 1.74
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * <code>ui5-step-input</code> web component.
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.145.0
22
+ * @version 1.146.0
23
23
  *
24
24
  * @private
25
25
  * @since 1.74
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * <code>ui5-input</code> or <code>ui5-textarea<code> UI5 web component.
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.145.0
22
+ * @version 1.146.0
23
23
  *
24
24
  * @private
25
25
  * @since 1.74
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * <code>ui5-checkbox</code> web component.
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.145.0
22
+ * @version 1.146.0
23
23
  *
24
24
  * @private
25
25
  * @since 1.74
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * @extends sap.ui.core.Control
44
44
  *
45
45
  * @author SAP SE
46
- * @version 1.145.0
46
+ * @version 1.146.0
47
47
  *
48
48
  * @constructor
49
49
  * @private
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.integration.cards.filters.BaseFilter
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.145.0
38
+ * @version 1.146.0
39
39
  *
40
40
  * @constructor
41
41
  * @private
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * @extends sap.ui.integration.cards.filters.BaseFilter
32
32
  *
33
33
  * @author SAP SE
34
- * @version 1.145.0
34
+ * @version 1.146.0
35
35
  *
36
36
  * @constructor
37
37
  * @private
@@ -90,6 +90,10 @@ sap.ui.define([
90
90
  DateRangeFilter.prototype.writeValueToConfiguration = function (oConfiguration) {
91
91
  const oValueForModel = this.getValueForModel();
92
92
 
93
+ if (!oValueForModel.value) {
94
+ return;
95
+ }
96
+
93
97
  oConfiguration.value.option = oValueForModel.value.option;
94
98
  oConfiguration.value.values = oValueForModel.value.values;
95
99
  };
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.core.Control
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.145.0
26
+ * @version 1.146.0
27
27
  *
28
28
  * @constructor
29
29
  * @private
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  * @extends sap.ui.base.Object
39
39
  *
40
40
  * @author SAP SE
41
- * @version 1.145.0
41
+ * @version 1.146.0
42
42
  *
43
43
  * @constructor
44
44
  * @private
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  * @extends sap.ui.integration.cards.filters.BaseFilter
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.145.0
28
+ * @version 1.146.0
29
29
  *
30
30
  * @constructor
31
31
  * @private
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * @extends sap.ui.integration.cards.filters.BaseFilter
32
32
  *
33
33
  * @author SAP SE
34
- * @version 1.145.0
34
+ * @version 1.146.0
35
35
  *
36
36
  * @constructor
37
37
  * @private
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.base.Object
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.145.0
25
+ * @version 1.146.0
26
26
  *
27
27
  * @constructor
28
28
  * @private