@ui5/manifest 1.81.1 → 1.83.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,22 @@ 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.83.0"></a>
8
+ ## [v1.83.0] - 2026-02-10 (UI5 1.145)
9
+
10
+ ### Added
11
+ - sap.card: new property "inverted" in ContentType.Table.Column which shows an inverted object status
12
+ - sap.card: new property "preferIcon" for "actionsStripItem" which is used to determine if icon only button is shown when not in overflow
13
+
14
+ ### Changed
15
+ - sap.card: fix type of "filters" properties inside "configuration"
16
+
17
+ <a name="v1.82.0"></a>
18
+ ## [v1.82.0] - 2026-01-12 (UI5 1.144)
19
+
20
+ ### Added
21
+ - sap.card: new property "tooltips" which can be used to visualize the tooltips that are generated by Viz charts.
22
+
7
23
  <a name="v1.81.1"></a>
8
24
  ## [v1.81.1] - 2025-12-09 (UI5 1.143)
9
25
 
@@ -199,7 +215,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
199
215
  <a name="v1.48.1"></a>
200
216
  ## v1.48.1 - 2022-11-10
201
217
 
202
- [Unreleased]: https://github.com/UI5/manifest/compare/v1.81.1...HEAD
218
+ [Unreleased]: https://github.com/UI5/manifest/compare/v1.83.0...HEAD
219
+ [v1.83.0]: https://github.com/UI5/manifest/compare/v1.82.0...v1.83.0
220
+ [v1.82.0]: https://github.com/UI5/manifest/compare/v1.81.1...v1.82.0
203
221
  [v1.81.1]: https://github.com/UI5/manifest/compare/v1.81.0...v1.81.1
204
222
  [v1.81.0]: https://github.com/UI5/manifest/compare/v1.80.1...v1.81.0
205
223
  [v1.80.1]: https://github.com/UI5/manifest/compare/v1.80.0...v1.80.1
@@ -209,8 +227,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
209
227
  [v1.77.0]: https://github.com/UI5/manifest/compare/v1.76.0...v1.77.0
210
228
  [v1.76.0]: https://github.com/UI5/manifest/compare/v1.75.1...v1.76.0
211
229
  [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
230
+ [v1.73.1]: https://github.com/UI5/manifest/compare/v1.72.3...v1.73.1
231
+ [v1.72.3]: https://github.com/UI5/manifest/compare/v1.71.0...v1.72.3
214
232
  [v1.71.0]: https://github.com/UI5/manifest/compare/v1.70.1...v1.71.0
215
233
  [v1.70.1]: https://github.com/UI5/manifest/compare/v1.70.0...v1.70.1
216
234
  [v1.70.0]: https://github.com/UI5/manifest/compare/v1.69.0...v1.70.0
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.81.1",
2
+ "latest": "1.83.0",
3
+ "1.145": "1.83.0",
4
+ "1.144": "1.82.0",
3
5
  "1.143": "1.81.1",
4
6
  "1.142": "1.80.0",
5
7
  "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.83.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,9 @@
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",
104
+ "1.83.0"
103
105
  ]
104
106
  },
105
107
  "start_url": {
@@ -2065,7 +2067,9 @@
2065
2067
  "1.55.0",
2066
2068
  "1.56.0",
2067
2069
  "1.57.0",
2068
- "1.58.0"
2070
+ "1.58.0",
2071
+ "1.59.0",
2072
+ "1.60.0"
2069
2073
  ]
2070
2074
  },
2071
2075
  "designtime": {
@@ -2111,6 +2115,7 @@
2111
2115
  },
2112
2116
  "filters": {
2113
2117
  "description": "Map of filters",
2118
+ "type": "object",
2114
2119
  "additionalProperties": {
2115
2120
  "oneOf": [
2116
2121
  {
@@ -4004,6 +4009,17 @@
4004
4009
  }
4005
4010
  ]
4006
4011
  },
4012
+ "inverted": {
4013
+ "description": "Specifies whether the background color reflects the set \"state\" instead of the control's text",
4014
+ "oneOf": [
4015
+ {
4016
+ "type": "boolean"
4017
+ },
4018
+ {
4019
+ "$ref": "#/$defs/simpleBinding"
4020
+ }
4021
+ ]
4022
+ },
4007
4023
  "url": {
4008
4024
  "description": "[Deprecated] Defines the URL string",
4009
4025
  "deprecated": true,
@@ -6503,6 +6519,18 @@
6503
6519
  }
6504
6520
  }
6505
6521
  }
6522
+ },
6523
+ "tooltips": {
6524
+ "description": "Visualize the tooltips that are generated by Viz charts.",
6525
+ "oneOf": [
6526
+ {
6527
+ "type": "boolean",
6528
+ "default": false
6529
+ },
6530
+ {
6531
+ "$ref": "#/$defs/simpleBinding"
6532
+ }
6533
+ ]
6506
6534
  }
6507
6535
  }
6508
6536
  },
@@ -6683,6 +6711,17 @@
6683
6711
  "visible": {
6684
6712
  "description": "Determines whether the item is visible",
6685
6713
  "$ref": "#/$defs/visibility"
6714
+ },
6715
+ "preferIcon": {
6716
+ "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",
6717
+ "oneOf": [
6718
+ {
6719
+ "type": "boolean"
6720
+ },
6721
+ {
6722
+ "$ref": "#/$defs/simpleBinding"
6723
+ }
6724
+ ]
6686
6725
  }
6687
6726
  }
6688
6727
  },
@@ -757,7 +757,9 @@ 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"
762
+ | "1.83.0";
761
763
  /**
762
764
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
763
765
  */