@ui5/manifest 1.75.1 → 2.0.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 +22 -6
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +184 -1059
- package/schema_cil.json +145 -635
- package/types/manifest.d.ts +57 -404
package/CHANGELOG.md
CHANGED
|
@@ -5,13 +5,28 @@ 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="
|
|
9
|
-
## [
|
|
8
|
+
<a name="v2.0.0"></a>
|
|
9
|
+
## [v2.0.0] - 2025-06-11 (UI5 1.136-lf)
|
|
10
|
+
|
|
10
11
|
### Added
|
|
11
|
-
- sap.card: Added option for "actions" for all elements of type "status"
|
|
12
12
|
- sap.flp: new property "vizOptions" has been added to provide more options for tile sizes. Only needed for declaration of custom Fiori launchpad tiles.
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
- sap.ui5/resource:
|
|
16
|
+
- `js` property: removed
|
|
17
|
+
- sap.ui5/rootView:
|
|
18
|
+
- `async` property: removed
|
|
19
|
+
- `type` property: Removed "HTML", "JS", "Template", "JSON" from possible values
|
|
20
|
+
- sap.ui5/routing:
|
|
21
|
+
- config: async property removed
|
|
22
|
+
- targets: Removed legacy options, e.g., viewName, viewId, viewPath
|
|
23
|
+
- sap.ovp: Removed Deprecated property globalFilterEntityType, globalFilterEntitySet should be used instead.
|
|
24
|
+
- sap.ovp/cards: Removed deprecated property sequencePos.
|
|
25
|
+
- sap.ovp/cards/settings: Corrected location for "tabs" property configuration.
|
|
26
|
+
- sap.card: Remove all properties which are marked as deprecated. Some of the properties will continue to work in the runtime, but should not be used anymore.
|
|
27
|
+
- sap.card: Remove option for "service" in "data" and "actions" section which was never published
|
|
28
|
+
- sap.flp/origin: has been removed, as it is not used anymore
|
|
29
|
+
- sap.flp/tileSize: has been removed in favor of sap.flp/vizOptions/displayFormats
|
|
15
30
|
- sap.flp/type: is optional, defaults to "application"
|
|
16
31
|
|
|
17
32
|
<a name="v1.73.1"></a>
|
|
@@ -143,7 +158,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
143
158
|
<a name="v1.48.1"></a>
|
|
144
159
|
## v1.48.1 - 2022-11-10
|
|
145
160
|
|
|
146
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/
|
|
161
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.0.0...HEAD
|
|
162
|
+
[v2.0.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v2.0.0
|
|
147
163
|
[v1.75.1]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.75.1
|
|
148
164
|
[v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
|
|
149
165
|
[v1.72.3]: https://github.com/SAP/ui5-manifest/compare/v1.71.0...v1.72.0
|
package/mapping.json
CHANGED