@ui5/manifest 1.83.1 → 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 +32 -1
- package/mapping.json +3 -1
- package/package.json +1 -1
- package/schema.json +144 -5
- package/schema_cil.json +9 -0
- package/types/manifest.d.ts +11 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,34 @@ 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
|
+
|
|
29
|
+
<a name="v1.84.0"></a>
|
|
30
|
+
## [v1.84.0] - 2026-03-11 (UI5 1.146)
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- sap.card: New RadioButtonGroup field in Object cards
|
|
34
|
+
|
|
7
35
|
<a name="v1.83.1"></a>
|
|
8
36
|
## [v1.83.1] - 2026-03-03 (UI5 1.145)
|
|
9
37
|
|
|
@@ -221,7 +249,10 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
221
249
|
<a name="v1.48.1"></a>
|
|
222
250
|
## v1.48.1 - 2022-11-10
|
|
223
251
|
|
|
224
|
-
[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
|
|
254
|
+
[v1.84.0]: https://github.com/UI5/manifest/compare/v1.83.1...v1.84.0
|
|
255
|
+
[v1.83.1]: https://github.com/UI5/manifest/compare/v1.83.0...v1.83.1
|
|
225
256
|
[v1.83.0]: https://github.com/UI5/manifest/compare/v1.82.0...v1.83.0
|
|
226
257
|
[v1.82.0]: https://github.com/UI5/manifest/compare/v1.81.1...v1.82.0
|
|
227
258
|
[v1.81.1]: https://github.com/UI5/manifest/compare/v1.81.0...v1.81.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -102,7 +102,9 @@
|
|
|
102
102
|
"1.81.1",
|
|
103
103
|
"1.82.0",
|
|
104
104
|
"1.83.0",
|
|
105
|
-
"1.83.1"
|
|
105
|
+
"1.83.1",
|
|
106
|
+
"1.84.0",
|
|
107
|
+
"1.85.0"
|
|
106
108
|
]
|
|
107
109
|
},
|
|
108
110
|
"start_url": {
|
|
@@ -1995,6 +1997,10 @@
|
|
|
1995
1997
|
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
1996
1998
|
"type": "boolean",
|
|
1997
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"
|
|
1998
2004
|
}
|
|
1999
2005
|
}
|
|
2000
2006
|
},
|
|
@@ -2070,7 +2076,8 @@
|
|
|
2070
2076
|
"1.57.0",
|
|
2071
2077
|
"1.58.0",
|
|
2072
2078
|
"1.59.0",
|
|
2073
|
-
"1.60.0"
|
|
2079
|
+
"1.60.0",
|
|
2080
|
+
"1.61.0"
|
|
2074
2081
|
]
|
|
2075
2082
|
},
|
|
2076
2083
|
"designtime": {
|
|
@@ -2078,6 +2085,10 @@
|
|
|
2078
2085
|
"type": "string",
|
|
2079
2086
|
"deprecated": true
|
|
2080
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
|
+
},
|
|
2081
2092
|
"configuration": {
|
|
2082
2093
|
"description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
|
|
2083
2094
|
"type": "object",
|
|
@@ -4078,6 +4089,27 @@
|
|
|
4078
4089
|
"customStateIcon": {
|
|
4079
4090
|
"description": "The custom state icon",
|
|
4080
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"
|
|
4081
4113
|
}
|
|
4082
4114
|
}
|
|
4083
4115
|
},
|
|
@@ -4186,6 +4218,36 @@
|
|
|
4186
4218
|
}
|
|
4187
4219
|
}
|
|
4188
4220
|
},
|
|
4221
|
+
"ContentType.Object.Item.RadioButtonItemTemplate": {
|
|
4222
|
+
"description": "Template for radio button group items",
|
|
4223
|
+
"type": "object",
|
|
4224
|
+
"additionalProperties": false,
|
|
4225
|
+
"required": [
|
|
4226
|
+
"enabled"
|
|
4227
|
+
],
|
|
4228
|
+
"properties": {
|
|
4229
|
+
"title": {
|
|
4230
|
+
"description": "The title of the radio button option",
|
|
4231
|
+
"type": "string"
|
|
4232
|
+
},
|
|
4233
|
+
"key": {
|
|
4234
|
+
"description": "The unique key of the radio button option",
|
|
4235
|
+
"type": "string"
|
|
4236
|
+
},
|
|
4237
|
+
"enabled": {
|
|
4238
|
+
"description": "Whether the radio button option is enabled",
|
|
4239
|
+
"oneOf": [
|
|
4240
|
+
{
|
|
4241
|
+
"type": "boolean",
|
|
4242
|
+
"default": true
|
|
4243
|
+
},
|
|
4244
|
+
{
|
|
4245
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4246
|
+
}
|
|
4247
|
+
]
|
|
4248
|
+
}
|
|
4249
|
+
}
|
|
4250
|
+
},
|
|
4189
4251
|
"ContentType.Object.Item.ComboBoxItemTemplate": {
|
|
4190
4252
|
"description": "Template for combo box items",
|
|
4191
4253
|
"type": "object",
|
|
@@ -4357,6 +4419,7 @@
|
|
|
4357
4419
|
"Duration",
|
|
4358
4420
|
"DateRange",
|
|
4359
4421
|
"RatingIndicator",
|
|
4422
|
+
"RadioButtonGroup",
|
|
4360
4423
|
"phone",
|
|
4361
4424
|
"email",
|
|
4362
4425
|
"link",
|
|
@@ -4505,9 +4568,20 @@
|
|
|
4505
4568
|
"type": "string"
|
|
4506
4569
|
},
|
|
4507
4570
|
"selectedKey": {
|
|
4508
|
-
"description": "Defines the initially selected key from the given options for combo box",
|
|
4571
|
+
"description": "Defines the initially selected key from the given options for combo box or radio button group",
|
|
4509
4572
|
"type": "string"
|
|
4510
4573
|
},
|
|
4574
|
+
"selectedIndex": {
|
|
4575
|
+
"description": "Defines the initially selected index for radio button group",
|
|
4576
|
+
"oneOf": [
|
|
4577
|
+
{
|
|
4578
|
+
"type": "number"
|
|
4579
|
+
},
|
|
4580
|
+
{
|
|
4581
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4582
|
+
}
|
|
4583
|
+
]
|
|
4584
|
+
},
|
|
4511
4585
|
"placeholder": {
|
|
4512
4586
|
"description": "Placeholder for items of type 'Input', 'TextArea', 'ComboBox', 'Duration' and 'DateRange'",
|
|
4513
4587
|
"type": "string"
|
|
@@ -4518,14 +4592,21 @@
|
|
|
4518
4592
|
},
|
|
4519
4593
|
"item": {
|
|
4520
4594
|
"type": "object",
|
|
4521
|
-
"description": "Binding info for combo box items",
|
|
4595
|
+
"description": "Binding info for combo box or radio button group items",
|
|
4522
4596
|
"required": [
|
|
4523
4597
|
"template"
|
|
4524
4598
|
],
|
|
4525
4599
|
"additionalProperties": false,
|
|
4526
4600
|
"properties": {
|
|
4527
4601
|
"template": {
|
|
4528
|
-
"
|
|
4602
|
+
"oneOf": [
|
|
4603
|
+
{
|
|
4604
|
+
"$ref": "#/$defs/ContentType.Object.Item.ComboBoxItemTemplate"
|
|
4605
|
+
},
|
|
4606
|
+
{
|
|
4607
|
+
"$ref": "#/$defs/ContentType.Object.Item.RadioButtonItemTemplate"
|
|
4608
|
+
}
|
|
4609
|
+
]
|
|
4529
4610
|
},
|
|
4530
4611
|
"path": {
|
|
4531
4612
|
"description": "Defines the path to the structure holding the data about the items",
|
|
@@ -5624,6 +5705,17 @@
|
|
|
5624
5705
|
}
|
|
5625
5706
|
]
|
|
5626
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
|
+
},
|
|
5627
5719
|
"enabled": {
|
|
5628
5720
|
"description": "Represents the state of the action",
|
|
5629
5721
|
"oneOf": [
|
|
@@ -6276,6 +6368,48 @@
|
|
|
6276
6368
|
}
|
|
6277
6369
|
}
|
|
6278
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
|
+
},
|
|
6279
6413
|
"maxItems": {
|
|
6280
6414
|
"description": "Represents number of items",
|
|
6281
6415
|
"oneOf": [
|
|
@@ -7587,6 +7721,11 @@
|
|
|
7587
7721
|
"type": "boolean",
|
|
7588
7722
|
"default": true
|
|
7589
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
|
+
},
|
|
7590
7729
|
"showRefresh": {
|
|
7591
7730
|
"description": "Represents the flag to show/hide individual card's functionality to refresh the card",
|
|
7592
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
|
@@ -760,7 +760,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
760
760
|
| "1.81.1"
|
|
761
761
|
| "1.82.0"
|
|
762
762
|
| "1.83.0"
|
|
763
|
-
| "1.83.1"
|
|
763
|
+
| "1.83.1"
|
|
764
|
+
| "1.84.0"
|
|
765
|
+
| "1.85.0";
|
|
764
766
|
/**
|
|
765
767
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
766
768
|
*/
|
|
@@ -2925,6 +2927,10 @@ export interface CardSetting {
|
|
|
2925
2927
|
* Represents the flag to enable/disable individual card's functionality to add them to insight
|
|
2926
2928
|
*/
|
|
2927
2929
|
enableAddToInsights?: boolean;
|
|
2930
|
+
/**
|
|
2931
|
+
* Represents the flag to enable/disable text wrapping for list and table cards
|
|
2932
|
+
*/
|
|
2933
|
+
enableTextWrapping?: boolean;
|
|
2928
2934
|
/**
|
|
2929
2935
|
* Represents the flag to show/hide individual card's functionality to refresh the card
|
|
2930
2936
|
*/
|
|
@@ -3501,6 +3507,10 @@ export interface JSONSchemaForSAPCLOUDNamespace {
|
|
|
3501
3507
|
* Specify if the UI can be accessed from a different space than origin development space
|
|
3502
3508
|
*/
|
|
3503
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;
|
|
3504
3514
|
}
|
|
3505
3515
|
/**
|
|
3506
3516
|
* Represents general package attributes. Experimental, will be detailed in the future
|