@ui5/manifest 1.78.0 → 1.80.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
@@ -5,6 +5,24 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
5
5
  <a name="Unreleased"></a>
6
6
  ## [Unreleased]
7
7
 
8
+ <a name="v1.80.0"></a>
9
+ ## [v1.80.0] - 2025-10-28 (UI5 1.142)
10
+
11
+ <a name="v1.79.0"></a>
12
+ ## [v1.79.0] - 2025-09-24 (UI5 1.141)
13
+
14
+ ### Added
15
+ - sap.card: New property "configuration/childCards" which holds a list of Configuration.ChildCard which represents a child card that can be opened from the main card
16
+ - sap.card: New property "showCardActionParameters/childCardKey" to refer to a child card which to be shown
17
+ - sap.card: New property "header/icon/state" which can be used to apply semantic state to the icon in the header
18
+
19
+ ### Changed
20
+ - sap.card: Added valiadtion for allowed combinations of "header/icon" properties
21
+ - sap.card: Deprecated property "showCardActionParameters/manifest". Use "showCardActionParameters/childCardKey" instead.
22
+
23
+ - sap.ui5/*: Added additional description texts for already deprecated settings
24
+ - v2: Added additional description texts to the left over v2 settings, same as in v1
25
+
8
26
  <a name="v1.78.0"></a>
9
27
  ## [v1.78.0] - 2025-08-22 (UI5 1.140)
10
28
  ### Changed
@@ -13,6 +31,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
13
31
 
14
32
  ### Added
15
33
  - sap.card: Added new property "useMainDestinations"
34
+ - sap.ui5/flexBundle: new property explicitly flagging if a flexibility-bundle.json is part of the built application.
16
35
 
17
36
  <a name="v1.77.0"></a>
18
37
  ## [v1.77.0] - 2025-08-04 (UI5 1.139)
@@ -169,7 +188,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
169
188
  <a name="v1.48.1"></a>
170
189
  ## v1.48.1 - 2022-11-10
171
190
 
172
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...HEAD
191
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.80.0...HEAD
192
+ [v1.80.0]: https://github.com/SAP/ui5-manifest/compare/v1.79.0...v1.80.0
193
+ [v1.79.0]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...v1.79.0
173
194
  [v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
174
195
  [v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
175
196
  [v1.76.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v1.76.0
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.78.0",
2
+ "latest": "1.80.0",
3
+ "1.142": "1.80.0",
4
+ "1.141": "1.79.0",
3
5
  "1.140": "1.78.0",
4
6
  "1.139": "1.77.0",
5
7
  "1.138": "1.76.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.78.0",
3
+ "version": "1.80.0",
4
4
  "description": "This project contains the flattend json schema for the ui5 manifest.",
5
5
  "repository": {
6
6
  "type": "git",
package/schema.json CHANGED
@@ -94,7 +94,9 @@
94
94
  "1.75.1",
95
95
  "1.76.0",
96
96
  "1.77.0",
97
- "1.78.0"
97
+ "1.78.0",
98
+ "1.79.0",
99
+ "1.80.0"
98
100
  ]
99
101
  },
100
102
  "start_url": {
@@ -883,6 +885,10 @@
883
885
  }
884
886
  }
885
887
  },
888
+ "flexBundle": {
889
+ "description": "Represents an indicator whether a flexibility bundle was created and is within the application sources. This property is set by the building tool.",
890
+ "type": "boolean"
891
+ },
886
892
  "flexExtensionPointEnabled": {
887
893
  "description": "Represents an indicator whether app variant is flex extension point enabled",
888
894
  "type": "boolean",
@@ -1309,7 +1315,8 @@
1309
1315
  "1.9.0",
1310
1316
  "1.10.0",
1311
1317
  "1.11.0",
1312
- "1.12.0"
1318
+ "1.12.0",
1319
+ "1.13.0"
1313
1320
  ]
1314
1321
  },
1315
1322
  "globalFilterModel": {
@@ -1359,10 +1366,16 @@
1359
1366
  "containerLayout": {
1360
1367
  "description": "Represents the layout of the card container",
1361
1368
  "type": "string",
1362
- "default": "fixed",
1363
- "enum": [
1364
- "fixed",
1365
- "resizable"
1369
+ "default": "resizable",
1370
+ "oneOf": [
1371
+ {
1372
+ "const": "resizable"
1373
+ },
1374
+ {
1375
+ "const": "fixed",
1376
+ "deprecated": true,
1377
+ "description": "[Deprecated] Value fixed is deprecated"
1378
+ }
1366
1379
  ]
1367
1380
  },
1368
1381
  "showDateInRelativeFormat": {
@@ -2047,7 +2060,8 @@
2047
2060
  "1.54.0",
2048
2061
  "1.55.0",
2049
2062
  "1.56.0",
2050
- "1.57.0"
2063
+ "1.57.0",
2064
+ "1.58.0"
2051
2065
  ]
2052
2066
  },
2053
2067
  "designtime": {
@@ -2152,7 +2166,7 @@
2152
2166
  "type": "object"
2153
2167
  },
2154
2168
  "loadingPlaceholders": {
2155
- "description": "[Experimental] Object which will represent the loading placeholder of the card",
2169
+ "description": "[Experimental] Object that will represent the loading placeholder of the card",
2156
2170
  "type": "object",
2157
2171
  "properties": {
2158
2172
  "delay": {
@@ -2160,6 +2174,13 @@
2160
2174
  "type": "number"
2161
2175
  }
2162
2176
  }
2177
+ },
2178
+ "childCards": {
2179
+ "description": "[Experimental] Map of child cards",
2180
+ "type": "object",
2181
+ "additionalProperties": {
2182
+ "$ref": "#/$defs/Configuration.ChildCard"
2183
+ }
2163
2184
  }
2164
2185
  }
2165
2186
  },
@@ -3310,12 +3331,14 @@
3310
3331
  "description": "Parameters for ShowCard action",
3311
3332
  "type": "object",
3312
3333
  "additionalProperties": false,
3313
- "required": [
3314
- "manifest"
3315
- ],
3316
3334
  "properties": {
3335
+ "childCardKey": {
3336
+ "description": "The key of the card to be shown",
3337
+ "type": "string"
3338
+ },
3317
3339
  "manifest": {
3318
- "description": "An application identifier consisting of semanticObject and action",
3340
+ "deprecated": true,
3341
+ "description": "[Deprecated] Child card manifest",
3319
3342
  "oneOf": [
3320
3343
  {
3321
3344
  "type": "string"
@@ -5498,11 +5521,61 @@
5498
5521
  }
5499
5522
  ]
5500
5523
  },
5524
+ "state": {
5525
+ "description": "Defines the state of the icon",
5526
+ "oneOf": [
5527
+ {
5528
+ "$ref": "#/$defs/state"
5529
+ },
5530
+ {
5531
+ "$ref": "#/$defs/simpleBinding"
5532
+ }
5533
+ ]
5534
+ },
5501
5535
  "visible": {
5502
5536
  "description": "Visibility of the icon",
5503
5537
  "$ref": "#/$defs/visibility"
5504
5538
  }
5505
- }
5539
+ },
5540
+ "allOf": [
5541
+ {
5542
+ "anyOf": [
5543
+ {
5544
+ "required": [
5545
+ "src"
5546
+ ]
5547
+ },
5548
+ {
5549
+ "required": [
5550
+ "initials"
5551
+ ]
5552
+ },
5553
+ {
5554
+ "required": [
5555
+ "state"
5556
+ ]
5557
+ }
5558
+ ]
5559
+ },
5560
+ {
5561
+ "not": {
5562
+ "anyOf": [
5563
+ {
5564
+ "required": [
5565
+ "src",
5566
+ "state"
5567
+ ]
5568
+ },
5569
+ {
5570
+ "required": [
5571
+ "initials",
5572
+ "state"
5573
+ ]
5574
+ }
5575
+ ]
5576
+ }
5577
+ }
5578
+ ]
5506
5579
  },
5507
5580
  "action": {
5508
5581
  "description": "Represents actions that can be applied on card elements",
@@ -6685,6 +6758,20 @@
6685
6758
  }
6686
6759
  }
6687
6760
  },
6761
+ "Configuration.ChildCard": {
6762
+ "description": "Represents a configuration for a child card",
6763
+ "type": "object",
6764
+ "additionalProperties": false,
6765
+ "required": [
6766
+ "manifest"
6767
+ ],
6768
+ "properties": {
6769
+ "manifest": {
6770
+ "description": "The manifest of the child card",
6771
+ "type": "string"
6772
+ }
6773
+ }
6774
+ },
6688
6775
  "Configuration.NoData": {
6689
6776
  "description": "Represents a configuration for a NoData",
6690
6777
  "type": "object",
@@ -8021,6 +8108,7 @@
8021
8108
  }
8022
8109
  },
8023
8110
  "actualTargetAdditionComponentUsage": {
8111
+ "description": "Represents target configuration properties for component usage routing scenarios where targets reference reusable components",
8024
8112
  "type": "object",
8025
8113
  "required": [
8026
8114
  "usage",
@@ -8050,6 +8138,7 @@
8050
8138
  }
8051
8139
  },
8052
8140
  "actualTargetAdditionStandard": {
8141
+ "description": "Represents the target configuration properties for modern routing implementations with view or component targets",
8053
8142
  "type": "object",
8054
8143
  "required": [
8055
8144
  "name"
@@ -8068,7 +8157,7 @@
8068
8157
  "type": "string"
8069
8158
  },
8070
8159
  "type": {
8071
- "description": "Represents the type of the type View or Component",
8160
+ "description": "Represents the type of the target: View or Component",
8072
8161
  "type": "string",
8073
8162
  "enum": [
8074
8163
  "View",
@@ -8083,6 +8172,7 @@
8083
8172
  }
8084
8173
  },
8085
8174
  "legacyTargetAddition": {
8175
+ "description": "Represents legacy target configuration properties for backward compatibility with older routing implementations",
8086
8176
  "type": "object",
8087
8177
  "required": [
8088
8178
  "viewName"
@@ -8090,22 +8180,22 @@
8090
8180
  "properties": {
8091
8181
  "viewName": {
8092
8182
  "deprecated": true,
8093
- "description": "[Deprecated] Represents the name of a view that will be created",
8183
+ "description": "[Deprecated] Represents the name of a view that will be created. Please use 'name' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewPath', 'viewLevel' as well.",
8094
8184
  "type": "string"
8095
8185
  },
8096
8186
  "viewId": {
8097
8187
  "deprecated": true,
8098
- "description": "[Deprecated] Represents the id of the created view",
8188
+ "description": "[Deprecated] Represents the id of the created view. Please use 'id' property instead together with the 'type' property set to 'View'. The same applies to 'viewName', 'viewPath', 'viewLevel' as well.",
8099
8189
  "type": "string"
8100
8190
  },
8101
8191
  "viewPath": {
8102
8192
  "deprecated": true,
8103
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
8193
+ "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName. Please use 'path' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewLevel' as well.",
8104
8194
  "type": "string"
8105
8195
  },
8106
8196
  "viewLevel": {
8107
8197
  "deprecated": true,
8108
- "description": "[Deprecated] Represents the level of the current view, which is used to define the transition direction when navigating to this view",
8198
+ "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view. Please use 'level' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewPath' as well.",
8109
8199
  "type": "number",
8110
8200
  "multipleOf": 1
8111
8201
  }
@@ -8184,26 +8274,27 @@
8184
8274
  }
8185
8275
  },
8186
8276
  "legacyTargetAdditionWithoutRequiredProp": {
8277
+ "description": "Represents legacy target configuration properties without required properties for more flexible backward compatibility scenarios",
8187
8278
  "type": "object",
8188
8279
  "properties": {
8189
8280
  "viewName": {
8190
8281
  "deprecated": true,
8191
- "description": "[Deprecated] Represents the name of a view that will be created",
8282
+ "description": "[Deprecated] Represents the name of a view that will be created. Please use 'name' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewPath', 'viewLevel' as well.",
8192
8283
  "type": "string"
8193
8284
  },
8194
8285
  "viewId": {
8195
8286
  "deprecated": true,
8196
- "description": "[Deprecated] Represents the id of the created view",
8287
+ "description": "[Deprecated] Represents the id of the created view. Please use 'id' property instead together with the 'type' property set to 'View'. The same applies to 'viewName', 'viewPath', 'viewLevel' as well.",
8197
8288
  "type": "string"
8198
8289
  },
8199
8290
  "viewPath": {
8200
8291
  "deprecated": true,
8201
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
8292
+ "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName. Please use 'path' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewLevel' as well.",
8202
8293
  "type": "string"
8203
8294
  },
8204
8295
  "viewLevel": {
8205
8296
  "deprecated": true,
8206
- "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view",
8297
+ "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view. Please use 'level' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewPath' as well.",
8207
8298
  "type": "number",
8208
8299
  "multipleOf": 1
8209
8300
  }
@@ -8218,15 +8309,7 @@
8218
8309
  "type": "string"
8219
8310
  },
8220
8311
  "viewType": {
8221
- "description": "Represents the type of view that is going to be created",
8222
- "type": "string",
8223
- "enum": [
8224
- "XML",
8225
- "JSON",
8226
- "JS",
8227
- "HTML",
8228
- "Template"
8229
- ]
8312
+ "$ref": "#/$defs/viewTypeDefinition"
8230
8313
  },
8231
8314
  "targetParent": {
8232
8315
  "description": "Represents the id of the view that contains the control specified by the 'controlId'",
@@ -8296,7 +8379,38 @@
8296
8379
  }
8297
8380
  ]
8298
8381
  },
8382
+ "viewTypeDefinition": {
8383
+ "description": "Represents the type of view that is going to be created",
8384
+ "type": "string",
8385
+ "oneOf": [
8386
+ {
8387
+ "const": "XML",
8388
+ "description": "Value `XML` is used to create an XML view. This is the recommended view type to use. Other view types are deprecated and will be removed in future UI5 versions."
8389
+ },
8390
+ {
8391
+ "const": "JSON",
8392
+ "deprecated": true,
8393
+ "description": "[Deprecated] Value `JSON` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8394
+ },
8395
+ {
8396
+ "const": "JS",
8397
+ "deprecated": true,
8398
+ "description": "[Deprecated] Value `JS` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8399
+ },
8400
+ {
8401
+ "const": "HTML",
8402
+ "deprecated": true,
8403
+ "description": "[Deprecated] Value `HTML` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8404
+ },
8405
+ {
8406
+ "const": "Template",
8407
+ "deprecated": true,
8408
+ "description": "[Deprecated] Value `Template` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8409
+ }
8410
+ ]
8411
+ },
8299
8412
  "ui5setting": {
8413
+ "description": "Represents UI5-specific settings and configuration options that can be applied to models.",
8300
8414
  "type": "object",
8301
8415
  "additionalProperties": true,
8302
8416
  "properties": {
@@ -8374,15 +8488,7 @@
8374
8488
  "type": "string"
8375
8489
  },
8376
8490
  "type": {
8377
- "description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
8378
- "type": "string",
8379
- "enum": [
8380
- "XML",
8381
- "JSON",
8382
- "JS",
8383
- "HTML",
8384
- "Template"
8385
- ]
8491
+ "$ref": "#/$defs/viewTypeDefinition"
8386
8492
  },
8387
8493
  "id": {
8388
8494
  "description": "Represents the id of the view",
@@ -8541,15 +8647,7 @@
8541
8647
  "type": "string"
8542
8648
  },
8543
8649
  "type": {
8544
- "description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
8545
- "type": "string",
8546
- "enum": [
8547
- "XML",
8548
- "JSON",
8549
- "JS",
8550
- "HTML",
8551
- "Template"
8552
- ]
8650
+ "$ref": "#/$defs/viewTypeDefinition"
8553
8651
  },
8554
8652
  "id": {
8555
8653
  "description": "Represents the id of the view",
@@ -8978,6 +9076,7 @@
8978
9076
  ]
8979
9077
  },
8980
9078
  "resourceRoot": {
9079
+ "description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
8981
9080
  "type": "string",
8982
9081
  "pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
8983
9082
  },
@@ -9080,10 +9179,11 @@
9080
9179
  }
9081
9180
  },
9082
9181
  "resource": {
9182
+ "description": "Represents additional resources that need to be loaded for the component",
9083
9183
  "type": "object",
9084
9184
  "properties": {
9085
9185
  "js": {
9086
- "description": "[Deprecated] Specifies additional JavaScript resources of the Component.",
9186
+ "description": "[Deprecated] Specifies additional JavaScript resources of the Component. Since 1.94, the usage of JavaScript resources is deprecated. Please use regular dependencies via 'sap.ui.define()' or 'sap.ui.require()' instead.",
9087
9187
  "deprecated": true,
9088
9188
  "type": "array",
9089
9189
  "items": {
package/schema_cil.json CHANGED
@@ -949,7 +949,8 @@
949
949
  "1.9.0",
950
950
  "1.10.0",
951
951
  "1.11.0",
952
- "1.12.0"
952
+ "1.12.0",
953
+ "1.13.0"
953
954
  ]
954
955
  },
955
956
  "globalFilterModel": {
@@ -999,10 +1000,16 @@
999
1000
  "containerLayout": {
1000
1001
  "description": "Represents the layout of the card container",
1001
1002
  "type": "string",
1002
- "default": "fixed",
1003
- "enum": [
1004
- "fixed",
1005
- "resizable"
1003
+ "default": "resizable",
1004
+ "oneOf": [
1005
+ {
1006
+ "const": "resizable"
1007
+ },
1008
+ {
1009
+ "const": "fixed",
1010
+ "deprecated": true,
1011
+ "description": "[Deprecated] Value fixed is deprecated"
1012
+ }
1006
1013
  ]
1007
1014
  },
1008
1015
  "showDateInRelativeFormat": {
@@ -2483,6 +2490,7 @@
2483
2490
  }
2484
2491
  },
2485
2492
  "actualTargetAdditionComponentUsage": {
2493
+ "description": "Represents target configuration properties for component usage routing scenarios where targets reference reusable components",
2486
2494
  "type": "object",
2487
2495
  "required": [
2488
2496
  "usage",
@@ -2512,6 +2520,7 @@
2512
2520
  }
2513
2521
  },
2514
2522
  "actualTargetAdditionStandard": {
2523
+ "description": "Represents the target configuration properties for modern routing implementations with view or component targets",
2515
2524
  "type": "object",
2516
2525
  "required": [
2517
2526
  "name"
@@ -2530,7 +2539,7 @@
2530
2539
  "type": "string"
2531
2540
  },
2532
2541
  "type": {
2533
- "description": "Represents the type of the type View or Component",
2542
+ "description": "Represents the type of the target: View or Component",
2534
2543
  "type": "string",
2535
2544
  "enum": [
2536
2545
  "View",
@@ -2545,6 +2554,7 @@
2545
2554
  }
2546
2555
  },
2547
2556
  "legacyTargetAddition": {
2557
+ "description": "Represents legacy target configuration properties for backward compatibility with older routing implementations",
2548
2558
  "type": "object",
2549
2559
  "required": [
2550
2560
  "viewName"
@@ -2552,22 +2562,22 @@
2552
2562
  "properties": {
2553
2563
  "viewName": {
2554
2564
  "deprecated": true,
2555
- "description": "[Deprecated] Represents the name of a view that will be created",
2565
+ "description": "[Deprecated] Represents the name of a view that will be created. Please use 'name' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewPath', 'viewLevel' as well.",
2556
2566
  "type": "string"
2557
2567
  },
2558
2568
  "viewId": {
2559
2569
  "deprecated": true,
2560
- "description": "[Deprecated] Represents the id of the created view",
2570
+ "description": "[Deprecated] Represents the id of the created view. Please use 'id' property instead together with the 'type' property set to 'View'. The same applies to 'viewName', 'viewPath', 'viewLevel' as well.",
2561
2571
  "type": "string"
2562
2572
  },
2563
2573
  "viewPath": {
2564
2574
  "deprecated": true,
2565
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
2575
+ "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName. Please use 'path' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewLevel' as well.",
2566
2576
  "type": "string"
2567
2577
  },
2568
2578
  "viewLevel": {
2569
2579
  "deprecated": true,
2570
- "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view",
2580
+ "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view. Please use 'level' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewPath' as well.",
2571
2581
  "type": "number",
2572
2582
  "multipleOf": 1
2573
2583
  }
@@ -2646,26 +2656,27 @@
2646
2656
  }
2647
2657
  },
2648
2658
  "legacyTargetAdditionWithoutRequiredProp": {
2659
+ "description": "Represents legacy target configuration properties without required properties for more flexible backward compatibility scenarios",
2649
2660
  "type": "object",
2650
2661
  "properties": {
2651
2662
  "viewName": {
2652
2663
  "deprecated": true,
2653
- "description": "[Deprecated] Represents the name of a view that will be created",
2664
+ "description": "[Deprecated] Represents the name of a view that will be created. Please use 'name' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewPath', 'viewLevel' as well.",
2654
2665
  "type": "string"
2655
2666
  },
2656
2667
  "viewId": {
2657
2668
  "deprecated": true,
2658
- "description": "[Deprecated] Represents the id of the created view",
2669
+ "description": "[Deprecated] Represents the id of the created view. Please use 'id' property instead together with the 'type' property set to 'View'. The same applies to 'viewName', 'viewPath', 'viewLevel' as well.",
2659
2670
  "type": "string"
2660
2671
  },
2661
2672
  "viewPath": {
2662
2673
  "deprecated": true,
2663
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
2674
+ "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName. Please use 'path' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewLevel' as well.",
2664
2675
  "type": "string"
2665
2676
  },
2666
2677
  "viewLevel": {
2667
2678
  "deprecated": true,
2668
- "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view",
2679
+ "description": "[Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view. Please use 'level' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewPath' as well.",
2669
2680
  "type": "number",
2670
2681
  "multipleOf": 1
2671
2682
  }
@@ -2680,15 +2691,7 @@
2680
2691
  "type": "string"
2681
2692
  },
2682
2693
  "viewType": {
2683
- "description": "Represents the type of view that is going to be created",
2684
- "type": "string",
2685
- "enum": [
2686
- "XML",
2687
- "JSON",
2688
- "JS",
2689
- "HTML",
2690
- "Template"
2691
- ]
2694
+ "$ref": "#/$defs/viewTypeDefinition"
2692
2695
  },
2693
2696
  "targetParent": {
2694
2697
  "description": "Represents the id of the view that contains the control specified by the 'controlId'",
@@ -2763,6 +2766,36 @@
2763
2766
  }
2764
2767
  ]
2765
2768
  },
2769
+ "viewTypeDefinition": {
2770
+ "description": "Represents the type of view that is going to be created",
2771
+ "type": "string",
2772
+ "oneOf": [
2773
+ {
2774
+ "const": "XML",
2775
+ "description": "Value `XML` is used to create an XML view. This is the recommended view type to use. Other view types are deprecated and will be removed in future UI5 versions."
2776
+ },
2777
+ {
2778
+ "const": "JSON",
2779
+ "deprecated": true,
2780
+ "description": "[Deprecated] Value `JSON` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2781
+ },
2782
+ {
2783
+ "const": "JS",
2784
+ "deprecated": true,
2785
+ "description": "[Deprecated] Value `JS` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2786
+ },
2787
+ {
2788
+ "const": "HTML",
2789
+ "deprecated": true,
2790
+ "description": "[Deprecated] Value `HTML` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2791
+ },
2792
+ {
2793
+ "const": "Template",
2794
+ "deprecated": true,
2795
+ "description": "[Deprecated] Value `Template` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2796
+ }
2797
+ ]
2798
+ },
2766
2799
  "enhanceWithSetting_0": {
2767
2800
  "oneOf": [
2768
2801
  {
@@ -2880,6 +2913,7 @@
2880
2913
  ]
2881
2914
  },
2882
2915
  "ui5setting": {
2916
+ "description": "Represents UI5-specific settings and configuration options that can be applied to models.",
2883
2917
  "type": "object",
2884
2918
  "additionalProperties": true,
2885
2919
  "properties": {
@@ -2953,15 +2987,7 @@
2953
2987
  "type": "string"
2954
2988
  },
2955
2989
  "type": {
2956
- "description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
2957
- "type": "string",
2958
- "enum": [
2959
- "XML",
2960
- "JSON",
2961
- "JS",
2962
- "HTML",
2963
- "Template"
2964
- ]
2990
+ "$ref": "#/$defs/viewTypeDefinition"
2965
2991
  },
2966
2992
  "id": {
2967
2993
  "description": "Represents the id of the view",
@@ -3187,15 +3213,7 @@
3187
3213
  "type": "string"
3188
3214
  },
3189
3215
  "type": {
3190
- "description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
3191
- "type": "string",
3192
- "enum": [
3193
- "XML",
3194
- "JSON",
3195
- "JS",
3196
- "HTML",
3197
- "Template"
3198
- ]
3216
+ "$ref": "#/$defs/viewTypeDefinition"
3199
3217
  },
3200
3218
  "id": {
3201
3219
  "description": "Represents the id of the view",
@@ -3420,6 +3438,7 @@
3420
3438
  ]
3421
3439
  },
3422
3440
  "resourceRoot": {
3441
+ "description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
3423
3442
  "type": "string",
3424
3443
  "pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
3425
3444
  },
@@ -3509,10 +3528,11 @@
3509
3528
  }
3510
3529
  },
3511
3530
  "resource": {
3531
+ "description": "Represents additional resources that need to be loaded for the component",
3512
3532
  "type": "object",
3513
3533
  "properties": {
3514
3534
  "js": {
3515
- "description": "[Deprecated] Specifies additional JavaScript resources of the Component.",
3535
+ "description": "[Deprecated] Specifies additional JavaScript resources of the Component. Since 1.94, the usage of JavaScript resources is deprecated. Please use regular dependencies via 'sap.ui.define()' or 'sap.ui.require()' instead.",
3516
3536
  "deprecated": true,
3517
3537
  "type": "array",
3518
3538
  "items": {
@@ -371,6 +371,10 @@ export type JSONSchemaForSAPUI5Namespace = {
371
371
  commands?: {
372
372
  [k: string]: Command;
373
373
  };
374
+ /**
375
+ * Represents an indicator whether a flexibility bundle was created and is within the application sources. This property is set by the building tool.
376
+ */
377
+ flexBundle?: boolean;
374
378
  /**
375
379
  * Represents an indicator whether app variant is flex extension point enabled
376
380
  */
