@ui5/manifest 1.76.0 → 1.78.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 +23 -1
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +119 -14
- package/schema_cil.json +42 -5
- package/types/manifest.d.ts +15 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ 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.78.0"></a>
|
|
9
|
+
## [v1.78.0] - 2025-08-22 (UI5 1.140)
|
|
10
|
+
### Changed
|
|
11
|
+
- sap.ui5/rootView: Deprecated value `async: false`.
|
|
12
|
+
- sap.ui5/routing: Deprecated value `async: false`.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- sap.card: Added new property "useMainDestinations"
|
|
16
|
+
|
|
17
|
+
<a name="v1.77.0"></a>
|
|
18
|
+
## [v1.77.0] - 2025-08-04 (UI5 1.139)
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- sap.card: Added new property "header/subtitle"
|
|
22
|
+
- sap.card: Added new property "overflow/subtitle" in an object content item of type "Image"
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- sap.card: Deprecated property "header/subTitle" (with capital T)
|
|
26
|
+
- sap.card: Deprecated property "overflow/subTitle" (with capital T) in an object content item of type "Image"
|
|
27
|
+
|
|
8
28
|
<a name="v1.76.0"></a>
|
|
9
29
|
## [v1.76.0] - 2025-07-02 (UI5 1.138)
|
|
10
30
|
|
|
@@ -149,7 +169,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
149
169
|
<a name="v1.48.1"></a>
|
|
150
170
|
## v1.48.1 - 2022-11-10
|
|
151
171
|
|
|
152
|
-
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.
|
|
172
|
+
[Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...HEAD
|
|
173
|
+
[v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
|
|
174
|
+
[v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
|
|
153
175
|
[v1.76.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v1.76.0
|
|
154
176
|
[v1.75.1]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.75.1
|
|
155
177
|
[v1.73.1]: https://github.com/SAP/ui5-manifest/compare/v1.72.0...v1.73.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -92,7 +92,9 @@
|
|
|
92
92
|
"1.72.0",
|
|
93
93
|
"1.73.1",
|
|
94
94
|
"1.75.1",
|
|
95
|
-
"1.76.0"
|
|
95
|
+
"1.76.0",
|
|
96
|
+
"1.77.0",
|
|
97
|
+
"1.78.0"
|
|
96
98
|
]
|
|
97
99
|
},
|
|
98
100
|
"start_url": {
|
|
@@ -590,7 +592,8 @@
|
|
|
590
592
|
"1.16.0",
|
|
591
593
|
"1.17.0",
|
|
592
594
|
"1.18.0",
|
|
593
|
-
"1.19.0"
|
|
595
|
+
"1.19.0",
|
|
596
|
+
"1.20.0"
|
|
594
597
|
]
|
|
595
598
|
},
|
|
596
599
|
"resources": {
|
|
@@ -1305,7 +1308,8 @@
|
|
|
1305
1308
|
"1.8.0",
|
|
1306
1309
|
"1.9.0",
|
|
1307
1310
|
"1.10.0",
|
|
1308
|
-
"1.11.0"
|
|
1311
|
+
"1.11.0",
|
|
1312
|
+
"1.12.0"
|
|
1309
1313
|
]
|
|
1310
1314
|
},
|
|
1311
1315
|
"globalFilterModel": {
|
|
@@ -2041,7 +2045,9 @@
|
|
|
2041
2045
|
"1.52.0",
|
|
2042
2046
|
"1.53.0",
|
|
2043
2047
|
"1.54.0",
|
|
2044
|
-
"1.55.0"
|
|
2048
|
+
"1.55.0",
|
|
2049
|
+
"1.56.0",
|
|
2050
|
+
"1.57.0"
|
|
2045
2051
|
]
|
|
2046
2052
|
},
|
|
2047
2053
|
"designtime": {
|
|
@@ -2105,12 +2111,17 @@
|
|
|
2105
2111
|
}
|
|
2106
2112
|
},
|
|
2107
2113
|
"destinations": {
|
|
2108
|
-
"description": "
|
|
2114
|
+
"description": "Specifies the destinations configured for use by the card",
|
|
2109
2115
|
"type": "object",
|
|
2110
2116
|
"additionalProperties": {
|
|
2111
2117
|
"$ref": "#/$defs/Configuration.Destinations"
|
|
2112
2118
|
}
|
|
2113
2119
|
},
|
|
2120
|
+
"useMainDestinations": {
|
|
2121
|
+
"description": "Indicates if child cards should reference the main card's destinations. Must be set to true in child cards to use the main card's destinations",
|
|
2122
|
+
"type": "boolean",
|
|
2123
|
+
"default": false
|
|
2124
|
+
},
|
|
2114
2125
|
"csrfTokens": {
|
|
2115
2126
|
"description": "Describes the CSRF tokens used by the card",
|
|
2116
2127
|
"type": "object",
|
|
@@ -2119,7 +2130,7 @@
|
|
|
2119
2130
|
}
|
|
2120
2131
|
},
|
|
2121
2132
|
"actionHandlers": {
|
|
2122
|
-
"description": "
|
|
2133
|
+
"description": "Contains configuration settings for the default action handlers",
|
|
2123
2134
|
"type": "object",
|
|
2124
2135
|
"additionalProperties": false,
|
|
2125
2136
|
"properties": {
|
|
@@ -4561,10 +4572,15 @@
|
|
|
4561
4572
|
"description": "The title",
|
|
4562
4573
|
"type": "string"
|
|
4563
4574
|
},
|
|
4564
|
-
"
|
|
4565
|
-
"description": "The
|
|
4575
|
+
"subtitle": {
|
|
4576
|
+
"description": "The subtitle",
|
|
4566
4577
|
"type": "string"
|
|
4567
4578
|
},
|
|
4579
|
+
"subTitle": {
|
|
4580
|
+
"description": "The subtitle",
|
|
4581
|
+
"type": "string",
|
|
4582
|
+
"deprecated": true
|
|
4583
|
+
},
|
|
4568
4584
|
"verticalPosition": {
|
|
4569
4585
|
"description": "The vertical alignment of the texts",
|
|
4570
4586
|
"type": "string"
|
|
@@ -5675,7 +5691,7 @@
|
|
|
5675
5691
|
],
|
|
5676
5692
|
"default": 3
|
|
5677
5693
|
},
|
|
5678
|
-
"
|
|
5694
|
+
"subtitle": {
|
|
5679
5695
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5680
5696
|
"$ref": "#/$defs/i18n_key_string",
|
|
5681
5697
|
"i18n": {
|
|
@@ -5683,7 +5699,16 @@
|
|
|
5683
5699
|
"comment": "Header subtitle"
|
|
5684
5700
|
}
|
|
5685
5701
|
},
|
|
5686
|
-
"
|
|
5702
|
+
"subTitle": {
|
|
5703
|
+
"description": "[Deprecated] Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5704
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5705
|
+
"i18n": {
|
|
5706
|
+
"type": "XTIT",
|
|
5707
|
+
"comment": "Header subtitle"
|
|
5708
|
+
},
|
|
5709
|
+
"deprecated": true
|
|
5710
|
+
},
|
|
5711
|
+
"subtitleMaxLines": {
|
|
5687
5712
|
"description": "[Experimental] Limit the number of lines for the sub title",
|
|
5688
5713
|
"oneOf": [
|
|
5689
5714
|
{
|
|
@@ -5695,6 +5720,19 @@
|
|
|
5695
5720
|
],
|
|
5696
5721
|
"default": 2
|
|
5697
5722
|
},
|
|
5723
|
+
"subTitleMaxLines": {
|
|
5724
|
+
"description": "[Deprecated] Limit the number of lines for the sub title",
|
|
5725
|
+
"oneOf": [
|
|
5726
|
+
{
|
|
5727
|
+
"type": "number"
|
|
5728
|
+
},
|
|
5729
|
+
{
|
|
5730
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5731
|
+
}
|
|
5732
|
+
],
|
|
5733
|
+
"deprecated": true,
|
|
5734
|
+
"default": 2
|
|
5735
|
+
},
|
|
5698
5736
|
"actions": {
|
|
5699
5737
|
"description": "Represents a description of the actions that can be applied on a part of a card",
|
|
5700
5738
|
"type": "array",
|
|
@@ -5811,6 +5849,15 @@
|
|
|
5811
5849
|
"default": 3
|
|
5812
5850
|
},
|
|
5813
5851
|
"subTitle": {
|
|
5852
|
+
"description": "[Deprecated] Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5853
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5854
|
+
"deprecated": true,
|
|
5855
|
+
"i18n": {
|
|
5856
|
+
"type": "XTIT",
|
|
5857
|
+
"comment": "Header subtitle"
|
|
5858
|
+
}
|
|
5859
|
+
},
|
|
5860
|
+
"subtitle": {
|
|
5814
5861
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5815
5862
|
"$ref": "#/$defs/i18n_key_string",
|
|
5816
5863
|
"i18n": {
|
|
@@ -5819,6 +5866,19 @@
|
|
|
5819
5866
|
}
|
|
5820
5867
|
},
|
|
5821
5868
|
"subTitleMaxLines": {
|
|
5869
|
+
"description": "[Deprecated] Limit the number of lines for the sub title",
|
|
5870
|
+
"oneOf": [
|
|
5871
|
+
{
|
|
5872
|
+
"type": "number"
|
|
5873
|
+
},
|
|
5874
|
+
{
|
|
5875
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5876
|
+
}
|
|
5877
|
+
],
|
|
5878
|
+
"deprecated": true,
|
|
5879
|
+
"default": 2
|
|
5880
|
+
},
|
|
5881
|
+
"subtitleMaxLines": {
|
|
5822
5882
|
"description": "[Experimental] Limit the number of lines for the sub title",
|
|
5823
5883
|
"oneOf": [
|
|
5824
5884
|
{
|
|
@@ -7277,6 +7337,11 @@
|
|
|
7277
7337
|
"comment": "Card subtitle which is displayed in the card header"
|
|
7278
7338
|
}
|
|
7279
7339
|
},
|
|
7340
|
+
"showTimeAxis": {
|
|
7341
|
+
"description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
|
|
7342
|
+
"type": "boolean",
|
|
7343
|
+
"default": false
|
|
7344
|
+
},
|
|
7280
7345
|
"valueSelectionInfo": {
|
|
7281
7346
|
"description": "Represents things like people, number of items",
|
|
7282
7347
|
"type": "string",
|
|
@@ -8326,7 +8391,17 @@
|
|
|
8326
8391
|
"async": {
|
|
8327
8392
|
"description": "Configure the targets for asynchronous loading",
|
|
8328
8393
|
"type": "boolean",
|
|
8329
|
-
"default": false
|
|
8394
|
+
"default": false,
|
|
8395
|
+
"oneOf": [
|
|
8396
|
+
{
|
|
8397
|
+
"const": true
|
|
8398
|
+
},
|
|
8399
|
+
{
|
|
8400
|
+
"const": false,
|
|
8401
|
+
"deprecated": true,
|
|
8402
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
8403
|
+
}
|
|
8404
|
+
]
|
|
8330
8405
|
}
|
|
8331
8406
|
}
|
|
8332
8407
|
}
|
|
@@ -8349,7 +8424,17 @@
|
|
|
8349
8424
|
"async": {
|
|
8350
8425
|
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
8351
8426
|
"type": "boolean",
|
|
8352
|
-
"default": false
|
|
8427
|
+
"default": false,
|
|
8428
|
+
"oneOf": [
|
|
8429
|
+
{
|
|
8430
|
+
"const": true
|
|
8431
|
+
},
|
|
8432
|
+
{
|
|
8433
|
+
"const": false,
|
|
8434
|
+
"deprecated": true,
|
|
8435
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
8436
|
+
}
|
|
8437
|
+
]
|
|
8353
8438
|
},
|
|
8354
8439
|
"propagateTitle": {
|
|
8355
8440
|
"description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
|
|
@@ -8473,7 +8558,17 @@
|
|
|
8473
8558
|
"async": {
|
|
8474
8559
|
"description": "Configure the targets for asynchronous loading",
|
|
8475
8560
|
"type": "boolean",
|
|
8476
|
-
"default": false
|
|
8561
|
+
"default": false,
|
|
8562
|
+
"oneOf": [
|
|
8563
|
+
{
|
|
8564
|
+
"const": true
|
|
8565
|
+
},
|
|
8566
|
+
{
|
|
8567
|
+
"const": false,
|
|
8568
|
+
"deprecated": true,
|
|
8569
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
8570
|
+
}
|
|
8571
|
+
]
|
|
8477
8572
|
}
|
|
8478
8573
|
}
|
|
8479
8574
|
},
|
|
@@ -8494,7 +8589,17 @@
|
|
|
8494
8589
|
"async": {
|
|
8495
8590
|
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
8496
8591
|
"type": "boolean",
|
|
8497
|
-
"default": false
|
|
8592
|
+
"default": false,
|
|
8593
|
+
"oneOf": [
|
|
8594
|
+
{
|
|
8595
|
+
"const": true
|
|
8596
|
+
},
|
|
8597
|
+
{
|
|
8598
|
+
"const": false,
|
|
8599
|
+
"deprecated": true,
|
|
8600
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
8601
|
+
}
|
|
8602
|
+
]
|
|
8498
8603
|
},
|
|
8499
8604
|
"bypassed": {
|
|
8500
8605
|
"description": "Represents information about targets to display when no route is matched",
|
package/schema_cil.json
CHANGED
|
@@ -384,7 +384,8 @@
|
|
|
384
384
|
"1.11.0",
|
|
385
385
|
"1.12.0",
|
|
386
386
|
"1.13.0",
|
|
387
|
-
"1.14.0"
|
|
387
|
+
"1.14.0",
|
|
388
|
+
"1.15.0"
|
|
388
389
|
]
|
|
389
390
|
},
|
|
390
391
|
"resources": {
|
|
@@ -947,7 +948,8 @@
|
|
|
947
948
|
"1.8.0",
|
|
948
949
|
"1.9.0",
|
|
949
950
|
"1.10.0",
|
|
950
|
-
"1.11.0"
|
|
951
|
+
"1.11.0",
|
|
952
|
+
"1.12.0"
|
|
951
953
|
]
|
|
952
954
|
},
|
|
953
955
|
"globalFilterModel": {
|
|
@@ -1797,6 +1799,11 @@
|
|
|
1797
1799
|
"comment": "Card subtitle which is displayed in the card header"
|
|
1798
1800
|
}
|
|
1799
1801
|
},
|
|
1802
|
+
"showTimeAxis": {
|
|
1803
|
+
"description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
|
|
1804
|
+
"type": "boolean",
|
|
1805
|
+
"default": false
|
|
1806
|
+
},
|
|
1800
1807
|
"valueSelectionInfo": {
|
|
1801
1808
|
"description": "Represents things like people, number of items",
|
|
1802
1809
|
"type": "string",
|
|
@@ -2963,7 +2970,17 @@
|
|
|
2963
2970
|
"async": {
|
|
2964
2971
|
"description": "Configure the targets for asynchronous loading",
|
|
2965
2972
|
"type": "boolean",
|
|
2966
|
-
"default": false
|
|
2973
|
+
"default": false,
|
|
2974
|
+
"oneOf": [
|
|
2975
|
+
{
|
|
2976
|
+
"const": true
|
|
2977
|
+
},
|
|
2978
|
+
{
|
|
2979
|
+
"const": false,
|
|
2980
|
+
"deprecated": true,
|
|
2981
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
2982
|
+
}
|
|
2983
|
+
]
|
|
2967
2984
|
}
|
|
2968
2985
|
}
|
|
2969
2986
|
},
|
|
@@ -2984,7 +3001,17 @@
|
|
|
2984
3001
|
"async": {
|
|
2985
3002
|
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
2986
3003
|
"type": "boolean",
|
|
2987
|
-
"default": false
|
|
3004
|
+
"default": false,
|
|
3005
|
+
"oneOf": [
|
|
3006
|
+
{
|
|
3007
|
+
"const": true
|
|
3008
|
+
},
|
|
3009
|
+
{
|
|
3010
|
+
"const": false,
|
|
3011
|
+
"deprecated": true,
|
|
3012
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
3013
|
+
}
|
|
3014
|
+
]
|
|
2988
3015
|
},
|
|
2989
3016
|
"bypassed": {
|
|
2990
3017
|
"description": "Represents information about targets to display when no route is matched",
|
|
@@ -3195,7 +3222,17 @@
|
|
|
3195
3222
|
"async": {
|
|
3196
3223
|
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
3197
3224
|
"type": "boolean",
|
|
3198
|
-
"default": false
|
|
3225
|
+
"default": false,
|
|
3226
|
+
"oneOf": [
|
|
3227
|
+
{
|
|
3228
|
+
"const": true
|
|
3229
|
+
},
|
|
3230
|
+
{
|
|
3231
|
+
"const": false,
|
|
3232
|
+
"deprecated": true,
|
|
3233
|
+
"description": "[Deprecated] Value false is deprecated. Use async: true instead."
|
|
3234
|
+
}
|
|
3235
|
+
]
|
|
3199
3236
|
},
|
|
3200
3237
|
"propagateTitle": {
|
|
3201
3238
|
"description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
|
package/types/manifest.d.ts
CHANGED
|
@@ -177,7 +177,8 @@ export type JSONSchemaForSAPUI5Namespace = {
|
|
|
177
177
|
| "1.16.0"
|
|
178
178
|
| "1.17.0"
|
|
179
179
|
| "1.18.0"
|
|
180
|
-
| "1.19.0"
|
|
180
|
+
| "1.19.0"
|
|
181
|
+
| "1.20.0";
|
|
181
182
|
resources?: Resource;
|
|
182
183
|
/**
|
|
183
184
|
* Represents the explicit usage declaration for UI5 reuse components
|
|
@@ -605,7 +606,7 @@ export type RootViewDef =
|
|
|
605
606
|
/**
|
|
606
607
|
* Configure the targets for asynchronous loading
|
|
607
608
|
*/
|
|
608
|
-
async?: boolean;
|
|
609
|
+
async?: boolean & (true | false);
|
|
609
610
|
[k: string]: unknown;
|
|
610
611
|
};
|
|
611
612
|
/**
|
|
@@ -744,7 +745,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
744
745
|
| "1.72.0"
|
|
745
746
|
| "1.73.1"
|
|
746
747
|
| "1.75.1"
|
|
747
|
-
| "1.76.0"
|
|
748
|
+
| "1.76.0"
|
|
749
|
+
| "1.77.0"
|
|
750
|
+
| "1.78.0";
|
|
748
751
|
/**
|
|
749
752
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
750
753
|
*/
|
|
@@ -1575,7 +1578,7 @@ export interface RoutingFlexEnabled {
|
|
|
1575
1578
|
/**
|
|
1576
1579
|
* Indicates whether the Views in routing are loaded asyncly
|
|
1577
1580
|
*/
|
|
1578
|
-
async?: boolean;
|
|
1581
|
+
async?: boolean & (true | false);
|
|
1579
1582
|
/**
|
|
1580
1583
|
* Represents information about targets to display when no route is matched
|
|
1581
1584
|
*/
|
|
@@ -1813,7 +1816,7 @@ export interface RootViewDefFlexEnabled {
|
|
|
1813
1816
|
/**
|
|
1814
1817
|
* Configure the targets for asynchronous loading
|
|
1815
1818
|
*/
|
|
1816
|
-
async?: boolean;
|
|
1819
|
+
async?: boolean & (true | false);
|
|
1817
1820
|
[k: string]: unknown;
|
|
1818
1821
|
}
|
|
1819
1822
|
/**
|
|
@@ -1831,7 +1834,7 @@ export interface Routing {
|
|
|
1831
1834
|
/**
|
|
1832
1835
|
* Indicates whether the Views in routing are loaded asyncly
|
|
1833
1836
|
*/
|
|
1834
|
-
async?: boolean;
|
|
1837
|
+
async?: boolean & (true | false);
|
|
1835
1838
|
/**
|
|
1836
1839
|
* Indicates whether the targets which have type 'Component' should propagate their title to this component or not
|
|
1837
1840
|
*/
|
|
@@ -2604,7 +2607,8 @@ export interface JSONSchemaForSAPOVPNamespace {
|
|
|
2604
2607
|
| "1.8.0"
|
|
2605
2608
|
| "1.9.0"
|
|
2606
2609
|
| "1.10.0"
|
|
2607
|
-
| "1.11.0"
|
|
2610
|
+
| "1.11.0"
|
|
2611
|
+
| "1.12.0";
|
|
2608
2612
|
/**
|
|
2609
2613
|
* Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
|
|
2610
2614
|
*/
|
|
@@ -2816,6 +2820,10 @@ export interface CardSetting {
|
|
|
2816
2820
|
* Represents language-dependent subtitle of the card - used in the card header
|
|
2817
2821
|
*/
|
|
2818
2822
|
subTitle?: string;
|
|
2823
|
+
/**
|
|
2824
|
+
* Represents the flag to enable/disable time axis for analytical timeseries cards
|
|
2825
|
+
*/
|
|
2826
|
+
showTimeAxis?: boolean;
|
|
2819
2827
|
/**
|
|
2820
2828
|
* Represents things like people, number of items
|
|
2821
2829
|
*/
|