@ui5/manifest 1.70.0 → 1.71.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.70.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.71.0...HEAD).
6
+
7
+ <a name="v1.71.0"></a>
8
+ ## [v1.71.0] - 2025-03-06
9
+
10
+ <a name="v1.70.1"></a>
11
+ ## [v1.70.1] - 2025-02-12
6
12
 
7
13
  <a name="v1.70.0"></a>
8
14
  ## [v1.70.0] - 2025-02-10
@@ -94,6 +100,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
94
100
  <a name="v1.48.1"></a>
95
101
  ## v1.48.1 - 2022-11-10
96
102
 
103
+ [v1.71.0]: https://github.com/SAP/ui5-manifest/compare/v1.70.1...v1.71.0
104
+ [v1.70.1]: https://github.com/SAP/ui5-manifest/compare/v1.70.0...v1.70.1
97
105
  [v1.70.0]: https://github.com/SAP/ui5-manifest/compare/v1.69.0...v1.70.0
98
106
  [v1.69.0]: https://github.com/SAP/ui5-manifest/compare/v1.68.0...v1.69.0
99
107
  [v1.68.0]: https://github.com/SAP/ui5-manifest/compare/v1.67.2...v1.68.0
package/mapping.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
- "latest": "1.70.0",
3
- "1.133": "1.70.0",
2
+ "latest": "1.71.0",
3
+ "1.134": "1.71.0",
4
+ "1.133": "1.70.1",
4
5
  "1.132": "1.69.0",
5
6
  "1.131": "1.68.0",
6
7
  "1.130": "1.67.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.70.0",
3
+ "version": "1.71.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
@@ -87,7 +87,8 @@
87
87
  "1.67.2",
88
88
  "1.68.0",
89
89
  "1.69.0",
90
- "1.70.0"
90
+ "1.70.1",
91
+ "1.71.0"
91
92
  ]
92
93
  },
93
94
  "start_url": {
@@ -2005,7 +2006,8 @@
2005
2006
  "1.48.0",
2006
2007
  "1.49.0",
2007
2008
  "1.50.0",
2008
- "1.51.0"
2009
+ "1.51.0",
2010
+ "1.52.0"
2009
2011
  ]
2010
2012
  },
2011
2013
  "designtime": {
@@ -2103,6 +2105,16 @@
2103
2105
  "componentData": {
2104
2106
  "description": "[Experimental] Object which will be passed to the component as 'componentData'",
2105
2107
  "type": "object"
2108
+ },
2109
+ "loadingPlaceholders": {
2110
+ "description": "[Experimental] Object which will represent the loading placeholder of the card",
2111
+ "type": "object",
2112
+ "properties": {
2113
+ "delay": {
2114
+ "description": "The delay of the loading placeholder",
2115
+ "type": "number"
2116
+ }
2117
+ }
2106
2118
  }
2107
2119
  }
2108
2120
  },
@@ -8321,6 +8333,12 @@
8321
8333
  },
8322
8334
  {
8323
8335
  "$ref": "#/$defs/target"
8336
+ },
8337
+ {
8338
+ "$ref": "#/$defs/legacyTargetAdditionWithoutRequiredProp"
8339
+ },
8340
+ {
8341
+ "$ref": "#/$defs/actualTargetAdditionStandardWithoutRequiredProp"
8324
8342
  }
8325
8343
  ]
8326
8344
  },
package/schema_cil.json CHANGED
@@ -2962,6 +2962,12 @@
2962
2962
  },
2963
2963
  {
2964
2964
  "$ref": "#/$defs/target"
2965
+ },
2966
+ {
2967
+ "$ref": "#/$defs/legacyTargetAdditionWithoutRequiredProp"
2968
+ },
2969
+ {
2970
+ "$ref": "#/$defs/actualTargetAdditionStandardWithoutRequiredProp"
2965
2971
  }
2966
2972
  ]
2967
2973
  },
@@ -714,7 +714,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
714
714
  | "1.67.2"
