@ui5/manifest 2.4.0 → 2.5.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.
- package/CHANGELOG.md +12 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +25 -1
- package/types/manifest.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
5
5
|
<a name="Unreleased"></a>
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
<a name="v2.5.0"></a>
|
|
9
|
+
## [v2.5.0] - 2026-02-12 (UI5 1.145)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- sap.card: new property "inverted" in ContentType.Table.Column which shows an inverted object status
|
|
13
|
+
- sap.card: new property "preferIcon" for "actionsStripItem" which is used to determine if icon only button is shown when not in overflow
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- sap.card: fix type of "filters" properties inside "configuration"
|
|
17
|
+
|
|
8
18
|
<a name="v2.4.0"></a>
|
|
9
19
|
## [v2.4.0] - 2026-01-12 (UI5 1.144)
|
|
10
20
|
|
|
@@ -207,7 +217,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
207
217
|
<a name="v1.48.1"></a>
|
|
208
218
|
## v1.48.1 - 2022-11-10
|
|
209
219
|
|
|
210
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.
|
|
220
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.5.0...HEAD
|
|
221
|
+
[v2.5.0]: https://github.com/SAP/ui5-manifest/compare/v2.4.0...v2.5.0
|
|
211
222
|
[v2.4.0]: https://github.com/SAP/ui5-manifest/compare/v2.3.1...v2.4.0
|
|
212
223
|
[v2.3.1]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...v2.3.1
|
|
213
224
|
[v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -96,7 +96,8 @@
|
|
|
96
96
|
"2.2.0",
|
|
97
97
|
"2.3.0",
|
|
98
98
|
"2.3.1",
|
|
99
|
-
"2.4.0"
|
|
99
|
+
"2.4.0",
|
|
100
|
+
"2.5.0"
|
|
100
101
|
]
|
|
101
102
|
},
|
|
102
103
|
"start_url": {
|
|
@@ -1646,6 +1647,7 @@
|
|
|
1646
1647
|
},
|
|
1647
1648
|
"filters": {
|
|
1648
1649
|
"description": "Map of filters",
|
|
1650
|
+
"type": "object",
|
|
1649
1651
|
"additionalProperties": {
|
|
1650
1652
|
"oneOf": [
|
|
1651
1653
|
{
|
|
@@ -3499,6 +3501,17 @@
|
|
|
3499
3501
|
}
|
|
3500
3502
|
]
|
|
3501
3503
|
},
|
|
3504
|
+
"inverted": {
|
|
3505
|
+
"description": "Specifies whether the background color reflects the set \"state\" instead of the control's text",
|
|
3506
|
+
"oneOf": [
|
|
3507
|
+
{
|
|
3508
|
+
"type": "boolean"
|
|
3509
|
+
},
|
|
3510
|
+
{
|
|
3511
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3512
|
+
}
|
|
3513
|
+
]
|
|
3514
|
+
},
|
|
3502
3515
|
"identifier": {
|
|
3503
3516
|
"oneOf": [
|
|
3504
3517
|
{
|
|
@@ -5946,6 +5959,17 @@
|
|
|
5946
5959
|
"visible": {
|
|
5947
5960
|
"description": "Determines whether the item is visible",
|
|
5948
5961
|
"$ref": "#/$defs/visibility"
|
|
5962
|
+
},
|
|
5963
|
+
"preferIcon": {
|
|
5964
|
+
"description": "Defines whether the button will shown icon only when placed in the visible area. This will save space in the actions strip. When in the overflow area, it will always show both icon and text",
|
|
5965
|
+
"oneOf": [
|
|
5966
|
+
{
|
|
5967
|
+
"type": "boolean"
|
|
5968
|
+
},
|
|
5969
|
+
{
|
|
5970
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5971
|
+
}
|
|
5972
|
+
]
|
|
5949
5973
|
}
|
|
5950
5974
|
}
|
|
5951
5975
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -725,7 +725,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
725
725
|
| "2.2.0"
|
|
726
726
|
| "2.3.0"
|
|
727
727
|
| "2.3.1"
|
|
728
|
-
| "2.4.0"
|
|
728
|
+
| "2.4.0"
|
|
729
|
+
| "2.5.0";
|
|
729
730
|
/**
|
|
730
731
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
731
732
|
*/
|