@ui5/manifest 1.82.0 → 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 +12 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +27 -2
- package/types/manifest.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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
|
+
|
|
7
17
|
<a name="v1.82.0"></a>
|
|
8
18
|
## [v1.82.0] - 2026-01-12 (UI5 1.144)
|
|
9
19
|
|
|
@@ -205,7 +215,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
205
215
|
<a name="v1.48.1"></a>
|
|
206
216
|
## v1.48.1 - 2022-11-10
|
|
207
217
|
|
|
208
|
-
[Unreleased]: https://github.com/UI5/manifest/compare/v1.
|
|
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
|
|
209
220
|
[v1.82.0]: https://github.com/UI5/manifest/compare/v1.81.1...v1.82.0
|
|
210
221
|
[v1.81.1]: https://github.com/UI5/manifest/compare/v1.81.0...v1.81.1
|
|
211
222
|
[v1.81.0]: https://github.com/UI5/manifest/compare/v1.80.1...v1.81.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -100,7 +100,8 @@
|
|
|
100
100
|
"1.80.1",
|
|
101
101
|
"1.81.0",
|
|
102
102
|
"1.81.1",
|
|
103
|
-
"1.82.0"
|
|
103
|
+
"1.82.0",
|
|
104
|
+
"1.83.0"
|
|
104
105
|
]
|
|
105
106
|
},
|
|
106
107
|
"start_url": {
|
|
@@ -2067,7 +2068,8 @@
|
|
|
2067
2068
|
"1.56.0",
|
|
2068
2069
|
"1.57.0",
|
|
2069
2070
|
"1.58.0",
|
|
2070
|
-
"1.59.0"
|
|
2071
|
+
"1.59.0",
|
|
2072
|
+
"1.60.0"
|
|
2071
2073
|
]
|
|
2072
2074
|
},
|
|
2073
2075
|
"designtime": {
|
|
@@ -2113,6 +2115,7 @@
|
|
|
2113
2115
|
},
|
|
2114
2116
|
"filters": {
|
|
2115
2117
|
"description": "Map of filters",
|
|
2118
|
+
"type": "object",
|
|
2116
2119
|
"additionalProperties": {
|
|
2117
2120
|
"oneOf": [
|
|
2118
2121
|
{
|
|
@@ -4006,6 +4009,17 @@
|
|
|
4006
4009
|
}
|
|
4007
4010
|
]
|
|
4008
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
|
+
},
|
|
4009
4023
|
"url": {
|
|
4010
4024
|
"description": "[Deprecated] Defines the URL string",
|
|
4011
4025
|
"deprecated": true,
|
|
@@ -6697,6 +6711,17 @@
|
|
|
6697
6711
|
"visible": {
|
|
6698
6712
|
"description": "Determines whether the item is visible",
|
|
6699
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
|
+
]
|
|
6700
6725
|
}
|
|
6701
6726
|
}
|
|
6702
6727
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -758,7 +758,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
758
758
|
| "1.80.1"
|
|
759
759
|
| "1.81.0"
|
|
760
760
|
| "1.81.1"
|
|
761
|
-
| "1.82.0"
|
|
761
|
+
| "1.82.0"
|
|
762
|
+
| "1.83.0";
|
|
762
763
|
/**
|
|
763
764
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
764
765
|
*/
|