@@ -458,6 +462,8 @@ export type EnhanceWithSetting2 =
458
462
  };
459
463
  };
460
464
  /**
465
+ * Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources
466
+ *
461
467
  * This interface was referenced by `undefined`'s JSON-Schema definition
462
468
  * via the `patternProperty` "^[a-zA-Z0-9_\.\-]*$".
463
469
  */
@@ -575,6 +581,8 @@ export type Command = {
575
581
  export type Command1 = {
576
582
  [k: string]: unknown;
577
583
  };
584
+ export type ViewTypeDefinition = "XML" | "JSON" | "JS" | "HTML" | "Template";
585
+ export type ViewTypeDefinition1 = string;
578
586
  /**
579
587
  * Represents the definition of each route
580
588
  */
@@ -595,10 +603,7 @@ export type RootViewDef =
595
603
  * Represents the name of the view
596
604
  */
597
605
  viewName: string;
598
- /**
599
- * Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template
600
- */
601
- type?: "XML" | "JSON" | "JS" | "HTML" | "Template";
606
+ type?: ViewTypeDefinition & ViewTypeDefinition1;
602
607
  /**
603
608
  * Represents the id of the view
604
609
  */
@@ -747,7 +752,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
747
752
  | "1.75.1"
748
753
  | "1.76.0"
749
754
  | "1.77.0"
750
- | "1.78.0";
755
+ | "1.78.0"
756
+ | "1.79.0"
757
+ | "1.80.0";
751
758
  /**
752
759
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
753
760
  */
@@ -1396,7 +1403,7 @@ export interface DeviceType1 {
1396
1403
  */
1397
1404
  export interface Resource {
1398
1405
  /**
1399
- * [Deprecated] Specifies additional JavaScript resources of the Component.
1406
+ * [Deprecated] Specifies additional JavaScript resources of the Component. Since 1.94, the usage of JavaScript resources is deprecated. Please use regular dependencies via 'sap.ui.define()' or 'sap.ui.require()' instead.
1400
1407
  */
1401
1408
  js?: {
1402
1409
  uri: string;
@@ -1509,6 +1516,9 @@ export interface Model {
1509
1516
  preload?: boolean;
1510
1517
  settings?: Ui5Setting;
1511
1518
  }
1519
+ /**
1520
+ * Represents UI5-specific settings and configuration options that can be applied to models.
1521
+ */
1512
1522
  export interface Ui5Setting {
1513
1523
  /**
1514
1524
  * Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay
@@ -1694,7 +1704,7 @@ export interface Target {
1694
1704
  /**
1695
1705
  * Represents the type of view that is going to be created
1696
1706
  */
1697
- viewType?: "XML" | "JSON" | "JS" | "HTML" | "Template";
1707
+ viewType?: ViewTypeDefinition & ViewTypeDefinition1;
1698
1708
  /**
1699
1709
  * Represents the id of the view that contains the control specified by the 'controlId'
1700
1710
  */
@@ -1727,21 +1737,24 @@ export interface Target {
1727
1737
  };
1728
1738
  [k: string]: unknown;
1729
1739
  }
1740
+ /**
1741
+ * Represents legacy target configuration properties without required properties for more flexible backward compatibility scenarios
1742
+ */
1730
1743
  export interface LegacyTargetAdditionWithoutRequiredProp {
1731
1744
  /**
1732
- * [Deprecated] Represents the name of a view that will be created
1745
+ * [Deprecated] Represents the name of a view that will be created. Please use 'name' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewPath', 'viewLevel' as well.
1733
1746
  */
1734
1747
  viewName?: string;
1735
1748
  /**
1736
- * [Deprecated] Represents the id of the created view
1749
+ * [Deprecated] Represents the id of the created view. Please use 'id' property instead together with the 'type' property set to 'View'. The same applies to 'viewName', 'viewPath', 'viewLevel' as well.
1737
1750
  */
1738
1751
  viewId?: string;
1739
1752
  /**
1740
- * [Deprecated] Represents a prefix that is prepended in front of the viewName
1753
+ * [Deprecated] Represents a prefix that is prepended in front of the viewName. Please use 'path' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewLevel' as well.
1741
1754
  */
1742
1755
  viewPath?: string;
1743
1756
  /**
1744
- * [Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view
1757
+ * [Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view. Please use 'level' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewPath' as well.
1745
1758
  */
1746
1759
  viewLevel?: number;
1747
1760
  [k: string]: unknown;
@@ -1805,10 +1818,7 @@ export interface RootViewDefFlexEnabled {
1805
1818
  * Represents the name of the view
1806
1819
  */
1807
1820
  viewName: string;
1808
- /**
1809
- * Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template
1810
- */
1811
- type?: "XML" | "JSON" | "JS" | "HTML" | "Template";
1821
+ type?: ViewTypeDefinition & ViewTypeDefinition1;
1812
1822
  /**
1813
1823
  * Represents the id of the view
1814
1824
  */
@@ -1871,25 +1881,31 @@ export interface Routing {
1871
1881
  };
1872
1882
  [k: string]: unknown;
1873
1883
  }
1884
+ /**
1885
+ * Represents legacy target configuration properties for backward compatibility with older routing implementations
1886
+ */
1874
1887
  export interface LegacyTargetAddition {
1875
1888
  /**
1876
- * [Deprecated] Represents the name of a view that will be created
1889
+ * [Deprecated] Represents the name of a view that will be created. Please use 'name' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewPath', 'viewLevel' as well.
1877
1890
  */
1878
1891
  viewName: string;
1879
1892
  /**
1880
- * [Deprecated] Represents the id of the created view
1893
+ * [Deprecated] Represents the id of the created view. Please use 'id' property instead together with the 'type' property set to 'View'. The same applies to 'viewName', 'viewPath', 'viewLevel' as well.
1881
1894
  */
1882
1895
  viewId?: string;
1883
1896
  /**
1884
- * [Deprecated] Represents a prefix that is prepended in front of the viewName
1897
+ * [Deprecated] Represents a prefix that is prepended in front of the viewName. Please use 'path' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewLevel' as well.
1885
1898
  */
1886
1899
  viewPath?: string;
1887
1900
  /**
1888
- * [Deprecated] Represents the level of the current view, which is used to define the transition direction when navigating to this view
1901
+ * [Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view. Please use 'level' property instead together with the 'type' property set to 'View'. The same applies to 'viewId', 'viewName', 'viewPath' as well.
1889
1902
  */
1890
1903
  viewLevel?: number;
1891
1904
  [k: string]: unknown;
1892
1905
  }
1906
+ /**
1907
+ * Represents the target configuration properties for modern routing implementations with view or component targets
1908
+ */
1893
1909
  export interface ActualTargetAdditionStandard {
1894
1910
  /**
1895
1911
  * Represents the name of a view or component that will be created
@@ -1904,7 +1920,7 @@ export interface ActualTargetAdditionStandard {
1904
1920
  */
1905
1921
  path?: string;
1906
1922
  /**
1907
- * Represents the type of the type View or Component
1923
+ * Represents the type of the target: View or Component
1908
1924
  */
1909
1925
  type?: "View" | "Component";
1910
1926
  /**
@@ -1913,6 +1929,9 @@ export interface ActualTargetAdditionStandard {
1913
1929
  level?: number;
1914
1930
  [k: string]: unknown;
1915
1931
  }
1932
+ /**
1933
+ * Represents target configuration properties for component usage routing scenarios where targets reference reusable components
1934
+ */
1916
1935
  export interface ActualTargetAdditionComponentUsage {
1917
1936
  /**
1918
1937
  * Represents the componentUsage of the component that will be created
@@ -2608,7 +2627,8 @@ export interface JSONSchemaForSAPOVPNamespace {
2608
2627
  | "1.9.0"
2609
2628
  | "1.10.0"
2610
2629
  | "1.11.0"
2611
- | "1.12.0";
2630
+ | "1.12.0"
2631
+ | "1.13.0";
2612
2632
  /**
2613
2633
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2614
2634
  */
@@ -2644,7 +2664,7 @@ export interface JSONSchemaForSAPOVPNamespace {
2644
2664
  /**
2645
2665
  * Represents the layout of the card container
2646
2666
  */
2647
- containerLayout?: "fixed" | "resizable";
2667
+ containerLayout?: ("resizable" | "fixed") & string;
2648
2668
  /**
2649
2669
  * Represents a switch to Enable or disable Relative or Normal date formating in ovp application
2650
2670
  */