@ui5/manifest 1.73.0 → 1.75.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 +18 -4
- package/mapping.json +4 -2
- package/package.json +22 -22
- package/schema.json +56 -11
- package/schema_cil.json +45 -9
- package/types/manifest.d.ts +24 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,8 +5,20 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
5
5
|
<a name="Unreleased"></a>
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
-
<a name="v1.
|
|
9
|
-
## [v1.
|
|
8
|
+
<a name="v1.75.0"></a>
|
|
9
|
+
## [v1.75.0] - 2025-06-04 (UI5 1.137)
|
|
10
|
+
|
|
11
|
+
<a name="v1.74.0"></a>
|
|
12
|
+
## [v1.74.0] - 2025-06-04 (UI5 1.137)
|
|
13
|
+
### Added
|
|
14
|
+
- sap.card: Added option for "actions" for all elements of type "status"
|
|
15
|
+
- sap.flp: new property "vizOptions" has been added to provide more options for tile sizes. Only needed for declaration of custom Fiori launchpad tiles.
|
|
16
|
+
- sap.flp/origin: has been deprecated, as it is not used anymore
|
|
17
|
+
- sap.flp/tileSize: has been deprecated in favor of sap.flp/vizOptions/displayFormats
|
|
18
|
+
- sap.flp/type: is optional, defaults to "application"
|
|
19
|
+
|
|
20
|
+
<a name="v1.73.1"></a>
|
|
21
|
+
## [v1.73.1] - 2025-04-30 (UI5 1.136)
|
|
10
22
|
- sap.ui5/resources: Deprecated "js" property. Only "css" is a valid resource.
|
|
11
23
|
- sap.ui5/routing/targets: Deprecated options that are prefixed with "view", e.g., "viewName". Use options without "view"-prefix instead.
|
|
12
24
|
|
|
@@ -134,8 +146,10 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
134
146
|
<a name="v1.48.1"></a>
|
|
135
147
|
## v1.48.1 - 2022-11-10
|
|
136
148
|
|
|
137
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.
|
|
138
|
-
[v1.
|
|
149
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.75.0...HEAD
|
|
150
|
+
[v1.75.0]: https://github.com/SAP/ui5-manifest/compare/v1.74.0...v1.75.0
|
|
151
|
+
[v1.74.0]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.74.0
|
|
152
|
+
[v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
|
|
139
153
|
[v1.72.3]: https://github.com/SAP/ui5-manifest/compare/v1.71.0...v1.72.0
|
|
140
154
|
[v1.71.0]: https://github.com/SAP/ui5-manifest/compare/v1.70.1...v1.71.0
|
|
141
155
|
[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": "1.75.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,7 +90,8 @@
|
|
|
90
90
|
"1.70.1",
|
|
91
91
|
"1.71.0",
|
|
92
92
|
"1.72.0",
|
|
93
|
-
"1.73.
|
|
93
|
+
"1.73.1",
|
|
94
|
+
"1.74.0"
|
|
94
95
|
]
|
|
95
96
|
},
|
|
96
97
|
"start_url": {
|
|
@@ -1190,9 +1191,6 @@
|
|
|
1190
1191
|
"title": "JSON schema for SAP.FLP Namespace",
|
|
1191
1192
|
"description": "Represents FLP specific attributes",
|
|
1192
1193
|
"type": "object",
|
|
1193
|
-
"required": [
|
|
1194
|
-
"type"
|
|
1195
|
-
],
|
|
1196
1194
|
"additionalProperties": false,
|
|
1197
1195
|
"properties": {
|
|
1198
1196
|
"_version": {
|
|
@@ -1201,16 +1199,43 @@
|
|
|
1201
1199
|
"enum": [
|
|
1202
1200
|
"1.1.0",
|
|
1203
1201
|
"1.2.0",
|
|
1204
|
-
"1.3.0"
|
|
1202
|
+
"1.3.0",
|
|
1203
|
+
"1.4.0"
|
|
1205
1204
|
]
|
|
1206
1205
|
},
|
|
1207
1206
|
"tileSize": {
|
|
1208
|
-
"description": "Represents size of the tile",
|
|
1207
|
+
"description": "Represents size of the tile. Deprecated, use 'vizOptions' instead.",
|
|
1209
1208
|
"type": "string",
|
|
1210
1209
|
"enum": [
|
|
1211
1210
|
"1x1",
|
|
1212
1211
|
"1x2"
|
|
1213
|
-
]
|
|
1212
|
+
],
|
|
1213
|
+
"deprecated": true
|
|
1214
|
+
},
|
|
1215
|
+
"vizOptions": {
|
|
1216
|
+
"description": "Options a visualization (launchpad tile) is offering with regards to rendering, for example",
|
|
1217
|
+
"type": "object",
|
|
1218
|
+
"properties": {
|
|
1219
|
+
"displayFormats": {
|
|
1220
|
+
"description": "Defines what display formats a visualization type can render itself in. The value 'default' is deprecated - please use 'standard' instead!",
|
|
1221
|
+
"type": "object",
|
|
1222
|
+
"properties": {
|
|
1223
|
+
"supported": {
|
|
1224
|
+
"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). The value 'default' is deprecated - please use 'standard' instead!",
|
|
1225
|
+
"type": "array",
|
|
1226
|
+
"default": [
|
|
1227
|
+
"standard"
|
|
1228
|
+
],
|
|
1229
|
+
"items": {
|
|
1230
|
+
"$ref": "#/$defs/displayFormatEnum"
|
|
1231
|
+
}
|
|
1232
|
+
},
|
|
1233
|
+
"default": {
|
|
1234
|
+
"$ref": "#/$defs/displayFormatEnum"
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1214
1239
|
},
|
|
1215
1240
|
"type": {
|
|
1216
1241
|
"description": "Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'",
|
|
@@ -1219,7 +1244,8 @@
|
|
|
1219
1244
|
"application",
|
|
1220
1245
|
"tile",
|
|
1221
1246
|
"plugin"
|
|
1222
|
-
]
|
|
1247
|
+
],
|
|
1248
|
+
"default": "application"
|
|
1223
1249
|
},
|
|
1224
1250
|
"config": {
|
|
1225
1251
|
"description": "Represents configuration parameters of the FLP entry",
|
|
@@ -1233,7 +1259,7 @@
|
|
|
1233
1259
|
}
|
|
1234
1260
|
},
|
|
1235
1261
|
"origin": {
|
|
1236
|
-
"description": "Represents the original tile and target mapping which resulted in this app",
|
|
1262
|
+
"description": "Represents the original tile and target mapping which resulted in this app. Deprecated.",
|
|
1237
1263
|
"type": "object",
|
|
1238
1264
|
"additionalProperties": false,
|
|
1239
1265
|
"properties": {
|
|
@@ -1245,7 +1271,8 @@
|
|
|
1245
1271
|
"description": "Represents the original target mapping which resulted in this app",
|
|
1246
1272
|
"type": "string"
|
|
1247
1273
|
}
|
|
1248
|
-
}
|
|
1274
|
+
},
|
|
1275
|
+
"deprecated": true
|
|
1249
1276
|
}
|
|
1250
1277
|
}
|
|
1251
1278
|
},
|
|
@@ -2011,7 +2038,8 @@
|
|
|
2011
2038
|
"1.50.0",
|
|
2012
2039
|
"1.51.0",
|
|
2013
2040
|
"1.52.0",
|
|
2014
|
-
"1.53.0"
|
|
2041
|
+
"1.53.0",
|
|
2042
|
+
"1.54.0"
|
|
2015
2043
|
]
|
|
2016
2044
|
},
|
|
2017
2045
|
"designtime": {
|
|
@@ -5202,6 +5230,13 @@
|
|
|
5202
5230
|
"$ref": "#/$defs/simpleBinding"
|
|
5203
5231
|
}
|
|
5204
5232
|
]
|
|
5233
|
+
},
|
|
5234
|
+
"actions": {
|
|
5235
|
+
"description": "Actions that can be applied on the status",
|
|
5236
|
+
"type": "array",
|
|
5237
|
+
"items": {
|
|
5238
|
+
"$ref": "#/$defs/action"
|
|
5239
|
+
}
|
|
5205
5240
|
}
|
|
5206
5241
|
}
|
|
5207
5242
|
},
|
|
@@ -7517,6 +7552,16 @@
|
|
|
7517
7552
|
}
|
|
7518
7553
|
}
|
|
7519
7554
|
},
|
|
7555
|
+
"displayFormatEnum": {
|
|
7556
|
+
"type": "string",
|
|
7557
|
+
"enum": [
|
|
7558
|
+
"standard",
|
|
7559
|
+
"standardWide",
|
|
7560
|
+
"flat",
|
|
7561
|
+
"flatWide",
|
|
7562
|
+
"compact"
|
|
7563
|
+
]
|
|
7564
|
+
},
|
|
7520
7565
|
"defaultLayoutType_def": {
|
|
7521
7566
|
"type": "string"
|
|
7522
7567
|
},
|
package/schema_cil.json
CHANGED
|
@@ -834,9 +834,6 @@
|
|
|
834
834
|
"title": "JSON schema for SAP.FLP Namespace",
|
|
835
835
|
"description": "Represents FLP specific attributes",
|
|
836
836
|
"type": "object",
|
|
837
|
-
"required": [
|
|
838
|
-
"type"
|
|
839
|
-
],
|
|
840
837
|
"additionalProperties": false,
|
|
841
838
|
"properties": {
|
|
842
839
|
"_version": {
|
|
@@ -845,16 +842,43 @@
|
|
|
845
842
|
"enum": [
|
|
846
843
|
"1.1.0",
|
|
847
844
|
"1.2.0",
|
|
848
|
-
"1.3.0"
|
|
845
|
+
"1.3.0",
|
|
846
|
+
"1.4.0"
|
|
849
847
|
]
|
|
850
848
|
},
|
|
851
849
|
"tileSize": {
|
|
852
|
-
"description": "Represents size of the tile",
|
|
850
|
+
"description": "Represents size of the tile. Deprecated, use 'vizOptions' instead.",
|
|
853
851
|
"type": "string",
|
|
854
852
|
"enum": [
|
|
855
853
|
"1x1",
|
|
856
854
|
"1x2"
|
|
857
|
-
]
|
|
855
|
+
],
|
|
856
|
+
"deprecated": true
|
|
857
|
+
},
|
|
858
|
+
"vizOptions": {
|
|
859
|
+
"description": "Options a visualization (launchpad tile) is offering with regards to rendering, for example",
|
|
860
|
+
"type": "object",
|
|
861
|
+
"properties": {
|
|
862
|
+
"displayFormats": {
|
|
863
|
+
"description": "Defines what display formats a visualization type can render itself in. The value 'default' is deprecated - please use 'standard' instead!",
|
|
864
|
+
"type": "object",
|
|
865
|
+
"properties": {
|
|
866
|
+
"supported": {
|
|
867
|
+
"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). The value 'default' is deprecated - please use 'standard' instead!",
|
|
868
|
+
"type": "array",
|
|
869
|
+
"default": [
|
|
870
|
+
"standard"
|
|
871
|
+
],
|
|
872
|
+
"items": {
|
|
873
|
+
"$ref": "#/$defs/displayFormatEnum"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"default": {
|
|
877
|
+
"$ref": "#/$defs/displayFormatEnum"
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
}
|
|
858
882
|
},
|
|
859
883
|
"type": {
|
|
860
884
|
"description": "Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'",
|
|
@@ -863,7 +887,8 @@
|
|
|
863
887
|
"application",
|
|
864
888
|
"tile",
|
|
865
889
|
"plugin"
|
|
866
|
-
]
|
|
890
|
+
],
|
|
891
|
+
"default": "application"
|
|
867
892
|
},
|
|
868
893
|
"config": {
|
|
869
894
|
"description": "Represents configuration parameters of the FLP entry",
|
|
@@ -877,7 +902,7 @@
|
|
|
877
902
|
}
|
|
878
903
|
},
|
|
879
904
|
"origin": {
|
|
880
|
-
"description": "Represents the original tile and target mapping which resulted in this app",
|
|
905
|
+
"description": "Represents the original tile and target mapping which resulted in this app. Deprecated.",
|
|
881
906
|
"type": "object",
|
|
882
907
|
"additionalProperties": false,
|
|
883
908
|
"properties": {
|
|
@@ -889,7 +914,8 @@
|
|
|
889
914
|
"description": "Represents the original target mapping which resulted in this app",
|
|
890
915
|
"type": "string"
|
|
891
916
|
}
|
|
892
|
-
}
|
|
917
|
+
},
|
|
918
|
+
"deprecated": true
|
|
893
919
|
}
|
|
894
920
|
}
|
|
895
921
|
},
|
|
@@ -2049,6 +2075,16 @@
|
|
|
2049
2075
|
}
|
|
2050
2076
|
}
|
|
2051
2077
|
},
|
|
2078
|
+
"displayFormatEnum": {
|
|
2079
|
+
"type": "string",
|
|
2080
|
+
"enum": [
|
|
2081
|
+
"standard",
|
|
2082
|
+
"standardWide",
|
|
2083
|
+
"flat",
|
|
2084
|
+
"flatWide",
|
|
2085
|
+
"compact"
|
|
2086
|
+
]
|
|
2087
|
+
},
|
|
2052
2088
|
"defaultLayoutType_def": {
|
|
2053
2089
|
"type": "string"
|
|
2054
2090
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -612,6 +612,7 @@ export type RootViewDef =
|
|
|
612
612
|
* Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute
|
|
613
613
|
*/
|
|
614
614
|
export type ComponentBindingDef = string;
|
|
615
|
+
export type DisplayFormatEnum = "standard" | "standardWide" | "flat" | "flatWide" | "compact";
|
|
615
616
|
/**
|
|
616
617
|
* Represents the card default grid size in columns and rows
|
|
617
618
|
*/
|
|
@@ -741,7 +742,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
741
742
|
| "1.70.1"
|
|
742
743
|
| "1.71.0"
|
|
743
744
|
| "1.72.0"
|
|
744
|
-
| "1.73.
|
|
745
|
+
| "1.73.1"
|
|
746
|
+
| "1.74.0";
|
|
745
747
|
/**
|
|
746
748
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
747
749
|
*/
|
|
@@ -2529,15 +2531,32 @@ export interface JSONSchemaForSAPFLPNamespace {
|
|
|
2529
2531
|
/**
|
|
2530
2532
|
* Represents attributes format version. It is managed by namespace owner
|
|
2531
2533
|
*/
|
|
2532
|
-
_version?: "1.1.0" | "1.2.0" | "1.3.0";
|
|
2534
|
+
_version?: "1.1.0" | "1.2.0" | "1.3.0" | "1.4.0";
|
|
2533
2535
|
/**
|
|
2534
|
-
* Represents size of the tile
|
|
2536
|
+
* Represents size of the tile. Deprecated, use 'vizOptions' instead.
|
|
2535
2537
|
*/
|
|
2536
2538
|
tileSize?: "1x1" | "1x2";
|
|
2539
|
+
/**
|
|
2540
|
+
* Options a visualization (launchpad tile) is offering with regards to rendering, for example
|
|
2541
|
+
*/
|
|
2542
|
+
vizOptions?: {
|
|
2543
|
+
/**
|
|
2544
|
+
* Defines what display formats a visualization type can render itself in. The value 'default' is deprecated - please use 'standard' instead!
|
|
2545
|
+
*/
|
|
2546
|
+
displayFormats?: {
|
|
2547
|
+
/**
|
|
2548
|
+
* 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). The value 'default' is deprecated - please use 'standard' instead!
|
|
2549
|
+
*/
|
|
2550
|
+
supported?: DisplayFormatEnum[];
|
|
2551
|
+
default?: DisplayFormatEnum;
|
|
2552
|
+
[k: string]: unknown;
|
|
2553
|
+
};
|
|
2554
|
+
[k: string]: unknown;
|
|
2555
|
+
};
|
|
2537
2556
|
/**
|
|
2538
2557
|
* Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'
|
|
2539
2558
|
*/
|
|
2540
|
-
type
|
|
2559
|
+
type?: "application" | "tile" | "plugin";
|
|
2541
2560
|
/**
|
|
2542
2561
|
* Represents configuration parameters of the FLP entry
|
|
2543
2562
|
*/
|
|
@@ -2553,7 +2572,7 @@ export interface JSONSchemaForSAPFLPNamespace {
|
|
|
2553
2572
|
};
|
|
2554
2573
|
};
|
|
2555
2574
|
/**
|
|
2556
|
-
* Represents the original tile and target mapping which resulted in this app
|
|
2575
|
+
* Represents the original tile and target mapping which resulted in this app. Deprecated.
|
|
2557
2576
|
*/
|
|
2558
2577
|
origin?: {
|
|
2559
2578
|
/**
|