@ui5/manifest 1.86.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 CHANGED
@@ -3,6 +3,21 @@ 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]
7
+
8
+ <a name="v1.88.0"></a>
9
+ ## [v1.88.0] - 2026-06-25 (UI5 1.150)
10
+
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.
14
+
15
+ <a name="v1.87.0"></a>
16
+ ## [v1.87.0] - 2026-06-11 (UI5 1.149)
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.
6
21
 
7
22
  <a name="v1.86.0"></a>
8
23
  ## [v1.86.0] - 2026-05-04 (UI5 1.148)
@@ -261,7 +276,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
261
276
  <a name="v1.48.1"></a>
262
277
  ## v1.48.1 - 2022-11-10
263
278
 
264
- [Unreleased]: https://github.com/UI5/manifest/compare/v1.86.0...HEAD
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
281
+ [v1.87.0]: https://github.com/UI5/manifest/compare/v1.86.0...v1.87.0
265
282
  [v1.86.0]: https://github.com/UI5/manifest/compare/v1.85.0...v1.86.0
266
283
  [v1.85.0]: https://github.com/UI5/manifest/compare/v1.84.0...v1.85.0
267
284
  [v1.84.0]: https://github.com/UI5/manifest/compare/v1.83.1...v1.84.0
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.86.0",
2
+ "latest": "1.88.0",
3
+ "1.150": "1.88.0",
4
+ "1.149": "1.87.0",
3
5
  "1.148": "1.86.0",
4
6
  "1.147": "1.85.0",
5
7
  "1.146": "1.84.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.86.0",
3
+ "version": "1.88.0",
4
4
  "description": "This project contains a JSON schema for the UI5 manifest",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -105,7 +105,9 @@
105
105
  "1.83.1",
106
106
  "1.84.0",
107
107
  "1.85.0",
108
- "1.86.0"
108
+ "1.86.0",
109
+ "1.87.0",
110
+ "1.88.0"
109
111
  ]
110
112
  },
111
113
  "start_url": {
@@ -1057,6 +1059,10 @@
1057
1059
  "1.2.0"
1058
1060
  ]
1059
1061
  },
1062
+ "ui5VersionNumber": {
1063
+ "description": "Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.",
1064
+ "type": "string"
1065
+ },
1060
1066
  "oAuthScopes": {
1061
1067
  "description": "Represents the authorization scope of the application",
1062
1068
  "type": "array",
@@ -1326,7 +1332,8 @@
1326
1332
  "1.10.0",
1327
1333
  "1.11.0",
1328
1334
  "1.12.0",
1329
- "1.13.0"
1335
+ "1.13.0",
1336
+ "1.14.0"
1330
1337
  ]
1331
1338
  },
1332
1339
  "globalFilterModel": {
@@ -1473,6 +1480,75 @@
1473
1480
  }
1474
1481
  }
1475
1482
  },
1483
+ "controlConfiguration": {
1484
+ "description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
1485
+ "type": "object",
1486
+ "patternProperties": {
1487
+ "^@[a-zA-Z0-9_\\.\\-\\/]*$": {
1488
+ "description": "Defines the configuration for a specific annotation path",
1489
+ "type": "object",
1490
+ "properties": {
1491
+ "filterFields": {
1492
+ "description": "Defines the configuration for filter fields",
1493
+ "type": "object",
1494
+ "patternProperties": {
1495
+ "^[a-zA-Z0-9_\\.\\-]*$": {
1496
+ "description": "Defines the configuration for a specific filter field",
1497
+ "type": "object",
1498
+ "properties": {
1499
+ "settings": {
1500
+ "description": "Defines the settings for a specific filter field",
1501
+ "type": "object",
1502
+ "properties": {
1503
+ "defaultValues": {
1504
+ "description": "Defines the default values for the filter field",
1505
+ "type": "array",
1506
+ "items": {
1507
+ "type": "object",
1508
+ "properties": {
1509
+ "operator": {
1510
+ "description": "Specifies the default semantic date operator",
1511
+ "type": "string"
1512
+ },
1513
+ "values": {
1514
+ "description": "Specifies additional values for the operator",
1515
+ "type": "array"
1516
+ }
1517
+ }
1518
+ }
1519
+ },
1520
+ "operatorConfiguration": {
1521
+ "description": "Defines how operators are configured for the filter field",
1522
+ "type": "array",
1523
+ "items": {
1524
+ "type": "object",
1525
+ "properties": {
1526
+ "path": {
1527
+ "description": "Specifies the key information",
1528
+ "type": "string"
1529
+ },
1530
+ "equals": {
1531
+ "description": "Specifies one or more operator values, separated by commas",
1532
+ "type": "string"
1533
+ },
1534
+ "exclude": {
1535
+ "description": "Flag to exclude or include matched operators",
1536
+ "type": "boolean",
1537
+ "default": true
1538
+ }
1539
+ }
1540
+ }
1541
+ }
1542
+ }
1543
+ }
1544
+ }
1545
+ }
1546
+ }
1547
+ }
1548
+ }
1549
+ }
1550
+ }
1551
+ },
1476
1552
  "dataLoadSettings": {
1477
1553
  "description": "Represents the object to define data loading behaviour for an overview page application",
1478
1554
  "type": "object",
@@ -2079,7 +2155,8 @@
2079
2155
  "1.59.0",
2080
2156
  "1.60.0",
2081
2157
  "1.61.0",
2082
- "1.62.0"
2158
+ "1.62.0",
2159
+ "1.63.0"
2083
2160
  ]
