@sapui5/ts-types-esm 1.132.1 → 1.134.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/sap.apf.d.ts +12 -11
- package/types/sap.ca.ui.d.ts +413 -415
- package/types/sap.chart.d.ts +6 -6
- package/types/sap.collaboration.d.ts +31 -31
- package/types/sap.cux.home.d.ts +927 -110
- package/types/sap.esh.search.ui.d.ts +45 -1
- package/types/sap.f.d.ts +211 -183
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +40 -11
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +141 -99
- package/types/sap.fe.navigation.d.ts +3 -3
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +3 -8
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +576 -464
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.m.d.ts +2574 -1193
- package/types/sap.makit.d.ts +182 -182
- package/types/sap.me.d.ts +25 -27
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +41 -41
- package/types/sap.sac.df.d.ts +465 -193
- package/types/sap.suite.ui.commons.d.ts +432 -487
- package/types/sap.suite.ui.generic.template.d.ts +80 -37
- package/types/sap.suite.ui.microchart.d.ts +55 -79
- package/types/sap.tnt.d.ts +335 -20
- package/types/sap.ui.codeeditor.d.ts +9 -7
- package/types/sap.ui.commons.d.ts +326 -335
- package/types/sap.ui.comp.d.ts +432 -445
- package/types/sap.ui.core.d.ts +46978 -46714
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -5
- package/types/sap.ui.generic.app.d.ts +83 -66
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +322 -236
- package/types/sap.ui.layout.d.ts +90 -104
- package/types/sap.ui.mdc.d.ts +393 -153
- package/types/sap.ui.richtexteditor.d.ts +48 -8
- package/types/sap.ui.rta.d.ts +76 -1
- package/types/sap.ui.suite.d.ts +14 -14
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +219 -197
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +170 -158
- package/types/sap.ui.ux3.d.ts +113 -117
- package/types/sap.ui.vbm.d.ts +391 -60
- package/types/sap.ui.vk.d.ts +138 -135
- package/types/sap.ui.vtm.d.ts +112 -103
- package/types/sap.ui.webc.common.d.ts +7 -7
- package/types/sap.ui.webc.fiori.d.ts +164 -176
- package/types/sap.ui.webc.main.d.ts +527 -531
- package/types/sap.uiext.inbox.d.ts +43 -43
- package/types/sap.ushell.d.ts +246 -126
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +39 -51
- package/types/sap.viz.d.ts +2782 -2858
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +17 -17
- package/types/sap.zen.crosstab.d.ts +10 -10
- package/types/sap.zen.dsh.d.ts +11 -11
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -10,6 +10,24 @@ declare module "sap/tnt/library" {
|
|
|
10
10
|
__implements__sap_tnt_IToolHeader: boolean;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
/**
|
|
14
|
+
* Available types for navigation list item.
|
|
15
|
+
*
|
|
16
|
+
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'NavigationListItemDesign'.
|
|
17
|
+
*
|
|
18
|
+
* @since 1.133.0
|
|
19
|
+
* @experimental Behavior might change.
|
|
20
|
+
*/
|
|
21
|
+
export enum NavigationListItemDesign {
|
|
22
|
+
/**
|
|
23
|
+
* Navigation list item type which provides access to frequent functionality.
|
|
24
|
+
*/
|
|
25
|
+
Action = "Action",
|
|
26
|
+
/**
|
|
27
|
+
* Navigation list item type which enables navigation or contains navigation child items, or both.
|
|
28
|
+
*/
|
|
29
|
+
Default = "Default",
|
|
30
|
+
}
|
|
13
31
|
/**
|
|
14
32
|
* Predefined types of `InfoLabel`
|
|
15
33
|
*
|
|
@@ -25,6 +43,24 @@ declare module "sap/tnt/library" {
|
|
|
25
43
|
*/
|
|
26
44
|
Narrow = "Narrow",
|
|
27
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Available options for the Side Navigation design.
|
|
48
|
+
*
|
|
49
|
+
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'SideNavigationDesign'.
|
|
50
|
+
*
|
|
51
|
+
* @since 1.134.0
|
|
52
|
+
* @experimental Behavior might change.
|
|
53
|
+
*/
|
|
54
|
+
export enum SideNavigationDesign {
|
|
55
|
+
/**
|
|
56
|
+
* Side Navigation has a shadow and border.
|
|
57
|
+
*/
|
|
58
|
+
Decorated = "Decorated",
|
|
59
|
+
/**
|
|
60
|
+
* Side Navigation without any shadow or border.
|
|
61
|
+
*/
|
|
62
|
+
Plain = "Plain",
|
|
63
|
+
}
|
|
28
64
|
}
|
|
29
65
|
|
|
30
66
|
declare module "sap/tnt/IllustratedMessageType" {
|
|
@@ -388,7 +424,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
388
424
|
*
|
|
389
425
|
* @returns Value of property `renderMode`
|
|
390
426
|
*/
|
|
391
|
-
getRenderMode(): RenderMode
|
|
427
|
+
getRenderMode(): RenderMode;
|
|
392
428
|
/**
|
|
393
429
|
* Gets current value of property {@link #getText text}.
|
|
394
430
|
*
|
|
@@ -411,7 +447,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
411
447
|
*
|
|
412
448
|
* @returns Value of property `textDirection`
|
|
413
449
|
*/
|
|
414
|
-
getTextDirection(): TextDirection
|
|
450
|
+
getTextDirection(): TextDirection;
|
|
415
451
|
/**
|
|
416
452
|
* Gets current value of property {@link #getWidth width}.
|
|
417
453
|
*
|
|
@@ -1294,7 +1330,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1294
1330
|
$NavigationListItemBaseSettings,
|
|
1295
1331
|
} from "sap/tnt/NavigationListItemBase";
|
|
1296
1332
|
|
|
1297
|
-
import { URI } from "sap/ui/core/library";
|
|
1333
|
+
import { aria, URI } from "sap/ui/core/library";
|
|
1334
|
+
|
|
1335
|
+
import { NavigationListItemDesign } from "sap/tnt/library";
|
|
1298
1336
|
|
|
1299
1337
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1300
1338
|
|
|
@@ -1473,6 +1511,32 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1473
1511
|
*/
|
|
1474
1512
|
mParameters?: NavigationListItem$SelectEventParameters
|
|
1475
1513
|
): this;
|
|
1514
|
+
/**
|
|
1515
|
+
* Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
|
|
1516
|
+
*
|
|
1517
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
1518
|
+
*
|
|
1519
|
+
* Default value is `None`.
|
|
1520
|
+
*
|
|
1521
|
+
* @since 1.133.0
|
|
1522
|
+
*
|
|
1523
|
+
* @returns Value of property `ariaHasPopup`
|
|
1524
|
+
*/
|
|
1525
|
+
getAriaHasPopup(): aria.HasPopup;
|
|
1526
|
+
/**
|
|
1527
|
+
* Gets current value of property {@link #getDesign design}.
|
|
1528
|
+
*
|
|
1529
|
+
* Specifies if the item has a special design. NOTE: If `design` is not `NavigationListItemDesign.Default`
|
|
1530
|
+
* sub-items can't be added.
|
|
1531
|
+
*
|
|
1532
|
+
* Default value is `Default`.
|
|
1533
|
+
*
|
|
1534
|
+
* @since 1.133.0
|
|
1535
|
+
* @experimental Behavior might change.
|
|
1536
|
+
*
|
|
1537
|
+
* @returns Value of property `design`
|
|
1538
|
+
*/
|
|
1539
|
+
getDesign(): NavigationListItemDesign;
|
|
1476
1540
|
/**
|
|
1477
1541
|
* Gets current value of property {@link #getHref href}.
|
|
1478
1542
|
*
|
|
@@ -1503,13 +1567,22 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1503
1567
|
/**
|
|
1504
1568
|
* Gets current value of property {@link #getSelectable selectable}.
|
|
1505
1569
|
*
|
|
1506
|
-
* Specifies if the item can be selected.
|
|
1507
|
-
*
|
|
1570
|
+
* Specifies if the item can be selected. By default all items are selectable.
|
|
1571
|
+
*
|
|
1572
|
+
* When a parent item's `selectable` property is set to `false`, selecting it will only expand or collapse
|
|
1573
|
+
* its sub-items.
|
|
1574
|
+
*
|
|
1575
|
+
* To improve user experience do not mix selectable parent items with not selectable parent items within
|
|
1576
|
+
* a single side navigation.
|
|
1577
|
+
*
|
|
1578
|
+
* **Guidelines:**
|
|
1579
|
+
* - External links should not be selectable.
|
|
1580
|
+
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1508
1581
|
*
|
|
1509
1582
|
* Default value is `true`.
|
|
1510
1583
|
*
|
|
1511
1584
|
* @since 1.116
|
|
1512
|
-
* @experimental
|
|
1585
|
+
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1513
1586
|
* may be done before its official public release.
|
|
1514
1587
|
*
|
|
1515
1588
|
* @returns Value of property `selectable`
|
|
@@ -1592,6 +1665,46 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1592
1665
|
*/
|
|
1593
1666
|
vItem: int | string | NavigationListItem
|
|
1594
1667
|
): NavigationListItem | null;
|
|
1668
|
+
/**
|
|
1669
|
+
* Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
|
|
1670
|
+
*
|
|
1671
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
1672
|
+
*
|
|
1673
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1674
|
+
*
|
|
1675
|
+
* Default value is `None`.
|
|
1676
|
+
*
|
|
1677
|
+
* @since 1.133.0
|
|
1678
|
+
*
|
|
1679
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1680
|
+
*/
|
|
1681
|
+
setAriaHasPopup(
|
|
1682
|
+
/**
|
|
1683
|
+
* New value for property `ariaHasPopup`
|
|
1684
|
+
*/
|
|
1685
|
+
sAriaHasPopup?: aria.HasPopup | keyof typeof aria.HasPopup
|
|
1686
|
+
): this;
|
|
1687
|
+
/**
|
|
1688
|
+
* Sets a new value for property {@link #getDesign design}.
|
|
1689
|
+
*
|
|
1690
|
+
* Specifies if the item has a special design. NOTE: If `design` is not `NavigationListItemDesign.Default`
|
|
1691
|
+
* sub-items can't be added.
|
|
1692
|
+
*
|
|
1693
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1694
|
+
*
|
|
1695
|
+
* Default value is `Default`.
|
|
1696
|
+
*
|
|
1697
|
+
* @since 1.133.0
|
|
1698
|
+
* @experimental Behavior might change.
|
|
1699
|
+
*
|
|
1700
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1701
|
+
*/
|
|
1702
|
+
setDesign(
|
|
1703
|
+
/**
|
|
1704
|
+
* New value for property `design`
|
|
1705
|
+
*/
|
|
1706
|
+
sDesign?: NavigationListItemDesign | keyof typeof NavigationListItemDesign
|
|
1707
|
+
): this;
|
|
1595
1708
|
/**
|
|
1596
1709
|
* Sets a new value for property {@link #getHref href}.
|
|
1597
1710
|
*
|
|
@@ -1630,15 +1743,24 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1630
1743
|
/**
|
|
1631
1744
|
* Sets a new value for property {@link #getSelectable selectable}.
|
|
1632
1745
|
*
|
|
1633
|
-
* Specifies if the item can be selected.
|
|
1634
|
-
*
|
|
1746
|
+
* Specifies if the item can be selected. By default all items are selectable.
|
|
1747
|
+
*
|
|
1748
|
+
* When a parent item's `selectable` property is set to `false`, selecting it will only expand or collapse
|
|
1749
|
+
* its sub-items.
|
|
1750
|
+
*
|
|
1751
|
+
* To improve user experience do not mix selectable parent items with not selectable parent items within
|
|
1752
|
+
* a single side navigation.
|
|
1753
|
+
*
|
|
1754
|
+
* **Guidelines:**
|
|
1755
|
+
* - External links should not be selectable.
|
|
1756
|
+
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1635
1757
|
*
|
|
1636
1758
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1637
1759
|
*
|
|
1638
1760
|
* Default value is `true`.
|
|
1639
1761
|
*
|
|
1640
1762
|
* @since 1.116
|
|
1641
|
-
* @experimental
|
|
1763
|
+
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1642
1764
|
* may be done before its official public release.
|
|
1643
1765
|
*
|
|
1644
1766
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1707,11 +1829,20 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1707
1829
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1708
1830
|
|
|
1709
1831
|
/**
|
|
1710
|
-
* Specifies if the item can be selected.
|
|
1711
|
-
*
|
|
1832
|
+
* Specifies if the item can be selected. By default all items are selectable.
|
|
1833
|
+
*
|
|
1834
|
+
* When a parent item's `selectable` property is set to `false`, selecting it will only expand or collapse
|
|
1835
|
+
* its sub-items.
|
|
1836
|
+
*
|
|
1837
|
+
* To improve user experience do not mix selectable parent items with not selectable parent items within
|
|
1838
|
+
* a single side navigation.
|
|
1839
|
+
*
|
|
1840
|
+
* **Guidelines:**
|
|
1841
|
+
* - External links should not be selectable.
|
|
1842
|
+
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1712
1843
|
*
|
|
1713
1844
|
* @since 1.116
|
|
1714
|
-
* @experimental
|
|
1845
|
+
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1715
1846
|
* may be done before its official public release.
|
|
1716
1847
|
*/
|
|
1717
1848
|
selectable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -1731,6 +1862,28 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1731
1862
|
*/
|
|
1732
1863
|
target?: string | PropertyBindingInfo;
|
|
1733
1864
|
|
|
1865
|
+
/**
|
|
1866
|
+
* Specifies if the item has a special design. NOTE: If `design` is not `NavigationListItemDesign.Default`
|
|
1867
|
+
* sub-items can't be added.
|
|
1868
|
+
*
|
|
1869
|
+
* @since 1.133.0
|
|
1870
|
+
* @experimental Behavior might change.
|
|
1871
|
+
*/
|
|
1872
|
+
design?:
|
|
1873
|
+
| (NavigationListItemDesign | keyof typeof NavigationListItemDesign)
|
|
1874
|
+
| PropertyBindingInfo
|
|
1875
|
+
| `{${string}}`;
|
|
1876
|
+
|
|
1877
|
+
/**
|
|
1878
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
1879
|
+
*
|
|
1880
|
+
* @since 1.133.0
|
|
1881
|
+
*/
|
|
1882
|
+
ariaHasPopup?:
|
|
1883
|
+
| (aria.HasPopup | keyof typeof aria.HasPopup)
|
|
1884
|
+
| PropertyBindingInfo
|
|
1885
|
+
| `{${string}}`;
|
|
1886
|
+
|
|
1734
1887
|
/**
|
|
1735
1888
|
* The sub items.
|
|
1736
1889
|
*/
|
|
@@ -1772,6 +1925,8 @@ declare module "sap/tnt/NavigationListItemBase" {
|
|
|
1772
1925
|
|
|
1773
1926
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1774
1927
|
|
|
1928
|
+
import Event from "sap/ui/base/Event";
|
|
1929
|
+
|
|
1775
1930
|
/**
|
|
1776
1931
|
* The `NavigationListItemBase` class represents a base class for the items that are accepted by the `NavigationList`
|
|
1777
1932
|
* control.
|
|
@@ -1841,6 +1996,88 @@ declare module "sap/tnt/NavigationListItemBase" {
|
|
|
1841
1996
|
* @returns Metadata object describing this class
|
|
1842
1997
|
*/
|
|
1843
1998
|
static getMetadata(): ElementMetadata;
|
|
1999
|
+
/**
|
|
2000
|
+
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.tnt.NavigationListItemBase`.
|
|
2001
|
+
*
|
|
2002
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2003
|
+
* otherwise it will be bound to this `sap.tnt.NavigationListItemBase` itself.
|
|
2004
|
+
*
|
|
2005
|
+
* Fired when an item is pressed.
|
|
2006
|
+
*
|
|
2007
|
+
* @since 1.133
|
|
2008
|
+
*
|
|
2009
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2010
|
+
*/
|
|
2011
|
+
attachPress(
|
|
2012
|
+
/**
|
|
2013
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2014
|
+
* object when firing the event
|
|
2015
|
+
*/
|
|
2016
|
+
oData: object,
|
|
2017
|
+
/**
|
|
2018
|
+
* The function to be called when the event occurs
|
|
2019
|
+
*/
|
|
2020
|
+
fnFunction: (p1: NavigationListItemBase$PressEvent) => void,
|
|
2021
|
+
/**
|
|
2022
|
+
* Context object to call the event handler with. Defaults to this `sap.tnt.NavigationListItemBase` itself
|
|
2023
|
+
*/
|
|
2024
|
+
oListener?: object
|
|
2025
|
+
): this;
|
|
2026
|
+
/**
|
|
2027
|
+
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.tnt.NavigationListItemBase`.
|
|
2028
|
+
*
|
|
2029
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2030
|
+
* otherwise it will be bound to this `sap.tnt.NavigationListItemBase` itself.
|
|
2031
|
+
*
|
|
2032
|
+
* Fired when an item is pressed.
|
|
2033
|
+
*
|
|
2034
|
+
* @since 1.133
|
|
2035
|
+
*
|
|
2036
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2037
|
+
*/
|
|
2038
|
+
attachPress(
|
|
2039
|
+
/**
|
|
2040
|
+
* The function to be called when the event occurs
|
|
2041
|
+
*/
|
|
2042
|
+
fnFunction: (p1: NavigationListItemBase$PressEvent) => void,
|
|
2043
|
+
/**
|
|
2044
|
+
* Context object to call the event handler with. Defaults to this `sap.tnt.NavigationListItemBase` itself
|
|
2045
|
+
*/
|
|
2046
|
+
oListener?: object
|
|
2047
|
+
): this;
|
|
2048
|
+
/**
|
|
2049
|
+
* Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.tnt.NavigationListItemBase`.
|
|
2050
|
+
*
|
|
2051
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2052
|
+
*
|
|
2053
|
+
* @since 1.133
|
|
2054
|
+
*
|
|
2055
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2056
|
+
*/
|
|
2057
|
+
detachPress(
|
|
2058
|
+
/**
|
|
2059
|
+
* The function to be called, when the event occurs
|
|
2060
|
+
*/
|
|
2061
|
+
fnFunction: (p1: NavigationListItemBase$PressEvent) => void,
|
|
2062
|
+
/**
|
|
2063
|
+
* Context object on which the given function had to be called
|
|
2064
|
+
*/
|
|
2065
|
+
oListener?: object
|
|
2066
|
+
): this;
|
|
2067
|
+
/**
|
|
2068
|
+
* Fires event {@link #event:press press} to attached listeners.
|
|
2069
|
+
*
|
|
2070
|
+
* @since 1.133
|
|
2071
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2072
|
+
*
|
|
2073
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2074
|
+
*/
|
|
2075
|
+
firePress(
|
|
2076
|
+
/**
|
|
2077
|
+
* Parameters to pass along with the event
|
|
2078
|
+
*/
|
|
2079
|
+
mParameters?: NavigationListItemBase$PressEventParameters
|
|
2080
|
+
): this;
|
|
1844
2081
|
/**
|
|
1845
2082
|
* Gets current value of property {@link #getExpanded expanded}.
|
|
1846
2083
|
*
|
|
@@ -1963,7 +2200,32 @@ declare module "sap/tnt/NavigationListItemBase" {
|
|
|
1963
2200
|
* @since 1.121
|
|
1964
2201
|
*/
|
|
1965
2202
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2203
|
+
|
|
2204
|
+
/**
|
|
2205
|
+
* Fired when an item is pressed.
|
|
2206
|
+
*
|
|
2207
|
+
* @since 1.133
|
|
2208
|
+
*/
|
|
2209
|
+
press?: (oEvent: NavigationListItemBase$PressEvent) => void;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
/**
|
|
2213
|
+
* Parameters of the NavigationListItemBase#press event.
|
|
2214
|
+
*/
|
|
2215
|
+
export interface NavigationListItemBase$PressEventParameters {
|
|
2216
|
+
/**
|
|
2217
|
+
* The pressed item.
|
|
2218
|
+
*/
|
|
2219
|
+
item?: Item;
|
|
1966
2220
|
}
|
|
2221
|
+
|
|
2222
|
+
/**
|
|
2223
|
+
* Event object of the NavigationListItemBase#press event.
|
|
2224
|
+
*/
|
|
2225
|
+
export type NavigationListItemBase$PressEvent = Event<
|
|
2226
|
+
NavigationListItemBase$PressEventParameters,
|
|
2227
|
+
NavigationListItemBase
|
|
2228
|
+
>;
|
|
1967
2229
|
}
|
|
1968
2230
|
|
|
1969
2231
|
declare module "sap/tnt/SideNavigation" {
|
|
@@ -1974,6 +2236,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1974
2236
|
PropertyBindingInfo,
|
|
1975
2237
|
} from "sap/ui/base/ManagedObject";
|
|
1976
2238
|
|
|
2239
|
+
import { SideNavigationDesign } from "sap/tnt/library";
|
|
2240
|
+
|
|
1977
2241
|
import NavigationList from "sap/tnt/NavigationList";
|
|
1978
2242
|
|
|
1979
2243
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -1992,6 +2256,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1992
2256
|
* - The flexible part adapts its size to the fixed one.
|
|
1993
2257
|
* - The flexible part has a scrollbar when the content is larger than the available space. **Note:**
|
|
1994
2258
|
* In order for the `SideNavigation` to stretch properly, its parent layout control should only be the `sap.tnt.ToolPage`.
|
|
2259
|
+
* **Note:** If used outside the intended parent layout `sap.tnt.ToolPage`, for example inside a `sap.m.ResponsivePopover`
|
|
2260
|
+
* to achieve a Side Navigation Overlay Mode, the application developer should set the `design` property
|
|
2261
|
+
* to `Plain`.
|
|
1995
2262
|
*
|
|
1996
2263
|
* @since 1.34
|
|
1997
2264
|
*/
|
|
@@ -2130,7 +2397,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2130
2397
|
/**
|
|
2131
2398
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
2132
2399
|
*
|
|
2133
|
-
* @deprecated
|
|
2400
|
+
* @deprecated As of version 1.120. Use the aggregation `fixedItem` instead.
|
|
2134
2401
|
*
|
|
2135
2402
|
* @returns Reference to `this` in order to allow method chaining
|
|
2136
2403
|
*/
|
|
@@ -2183,6 +2450,21 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2183
2450
|
* @returns Value of property `ariaLabel`
|
|
2184
2451
|
*/
|
|
2185
2452
|
getAriaLabel(): string;
|
|
2453
|
+
/**
|
|
2454
|
+
* Gets current value of property {@link #getDesign design}.
|
|
2455
|
+
*
|
|
2456
|
+
* Specifies whether the control should have own container styling, such as a box-shadow and border, or
|
|
2457
|
+
* not. **Note:** This property has to be set to `Plain` when the control is used inside a `sap.m.ResponsivePopover`
|
|
2458
|
+
* to achieve a Side Navigation Overlay Mode.
|
|
2459
|
+
*
|
|
2460
|
+
* Default value is `Decorated`.
|
|
2461
|
+
*
|
|
2462
|
+
* @since 1.134
|
|
2463
|
+
* @experimental
|
|
2464
|
+
*
|
|
2465
|
+
* @returns Value of property `design`
|
|
2466
|
+
*/
|
|
2467
|
+
getDesign(): SideNavigationDesign;
|
|
2186
2468
|
/**
|
|
2187
2469
|
* Gets current value of property {@link #getExpanded expanded}.
|
|
2188
2470
|
*
|
|
@@ -2205,7 +2487,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2205
2487
|
*
|
|
2206
2488
|
* Defines the content inside the footer.
|
|
2207
2489
|
*
|
|
2208
|
-
* @deprecated
|
|
2490
|
+
* @deprecated As of version 1.120. Use the aggregation `fixedItem` instead.
|
|
2209
2491
|
*/
|
|
2210
2492
|
getFooter(): NavigationList;
|
|
2211
2493
|
/**
|
|
@@ -2261,6 +2543,28 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2261
2543
|
*/
|
|
2262
2544
|
sAriaLabel?: string
|
|
2263
2545
|
): this;
|
|
2546
|
+
/**
|
|
2547
|
+
* Sets a new value for property {@link #getDesign design}.
|
|
2548
|
+
*
|
|
2549
|
+
* Specifies whether the control should have own container styling, such as a box-shadow and border, or
|
|
2550
|
+
* not. **Note:** This property has to be set to `Plain` when the control is used inside a `sap.m.ResponsivePopover`
|
|
2551
|
+
* to achieve a Side Navigation Overlay Mode.
|
|
2552
|
+
*
|
|
2553
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2554
|
+
*
|
|
2555
|
+
* Default value is `Decorated`.
|
|
2556
|
+
*
|
|
2557
|
+
* @since 1.134
|
|
2558
|
+
* @experimental
|
|
2559
|
+
*
|
|
2560
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2561
|
+
*/
|
|
2562
|
+
setDesign(
|
|
2563
|
+
/**
|
|
2564
|
+
* New value for property `design`
|
|
2565
|
+
*/
|
|
2566
|
+
sDesign?: SideNavigationDesign | keyof typeof SideNavigationDesign
|
|
2567
|
+
): this;
|
|
2264
2568
|
/**
|
|
2265
2569
|
* Sets if the control is in expanded or collapsed mode.
|
|
2266
2570
|
*
|
|
@@ -2288,7 +2592,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2288
2592
|
/**
|
|
2289
2593
|
* Sets the aggregated {@link #getFooter footer}.
|
|
2290
2594
|
*
|
|
2291
|
-
* @deprecated
|
|
2595
|
+
* @deprecated As of version 1.120. Use the aggregation `fixedItem` instead.
|
|
2292
2596
|
*
|
|
2293
2597
|
* @returns Reference to `this` in order to allow method chaining
|
|
2294
2598
|
*/
|
|
@@ -2395,6 +2699,19 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2395
2699
|
*/
|
|
2396
2700
|
ariaLabel?: string | PropertyBindingInfo;
|
|
2397
2701
|
|
|
2702
|
+
/**
|
|
2703
|
+
* Specifies whether the control should have own container styling, such as a box-shadow and border, or
|
|
2704
|
+
* not. **Note:** This property has to be set to `Plain` when the control is used inside a `sap.m.ResponsivePopover`
|
|
2705
|
+
* to achieve a Side Navigation Overlay Mode.
|
|
2706
|
+
*
|
|
2707
|
+
* @since 1.134
|
|
2708
|
+
* @experimental
|
|
2709
|
+
*/
|
|
2710
|
+
design?:
|
|
2711
|
+
| (SideNavigationDesign | keyof typeof SideNavigationDesign)
|
|
2712
|
+
| PropertyBindingInfo
|
|
2713
|
+
| `{${string}}`;
|
|
2714
|
+
|
|
2398
2715
|
/**
|
|
2399
2716
|
* Defines the content inside the flexible part.
|
|
2400
2717
|
*/
|
|
@@ -2408,7 +2725,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2408
2725
|
/**
|
|
2409
2726
|
* Defines the content inside the footer.
|
|
2410
2727
|
*
|
|
2411
|
-
* @deprecated
|
|
2728
|
+
* @deprecated As of version 1.120. Use the aggregation `fixedItem` instead.
|
|
2412
2729
|
*/
|
|
2413
2730
|
footer?: NavigationList;
|
|
2414
2731
|
|
|
@@ -2800,9 +3117,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2800
3117
|
*
|
|
2801
3118
|
* @returns Value of property `contentBackgroundDesign`
|
|
2802
3119
|
*/
|
|
2803
|
-
getContentBackgroundDesign():
|
|
2804
|
-
| PageBackgroundDesign
|
|
2805
|
-
| keyof typeof PageBackgroundDesign;
|
|
3120
|
+
getContentBackgroundDesign(): PageBackgroundDesign;
|
|
2806
3121
|
/**
|
|
2807
3122
|
* Gets content of aggregation {@link #getHeader header}.
|
|
2808
3123
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.134.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/codeeditor/library" {}
|
|
4
4
|
|
|
@@ -270,12 +270,13 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
270
270
|
*
|
|
271
271
|
* Sets the editor color theme. Possible values are:
|
|
272
272
|
* - default: best fitting to the current UI5 theme
|
|
273
|
-
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse,
|
|
274
|
-
* iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver
|
|
273
|
+
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse, github_light_default,
|
|
274
|
+
* github, iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver, cloud_editor
|
|
275
|
+
*
|
|
275
276
|
* - any dark theme from the list: hcb, hcb_bright, hcb_blue, ambiance, chaos, clouds_midnight, dracula,
|
|
276
277
|
* cobalt, gruvbox, gob, idle_fingers, kr_theme, merbivore, merbivore_soft, mono_industrial, monokai, nord_dark,
|
|
277
278
|
* one_dark, pastel_on_dark, solarized_dark, terminal, tomorrow_night, tomorrow_night_blue, tomorrow_night_bright,
|
|
278
|
-
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark
|
|
279
|
+
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark, cloud_editor_dark
|
|
279
280
|
*
|
|
280
281
|
* Default value is `"default"`.
|
|
281
282
|
*
|
|
@@ -688,12 +689,13 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
688
689
|
/**
|
|
689
690
|
* Sets the editor color theme. Possible values are:
|
|
690
691
|
* - default: best fitting to the current UI5 theme
|
|
691
|
-
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse,
|
|
692
|
-
* iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver
|
|
692
|
+
* - any light theme from the list: chrome, clouds, crimson_editor, dawn, dreamweaver, eclipse, github_light_default,
|
|
693
|
+
* github, iplastic, solarized_light, textmate, tomorrow, xcode, kuroir, katzenmilch, sqlserver, cloud_editor
|
|
694
|
+
*
|
|
693
695
|
* - any dark theme from the list: hcb, hcb_bright, hcb_blue, ambiance, chaos, clouds_midnight, dracula,
|
|
694
696
|
* cobalt, gruvbox, gob, idle_fingers, kr_theme, merbivore, merbivore_soft, mono_industrial, monokai, nord_dark,
|
|
695
697
|
* one_dark, pastel_on_dark, solarized_dark, terminal, tomorrow_night, tomorrow_night_blue, tomorrow_night_bright,
|
|
696
|
-
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark
|
|
698
|
+
* tomorrow_night_eighties, twilight, vibrant_ink, github_dark, cloud_editor_dark
|
|
697
699
|
*/
|
|
698
700
|
colorTheme?: string | PropertyBindingInfo;
|
|
699
701
|
|