@ui5/manifest 1.75.0 → 1.76.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 +10 -7
- package/mapping.json +3 -2
- package/package.json +1 -1
- package/schema.json +6 -3
- package/types/manifest.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,14 @@ 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="v1.
|
|
9
|
-
## [v1.
|
|
8
|
+
<a name="v1.76.0"></a>
|
|
9
|
+
## [v1.76.0] - 2025-07-02 (UI5 1.138)
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
### Changed
|
|
12
|
+
- sap.card: Deprecated property "actions" for Object Content.
|
|
13
|
+
|
|
14
|
+
<a name="v1.75.1"></a>
|
|
15
|
+
## [v1.75.1] - 2025-06-04 (UI5 1.137)
|
|
13
16
|
### Added
|
|
14
17
|
- sap.card: Added option for "actions" for all elements of type "status"
|
|
15
18
|
- sap.flp: new property "vizOptions" has been added to provide more options for tile sizes. Only needed for declaration of custom Fiori launchpad tiles.
|
|
@@ -146,9 +149,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
146
149
|
<a name="v1.48.1"></a>
|
|
147
150
|
## v1.48.1 - 2022-11-10
|
|
148
151
|
|
|
149
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.
|
|
150
|
-
[v1.
|
|
151
|
-
[v1.
|
|
152
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...HEAD
|
|
153
|
+
[v1.76.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v1.76.0
|
|
154
|
+
[v1.75.1]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.75.1
|
|
152
155
|
[v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
|
|
153
156
|
[v1.72.3]: https://github.com/SAP/ui5-manifest/compare/v1.71.0...v1.72.0
|
|
154
157
|
[v1.71.0]: https://github.com/SAP/ui5-manifest/compare/v1.70.1...v1.71.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -91,7 +91,8 @@
|
|
|
91
91
|
"1.71.0",
|
|
92
92
|
"1.72.0",
|
|
93
93
|
"1.73.1",
|
|
94
|
-
"1.
|
|
94
|
+
"1.75.1",
|
|
95
|
+
"1.76.0"
|
|
95
96
|
]
|
|
96
97
|
},
|
|
97
98
|
"start_url": {
|
|
@@ -2039,7 +2040,8 @@
|
|
|
2039
2040
|
"1.51.0",
|
|
2040
2041
|
"1.52.0",
|
|
2041
2042
|
"1.53.0",
|
|
2042
|
-
"1.54.0"
|
|
2043
|
+
"1.54.0",
|
|
2044
|
+
"1.55.0"
|
|
2043
2045
|
]
|
|
2044
2046
|
},
|
|
2045
2047
|
"designtime": {
|
|
@@ -6048,8 +6050,9 @@
|
|
|
6048
6050
|
}
|
|
6049
6051
|
},
|
|
6050
6052
|
"actions": {
|
|
6051
|
-
"description": "Defines actions that can be applied on the content",
|
|
6053
|
+
"description": "[Deprecated] Defines actions that can be applied on the content",
|
|
6052
6054
|
"type": "array",
|
|
6055
|
+
"deprecated": true,
|
|
6053
6056
|
"items": {
|
|
6054
6057
|
"$ref": "#/$defs/action"
|
|
6055
6058
|
}
|
package/types/manifest.d.ts
CHANGED
|
@@ -743,7 +743,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
743
743
|
| "1.71.0"
|
|
744
744
|
| "1.72.0"
|
|
745
745
|
| "1.73.1"
|
|
746
|
-
| "1.
|
|
746
|
+
| "1.75.1"
|
|
747
|
+
| "1.76.0";
|
|
747
748
|
/**
|
|
748
749
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
749
750
|
*/
|