@ui5/manifest 1.65.1 → 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 +9 -1
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +84 -30
- package/types/manifest.d.ts +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
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.
|
|
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
|
|
9
|
+
|
|
10
|
+
<a name="v1.66.0"></a>
|
|
11
|
+
## [v1.66.0] - 2024-06-27
|
|
6
12
|
|
|
7
13
|
<a name="v1.65.1"></a>
|
|
8
14
|
## [v1.65.1] - 2024-05-06
|
|
@@ -73,6 +79,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
73
79
|
<a name="v1.48.1"></a>
|
|
74
80
|
## v1.48.1 - 2022-11-10
|
|
75
81
|
|
|
82
|
+
[v1.67.0]: https://github.com/SAP/ui5-manifest/compare/v1.66.0...v1.67.0
|
|
83
|
+
[v1.66.0]: https://github.com/SAP/ui5-manifest/compare/v1.65.1...v1.66.0
|
|
76
84
|
[v1.65.1]: https://github.com/SAP/ui5-manifest/compare/v1.64.1...v1.65.1
|
|
77
85
|
[v1.64.1]: https://github.com/SAP/ui5-manifest/compare/v1.65.0...v1.64.1
|
|
78
86
|
[v1.65.0]: https://github.com/SAP/ui5-manifest/compare/v1.64.0...v1.65.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@ui5/manifest","version":"1.
|
|
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
|
@@ -81,7 +81,9 @@
|
|
|
81
81
|
"1.61.0",
|
|
82
82
|
"1.62.0",
|
|
83
83
|
"1.63.0",
|
|
84
|
-
"1.64.0"
|
|
84
|
+
"1.64.0",
|
|
85
|
+
"1.65.0",
|
|
86
|
+
"1.66.0"
|
|
85
87
|
]
|
|
86
88
|
},
|
|
87
89
|
"start_url": {
|
|
@@ -1991,7 +1993,9 @@
|
|
|
1991
1993
|
"1.42.0",
|
|
1992
1994
|
"1.43.0",
|
|
1993
1995
|
"1.44.0",
|
|
1994
|
-
"1.45.0"
|
|
1996
|
+
"1.45.0",
|
|
1997
|
+
"1.46.0",
|
|
1998
|
+
"1.47.0"
|
|
1995
1999
|
]
|
|
1996
2000
|
},
|
|
1997
2001
|
"designtime": {
|
|
@@ -2777,7 +2781,8 @@
|
|
|
2777
2781
|
"description": "Represents attributes format version.",
|
|
2778
2782
|
"type": "string",
|
|
2779
2783
|
"enum": [
|
|
2780
|
-
"1.0.0"
|
|
2784
|
+
"1.0.0",
|
|
2785
|
+
"1.1.0"
|
|
2781
2786
|
]
|
|
2782
2787
|
},
|
|
2783
2788
|
"embeds": {
|
|
@@ -2800,6 +2805,10 @@
|
|
|
2800
2805
|
"localUri": {
|
|
2801
2806
|
"type": "string",
|
|
2802
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"
|
|
2803
2812
|
}
|
|
2804
2813
|
}
|
|
2805
2814
|
},
|
|
@@ -3028,6 +3037,18 @@
|
|
|
3028
3037
|
"description": "The value, which will be displayed as a text next to the bar",
|
|
3029
3038
|
"type": "string"
|
|
3030
3039
|
},
|
|
3040
|
+
"displayZeroValue": {
|
|
3041
|
+
"description": "Defines whether bars with zero values are displayed",
|
|
3042
|
+
"oneOf": [
|
|
3043
|
+
{
|
|
3044
|
+
"type": "boolean",
|
|
3045
|
+
"default": true
|
|
3046
|
+
},
|
|
3047
|
+
{
|
|
3048
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3049
|
+
}
|
|
3050
|
+
]
|
|
3051
|
+
},
|
|
3031
3052
|
"bars": {
|
|
3032
3053
|
"description": "The bars of the chart",
|
|
3033
3054
|
"type": "array",
|
|
@@ -4420,6 +4441,10 @@
|
|
|
4420
4441
|
"type": "string",
|
|
4421
4442
|
"description": "Represents image source URL"
|
|
4422
4443
|
},
|
|
4444
|
+
"fallbackSrc": {
|
|
4445
|
+
"type": "string",
|
|
4446
|
+
"description": "Represents fallback image source URL"
|
|
4447
|
+
},
|
|
4423
4448
|
"alt": {
|
|
4424
4449
|
"type": "string",
|
|
4425
4450
|
"description": "The alternative text that is displayed in case the image is not available, or cannot be displayed."
|
|
@@ -4827,6 +4852,21 @@
|
|
|
4827
4852
|
}
|
|
4828
4853
|
]
|
|
4829
4854
|
},
|
|
4855
|
+
"fitType": {
|
|
4856
|
+
"description": "Defines how the image fits in the icon area",
|
|
4857
|
+
"oneOf": [
|
|
4858
|
+
{
|
|
4859
|
+
"enum": [
|
|
4860
|
+
"Cover",
|
|
4861
|
+
"Contain"
|
|
4862
|
+
],
|
|
4863
|
+
"default": "Cover"
|
|
4864
|
+
},
|
|
4865
|
+
{
|
|
4866
|
+
"$ref": "#/definitions/simpleBinding"
|
|
4867
|
+
}
|
|
4868
|
+
]
|
|
4869
|
+
},
|
|
4830
4870
|
"backgroundColor": {
|
|
4831
4871
|
"$ref": "#/definitions/iconBackgroundColor"
|
|
4832
4872
|
},
|
|
@@ -5639,6 +5679,34 @@
|
|
|
5639
5679
|
"sandbox": {
|
|
5640
5680
|
"description": "Sandbox attribute of the iframe",
|
|
5641
5681
|
"type": "string"
|
|
5682
|
+
},
|
|
5683
|
+
"allow": {
|
|
5684
|
+
"description": "Allow attribute of the iframe",
|
|
5685
|
+
"type": "string"
|
|
5686
|
+
},
|
|
5687
|
+
"allowfullscreen": {
|
|
5688
|
+
"description": "Allowfullscreen attribute of the iframe",
|
|
5689
|
+
"oneOf": [
|
|
5690
|
+
{
|
|
5691
|
+
"type": "boolean",
|
|
5692
|
+
"default": false
|
|
5693
|
+
},
|
|
5694
|
+
{
|
|
5695
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5696
|
+
}
|
|
5697
|
+
]
|
|
5698
|
+
},
|
|
5699
|
+
"omitSandbox": {
|
|
5700
|
+
"description": "If set to 'true' the 'sandbox' attribute will not be added to the iframe.",
|
|
5701
|
+
"oneOf": [
|
|
5702
|
+
{
|
|
5703
|
+
"type": "boolean",
|
|
5704
|
+
"default": false
|
|
5705
|
+
},
|
|
5706
|
+
{
|
|
5707
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5708
|
+
}
|
|
5709
|
+
]
|
|
5642
5710
|
}
|
|
5643
5711
|
}
|
|
5644
5712
|
},
|
|
@@ -5885,33 +5953,7 @@
|
|
|
5885
5953
|
"ContentType.AnalyticsCloud": {
|
|
5886
5954
|
"description": "Represents SAP Analytics Cloud content attributes",
|
|
5887
5955
|
"type": "object",
|
|
5888
|
-
"additionalProperties":
|
|
5889
|
-
"properties": {
|
|
5890
|
-
"data": {
|
|
5891
|
-
"$ref": "#/definitions/data"
|
|
5892
|
-
},
|
|
5893
|
-
"minHeight": {
|
|
5894
|
-
"$ref": "#/definitions/minHeight"
|
|
5895
|
-
},
|
|
5896
|
-
"actions": {
|
|
5897
|
-
"description": "Defines actions that can be applied on the content",
|
|
5898
|
-
"type": "array",
|
|
5899
|
-
"items": {
|
|
5900
|
-
"$ref": "#/definitions/action"
|
|
5901
|
-
}
|
|
5902
|
-
},
|
|
5903
|
-
"options": {
|
|
5904
|
-
"description": "Options of the chart",
|
|
5905
|
-
"oneOf": [
|
|
5906
|
-
{
|
|
5907
|
-
"type": "object"
|
|
5908
|
-
},
|
|
5909
|
-
{
|
|
5910
|
-
"$ref": "#/definitions/simpleBinding"
|
|
5911
|
-
}
|
|
5912
|
-
]
|
|
5913
|
-
}
|
|
5914
|
-
}
|
|
5956
|
+
"additionalProperties": true
|
|
5915
5957
|
},
|
|
5916
5958
|
"ContentType.Analytical": {
|
|
5917
5959
|
"description": "Represents analytical content attributes",
|
|
@@ -6412,6 +6454,18 @@
|
|
|
6412
6454
|
"description": "Defines the initially selected key from the given options for combo box.",
|
|
6413
6455
|
"type": "string"
|
|
6414
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
|
+
},
|
|
6415
6469
|
"data": {
|
|
6416
6470
|
"$ref": "#/definitions/data"
|
|
6417
6471
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -708,7 +708,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
708
708
|
| "1.61.0"
|
|
709
709
|
| "1.62.0"
|
|
710
710
|
| "1.63.0"
|
|
711
|
-
| "1.64.0"
|
|
711
|
+
| "1.64.0"
|
|
712
|
+
| "1.65.0"
|
|
713
|
+
| "1.66.0";
|
|
712
714
|
/**
|
|
713
715
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
714
716
|
*/
|
|
@@ -3663,7 +3665,7 @@ export interface JSONSchemaForSapCardsApNamespace {
|
|
|
3663
3665
|
/**
|
|
3664
3666
|
* Represents attributes format version.
|
|
3665
3667
|
*/
|
|
3666
|
-
_version?: "1.0.0";
|
|
3668
|
+
_version?: "1.0.0" | "1.1.0";
|
|
3667
3669
|
/**
|
|
3668
3670
|
* Represents an object with reference to the generated cards
|
|
3669
3671
|
*/
|
|
@@ -3698,5 +3700,9 @@ export interface ManifestSettings {
|
|
|
3698
3700
|
* Represents the local uri of the generated card
|
|
3699
3701
|
*/
|
|
3700
3702
|
localUri?: string;
|
|
3703
|
+
/**
|
|
3704
|
+
* Represents a switch to hide actions from the shared card
|
|
3705
|
+
*/
|
|
3706
|
+
hideActions?: boolean;
|
|
3701
3707
|
[k: string]: unknown;
|
|
3702
3708
|
}
|