@ui5/manifest 1.64.0 → 1.64.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 +9 -1
- package/mapping.json +2 -1
- package/package.json +1 -24
- package/schema.json +70 -26
- package/types/manifest.d.ts +4 -3
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.64.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.64.1...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.64.1"></a>
|
|
8
|
+
## [v1.64.1] - 2024-05-06
|
|
9
|
+
|
|
10
|
+
<a name="v1.65.0"></a>
|
|
11
|
+
## [v1.65.0] - 2024-05-02
|
|
6
12
|
|
|
7
13
|
<a name="v1.64.0"></a>
|
|
8
14
|
## [v1.64.0] - 2024-04-08
|
|
@@ -64,6 +70,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
64
70
|
<a name="v1.48.1"></a>
|
|
65
71
|
## v1.48.1 - 2022-11-10
|
|
66
72
|
|
|
73
|
+
[v1.64.1]: https://github.com/SAP/ui5-manifest/compare/v1.65.0...v1.64.1
|
|
74
|
+
[v1.65.0]: https://github.com/SAP/ui5-manifest/compare/v1.64.0...v1.65.0
|
|
67
75
|
[v1.64.0]: https://github.com/SAP/ui5-manifest/compare/v1.63.0...v1.64.0
|
|
68
76
|
[v1.63.0]: https://github.com/SAP/ui5-manifest/compare/v1.62.1...v1.63.0
|
|
69
77
|
[v1.62.1]: https://github.com/SAP/ui5-manifest/compare/v1.62.0...v1.62.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ui5/manifest",
|
|
3
|
-
"version": "1.64.0",
|
|
4
|
-
"description": "This project contains the flattend json schema for the ui5 manifest.",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/SAP/ui5-manifest.git"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
|
|
11
|
-
"prepublishOnly": "git push --follow-tags",
|
|
12
|
-
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"ui5",
|
|
16
|
-
"manifest"
|
|
17
|
-
],
|
|
18
|
-
"author": "SAP SE",
|
|
19
|
-
"license": "Apache-2.0",
|
|
20
|
-
"bugs": {
|
|
21
|
-
"url": "https://github.com/SAP/ui5-manifest/issues"
|
|
22
|
-
},
|
|
23
|
-
"homepage": "https://github.com/SAP/ui5-manifest#readme"
|
|
24
|
-
}
|
|
1
|
+
{"name":"@ui5/manifest","version":"1.64.1","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
|
@@ -80,7 +80,8 @@
|
|
|
80
80
|
"1.60.0",
|
|
81
81
|
"1.61.0",
|
|
82
82
|
"1.62.0",
|
|
83
|
-
"1.63.0"
|
|
83
|
+
"1.63.0",
|
|
84
|
+
"1.64.0"
|
|
84
85
|
]
|
|
85
86
|
},
|
|
86
87
|
"start_url": {
|
|
@@ -602,8 +603,8 @@
|
|
|
602
603
|
],
|
|
603
604
|
"properties": {
|
|
604
605
|
"minUI5Version": {
|
|
605
|
-
"description": "Represents the minimum version of SAP UI5 that your component requires",
|
|
606
|
-
"$ref": "#/definitions/
|
|
606
|
+
"description": "Represents the minimum version of SAP UI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.",
|
|
607
|
+
"$ref": "#/definitions/minUI5Version"
|
|
607
608
|
},
|
|
608
609
|
"libs": {
|
|
609
610
|
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
@@ -1989,7 +1990,8 @@
|
|
|
1989
1990
|
"1.41.0",
|
|
1990
1991
|
"1.42.0",
|
|
1991
1992
|
"1.43.0",
|
|
1992
|
-
"1.44.0"
|
|
1993
|
+
"1.44.0",
|
|
1994
|
+
"1.45.0"
|
|
1993
1995
|
]
|
|
1994
1996
|
},
|
|
1995
1997
|
"designtime": {
|
|
@@ -2009,6 +2011,10 @@
|
|
|
2009
2011
|
"description": "Markdown enablement for Adaptive Content",
|
|
2010
2012
|
"type": "boolean"
|
|
2011
2013
|
},
|
|
2014
|
+
"helpId": {
|
|
2015
|
+
"description": "[Experimental] The help-id which will be rendered as data-help-id on the base element of the card.",
|
|
2016
|
+
"type": "string"
|
|
2017
|
+
},
|
|
2012
2018
|
"modelSizeLimit": {
|
|
2013
2019
|
"description": "[Experimental] Represents the maximum number of entries that are used for list bindings.",
|
|
2014
2020
|
"oneOf": [
|
|
@@ -2929,7 +2935,7 @@
|
|
|
2929
2935
|
}
|
|
2930
2936
|
}
|
|
2931
2937
|
},
|
|
2932
|
-
"
|
|
2938
|
+
"MicroChart.StackedBar.Bar": {
|
|
2933
2939
|
"type": "object",
|
|
2934
2940
|
"additionalProperties": false,
|
|
2935
2941
|
"properties": {
|
|
@@ -2966,7 +2972,7 @@
|
|
|
2966
2972
|
}
|
|
2967
2973
|
}
|
|
2968
2974
|
},
|
|
2969
|
-
"
|
|
2975
|
+
"MicroChart.Bullet.Threshold": {
|
|
2970
2976
|
"type": "object",
|
|
2971
2977
|
"additionalProperties": false,
|
|
2972
2978
|
"properties": {
|
|
@@ -2995,7 +3001,7 @@
|
|
|
2995
3001
|
}
|
|
2996
3002
|
}
|
|
2997
3003
|
},
|
|
2998
|
-
"
|
|
3004
|
+
"MicroChart.StackedBar": {
|
|
2999
3005
|
"type": "object",
|
|
3000
3006
|
"additionalProperties": false,
|
|
3001
3007
|
"required": [
|
|
@@ -3003,7 +3009,7 @@
|
|
|
3003
3009
|
],
|
|
3004
3010
|
"properties": {
|
|
3005
3011
|
"type": {
|
|
3006
|
-
"description": "Represents the type of the
|
|
3012
|
+
"description": "Represents the type of the MicroChart",
|
|
3007
3013
|
"type": "string",
|
|
3008
3014
|
"const": "StackedBar"
|
|
3009
3015
|
},
|
|
@@ -3026,7 +3032,7 @@
|
|
|
3026
3032
|
"description": "The bars of the chart",
|
|
3027
3033
|
"type": "array",
|
|
3028
3034
|
"items": {
|
|
3029
|
-
"$ref": "#/definitions/
|
|
3035
|
+
"$ref": "#/definitions/MicroChart.StackedBar.Bar"
|
|
3030
3036
|
}
|
|
3031
3037
|
},
|
|
3032
3038
|
"visible": {
|
|
@@ -3035,7 +3041,7 @@
|
|
|
3035
3041
|
}
|
|
3036
3042
|
}
|
|
3037
3043
|
},
|
|
3038
|
-
"
|
|
3044
|
+
"MicroChart.Bullet": {
|
|
3039
3045
|
"type": "object",
|
|
3040
3046
|
"additionalProperties": false,
|
|
3041
3047
|
"required": [
|
|
@@ -3043,7 +3049,7 @@
|
|
|
3043
3049
|
],
|
|
3044
3050
|
"properties": {
|
|
3045
3051
|
"type": {
|
|
3046
|
-
"description": "Represents the type of the
|
|
3052
|
+
"description": "Represents the type of the MicroChart",
|
|
3047
3053
|
"type": "string",
|
|
3048
3054
|
"const": "Bullet"
|
|
3049
3055
|
},
|
|
@@ -3115,7 +3121,7 @@
|
|
|
3115
3121
|
"description": "The thresholds indicators of the bar",
|
|
3116
3122
|
"type": "array",
|
|
3117
3123
|
"items": {
|
|
3118
|
-
"$ref": "#/definitions/
|
|
3124
|
+
"$ref": "#/definitions/MicroChart.Bullet.Threshold"
|
|
3119
3125
|
}
|
|
3120
3126
|
},
|
|
3121
3127
|
"visible": {
|
|
@@ -3124,6 +3130,25 @@
|
|
|
3124
3130
|
}
|
|
3125
3131
|
}
|
|
3126
3132
|
},
|
|
3133
|
+
"MicroChart.Generic": {
|
|
3134
|
+
"type": "object",
|
|
3135
|
+
"additionalProperties": true,
|
|
3136
|
+
"required": [
|
|
3137
|
+
"type"
|
|
3138
|
+
],
|
|
3139
|
+
"properties": {
|
|
3140
|
+
"type": {
|
|
3141
|
+
"description": "Represents the type of the MicroChart",
|
|
3142
|
+
"type": "string",
|
|
3143
|
+
"enum": [
|
|
3144
|
+
"Line",
|
|
3145
|
+
"Column",
|
|
3146
|
+
"HarveyBall",
|
|
3147
|
+
"Radial"
|
|
3148
|
+
]
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
},
|
|
3127
3152
|
"Configuration.Filter.ComboBoxItem": {
|
|
3128
3153
|
"description": "A single Combo Box filter selection option",
|
|
3129
3154
|
"type": "object",
|
|
@@ -4750,17 +4775,6 @@
|
|
|
4750
4775
|
}
|
|
4751
4776
|
}
|
|
4752
4777
|
},
|
|
4753
|
-
"Microchart": {
|
|
4754
|
-
"description": "[Experimental] Describes Microchart attributes",
|
|
4755
|
-
"oneOf": [
|
|
4756
|
-
{
|
|
4757
|
-
"$ref": "#/definitions/Microchart.Bullet"
|
|
4758
|
-
},
|
|
4759
|
-
{
|
|
4760
|
-
"$ref": "#/definitions/Microchart.StackedBar"
|
|
4761
|
-
}
|
|
4762
|
-
]
|
|
4763
|
-
},
|
|
4764
4778
|
"icon": {
|
|
4765
4779
|
"description": "Represents icon attributes",
|
|
4766
4780
|
"type": "object",
|
|
@@ -5015,7 +5029,7 @@
|
|
|
5015
5029
|
}
|
|
5016
5030
|
},
|
|
5017
5031
|
"chart": {
|
|
5018
|
-
"$ref": "#/definitions/
|
|
5032
|
+
"$ref": "#/definitions/MicroChart"
|
|
5019
5033
|
},
|
|
5020
5034
|
"actionsStrip": {
|
|
5021
5035
|
"description": "Describes actions strip",
|
|
@@ -5046,6 +5060,20 @@
|
|
|
5046
5060
|
],
|
|
5047
5061
|
"default": "Neutral"
|
|
5048
5062
|
},
|
|
5063
|
+
"MicroChart": {
|
|
5064
|
+
"description": "[Experimental] Describes MicroChart attributes",
|
|
5065
|
+
"oneOf": [
|
|
5066
|
+
{
|
|
5067
|
+
"$ref": "#/definitions/MicroChart.Generic"
|
|
5068
|
+
},
|
|
5069
|
+
{
|
|
5070
|
+
"$ref": "#/definitions/MicroChart.Bullet"
|
|
5071
|
+
},
|
|
5072
|
+
{
|
|
5073
|
+
"$ref": "#/definitions/MicroChart.StackedBar"
|
|
5074
|
+
}
|
|
5075
|
+
]
|
|
5076
|
+
},
|
|
5049
5077
|
"HeaderType.Numeric.SideIndicator": {
|
|
5050
5078
|
"description": "Represents side indicator attributes which are used for additional information about the main indicator",
|
|
5051
5079
|
"type": "object",
|
|
@@ -5503,6 +5531,9 @@
|
|
|
5503
5531
|
"visible": {
|
|
5504
5532
|
"description": "[Experimental] Visibility of the header",
|
|
5505
5533
|
"$ref": "#/definitions/visibility"
|
|
5534
|
+
},
|
|
5535
|
+
"chart": {
|
|
5536
|
+
"$ref": "#/definitions/MicroChart"
|
|
5506
5537
|
}
|
|
5507
5538
|
}
|
|
5508
5539
|
},
|
|
@@ -8448,6 +8479,9 @@
|
|
|
8448
8479
|
}
|
|
8449
8480
|
}
|
|
8450
8481
|
},
|
|
8482
|
+
"version": {
|
|
8483
|
+
"type": "string"
|
|
8484
|
+
},
|
|
8451
8485
|
"id_def_0": {
|
|
8452
8486
|
"type": "string"
|
|
8453
8487
|
},
|
|
@@ -8534,8 +8568,18 @@
|
|
|
8534
8568
|
}
|
|
8535
8569
|
}
|
|
8536
8570
|
},
|
|
8537
|
-
"
|
|
8538
|
-
"
|
|
8571
|
+
"minUI5Version": {
|
|
8572
|
+
"oneOf": [
|
|
8573
|
+
{
|
|
8574
|
+
"type": "string"
|
|
8575
|
+
},
|
|
8576
|
+
{
|
|
8577
|
+
"type": "array",
|
|
8578
|
+
"items": {
|
|
8579
|
+
"type": "string"
|
|
8580
|
+
}
|
|
8581
|
+
}
|
|
8582
|
+
]
|
|
8539
8583
|
},
|
|
8540
8584
|
"componentUsages": {
|
|
8541
8585
|
"description": "Represents component name for usage",
|
package/types/manifest.d.ts
CHANGED
|
@@ -189,9 +189,9 @@ export type JSONSchemaForSAPUI5Namespace = {
|
|
|
189
189
|
*/
|
|
190
190
|
dependencies: {
|
|
191
191
|
/**
|
|
192
|
-
* Represents the minimum version of SAP UI5 that your component requires
|
|
192
|
+
* Represents the minimum version of SAP UI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.
|
|
193
193
|
*/
|
|
194
|
-
minUI5Version: string;
|
|
194
|
+
minUI5Version: string | string[];
|
|
195
195
|
/**
|
|
196
196
|
* Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component
|
|
197
197
|
*/
|
|
@@ -707,7 +707,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
707
707
|
| "1.60.0"
|
|
708
708
|
| "1.61.0"
|
|
709
709
|
| "1.62.0"
|
|
710
|
-
| "1.63.0"
|
|
710
|
+
| "1.63.0"
|
|
711
|
+
| "1.64.0";
|
|
711
712
|
/**
|
|
712
713
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
713
714
|
*/
|