@ui5/manifest 1.85.0 → 1.86.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 +14 -1
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +25 -39
- package/schema_cil.json +1 -1
- package/types/manifest.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.86.0"></a>
|
|
8
|
+
## [v1.86.0] - 2026-05-04 (UI5 1.148)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- sap.card: New property `showSeparator` in footer to visually separate the footer from the card content area
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- sap.card: Moved `customSettings` property and updated description to reflect Mobile SDK usage
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
- sap.card: Deprecated `service` property removed from data requests and navigation actions
|
|
18
|
+
|
|
7
19
|
<a name="v1.85.0"></a>
|
|
8
20
|
## [v1.85.0] - 2026-04-09 (UI5 1.147)
|
|
9
21
|
|
|
@@ -249,7 +261,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
249
261
|
<a name="v1.48.1"></a>
|
|
250
262
|
## v1.48.1 - 2022-11-10
|
|
251
263
|
|
|
252
|
-
[Unreleased]: https://github.com/UI5/manifest/compare/v1.
|
|
264
|
+
[Unreleased]: https://github.com/UI5/manifest/compare/v1.86.0...HEAD
|
|
265
|
+
[v1.86.0]: https://github.com/UI5/manifest/compare/v1.85.0...v1.86.0
|
|
253
266
|
[v1.85.0]: https://github.com/UI5/manifest/compare/v1.84.0...v1.85.0
|
|
254
267
|
[v1.84.0]: https://github.com/UI5/manifest/compare/v1.83.1...v1.84.0
|
|
255
268
|
[v1.83.1]: https://github.com/UI5/manifest/compare/v1.83.0...v1.83.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -104,7 +104,8 @@
|
|
|
104
104
|
"1.83.0",
|
|
105
105
|
"1.83.1",
|
|
106
106
|
"1.84.0",
|
|
107
|
-
"1.85.0"
|
|
107
|
+
"1.85.0",
|
|
108
|
+
"1.86.0"
|
|
108
109
|
]
|
|
109
110
|
},
|
|
110
111
|
"start_url": {
|
|
@@ -2077,7 +2078,8 @@
|
|
|
2077
2078
|
"1.58.0",
|
|
2078
2079
|
"1.59.0",
|
|
2079
2080
|
"1.60.0",
|
|
2080
|
-
"1.61.0"
|
|
2081
|
+
"1.61.0",
|
|
2082
|
+
"1.62.0"
|
|
2081
2083
|
]
|
|
2082
2084
|
},
|
|
2083
2085
|
"designtime": {
|
|
@@ -2085,10 +2087,6 @@
|
|
|
2085
2087
|
"type": "string",
|
|
2086
2088
|
"deprecated": true
|
|
2087
2089
|
},
|
|
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
|
-
},
|
|
2092
2090
|
"configuration": {
|
|
2093
2091
|
"description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
|
|
2094
2092
|
"type": "object",
|
|
@@ -2205,6 +2203,10 @@
|
|
|
2205
2203
|
}
|
|
2206
2204
|
}
|
|
2207
2205
|
},
|
|
2206
|
+
"customSettings": {
|
|
2207
|
+
"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",
|
|
2208
|
+
"type": "object"
|
|
2209
|
+
},
|
|
2208
2210
|
"type": {
|
|
2209
2211
|
"description": "Represents the type of the card's content",
|
|
2210
2212
|
"type": "string",
|
|
@@ -2303,6 +2305,18 @@
|
|
|
2303
2305
|
"description": "[Experimental] Visibility of the footer",
|
|
2304
2306
|
"$ref": "#/$defs/visibility"
|
|
2305
2307
|
},
|
|
2308
|
+
"showSeparator": {
|
|
2309
|
+
"description": "Determines whether to display a separator line at the top of the footer to visually separate the footer from the card content area.",
|
|
2310
|
+
"oneOf": [
|
|
2311
|
+
{
|
|
2312
|
+
"type": "boolean",
|
|
2313
|
+
"default": false
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2317
|
+
}
|
|
2318
|
+
]
|
|
2319
|
+
},
|
|
2306
2320
|
"closeButton": {
|
|
2307
2321
|
"description": "[Experimental] Defines the Close button when the card is opened by the ShowCard action",
|
|
2308
2322
|
"$ref": "#/$defs/closeButton"
|
|
@@ -2967,12 +2981,12 @@
|
|
|
2967
2981
|
"semanticversion": {
|
|
2968
2982
|
"description": "The version number of the schema in major.minor.patch format.",
|
|
2969
2983
|
"type": "string",
|
|
2970
|
-
"pattern": "^[0-9]{1,}
|
|
2984
|
+
"pattern": "^[0-9]{1,}\\.[0-9]{1,}\\.[0-9]{1,}$"
|
|
2971
2985
|
},
|
|
2972
2986
|
"iddef": {
|
|
2973
2987
|
"type": "string",
|
|
2974
2988
|
"maxLength": 70,
|
|
2975
|
-
"pattern": "^[A-Za-z]{2,}
|
|
2989
|
+
"pattern": "^[A-Za-z]{2,}\\.[A-Za-z]{2,}$"
|
|
2976
2990
|
},
|
|
2977
2991
|
"contentitem": {
|
|
2978
2992
|
"description": "Represents an item of the content list defining the sub manifest and baseurl",
|
|
@@ -3522,28 +3536,6 @@
|
|
|
3522
3536
|
}
|
|
3523
3537
|
}
|
|
3524
3538
|
},
|
|
3525
|
-
"service_0": {
|
|
3526
|
-
"description": "Represents service that will be used for actions",
|
|
3527
|
-
"oneOf": [
|
|
3528
|
-
{
|
|
3529
|
-
"description": "Represents name of the Service to be used for the action",
|
|
3530
|
-
"type": "string"
|
|
3531
|
-
},
|
|
3532
|
-
{
|
|
3533
|
-
"type": "object",
|
|
3534
|
-
"additionalProperties": false,
|
|
3535
|
-
"properties": {
|
|
3536
|
-
"name": {
|
|
3537
|
-
"description": "Represents name of the Service to be used for the action",
|
|
3538
|
-
"type": "string"
|
|
3539
|
-
},
|
|
3540
|
-
"parameters": {
|
|
3541
|
-
"type": "object"
|
|
3542
|
-
}
|
|
3543
|
-
}
|
|
3544
|
-
}
|
|
3545
|
-
]
|
|
3546
|
-
},
|
|
3547
3539
|
"request": {
|
|
3548
3540
|
"description": "Represents request attributes",
|
|
3549
3541
|
"type": "object",
|
|
@@ -5727,11 +5719,8 @@
|
|
|
5727
5719
|
}
|
|
5728
5720
|
]
|
|
5729
5721
|
},
|
|
5730
|
-
"service": {
|
|
5731
|
-
"$ref": "#/$defs/service"
|
|
5732
|
-
},
|
|
5733
5722
|
"url": {
|
|
5734
|
-
"description": "[Deprecated] Represents the URL that will be used as navigation target
|
|
5723
|
+
"description": "[Deprecated] Represents the URL that will be used as navigation target",
|
|
5735
5724
|
"deprecated": true,
|
|
5736
5725
|
"type": "string"
|
|
5737
5726
|
},
|
|
@@ -6892,9 +6881,6 @@
|
|
|
6892
6881
|
],
|
|
6893
6882
|
"additionalProperties": true
|
|
6894
6883
|
},
|
|
6895
|
-
"service": {
|
|
6896
|
-
"$ref": "#/$defs/service"
|
|
6897
|
-
},
|
|
6898
6884
|
"updateInterval": {
|
|
6899
6885
|
"description": "Represents interval in seconds, after which a new data request will be triggered",
|
|
6900
6886
|
"oneOf": [
|
|
@@ -7290,7 +7276,7 @@
|
|
|
7290
7276
|
},
|
|
7291
7277
|
"simpleBinding": {
|
|
7292
7278
|
"type": "string",
|
|
7293
|
-
"pattern": "
|
|
7279
|
+
"pattern": "^\\{.*\\}$"
|
|
7294
7280
|
},
|
|
7295
7281
|
"definingRequest": {
|
|
7296
7282
|
"type": "object",
|
|
@@ -9270,7 +9256,7 @@
|
|
|
9270
9256
|
"resourceRoot": {
|
|
9271
9257
|
"description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
|
|
9272
9258
|
"type": "string",
|
|
9273
|
-
"pattern": "^((
|
|
9259
|
+
"pattern": "^((\\.\\/)?\\w+\\/?)+$"
|
|
9274
9260
|
},
|
|
9275
9261
|
"model": {
|
|
9276
9262
|
"description": "Represents sapui5 model name",
|
package/schema_cil.json
CHANGED
|
@@ -3460,7 +3460,7 @@
|
|
|
3460
3460
|
"resourceRoot": {
|
|
3461
3461
|
"description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
|
|
3462
3462
|
"type": "string",
|
|
3463
|
-
"pattern": "^((
|
|
3463
|
+
"pattern": "^((\\.\\/)?\\w+\\/?)+$"
|
|
3464
3464
|
},
|
|
3465
3465
|
"model": {
|
|
3466
3466
|
"description": "Represents sapui5 model name",
|
package/types/manifest.d.ts
CHANGED
|
@@ -762,7 +762,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
762
762
|
| "1.83.0"
|
|
763
763
|
| "1.83.1"
|
|
764
764
|
| "1.84.0"
|
|
765
|
-
| "1.85.0"
|
|
765
|
+
| "1.85.0"
|
|
766
|
+
| "1.86.0";
|
|
766
767
|
/**
|
|
767
768
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
768
769
|
*/
|