@ui5/manifest 2.1.0 → 2.1.1

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.1.1"></a>
9
+ ## [v2.1.1] - 2025-12-08 (UI5 1.140)
10
+
11
+ ### Added
12
+ - sap.card: Added new property "useMainDestinations"
13
+
8
14
  <a name="v2.1.0"></a>
9
15
  ## [v2.1.0] - 2025-09-12 (UI5 1.139)
10
16
 
@@ -17,6 +23,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
17
23
  - sap.card: Deprecated property "header/subTitle" (with capital T)
18
24
  - sap.card: Deprecated property "overflow/subTitle" (with capital T) in an object content item of type "Image"
19
25
 
26
+ <a name="v1.77.0"></a>
27
+ ## [v1.77.0] - 2025-08-04 (UI5 1.139)
28
+
20
29
  ### Added
21
30
  - sap.flp: new property "vizOptions" has been added to provide more options for tile sizes. Only needed for declaration of custom Fiori launchpad tiles.
22
31
 
@@ -167,7 +176,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
167
176
  <a name="v1.48.1"></a>
168
177
  ## v1.48.1 - 2022-11-10
169
178
 
170
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...HEAD
179
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...HEAD
180
+ [v2.1.1]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...v2.1.1
171
181
  [v2.1.0]: https://github.com/SAP/ui5-manifest/compare/v2.0.0...v2.1.0
172
182
  [v2.0.0]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v2.0.0
173
183
  [v1.72.3]: https://github.com/SAP/ui5-manifest/compare/v1.71.0...v1.72.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "2.1.0",
2
+ "latest": "2.1.1",
3
+ "1.140": "2.1.1",
3
4
  "1.139": "2.1.0",
4
5
  "1.138": "2.1.0",
5
6
  "1.137": "2.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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
@@ -91,7 +91,8 @@
91
91
  "1.71.0",
92
92
  "1.72.0",
93
93
  "2.0.0",
94
- "2.1.0"
94
+ "2.1.0",
95
+ "2.1.1"
95
96
  ]
96
97
  },
97
98
  "start_url": {
@@ -1649,12 +1650,17 @@
1649
1650
  }
1650
1651
  },
1651
1652
  "destinations": {
1652
- "description": "Describes what destinations are used by the card",
1653
+ "description": "Specifies the destinations configured for use by the card",
1653
1654
  "type": "object",
1654
1655
  "additionalProperties": {
1655
1656
  "$ref": "#/$defs/Configuration.Destinations"
1656
1657
  }
1657
1658
  },
1659
+ "useMainDestinations": {
1660
+ "description": "Indicates if child cards should reference the main card's destinations. Must be set to true in child cards to use the main card's destinations",
1661
+ "type": "boolean",
1662
+ "default": false
1663
+ },
1658
1664
  "csrfTokens": {
1659
1665
  "description": "Describes the CSRF tokens used by the card",
1660
1666
  "type": "object",
@@ -1663,7 +1669,7 @@
1663
1669
  }
1664
1670
  },
1665
1671
  "actionHandlers": {
1666
- "description": "Holds configuration for the default action handlers",
1672
+ "description": "Contains configuration settings for the default action handlers",
1667
1673
  "type": "object",
1668
1674
  "additionalProperties": false,
1669
1675
  "properties": {
@@ -716,7 +716,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
716
716
  | "1.71.0"
717
717
  | "1.72.0"
718
718
  | "2.0.0"
719
- | "2.1.0";
719
+ | "2.1.0"
720
+ | "2.1.1";
720
721
  /**
721
722
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
722
723
  */