@ui5/manifest 1.80.0 → 1.81.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,7 +3,9 @@ All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
4
 
5
5
  <a name="Unreleased"></a>
6
- ## [Unreleased]
6
+
7
+ ### Changed
8
+ - sap.ovp: Deprecated property card/settings/showTimeAxis.
7
9
 
8
10
  <a name="v1.80.0"></a>
9
11
  ## [v1.80.0] - 2025-10-28 (UI5 1.142)
@@ -188,7 +190,11 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
188
190
  <a name="v1.48.1"></a>
189
191
  ## v1.48.1 - 2022-11-10
190
192
 
191
- [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.80.0...HEAD
193
+ [Unreleased]: https://github.com/SAP/ui5-manifest/compare/v1.81.0...HEAD
194
+ [v1.81.0]
195
+
196
+ <a name="v1.81.0"></a>
197
+ ## [v1.81.0] - 2025-11-18 (UI5 1.143): https://github.com/SAP/ui5-manifest/compare/v1.80.0...v1.81.0
192
198
  [v1.80.0]: https://github.com/SAP/ui5-manifest/compare/v1.79.0...v1.80.0
193
199
  [v1.79.0]: https://github.com/SAP/ui5-manifest/compare/v1.78.0...v1.79.0
194
200
  [v1.78.0]: https://github.com/SAP/ui5-manifest/compare/v1.77.0...v1.78.0
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.80.0",
2
+ "latest": "1.81.0",
3
+ "1.143": "1.81.0",
3
4
  "1.142": "1.80.0",
4
5
  "1.141": "1.79.0",
5
6
  "1.140": "1.78.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.80.0",
3
+ "version": "1.81.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
@@ -96,7 +96,8 @@
96
96
  "1.77.0",
97
97
  "1.78.0",
98
98
  "1.79.0",
99
- "1.80.0"
99
+ "1.80.0",
100
+ "1.81.0"
100
101
  ]
101
102
  },
102
103
  "start_url": {
@@ -7425,9 +7426,18 @@
7425
7426
  }
7426
7427
  },
7427
7428
  "showTimeAxis": {
7428
- "description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
7429
+ "description": "[Deprecated] Represents the flag to enable/disable time axis for analytical timeseries cards",
7429
7430
  "type": "boolean",
7430
- "default": false
7431
+ "default": true,
7432
+ "anyOf": [
7433
+ {
7434
+ "const": true
7435
+ },
7436
+ {
7437
+ "const": false,
7438
+ "deprecated": true
7439
+ }
7440
+ ]
7431
7441
  },
7432
7442
  "valueSelectionInfo": {
7433
7443
  "description": "Represents things like people, number of items",
package/schema_cil.json CHANGED
@@ -1807,9 +1807,18 @@
1807
1807
  }
1808
1808
  },
1809
1809
  "showTimeAxis": {
1810
- "description": "Represents the flag to enable/disable time axis for analytical timeseries cards",
1810
+ "description": "[Deprecated] Represents the flag to enable/disable time axis for analytical timeseries cards",
1811
1811
  "type": "boolean",
1812
- "default": false
1812
+ "default": true,
1813
+ "anyOf": [
1814
+ {
1815
+ "const": true
1816
+ },
1817
+ {
1818
+ "const": false,
1819
+ "deprecated": true
1820
+ }
1821
+ ]
1813
1822
  },
1814
1823
  "valueSelectionInfo": {
1815
1824
  "description": "Represents things like people, number of items",
@@ -754,7 +754,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
754
754
  | "1.77.0"
755
755
  | "1.78.0"
756
756
  | "1.79.0"
757
- | "1.80.0";
757
+ | "1.80.0"
758
+ | "1.81.0";
758
759
  /**
759
760
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
760
761
  */
@@ -2841,9 +2842,9 @@ export interface CardSetting {
2841
2842
  */
2842
2843
  subTitle?: string;
2843
2844
  /**
2844
- * Represents the flag to enable/disable time axis for analytical timeseries cards
2845
+ * [Deprecated] Represents the flag to enable/disable time axis for analytical timeseries cards
2845
2846
  */
2846
- showTimeAxis?: boolean;
2847
+ showTimeAxis?: (true | false) & boolean;
2847
2848
  /**
2848
2849
  * Represents things like people, number of items
2849
2850
  */