@ui5/manifest 1.70.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 +5 -1
- package/package.json +1 -1
- package/schema.json +6 -0
- package/schema_cil.json +6 -0
- package/types/manifest.d.ts +45 -43
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
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.
|
|
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
|
|
6
9
|
|
|
7
10
|
<a name="v1.70.0"></a>
|
|
8
11
|
## [v1.70.0] - 2025-02-10
|
|
@@ -94,6 +97,7 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
94
97
|
<a name="v1.48.1"></a>
|
|
95
98
|
## v1.48.1 - 2022-11-10
|
|
96
99
|
|
|
100
|
+
[v1.70.1]: https://github.com/SAP/ui5-manifest/compare/v1.70.0...v1.70.1
|
|
97
101
|
[v1.70.0]: https://github.com/SAP/ui5-manifest/compare/v1.69.0...v1.70.0
|
|
98
102
|
[v1.69.0]: https://github.com/SAP/ui5-manifest/compare/v1.68.0...v1.69.0
|
|
99
103
|
[v1.68.0]: https://github.com/SAP/ui5-manifest/compare/v1.67.2...v1.68.0
|
package/package.json
CHANGED
package/schema.json
CHANGED
package/schema_cil.json
CHANGED
package/types/manifest.d.ts
CHANGED
|
@@ -1566,7 +1566,9 @@ export interface RoutingFlexEnabled {
|
|
|
1566
1566
|
*/
|
|
1567
1567
|
viewPath?: string;
|
|
1568
1568
|
[k: string]: unknown;
|
|
1569
|
-
} & Target
|
|
1569
|
+
} & Target &
|
|
1570
|
+
LegacyTargetAdditionWithoutRequiredProp &
|
|
1571
|
+
ActualTargetAdditionStandardWithoutRequiredProp;
|
|
1570
1572
|
routes?:
|
|
1571
1573
|
| Route[]
|
|
1572
1574
|
| {
|
|
@@ -1698,6 +1700,48 @@ export interface Target {
|
|
|
1698
1700
|
};
|
|
1699
1701
|
[k: string]: unknown;
|
|
1700
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
|
+
}
|
|
1701
1745
|
/**
|
|
1702
1746
|
* Represents the definition of route without the option 'name'. This is used when routes are defined in an object.
|
|
1703
1747
|
*
|
|
@@ -1800,48 +1844,6 @@ export interface Routing {
|
|
|
1800
1844
|
};
|
|
1801
1845
|
[k: string]: unknown;
|
|
1802
1846
|
}
|
|
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
1847
|
export interface LegacyTargetAddition {
|
|
1846
1848
|
/**
|
|
1847
1849
|
* Represents the name of a view that will be created
|