2084
2161
  },
2085
2162
  "designtime": {
@@ -4788,6 +4865,14 @@
4788
4865
  "Stretch"
4789
4866
  ],
4790
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"
4791
4876
  }
4792
4877
  }
4793
4878
  },
@@ -7271,6 +7356,11 @@
7271
7356
  "description": {
7272
7357
  "description": "Description of the parameter for user-friendly visualization in the design-time editor",
7273
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
7274
7364
  }
7275
7365
  }
7276
7366
  },
package/schema_cil.json CHANGED
@@ -702,6 +702,10 @@
702
702
  "1.2.0"
703
703
  ]
704
704
  },
705
+ "ui5VersionNumber": {
706
+ "description": "Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.",
707
+ "type": "string"
708
+ },
705
709
  "oAuthScopes": {
706
710
  "description": "Represents the authorization scope of the application",
707
711
  "type": "array",
@@ -952,7 +956,8 @@
952
956
  "1.10.0",
953
957
  "1.11.0",
954
958
  "1.12.0",
955
- "1.13.0"
959
+ "1.13.0",
960
+ "1.14.0"
956
961
  ]
957
962
  },
958
963
  "globalFilterModel": {
@@ -1099,6 +1104,75 @@
1099
1104
  }
1100
1105
  }
1101
1106
  },
