@ui5/manifest 1.79.0 → 1.81.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 +12 -2
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +26 -8
- package/schema_cil.json +23 -7
- package/types/manifest.d.ts +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,12 @@ 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
5
|
<a name="Unreleased"></a>
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- sap.ovp: Deprecated property card/settings/showTimeAxis.
|
|
9
|
+
|
|
10
|
+
<a name="v1.80.0"></a>
|
|
11
|
+
## [v1.80.0] - 2025-10-28 (UI5 1.142)
|
|
7
12
|
|
|
8
13
|
<a name="v1.79.0"></a>
|
|
9
14
|
## [v1.79.0] - 2025-09-24 (UI5 1.141)
|
|
@@ -185,7 +190,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
185
190
|
<a name="v1.48.1"></a>
|
|
186
191
|
## v1.48.1 - 2022-11-10
|
|
187
192
|
|
|
188
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.
|
|
193
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.81.0...HEAD
|
|
194
|
+
[v1.81.0]
|
|
195
|
+
|
|
196
|
+
<a name="v1.81.0"></a>
|
|
197
|
+
## [v1.81.0] - 2025-11-18 (UI5 1.143): https://github.com/SAP/ui5-manifest/compare/v1.80.0...v1.81.0
|
|
198
|
+
[v1.80.0]: https://github.com/SAP/ui5-manifest/compare/v1.79.0...v1.80.0
|
|
189
199
|
[v1.79.0]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...v1.79.0
|
|
190
200
|
[v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
|
|
191
201
|
[v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -95,7 +95,9 @@
|
|
|
95
95
|
"1.76.0",
|
|
96
96
|
"1.77.0",
|
|
97
97
|
"1.78.0",
|
|
98
|
-
"1.79.0"
|
|
98
|
+
"1.79.0",
|
|
99
|
+
"1.80.0",
|
|
100
|
+
"1.81.0"
|
|
99
101
|
]
|
|
100
102
|
},
|
|
101
103
|
"start_url": {
|
|
@@ -1314,7 +1316,8 @@
|
|
|
1314
1316
|
"1.9.0",
|
|
1315
1317
|
"1.10.0",
|
|
1316
1318
|
"1.11.0",
|
|
1317
|
-
"1.12.0"
|
|
1319
|
+
"1.12.0",
|
|
1320
|
+
"1.13.0"
|
|
1318
1321
|
]
|
|
1319
1322
|
},
|
|
1320
1323
|
"globalFilterModel": {
|
|
@@ -1364,10 +1367,16 @@
|
|
|
1364
1367
|
"containerLayout": {
|
|
1365
1368
|
"description": "Represents the layout of the card container",
|
|
1366
1369
|
"type": "string",
|
|
1367
|
-
"default": "
|
|
1368
|
-
"
|
|
1369
|
-
|
|
1370
|
-
|
|
1370
|
+
"default": "resizable",
|
|
1371
|
+
"oneOf": [
|
|
1372
|
+
{
|
|
1373
|
+
"const": "resizable"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"const": "fixed",
|
|
1377
|
+
"deprecated": true,
|
|
1378
|
+
"description": "[Deprecated] Value fixed is deprecated"
|
|
1379
|
+
}
|
|
1371
1380
|
]
|
|
1372
1381
|
},
|
|
1373
1382
|
"showDateInRelativeFormat": {
|
|
@@ -7417,9 +7426,18 @@
|
|
|
7417
7426
|
}
|
|
7418
7427
|
},
|
|
7419
7428
|
"showTimeAxis": {
|
|
7420
|
-
"description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
|
|
7429
|
+
"description": "[Deprecated] Represents the flag to enable/disable time axis for analytical timeseries cards",
|
|
7421
7430
|
"type": "boolean",
|
|
7422
|
-
"default":
|
|
7431
|
+
"default": true,
|
|
7432
|
+
"anyOf": [
|
|
7433
|
+
{
|
|
7434
|
+
"const": true
|
|
7435
|
+
},
|
|
7436
|
+
{
|
|
7437
|
+
"const": false,
|
|
7438
|
+
"deprecated": true
|
|
7439
|
+
}
|
|
7440
|
+
]
|
|
7423
7441
|
},
|
|
7424
7442
|
"valueSelectionInfo": {
|
|
7425
7443
|
"description": "Represents things like people, number of items",
|
package/schema_cil.json
CHANGED
|
@@ -949,7 +949,8 @@
|
|
|
949
949
|
"1.9.0",
|
|
950
950
|
"1.10.0",
|
|
951
951
|
"1.11.0",
|
|
952
|
-
"1.12.0"
|
|
952
|
+
"1.12.0",
|
|
953
|
+
"1.13.0"
|
|
953
954
|
]
|
|
954
955
|
},
|
|
955
956
|
"globalFilterModel": {
|
|
@@ -999,10 +1000,16 @@
|
|
|
999
1000
|
"containerLayout": {
|
|
1000
1001
|
"description": "Represents the layout of the card container",
|
|
1001
1002
|
"type": "string",
|
|
1002
|
-
"default": "
|
|
1003
|
-
"
|
|
1004
|
-
|
|
1005
|
-
|
|
1003
|
+
"default": "resizable",
|
|
1004
|
+
"oneOf": [
|
|
1005
|
+
{
|
|
1006
|
+
"const": "resizable"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"const": "fixed",
|
|
1010
|
+
"deprecated": true,
|
|
1011
|
+
"description": "[Deprecated] Value fixed is deprecated"
|
|
1012
|
+
}
|
|
1006
1013
|
]
|
|
1007
1014
|
},
|
|
1008
1015
|
"showDateInRelativeFormat": {
|
|
@@ -1800,9 +1807,18 @@
|
|
|
1800
1807
|
}
|
|
1801
1808
|
},
|
|
1802
1809
|
"showTimeAxis": {
|
|
1803
|
-
"description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
|
|
1810
|
+
"description": "[Deprecated] Represents the flag to enable/disable time axis for analytical timeseries cards",
|
|
1804
1811
|
"type": "boolean",
|
|
1805
|
-
"default":
|
|
1812
|
+
"default": true,
|
|
1813
|
+
"anyOf": [
|
|
1814
|
+
{
|
|
1815
|
+
"const": true
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"const": false,
|
|
1819
|
+
"deprecated": true
|
|
1820
|
+
}
|
|
1821
|
+
]
|
|
1806
1822
|
},
|
|
1807
1823
|
"valueSelectionInfo": {
|
|
1808
1824
|
"description": "Represents things like people, number of items",
|
package/types/manifest.d.ts
CHANGED
|
@@ -753,7 +753,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
753
753
|
| "1.76.0"
|
|
754
754
|
| "1.77.0"
|
|
755
755
|
| "1.78.0"
|
|
756
|
-
| "1.79.0"
|
|
756
|
+
| "1.79.0"
|
|
757
|
+
| "1.80.0"
|
|
758
|
+
| "1.81.0";
|
|
757
759
|
/**
|
|
758
760
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
759
761
|
*/
|
|
@@ -2626,7 +2628,8 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2626
2628
|
| "1.9.0"
|
|
2627
2629
|
| "1.10.0"
|
|
2628
2630
|
| "1.11.0"
|
|
2629
|
-
| "1.12.0"
|
|
2631
|
+
| "1.12.0"
|
|
2632
|
+
| "1.13.0";
|
|
2630
2633
|
/**
|
|
2631
2634
|
* Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
|
|
2632
2635
|
*/
|
|
@@ -2662,7 +2665,7 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2662
2665
|
/**
|
|
2663
2666
|
* Represents the layout of the card container
|
|
2664
2667
|
*/
|
|
2665
|
-
containerLayout?: "
|
|
2668
|
+
containerLayout?: ("resizable" | "fixed") & string;
|
|
2666
2669
|
/**
|
|
2667
2670
|
* Represents a switch to Enable or disable Relative or Normal date formating in ovp application
|
|
2668
2671
|
*/
|
|
@@ -2839,9 +2842,9 @@ export interface CardSetting {
|
|
|
2839
2842
|
*/
|
|
2840
2843
|
subTitle?: string;
|
|
2841
2844
|
/**
|
|
2842
|
-
* Represents the flag to enable/disable time axis for analytical timeseries cards
|
|
2845
|
+
* [Deprecated] Represents the flag to enable/disable time axis for analytical timeseries cards
|
|
2843
2846
|
*/
|
|
2844
|
-
showTimeAxis?: boolean;
|
|
2847
|
+
showTimeAxis?: (true | false) & boolean;
|
|
2845
2848
|
/**
|
|
2846
2849
|
* Represents things like people, number of items
|
|
2847
2850
|
*/
|