@ui5/manifest 2.1.1 → 2.3.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 +22 -1
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +96 -11
- package/schema_cil.json +10 -4
- package/types/manifest.d.ts +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ 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="v2.3.0"></a>
|
|
9
|
+
## [v2.3.0] - 2025-12-08 (UI5 1.142)
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- sap.ovp: "fixed" value in the "containerLayout" property is deprecated. This will indicate to developers that they should no longer use the "fixed" option and "resizable" layout will be selected by default. Default layout for the 'containerLayout' will be 'resizable'.
|
|
13
|
+
|
|
14
|
+
<a name="v2.2.0"></a>
|
|
15
|
+
## [v2.2.0] - 2025-12-08 (UI5 1.141)
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- sap.card: New property "configuration/childCards" which holds a list of Configuration.ChildCard which represents a child card that can be opened from the main card
|
|
19
|
+
- sap.card: New property "showCardActionParameters/childCardKey" to refer to a child card which to be shown
|
|
20
|
+
- sap.card: New property "header/icon/state" which can be used to apply semantic state to the icon in the header
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- sap.card: Added valiadtion for allowed combinations of "header/icon" properties
|
|
24
|
+
- sap.card: Deprecated property "showCardActionParameters/manifest". Use "showCardActionParameters/childCardKey" instead.
|
|
25
|
+
|
|
8
26
|
<a name="v2.1.1"></a>
|
|
9
27
|
## [v2.1.1] - 2025-12-08 (UI5 1.140)
|
|
10
28
|
|
|
@@ -28,6 +46,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
28
46
|
|
|
29
47
|
### Added
|
|
30
48
|
- sap.flp: new property "vizOptions" has been added to provide more options for tile sizes. Only needed for declaration of custom Fiori launchpad tiles.
|
|
49
|
+
- sap.ui5/flexBundle: new property explicitly flagging if a flexibility-bundle.json is part of the built application.
|
|
31
50
|
|
|
32
51
|
### Removed
|
|
33
52
|
- sap.ui5/resource:
|
|
@@ -176,7 +195,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
176
195
|
<a name="v1.48.1"></a>
|
|
177
196
|
## v1.48.1 - 2022-11-10
|
|
178
197
|
|
|
179
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.
|
|
198
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v2.3.0...HEAD
|
|
199
|
+
[v2.3.0]: https://github.com/SAP/ui5-manifest/compare/v2.2.0...v2.3.0
|
|
200
|
+
[v2.2.0]: https://github.com/SAP/ui5-manifest/compare/v2.1.1...v2.2.0
|
|
180
201
|
[v2.1.1]: https://github.com/SAP/ui5-manifest/compare/v2.1.0...v2.1.1
|
|
181
202
|
[v2.1.0]: https://github.com/SAP/ui5-manifest/compare/v2.0.0...v2.1.0
|
|
182
203
|
[v2.0.0]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v2.0.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -92,7 +92,9 @@
|
|
|
92
92
|
"1.72.0",
|
|
93
93
|
"2.0.0",
|
|
94
94
|
"2.1.0",
|
|
95
|
-
"2.1.1"
|
|
95
|
+
"2.1.1",
|
|
96
|
+
"2.2.0",
|
|
97
|
+
"2.3.0"
|
|
96
98
|
]
|
|
97
99
|
},
|
|
98
100
|
"start_url": {
|
|
@@ -817,6 +819,10 @@
|
|
|
817
819
|
}
|
|
818
820
|
}
|
|
819
821
|
},
|
|
822
|
+
"flexBundle": {
|
|
823
|
+
"description": "Represents an indicator whether a flexibility bundle was created and is within the application sources. This property is set by the building tool.",
|
|
824
|
+
"type": "boolean"
|
|
825
|
+
},
|
|
820
826
|
"flexExtensionPointEnabled": {
|
|
821
827
|
"description": "Represents an indicator whether app variant is flex extension point enabled",
|
|
822
828
|
"type": "boolean",
|
|
@@ -1183,10 +1189,16 @@
|
|
|
1183
1189
|
"containerLayout": {
|
|
1184
1190
|
"description": "Represents the layout of the card container",
|
|
1185
1191
|
"type": "string",
|
|
1186
|
-
"default": "
|
|
1187
|
-
"
|
|
1188
|
-
|
|
1189
|
-
|
|
1192
|
+
"default": "resizable",
|
|
1193
|
+
"oneOf": [
|
|
1194
|
+
{
|
|
1195
|
+
"const": "resizable"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"const": "fixed",
|
|
1199
|
+
"deprecated": true,
|
|
1200
|
+
"description": "[Deprecated] Value fixed is deprecated"
|
|
1201
|
+
}
|
|
1190
1202
|
]
|
|
1191
1203
|
},
|
|
1192
1204
|
"showDateInRelativeFormat": {
|
|
@@ -1691,7 +1703,7 @@
|
|
|
1691
1703
|
"type": "object"
|
|
1692
1704
|
},
|
|
1693
1705
|
"loadingPlaceholders": {
|
|
1694
|
-
"description": "[Experimental] Object
|
|
1706
|
+
"description": "[Experimental] Object that will represent the loading placeholder of the card",
|
|
1695
1707
|
"type": "object",
|
|
1696
1708
|
"properties": {
|
|
1697
1709
|
"delay": {
|
|
@@ -1699,6 +1711,13 @@
|
|
|
1699
1711
|
"type": "number"
|
|
1700
1712
|
}
|
|
1701
1713
|
}
|
|
1714
|
+
},
|
|
1715
|
+
"childCards": {
|
|
1716
|
+
"description": "[Experimental] Map of child cards",
|
|
1717
|
+
"type": "object",
|
|
1718
|
+
"additionalProperties": {
|
|
1719
|
+
"$ref": "#/$defs/Configuration.ChildCard"
|
|
1720
|
+
}
|
|
1702
1721
|
}
|
|
1703
1722
|
}
|
|
1704
1723
|
},
|
|
@@ -2851,12 +2870,14 @@
|
|
|
2851
2870
|
"description": "Parameters for ShowCard action",
|
|
2852
2871
|
"type": "object",
|
|
2853
2872
|
"additionalProperties": false,
|
|
2854
|
-
"required": [
|
|
2855
|
-
"manifest"
|
|
2856
|
-
],
|
|
2857
2873
|
"properties": {
|
|
2874
|
+
"childCardKey": {
|
|
2875
|
+
"description": "The key of the card to be shown",
|
|
2876
|
+
"type": "string"
|
|
2877
|
+
},
|
|
2858
2878
|
"manifest": {
|
|
2859
|
-
"
|
|
2879
|
+
"deprecated": true,
|
|
2880
|
+
"description": "[Deprecated] Child card manifest",
|
|
2860
2881
|
"oneOf": [
|
|
2861
2882
|
{
|
|
2862
2883
|
"type": "string"
|
|
@@ -4847,11 +4868,61 @@
|
|
|
4847
4868
|
}
|
|
4848
4869
|
]
|
|
4849
4870
|
},
|
|
4871
|
+
"state": {
|
|
4872
|
+
"description": "Defines the state of the icon",
|
|
4873
|
+
"oneOf": [
|
|
4874
|
+
{
|
|
4875
|
+
"$ref": "#/$defs/state"
|
|
4876
|
+
},
|
|
4877
|
+
{
|
|
4878
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4879
|
+
}
|
|
4880
|
+
]
|
|
4881
|
+
},
|
|
4850
4882
|
"visible": {
|
|
4851
4883
|
"description": "Visibility of the icon",
|
|
4852
4884
|
"$ref": "#/$defs/visibility"
|
|
4853
4885
|
}
|
|
4854
|
-
}
|
|
4886
|
+
},
|
|
4887
|
+
"allOf": [
|
|
4888
|
+
{
|
|
4889
|
+
"anyOf": [
|
|
4890
|
+
{
|
|
4891
|
+
"required": [
|
|
4892
|
+
"src"
|
|
4893
|
+
]
|
|
4894
|
+
},
|
|
4895
|
+
{
|
|
4896
|
+
"required": [
|
|
4897
|
+
"initials"
|
|
4898
|
+
]
|
|
4899
|
+
},
|
|
4900
|
+
{
|
|
4901
|
+
"required": [
|
|
4902
|
+
"state"
|
|
4903
|
+
]
|
|
4904
|
+
}
|
|
4905
|
+
]
|
|
4906
|
+
},
|
|
4907
|
+
{
|
|
4908
|
+
"not": {
|
|
4909
|
+
"anyOf": [
|
|
4910
|
+
{
|
|
4911
|
+
"required": [
|
|
4912
|
+
"src",
|
|
4913
|
+
"state"
|
|
4914
|
+
]
|
|
4915
|
+
},
|
|
4916
|
+
{
|
|
4917
|
+
"required": [
|
|
4918
|
+
"initials",
|
|
4919
|
+
"state"
|
|
4920
|
+
]
|
|
4921
|
+
}
|
|
4922
|
+
]
|
|
4923
|
+
}
|
|
4924
|
+
}
|
|
4925
|
+
]
|
|
4855
4926
|
},
|
|
4856
4927
|
"action": {
|
|
4857
4928
|
"description": "Represents actions that can be applied on card elements",
|
|
@@ -5937,6 +6008,20 @@
|
|
|
5937
6008
|
}
|
|
5938
6009
|
}
|
|
5939
6010
|
},
|
|
6011
|
+
"Configuration.ChildCard": {
|
|
6012
|
+
"description": "Represents a configuration for a child card",
|
|
6013
|
+
"type": "object",
|
|
6014
|
+
"additionalProperties": false,
|
|
6015
|
+
"required": [
|
|
6016
|
+
"manifest"
|
|
6017
|
+
],
|
|
6018
|
+
"properties": {
|
|
6019
|
+
"manifest": {
|
|
6020
|
+
"description": "The manifest of the child card",
|
|
6021
|
+
"type": "string"
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
6024
|
+
},
|
|
5940
6025
|
"Configuration.NoData": {
|
|
5941
6026
|
"description": "Represents a configuration for a NoData",
|
|
5942
6027
|
"type": "object",
|
package/schema_cil.json
CHANGED
|
@@ -848,10 +848,16 @@
|
|
|
848
848
|
"containerLayout": {
|
|
849
849
|
"description": "Represents the layout of the card container",
|
|
850
850
|
"type": "string",
|
|
851
|
-
"default": "
|
|
852
|
-
"
|
|
853
|
-
|
|
854
|
-
|
|
851
|
+
"default": "resizable",
|
|
852
|
+
"oneOf": [
|
|
853
|
+
{
|
|
854
|
+
"const": "resizable"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"const": "fixed",
|
|
858
|
+
"deprecated": true,
|
|
859
|
+
"description": "[Deprecated] Value fixed is deprecated"
|
|
860
|
+
}
|
|
855
861
|
]
|
|
856
862
|
},
|
|
857
863
|
"showDateInRelativeFormat": {
|
package/types/manifest.d.ts
CHANGED
|
@@ -347,6 +347,10 @@ export type JSONSchemaForSAPUI5Namespace = {
|
|
|
347
347
|
commands?: {
|
|
348
348
|
[k: string]: Command;
|
|
349
349
|
};
|
|
350
|
+
/**
|
|
351
|
+
* Represents an indicator whether a flexibility bundle was created and is within the application sources. This property is set by the building tool.
|
|
352
|
+
*/
|
|
353
|
+
flexBundle?: boolean;
|
|
350
354
|
/**
|
|
351
355
|
* Represents an indicator whether app variant is flex extension point enabled
|
|
352
356
|
*/
|
|
@@ -717,7 +721,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
717
721
|
| "1.72.0"
|
|
718
722
|
| "2.0.0"
|
|
719
723
|
| "2.1.0"
|
|
720
|
-
| "2.1.1"
|
|
724
|
+
| "2.1.1"
|
|
725
|
+
| "2.2.0"
|
|
726
|
+
| "2.3.0";
|
|
721
727
|
/**
|
|
722
728
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
723
729
|
*/
|
|
@@ -2447,7 +2453,7 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2447
2453
|
/**
|
|
2448
2454
|
* Represents the layout of the card container
|
|
2449
2455
|
*/
|
|
2450
|
-
containerLayout?: "
|
|
2456
|
+
containerLayout?: ("resizable" | "fixed") & string;
|
|
2451
2457
|
/**
|
|
2452
2458
|
* Represents a switch to Enable or disable Relative or Normal date formating in ovp application
|
|
2453
2459
|
*/
|