@ui5/manifest 1.81.1 → 1.82.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 CHANGED
@@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
4
4
 
5
5
  <a name="Unreleased"></a>
6
6
 
7
+ <a name="v1.82.0"></a>
8
+ ## [v1.82.0] - 2026-01-12 (UI5 1.144)
9
+
10
+ ### Added
11
+ - sap.card: new property "tooltips" which can be used to visualize the tooltips that are generated by Viz charts.
12
+
7
13
  <a name="v1.81.1"></a>
8
14
  ## [v1.81.1] - 2025-12-09 (UI5 1.143)
9
15
 
@@ -199,7 +205,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
199
205
  <a name="v1.48.1"></a>
200
206
  ## v1.48.1 - 2022-11-10
201
207
 
202
- [Unreleased]: https://github.com/UI5/manifest/compare/v1.81.1...HEAD
208
+ [Unreleased]: https://github.com/UI5/manifest/compare/v1.82.0...HEAD
209
+ [v1.82.0]: https://github.com/UI5/manifest/compare/v1.81.1...v1.82.0
203
210
  [v1.81.1]: https://github.com/UI5/manifest/compare/v1.81.0...v1.81.1
204
211
  [v1.81.0]: https://github.com/UI5/manifest/compare/v1.80.1...v1.81.0
205
212
  [v1.80.1]: https://github.com/UI5/manifest/compare/v1.80.0...v1.80.1
@@ -209,8 +216,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
209
216
  [v1.77.0]: https://github.com/UI5/manifest/compare/v1.76.0...v1.77.0
210
217
  [v1.76.0]: https://github.com/UI5/manifest/compare/v1.75.1...v1.76.0
211
218
  [v1.75.1]: https://github.com/UI5/manifest/compare/v1.73.1...v1.75.1
212
- [v1.73.1]: https://github.com/UI5/manifest/compare/v1.72.0...v1.73.1
213
- [v1.72.3]: https://github.com/UI5/manifest/compare/v1.71.0...v1.72.0
219
+ [v1.73.1]: https://github.com/UI5/manifest/compare/v1.72.3...v1.73.1
220
+ [v1.72.3]: https://github.com/UI5/manifest/compare/v1.71.0...v1.72.3
214
221
  [v1.71.0]: https://github.com/UI5/manifest/compare/v1.70.1...v1.71.0
215
222
  [v1.70.1]: https://github.com/UI5/manifest/compare/v1.70.0...v1.70.1
216
223
  [v1.70.0]: https://github.com/UI5/manifest/compare/v1.69.0...v1.70.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.81.1",
2
+ "latest": "1.82.0",
3
+ "1.144": "1.82.0",
3
4
  "1.143": "1.81.1",
4
5
  "1.142": "1.80.0",
5
6
  "1.141": "1.79.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.81.1",
3
+ "version": "1.82.0",
4
4
  "description": "This project contains the flattend json schema for the ui5 manifest.",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -99,7 +99,8 @@
99
99
  "1.80.0",
100
100
  "1.80.1",
101
101
  "1.81.0",
102
- "1.81.1"
102
+ "1.81.1",
103
+ "1.82.0"
103
104
  ]
104
105
  },
105
106
  "start_url": {
@@ -2065,7 +2066,8 @@
2065
2066
  "1.55.0",
2066
2067
  "1.56.0",
2067
2068
  "1.57.0",
2068
- "1.58.0"
2069
+ "1.58.0",
2070
+ "1.59.0"
2069
2071
  ]
2070
2072
  },
2071
2073
  "designtime": {
@@ -6503,6 +6505,18 @@
6503
6505
  }
6504
6506
  }
6505
6507
  }
6508
+ },
6509
+ "tooltips": {
6510
+ "description": "Visualize the tooltips that are generated by Viz charts.",
6511
+ "oneOf": [
6512
+ {
6513
+ "type": "boolean",
6514
+ "default": false
6515
+ },
6516
+ {
6517
+ "$ref": "#/$defs/simpleBinding"
6518
+ }
6519
+ ]
6506
6520
  }
6507
6521
  }
6508
6522
  },
@@ -757,7 +757,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
757
757
  | "1.80.0"
758
758
  | "1.80.1"
759
759
  | "1.81.0"
760
- | "1.81.1";
760
+ | "1.81.1"
761
+ | "1.82.0";
761
762
  /**
762
763
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
763
764
  */