@ui5/manifest 1.69.0 → 1.70.1

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.69.0...HEAD).
5
+ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.70.1...HEAD).
6
+
7
+ <a name="v1.70.1"></a>
8
+ ## [v1.70.1] - 2025-02-12
9
+
10
+ <a name="v1.70.0"></a>
11
+ ## [v1.70.0] - 2025-02-10
6
12
 
7
13
  <a name="v1.69.0"></a>
8
14
  ## [v1.69.0] - 2025-01-10
@@ -91,6 +97,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
91
97
  <a name="v1.48.1"></a>
92
98
  ## v1.48.1 - 2022-11-10
93
99
 
100
+ [v1.70.1]: https://github.com/SAP/ui5-manifest/compare/v1.70.0...v1.70.1
101
+ [v1.70.0]: https://github.com/SAP/ui5-manifest/compare/v1.69.0...v1.70.0
94
102
  [v1.69.0]: https://github.com/SAP/ui5-manifest/compare/v1.68.0...v1.69.0
95
103
  [v1.68.0]: https://github.com/SAP/ui5-manifest/compare/v1.67.2...v1.68.0
96
104
  [v1.67.2]: https://github.com/SAP/ui5-manifest/compare/v1.67.1...v1.67.2
package/mapping.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
- "latest": "1.69.0",
2
+ "latest": "1.70.0",
3
+ "1.133": "1.70.0",
3
4
  "1.132": "1.69.0",
4
5
  "1.131": "1.68.0",
5
6
  "1.130": "1.67.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/manifest",
3
- "version": "1.69.0",
3
+ "version": "1.70.1",
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
@@ -86,7 +86,8 @@
86
86
  "1.66.0",
87
87
  "1.67.2",
88
88
  "1.68.0",
89
- "1.69.0"
89
+ "1.69.0",
90
+ "1.70.0"
90
91
  ]
91
92
  },
92
93
  "start_url": {
@@ -2003,7 +2004,8 @@
2003
2004
  "1.47.0",
2004
2005
  "1.48.0",
2005
2006
  "1.49.0",
2006
- "1.50.0"
2007
+ "1.50.0",
2008
+ "1.51.0"
2007
2009
  ]
2008
2010
  },
2009
2011
  "designtime": {
@@ -2201,6 +2203,10 @@
2201
2203
  "visible": {
2202
2204
  "description": "[Experimental] Visibility of the footer",
2203
2205
  "$ref": "#/$defs/visibility"
2206
+ },
2207
+ "closeButton": {
2208
+ "description": "[Experimental] Defines the Close button when the card is opened by the ShowCard action.",
2209
+ "$ref": "#/$defs/closeButton"
2204
2210
  }
2205
2211
  }
2206
2212
  },
@@ -5232,17 +5238,6 @@
5232
5238
  }
5233
5239
  ]
5234
5240
  },
5235
- "closeButton": {
5236
- "description": "[Experimental] Represents attributes of the Close button",
5237
- "type": "object",
5238
- "additionalProperties": false,
5239
- "properties": {
5240
- "visible": {
5241
- "description": "[Experimental] Represents the visibility of the Close button",
5242
- "$ref": "#/$defs/visibility"
5243
- }
5244
- }
5245
- },
5246
5241
  "status": {
5247
5242
  "description": "Represents status attributes",
5248
5243
  "type": "object",
@@ -5597,7 +5592,8 @@
5597
5592
  },
5598
5593
  "closeButton": {
5599
5594
  "description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
5600
- "$ref": "#/$defs/closeButton"
5595
+ "$ref": "#/$defs/closeButton",
5596
+ "deprecated": true
5601
5597
  },
5602
5598
  "wrappingType": {
5603
5599
  "description": "[Experimental] The wrapping type for texts inside the header.",
@@ -5684,7 +5680,8 @@
5684
5680
  },
5685
5681
  "closeButton": {
5686
5682
  "description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
5687
- "$ref": "#/$defs/closeButton"
5683
+ "$ref": "#/$defs/closeButton",
5684
+ "deprecated": true
5688
5685
  },
5689
5686
  "wrappingType": {
5690
5687
  "description": "[Experimental] The wrapping type for texts inside the header.",
@@ -6235,6 +6232,17 @@
6235
6232
  }
6236
6233
  }
6237
6234
  },
