@ui5/manifest 1.78.0 → 1.79.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,21 @@ 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.79.0"></a>
9
+ ## [v1.79.0] - 2025-09-24 (UI5 1.141)
10
+
11
+ ### Added
12
+ - 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
13
+ - sap.card: New property "showCardActionParameters/childCardKey" to refer to a child card which to be shown
14
+ - sap.card: New property "header/icon/state" which can be used to apply semantic state to the icon in the header
15
+
16
+ ### Changed
17
+ - sap.card: Added valiadtion for allowed combinations of "header/icon" properties
18
+ - sap.card: Deprecated property "showCardActionParameters/manifest". Use "showCardActionParameters/childCardKey" instead.
19
+
20
+ - sap.ui5/*: Added additional description texts for already deprecated settings
21
+ - v2: Added additional description texts to the left over v2 settings, same as in v1
22
+
8
23
  <a name="v1.78.0"></a>
9
24
  ## [v1.78.0] - 2025-08-22 (UI5 1.140)
10
25
  ### Changed
@@ -13,6 +28,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
13
28
 
14
29
  ### Added
15
30
  - sap.card: Added new property "useMainDestinations"
31
+ - sap.ui5/flexBundle: new property explicitly flagging if a flexibility-bundle.json is part of the built application.
16
32
 
17
33
  <a name="v1.77.0"></a>
18
34
  ## [v1.77.0] - 2025-08-04 (UI5 1.139)
@@ -169,7 +185,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
169
185
  <a name="v1.48.1"></a>
170
186
  ## v1.48.1 - 2022-11-10
171
187
 
172
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...HEAD
188
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.79.0...HEAD
189
+ [v1.79.0]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...v1.79.0
173
190
  [v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
174
191
  [v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
175
192
  [v1.76.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v1.76.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.78.0",
2
+ "latest": "1.79.0",
3
+ "1.141": "1.79.0",
3
4
  "1.140": "1.78.0",
4
5
  "1.139": "1.77.0",
5
6
  "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.79.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,8 @@
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"
98
99
  ]
99
100
  },
100
101
  "start_url": {
@@ -883,6 +884,10 @@
883
884
  }
884
885
  }
885
886
  },
887
+ "flexBundle": {
888
+ "description": "Represents an indicator whether a flexibility bundle was created and is within the application sources. This property is set by the building tool.",
889
+ "type": "boolean"
890
+ },
886
891
  "flexExtensionPointEnabled": {
887
892
  "description": "Represents an indicator whether app variant is flex extension point enabled",
888
893
  "type": "boolean",
@@ -2047,7 +2052,8 @@
2047
2052
  "1.54.0",
2048
2053
  "1.55.0",
2049
2054
  "1.56.0",
2050
- "1.57.0"
2055
+ "1.57.0",
2056
+ "1.58.0"
2051
2057
  ]
2052
2058
  },
2053
2059
  "designtime": {
@@ -2152,7 +2158,7 @@
2152
2158
  "type": "object"
2153
2159
  },
2154
2160
  "loadingPlaceholders": {
2155
- "description": "[Experimental] Object which will represent the loading placeholder of the card",
2161
+ "description": "[Experimental] Object that will represent the loading placeholder of the card",
2156
2162
  "type": "object",
2157
2163
  "properties": {
2158
2164
  "delay": {
@@ -2160,6 +2166,13 @@
2160
2166
  "type": "number"
2161
2167
  }
2162
2168
  }
2169
+ },
2170
+ "childCards": {
2171
+ "description": "[Experimental] Map of child cards",
2172
+ "type": "object",
2173
+ "additionalProperties": {
2174
+ "$ref": "#/$defs/Configuration.ChildCard"
2175
+ }
2163
2176
  }
2164
2177
  }
2165
2178
  },
@@ -3310,12 +3323,14 @@
3310
3323
  "description": "Parameters for ShowCard action",
3311
3324
  "type": "object",
3312
3325
  "additionalProperties": false,
3313
- "required": [
3314
- "manifest"
3315
- ],
3316
3326
  "properties": {
3327
+ "childCardKey": {
3328
+ "description": "The key of the card to be shown",
3329
+ "type": "string"
3330
+ },
3317
3331
  "manifest": {
3318
- "description": "An application identifier consisting of semanticObject and action",
3332
+ "deprecated": true,
3333
+ "description": "[Deprecated] Child card manifest",
3319
3334
  "oneOf": [
3320
3335
  {
3321
3336
  "type": "string"
@@ -5498,11 +5513,61 @@
5498
5513
  }
5499
5514
  ]
5500
5515
  },
5516
+ "state": {
5517
+ "description": "Defines the state of the icon",
5518
+ "oneOf": [
5519
+ {
5520
+ "$ref": "#/$defs/state"
5521
+ },
5522
+ {
5523
+ "$ref": "#/$defs/simpleBinding"
5524
+ }
5525
+ ]
5526
+ },
5501
5527
  "visible": {
5502
5528
  "description": "Visibility of the icon",
5503
5529
  "$ref": "#/$defs/visibility"
5504
5530
  }
5505
- }
5531
+ },
5532
+ "allOf": [
5533
+ {
5534
+ "anyOf": [
5535
+ {
5536
+ "required": [
5537
+ "src"
5538
+ ]
5539
+ },
5540
+ {
5541
+ "required": [
5542
+ "initials"
5543
+ ]
5544
+ },
5545
+ {
5546
+ "required": [
5547
+ "state"
5548
+ ]
5549
+ }
5550
+ ]
5551
+ },
5552
+ {
5553
+ "not": {
5554
+ "anyOf": [
5555
+ {
5556
+ "required": [
5557
+ "src",
5558
+ "state"
5559
+ ]
5560
+ },
5561
+ {
5562
+ "required": [
5563
+ "initials",
5564
+ "state"
5565
+ ]
5566
+ }
5567
+ ]
5568
+ }
5569
+ }
5570
+ ]
5506
5571
  },
5507
5572
  "action": {
5508
5573
  "description": "Represents actions that can be applied on card elements",
@@ -6685,6 +6750,20 @@
6685
6750
  }
6686
6751
  }
6687
6752
  },
6753
+ "Configuration.ChildCard": {
6754
+ "description": "Represents a configuration for a child card",
6755
+ "type": "object",
6756
+ "additionalProperties": false,
6757
+ "required": [
6758
+ "manifest"
6759
+ ],
6760
+ "properties": {
6761
+ "manifest": {
6762
+ "description": "The manifest of the child card",
6763
+ "type": "string"
6764
+ }
6765
+ }
6766
+ },
6688
6767
  "Configuration.NoData": {
6689
6768
  "description": "Represents a configuration for a NoData",
6690
6769
  "type": "object",
@@ -8021,6 +8100,7 @@
8021
8100
  }
8022
8101
  },
8023
8102
  "actualTargetAdditionComponentUsage": {
8103
+ "description": "Represents target configuration properties for component usage routing scenarios where targets reference reusable components",
8024
8104
  "type": "object",
8025
8105
  "required": [
8026
8106
  "usage",
@@ -8050,6 +8130,7 @@
8050
8130
  }
8051
8131
  },
8052
8132
  "actualTargetAdditionStandard": {
8133
+ "description": "Represents the target configuration properties for modern routing implementations with view or component targets",
8053
8134
  "type": "object",
8054
8135
  "required": [
8055
8136
  "name"
@@ -8068,7 +8149,7 @@
8068
8149
  "type": "string"
8069
8150
  },
8070
8151
  "type": {
8071
- "description": "Represents the type of the type View or Component",
8152
+ "description": "Represents the type of the target: View or Component",
8072
8153
  "type": "string",
8073
8154
  "enum": [
8074
8155
  "View",
@@ -8083,6 +8164,7 @@
8083
8164
  }
8084
8165
  },
8085
8166
  "legacyTargetAddition": {
8167
+ "description": "Represents legacy target configuration properties for backward compatibility with older routing implementations",
8086
8168
  "type": "object",
8087
8169
  "required": [
8088
8170
  "viewName"
@@ -8090,22 +8172,22 @@
8090
8172
  "properties": {
8091
8173
  "viewName": {
8092
8174
  "deprecated": true,
8093
- "description": "[Deprecated] Represents the name of a view that will be created",
8175
+ "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
8176
  "type": "string"
8095
8177
  },
8096
8178
  "viewId": {
8097
8179
  "deprecated": true,
8098
- "description": "[Deprecated] Represents the id of the created view",
8180
+ "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
8181
  "type": "string"
8100
8182
  },
8101
8183
  "viewPath": {
8102
8184
  "deprecated": true,
8103
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
8185
+ "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
8186
  "type": "string"
8105
8187
  },
8106
8188
  "viewLevel": {
8107
8189
  "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",
8190
+ "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
8191
  "type": "number",
8110
8192
  "multipleOf": 1
8111
8193
  }
@@ -8184,26 +8266,27 @@
8184
8266
  }
8185
8267
  },
8186
8268
  "legacyTargetAdditionWithoutRequiredProp": {
8269
+ "description": "Represents legacy target configuration properties without required properties for more flexible backward compatibility scenarios",
8187
8270
  "type": "object",
8188
8271
  "properties": {
8189
8272
  "viewName": {
8190
8273
  "deprecated": true,
8191
- "description": "[Deprecated] Represents the name of a view that will be created",
8274
+ "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
8275
  "type": "string"
8193
8276
  },
8194
8277
  "viewId": {
8195
8278
  "deprecated": true,
8196
- "description": "[Deprecated] Represents the id of the created view",
8279
+ "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
8280
  "type": "string"
8198
8281
  },
8199
8282
  "viewPath": {
8200
8283
  "deprecated": true,
8201
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
8284
+ "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
8285
  "type": "string"
8203
8286
  },
8204
8287
  "viewLevel": {
8205
8288
  "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",
8289
+ "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
8290
  "type": "number",
8208
8291
  "multipleOf": 1
8209
8292
  }
@@ -8218,15 +8301,7 @@
8218
8301
  "type": "string"
8219
8302
  },
8220
8303
  "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
- ]
8304
+ "$ref": "#/$defs/viewTypeDefinition"
8230
8305
  },
8231
8306
  "targetParent": {
8232
8307
  "description": "Represents the id of the view that contains the control specified by the 'controlId'",
@@ -8296,7 +8371,38 @@
8296
8371
  }
8297
8372
  ]
8298
8373
  },
8374
+ "viewTypeDefinition": {
8375
+ "description": "Represents the type of view that is going to be created",
8376
+ "type": "string",
8377
+ "oneOf": [
8378
+ {
8379
+ "const": "XML",
8380
+ "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."
8381
+ },
8382
+ {
8383
+ "const": "JSON",
8384
+ "deprecated": true,
8385
+ "description": "[Deprecated] Value `JSON` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8386
+ },
8387
+ {
8388
+ "const": "JS",
8389
+ "deprecated": true,
8390
+ "description": "[Deprecated] Value `JS` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8391
+ },
8392
+ {
8393
+ "const": "HTML",
8394
+ "deprecated": true,
8395
+ "description": "[Deprecated] Value `HTML` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8396
+ },
8397
+ {
8398
+ "const": "Template",
8399
+ "deprecated": true,
8400
+ "description": "[Deprecated] Value `Template` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
8401
+ }
8402
+ ]
8403
+ },
8299
8404
  "ui5setting": {
8405
+ "description": "Represents UI5-specific settings and configuration options that can be applied to models.",
8300
8406
  "type": "object",
8301
8407
  "additionalProperties": true,
8302
8408
  "properties": {
@@ -8374,15 +8480,7 @@
8374
8480
  "type": "string"
8375
8481
  },
8376
8482
  "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
- ]
8483
+ "$ref": "#/$defs/viewTypeDefinition"
8386
8484
  },
8387
8485
  "id": {
8388
8486
  "description": "Represents the id of the view",
@@ -8541,15 +8639,7 @@
8541
8639
  "type": "string"
8542
8640
  },
8543
8641
  "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
- ]
8642
+ "$ref": "#/$defs/viewTypeDefinition"
8553
8643
  },
8554
8644
  "id": {
8555
8645
  "description": "Represents the id of the view",
@@ -8978,6 +9068,7 @@
8978
9068
  ]
8979
9069
  },
8980
9070
  "resourceRoot": {
9071
+ "description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
8981
9072
  "type": "string",
8982
9073
  "pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
8983
9074
  },
@@ -9080,10 +9171,11 @@
9080
9171
  }
9081
9172
  },
9082
9173
  "resource": {
9174
+ "description": "Represents additional resources that need to be loaded for the component",
9083
9175
  "type": "object",
9084
9176
  "properties": {
9085
9177
  "js": {
9086
- "description": "[Deprecated] Specifies additional JavaScript resources of the Component.",
9178
+ "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
9179
  "deprecated": true,
9088
9180
  "type": "array",
9089
9181
  "items": {
package/schema_cil.json CHANGED
@@ -2483,6 +2483,7 @@
2483
2483
  }
2484
2484
  },
2485
2485
  "actualTargetAdditionComponentUsage": {
2486
+ "description": "Represents target configuration properties for component usage routing scenarios where targets reference reusable components",
2486
2487
  "type": "object",
2487
2488
  "required": [
2488
2489
  "usage",
@@ -2512,6 +2513,7 @@
2512
2513
  }
2513
2514
  },
2514
2515
  "actualTargetAdditionStandard": {
2516
+ "description": "Represents the target configuration properties for modern routing implementations with view or component targets",
2515
2517
  "type": "object",
2516
2518
  "required": [
2517
2519
  "name"
@@ -2530,7 +2532,7 @@
2530
2532
  "type": "string"
2531
2533
  },
2532
2534
  "type": {
2533
- "description": "Represents the type of the type View or Component",
2535
+ "description": "Represents the type of the target: View or Component",
2534
2536
  "type": "string",
2535
2537
  "enum": [
2536
2538
  "View",
@@ -2545,6 +2547,7 @@
2545
2547
  }
2546
2548
  },
2547
2549
  "legacyTargetAddition": {
2550
+ "description": "Represents legacy target configuration properties for backward compatibility with older routing implementations",
2548
2551
  "type": "object",
2549
2552
  "required": [
2550
2553
  "viewName"
@@ -2552,22 +2555,22 @@
2552
2555
  "properties": {
2553
2556
  "viewName": {
2554
2557
  "deprecated": true,
2555
- "description": "[Deprecated] Represents the name of a view that will be created",
2558
+ "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
2559
  "type": "string"
2557
2560
  },
2558
2561
  "viewId": {
2559
2562
  "deprecated": true,
2560
- "description": "[Deprecated] Represents the id of the created view",
2563
+ "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
2564
  "type": "string"
2562
2565
  },
2563
2566
  "viewPath": {
2564
2567
  "deprecated": true,
2565
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
2568
+ "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
2569
  "type": "string"
2567
2570
  },
2568
2571
  "viewLevel": {
2569
2572
  "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",
2573
+ "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
2574
  "type": "number",
2572
2575
  "multipleOf": 1
2573
2576
  }
@@ -2646,26 +2649,27 @@
2646
2649
  }
2647
2650
  },
2648
2651
  "legacyTargetAdditionWithoutRequiredProp": {
2652
+ "description": "Represents legacy target configuration properties without required properties for more flexible backward compatibility scenarios",
2649
2653
  "type": "object",
2650
2654
  "properties": {
2651
2655
  "viewName": {
2652
2656
  "deprecated": true,
2653
- "description": "[Deprecated] Represents the name of a view that will be created",
2657
+ "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
2658
  "type": "string"
2655
2659
  },
2656
2660
  "viewId": {
2657
2661
  "deprecated": true,
2658
- "description": "[Deprecated] Represents the id of the created view",
2662
+ "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
2663
  "type": "string"
2660
2664
  },
2661
2665
  "viewPath": {
2662
2666
  "deprecated": true,
2663
- "description": "[Deprecated] Represents a prefix that is prepended in front of the viewName",
2667
+ "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
2668
  "type": "string"
2665
2669
  },
2666
2670
  "viewLevel": {
2667
2671
  "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",
2672
+ "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
2673
  "type": "number",
2670
2674
  "multipleOf": 1
2671
2675
  }
@@ -2680,15 +2684,7 @@
2680
2684
  "type": "string"
2681
2685
  },
2682
2686
  "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
- ]
2687
+ "$ref": "#/$defs/viewTypeDefinition"
2692
2688
  },
2693
2689
  "targetParent": {
2694
2690
  "description": "Represents the id of the view that contains the control specified by the 'controlId'",
@@ -2763,6 +2759,36 @@
2763
2759
  }
2764
2760
  ]
2765
2761
  },
2762
+ "viewTypeDefinition": {
2763
+ "description": "Represents the type of view that is going to be created",
2764
+ "type": "string",
2765
+ "oneOf": [
2766
+ {
2767
+ "const": "XML",
2768
+ "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."
2769
+ },
2770
+ {
2771
+ "const": "JSON",
2772
+ "deprecated": true,
2773
+ "description": "[Deprecated] Value `JSON` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2774
+ },
2775
+ {
2776
+ "const": "JS",
2777
+ "deprecated": true,
2778
+ "description": "[Deprecated] Value `JS` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2779
+ },
2780
+ {
2781
+ "const": "HTML",
2782
+ "deprecated": true,
2783
+ "description": "[Deprecated] Value `HTML` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2784
+ },
2785
+ {
2786
+ "const": "Template",
2787
+ "deprecated": true,
2788
+ "description": "[Deprecated] Value `Template` is deprecated and will be removed in UI5 version 2. Consider using `viewType: XML` or `typed views` instead."
2789
+ }
2790
+ ]
2791
+ },
2766
2792
  "enhanceWithSetting_0": {
2767
2793
  "oneOf": [
2768
2794
  {
@@ -2880,6 +2906,7 @@
2880
2906
  ]
2881
2907
  },
2882
2908
  "ui5setting": {
2909
+ "description": "Represents UI5-specific settings and configuration options that can be applied to models.",
2883
2910
  "type": "object",
2884
2911
  "additionalProperties": true,
2885
2912
  "properties": {
@@ -2953,15 +2980,7 @@
2953
2980
  "type": "string"
2954
2981
  },
2955
2982
  "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
- ]
2983
+ "$ref": "#/$defs/viewTypeDefinition"
2965
2984
  },
2966
2985
  "id": {
2967
2986
  "description": "Represents the id of the view",
@@ -3187,15 +3206,7 @@
3187
3206
  "type": "string"
3188
3207
  },
3189
3208
  "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
- ]
3209
+ "$ref": "#/$defs/viewTypeDefinition"
3199
3210
  },
3200
3211
  "id": {
3201
3212
  "description": "Represents the id of the view",
@@ -3420,6 +3431,7 @@
3420
3431
  ]
3421
3432
  },
3422
3433
  "resourceRoot": {
3434
+ "description": "Represents the resource root path relative to the application root. Used to define custom resource paths for loading modules and resources",
3423
3435
  "type": "string",
3424
3436
  "pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
3425
3437
  },
@@ -3509,10 +3521,11 @@
3509
3521
  }
3510
3522
  },
3511
3523
  "resource": {
3524
+ "description": "Represents additional resources that need to be loaded for the component",
3512
3525
  "type": "object",
3513
3526
  "properties": {
3514
3527
  "js": {
3515
- "description": "[Deprecated] Specifies additional JavaScript resources of the Component.",
3528
+ "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
3529
  "deprecated": true,
3517
3530
  "type": "array",
3518
3531
  "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,8 @@ 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";
751
757
  /**
752
758
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
753
759
  */
