@ui5/manifest 1.67.2 → 1.69.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
@@ -2,7 +2,13 @@
2
2
  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
- A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.67.2...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.69.0...HEAD).
6
+
7
+ <a name="v1.69.0"></a>
8
+ ## [v1.69.0] - 2025-01-10
9
+
10
+ <a name="v1.68.0"></a>
11
+ ## [v1.68.0] - 2024-11-14
6
12
 
7
13
  <a name="v1.67.2"></a>
8
14
  ## [v1.67.2] - 2024-11-04
@@ -85,6 +91,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
85
91
  <a name="v1.48.1"></a>
86
92
  ## v1.48.1 - 2022-11-10
87
93
 
94
+ [v1.69.0]: https://github.com/SAP/ui5-manifest/compare/v1.68.0...v1.69.0
95
+ [v1.68.0]: https://github.com/SAP/ui5-manifest/compare/v1.67.2...v1.68.0
88
96
  [v1.67.2]: https://github.com/SAP/ui5-manifest/compare/v1.67.1...v1.67.2
89
97
  [v1.67.1]: https://github.com/SAP/ui5-manifest/compare/v1.67.0...v1.67.1
90
98
  [v1.67.0]: https://github.com/SAP/ui5-manifest/compare/v1.66.0...v1.67.0
package/mapping.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
- "latest": "1.67.2",
2
+ "latest": "1.69.0",
3
+ "1.132": "1.69.0",
4
+ "1.131": "1.68.0",
3
5
  "1.130": "1.67.2",
4
6
  "1.129": "1.66.0",
5
7
  "1.128": "1.65.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.67.2",
3
+ "version": "1.69.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
@@ -84,7 +84,9 @@
84
84
  "1.64.0",
85
85
  "1.65.0",
86
86
  "1.66.0",
87
- "1.67.2"
87
+ "1.67.2",
88
+ "1.68.0",
89
+ "1.69.0"
88
90
  ]
89
91
  },
90
92
  "start_url": {
@@ -607,7 +609,7 @@
607
609
  ],
608
610
  "properties": {
609
611
  "minUI5Version": {
610
- "description": "Represents the minimum version of SAP UI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.",
612
+ "description": "Represents the minimum version of SAPUI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.",
611
613
  "$ref": "#/$defs/minUI5Version"
612
614
  },
613
615
  "libs": {
@@ -1999,7 +2001,9 @@
1999
2001
  "1.45.0",
2000
2002
  "1.46.0",
2001
2003
  "1.47.0",
2002
- "1.48.0"
2004
+ "1.48.0",
2005
+ "1.49.0",
2006
+ "1.50.0"
2003
2007
  ]
2004
2008
  },
2005
2009
  "designtime": {
@@ -5715,8 +5719,8 @@
5715
5719
  "description": "Allow attribute of the iframe",
5716
5720
  "type": "string"
5717
5721
  },
5718
- "allowfullscreen": {
5719
- "description": "Allowfullscreen attribute of the iframe",
5722
+ "allowFullscreen": {
5723
+ "description": "AllowFullscreen attribute of the iframe",
5720
5724
  "oneOf": [
5721
5725
  {
5722
5726
  "type": "boolean",
@@ -5806,6 +5810,34 @@
5806
5810
  }
5807
5811
  ]
5808
5812
  },
5813
+ "use12HourFormat": {
5814
+ "description": "Displays the time for calendar appointments in either 12h or 24h formats. By default, time is displayed in 24h format.",
5815
+ "oneOf": [
5816
+ {
5817
+ "type": "boolean"
5818
+ },
5819
+ {
5820
+ "$ref": "#/$defs/simpleBinding"
5821
+ }
5822
+ ]
5823
+ },
5824
+ "calendarWeekNumbering": {
5825
+ "description": "Set the first day of week based on one of the available options Default, ISO_8601, MiddleEastern, or WesternTraditional.",
5826
+ "oneOf": [
5827
+ {
5828
+ "enum": [
5829
+ "Default",
5830
+ "ISO_8601",
5831
+ "MiddleEastern",
5832
+ "WesternTraditional"
5833
+ ],
5834
+ "default": "Default"
5835
+ },
5836
+ {
5837
+ "$ref": "#/$defs/simpleBinding"
5838
+ }
5839
+ ]
5840
+ },
5809
5841
  "moreItems": {
5810
5842
  "description": "Defines actions that can be applied on the button showing there are more items than the shown",
5811
5843
  "type": "object",
@@ -6536,6 +6568,9 @@
6536
6568
  }
6537
6569
  }
