@openui5/sap.ui.integration 1.132.1 → 1.134.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 (219) hide show
  1. package/.reuse/dep5 +2 -9
  2. package/LICENSES/LicenseRef-Unicode-3.0.txt +39 -0
  3. package/THIRDPARTY.txt +45 -78
  4. package/package.json +7 -7
  5. package/src/sap/ui/integration/.library +1 -1
  6. package/src/sap/ui/integration/ActionDefinition.js +1 -1
  7. package/src/sap/ui/integration/Designtime.js +1 -1
  8. package/src/sap/ui/integration/Extension.js +1 -1
  9. package/src/sap/ui/integration/Host.js +1 -1
  10. package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
  11. package/src/sap/ui/integration/cards/AnalyticalContent.js +9 -2
  12. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +8 -1
  13. package/src/sap/ui/integration/cards/BaseContent.js +30 -2
  14. package/src/sap/ui/integration/cards/BaseContentRenderer.js +1 -1
  15. package/src/sap/ui/integration/cards/BaseListContent.js +10 -7
  16. package/src/sap/ui/integration/cards/CalendarContent.js +6 -6
  17. package/src/sap/ui/integration/cards/ComponentContent.js +1 -1
  18. package/src/sap/ui/integration/cards/Footer.js +151 -13
  19. package/src/sap/ui/integration/cards/Header.js +1 -1
  20. package/src/sap/ui/integration/cards/ListContent.js +1 -1
  21. package/src/sap/ui/integration/cards/NumericHeader.js +1 -1
  22. package/src/sap/ui/integration/cards/ObjectContent.js +19 -1
  23. package/src/sap/ui/integration/cards/TableContent.js +1 -1
  24. package/src/sap/ui/integration/cards/TimelineContent.js +1 -1
  25. package/src/sap/ui/integration/cards/WebPageContent.js +8 -1
  26. package/src/sap/ui/integration/cards/WebPageContentRenderer.js +3 -1
  27. package/src/sap/ui/integration/cards/actions/CardActions.js +1 -1
  28. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
  29. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
  30. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
  31. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
  32. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
  33. package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
  34. package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +1 -1
  35. package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +1 -1
  36. package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
  37. package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +1 -1
  38. package/src/sap/ui/integration/cards/filters/SearchFilter.js +1 -1
  39. package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
  40. package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
  41. package/src/sap/ui/integration/controls/ActionsStrip.js +22 -1
  42. package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
  43. package/src/sap/ui/integration/controls/BlockingMessage.js +1 -1
  44. package/src/sap/ui/integration/controls/ComboBox.js +1 -1
  45. package/src/sap/ui/integration/controls/ImageWithOverlay.js +1 -1
  46. package/src/sap/ui/integration/controls/ListContentItem.js +1 -1
  47. package/src/sap/ui/integration/controls/Microchart.js +1 -1
  48. package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
  49. package/src/sap/ui/integration/controls/ObjectStatus.js +1 -1
  50. package/src/sap/ui/integration/delegate/OverflowHandler.js +131 -0
  51. package/src/sap/ui/integration/delegate/Paginator.js +4 -26
  52. package/src/sap/ui/integration/delegate/PreventKeyboardScrolling.js +120 -0
  53. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +1 -1
  54. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +1 -1
  55. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -1
  56. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -1
  57. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -1
  58. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +1 -1
  59. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
  60. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +6 -6
  61. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
  62. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
  63. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
  64. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
  65. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
  66. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
  67. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
  68. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +5 -5
  69. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
  70. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
  71. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +1 -1
  72. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
  73. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +1 -1
  74. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
  75. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
  76. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
  77. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
  78. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
  79. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
  80. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
  81. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
  82. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
  83. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
  84. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
  85. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
  86. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
  87. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
  88. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
  89. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
  90. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
  91. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
  92. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
  93. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
  94. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +1 -1
  95. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
  96. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
  97. package/src/sap/ui/integration/designtime/editor/Card.js +1 -1
  98. package/src/sap/ui/integration/designtime/editor/CardEditor.js +21 -3
  99. package/src/sap/ui/integration/designtime/editor/CardPreview.js +1 -1
  100. package/src/sap/ui/integration/editor/Editor.js +9 -5
  101. package/src/sap/ui/integration/editor/EditorResourceBundles.js +1 -1
  102. package/src/sap/ui/integration/editor/Extension.js +1 -1
  103. package/src/sap/ui/integration/editor/Manifest.js +1 -1
  104. package/src/sap/ui/integration/editor/Settings.js +2 -2
  105. package/src/sap/ui/integration/editor/fields/BaseField.js +1 -1
  106. package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -1
  107. package/src/sap/ui/integration/editor/fields/DateField.js +1 -1
  108. package/src/sap/ui/integration/editor/fields/DateTimeField.js +1 -1
  109. package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -1
  110. package/src/sap/ui/integration/editor/fields/GroupField.js +1 -1
  111. package/src/sap/ui/integration/editor/fields/IntegerField.js +1 -1
  112. package/src/sap/ui/integration/editor/fields/NumberField.js +1 -1
  113. package/src/sap/ui/integration/editor/fields/ObjectField.js +1 -1
  114. package/src/sap/ui/integration/editor/fields/ObjectListField.js +1 -1
  115. package/src/sap/ui/integration/editor/fields/StringField.js +1 -1
  116. package/src/sap/ui/integration/editor/fields/StringListField.js +1 -1
  117. package/src/sap/ui/integration/editor/fields/fragment/Controller.js +1 -1
  118. package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +1 -1
  119. package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -1
  120. package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -1
  121. package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -1
  122. package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -1
  123. package/src/sap/ui/integration/extensions/OAuth3LO.js +1 -1
  124. package/src/sap/ui/integration/library-bootstrap.js +6 -8
  125. package/src/sap/ui/integration/library.js +34 -2
  126. package/src/sap/ui/integration/messagebundle.properties +5 -5
  127. package/src/sap/ui/integration/messagebundle_ar.properties +5 -5
  128. package/src/sap/ui/integration/messagebundle_bg.properties +5 -5
  129. package/src/sap/ui/integration/messagebundle_ca.properties +5 -5
  130. package/src/sap/ui/integration/messagebundle_cnr.properties +5 -5
  131. package/src/sap/ui/integration/messagebundle_cs.properties +5 -5
  132. package/src/sap/ui/integration/messagebundle_cy.properties +5 -5
  133. package/src/sap/ui/integration/messagebundle_da.properties +5 -5
  134. package/src/sap/ui/integration/messagebundle_de.properties +5 -5
  135. package/src/sap/ui/integration/messagebundle_el.properties +4 -4
  136. package/src/sap/ui/integration/messagebundle_en.properties +5 -5
  137. package/src/sap/ui/integration/messagebundle_en_GB.properties +5 -5
  138. package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +5 -5
  139. package/src/sap/ui/integration/messagebundle_es.properties +5 -5
  140. package/src/sap/ui/integration/messagebundle_es_MX.properties +5 -5
  141. package/src/sap/ui/integration/messagebundle_et.properties +5 -5
  142. package/src/sap/ui/integration/messagebundle_fi.properties +4 -4
  143. package/src/sap/ui/integration/messagebundle_fr.properties +4 -4
  144. package/src/sap/ui/integration/messagebundle_fr_CA.properties +3 -3
  145. package/src/sap/ui/integration/messagebundle_hi.properties +5 -5
  146. package/src/sap/ui/integration/messagebundle_hr.properties +3 -3
  147. package/src/sap/ui/integration/messagebundle_hu.properties +3 -3
  148. package/src/sap/ui/integration/messagebundle_id.properties +5 -5
  149. package/src/sap/ui/integration/messagebundle_it.properties +3 -3
  150. package/src/sap/ui/integration/messagebundle_iw.properties +5 -5
  151. package/src/sap/ui/integration/messagebundle_ja.properties +5 -5
  152. package/src/sap/ui/integration/messagebundle_kk.properties +6 -6
  153. package/src/sap/ui/integration/messagebundle_ko.properties +4 -4
  154. package/src/sap/ui/integration/messagebundle_lt.properties +5 -5
  155. package/src/sap/ui/integration/messagebundle_lv.properties +6 -6
  156. package/src/sap/ui/integration/messagebundle_mk.properties +6 -6
  157. package/src/sap/ui/integration/messagebundle_ms.properties +5 -5
  158. package/src/sap/ui/integration/messagebundle_nl.properties +5 -5
  159. package/src/sap/ui/integration/messagebundle_no.properties +5 -5
  160. package/src/sap/ui/integration/messagebundle_pl.properties +5 -5
  161. package/src/sap/ui/integration/messagebundle_pt.properties +5 -5
  162. package/src/sap/ui/integration/messagebundle_pt_PT.properties +5 -5
  163. package/src/sap/ui/integration/messagebundle_ro.properties +4 -4
  164. package/src/sap/ui/integration/messagebundle_ru.properties +5 -5
  165. package/src/sap/ui/integration/messagebundle_sh.properties +5 -5
  166. package/src/sap/ui/integration/messagebundle_sk.properties +4 -4
  167. package/src/sap/ui/integration/messagebundle_sl.properties +4 -4
  168. package/src/sap/ui/integration/messagebundle_sr.properties +5 -5
  169. package/src/sap/ui/integration/messagebundle_sv.properties +2 -2
  170. package/src/sap/ui/integration/messagebundle_th.properties +3 -3
  171. package/src/sap/ui/integration/messagebundle_tr.properties +3 -3
  172. package/src/sap/ui/integration/messagebundle_uk.properties +3 -3
  173. package/src/sap/ui/integration/messagebundle_vi.properties +5 -5
  174. package/src/sap/ui/integration/messagebundle_zh_CN.properties +3 -3
  175. package/src/sap/ui/integration/messagebundle_zh_TW.properties +5 -5
  176. package/src/sap/ui/integration/model/ContextModel.js +1 -1
  177. package/src/sap/ui/integration/model/ObservableModel.js +1 -1
  178. package/src/sap/ui/integration/schemas/sap-card.json +21 -3
  179. package/src/sap/ui/integration/themes/base/AdaptiveCard.less +15 -1
  180. package/src/sap/ui/integration/themes/base/Card.less +15 -7
  181. package/src/sap/ui/integration/themes/base/CardVariants.less +51 -11
  182. package/src/sap/ui/integration/themes/base/Footer.less +21 -0
  183. package/src/sap/ui/integration/themes/base/Microchart.less +0 -1
  184. package/src/sap/ui/integration/themes/base/ObjectContent.less +1 -1
  185. package/src/sap/ui/integration/themes/sap_hcb/base_CardVariants.less +4 -4
  186. package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +1 -1
  187. package/src/sap/ui/integration/util/BaseFactory.js +1 -1
  188. package/src/sap/ui/integration/util/BindingHelper.js +1 -1
  189. package/src/sap/ui/integration/util/BindingResolver.js +1 -1
  190. package/src/sap/ui/integration/util/CardObserver.js +1 -1
  191. package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
  192. package/src/sap/ui/integration/util/ContentFactory.js +3 -2
  193. package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
  194. package/src/sap/ui/integration/util/DataProvider.js +1 -1
  195. package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
  196. package/src/sap/ui/integration/util/DelayedLoadingProvider.js +50 -0
  197. package/src/sap/ui/integration/util/Destinations.js +1 -1
  198. package/src/sap/ui/integration/util/DisplayVariants.js +1 -1
  199. package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
  200. package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
  201. package/src/sap/ui/integration/util/Form.js +1 -1
  202. package/src/sap/ui/integration/util/HeaderFactory.js +1 -28
  203. package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
  204. package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
  205. package/src/sap/ui/integration/util/Manifest.js +1 -1
  206. package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
  207. package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
  208. package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
  209. package/src/sap/ui/integration/util/ServiceManager.js +1 -1
  210. package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
  211. package/src/sap/ui/integration/util/SorterHelper.js +1 -1
  212. package/src/sap/ui/integration/util/Utils.js +20 -2
  213. package/src/sap/ui/integration/util/Validators.js +1 -1
  214. package/src/sap/ui/integration/util/openCardDialog.js +10 -12
  215. package/src/sap/ui/integration/util/openCardShowMore.js +49 -0
  216. package/src/sap/ui/integration/widgets/Card.js +127 -27
  217. package/src/sap/ui/integration/widgets/CardRenderer.js +5 -0
  218. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +0 -5
  219. package/LICENSES/Unicode-DFS-2015.txt +0 -51
