@openui5/sap.ui.integration 1.132.0 → 1.133.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 (162) hide show
  1. package/.reuse/dep5 +2 -2
  2. package/LICENSES/LicenseRef-Unicode-3.0.txt +39 -0
  3. package/THIRDPARTY.txt +54 -66
  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 +1 -1
  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 +137 -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 +1 -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 -27
  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 +1 -1
  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 +1 -1
  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 +2 -2
  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 +1 -1
  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/model/ContextModel.js +1 -1
  127. package/src/sap/ui/integration/model/ObservableModel.js +1 -1
  128. package/src/sap/ui/integration/schemas/sap-card.json +10 -3
  129. package/src/sap/ui/integration/themes/base/Card.less +5 -3
  130. package/src/sap/ui/integration/themes/base/Footer.less +21 -0
  131. package/src/sap/ui/integration/themes/base/ObjectContent.less +1 -1
  132. package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +1 -1
  133. package/src/sap/ui/integration/util/BaseFactory.js +1 -1
  134. package/src/sap/ui/integration/util/BindingHelper.js +1 -1
  135. package/src/sap/ui/integration/util/BindingResolver.js +1 -1
  136. package/src/sap/ui/integration/util/CardObserver.js +1 -1
  137. package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
  138. package/src/sap/ui/integration/util/ContentFactory.js +3 -2
  139. package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
  140. package/src/sap/ui/integration/util/DataProvider.js +1 -1
  141. package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
  142. package/src/sap/ui/integration/util/Destinations.js +1 -1
  143. package/src/sap/ui/integration/util/DisplayVariants.js +1 -1
  144. package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
  145. package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
  146. package/src/sap/ui/integration/util/Form.js +1 -1
  147. package/src/sap/ui/integration/util/HeaderFactory.js +1 -28
  148. package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
  149. package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
  150. package/src/sap/ui/integration/util/Manifest.js +1 -1
  151. package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
  152. package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
  153. package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
  154. package/src/sap/ui/integration/util/ServiceManager.js +1 -1
  155. package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
  156. package/src/sap/ui/integration/util/SorterHelper.js +1 -1
  157. package/src/sap/ui/integration/util/Utils.js +1 -1
  158. package/src/sap/ui/integration/util/Validators.js +1 -1
  159. package/src/sap/ui/integration/util/openCardDialog.js +10 -2
  160. package/src/sap/ui/integration/util/openCardShowMore.js +50 -0
  161. package/src/sap/ui/integration/widgets/Card.js +46 -24
  162. 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/*
@@ -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
@@ -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,7 +342,7 @@ 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
345
+ Component: Time Zone Database, version: 2024b
346
346
  Copyright: Arthur David Olson, Paul Eggert and other contributors
347
347
  License: LicenseRef-tzdata-PublicDomain
348
348
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/LicenseRef-tzdata-PublicDomain.txt
@@ -966,6 +966,55 @@ END of license: LicenseRef-JSONinJSPublicDomain
966
966
  =================================
967
967
 
968
968
 
969
+ =================================
970
+ BEGIN of license: LicenseRef-Unicode-3.0
971
+ =================================
972
+
973
+ UNICODE LICENSE V3
974
+
975
+ COPYRIGHT AND PERMISSION NOTICE
976
+
977
+ Copyright © 1991-2024 Unicode, Inc.
978
+
979
+ NOTICE TO USER: Carefully read the following legal agreement. BY
980
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
981
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
982
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
983
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
984
+
985
+ Permission is hereby granted, free of charge, to any person obtaining a
986
+ copy of data files and any associated documentation (the "Data Files") or
987
+ software and any associated documentation (the "Software") to deal in the
988
+ Data Files or Software without restriction, including without limitation
989
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
990
+ copies of the Data Files or Software, and to permit persons to whom the
991
+ Data Files or Software are furnished to do so, provided that either (a)
992
+ this copyright and permission notice appear with all copies of the Data
993
+ Files or Software, or (b) this copyright and permission notice appear in
994
+ associated Documentation.
995
+
996
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
997
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
998
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
999
+ THIRD PARTY RIGHTS.
1000
+
1001
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
1002
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
1003
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1004
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1005
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
1006
+ FILES OR SOFTWARE.
1007
+
1008
+ Except as contained in this notice, the name of a copyright holder shall
1009
+ not be used in advertising or otherwise to promote the sale, use or other
1010
+ dealings in these Data Files or Software without prior written
1011
+ authorization of the copyright holder.
1012
+
1013
+ =================================
1014
+ END of license: LicenseRef-Unicode-3.0
1015
+ =================================
1016
+
1017
+
969
1018
  =================================
970
1019
  BEGIN of license: LicenseRef-tzdata-PublicDomain
971
1020
  =================================
@@ -1009,64 +1058,3 @@ OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1009
1058
  END of license: MIT
1010
1059
  =================================
1011
1060
 
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.0",
3
+ "version": "1.133.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.0",
18
- "@openui5/sap.f": "1.132.0",
19
- "@openui5/sap.m": "1.132.0",
20
- "@openui5/sap.ui.unified": "1.132.0",
21
- "@openui5/sap.ui.layout": "1.132.0",
22
- "@openui5/sap.ui.table": "1.132.0"
17
+ "@openui5/sap.ui.core": "1.133.0",
18
+ "@openui5/sap.f": "1.133.0",
19
+ "@openui5/sap.m": "1.133.0",
20
+ "@openui5/sap.ui.unified": "1.133.0",
21
+ "@openui5/sap.ui.layout": "1.133.0",
22
+ "@openui5/sap.ui.table": "1.133.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.0</version>
9
+ <version>1.133.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.0
31
+ * @version 1.133.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.0
23
+ * @version 1.133.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.0
29
+ * @version 1.133.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.0
33
+ * @version 1.133.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.0
38
+ * @version 1.133.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.0
95
+ * @version 1.133.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.0
40
+ * @version 1.133.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.0
79
+ * @version 1.133.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.0
36
+ * @version 1.133.0
37
37
  *
38
38
  * @constructor
39
39
  * @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.132.0
82
+ * @version 1.133.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.0
40
+ * @version 1.133.0
41
41
  *
42
42
  * @experimental
43
43
  * @constructor