@@ -1396,7 +1402,7 @@ export interface DeviceType1 {
1396
1402
  */
1397
1403
  export interface Resource {
1398
1404
  /**
1399
- * [Deprecated] Specifies additional JavaScript resources of the Component.
1405
+ * [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
1406
  */
1401
1407
  js?: {
1402
1408
  uri: string;
@@ -1509,6 +1515,9 @@ export interface Model {
1509
1515
  preload?: boolean;
1510
1516
  settings?: Ui5Setting;
1511
1517
  }
1518
+ /**
1519
+ * Represents UI5-specific settings and configuration options that can be applied to models.
1520
+ */
1512
1521
  export interface Ui5Setting {
1513
1522
  /**
1514
1523
  * Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay
@@ -1694,7 +1703,7 @@ export interface Target {
1694
1703
  /**
1695
1704
  * Represents the type of view that is going to be created
1696
1705
  */
1697
- viewType?: "XML" | "JSON" | "JS" | "HTML" | "Template";
1706
+ viewType?: ViewTypeDefinition & ViewTypeDefinition1;
1698
1707
  /**
1699
1708
  * Represents the id of the view that contains the control specified by the 'controlId'
1700
1709
  */
@@ -1727,21 +1736,24 @@ export interface Target {
1727
1736
  };
1728
1737
  [k: string]: unknown;
1729
1738
  }
1739
+ /**
1740
+ * Represents legacy target configuration properties without required properties for more flexible backward compatibility scenarios
1741
+ */
1730
1742
  export interface LegacyTargetAdditionWithoutRequiredProp {
1731
1743
  /**
1732
- * [Deprecated] Represents the name of a view that will be created
1744
+ * [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
1745
  */
1734
1746
  viewName?: string;
1735
1747
  /**
1736
- * [Deprecated] Represents the id of the created view
1748
+ * [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
1749
  */
1738
1750
  viewId?: string;
1739
1751
  /**
1740
- * [Deprecated] Represents a prefix that is prepended in front of the viewName
1752
+ * [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
1753
  */
1742
1754
  viewPath?: string;
1743
1755
  /**
1744
- * [Deprecated] Represents the level of the current view which is used to define the transition direction when navigate to this view
1756
+ * [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
1757
  */
1746
1758
  viewLevel?: number;
1747
1759
  [k: string]: unknown;
@@ -1805,10 +1817,7 @@ export interface RootViewDefFlexEnabled {
1805
1817
  * Represents the name of the view
1806
1818
  */
1807
1819
  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";
1820
+ type?: ViewTypeDefinition & ViewTypeDefinition1;
1812
1821
  /**
1813
1822
  * Represents the id of the view
1814
1823
  */
@@ -1871,25 +1880,31 @@ export interface Routing {
1871
1880
  };
1872
1881
  [k: string]: unknown;
1873
1882
  }
1883
+ /**
1884
+ * Represents legacy target configuration properties for backward compatibility with older routing implementations
1885
+ */
1874
1886
  export interface LegacyTargetAddition {
1875
1887
  /**
1876
- * [Deprecated] Represents the name of a view that will be created
1888
+ * [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
1889
  */
1878
1890
  viewName: string;
1879
1891
  /**
1880
- * [Deprecated] Represents the id of the created view
1892
+ * [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
1893
  */
1882
1894
  viewId?: string;
1883
1895
  /**
1884
- * [Deprecated] Represents a prefix that is prepended in front of the viewName
1896
+ * [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
1897
  */
1886
1898
  viewPath?: string;
1887
1899
  /**
1888
- * [Deprecated] Represents the level of the current view, which is used to define the transition direction when navigating to this view
1900
+ * [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
1901
  */
1890
1902
  viewLevel?: number;
1891
1903
  [k: string]: unknown;
1892
1904
  }
1905
+ /**
1906
+ * Represents the target configuration properties for modern routing implementations with view or component targets
1907
+ */
1893
1908
  export interface ActualTargetAdditionStandard {
1894
1909
  /**
1895
1910
  * Represents the name of a view or component that will be created
@@ -1904,7 +1919,7 @@ export interface ActualTargetAdditionStandard {
1904
1919
  */
1905
1920
  path?: string;
1906
1921
  /**
1907
- * Represents the type of the type View or Component
1922
+ * Represents the type of the target: View or Component
1908
1923
  */
1909
1924
  type?: "View" | "Component";
1910
1925
  /**
@@ -1913,6 +1928,9 @@ export interface ActualTargetAdditionStandard {
1913
1928
  level?: number;
1914
1929
  [k: string]: unknown;
1915
1930
  }
1931
+ /**
1932
+ * Represents target configuration properties for component usage routing scenarios where targets reference reusable components
1933
+ */
1916
1934
  export interface ActualTargetAdditionComponentUsage {
1917
1935
  /**
1918
1936
  * Represents the componentUsage of the component that will be created