@ui5/manifest 1.87.0 → 1.88.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 -5
- package/mapping.json +2 -1
- package/package.json +1 -1
- package/schema.json +17 -2
- package/types/manifest.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,16 +3,22 @@ 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
|
+
## [Unreleased]
|
|
6
7
|
|
|
7
|
-
<a name="v1.
|
|
8
|
-
## [v1.
|
|
8
|
+
<a name="v1.88.0"></a>
|
|
9
|
+
## [v1.88.0] - 2026-06-25 (UI5 1.150)
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
### Added
|
|
12
|
+
- sap.card: New property `ignoreBinding` on configuration parameters. When set to `true`, the parameter value is taken verbatim and is not processed as a binding expression. Useful for values that contain literal curly braces, e.g. stringified JSON.
|
|
13
|
+
- sap.card: New property `itemsLayout` for object card group. Defines how the items inside the group are laid out. \"Vertical\" stacks each label/value pair on its own row (default). \"Horizontal\" arranges the pairs side by side and wraps them onto multiple rows when there is not enough width.
|
|
12
14
|
|
|
13
15
|
<a name="v1.87.0"></a>
|
|
14
16
|
## [v1.87.0] - 2026-06-11 (UI5 1.149)
|
|
15
17
|
|
|
18
|
+
### Added
|
|
19
|
+
- sap.platform.cf: New property `ui5VersionNumber` to specify the SAPUI5 version used to load and run the application in SAP Build Work Zone.
|
|
20
|
+
- sap.ovp: New property `controlConfiguration`to specify the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.
|
|
21
|
+
|
|
16
22
|
<a name="v1.86.0"></a>
|
|
17
23
|
## [v1.86.0] - 2026-05-04 (UI5 1.148)
|
|
18
24
|
|
|
@@ -270,7 +276,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
270
276
|
<a name="v1.48.1"></a>
|
|
271
277
|
## v1.48.1 - 2022-11-10
|
|
272
278
|
|
|
273
|
-
[Unreleased]: https://github.com/UI5/manifest/compare/v1.
|
|
279
|
+
[Unreleased]: https://github.com/UI5/manifest/compare/v1.88.0...HEAD
|
|
280
|
+
[v1.88.0]: https://github.com/UI5/manifest/compare/v1.87.0...v1.88.0
|
|
274
281
|
[v1.87.0]: https://github.com/UI5/manifest/compare/v1.86.0...v1.87.0
|
|
275
282
|
[v1.86.0]: https://github.com/UI5/manifest/compare/v1.85.0...v1.86.0
|
|
276
283
|
[v1.85.0]: https://github.com/UI5/manifest/compare/v1.84.0...v1.85.0
|
package/mapping.json
CHANGED
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -106,7 +106,8 @@
|
|
|
106
106
|
"1.84.0",
|
|
107
107
|
"1.85.0",
|
|
108
108
|
"1.86.0",
|
|
109
|
-
"1.87.0"
|
|
109
|
+
"1.87.0",
|
|
110
|
+
"1.88.0"
|
|
110
111
|
]
|
|
111
112
|
},
|
|
112
113
|
"start_url": {
|
|
@@ -2154,7 +2155,8 @@
|
|
|
2154
2155
|
"1.59.0",
|
|
2155
2156
|
"1.60.0",
|
|
2156
2157
|
"1.61.0",
|
|
2157
|
-
"1.62.0"
|
|
2158
|
+
"1.62.0",
|
|
2159
|
+
"1.63.0"
|
|
2158
2160
|
]
|
|
2159
2161
|
},
|
|
2160
2162
|
"designtime": {
|
|
@@ -4863,6 +4865,14 @@
|
|
|
4863
4865
|
"Stretch"
|
|
4864
4866
|
],
|
|
4865
4867
|
"default": "Default"
|
|
4868
|
+
},
|
|
4869
|
+
"itemsLayout": {
|
|
4870
|
+
"description": "[Experimental] Defines how the items inside the group are laid out. \"Vertical\" stacks each label/value pair on its own row (default). \"Horizontal\" arranges the pairs side by side and wraps them onto multiple rows when there is not enough width. In order to have horizontal layout, you need to set the `alignment` property to \"Stretch\".",
|
|
4871
|
+
"enum": [
|
|
4872
|
+
"Vertical",
|
|
4873
|
+
"Horizontal"
|
|
4874
|
+
],
|
|
4875
|
+
"default": "Vertical"
|
|
4866
4876
|
}
|
|
4867
4877
|
}
|
|
4868
4878
|
},
|
|
@@ -7346,6 +7356,11 @@
|
|
|
7346
7356
|
"description": {
|
|
7347
7357
|
"description": "Description of the parameter for user-friendly visualization in the design-time editor",
|
|
7348
7358
|
"type": "string"
|
|
7359
|
+
},
|
|
7360
|
+
"ignoreBinding": {
|
|
7361
|
+
"description": "If true, the parameter value is taken verbatim and is not processed as a binding expression. Use this for values that contain literal curly braces, e.g. stringified JSON. Note: {context>/...} bindings inside the value will not be resolved when this flag is set.",
|
|
7362
|
+
"type": "boolean",
|
|
7363
|
+
"default": false
|
|
7349
7364
|
}
|
|
7350
7365
|
}
|
|
7351
7366
|
},
|
package/types/manifest.d.ts
CHANGED
|
@@ -764,7 +764,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
764
764
|
| "1.84.0"
|
|
765
765
|
| "1.85.0"
|
|
766
766
|
| "1.86.0"
|
|
767
|
-
| "1.87.0"
|
|
767
|
+
| "1.87.0"
|
|
768
|
+
| "1.88.0";
|
|
768
769
|
/**
|
|
769
770
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
770
771
|
*/
|