@openui5/types 1.143.1 → 1.145.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/package.json +1 -1
- package/types/index.d.ts +1 -1
- package/types/sap.f.d.ts +4 -4
- package/types/sap.m.d.ts +326 -79
- package/types/sap.tnt.d.ts +19 -7
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +3469 -306
- package/types/sap.ui.core.d.ts +757 -261
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -5
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +18 -18
- package/types/sap.ui.mdc.d.ts +482 -116
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +164 -4
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +3 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -1
- package/types/sap.ui.webc.main.d.ts +70 -1
- package/types/sap.uxap.d.ts +18 -8
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -1658,8 +1658,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1658
1658
|
/**
|
|
1659
1659
|
* Gets current value of property {@link #getDesign design}.
|
|
1660
1660
|
*
|
|
1661
|
-
* Specifies if the item has a special design.
|
|
1662
|
-
* sub-items
|
|
1661
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
1662
|
+
* sub-items cannot be added.
|
|
1663
1663
|
*
|
|
1664
1664
|
* Default value is `Default`.
|
|
1665
1665
|
*
|
|
@@ -1684,6 +1684,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1684
1684
|
*
|
|
1685
1685
|
* Specifies the icon for the item.
|
|
1686
1686
|
*
|
|
1687
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1688
|
+
*
|
|
1687
1689
|
* Default value is `empty string`.
|
|
1688
1690
|
*
|
|
1689
1691
|
*
|
|
@@ -1823,8 +1825,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1823
1825
|
/**
|
|
1824
1826
|
* Sets a new value for property {@link #getDesign design}.
|
|
1825
1827
|
*
|
|
1826
|
-
* Specifies if the item has a special design.
|
|
1827
|
-
* sub-items
|
|
1828
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
1829
|
+
* sub-items cannot be added.
|
|
1828
1830
|
*
|
|
1829
1831
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1830
1832
|
*
|
|
@@ -1863,6 +1865,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1863
1865
|
*
|
|
1864
1866
|
* Specifies the icon for the item.
|
|
1865
1867
|
*
|
|
1868
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1869
|
+
*
|
|
1866
1870
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1867
1871
|
*
|
|
1868
1872
|
* Default value is `empty string`.
|
|
@@ -1958,6 +1962,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1958
1962
|
extends $NavigationListItemBaseSettings {
|
|
1959
1963
|
/**
|
|
1960
1964
|
* Specifies the icon for the item.
|
|
1965
|
+
*
|
|
1966
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1961
1967
|
*/
|
|
1962
1968
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
1963
1969
|
|
|
@@ -2007,8 +2013,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
2007
2013
|
target?: string | PropertyBindingInfo;
|
|
2008
2014
|
|
|
2009
2015
|
/**
|
|
2010
|
-
* Specifies if the item has a special design.
|
|
2011
|
-
* sub-items
|
|
2016
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
2017
|
+
* sub-items cannot be added.
|
|
2012
2018
|
*
|
|
2013
2019
|
* @since 1.133.0
|
|
2014
2020
|
* @experimental Behavior might change.
|
|
@@ -3427,6 +3433,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
3427
3433
|
* Gets current value of property {@link #getSideExpanded sideExpanded}.
|
|
3428
3434
|
*
|
|
3429
3435
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
3436
|
+
* *Note:** By default, on mobile phone devices and small screens, the side content is collapsed to provide
|
|
3437
|
+
* more space for the main content. On larger screens, excluding mobile phone devices, it is expanded. This
|
|
3438
|
+
* behavior can be overridden by setting this property.
|
|
3430
3439
|
*
|
|
3431
3440
|
* Default value is `true`.
|
|
3432
3441
|
*
|
|
@@ -3578,6 +3587,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
3578
3587
|
export interface $ToolPageSettings extends $ControlSettings {
|
|
3579
3588
|
/**
|
|
3580
3589
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
3590
|
+
* **Note:** By default, on mobile phone devices and small screens, the side content is collapsed to provide
|
|
3591
|
+
* more space for the main content. On larger screens, excluding mobile phone devices, it is expanded. This
|
|
3592
|
+
* behavior can be overridden by setting this property.
|
|
3581
3593
|
*/
|
|
3582
3594
|
sideExpanded?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3583
3595
|
|