@ui5/manifest 1.65.1 → 1.66.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 +5 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +60 -29
- package/types/manifest.d.ts +2 -1
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.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.66.0...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.66.0"></a>
|
|
8
|
+
## [v1.66.0] - 2024-06-27
|
|
6
9
|
|
|
7
10
|
<a name="v1.65.1"></a>
|
|
8
11
|
## [v1.65.1] - 2024-05-06
|
|
@@ -73,6 +76,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
73
76
|
<a name="v1.48.1"></a>
|
|
74
77
|
## v1.48.1 - 2022-11-10
|
|
75
78
|
|
|
79
|
+
[v1.66.0]: https://github.com/SAP/ui5-manifest/compare/v1.65.1...v1.66.0
|
|
76
80
|
[v1.65.1]: https://github.com/SAP/ui5-manifest/compare/v1.64.1...v1.65.1
|
|
77
81
|
[v1.64.1]: https://github.com/SAP/ui5-manifest/compare/v1.65.0...v1.64.1
|
|
78
82
|
[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.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"}
|
package/schema.json
CHANGED
|
@@ -81,7 +81,8 @@
|
|
|
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"
|
|
85
86
|
]
|
|
86
87
|
},
|
|
87
88
|
"start_url": {
|
|
@@ -1991,7 +1992,8 @@
|
|
|
1991
1992
|
"1.42.0",
|
|
1992
1993
|
"1.43.0",
|
|
1993
1994
|
"1.44.0",
|
|
1994
|
-
"1.45.0"
|
|
1995
|
+
"1.45.0",
|
|
1996
|
+
"1.46.0"
|
|
1995
1997
|
]
|
|
1996
1998
|
},
|
|
1997
1999
|
"designtime": {
|
|
@@ -3028,6 +3030,18 @@
|
|
|
3028
3030
|
"description": "The value, which will be displayed as a text next to the bar",
|
|
3029
3031
|
"type": "string"
|
|
3030
3032
|
},
|
|
3033
|
+
"displayZeroValue": {
|
|
3034
|
+
"description": "Defines whether bars with zero values are displayed",
|
|
3035
|
+
"oneOf": [
|
|
3036
|
+
{
|
|
3037
|
+
"type": "boolean",
|
|
3038
|
+
"default": true
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3042
|
+
}
|
|
3043
|
+
]
|
|
3044
|
+
},
|
|
3031
3045
|
"bars": {
|
|
3032
3046
|
"description": "The bars of the chart",
|
|
3033
3047
|
"type": "array",
|
|
@@ -4827,6 +4841,21 @@
|
|
|
4827
4841
|
}
|
|
4828
4842
|
]
|
|
4829
4843
|
},
|
|
4844
|
+
"fitType": {
|
|
4845
|
+
"description": "Defines how the image fits in the icon area",
|
|
4846
|
+
"oneOf": [
|
|
4847
|
+
{
|
|
4848
|
+
"enum": [
|
|
4849
|
+
"Cover",
|
|
4850
|
+
"Contain"
|
|
4851
|
+
],
|
|
4852
|
+
"default": "Cover"
|
|
4853
|
+
},
|
|
4854
|
+
{
|
|
4855
|
+
"$ref": "#/definitions/simpleBinding"
|
|
4856
|
+
}
|
|
4857
|
+
]
|
|
4858
|
+
},
|
|
4830
4859
|
"backgroundColor": {
|
|
4831
4860
|
"$ref": "#/definitions/iconBackgroundColor"
|
|
4832
4861
|
},
|
|
@@ -5639,6 +5668,34 @@
|
|
|
5639
5668
|
"sandbox": {
|
|
5640
5669
|
"description": "Sandbox attribute of the iframe",
|
|
5641
5670
|
"type": "string"
|
|
5671
|
+
},
|
|
5672
|
+
"allow": {
|
|
5673
|
+
"description": "Allow attribute of the iframe",
|
|
5674
|
+
"type": "string"
|
|
5675
|
+
},
|
|
5676
|
+
"allowfullscreen": {
|
|
5677
|
+
"description": "Allowfullscreen attribute of the iframe",
|
|
5678
|
+
"oneOf": [
|
|
5679
|
+
{
|
|
5680
|
+
"type": "boolean",
|
|
5681
|
+
"default": false
|
|
5682
|
+
},
|
|
5683
|
+
{
|
|
5684
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5685
|
+
}
|
|
5686
|
+
]
|
|
5687
|
+
},
|
|
5688
|
+
"omitSandbox": {
|
|
5689
|
+
"description": "If set to 'true' the 'sandbox' attribute will not be added to the iframe.",
|
|
5690
|
+
"oneOf": [
|
|
5691
|
+
{
|
|
5692
|
+
"type": "boolean",
|
|
5693
|
+
"default": false
|
|
5694
|
+
},
|
|
5695
|
+
{
|
|
5696
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5697
|
+
}
|
|
5698
|
+
]
|
|
5642
5699
|
}
|
|
5643
5700
|
}
|
|
5644
5701
|
},
|
|
@@ -5885,33 +5942,7 @@
|
|
|
5885
5942
|
"ContentType.AnalyticsCloud": {
|
|
5886
5943
|
"description": "Represents SAP Analytics Cloud content attributes",
|
|
5887
5944
|
"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
|
-
}
|
|
5945
|
+
"additionalProperties": true
|
|
5915
5946
|
},
|
|
5916
5947
|
"ContentType.Analytical": {
|
|
5917
5948
|
"description": "Represents analytical content attributes",
|
package/types/manifest.d.ts
CHANGED
|
@@ -708,7 +708,8 @@ 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";
|
|
712
713
|
/**
|
|
713
714
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
714
715
|
*/
|