@ui5/manifest 2.7.0 → 2.9.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 +10 -5
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +100 -5
- package/schema_cil.json +81 -0
- package/types/manifest.d.ts +77 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,17 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
4
4
|
|
|
5
5
|
<a name="Unreleased"></a>
|
|
6
6
|
|
|
7
|
-
<a name="v2.
|
|
8
|
-
## [v2.
|
|
7
|
+
<a name="v2.9.0"></a>
|
|
8
|
+
## [v2.9.0] - 2026-06-11 (UI5 1.149)
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
### Added
|
|
11
|
+
- sap.ovp: Added `controlConfiguration` property to support V4 filter field configurations via annotation path, including `defaultValues` and `operatorConfiguration`
|
|
12
|
+
|
|
13
|
+
<a name="v2.8.0"></a>
|
|
14
|
+
## [v2.8.0] - 2026-05-04 (UI5 1.148)
|
|
15
|
+
## [Unreleased]: https://github.com/UI5/manifest/compare/v2.9.0...HEAD
|
|
16
|
+
[v2.9.0]: https://github.com/UI5/manifest/compare/v2.8.0...v2.9.0
|
|
17
|
+
[v2.8.0]: https://github.com/UI5/manifest/compare/v2.7.0...v2.8.0
|
|
13
18
|
[v2.7.0]: https://github.com/UI5/manifest/compare/v2.6.0...v2.7.0
|
|
14
19
|
[v2.6.0]: https://github.com/UI5/manifest/compare/v2.5.0...v2.6.0
|
|
15
20
|
[v2.5.0]: https://github.com/UI5/manifest/compare/v2.4.0...v2.5.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -99,7 +99,9 @@
|
|
|
99
99
|
"2.4.0",
|
|
100
100
|
"2.5.0",
|
|
101
101
|
"2.6.0",
|
|
102
|
-
"2.7.0"
|
|
102
|
+
"2.7.0",
|
|
103
|
+
"2.8.0",
|
|
104
|
+
"2.9.0"
|
|
103
105
|
]
|
|
104
106
|
},
|
|
105
107
|
"start_url": {
|
|
@@ -961,6 +963,18 @@
|
|
|
961
963
|
"type": "object",
|
|
962
964
|
"additionalProperties": true,
|
|
963
965
|
"properties": {
|
|
966
|
+
"_version": {
|
|
967
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
968
|
+
"type": "string",
|
|
969
|
+
"enum": [
|
|
970
|
+
"1.1.0",
|
|
971
|
+
"1.2.0"
|
|
972
|
+
]
|
|
973
|
+
},
|
|
974
|
+
"ui5VersionNumber": {
|
|
975
|
+
"description": "Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.",
|
|
976
|
+
"type": "string"
|
|
977
|
+
},
|
|
964
978
|
"oAuthScopes": {
|
|
965
979
|
"description": "Represents the authorization scope of the application",
|
|
966
980
|
"type": "array",
|
|
@@ -1291,6 +1305,75 @@
|
|
|
1291
1305
|
}
|
|
1292
1306
|
}
|
|
1293
1307
|
},
|
|
1308
|
+
"controlConfiguration": {
|
|
1309
|
+
"description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
|
|
1310
|
+
"type": "object",
|
|
1311
|
+
"patternProperties": {
|
|
1312
|
+
"^@[a-zA-Z0-9_\\.\\-\\/]*$": {
|
|
1313
|
+
"description": "Defines the configuration for a specific annotation path",
|
|
1314
|
+
"type": "object",
|
|
1315
|
+
"properties": {
|
|
1316
|
+
"filterFields": {
|
|
1317
|
+
"description": "Defines the configuration for filter fields",
|
|
1318
|
+
"type": "object",
|
|
1319
|
+
"patternProperties": {
|
|
1320
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1321
|
+
"description": "Defines the configuration for a specific filter field",
|
|
1322
|
+
"type": "object",
|
|
1323
|
+
"properties": {
|
|
1324
|
+
"settings": {
|
|
1325
|
+
"description": "Defines the settings for a specific filter field",
|
|
1326
|
+
"type": "object",
|
|
1327
|
+
"properties": {
|
|
1328
|
+
"defaultValues": {
|
|
1329
|
+
"description": "Defines the default values for the filter field",
|
|
1330
|
+
"type": "array",
|
|
1331
|
+
"items": {
|
|
1332
|
+
"type": "object",
|
|
1333
|
+
"properties": {
|
|
1334
|
+
"operator": {
|
|
1335
|
+
"description": "Specifies the default semantic date operator",
|
|
1336
|
+
"type": "string"
|
|
1337
|
+
},
|
|
1338
|
+
"values": {
|
|
1339
|
+
"description": "Specifies additional values for the operator",
|
|
1340
|
+
"type": "array"
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"operatorConfiguration": {
|
|
1346
|
+
"description": "Defines how operators are configured for the filter field",
|
|
1347
|
+
"type": "array",
|
|
1348
|
+
"items": {
|
|
1349
|
+
"type": "object",
|
|
1350
|
+
"properties": {
|
|
1351
|
+
"path": {
|
|
1352
|
+
"description": "Specifies the key information",
|
|
1353
|
+
"type": "string"
|
|
1354
|
+
},
|
|
1355
|
+
"equals": {
|
|
1356
|
+
"description": "Specifies one or more operator values, separated by commas",
|
|
1357
|
+
"type": "string"
|
|
1358
|
+
},
|
|
1359
|
+
"exclude": {
|
|
1360
|
+
"description": "Flag to exclude or include matched operators",
|
|
1361
|
+
"type": "boolean",
|
|
1362
|
+
"default": true
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1294
1377
|
"dataLoadSettings": {
|
|
1295
1378
|
"description": "Represents the object to define data loading behaviour for an overview page application",
|
|
1296
1379
|
"type": "object",
|
|
@@ -1615,10 +1698,6 @@
|
|
|
1615
1698
|
"header"
|
|
1616
1699
|
],
|
|
1617
1700
|
"properties": {
|
|
1618
|
-
"customSettings": {
|
|
1619
|
-
"description": "[RESTRICTED] Custom settings which can be used by the host environment for special handling of different scenarios.",
|
|
1620
|
-
"type": "object"
|
|
1621
|
-
},
|
|
1622
1701
|
"configuration": {
|
|
1623
1702
|
"description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
|
|
1624
1703
|
"type": "object",
|
|
@@ -1735,6 +1814,10 @@
|
|
|
1735
1814
|
}
|
|
1736
1815
|
}
|
|
1737
1816
|
},
|
|
1817
|
+
"customSettings": {
|
|
1818
|
+
"description": "[RESTRICTED] Defines custom settings passed from the Mobile SDK or a hosting application. These are global defaults that can be overridden by individual cards via their manifest. The value is an object containing custom settings as key-value pairs. This property is restricted to Mobile SDK usage",
|
|
1819
|
+
"type": "object"
|
|
1820
|
+
},
|
|
1738
1821
|
"type": {
|
|
1739
1822
|
"description": "Represents the type of the card's content",
|
|
1740
1823
|
"type": "string",
|
|
@@ -1833,6 +1916,18 @@
|
|
|
1833
1916
|
"description": "[Experimental] Visibility of the footer",
|
|
1834
1917
|
"$ref": "#/$defs/visibility"
|
|
1835
1918
|
},
|
|
1919
|
+
"showSeparator": {
|
|
1920
|
+
"description": "Determines whether to display a separator line at the top of the footer to visually separate the footer from the card content area.",
|
|
1921
|
+
"oneOf": [
|
|
1922
|
+
{
|
|
1923
|
+
"type": "boolean",
|
|
1924
|
+
"default": false
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
"$ref": "#/$defs/simpleBinding"
|
|
1928
|
+
}
|
|
1929
|
+
]
|
|
1930
|
+
},
|
|
1836
1931
|
"closeButton": {
|
|
1837
1932
|
"description": "[Experimental] Defines the Close button when the card is opened by the ShowCard action",
|
|
1838
1933
|
"$ref": "#/$defs/closeButton"
|
package/schema_cil.json
CHANGED
|
@@ -628,6 +628,18 @@
|
|
|
628
628
|
"type": "object",
|
|
629
629
|
"additionalProperties": true,
|
|
630
630
|
"properties": {
|
|
631
|
+
"_version": {
|
|
632
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
633
|
+
"type": "string",
|
|
634
|
+
"enum": [
|
|
635
|
+
"1.1.0",
|
|
636
|
+
"1.2.0"
|
|
637
|
+
]
|
|
638
|
+
},
|
|
639
|
+
"ui5VersionNumber": {
|
|
640
|
+
"description": "Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.",
|
|
641
|
+
"type": "string"
|
|
642
|
+
},
|
|
631
643
|
"oAuthScopes": {
|
|
632
644
|
"description": "Represents the authorization scope of the application",
|
|
633
645
|
"type": "array",
|
|
@@ -946,6 +958,75 @@
|
|
|
946
958
|
}
|
|
947
959
|
}
|
|
948
960
|
},
|
|
961
|
+
"controlConfiguration": {
|
|
962
|
+
"description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
|
|
963
|
+
"type": "object",
|
|
964
|
+
"patternProperties": {
|
|
965
|
+
"^@[a-zA-Z0-9_\\.\\-\\/]*$": {
|
|
966
|
+
"description": "Defines the configuration for a specific annotation path",
|
|
967
|
+
"type": "object",
|
|
968
|
+
"properties": {
|
|
969
|
+
"filterFields": {
|
|
970
|
+
"description": "Defines the configuration for filter fields",
|
|
971
|
+
"type": "object",
|
|
972
|
+
"patternProperties": {
|
|
973
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
974
|
+
"description": "Defines the configuration for a specific filter field",
|
|
975
|
+
"type": "object",
|
|
976
|
+
"properties": {
|
|
977
|
+
"settings": {
|
|
978
|
+
"description": "Defines the settings for a specific filter field",
|
|
979
|
+
"type": "object",
|
|
980
|
+
"properties": {
|
|
981
|
+
"defaultValues": {
|
|
982
|
+
"description": "Defines the default values for the filter field",
|
|
983
|
+
"type": "array",
|
|
984
|
+
"items": {
|
|
985
|
+
"type": "object",
|
|
986
|
+
"properties": {
|
|
987
|
+
"operator": {
|
|
988
|
+
"description": "Specifies the default semantic date operator",
|
|
989
|
+
"type": "string"
|
|
990
|
+
},
|
|
991
|
+
"values": {
|
|
992
|
+
"description": "Specifies additional values for the operator",
|
|
993
|
+
"type": "array"
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
"operatorConfiguration": {
|
|
999
|
+
"description": "Defines how operators are configured for the filter field",
|
|
1000
|
+
"type": "array",
|
|
1001
|
+
"items": {
|
|
1002
|
+
"type": "object",
|
|
1003
|
+
"properties": {
|
|
1004
|
+
"path": {
|
|
1005
|
+
"description": "Specifies the key information",
|
|
1006
|
+
"type": "string"
|
|
1007
|
+
},
|
|
1008
|
+
"equals": {
|
|
1009
|
+
"description": "Specifies one or more operator values, separated by commas",
|
|
1010
|
+
"type": "string"
|
|
1011
|
+
},
|
|
1012
|
+
"exclude": {
|
|
1013
|
+
"description": "Flag to exclude or include matched operators",
|
|
1014
|
+
"type": "boolean",
|
|
1015
|
+
"default": true
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
949
1030
|
"dataLoadSettings": {
|
|
950
1031
|
"description": "Represents the object to define data loading behaviour for an overview page application",
|
|
951
1032
|
"type": "object",
|
package/types/manifest.d.ts
CHANGED
|
@@ -728,7 +728,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
728
728
|
| "2.4.0"
|
|
729
729
|
| "2.5.0"
|
|
730
730
|
| "2.6.0"
|
|
731
|
-
| "2.7.0"
|
|
731
|
+
| "2.7.0"
|
|
732
|
+
| "2.8.0"
|
|
733
|
+
| "2.9.0";
|
|
732
734
|
/**
|
|
733
735
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
734
736
|
*/
|
|
@@ -1854,6 +1856,14 @@ export interface JSONSchemaForSAPPLATFORMHCPNamespace {
|
|
|
1854
1856
|
* Represents CF(Cloud Foundry) platform specific attributes
|
|
1855
1857
|
*/
|
|
1856
1858
|
export interface JSONSchemaForSAPPLATFORMCFNamespace {
|
|
1859
|
+
/**
|
|
1860
|
+
* Represents attributes format version. It is managed by namespace owner
|
|
1861
|
+
*/
|
|
1862
|
+
_version?: "1.1.0" | "1.2.0";
|
|
1863
|
+
/**
|
|
1864
|
+
* Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.
|
|
1865
|
+
*/
|
|
1866
|
+
ui5VersionNumber?: string;
|
|
1857
1867
|
/**
|
|
1858
1868
|
* Represents the authorization scope of the application
|
|
1859
1869
|
*/
|
|
@@ -2528,6 +2538,72 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2528
2538
|
};
|
|
2529
2539
|
[k: string]: unknown;
|
|
2530
2540
|
};
|
|
2541
|
+
/**
|
|
2542
|
+
* Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.
|
|
2543
|
+
*/
|
|
2544
|
+
controlConfiguration?: {
|
|
2545
|
+
/**
|
|
2546
|
+
* Defines the configuration for a specific annotation path
|
|
2547
|
+
*
|
|
2548
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
2549
|
+
* via the `patternProperty` "^@[a-zA-Z0-9_\.\-\/]*$".
|
|
2550
|
+
*/
|
|
2551
|
+
[k: string]: {
|
|
2552
|
+
/**
|
|
2553
|
+
* Defines the configuration for filter fields
|
|
2554
|
+
*/
|
|
2555
|
+
filterFields?: {
|
|
2556
|
+
/**
|
|
2557
|
+
* Defines the configuration for a specific filter field
|
|
2558
|
+
*
|
|
2559
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
2560
|
+
* via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
|
|
2561
|
+
*/
|
|
2562
|
+
[k: string]: {
|
|
2563
|
+
/**
|
|
2564
|
+
* Defines the settings for a specific filter field
|
|
2565
|
+
*/
|
|
2566
|
+
settings?: {
|
|
2567
|
+
/**
|
|
2568
|
+
* Defines the default values for the filter field
|
|
2569
|
+
*/
|
|
2570
|
+
defaultValues?: {
|
|
2571
|
+
/**
|
|
2572
|
+
* Specifies the default semantic date operator
|
|
2573
|
+
*/
|
|
2574
|
+
operator?: string;
|
|
2575
|
+
/**
|
|
2576
|
+
* Specifies additional values for the operator
|
|
2577
|
+
*/
|
|
2578
|
+
values?: unknown[];
|
|
2579
|
+
[k: string]: unknown;
|
|
2580
|
+
}[];
|
|
2581
|
+
/**
|
|
2582
|
+
* Defines how operators are configured for the filter field
|
|
2583
|
+
*/
|
|
2584
|
+
operatorConfiguration?: {
|
|
2585
|
+
/**
|
|
2586
|
+
* Specifies the key information
|
|
2587
|
+
*/
|
|
2588
|
+
path?: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* Specifies one or more operator values, separated by commas
|
|
2591
|
+
*/
|
|
2592
|
+
equals?: string;
|
|
2593
|
+
/**
|
|
2594
|
+
* Flag to exclude or include matched operators
|
|
2595
|
+
*/
|
|
2596
|
+
exclude?: boolean;
|
|
2597
|
+
[k: string]: unknown;
|
|
2598
|
+
}[];
|
|
2599
|
+
[k: string]: unknown;
|
|
2600
|
+
};
|
|
2601
|
+
[k: string]: unknown;
|
|
2602
|
+
};
|
|
2603
|
+
};
|
|
2604
|
+
[k: string]: unknown;
|
|
2605
|
+
};
|
|
2606
|
+
};
|
|
2531
2607
|
/**
|
|
2532
2608
|
* Represents the object to define data loading behaviour for an overview page application
|
|
2533
2609
|
*/
|