@ui5/manifest 1.84.0 → 1.85.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 +24 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +89 -1
- package/schema_cil.json +9 -0
- package/types/manifest.d.ts +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ 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="v1.85.0"></a>
|
|
8
|
+
## [v1.85.0] - 2026-04-09 (UI5 1.147)
|
|
9
|
+
|
|
10
|
+
<a name="v1.85.0"></a>
|
|
11
|
+
## [v1.85.0] - 2026-04-08 (UI5 1.147)
|
|
12
|
+
|
|
13
|
+
<a name="v1.85.0"></a>
|
|
14
|
+
## [v1.85.0] - 2026-04-08 (UI5 1.147)
|
|
15
|
+
|
|
16
|
+
<a name="v1.85.0"></a>
|
|
17
|
+
## [v1.85.0] - 2026-04-08 (UI5 1.147)
|
|
18
|
+
|
|
19
|
+
<a name="v1.85.0"></a>
|
|
20
|
+
## [v1.85.0] - 2026-04-08 (UI5 1.147)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- sap.card: New Table Popin behaviour. It is controlled by properties `autoPopinMode, hiddenInPopin, popinLayout` and `importance`
|
|
24
|
+
- sap.card: Option to show the navigation indicator for list and table. Controlled by property `navigationArrow`
|
|
25
|
+
- sap.card: Restricted `customSettings` which can be used by the host environment.
|
|
26
|
+
- sap.ovp: Introduced a new configuration flag, `enableTextWrapping`, in the card manifest for Table and List Cards in the Overview Page (OVP)
|
|
27
|
+
- sap.cloud: Added `backgroundImageRelativeToComponent` property provides the background image for a custom tile visualization. The URL of the image must be relative to the location of the component.js file.
|
|
28
|
+
|
|
7
29
|
<a name="v1.84.0"></a>
|
|
8
30
|
## [v1.84.0] - 2026-03-11 (UI5 1.146)
|
|
9
31
|
|
|
@@ -227,7 +249,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
227
249
|
<a name="v1.48.1"></a>
|
|
228
250
|
## v1.48.1 - 2022-11-10
|
|
229
251
|
|
|
230
|
-
[Unreleased]: https://github.com/UI5/manifest/compare/v1.
|
|
252
|
+
[Unreleased]: https://github.com/UI5/manifest/compare/v1.85.0...HEAD
|
|
253
|
+
[v1.85.0]: https://github.com/UI5/manifest/compare/v1.84.0...v1.85.0
|
|
231
254
|
[v1.84.0]: https://github.com/UI5/manifest/compare/v1.83.1...v1.84.0
|
|
232
255
|
[v1.83.1]: https://github.com/UI5/manifest/compare/v1.83.0...v1.83.1
|
|
233
256
|
[v1.83.0]: https://github.com/UI5/manifest/compare/v1.82.0...v1.83.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -103,7 +103,8 @@
|
|
|
103
103
|
"1.82.0",
|
|
104
104
|
"1.83.0",
|
|
105
105
|
"1.83.1",
|
|
106
|
-
"1.84.0"
|
|
106
|
+
"1.84.0",
|
|
107
|
+
"1.85.0"
|
|
107
108
|
]
|
|
108
109
|
},
|
|
109
110
|
"start_url": {
|
|
@@ -1996,6 +1997,10 @@
|
|
|
1996
1997
|
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
1997
1998
|
"type": "boolean",
|
|
1998
1999
|
"default": false
|
|
2000
|
+
},
|
|
2001
|
+
"backgroundImageRelativeToComponent": {
|
|
2002
|
+
"description": "Provides the background image for the custom visualization. The URL of the image must be relative to the location of the component.js file",
|
|
2003
|
+
"type": "string"
|
|
1999
2004
|
}
|
|
2000
2005
|
}
|
|
2001
2006
|
},
|
|
@@ -2080,6 +2085,10 @@
|
|
|
2080
2085
|
"type": "string",
|
|
2081
2086
|
"deprecated": true
|
|
2082
2087
|
},
|
|
2088
|
+
"customSettings": {
|
|
2089
|
+
"description": "[RESTRICTED] Custom settings which can be used by the host environment for special handling of different scenarios.",
|
|
2090
|
+
"type": "object"
|
|
2091
|
+
},
|
|
2083
2092
|
"configuration": {
|
|
2084
2093
|
"description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
|
|
2085
2094
|
"type": "object",
|
|
@@ -4080,6 +4089,27 @@
|
|
|
4080
4089
|
"customStateIcon": {
|
|
4081
4090
|
"description": "The custom state icon",
|
|
4082
4091
|
"type": "string"
|
|
4092
|
+
},
|
|
4093
|
+
"importance": {
|
|
4094
|
+
"description": "Specifies the column's significance, affecting its behavior in responsive design.",
|
|
4095
|
+
"oneOf": [
|
|
4096
|
+
{
|
|
4097
|
+
"enum": [
|
|
4098
|
+
"None",
|
|
4099
|
+
"Low",
|
|
4100
|
+
"Medium",
|
|
4101
|
+
"High"
|
|
4102
|
+
],
|
|
4103
|
+
"default": "None"
|
|
4104
|
+
},
|
|
4105
|
+
{
|
|
4106
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4107
|
+
}
|
|
4108
|
+
]
|
|
4109
|
+
},
|
|
4110
|
+
"autoPopinWidth": {
|
|
4111
|
+
"description": "Sets the minimum width threshold for displaying the column in the pop-in area.",
|
|
4112
|
+
"type": "number"
|
|
4083
4113
|
}
|
|
4084
4114
|
}
|
|
4085
4115
|
},
|
|
@@ -5675,6 +5705,17 @@
|
|
|
5675
5705
|
}
|
|
5676
5706
|
]
|
|
5677
5707
|
},
|
|
5708
|
+
"navigationArrow": {
|
|
5709
|
+
"description": "Indicates whether a navigation arrow is shown for the item or row. Applicable only to actions of type Navigation.",
|
|
5710
|
+
"oneOf": [
|
|
5711
|
+
{
|
|
5712
|
+
"type": "boolean"
|
|
5713
|
+
},
|
|
5714
|
+
{
|
|
5715
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5716
|
+
}
|
|
5717
|
+
]
|
|
5718
|
+
},
|
|
5678
5719
|
"enabled": {
|
|
5679
5720
|
"description": "Represents the state of the action",
|
|
5680
5721
|
"oneOf": [
|
|
@@ -6327,6 +6368,48 @@
|
|
|
6327
6368
|
}
|
|
6328
6369
|
}
|
|
6329
6370
|
},
|
|
6371
|
+
"autoPopinMode": {
|
|
6372
|
+
"description": "Controls the table's auto pop-in mode. When true, columns automatically adjust based on available space. When false, manually set 'autoPopinWidth' for each column.",
|
|
6373
|
+
"oneOf": [
|
|
6374
|
+
{
|
|
6375
|
+
"type": "boolean",
|
|
6376
|
+
"default": false
|
|
6377
|
+
},
|
|
6378
|
+
{
|
|
6379
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6380
|
+
}
|
|
6381
|
+
]
|
|
6382
|
+
},
|
|
6383
|
+
"hiddenInPopin": {
|
|
6384
|
+
"description": "Specifies columns to hide rather than move into the pop-in area, based on importance.",
|
|
6385
|
+
"type": "array",
|
|
6386
|
+
"items": {
|
|
6387
|
+
"type": "string",
|
|
6388
|
+
"enum": [
|
|
6389
|
+
"None",
|
|
6390
|
+
"Low",
|
|
6391
|
+
"Medium",
|
|
6392
|
+
"High"
|
|
6393
|
+
]
|
|
6394
|
+
}
|
|
6395
|
+
},
|
|
6396
|
+
"popinLayout": {
|
|
6397
|
+
"description": "Sets the layout style for rendering table pop-in rows.",
|
|
6398
|
+
"oneOf": [
|
|
6399
|
+
{
|
|
6400
|
+
"type": "string",
|
|
6401
|
+
"enum": [
|
|
6402
|
+
"Block",
|
|
6403
|
+
"GridSmall",
|
|
6404
|
+
"GridLarge"
|
|
6405
|
+
],
|
|
6406
|
+
"default": "Block"
|
|
6407
|
+
},
|
|
6408
|
+
{
|
|
6409
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6410
|
+
}
|
|
6411
|
+
]
|
|
6412
|
+
},
|
|
6330
6413
|
"maxItems": {
|
|
6331
6414
|
"description": "Represents number of items",
|
|
6332
6415
|
"oneOf": [
|
|
@@ -7638,6 +7721,11 @@
|
|
|
7638
7721
|
"type": "boolean",
|
|
7639
7722
|
"default": true
|
|
7640
7723
|
},
|
|
7724
|
+
"enableTextWrapping": {
|
|
7725
|
+
"description": "Represents the flag to enable/disable text wrapping for list and table cards",
|
|
7726
|
+
"type": "boolean",
|
|
7727
|
+
"default": false
|
|
7728
|
+
},
|
|
7641
7729
|
"showRefresh": {
|
|
7642
7730
|
"description": "Represents the flag to show/hide individual card's functionality to refresh the card",
|
|
7643
7731
|
"type": "boolean",
|
package/schema_cil.json
CHANGED
|
@@ -1493,6 +1493,10 @@
|
|
|
1493
1493
|
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
1494
1494
|
"type": "boolean",
|
|
1495
1495
|
"default": false
|
|
1496
|
+
},
|
|
1497
|
+
"backgroundImageRelativeToComponent": {
|
|
1498
|
+
"description": "Provides the background image for the custom visualization. The URL of the image must be relative to the location of the component.js file",
|
|
1499
|
+
"type": "string"
|
|
1496
1500
|
}
|
|
1497
1501
|
}
|
|
1498
1502
|
}
|
|
@@ -1927,6 +1931,11 @@
|
|
|
1927
1931
|
"type": "boolean",
|
|
1928
1932
|
"default": true
|
|
1929
1933
|
},
|
|
1934
|
+
"enableTextWrapping": {
|
|
1935
|
+
"description": "Represents the flag to enable/disable text wrapping for list and table cards",
|
|
1936
|
+
"type": "boolean",
|
|
1937
|
+
"default": false
|
|
1938
|
+
},
|
|
1930
1939
|
"showRefresh": {
|
|
1931
1940
|
"description": "Represents the flag to show/hide individual card's functionality to refresh the card",
|
|
1932
1941
|
"type": "boolean",
|
package/types/manifest.d.ts
CHANGED
|
@@ -761,7 +761,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
761
761
|
| "1.82.0"
|
|
762
762
|
| "1.83.0"
|
|
763
763
|
| "1.83.1"
|
|
764
|
-
| "1.84.0"
|
|
764
|
+
| "1.84.0"
|
|
765
|
+
| "1.85.0";
|
|
765
766
|
/**
|
|
766
767
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
767
768
|
*/
|
|
@@ -2926,6 +2927,10 @@ export interface CardSetting {
|
|
|
2926
2927
|
* Represents the flag to enable/disable individual card's functionality to add them to insight
|
|
2927
2928
|
*/
|
|
2928
2929
|
enableAddToInsights?: boolean;
|
|
2930
|
+
/**
|
|
2931
|
+
* Represents the flag to enable/disable text wrapping for list and table cards
|
|
2932
|
+
*/
|
|
2933
|
+
enableTextWrapping?: boolean;
|
|
2929
2934
|
/**
|
|
2930
2935
|
* Represents the flag to show/hide individual card's functionality to refresh the card
|
|
2931
2936
|
*/
|
|
@@ -3502,6 +3507,10 @@ export interface JSONSchemaForSAPCLOUDNamespace {
|
|
|
3502
3507
|
* Specify if the UI can be accessed from a different space than origin development space
|
|
3503
3508
|
*/
|
|
3504
3509
|
public?: boolean;
|
|
3510
|
+
/**
|
|
3511
|
+
* Provides the background image for the custom visualization. The URL of the image must be relative to the location of the component.js file
|
|
3512
|
+
*/
|
|
3513
|
+
backgroundImageRelativeToComponent?: string;
|
|
3505
3514
|
}
|
|
3506
3515
|
/**
|
|
3507
3516
|
* Represents general package attributes. Experimental, will be detailed in the future
|