@ui5/manifest 1.75.0 → 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 -10
- package/mapping.json +3 -2
- 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,16 +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
|
-
<a name="v1.74.0"></a>
|
|
12
|
-
## [v1.74.0] - 2025-06-04 (UI5 1.137)
|
|
13
11
|
### Added
|
|
14
|
-
- sap.card: Added option for "actions" for all elements of type "status"
|
|
15
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.
|
|
16
|
-
|
|
17
|
-
|
|
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
|
|
18
30
|
- sap.flp/type: is optional, defaults to "application"
|
|
19
31
|
|
|
20
32
|
<a name="v1.73.1"></a>
|
|
@@ -146,9 +158,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
146
158
|
<a name="v1.48.1"></a>
|
|
147
159
|
## v1.48.1 - 2022-11-10
|
|
148
160
|
|
|
149
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/
|
|
150
|
-
[
|
|
151
|
-
[v1.
|
|
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
|
|
163
|
+
[v1.75.1]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.75.1
|
|
152
164
|
[v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
|
|
153
165
|
[v1.72.3]: https://github.com/SAP/ui5-manifest/compare/v1.71.0...v1.72.0
|
|
154
166
|
[v1.71.0]: https://github.com/SAP/ui5-manifest/compare/v1.70.1...v1.71.0
|
package/mapping.json
CHANGED