@ui5/manifest 1.66.0 → 1.67.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
@@ -2,7 +2,10 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
4
 
5
- A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.66.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.67.0...HEAD).
6
+
7
+ <a name="v1.67.0"></a>
8
+ ## [v1.67.0] - 2024-09-19
6
9
 
7
10
  <a name="v1.66.0"></a>
8
11
  ## [v1.66.0] - 2024-06-27
@@ -76,6 +79,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
76
79
  <a name="v1.48.1"></a>
77
80
  ## v1.48.1 - 2022-11-10
78
81
 
82
+ [v1.67.0]: https://github.com/SAP/ui5-manifest/compare/v1.66.0...v1.67.0
79
83
  [v1.66.0]: https://github.com/SAP/ui5-manifest/compare/v1.65.1...v1.66.0
80
84
  [v1.65.1]: https://github.com/SAP/ui5-manifest/compare/v1.64.1...v1.65.1
81
85
  [v1.64.1]: https://github.com/SAP/ui5-manifest/compare/v1.65.0...v1.64.1
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.65.0",
2
+ "latest": "1.66.0",
3
+ "1.129": "1.66.0",
3
4
  "1.126": "1.65.0",
4
5
  "1.124": "1.64.0",
5
6
  "1.123": "1.63.0",
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@ui5/manifest","version":"1.66.0","description":"This project contains the flattend json schema for the ui5 manifest.","repository":{"type":"git","url":"git+https://github.com/SAP/ui5-manifest.git"},"scripts":{"version":"git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md","prepublishOnly":"git push --follow-tags","release-note":"git-chglog -c .chglog/release-config.yml v$npm_package_version"},"keywords":["ui5","manifest"],"author":"SAP SE","license":"Apache-2.0","bugs":{"url":"https://github.com/SAP/ui5-manifest/issues"},"homepage":"https://github.com/SAP/ui5-manifest#readme"}
1
+ {"name":"@ui5/manifest","version":"1.67.0","description":"This project contains the flattend json schema for the ui5 manifest.","repository":{"type":"git","url":"git+https://github.com/SAP/ui5-manifest.git"},"scripts":{"version":"git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md","prepublishOnly":"git push --follow-tags","release-note":"git-chglog -c .chglog/release-config.yml v$npm_package_version"},"keywords":["ui5","manifest"],"author":"SAP SE","license":"Apache-2.0","bugs":{"url":"https://github.com/SAP/ui5-manifest/issues"},"homepage":"https://github.com/SAP/ui5-manifest#readme"}
package/schema.json CHANGED
@@ -82,7 +82,8 @@
82
82
  "1.62.0",
83
83
  "1.63.0",
84
84
  "1.64.0",
85
- "1.65.0"
85
+ "1.65.0",
86
+ "1.66.0"
86
87
  ]
87
88
  },
88
89
  "start_url": {
@@ -1993,7 +1994,8 @@
1993
1994
  "1.43.0",
1994
1995
  "1.44.0",
1995
1996
  "1.45.0",
1996
- "1.46.0"
1997
+ "1.46.0",
1998
+ "1.47.0"
1997
1999
  ]
1998
2000
  },
1999
2001
  "designtime": {
@@ -2779,7 +2781,8 @@
2779
2781
  "description": "Represents attributes format version.",
2780
2782
  "type": "string",
2781
2783
  "enum": [
2782
- "1.0.0"
2784
+ "1.0.0",
2785
+ "1.1.0"
2783
2786
  ]
2784
2787
  },
2785
2788
  "embeds": {
@@ -2802,6 +2805,10 @@
2802
2805
  "localUri": {
2803
2806
  "type": "string",
2804
2807
  "description": "Represents the local uri of the generated card"
2808
+ },
2809
+ "hideActions": {
2810
+ "type": "boolean",
2811
+ "description": "Represents a switch to hide actions from the shared card"
2805
2812
  }
2806
2813
  }
2807
2814
  },
@@ -4434,6 +4441,10 @@
4434
4441
  "type": "string",
4435
4442
  "description": "Represents image source URL"
4436
4443
  },
4444
+ "fallbackSrc": {
4445
+ "type": "string",
4446
+ "description": "Represents fallback image source URL"
4447
+ },
4437
4448
  "alt": {
4438
4449
  "type": "string",
4439
4450
  "description": "The alternative text that is displayed in case the image is not available, or cannot be displayed."
@@ -6443,6 +6454,18 @@
6443
6454
  "description": "Defines the initially selected key from the given options for combo box.",
6444
6455
  "type": "string"
6445
6456
  },
6457
+ "selectedIndex": {
6458
+ "description": "Specifies the index of the selected item. Index value for no selection is -1.",
6459
+ "oneOf": [
6460
+ {
6461
+ "type": "number",
6462
+ "default": -1
6463
+ },
6464
+ {
6465
+ "$ref": "#/definitions/simpleBinding"
6466
+ }
6467
+ ]
6468
+ },
6446
6469
  "data": {
6447
6470
  "$ref": "#/definitions/data"
6448
6471
  },
@@ -709,7 +709,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
709
709
  | "1.62.0"
710
710
  | "1.63.0"
711
711
  | "1.64.0"
712
- | "1.65.0";
712
+ | "1.65.0"
713
+ | "1.66.0";
713
714
  /**
714
715
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
715
716
  */
@@ -3664,7 +3665,7 @@ export interface JSONSchemaForSapCardsApNamespace {
3664
3665
  /**
3665
3666
  * Represents attributes format version.
3666
3667
  */
3667
- _version?: "1.0.0";
3668
+ _version?: "1.0.0" | "1.1.0";
3668
3669
  /**
3669
3670
  * Represents an object with reference to the generated cards
3670
3671
  */
@@ -3699,5 +3700,9 @@ export interface ManifestSettings {
3699
3700
  * Represents the local uri of the generated card
3700
3701
  */
3701
3702
  localUri?: string;
3703
+ /**
3704
+ * Represents a switch to hide actions from the shared card
3705
+ */
3706
+ hideActions?: boolean;
3702
3707
  [k: string]: unknown;
3703
3708
  }