@ui5/manifest 2.3.0 → 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 CHANGED
@@ -5,6 +5,18 @@ 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
+
14
+ <a name="v2.3.1"></a>
15
+ ## [v2.3.1] - 2025-12-09 (UI5 1.142)
16
+
17
+ ### Added
18
+ - sap.app: new value "4.01" for setting/odataVersion added
19
+
8
20
  <a name="v2.3.0"></a>
9
21
  ## [v2.3.0] - 2025-12-08 (UI5 1.142)
10
22
 
@@ -195,7 +207,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
195
207
  <a name="v1.48.1"></a>
196
208
  ## v1.48.1 - 2022-11-10
197
209
 
198
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...HEAD
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
212
+ [v2.3.1]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...v2.3.1
199
213
  [v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
200
214
  [v2.2.0]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...v2.2.0
201
215
  [v2.1.1]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...v2.1.1
package/mapping.json CHANGED
@@ -1,6 +1,8 @@
1
1
  {
2
- "latest": "2.3.0",
3
- "1.142": "2.3.0",
2
+ "latest": "2.4.0",
3
+ "1.144": "2.4.0",
4
+ "1.143": "2.3.1",
5
+ "1.142": "2.3.1",
4
6
  "1.141": "2.2.0",
5
7
  "1.140": "2.1.1",
6
8
  "1.139": "2.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "2.3.0",
3
+ "version": "2.4.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
@@ -94,7 +94,9 @@
94
94
  "2.1.0",
95
95
  "2.1.1",
96
96
  "2.2.0",
97
- "2.3.0"
97
+ "2.3.0",
98
+ "2.3.1",
99
+ "2.4.0"
98
100
  ]
99
101
  },
100
102
  "start_url": {
@@ -5752,6 +5754,18 @@
5752
5754
  }
5753
5755
  }
5754
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
+ ]
5755
5769
  }
5756
5770
  }
5757
5771
  },
@@ -8582,7 +8596,8 @@
8582
8596
  "type": "string",
8583
8597
  "enum": [
8584
8598
  "2.0",
8585
- "4.0"
8599
+ "4.0",
8600
+ "4.01"
8586
8601
  ]
8587
8602
  },
8588
8603
  "localUri": {
package/schema_cil.json CHANGED
@@ -47,7 +47,8 @@
47
47
  "1.27.0",
48
48
  "1.28.0",
49
49
  "2.0.0",
50
- "2.1.0"
50
+ "2.1.0",
51
+ "2.1.1"
51
52
  ]
52
53
  },
53
54
  "start_url": {
@@ -3070,7 +3071,8 @@
3070
3071
  "type": "string",
3071
3072
  "enum": [
3072
3073
  "2.0",
3073
- "4.0"
3074
+ "4.0",
3075
+ "4.01"
3074
3076
  ]
3075
3077
  },
3076
3078
  "localUri": {
@@ -723,7 +723,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
723
723
  | "2.1.0"
724
724
  | "2.1.1"
725
725
  | "2.2.0"
726
- | "2.3.0";
726
+ | "2.3.0"
727
+ | "2.3.1"
728
+ | "2.4.0";
727
729
  /**
728
730
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
729
731
  */
@@ -967,7 +969,7 @@ export interface Setting {
967
969
  /**
968
970
  * Represents version of OData: 2.0 is default
969
971
  */
970
- odataVersion?: "2.0" | "4.0";
972
+ odataVersion?: "2.0" | "4.0" | "4.01";
971
973
  /**
972
974
  * Represents path to local meta data document or annotation uri
973
975
  */
@@ -1022,7 +1024,7 @@ export interface Setting1 {
1022
1024
  /**
1023
1025
  * Represents version of OData: 2.0 is default
1024
1026
  */
1025
- odataVersion?: "2.0" | "4.0";
1027
+ odataVersion?: "2.0" | "4.0" | "4.01";
1026
1028
  /**
1027
1029
  * Represents path to local meta data document or annotation uri
1028
1030
  */