@ui5/manifest 1.77.0 → 1.78.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,15 @@ 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.78.0"></a>
9
+ ## [v1.78.0] - 2025-08-22 (UI5 1.140)
10
+ ### Changed
11
+ - sap.ui5/rootView: Deprecated value `async: false`.
12
+ - sap.ui5/routing: Deprecated value `async: false`.
13
+
14
+ ### Added
15
+ - sap.card: Added new property "useMainDestinations"
16
+
8
17
  <a name="v1.77.0"></a>
9
18
  ## [v1.77.0] - 2025-08-04 (UI5 1.139)
10
19
 
@@ -160,7 +169,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
160
169
  <a name="v1.48.1"></a>
161
170
  ## v1.48.1 - 2022-11-10
162
171
 
163
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...HEAD
172
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...HEAD
173
+ [v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
164
174
  [v1.77.0]: https://github.com/SAP/ui5-manifest/compare/v1.76.0...v1.77.0
165
175
  [v1.76.0]: https://github.com/SAP/ui5-manifest/compare/v1.75.1...v1.76.0
166
176
  [v1.75.1]: https://github.com/SAP/ui5-manifest/compare/v1.73.1...v1.75.1
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.77.0",
2
+ "latest": "1.78.0",
3
+ "1.140": "1.78.0",
3
4
  "1.139": "1.77.0",
4
5
  "1.138": "1.76.0",
5
6
  "1.137": "1.75.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.77.0",
3
+ "version": "1.78.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
@@ -93,7 +93,8 @@
93
93
  "1.73.1",
94
94
  "1.75.1",
95
95
  "1.76.0",
96
- "1.77.0"
96
+ "1.77.0",
97
+ "1.78.0"
97
98
  ]
98
99
  },
99
100
  "start_url": {
@@ -591,7 +592,8 @@
591
592
  "1.16.0",
592
593
  "1.17.0",
593
594
  "1.18.0",
594
- "1.19.0"
595
+ "1.19.0",
596
+ "1.20.0"
595
597
  ]
596
598
  },
597
599
  "resources": {
@@ -1306,7 +1308,8 @@
1306
1308
  "1.8.0",
1307
1309
  "1.9.0",
1308
1310
  "1.10.0",
1309
- "1.11.0"
1311
+ "1.11.0",
1312
+ "1.12.0"
1310
1313
  ]
1311
1314
  },
1312
1315
  "globalFilterModel": {
@@ -2043,7 +2046,8 @@
2043
2046
  "1.53.0",
2044
2047
  "1.54.0",
2045
2048
  "1.55.0",
2046
- "1.56.0"
2049
+ "1.56.0",
2050
+ "1.57.0"
2047
2051
  ]
2048
2052
  },
2049
2053
  "designtime": {
@@ -2107,12 +2111,17 @@
2107
2111
  }
2108
2112
  },
2109
2113
  "destinations": {
2110
- "description": "Describes what destinations are used by the card",
2114
+ "description": "Specifies the destinations configured for use by the card",
2111
2115
  "type": "object",
2112
2116
  "additionalProperties": {
2113
2117
  "$ref": "#/$defs/Configuration.Destinations"
2114
2118
  }
2115
2119
  },
2120
+ "useMainDestinations": {
2121
+ "description": "Indicates if child cards should reference the main card's destinations. Must be set to true in child cards to use the main card's destinations",
2122
+ "type": "boolean",
2123
+ "default": false
2124
+ },
2116
2125
  "csrfTokens": {
2117
2126
  "description": "Describes the CSRF tokens used by the card",
2118
2127
  "type": "object",
@@ -2121,7 +2130,7 @@
2121
2130
  }
2122
2131
  },
2123
2132
  "actionHandlers": {
2124
- "description": "Holds configuration for the default action handlers",
2133
+ "description": "Contains configuration settings for the default action handlers",
2125
2134
  "type": "object",
2126
2135
  "additionalProperties": false,
2127
2136
  "properties": {
@@ -7328,6 +7337,11 @@
7328
7337
  "comment": "Card subtitle which is displayed in the card header"
7329
7338
  }
7330
7339
  },
