@ui5/manifest 2.7.0 → 2.8.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
@@ -4,12 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
4
4
 
5
5
  <a name="Unreleased"></a>
6
6
 
7
- <a name="v2.7.0"></a>
8
- ## [v2.7.0] - 2026-04-09 (UI5 1.147)
9
-
10
- <a name="v2.7.0"></a>
11
- ## [v2.7.0] - 2026-04-08 (UI5 1.147)
12
- ## [Unreleased]: https://github.com/UI5/manifest/compare/v2.7.0...HEAD
7
+ <a name="v2.8.0"></a>
8
+ ## [v2.8.0] - 2026-05-04 (UI5 1.148)
9
+ ## [Unreleased]: https://github.com/UI5/manifest/compare/v2.8.0...HEAD
10
+ [v2.8.0]: https://github.com/UI5/manifest/compare/v2.7.0...v2.8.0
13
11
  [v2.7.0]: https://github.com/UI5/manifest/compare/v2.6.0...v2.7.0
14
12
  [v2.6.0]: https://github.com/UI5/manifest/compare/v2.5.0...v2.6.0
15
13
  [v2.5.0]: https://github.com/UI5/manifest/compare/v2.4.0...v2.5.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "2.7.0",
2
+ "latest": "2.8.0",
3
+ "1.148": "2.8.0",
3
4
  "1.147": "2.7.0",
4
5
  "1.146": "2.6.0",
5
6
  "1.145": "2.5.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "2.7.0",
3
+ "version": "2.8.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
@@ -99,7 +99,8 @@
99
99
  "2.4.0",
100
100
  "2.5.0",
101
101
  "2.6.0",
102
- "2.7.0"
102
+ "2.7.0",
103
+ "2.8.0"
103
104
  ]
104
105
  },
105
106
  "start_url": {
@@ -1615,10 +1616,6 @@
1615
1616
  "header"
1616
1617
  ],
1617
1618
  "properties": {
1618
- "customSettings": {
1619
- "description": "[RESTRICTED] Custom settings which can be used by the host environment for special handling of different scenarios.",
1620
- "type": "object"
1621
- },
1622
1619
  "configuration": {
1623
1620
  "description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
1624
1621
  "type": "object",
@@ -1735,6 +1732,10 @@
1735
1732
  }
1736
1733
  }
1737
1734
  },
1735
+ "customSettings": {
1736
+ "description": "[RESTRICTED] Defines custom settings passed from the Mobile SDK or a hosting application. These are global defaults that can be overridden by individual cards via their manifest. The value is an object containing custom settings as key-value pairs. This property is restricted to Mobile SDK usage",
1737
+ "type": "object"
1738
+ },
1738
1739
  "type": {
1739
1740
  "description": "Represents the type of the card's content",
1740
1741
  "type": "string",
@@ -1833,6 +1834,18 @@
1833
1834
  "description": "[Experimental] Visibility of the footer",
1834
1835
  "$ref": "#/$defs/visibility"
1835
1836
  },
1837
+ "showSeparator": {
1838
+ "description": "Determines whether to display a separator line at the top of the footer to visually separate the footer from the card content area.",
1839
+ "oneOf": [
1840
+ {
1841
+ "type": "boolean",
1842
+ "default": false
1843
+ },
1844
+ {
1845
+ "$ref": "#/$defs/simpleBinding"
1846
+ }
1847
+ ]
1848
+ },
1836
1849
  "closeButton": {
1837
1850
  "description": "[Experimental] Defines the Close button when the card is opened by the ShowCard action",
1838
1851
  "$ref": "#/$defs/closeButton"
@@ -728,7 +728,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
728
728
  | "2.4.0"
729
729
  | "2.5.0"
730
730
  | "2.6.0"
731
- | "2.7.0";
731
+ | "2.7.0"
732
+ | "2.8.0";
732
733
  /**
733
734
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
734
735
  */