@ui5/manifest 1.79.0 → 1.80.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,9 @@ 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.80.0"></a>
9
+ ## [v1.80.0] - 2025-10-28 (UI5 1.142)
10
+
8
11
  <a name="v1.79.0"></a>
9
12
  ## [v1.79.0] - 2025-09-24 (UI5 1.141)
10
13
 
@@ -185,7 +188,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
185
188
  <a name="v1.48.1"></a>
186
189
  ## v1.48.1 - 2022-11-10
187
190
 
188
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.79.0...HEAD
191
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.80.0...HEAD
192
+ [v1.80.0]: https://github.com/SAP/ui5-manifest/compare/v1.79.0...v1.80.0
189
193
  [v1.79.0]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...v1.79.0
190
194
  [v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
191
195
  [v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.79.0",
2
+ "latest": "1.80.0",
3
+ "1.142": "1.80.0",
3
4
  "1.141": "1.79.0",
4
5
  "1.140": "1.78.0",
5
6
  "1.139": "1.77.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.79.0",
3
+ "version": "1.80.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
@@ -95,7 +95,8 @@
95
95
  "1.76.0",
96
96
  "1.77.0",
97
97
  "1.78.0",
98
- "1.79.0"
98
+ "1.79.0",
99
+ "1.80.0"
99
100
  ]
100
101
  },
101
102
  "start_url": {
@@ -1314,7 +1315,8 @@
1314
1315
  "1.9.0",
1315
1316
  "1.10.0",
1316
1317
  "1.11.0",
1317
- "1.12.0"
1318
+ "1.12.0",
1319
+ "1.13.0"
1318
1320
  ]
1319
1321
  },
1320
1322
  "globalFilterModel": {
@@ -1364,10 +1366,16 @@
1364
1366
  "containerLayout": {
1365
1367
  "description": "Represents the layout of the card container",
1366
1368
  "type": "string",
1367
- "default": "fixed",
1368
- "enum": [
1369
- "fixed",
1370
- "resizable"
1369
+ "default": "resizable",
1370
+ "oneOf": [
1371
+ {
1372
+ "const": "resizable"
1373
+ },
1374
+ {
1375
+ "const": "fixed",
1376
+ "deprecated": true,
1377
+ "description": "[Deprecated] Value fixed is deprecated"
1378
+ }
1371
1379
  ]
1372
1380
  },
1373
1381
  "showDateInRelativeFormat": {
package/schema_cil.json CHANGED
@@ -949,7 +949,8 @@
949
949
  "1.9.0",
950
950
  "1.10.0",
951
951
  "1.11.0",
952
- "1.12.0"
952
+ "1.12.0",
953
+ "1.13.0"
953
954
  ]
954
955
  },
955
956
  "globalFilterModel": {
@@ -999,10 +1000,16 @@
999
1000
  "containerLayout": {
1000
1001
  "description": "Represents the layout of the card container",
1001
1002
  "type": "string",
1002
- "default": "fixed",
1003
- "enum": [
1004
- "fixed",
1005
- "resizable"
1003
+ "default": "resizable",
1004
+ "oneOf": [
1005
+ {
1006
+ "const": "resizable"
1007
+ },
1008
+ {
1009
+ "const": "fixed",
1010
+ "deprecated": true,
1011
+ "description": "[Deprecated] Value fixed is deprecated"
1012
+ }
1006
1013
  ]
1007
1014
  },
1008
1015
  "showDateInRelativeFormat": {
@@ -753,7 +753,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
753
753
  | "1.76.0"
754
754
  | "1.77.0"
755
755
  | "1.78.0"
756
- | "1.79.0";
756
+ | "1.79.0"
757
+ | "1.80.0";
757
758
  /**
758
759
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
759
760
  */
@@ -2626,7 +2627,8 @@ export interface JSONSchemaForSAPOVPNamespace {
2626
2627
  | "1.9.0"
2627
2628
  | "1.10.0"
2628
2629
  | "1.11.0"
2629
- | "1.12.0";
2630
+ | "1.12.0"
2631
+ | "1.13.0";
2630
2632
  /**
2631
2633
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2632
2634
  */
@@ -2662,7 +2664,7 @@ export interface JSONSchemaForSAPOVPNamespace {
2662
2664
  /**
2663
2665
  * Represents the layout of the card container
2664
2666
  */
2665
- containerLayout?: "fixed" | "resizable";
2667
+ containerLayout?: ("resizable" | "fixed") & string;
2666
2668
  /**
2667
2669
  * Represents a switch to Enable or disable Relative or Normal date formating in ovp application
2668
2670
  */