6235
+ "closeButton": {
6236
+ "description": "[Experimental] Represents attributes of the Close button",
6237
+ "type": "object",
6238
+ "additionalProperties": false,
6239
+ "properties": {
6240
+ "visible": {
6241
+ "description": "[Experimental] Represents the visibility of the Close button",
6242
+ "$ref": "#/$defs/visibility"
6243
+ }
6244
+ }
6245
+ },
6238
6246
  "visibility": {
6239
6247
  "oneOf": [
6240
6248
  {
@@ -8313,6 +8321,12 @@
8313
8321
  },
8314
8322
  {
8315
8323
  "$ref": "#/$defs/target"
8324
+ },
8325
+ {
8326
+ "$ref": "#/$defs/legacyTargetAdditionWithoutRequiredProp"
8327
+ },
8328
+ {
8329
+ "$ref": "#/$defs/actualTargetAdditionStandardWithoutRequiredProp"
8316
8330
  }
8317
8331
  ]
8318
8332
  },
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
  },
@@ -713,7 +713,8 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
713
713
  | "1.66.0"
714
714
  | "1.67.2"
715
715
  | "1.68.0"
716
- | "1.69.0";
716
+ | "1.69.0"
717
+ | "1.70.0";
717
718
  /**
718
719
  * Represents the URL that the developer would prefer the user agent load when the user launches the web application
719
720
  */
@@ -1565,7 +1566,9 @@ export interface RoutingFlexEnabled {
1565
1566
  */
1566
1567
  viewPath?: string;
1567
1568
  [k: string]: unknown;
1568
- } & Target;
1569
+ } & Target &
1570
+ LegacyTargetAdditionWithoutRequiredProp &
1571
+ ActualTargetAdditionStandardWithoutRequiredProp;
1569
1572
  routes?:
1570
1573
  | Route[]
1571
1574
  | {
@@ -1697,6 +1700,48 @@ export interface Target {
1697
1700
  };
1698
1701
  [k: string]: unknown;
1699
1702
  }
1703
+ export interface LegacyTargetAdditionWithoutRequiredProp {
1704
+ /**
1705
+ * Represents the name of a view that will be created
1706
+ */
1707
+ viewName?: string;
1708
+ /**
1709
+ * Represents the id of the created view
1710
+ */
1711
+ viewId?: string;
1712
+ /**
1713
+ * Represents a prefix that is prepended in front of the viewName
1714
+ */
1715
+ viewPath?: string;
1716
+ /**
1717
+ * Represents the level of the current view which is used to define the transition direction when navigate to this view
1718
+ */
1719
+ viewLevel?: number;
1720
+ [k: string]: unknown;
1721
+ }
1722
+ export interface ActualTargetAdditionStandardWithoutRequiredProp {
1723
+ /**
1724
+ * Represents the name of a view or component that will be created
1725
+ */
1726
+ name?: string;
1727
+ /**
1728
+ * Represents the id of the created view or component
1729
+ */
1730
+ id?: string;
1731
+ /**
1732
+ * Represents a prefix that is prepended in front of the view or component name
1733
+ */
1734
+ path?: string;
1735
+ /**
1736
+ * Represents the type of the type View or Component
1737
+ */
1738
+ type?: "View" | "Component";
1739
+ /**
1740
+ * Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
1741
+ */
1742
+ level?: number;
1743
+ [k: string]: unknown;
1744
+ }
1700
1745
  /**
1701
1746
  * Represents the definition of route without the option 'name'. This is used when routes are defined in an object.
1702
1747
  *
@@ -1799,48 +1844,6 @@ export interface Routing {
1799
1844
  };
1800
1845
  [k: string]: unknown;
1801
1846
  }
1802
- export interface LegacyTargetAdditionWithoutRequiredProp {
1803
- /**
1804
- * Represents the name of a view that will be created
1805
- */
1806
- viewName?: string;
1807
- /**
1808
- * Represents the id of the created view
1809
- */
1810
- viewId?: string;
1811
- /**
1812
- * Represents a prefix that is prepended in front of the viewName
1813
- */
1814
- viewPath?: string;
1815
- /**
1816
- * Represents the level of the current view which is used to define the transition direction when navigate to this view
1817
- */
1818
- viewLevel?: number;
1819
- [k: string]: unknown;
1820
- }
1821
- export interface ActualTargetAdditionStandardWithoutRequiredProp {
1822
- /**
1823
- * Represents the name of a view or component that will be created
1824
- */
1825
- name?: string;
1826
- /**
1827
- * Represents the id of the created view or component
1828
- */
1829
- id?: string;
1830
- /**
1831
- * Represents a prefix that is prepended in front of the view or component name
1832
- */
1833
- path?: string;
1834
- /**
1835
- * Represents the type of the type View or Component
1836
- */
1837
- type?: "View" | "Component";
1838
- /**
1839
- * Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
1840
- */
1841
- level?: number;
1842
- [k: string]: unknown;
1843
- }
1844
1847
  export interface LegacyTargetAddition {
1845
1848
  /**
1846
1849
  * Represents the name of a view that will be created