@ui5/manifest 2.3.1 → 2.4.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 +8 -1
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +14 -1
- package/types/manifest.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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.4.0"></a>
|
|
9
|
+
## [v2.4.0] - 2026-01-12 (UI5 1.144)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- sap.card: new property "tooltips" which can be used to visualize the tooltips that are generated by Viz charts.
|
|
13
|
+
|
|
8
14
|
<a name="v2.3.1"></a>
|
|
9
15
|
## [v2.3.1] - 2025-12-09 (UI5 1.142)
|
|
10
16
|
|
|
@@ -201,7 +207,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
201
207
|
<a name="v1.48.1"></a>
|
|
202
208
|
## v1.48.1 - 2022-11-10
|
|
203
209
|
|
|
204
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.
|
|
210
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.4.0...HEAD
|
|
211
|
+
[v2.4.0]: https://github.com/SAP/ui5-manifest/compare/v2.3.1...v2.4.0
|
|
205
212
|
[v2.3.1]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...v2.3.1
|
|
206
213
|
[v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
|
|
207
214
|
[v2.2.0]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...v2.2.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -95,7 +95,8 @@
|
|
|
95
95
|
"2.1.1",
|
|
96
96
|
"2.2.0",
|
|
97
97
|
"2.3.0",
|
|
98
|
-
"2.3.1"
|
|
98
|
+
"2.3.1",
|
|
99
|
+
"2.4.0"
|
|
99
100
|
]
|
|
100
101
|
},
|
|
101
102
|
"start_url": {
|
|
@@ -5753,6 +5754,18 @@
|
|
|
5753
5754
|
}
|
|
5754
5755
|
}
|
|
5755
5756
|
}
|
|
5757
|
+
},
|
|
5758
|
+
"tooltips": {
|
|
5759
|
+
"description": "Visualize the tooltips that are generated by Viz charts.",
|
|
5760
|
+
"oneOf": [
|
|
5761
|
+
{
|
|
5762
|
+
"type": "boolean",
|
|
5763
|
+
"default": false
|
|
5764
|
+
},
|
|
5765
|
+
{
|
|
5766
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5767
|
+
}
|
|
5768
|
+
]
|
|
5756
5769
|
}
|
|
5757
5770
|
}
|
|
5758
5771
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -724,7 +724,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
724
724
|
| "2.1.1"
|
|
725
725
|
| "2.2.0"
|
|
726
726
|
| "2.3.0"
|
|
727
|
-
| "2.3.1"
|
|
727
|
+
| "2.3.1"
|
|
728
|
+
| "2.4.0";
|
|
728
729
|
/**
|
|
729
730
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
730
731
|
*/
|