1107
+ "controlConfiguration": {
1108
+ "description": "Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.",
1109
+ "type": "object",
1110
+ "patternProperties": {
1111
+ "^@[a-zA-Z0-9_\\.\\-\\/]*$": {
1112
+ "description": "Defines the configuration for a specific annotation path",
1113
+ "type": "object",
1114
+ "properties": {
1115
+ "filterFields": {
1116
+ "description": "Defines the configuration for filter fields",
1117
+ "type": "object",
1118
+ "patternProperties": {
1119
+ "^[a-zA-Z0-9_\\.\\-]*$": {
1120
+ "description": "Defines the configuration for a specific filter field",
1121
+ "type": "object",
1122
+ "properties": {
1123
+ "settings": {
1124
+ "description": "Defines the settings for a specific filter field",
1125
+ "type": "object",
1126
+ "properties": {
1127
+ "defaultValues": {
1128
+ "description": "Defines the default values for the filter field",
1129
+ "type": "array",
1130
+ "items": {
1131
+ "type": "object",
1132
+ "properties": {
1133
+ "operator": {
1134
+ "description": "Specifies the default semantic date operator",
1135
+ "type": "string"
1136
+ },
1137
+ "values": {
1138
+ "description": "Specifies additional values for the operator",
1139
+ "type": "array"
1140
+ }
1141
+ }
1142
+ }
1143
+ },
1144
+ "operatorConfiguration": {
1145
+ "description": "Defines how operators are configured for the filter field",
1146
+ "type": "array",
1147
+ "items": {
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "path": {
1151
+ "description": "Specifies the key information",
1152
+ "type": "string"
1153
+ },
1154
+ "equals": {
1155
+ "description": "Specifies one or more operator values, separated by commas",
1156
+ "type": "string"
1157
+ },
1158
+ "exclude": {
1159
+ "description": "Flag to exclude or include matched operators",
1160
+ "type": "boolean",
1161
+ "default": true
1162
+ }
1163
+ }
1164
+ }
1165
+ }
1166
+ }
1167
+ }
1168
+ }
1169
+ }
1170
+ }
1171
+ }
1172
+ }
1173
+ }
1174
+ }
1175
+ },
1102
1176
  "dataLoadSettings": {
1103
1177
  "description": "Represents the object to define data loading behaviour for an overview page application",
1104
1178
  "type": "object",
@@ -763,7 +763,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
763
763
  | "1.83.1"
764
764
  | "1.84.0"
765
765
  | "1.85.0"
766
- | "1.86.0";
766
+ | "1.86.0"
767
+ | "1.87.0"
768
+ | "1.88.0";
767
769
  /**
768
770
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
769
771
  */
@@ -2019,6 +2021,10 @@ export interface JSONSchemaForSAPPLATFORMCFNamespace {
2019
2021
  * Represents attributes format version. It is managed by namespace owner
2020
2022
  */
2021
2023
  _version?: "1.1.0" | "1.2.0";
2024
+ /**
2025
+ * Specifies the SAPUI5 version used to load and run the application in SAP Build Work Zone. The UI5 version consists of [major, minor, patch]. You can replace the patch numeric value with an X, x, or *. For example, use 'ui5VersionNumber': '1.136.x' to get automatic updates of all patches of version 1.136.
2026
+ */
2027
+ ui5VersionNumber?: string;
2022
2028
  /**
2023
2029
  * Represents the authorization scope of the application
2024
2030
  */
@@ -2638,7 +2644,8 @@ export interface JSONSchemaForSAPOVPNamespace {
2638
2644
  | "1.10.0"
2639
2645
  | "1.11.0"
2640
2646
  | "1.12.0"
2641
- | "1.13.0";
2647
+ | "1.13.0"
2648
+ | "1.14.0";
2642
2649
  /**
2643
2650
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2644
2651
  */
@@ -2744,6 +2751,72 @@ export interface JSONSchemaForSAPOVPNamespace {
2744
2751
  };
2745
2752
  [k: string]: unknown;
2746
2753
  };
2754
+ /**
2755
+ * Specifies the configuration of filter fields, mapped by annotation path. Supported in OData V4 only.
2756
+ */
2757
+ controlConfiguration?: {
2758
+ /**
2759
+ * Defines the configuration for a specific annotation path
2760
+ *
2761
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2762
+ * via the `patternProperty` "^@[a-zA-Z0-9_\.\-\/]*$".
2763
+ */
2764
+ [k: string]: {
2765
+ /**
2766
+ * Defines the configuration for filter fields
2767
+ */
2768
+ filterFields?: {
2769
+ /**
2770
+ * Defines the configuration for a specific filter field
2771
+ *
2772
+ * This interface was referenced by `undefined`'s JSON-Schema definition
2773
+ * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
2774
+ */
2775
+ [k: string]: {
2776
+ /**
2777
+ * Defines the settings for a specific filter field
2778
+ */
2779
+ settings?: {
2780
+ /**
2781
+ * Defines the default values for the filter field
2782
+ */
2783
+ defaultValues?: {
2784
+ /**
2785
+ * Specifies the default semantic date operator
2786
+ */
2787
+ operator?: string;
2788
+ /**
2789
+ * Specifies additional values for the operator
2790
+ */
2791
+ values?: unknown[];
2792
+ [k: string]: unknown;
2793
+ }[];
2794
+ /**
2795
+ * Defines how operators are configured for the filter field
2796
+ */
2797
+ operatorConfiguration?: {
2798
+ /**
2799
+ * Specifies the key information
2800
+ */
2801
+ path?: string;
2802
+ /**
2803
+ * Specifies one or more operator values, separated by commas
2804
+ */
2805
+ equals?: string;
2806
+ /**
2807
+ * Flag to exclude or include matched operators
2808
+ */
2809
+ exclude?: boolean;
2810
+ [k: string]: unknown;
2811
+ }[];
2812
+ [k: string]: unknown;
2813
+ };
2814
+ [k: string]: unknown;
2815
+ };
2816
+ };
2817
+ [k: string]: unknown;
2818
+ };
2819
+ };
2747
2820
  /**
2748
2821
  * Represents the object to define data loading behaviour for an overview page application
2749
2822
  */