@ui5/manifest 2.0.2 → 2.1.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 +17 -9
- package/mapping.json +5 -4
- package/package.json +22 -22
- package/schema.json +64 -8
- package/schema_cil.json +4 -3
- package/types/manifest.d.ts +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
|
-
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.
|
|
3
|
+
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
5
|
<a name="Unreleased"></a>
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
-
<a name="v2.0
|
|
9
|
-
## [v2.0
|
|
8
|
+
<a name="v2.1.0"></a>
|
|
9
|
+
## [v2.1.0] - 2025-09-12 (UI5 1.139)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- sap.card: Added new property "header/subtitle"
|
|
13
|
+
- sap.card: Added new property "overflow/subtitle" in an object content item of type "Image"
|
|
14
|
+
- sap.card: Added option for "actions" for all elements of type "status"
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- sap.card: Deprecated property "header/subTitle" (with capital T)
|
|
18
|
+
- sap.card: Deprecated property "overflow/subTitle" (with capital T) in an object content item of type "Image"
|
|
10
19
|
|
|
11
20
|
### Added
|
|
12
21
|
- sap.flp: new property "vizOptions" has been added to provide more options for tile sizes. Only needed for declaration of custom Fiori launchpad tiles.
|
|
@@ -29,8 +38,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.2.html
|
|
|
29
38
|
- sap.flp/tileSize: has been removed in favor of sap.flp/vizOptions/displayFormats
|
|
30
39
|
- sap.flp/type: is optional, defaults to "application"
|
|
31
40
|
|
|
32
|
-
<a name="
|
|
33
|
-
## [
|
|
41
|
+
<a name="v2.0.0"></a>
|
|
42
|
+
## [v2.0.0] - 2025-04-30 (UI5 1.136)
|
|
34
43
|
- sap.ui5/resources: Deprecated "js" property. Only "css" is a valid resource.
|
|
35
44
|
- sap.ui5/routing/targets: Deprecated options that are prefixed with "view", e.g., "viewName". Use options without "view"-prefix instead.
|
|
36
45
|
|
|
@@ -158,10 +167,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.2.html
|
|
|
158
167
|
<a name="v1.48.1"></a>
|
|
159
168
|
## v1.48.1 - 2022-11-10
|
|
160
169
|
|
|
161
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.0
|
|
162
|
-
[v2.0
|
|
163
|
-
[
|
|
164
|
-
[v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
|
|
170
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...HEAD
|
|
171
|
+
[v2.1.0]: https://github.com/SAP/ui5-manifest/compare/v2.0.0...v2.1.0
|
|
172
|
+
[v2.0.0]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v2.0.0
|
|
165
173
|
[v1.72.3]: https://github.com/SAP/ui5-manifest/compare/v1.71.0...v1.72.0
|
|
166
174
|
[v1.71.0]: https://github.com/SAP/ui5-manifest/compare/v1.70.1...v1.71.0
|
|
167
175
|
[v1.70.1]: https://github.com/SAP/ui5-manifest/compare/v1.70.0...v1.70.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"name": "@ui5/manifest",
|
|
3
|
+
"version": "2.1.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
|
+
"prepublishOnly": "git push --follow-tags",
|
|
11
|
+
"release-note": "",
|
|
12
|
+
"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
24
|
}
|
package/schema.json
CHANGED
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"1.70.1",
|
|
91
91
|
"1.71.0",
|
|
92
92
|
"1.72.0",
|
|
93
|
-
"
|
|
94
|
-
"2.0
|
|
93
|
+
"2.0.0",
|
|
94
|
+
"2.1.0"
|
|
95
95
|
]
|
|
96
96
|
},
|
|
97
97
|
"start_url": {
|
|
@@ -1083,11 +1083,11 @@
|
|
|
1083
1083
|
"type": "object",
|
|
1084
1084
|
"properties": {
|
|
1085
1085
|
"displayFormats": {
|
|
1086
|
-
"description": "Defines what display formats a visualization type can render itself in
|
|
1086
|
+
"description": "Defines what display formats a visualization type can render itself in",
|
|
1087
1087
|
"type": "object",
|
|
1088
1088
|
"properties": {
|
|
1089
1089
|
"supported": {
|
|
1090
|
-
"description": "Lists all display formats the visualization type is capable of rendering itself in. The order of items may be used as preference definition (most important first).
|
|
1090
|
+
"description": "Lists all display formats the visualization type is capable of rendering itself in. The order of items may be used as preference definition (most important first).",
|
|
1091
1091
|
"type": "array",
|
|
1092
1092
|
"default": [
|
|
1093
1093
|
"standard"
|
|
@@ -4007,10 +4007,15 @@
|
|
|
4007
4007
|
"description": "The title",
|
|
4008
4008
|
"type": "string"
|
|
4009
4009
|
},
|
|
4010
|
-
"
|
|
4011
|
-
"description": "The
|
|
4010
|
+
"subtitle": {
|
|
4011
|
+
"description": "The subtitle",
|
|
4012
4012
|
"type": "string"
|
|
4013
4013
|
},
|
|
4014
|
+
"subTitle": {
|
|
4015
|
+
"description": "The subtitle",
|
|
4016
|
+
"type": "string",
|
|
4017
|
+
"deprecated": true
|
|
4018
|
+
},
|
|
4014
4019
|
"verticalPosition": {
|
|
4015
4020
|
"description": "The vertical alignment of the texts",
|
|
4016
4021
|
"type": "string"
|
|
@@ -4591,6 +4596,13 @@
|
|
|
4591
4596
|
"$ref": "#/$defs/simpleBinding"
|
|
4592
4597
|
}
|
|
4593
4598
|
]
|
|
4599
|
+
},
|
|
4600
|
+
"actions": {
|
|
4601
|
+
"description": "Actions that can be applied on the status",
|
|
4602
|
+
"type": "array",
|
|
4603
|
+
"items": {
|
|
4604
|
+
"$ref": "#/$defs/action"
|
|
4605
|
+
}
|
|
4594
4606
|
}
|
|
4595
4607
|
}
|
|
4596
4608
|
},
|
|
@@ -5001,7 +5013,7 @@
|
|
|
5001
5013
|
],
|
|
5002
5014
|
"default": 3
|
|
5003
5015
|
},
|
|
5004
|
-
"
|
|
5016
|
+
"subtitle": {
|
|
5005
5017
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5006
5018
|
"$ref": "#/$defs/i18n_key_string",
|
|
5007
5019
|
"i18n": {
|
|
@@ -5009,7 +5021,16 @@
|
|
|
5009
5021
|
"comment": "Header subtitle"
|
|
5010
5022
|
}
|
|
5011
5023
|
},
|
|
5012
|
-
"
|
|
5024
|
+
"subTitle": {
|
|
5025
|
+
"description": "[Deprecated] Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5026
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5027
|
+
"i18n": {
|
|
5028
|
+
"type": "XTIT",
|
|
5029
|
+
"comment": "Header subtitle"
|
|
5030
|
+
},
|
|
5031
|
+
"deprecated": true
|
|
5032
|
+
},
|
|
5033
|
+
"subtitleMaxLines": {
|
|
5013
5034
|
"description": "[Experimental] Limit the number of lines for the sub title",
|
|
5014
5035
|
"oneOf": [
|
|
5015
5036
|
{
|
|
@@ -5021,6 +5042,19 @@
|
|
|
5021
5042
|
],
|
|
5022
5043
|
"default": 2
|
|
5023
5044
|
},
|
|
5045
|
+
"subTitleMaxLines": {
|
|
5046
|
+
"description": "[Deprecated] Limit the number of lines for the sub title",
|
|
5047
|
+
"oneOf": [
|
|
5048
|
+
{
|
|
5049
|
+
"type": "number"
|
|
5050
|
+
},
|
|
5051
|
+
{
|
|
5052
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5053
|
+
}
|
|
5054
|
+
],
|
|
5055
|
+
"deprecated": true,
|
|
5056
|
+
"default": 2
|
|
5057
|
+
},
|
|
5024
5058
|
"actions": {
|
|
5025
5059
|
"description": "Represents a description of the actions that can be applied on a part of a card",
|
|
5026
5060
|
"type": "array",
|
|
@@ -5132,6 +5166,15 @@
|
|
|
5132
5166
|
"default": 3
|
|
5133
5167
|
},
|
|
5134
5168
|
"subTitle": {
|
|
5169
|
+
"description": "[Deprecated] Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5170
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5171
|
+
"deprecated": true,
|
|
5172
|
+
"i18n": {
|
|
5173
|
+
"type": "XTIT",
|
|
5174
|
+
"comment": "Header subtitle"
|
|
5175
|
+
}
|
|
5176
|
+
},
|
|
5177
|
+
"subtitle": {
|
|
5135
5178
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5136
5179
|
"$ref": "#/$defs/i18n_key_string",
|
|
5137
5180
|
"i18n": {
|
|
@@ -5140,6 +5183,19 @@
|
|
|
5140
5183
|
}
|
|
5141
5184
|
},
|
|
5142
5185
|
"subTitleMaxLines": {
|
|
5186
|
+
"description": "[Deprecated] Limit the number of lines for the sub title",
|
|
5187
|
+
"oneOf": [
|
|
5188
|
+
{
|
|
5189
|
+
"type": "number"
|
|
5190
|
+
},
|
|
5191
|
+
{
|
|
5192
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5193
|
+
}
|
|
5194
|
+
],
|
|
5195
|
+
"deprecated": true,
|
|
5196
|
+
"default": 2
|
|
5197
|
+
},
|
|
5198
|
+
"subtitleMaxLines": {
|
|
5143
5199
|
"description": "[Experimental] Limit the number of lines for the sub title",
|
|
5144
5200
|
"oneOf": [
|
|
5145
5201
|
{
|
package/schema_cil.json
CHANGED
|
@@ -46,7 +46,8 @@
|
|
|
46
46
|
"1.26.0",
|
|
47
47
|
"1.27.0",
|
|
48
48
|
"1.28.0",
|
|
49
|
-
"2.0.
|
|
49
|
+
"2.0.0",
|
|
50
|
+
"2.1.0"
|
|
50
51
|
]
|
|
51
52
|
},
|
|
52
53
|
"start_url": {
|
|
@@ -748,11 +749,11 @@
|
|
|
748
749
|
"type": "object",
|
|
749
750
|
"properties": {
|
|
750
751
|
"displayFormats": {
|
|
751
|
-
"description": "Defines what display formats a visualization type can render itself in
|
|
752
|
+
"description": "Defines what display formats a visualization type can render itself in",
|
|
752
753
|
"type": "object",
|
|
753
754
|
"properties": {
|
|
754
755
|
"supported": {
|
|
755
|
-
"description": "Lists all display formats the visualization type is capable of rendering itself in. The order of items may be used as preference definition (most important first).
|
|
756
|
+
"description": "Lists all display formats the visualization type is capable of rendering itself in. The order of items may be used as preference definition (most important first).",
|
|
756
757
|
"type": "array",
|
|
757
758
|
"default": [
|
|
758
759
|
"standard"
|
package/types/manifest.d.ts
CHANGED
|
@@ -715,7 +715,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
715
715
|
| "1.70.1"
|
|
716
716
|
| "1.71.0"
|
|
717
717
|
| "1.72.0"
|
|
718
|
-
| "
|
|
718
|
+
| "2.0.0"
|
|
719
|
+
| "2.1.0";
|
|
719
720
|
/**
|
|
720
721
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
721
722
|
*/
|
|
@@ -2379,11 +2380,11 @@ export interface JSONSchemaForSAPFLPNamespace {
|
|
|
2379
2380
|
*/
|
|
2380
2381
|
vizOptions?: {
|
|
2381
2382
|
/**
|
|
2382
|
-
* Defines what display formats a visualization type can render itself in
|
|
2383
|
+
* Defines what display formats a visualization type can render itself in
|
|
2383
2384
|
*/
|
|
2384
2385
|
displayFormats?: {
|
|
2385
2386
|
/**
|
|
2386
|
-
* Lists all display formats the visualization type is capable of rendering itself in. The order of items may be used as preference definition (most important first).
|
|
2387
|
+
* Lists all display formats the visualization type is capable of rendering itself in. The order of items may be used as preference definition (most important first).
|
|
2387
2388
|
*/
|
|
2388
2389
|
supported?: DisplayFormatEnum[];
|
|
2389
2390
|
default?: DisplayFormatEnum;
|