6538
6570
  },
6571
+ "group": {
6572
+ "$ref": "#/$defs/group"
6573
+ },
6539
6574
  "visible": {
6540
6575
  "description": "Determines whether the filter is visible",
6541
6576
  "$ref": "#/$defs/visibility"
@@ -7972,18 +8007,16 @@
7972
8007
  "oneOf": [
7973
8008
  {
7974
8009
  "type": "array",
7975
- "items": [
7976
- {
7977
- "oneOf": [
7978
- {
7979
- "type": "string"
7980
- },
7981
- {
7982
- "$ref": "#/$defs/routeTargetObject"
7983
- }
7984
- ]
7985
- }
7986
- ]
8010
+ "items": {
8011
+ "oneOf": [
8012
+ {
8013
+ "type": "string"
8014
+ },
8015
+ {
8016
+ "$ref": "#/$defs/routeTargetObject"
8017
+ }
8018
+ ]
8019
+ }
7987
8020
  },
7988
8021
  {
7989
8022
  "type": "string"
package/schema_cil.json CHANGED
@@ -2691,18 +2691,16 @@
2691
2691
  "oneOf": [
2692
2692
  {
2693
2693
  "type": "array",
2694
- "items": [
2695
- {
2696
- "oneOf": [
2697
- {
2698
- "type": "string"
2699
- },
2700
- {
2701
- "$ref": "#/$defs/routeTargetObject"
2702
- }
2703
- ]
2704
- }
2705
- ]
2694
+ "items": {
2695
+ "oneOf": [
2696
+ {
2697
+ "type": "string"
2698
+ },
2699
+ {
2700
+ "$ref": "#/$defs/routeTargetObject"
2701
+ }
2702
+ ]
2703
+ }
2706
2704
  },
2707
2705
  {
2708
2706
  "type": "string"
@@ -189,7 +189,7 @@ export type JSONSchemaForSAPUI5Namespace = {
189
189
  */
190
190
  dependencies: {
191
191
  /**
192
- * Represents the minimum version of SAP UI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.
192
+ * Represents the minimum version of SAPUI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.
193
193
  */
194
194
  minUI5Version: string | string[];
195
195
  /**
@@ -711,7 +711,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
711
711
  | "1.64.0"
712
712
  | "1.65.0"
713
713
  | "1.66.0"
714
- | "1.67.2";
714
+ | "1.67.2"
715
+ | "1.68.0"
716
+ | "1.69.0";
715
717
  /**
716
718
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
717
719
  */
@@ -1556,7 +1558,7 @@ export interface RoutingFlexEnabled {
1556
1558
  /**
1557
1559
  * Represents one or multiple names of targets that are displayed when no route is matched
1558
1560
  */
1559
- target: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1561
+ target: (string | RouteTargetObject)[] | string | RouteTargetObject;
1560
1562
  };
1561
1563
  /**
1562
1564
  * Represents a prefix that is prepended in front of the viewName
@@ -1716,7 +1718,7 @@ export interface RouteWithoutName {
1716
1718
  /**
1717
1719
  * Represents one or multiple names of targets which are displayed when the route is matched
1718
1720
  */
1719
- target?: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1721
+ target?: (string | RouteTargetObject)[] | string | RouteTargetObject;
1720
1722
  /**
1721
1723
  * Represents the name of the target where the 'title' information should be taken
1722
1724
  */
@@ -1772,7 +1774,7 @@ export interface Routing {
1772
1774
  /**
1773
1775
  * Represents one or multiple names of targets that are displayed when no route is matched
1774
1776
  */
1775
- target: [] | [string | RouteTargetObject] | string | RouteTargetObject;
1777
+ target: (string | RouteTargetObject)[] | string | RouteTargetObject;
1776
1778
  };
1777
1779
  [k: string]: unknown;
1778
1780
  } & Target &