@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 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.2.0...HEAD
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
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "2.2.0",
2
+ "latest": "2.3.0",
3
+ "1.142": "2.3.0",
3
4
  "1.141": "2.2.0",
4
5
  "1.140": "2.1.1",
5
6
  "1.139": "2.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "This project contains the flattend json schema for the ui5 manifest.",
5
5
  "repository": {
6
6
  "type": "git",
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": "fixed",
1192
- "enum": [
1193
- "fixed",
1194
- "resizable"
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": "fixed",
852
- "enum": [
853
- "fixed",
854
- "resizable"
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": {
@@ -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?: "fixed" | "resizable";
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
  */