@ui5/manifest 2.2.0 → 2.3.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 +8 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +12 -5
- package/schema_cil.json +10 -4
- package/types/manifest.d.ts +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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="v2.3.0"></a>
|
|
9
|
+
## [v2.3.0] - 2025-12-08 (UI5 1.142)
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- sap.ovp: "fixed" value in the "containerLayout" property is deprecated. This will indicate to developers that they should no longer use the "fixed" option and "resizable" layout will be selected by default. Default layout for the 'containerLayout' will be 'resizable'.
|
|
13
|
+
|
|
8
14
|
<a name="v2.2.0"></a>
|
|
9
15
|
## [v2.2.0] - 2025-12-08 (UI5 1.141)
|
|
10
16
|
|
|
@@ -189,7 +195,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
189
195
|
<a name="v1.48.1"></a>
|
|
190
196
|
## v1.48.1 - 2022-11-10
|
|
191
197
|
|
|
192
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.
|
|
198
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...HEAD
|
|
199
|
+
[v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
|
|
193
200
|
[v2.2.0]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...v2.2.0
|
|
194
201
|
[v2.1.1]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...v2.1.1
|
|
195
202
|
[v2.1.0]: https://github.com/SAP/ui5-manifest/compare/v2.0.0...v2.1.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -93,7 +93,8 @@
|
|
|
93
93
|
"2.0.0",
|
|
94
94
|
"2.1.0",
|
|
95
95
|
"2.1.1",
|
|
96
|
-
"2.2.0"
|
|
96
|
+
"2.2.0",
|
|
97
|
+
"2.3.0"
|
|
97
98
|
]
|
|
98
99
|
},
|
|
99
100
|
"start_url": {
|
|
@@ -1188,10 +1189,16 @@
|
|
|
1188
1189
|
"containerLayout": {
|
|
1189
1190
|
"description": "Represents the layout of the card container",
|
|
1190
1191
|
"type": "string",
|
|
1191
|
-
"default": "
|
|
1192
|
-
"
|
|
1193
|
-
|
|
1194
|
-
|
|
1192
|
+
"default": "resizable",
|
|
1193
|
+
"oneOf": [
|
|
1194
|
+
{
|
|
1195
|
+
"const": "resizable"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"const": "fixed",
|
|
1199
|
+
"deprecated": true,
|
|
1200
|
+
"description": "[Deprecated] Value fixed is deprecated"
|
|
1201
|
+
}
|
|
1195
1202
|
]
|
|
1196
1203
|
},
|
|
1197
1204
|
"showDateInRelativeFormat": {
|
package/schema_cil.json
CHANGED
|
@@ -848,10 +848,16 @@
|
|
|
848
848
|
"containerLayout": {
|
|
849
849
|
"description": "Represents the layout of the card container",
|
|
850
850
|
"type": "string",
|
|
851
|
-
"default": "
|
|
852
|
-
"
|
|
853
|
-
|
|
854
|
-
|
|
851
|
+
"default": "resizable",
|
|
852
|
+
"oneOf": [
|
|
853
|
+
{
|
|
854
|
+
"const": "resizable"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"const": "fixed",
|
|
858
|
+
"deprecated": true,
|
|
859
|
+
"description": "[Deprecated] Value fixed is deprecated"
|
|
860
|
+
}
|
|
855
861
|
]
|
|
856
862
|
},
|
|
857
863
|
"showDateInRelativeFormat": {
|
package/types/manifest.d.ts
CHANGED
|
@@ -722,7 +722,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
722
722
|
| "2.0.0"
|
|
723
723
|
| "2.1.0"
|
|
724
724
|
| "2.1.1"
|
|
725
|
-
| "2.2.0"
|
|
725
|
+
| "2.2.0"
|
|
726
|
+
| "2.3.0";
|
|
726
727
|
/**
|
|
727
728
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
728
729
|
*/
|
|
@@ -2452,7 +2453,7 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2452
2453
|
/**
|
|
2453
2454
|
* Represents the layout of the card container
|
|
2454
2455
|
*/
|
|
2455
|
-
containerLayout?: "
|
|
2456
|
+
containerLayout?: ("resizable" | "fixed") & string;
|
|
2456
2457
|
/**
|
|
2457
2458
|
* Represents a switch to Enable or disable Relative or Normal date formating in ovp application
|
|
2458
2459
|
*/
|