package/.reuse/dep5 CHANGED
@@ -235,8 +235,8 @@ License: Apache-2.0
235
235
  Comment: these files belong to: Google-Caja JS HTML Sanitizer
236
236
 
237
237
  Files: src/sap.ui.core/src/sap/ui/core/cldr/*
238
- Copyright: 1991-2023 Unicode, Inc.
239
- License: Unicode-DFS-2015
238
+ Copyright: 1991-2024 Unicode, Inc.
239
+ License: LicenseRef-Unicode-3.0
240
240
  Comment: these files belong to: Unicode Common Locale Data Repository
241
241
 
242
242
  Files: src/sap.ui.core/src/sap/ui/thirdparty/mobiscroll/*
@@ -364,13 +364,6 @@ Copyright:
364
364
  License: Apache-2.0 and ISC
365
365
  Comment: these files contain content from SAP and node-lru-cache: LRUPersistentCache.js is overall written by SAP, but portions ('Least Recently Used' logic) are taken from the node-lru-cache project (see https://github.com/isaacs/node-lru-cache/blob/v2.7.3/README.md) and modified.
366
366
 
367
- Files: src/sap.ui.core/test/sap/ui/core/qunit/i18n/helper/_timezones.js
368
- Copyright:
369
- 2009-2024 SAP SE or an SAP affiliate company and OpenUI5 contributors
370
- Arthur David Olson, Paul Eggert and other contributors
371
- License: Apache-2.0 and LicenseRef-tzdata-PublicDomain
372
- Comment: these files contain content from SAP and Time Zone Database: _timezones.js is overall written by SAP, but the list of IANA timezone IDs is taken from the Timezone Database
373
-
374
367
 
375
368
  # Library: sap.ui.documentation:
376
369
 
@@ -0,0 +1,39 @@
1
+ UNICODE LICENSE V3
2
+
3
+ COPYRIGHT AND PERMISSION NOTICE
4
+
5
+ Copyright © 1991-2024 Unicode, Inc.
6
+
7
+ NOTICE TO USER: Carefully read the following legal agreement. BY
8
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
9
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
10
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
11
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a
14
+ copy of data files and any associated documentation (the "Data Files") or
15
+ software and any associated documentation (the "Software") to deal in the
16
+ Data Files or Software without restriction, including without limitation
17
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
18
+ copies of the Data Files or Software, and to permit persons to whom the
19
+ Data Files or Software are furnished to do so, provided that either (a)
20
+ this copyright and permission notice appear with all copies of the Data
21
+ Files or Software, or (b) this copyright and permission notice appear in
22
+ associated Documentation.
23
+
24
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
25
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
27
+ THIRD PARTY RIGHTS.
28
+
29
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
30
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
31
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
32
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
33
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
34
+ FILES OR SOFTWARE.
35
+
36
+ Except as contained in this notice, the name of a copyright holder shall
37
+ not be used in advertising or otherwise to promote the sale, use or other
38
+ dealings in these Data Files or Software without prior written
39
+ authorization of the copyright holder.
package/THIRDPARTY.txt CHANGED
@@ -22,7 +22,7 @@ Contained in: src/sap.m/test/sap/m/qunit/_thirdparty/qunit-composite.css
22
22
 
23
23
  Library: sap.ui.codeeditor:
24
24
 
25
- Component: Ace (Ajax.org Cloud9 Editor), version: 1.31.1
25
+ Component: Ace (Ajax.org Cloud9 Editor), version: 1.36.5
26
26
  Copyright: 2010, Ajax.org B.V.
27
27
  License: BSD-3-Clause
28
28
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
@@ -187,10 +187,10 @@ License: Apache-2.0
187
187
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
188
188
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/caja-html-sanitizer.js
189
189
 
190
- Component: Unicode Common Locale Data Repository, version: 44
191
- Copyright: 1991-2023 Unicode, Inc.
192
- License: Unicode-DFS-2015
193
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Unicode-DFS-2015.txt
190
+ Component: Unicode Common Locale Data Repository, version: 46.1.0
191
+ Copyright: 1991-2024 Unicode, Inc.
192
+ License: LicenseRef-Unicode-3.0
193
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/LicenseRef-Unicode-3.0.txt
194
194
  Contained in: src/sap.ui.core/src/sap/ui/core/cldr/*
195
195
 
196
196
  Component: MobiScroll, version: 2.9.0
@@ -342,12 +342,6 @@ License: ISC
342
342
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/ISC.txt
343
343
  Contained in: src/sap.ui.core/src/sap/ui/core/cache/LRUPersistentCache.js
344
344
 
345
- Component: Time Zone Database, version: 2023d
346
- Copyright: Arthur David Olson, Paul Eggert and other contributors
347
- License: LicenseRef-tzdata-PublicDomain
348
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/LicenseRef-tzdata-PublicDomain.txt
349
- Contained in: src/sap.ui.core/test/sap/ui/core/qunit/i18n/helper/_timezones.js
350
-
351
345
 
352
346
  Library: sap.ui.documentation:
353
347
 
@@ -967,17 +961,51 @@ END of license: LicenseRef-JSONinJSPublicDomain
967
961
 
968
962
 
969
963
  =================================
970
- BEGIN of license: LicenseRef-tzdata-PublicDomain
964
+ BEGIN of license: LicenseRef-Unicode-3.0
971
965
  =================================
972
966
 
973
- Unless specified below, all files in the tz code and data (including
974
- this LICENSE file) are in the public domain.
967
+ UNICODE LICENSE V3
968
+
969
+ COPYRIGHT AND PERMISSION NOTICE
970
+
971
+ Copyright © 1991-2024 Unicode, Inc.
972
+
973
+ NOTICE TO USER: Carefully read the following legal agreement. BY
974
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
975
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
976
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
977
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
978
+
979
+ Permission is hereby granted, free of charge, to any person obtaining a
980
+ copy of data files and any associated documentation (the "Data Files") or
981
+ software and any associated documentation (the "Software") to deal in the
982
+ Data Files or Software without restriction, including without limitation
983
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
984
+ copies of the Data Files or Software, and to permit persons to whom the
985
+ Data Files or Software are furnished to do so, provided that either (a)
986
+ this copyright and permission notice appear with all copies of the Data
987
+ Files or Software, or (b) this copyright and permission notice appear in
988
+ associated Documentation.
989
+
990
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
991
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
992
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
993
+ THIRD PARTY RIGHTS.
994
+
995
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
996
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
997
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
998
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
999
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
1000
+ FILES OR SOFTWARE.
975
1001
 
976
- If the files date.c, newstrftime.3, and strftime.c are present, they
977
- contain material derived from BSD and use the BSD 3-clause license.
1002
+ Except as contained in this notice, the name of a copyright holder shall
1003
+ not be used in advertising or otherwise to promote the sale, use or other
1004
+ dealings in these Data Files or Software without prior written
1005
+ authorization of the copyright holder.
978
1006
 
979
1007
  =================================
980
- END of license: LicenseRef-tzdata-PublicDomain
1008
+ END of license: LicenseRef-Unicode-3.0
981
1009
  =================================
982
1010
 
983
1011
 
@@ -1009,64 +1037,3 @@ OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1009
1037
  END of license: MIT
1010
1038
  =================================
1011
1039
 
1012
-
1013
- =================================
1014
- BEGIN of license: Unicode-DFS-2015
1015
- =================================
1016
-
1017
- UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
1018
-
1019
- Unicode Data Files include all data files under the directories http://www.unicode.org/Public/,
1020
- http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode
1021
- Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/.
1022
- Software includes any source code published in the Unicode Standard or under
1023
- the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/,
1024
- and http://www.unicode.org/cldr/data/.
1025
-
1026
- NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING,
1027
- INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"),
1028
- AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND
1029
- BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE,
1030
- DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
1031
-
1032
- COPYRIGHT AND PERMISSION NOTICE
1033
-
1034
- Copyright © 1991-2015 Unicode, Inc. All rights reserved. Distributed under
1035
- the Terms of Use in http://www.unicode.org/copyright.html.
1036
-
1037
- Permission is hereby granted, free of charge, to any person obtaining a copy
1038
- of the Unicode data files and any associated documentation (the "Data Files")
1039
- or Unicode software and any associated documentation (the "Software") to deal
1040
- in the Data Files or Software without restriction, including without limitation
1041
- the rights to use, copy, modify, merge, publish, distribute, and/or sell copies
1042
- of the Data Files or Software, and to permit persons to whom the Data Files
1043
- or Software are furnished to do so, provided that
1044
-
1045
- (a) this copyright and permission notice appear with all copies of the Data
1046
- Files or Software,
1047
-
1048
- (b) this copyright and permission notice appear in associated documentation,
1049
- and
1050
-
1051
- (c) there is clear notice in each modified Data File or in the Software as
1052
- well as in the documentation associated with the Data File(s) or Software
1053
- that the data or software has been modified.
1054
-
1055
- THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
1056
- KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1057
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
1058
- IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
1059
- BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
1060
- OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
1061
- IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
1062
- OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.
1063
-
1064
- Except as contained in this notice, the name of a copyright holder shall not
1065
- be used in advertising or otherwise to promote the sale, use or other dealings
1066
- in these Data Files or Software without prior written authorization of the
1067
- copyright holder.
1068
-
1069
- =================================
1070
- END of license: Unicode-DFS-2015
1071
- =================================
1072
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.integration",
3
- "version": "1.132.1",
3
+ "version": "1.134.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,11 +14,11 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.ui.core": "1.132.1",
18
- "@openui5/sap.f": "1.132.1",
19
- "@openui5/sap.m": "1.132.1",
20
- "@openui5/sap.ui.unified": "1.132.1",
21
- "@openui5/sap.ui.layout": "1.132.1",
22
- "@openui5/sap.ui.table": "1.132.1"
17
+ "@openui5/sap.ui.core": "1.134.0",
18
+ "@openui5/sap.f": "1.134.0",
19
+ "@openui5/sap.m": "1.134.0",
20
+ "@openui5/sap.ui.unified": "1.134.0",
21
+ "@openui5/sap.ui.layout": "1.134.0",
22
+ "@openui5/sap.ui.table": "1.134.0"
23
23
  }
24
24
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.132.1</version>
9
+ <version>1.134.0</version>
10
10
 
11
11
  <documentation>SAPUI5 library with integration-related controls.</documentation>
12
12
 
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Element
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.132.1
31
+ * @version 1.134.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @extends sap.ui.base.ManagedObject
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.132.1
23
+ * @version 1.134.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @extends sap.ui.base.ManagedObject
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.132.1
29
+ * @version 1.134.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.ui.core.Element
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.132.1
33
+ * @version 1.134.0
34
34
  *
35
35
  * @constructor
36
36
  * @public
@@ -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.132.1
38
+ * @version 1.134.0
39
39
  *
40
40
  * @constructor
41
41
  * @private
@@ -92,7 +92,7 @@ sap.ui.define([
92
92
  * @extends sap.ui.integration.cards.BaseContent
93
93
  *
94
94
  * @author SAP SE
95
- * @version 1.132.1
95
+ * @version 1.134.0
96
96
  *
97
97
  * @constructor
98
98
  * @private
@@ -130,7 +130,7 @@ sap.ui.define([
130
130
  AnalyticalContent.prototype.createLoadingPlaceholder = function (oConfiguration) {
131
131
  return new AnalyticalPlaceholder({
132
132
  chartType: oConfiguration.chartType,
133
- minHeight: AnalyticalContentRenderer.getMinHeight(oConfiguration)
133
+ minHeight: this.getOverflowWithShowMore() ? 0 : AnalyticalContentRenderer.getMinHeight(oConfiguration)
134
134
  });
135
135
  };
136
136
 
@@ -225,6 +225,13 @@ sap.ui.define([
225
225
  }
226
226
  };
227
227
 
228
+ /**
229
+ * @override
230
+ */
231
+ AnalyticalContent.prototype._supportsOverflow = function () {
232
+ return false;
233
+ };
234
+
228
235
  AnalyticalContent.prototype._updateChart = function () {
229
236
  var oConfiguration = this.getParsedConfiguration();
230
237
  var oChart = this.getAggregation("_content");
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * @extends sap.ui.integration.cards.BaseContent
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.132.1
40
+ * @version 1.134.0
41
41
  *
42
42
  * @constructor
43
43
  * @private
@@ -110,6 +110,13 @@ sap.ui.define([
110
110
  this._renderWidget();
111
111
  };
112
112
 
113
+ /**
114
+ * @override
115
+ */
116
+ AnalyticsCloudContent.prototype._supportsOverflow = function () {
117
+ return false;
118
+ };
119
+
113
120
  /**
114
121
  * Creates Widgets' chart inside the card content.
115
122
  */
@@ -22,6 +22,7 @@ sap.ui.define([
22
22
  "sap/ui/integration/util/LoadingProvider",
23
23
  "sap/ui/integration/util/BindingHelper",
24
24
  "sap/ui/integration/util/BindingResolver",
25
+ "sap/ui/integration/delegate/OverflowHandler",
25
26
  "sap/base/util/merge",
26
27
  "sap/ui/integration/library",
27
28
  "sap/ui/core/message/MessageType"
@@ -43,6 +44,7 @@ sap.ui.define([
43
44
  LoadingProvider,
44
45
  BindingHelper,
45
46
  BindingResolver,
47
+ OverflowHandler,
46
48
  merge,
47
49
  library,
48
50
  MessageType
@@ -74,7 +76,7 @@ sap.ui.define([
74
76
  * @extends sap.ui.core.Control
75
77
  *
76
78
  * @author SAP SE
77
- * @version 1.132.1
79
+ * @version 1.134.0
78
80
  *
79
81
  * @constructor
80
82
  * @private
@@ -108,6 +110,14 @@ sap.ui.define([
108
110
  */
109
111
  noDataConfiguration: {
110
112
  type: "object"
113
+ },
114
+
115
+ /**
116
+ * Set this property if the height is insufficient and the card should show a footer with "Show More" button.
117
+ */
118
+ overflowWithShowMore: {
119
+ type: "boolean",
120
+ defaultValue: false
111
121
  }
112
122
  },
113
123
  aggregations: {
@@ -217,6 +227,11 @@ sap.ui.define([
217
227
  oLoadingPlaceholder.setHasContent((this._getTable().getColumns().length > 0));
218
228
  }
219
229
  }
230
+
231
+ if (!this._oOverflowHandler && this.getOverflowWithShowMore() && this._supportsOverflow()) {
232
+ this._oOverflowHandler = new OverflowHandler(this);
233
+ this._oOverflowHandler.attach();
234
+ }
220
235
  };
221
236
 
222
237
  /**
@@ -258,6 +273,11 @@ sap.ui.define([
258
273
  }
259
274
 
260
275
  this._sContentBindingPath = null;
276
+
277
+ if (this._oOverflowHandler) {
278
+ this._oOverflowHandler.destroy();
279
+ this._oOverflowHandler = null;
280
+ }
261
281
  };
262
282
 
263
283
  /**
@@ -333,6 +353,14 @@ sap.ui.define([
333
353
  }.bind(this));
334
354
  };
335
355
 
356
+ /**
357
+ * Whether the content supports overflowing and needs the OverflowHandler.
358
+ * @returns {boolean} True if the content can support overflow.
359
+ */
360
+ BaseContent.prototype._supportsOverflow = function () {
361
+ return true;
362
+ };
363
+
336
364
  BaseContent.prototype._forceCompleteAwaitedEvents = function () {
337
365
  this._oAwaitedEvents.forEach(function (sEvent) {
338
366
  this.fireEvent(sEvent);
@@ -920,7 +948,7 @@ sap.ui.define([
920
948
  return undefined;
921
949
  }
922
950
 
923
- return oCard.getId() + "-header-title-inner";
951
+ return oCard.getId() + "-header-title";
924
952
  };
925
953
 
926
954
  /**
@@ -51,7 +51,7 @@ sap.ui.define([
51
51
  oRm.class("sapFCardSectionClickable");
52
52
  }
53
53
 
54
- if (oCard && oCard.getHeight() === "auto") { // if there is no height specified the default value is "auto"
54
+ if (oCard && oCard.getHeight() === "auto" && !oCardContent.getOverflowWithShowMore()) { // if there is no height specified the default value is "auto"
55
55
  var sHeight = this.getMinHeight(oCardContent.getParsedConfiguration(), oCardContent, oCard);
56
56
  oRm.style("min-height", sHeight);
57
57
  }
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * @extends sap.ui.integration.cards.BaseContent
34
34
  *
35
35
  * @author SAP SE
36
- * @version 1.132.1
36
+ * @version 1.134.0
37
37
  *
38
38
  * @constructor
39
39
  * @private
@@ -54,7 +54,6 @@ sap.ui.define([
54
54
  BaseContent.prototype.init.apply(this, arguments);
55
55
  this._oAwaitingPromise = null;
56
56
  this._fMinHeight = 0;
57
- this._bIsFirstRendering = true;
58
57
  };
59
58
 
60
59
  /**
@@ -67,11 +66,9 @@ sap.ui.define([
67
66
  };
68
67
 
69
68
  BaseListContent.prototype.onAfterRendering = function () {
70
- if (!this._bIsFirstRendering) {
69
+ if (this.isReady() && this.getCardInstance()?.isReady()) {
71
70
  this._keepHeight();
72
71
  }
73
-
74
- this._bIsFirstRendering = false;
75
72
  };
76
73
 
77
74
  BaseListContent.prototype.onDataChanged = function () {
@@ -105,12 +102,18 @@ sap.ui.define([
105
102
  return;
106
103
  }
107
104
 
108
- var fCurrentHeight = this.getDomRef().getBoundingClientRect().height;
109
-
105
+ const fCurrentHeight = this.getDomRef().getBoundingClientRect().height;
110
106
  if (fCurrentHeight > this._fMinHeight) {
111
107
  this._fMinHeight = fCurrentHeight;
112
108
  }
113
109
 
110
+ // should not exceed the card content section height in cases where content is overflowing
111
+ const oContainer = this.getCardInstance()?.getDomRef("contentSection");
112
+ const fContainerHeight = oContainer?.getBoundingClientRect().height;
113
+ if (fContainerHeight && this._fMinHeight > fContainerHeight) {
114
+ this._fMinHeight = fContainerHeight;
115
+ }
116
+
114
117
  if (this._fMinHeight) {
115
118
  this.getDomRef().style.minHeight = this._fMinHeight + "px";
116
119
  }
@@ -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.132.1
82
+ * @version 1.134.0
83
83
  *
84
84
  * @constructor
85
85
  * @private
@@ -411,9 +411,9 @@ sap.ui.define([
411
411
  }.bind(this));
412
412
 
413
413
  oResolvedDate = BindingResolver.resolveValue(oBindingInfo, this);
414
- oResolvedDate.startDate = new Date(oResolvedDate.startDate).toISOString();
414
+ oResolvedDate.startDate = this.formatDate(oResolvedDate.startDate).toISOString();
415
415
  if (oResolvedDate.endDate) {
416
- oResolvedDate.endDate = new Date(oResolvedDate.endDate).toISOString();
416
+ oResolvedDate.endDate = this.formatDate(oResolvedDate.endDate).toISOString();
417
417
  }
418
418
 
419
419
  aResolvedSpecialDates.push(oResolvedDate);
@@ -445,9 +445,9 @@ sap.ui.define([
445
445
 
446
446
  singleAssembledItem[sKey] = BindingResolver.resolveValue(oBindingInfo, this);
447
447
  }.bind(this));
448
- singleAssembledItem.startDate = new Date(singleAssembledItem.startDate).toISOString();
448
+ singleAssembledItem.startDate = this.formatDate(singleAssembledItem.startDate).toISOString();
449
449
  if (singleAssembledItem.endDate) {
450
- singleAssembledItem.endDate = new Date(singleAssembledItem.endDate).toISOString();
450
+ singleAssembledItem.endDate = this.formatDate(singleAssembledItem.endDate).toISOString();
451
451
  }
452
452
  aResolvedItems.push(singleAssembledItem);
453
453
  if (aResolvedItems.length > oConfiguration.maxItems) {
@@ -465,7 +465,7 @@ sap.ui.define([
465
465
  /**
466
466
  * @override
467
467
  */
468
- CalendarContent.prototype.getStaticConfiguration = function () {
468
+ CalendarContent.prototype.getStaticConfiguration = function () {
469
469
  var oConfiguration = this.getParsedConfiguration(),
470
470
  aAppointments = this.getAppointments(),
471
471
  aSpecialDates = this._oCalendar.getSpecialDates(),
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * @extends sap.ui.integration.cards.BaseContent
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.132.1
40
+ * @version 1.134.0
41
41
  *
42
42
  * @experimental
43
43
  * @constructor