715
715
  | "1.68.0"
716
716
  | "1.69.0"
717
- | "1.70.0";
717
+ | "1.70.1"
718
+ | "1.71.0";
718
719
  /**
719
720
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
720
721
  */
@@ -1566,7 +1567,9 @@ export interface RoutingFlexEnabled {
1566
1567
  */
1567
1568
  viewPath?: string;
1568
1569
  [k: string]: unknown;
1569
- } & Target;
1570
+ } & Target &
1571
+ LegacyTargetAdditionWithoutRequiredProp &
1572
+ ActualTargetAdditionStandardWithoutRequiredProp;
1570
1573
  routes?:
1571
1574
  | Route[]
1572
1575
  | {
@@ -1698,6 +1701,48 @@ export interface Target {
1698
1701
  };
1699
1702
  [k: string]: unknown;
1700
1703
  }
1704
+ export interface LegacyTargetAdditionWithoutRequiredProp {
1705
+ /**
1706
+ * Represents the name of a view that will be created
1707
+ */
1708
+ viewName?: string;
1709
+ /**
1710
+ * Represents the id of the created view
1711
+ */
1712
+ viewId?: string;
1713
+ /**
1714
+ * Represents a prefix that is prepended in front of the viewName
1715
+ */
1716
+ viewPath?: string;
1717
+ /**
1718
+ * Represents the level of the current view which is used to define the transition direction when navigate to this view
1719
+ */
1720
+ viewLevel?: number;
1721
+ [k: string]: unknown;
1722
+ }
1723
+ export interface ActualTargetAdditionStandardWithoutRequiredProp {
1724
+ /**
1725
+ * Represents the name of a view or component that will be created
1726
+ */
1727
+ name?: string;
1728
+ /**
1729
+ * Represents the id of the created view or component
1730
+ */
1731
+ id?: string;
1732
+ /**
1733
+ * Represents a prefix that is prepended in front of the view or component name
1734
+ */
1735
+ path?: string;
1736
+ /**
1737
+ * Represents the type of the type View or Component
1738
+ */
1739
+ type?: "View" | "Component";
1740
+ /**
1741
+ * Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
1742
+ */
1743
+ level?: number;
1744
+ [k: string]: unknown;
1745
+ }
1701
1746
  /**
1702
1747
  * Represents the definition of route without the option 'name'. This is used when routes are defined in an object.
1703
1748
  *
@@ -1800,48 +1845,6 @@ export interface Routing {
1800
1845
  };
1801
1846
  [k: string]: unknown;
1802
1847
  }
1803
- export interface LegacyTargetAdditionWithoutRequiredProp {
1804
- /**
1805
- * Represents the name of a view that will be created
1806
- */
1807
- viewName?: string;
1808
- /**
1809
- * Represents the id of the created view
1810
- */
1811
- viewId?: string;
1812
- /**
1813
- * Represents a prefix that is prepended in front of the viewName
1814
- */
1815
- viewPath?: string;
1816
- /**
1817
- * Represents the level of the current view which is used to define the transition direction when navigate to this view
1818
- */
1819
- viewLevel?: number;
1820
- [k: string]: unknown;
1821
- }
1822
- export interface ActualTargetAdditionStandardWithoutRequiredProp {
1823
- /**
1824
- * Represents the name of a view or component that will be created
1825
- */
1826
- name?: string;
1827
- /**
1828
- * Represents the id of the created view or component
1829
- */
1830
- id?: string;
1831
- /**
1832
- * Represents a prefix that is prepended in front of the view or component name
1833
- */
1834
- path?: string;
1835
- /**
1836
- * Represents the type of the type View or Component
1837
- */
1838
- type?: "View" | "Component";
1839
- /**
1840
- * Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
1841
- */
1842
- level?: number;
1843
- [k: string]: unknown;
1844
- }
1845
1848
  export interface LegacyTargetAddition {
1846
1849
  /**
1847
1850
  * Represents the name of a view that will be created