@ui5/manifest 2.3.1 → 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 CHANGED
@@ -5,6 +5,22 @@ 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
+
18
+ <a name="v2.4.0"></a>
19
+ ## [v2.4.0] - 2026-01-12 (UI5 1.144)
20
+
21
+ ### Added
22
+ - sap.card: new property "tooltips" which can be used to visualize the tooltips that are generated by Viz charts.
23
+
8
24
  <a name="v2.3.1"></a>
9
25
  ## [v2.3.1] - 2025-12-09 (UI5 1.142)
10
26
 
@@ -201,7 +217,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
201
217
  <a name="v1.48.1"></a>
202
218
  ## v1.48.1 - 2022-11-10
203
219
 
204
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.3.1...HEAD
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
222
+ [v2.4.0]: https://github.com/SAP/ui5-manifest/compare/v2.3.1...v2.4.0
205
223
  [v2.3.1]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...v2.3.1
206
224
  [v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
207
225
  [v2.2.0]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...v2.2.0
package/mapping.json CHANGED
@@ -1,5 +1,8 @@
1
1
  {
2
- "latest": "2.3.1",
2
+ "latest": "2.5.0",
3
+ "1.145": "2.5.0",
4
+ "1.144": "2.4.0",
5
+ "1.143": "2.3.1",
3
6
  "1.142": "2.3.1",
4
7
  "1.141": "2.2.0",
5
8
  "1.140": "2.1.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "2.3.1",
3
+ "version": "2.5.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
@@ -95,7 +95,9 @@
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",
100
+ "2.5.0"
99
101
  ]
100
102
  },
101
103
  "start_url": {
@@ -1645,6 +1647,7 @@
1645
1647
  },
1646
1648
  "filters": {
1647
1649
  "description": "Map of filters",
1650
+ "type": "object",
1648
1651
  "additionalProperties": {
1649
1652
  "oneOf": [
1650
1653
  {
@@ -3498,6 +3501,17 @@
3498
3501
  }
3499
3502
  ]
3500
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
+ },
3501
3515
  "identifier": {
3502
3516
  "oneOf": [
3503
3517
  {
@@ -5753,6 +5767,18 @@
5753
5767
  }
5754
5768
  }
5755
5769
  }
5770
+ },
5771
+ "tooltips": {
5772
+ "description": "Visualize the tooltips that are generated by Viz charts.",
5773
+ "oneOf": [
5774
+ {
5775
+ "type": "boolean",
5776
+ "default": false
5777
+ },
5778
+ {
5779
+ "$ref": "#/$defs/simpleBinding"
5780
+ }
5781
+ ]
5756
5782
  }
5757
5783
  }
5758
5784
  },
@@ -5933,6 +5959,17 @@
5933
5959
  "visible": {
5934
5960
  "description": "Determines whether the item is visible",
5935
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
+ ]
5936
5973
  }
5937
5974
  }
5938
5975
  },
@@ -724,7 +724,9 @@ 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"
729
+ | "2.5.0";
728
730
  /**
729
731
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
730
732
  */