@openui5/types 1.119.1 → 1.120.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/package.json +1 -1
- package/types/sap.f.d.ts +2 -2
- package/types/sap.m.d.ts +5723 -155
- package/types/sap.tnt.d.ts +45 -2
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1791 -166
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +14 -4
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +125 -102
- package/types/sap.ui.mdc.d.ts +2157 -1442
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +7 -1
- package/types/sap.ui.table.d.ts +121 -47
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +454 -136
- package/types/sap.ui.webc.main.d.ts +3737 -1084
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.120.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -1386,7 +1386,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1386
1386
|
|
|
1387
1387
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1388
1388
|
|
|
1389
|
-
import { ID } from "sap/ui/core/library";
|
|
1389
|
+
import { ID, CSSSize } from "sap/ui/core/library";
|
|
1390
1390
|
|
|
1391
1391
|
import NavigationListItem from "sap/tnt/NavigationListItem";
|
|
1392
1392
|
|
|
@@ -1626,6 +1626,19 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1626
1626
|
* @returns Value of property `selectedKey`
|
|
1627
1627
|
*/
|
|
1628
1628
|
getSelectedKey(): string;
|
|
1629
|
+
/**
|
|
1630
|
+
* @since 1.120
|
|
1631
|
+
*
|
|
1632
|
+
* Gets current value of property {@link #getWidth width}.
|
|
1633
|
+
*
|
|
1634
|
+
* Specifies the width of the control.
|
|
1635
|
+
*
|
|
1636
|
+
* Depending on the theme, there is a minimum width set (16rem for Horizon theme). This property
|
|
1637
|
+
* can be used to set a bigger width.
|
|
1638
|
+
*
|
|
1639
|
+
* @returns Value of property `width`
|
|
1640
|
+
*/
|
|
1641
|
+
getWidth(): CSSSize;
|
|
1629
1642
|
/**
|
|
1630
1643
|
* @since 1.98
|
|
1631
1644
|
*
|
|
@@ -1709,6 +1722,26 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1709
1722
|
*/
|
|
1710
1723
|
selectedKey: string
|
|
1711
1724
|
): this;
|
|
1725
|
+
/**
|
|
1726
|
+
* @since 1.120
|
|
1727
|
+
*
|
|
1728
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
1729
|
+
*
|
|
1730
|
+
* Specifies the width of the control.
|
|
1731
|
+
*
|
|
1732
|
+
* Depending on the theme, there is a minimum width set (16rem for Horizon theme). This property
|
|
1733
|
+
* can be used to set a bigger width.
|
|
1734
|
+
*
|
|
1735
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1736
|
+
*
|
|
1737
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1738
|
+
*/
|
|
1739
|
+
setWidth(
|
|
1740
|
+
/**
|
|
1741
|
+
* New value for property `width`
|
|
1742
|
+
*/
|
|
1743
|
+
sWidth: CSSSize
|
|
1744
|
+
): this;
|
|
1712
1745
|
/**
|
|
1713
1746
|
* Unbinds aggregation {@link #getItem item} from model data.
|
|
1714
1747
|
*
|
|
@@ -1718,6 +1751,16 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1718
1751
|
}
|
|
1719
1752
|
|
|
1720
1753
|
export interface $SideNavigationSettings extends $ControlSettings {
|
|
1754
|
+
/**
|
|
1755
|
+
* @since 1.120
|
|
1756
|
+
*
|
|
1757
|
+
* Specifies the width of the control.
|
|
1758
|
+
*
|
|
1759
|
+
* Depending on the theme, there is a minimum width set (16rem for Horizon theme). This property
|
|
1760
|
+
* can be used to set a bigger width.
|
|
1761
|
+
*/
|
|
1762
|
+
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
1763
|
+
|
|
1721
1764
|
/**
|
|
1722
1765
|
* Specifies if the control is expanded.
|
|
1723
1766
|
*/
|