7340
+ "showTimeAxis": {
7341
+ "description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
7342
+ "type": "boolean",
7343
+ "default": false
7344
+ },
7331
7345
  "valueSelectionInfo": {
7332
7346
  "description": "Represents things like people, number of items",
7333
7347
  "type": "string",
@@ -8377,7 +8391,17 @@
8377
8391
  "async": {
8378
8392
  "description": "Configure the targets for asynchronous loading",
8379
8393
  "type": "boolean",
8380
- "default": false
8394
+ "default": false,
8395
+ "oneOf": [
8396
+ {
8397
+ "const": true
8398
+ },
8399
+ {
8400
+ "const": false,
8401
+ "deprecated": true,
8402
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
8403
+ }
8404
+ ]
8381
8405
  }
8382
8406
  }
8383
8407
  }
@@ -8400,7 +8424,17 @@
8400
8424
  "async": {
8401
8425
  "description": "Indicates whether the Views in routing are loaded asyncly",
8402
8426
  "type": "boolean",
8403
- "default": false
8427
+ "default": false,
8428
+ "oneOf": [
8429
+ {
8430
+ "const": true
8431
+ },
8432
+ {
8433
+ "const": false,
8434
+ "deprecated": true,
8435
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
8436
+ }
8437
+ ]
8404
8438
  },
8405
8439
  "propagateTitle": {
8406
8440
  "description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
@@ -8524,7 +8558,17 @@
8524
8558
  "async": {
8525
8559
  "description": "Configure the targets for asynchronous loading",
8526
8560
  "type": "boolean",
8527
- "default": false
8561
+ "default": false,
8562
+ "oneOf": [
8563
+ {
8564
+ "const": true
8565
+ },
8566
+ {
8567
+ "const": false,
8568
+ "deprecated": true,
8569
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
8570
+ }
8571
+ ]
8528
8572
  }
8529
8573
  }
8530
8574
  },
@@ -8545,7 +8589,17 @@
8545
8589
  "async": {
8546
8590
  "description": "Indicates whether the Views in routing are loaded asyncly",
8547
8591
  "type": "boolean",
8548
- "default": false
8592
+ "default": false,
8593
+ "oneOf": [
8594
+ {
8595
+ "const": true
8596
+ },
8597
+ {
8598
+ "const": false,
8599
+ "deprecated": true,
8600
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
8601
+ }
8602
+ ]
8549
8603
  },
8550
8604
  "bypassed": {
8551
8605
  "description": "Represents information about targets to display when no route is matched",
package/schema_cil.json CHANGED
@@ -384,7 +384,8 @@
384
384
  "1.11.0",
385
385
  "1.12.0",
386
386
  "1.13.0",
387
- "1.14.0"
387
+ "1.14.0",
388
+ "1.15.0"
388
389
  ]
389
390
  },
390
391
  "resources": {
@@ -947,7 +948,8 @@
947
948
  "1.8.0",
948
949
  "1.9.0",
949
950
  "1.10.0",
950
- "1.11.0"
951
+ "1.11.0",
952
+ "1.12.0"
951
953
  ]
952
954
  },
953
955
  "globalFilterModel": {
@@ -1797,6 +1799,11 @@
1797
1799
  "comment": "Card subtitle which is displayed in the card header"
1798
1800
  }
1799
1801
  },
1802
+ "showTimeAxis": {
1803
+ "description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
1804
+ "type": "boolean",
1805
+ "default": false
1806
+ },
1800
1807
  "valueSelectionInfo": {
1801
1808
  "description": "Represents things like people, number of items",
1802
1809
  "type": "string",
@@ -2963,7 +2970,17 @@
2963
2970
  "async": {
2964
2971
  "description": "Configure the targets for asynchronous loading",
2965
2972
  "type": "boolean",
2966
- "default": false
2973
+ "default": false,
2974
+ "oneOf": [
2975
+ {
2976
+ "const": true
2977
+ },
2978
+ {
2979
+ "const": false,
2980
+ "deprecated": true,
2981
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
2982
+ }
2983
+ ]
2967
2984
  }
2968
2985
  }
2969
2986
  },
@@ -2984,7 +3001,17 @@
2984
3001
  "async": {
2985
3002
  "description": "Indicates whether the Views in routing are loaded asyncly",
2986
3003
  "type": "boolean",
2987
- "default": false
3004
+ "default": false,
3005
+ "oneOf": [
3006
+ {
3007
+ "const": true
3008
+ },
3009
+ {
3010
+ "const": false,
3011
+ "deprecated": true,
3012
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
3013
+ }
3014
+ ]
2988
3015
  },
2989
3016
  "bypassed": {
2990
3017
  "description": "Represents information about targets to display when no route is matched",
@@ -3195,7 +3222,17 @@
3195
3222
  "async": {
3196
3223
  "description": "Indicates whether the Views in routing are loaded asyncly",
3197
3224
  "type": "boolean",
3198
- "default": false
3225
+ "default": false,
3226
+ "oneOf": [
3227
+ {
3228
+ "const": true
3229
+ },
3230
+ {
3231
+ "const": false,
3232
+ "deprecated": true,
3233
+ "description": "[Deprecated] Value false is deprecated. Use async: true instead."
3234
+ }
3235
+ ]
3199
3236
  },
3200
3237
  "propagateTitle": {
3201
3238
  "description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
@@ -177,7 +177,8 @@ export type JSONSchemaForSAPUI5Namespace = {
177
177
  | "1.16.0"
178
178
  | "1.17.0"
179
179
  | "1.18.0"
180
- | "1.19.0";
180
+ | "1.19.0"
181
+ | "1.20.0";
181
182
  resources?: Resource;
182
183
  /**
183
184
  * Represents the explicit usage declaration for UI5 reuse components
@@ -605,7 +606,7 @@ export type RootViewDef =
605
606
  /**
606
607
  * Configure the targets for asynchronous loading
607
608
  */
608
- async?: boolean;
609
+ async?: boolean & (true | false);
609
610
  [k: string]: unknown;
610
611
  };
611
612
  /**
@@ -745,7 +746,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
745
746
  | "1.73.1"
746
747
  | "1.75.1"
747
748
  | "1.76.0"
748
- | "1.77.0";
749
+ | "1.77.0"
750
+ | "1.78.0";
749
751
  /**
750
752
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
751
753
  */
@@ -1576,7 +1578,7 @@ export interface RoutingFlexEnabled {
1576
1578
  /**
1577
1579
  * Indicates whether the Views in routing are loaded asyncly
1578
1580
  */
1579
- async?: boolean;
1581
+ async?: boolean & (true | false);
1580
1582
  /**
1581
1583
  * Represents information about targets to display when no route is matched
1582
1584
  */
@@ -1814,7 +1816,7 @@ export interface RootViewDefFlexEnabled {
1814
1816
  /**
1815
1817
  * Configure the targets for asynchronous loading
1816
1818
  */
1817
- async?: boolean;
1819
+ async?: boolean & (true | false);
1818
1820
  [k: string]: unknown;
1819
1821
  }
1820
1822
  /**
@@ -1832,7 +1834,7 @@ export interface Routing {
1832
1834
  /**
1833
1835
  * Indicates whether the Views in routing are loaded asyncly
1834
1836
  */
1835
- async?: boolean;
1837
+ async?: boolean & (true | false);
1836
1838
  /**
1837
1839
  * Indicates whether the targets which have type 'Component' should propagate their title to this component or not
1838
1840
  */
@@ -2605,7 +2607,8 @@ export interface JSONSchemaForSAPOVPNamespace {
2605
2607
  | "1.8.0"
2606
2608
  | "1.9.0"
2607
2609
  | "1.10.0"
2608
- | "1.11.0";
2610
+ | "1.11.0"
2611
+ | "1.12.0";
2609
2612
  /**
2610
2613
  * Represents the name of global filter OData model, which contains entities definition that are relevant for global filters
2611
2614
  */
@@ -2817,6 +2820,10 @@ export interface CardSetting {
2817
2820
  * Represents language-dependent subtitle of the card - used in the card header
2818
2821
  */
2819
2822
  subTitle?: string;
2823
+ /**
2824
+ * Represents the flag to enable/disable time axis for analytical timeseries cards
2825
+ */
2826
+ showTimeAxis?: boolean;
2820
2827
  /**
2821
2828
  * Represents things like people, number of items
2822
2829
  */