@sapui5/types 1.144.1 → 1.145.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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +110 -85
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +342 -21
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +188 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +994 -198
- package/types/sap.fe.navigation.d.ts +1 -1
- 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 +12 -1
- package/types/sap.fe.test.d.ts +150 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +128 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +29 -12
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +31 -2
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +230 -15
- package/types/sap.suite.ui.generic.template.d.ts +46 -1
- package/types/sap.suite.ui.microchart.d.ts +2 -1
- package/types/sap.tnt.d.ts +19 -11
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +73 -2
- package/types/sap.ui.core.d.ts +140 -99
- 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 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +378 -50
- package/types/sap.ui.richtexteditor.d.ts +29 -7
- 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 +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 +39 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +168 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +5 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,38 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.1
|
|
2
|
+
|
|
3
|
+
declare module "sap/fe/macros/AINotice" {
|
|
4
|
+
import {
|
|
5
|
+
default as BuildingBlock,
|
|
6
|
+
$BuildingBlockSettings,
|
|
7
|
+
} from "sap/fe/core/buildingBlocks/BuildingBlock";
|
|
8
|
+
|
|
9
|
+
import Control from "sap/ui/core/Control";
|
|
10
|
+
|
|
11
|
+
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Building block that displays a AI notice.
|
|
15
|
+
* It's used to display information related to AI features. This information is rendered either
|
|
16
|
+
* as a link if the aggregation popoverContent is defined or as a label if there is no aggregation popoverContent.
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @since 1.145.0
|
|
20
|
+
*/
|
|
21
|
+
export default class AINotice extends BuildingBlock {}
|
|
22
|
+
/**
|
|
23
|
+
* Describes the settings that can be provided to the AINotice constructor.
|
|
24
|
+
*/
|
|
25
|
+
export interface $AINoticeSettings extends $BuildingBlockSettings {
|
|
26
|
+
/**
|
|
27
|
+
* The content to display into the popover
|
|
28
|
+
*/
|
|
29
|
+
popoverContent?:
|
|
30
|
+
| Control[]
|
|
31
|
+
| Control
|
|
32
|
+
| AggregationBindingInfo
|
|
33
|
+
| `{${string}}`;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
2
36
|
|
|
3
37
|
declare module "sap/fe/macros/Chart" {
|
|
4
38
|
import {
|
|
@@ -368,7 +402,7 @@ declare module "sap/fe/macros/Chart" {
|
|
|
368
402
|
| `{${string}}`;
|
|
369
403
|
|
|
370
404
|
/**
|
|
371
|
-
*
|
|
405
|
+
* ID of the FilterBar building block associated with the chart.
|
|
372
406
|
*/
|
|
373
407
|
filterBar?: Control | string;
|
|
374
408
|
|
|
@@ -1547,6 +1581,8 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1547
1581
|
$BuildingBlockSettings,
|
|
1548
1582
|
} from "sap/fe/core/buildingBlocks/BuildingBlock";
|
|
1549
1583
|
|
|
1584
|
+
import Event from "sap/ui/base/Event";
|
|
1585
|
+
|
|
1550
1586
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1551
1587
|
|
|
1552
1588
|
/**
|
|
@@ -1577,6 +1613,73 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1577
1613
|
* @since 1.93.0
|
|
1578
1614
|
*/
|
|
1579
1615
|
export default class MicroChart extends BuildingBlock {
|
|
1616
|
+
/**
|
|
1617
|
+
*
|
|
1618
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1619
|
+
* to allow method chaining
|
|
1620
|
+
*/
|
|
1621
|
+
attachTitlePress(
|
|
1622
|
+
/**
|
|
1623
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
1624
|
+
* object when firing the event
|
|
1625
|
+
*/
|
|
1626
|
+
oData: object,
|
|
1627
|
+
/**
|
|
1628
|
+
* The function to be called when the event occurs
|
|
1629
|
+
*/
|
|
1630
|
+
fnFunction: (p1: Event) => void,
|
|
1631
|
+
/**
|
|
1632
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
1633
|
+
*/
|
|
1634
|
+
oListener?: object
|
|
1635
|
+
): this;
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1639
|
+
* to allow method chaining
|
|
1640
|
+
*/
|
|
1641
|
+
attachTitlePress(
|
|
1642
|
+
/**
|
|
1643
|
+
* The function to be called when the event occurs
|
|
1644
|
+
*/
|
|
1645
|
+
fnFunction: (p1: Event) => void,
|
|
1646
|
+
/**
|
|
1647
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
1648
|
+
*/
|
|
1649
|
+
oListener?: object
|
|
1650
|
+
): this;
|
|
1651
|
+
/**
|
|
1652
|
+
*
|
|
1653
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1654
|
+
* to allow method chaining
|
|
1655
|
+
*/
|
|
1656
|
+
detachTitlePress(
|
|
1657
|
+
/**
|
|
1658
|
+
* The function to be called when the event occurs
|
|
1659
|
+
*/
|
|
1660
|
+
fnFunction: (p1: Event) => void,
|
|
1661
|
+
/**
|
|
1662
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
1663
|
+
*/
|
|
1664
|
+
oListener?: object
|
|
1665
|
+
): this;
|
|
1666
|
+
/**
|
|
1667
|
+
* Fires event titlePress
|
|
1668
|
+
* to attached listeners.
|
|
1669
|
+
*
|
|
1670
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1671
|
+
*
|
|
1672
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1673
|
+
* to allow method chaining
|
|
1674
|
+
*/
|
|
1675
|
+
fireTitlePress(
|
|
1676
|
+
/**
|
|
1677
|
+
* The parameters to pass along with the event.
|
|
1678
|
+
* See {@link types.EventHandler>} for the set of parameters that are
|
|
1679
|
+
* expected by the event handlers.
|
|
1680
|
+
*/
|
|
1681
|
+
mParameters?: {}
|
|
1682
|
+
): this;
|
|
1580
1683
|
/**
|
|
1581
1684
|
* Gets current value of property contextPath.
|
|
1582
1685
|
*
|
|
@@ -1591,6 +1694,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1591
1694
|
* @returns Value of property `hideOnNoData`
|
|
1592
1695
|
*/
|
|
1593
1696
|
getHideOnNoData(): boolean;
|
|
1697
|
+
/**
|
|
1698
|
+
* Gets current value of property linkAriaText.
|
|
1699
|
+
*
|
|
1700
|
+
*
|
|
1701
|
+
* @returns Value of property `linkAriaText`
|
|
1702
|
+
*/
|
|
1703
|
+
getLinkAriaText(): string;
|
|
1594
1704
|
/**
|
|
1595
1705
|
* Gets current value of property metaPath.
|
|
1596
1706
|
*
|
|
@@ -1612,6 +1722,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1612
1722
|
* @returns Value of property `size`
|
|
1613
1723
|
*/
|
|
1614
1724
|
getSize(): string;
|
|
1725
|
+
/**
|
|
1726
|
+
* Gets current value of property titleAsLink.
|
|
1727
|
+
*
|
|
1728
|
+
*
|
|
1729
|
+
* @returns Value of property `titleAsLink`
|
|
1730
|
+
*/
|
|
1731
|
+
getTitleAsLink(): boolean;
|
|
1615
1732
|
/**
|
|
1616
1733
|
* Gets current value of property contextPath.
|
|
1617
1734
|
*
|
|
@@ -1626,6 +1743,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1626
1743
|
* @returns Value of property `hideOnNoData`
|
|
1627
1744
|
*/
|
|
1628
1745
|
setHideOnNoData(): boolean;
|
|
1746
|
+
/**
|
|
1747
|
+
* Gets current value of property linkAriaText.
|
|
1748
|
+
*
|
|
1749
|
+
*
|
|
1750
|
+
* @returns Value of property `linkAriaText`
|
|
1751
|
+
*/
|
|
1752
|
+
setLinkAriaText(): string;
|
|
1629
1753
|
/**
|
|
1630
1754
|
* Gets current value of property metaPath.
|
|
1631
1755
|
*
|
|
@@ -1647,6 +1771,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1647
1771
|
* @returns Value of property `size`
|
|
1648
1772
|
*/
|
|
1649
1773
|
setSize(): string;
|
|
1774
|
+
/**
|
|
1775
|
+
* Gets current value of property titleAsLink.
|
|
1776
|
+
*
|
|
1777
|
+
*
|
|
1778
|
+
* @returns Value of property `titleAsLink`
|
|
1779
|
+
*/
|
|
1780
|
+
setTitleAsLink(): boolean;
|
|
1650
1781
|
}
|
|
1651
1782
|
/**
|
|
1652
1783
|
* Describes the settings that can be provided to the MicroChart constructor.
|
|
@@ -1662,6 +1793,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1662
1793
|
*/
|
|
1663
1794
|
hideOnNoData?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1664
1795
|
|
|
1796
|
+
/**
|
|
1797
|
+
* Custom ARIA text for the title link.
|
|
1798
|
+
* This property is only used when titleAsLink is set to true.
|
|
1799
|
+
* If not provided, default ARIA text based on the navigationType is used.
|
|
1800
|
+
*/
|
|
1801
|
+
linkAriaText?: string | PropertyBindingInfo;
|
|
1802
|
+
|
|
1665
1803
|
/**
|
|
1666
1804
|
* Metadata path to the MicroChart.
|
|
1667
1805
|
*/
|
|
@@ -1677,7 +1815,33 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1677
1815
|
* Size of the MicroChart
|
|
1678
1816
|
*/
|
|
1679
1817
|
size?: string | PropertyBindingInfo;
|
|
1818
|
+
|
|
1819
|
+
/**
|
|
1820
|
+
* Determines whether the micro chart title is displayed as a link or as a text.
|
|
1821
|
+
* When set to true, the title is rendered as a clickable link.
|
|
1822
|
+
*/
|
|
1823
|
+
titleAsLink?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1824
|
+
|
|
1825
|
+
/**
|
|
1826
|
+
* Event fired when the micro chart title link is pressed.
|
|
1827
|
+
* The event provides the binding context of the micro chart in the event parameters.
|
|
1828
|
+
* This event is only fired when titleAsLink is set to true.
|
|
1829
|
+
*/
|
|
1830
|
+
titlePress?: (oEvent: Event) => void;
|
|
1680
1831
|
}
|
|
1832
|
+
|
|
1833
|
+
/**
|
|
1834
|
+
* Parameters of the MicroChart#titlePress event.
|
|
1835
|
+
*/
|
|
1836
|
+
export interface MicroChart$TitlePressEventParameters {}
|
|
1837
|
+
|
|
1838
|
+
/**
|
|
1839
|
+
* Event object of the MicroChart#titlePress event.
|
|
1840
|
+
*/
|
|
1841
|
+
export type MicroChart$TitlePressEvent = Event<
|
|
1842
|
+
MicroChart$TitlePressEventParameters,
|
|
1843
|
+
MicroChart
|
|
1844
|
+
>;
|
|
1681
1845
|
}
|
|
1682
1846
|
|
|
1683
1847
|
declare module "sap/fe/macros/MultiValueField" {
|
|
@@ -1760,6 +1924,11 @@ declare module "sap/fe/macros/Page" {
|
|
|
1760
1924
|
* Describes the settings that can be provided to the Page constructor.
|
|
1761
1925
|
*/
|
|
1762
1926
|
export interface $PageSettings extends $BuildingBlockSettings {
|
|
1927
|
+
/**
|
|
1928
|
+
* ImageFitType of the avatar image. This property is only considered if the title property is defined.
|
|
1929
|
+
*/
|
|
1930
|
+
avatarImageFitType?: string | PropertyBindingInfo;
|
|
1931
|
+
|
|
1763
1932
|
/**
|
|
1764
1933
|
* Source of the avatar image. This property is considered only if the title property is defined.
|
|
1765
1934
|
*/
|
|
@@ -1771,6 +1940,11 @@ declare module "sap/fe/macros/Page" {
|
|
|
1771
1940
|
*/
|
|
1772
1941
|
description?: string | PropertyBindingInfo;
|
|
1773
1942
|
|
|
1943
|
+
/**
|
|
1944
|
+
* Controls the visibility of the footer.
|
|
1945
|
+
*/
|
|
1946
|
+
showFooter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1947
|
+
|
|
1774
1948
|
/**
|
|
1775
1949
|
* Title of the page. If no title is provided, the title, avatar, and description are derived from the unqualified
|
|
1776
1950
|
* HeaderInfo annotation associated with the entity.
|
|
@@ -1778,10 +1952,53 @@ declare module "sap/fe/macros/Page" {
|
|
|
1778
1952
|
*/
|
|
1779
1953
|
title?: string | PropertyBindingInfo;
|
|
1780
1954
|
|
|
1955
|
+
/**
|
|
1956
|
+
* Actions to be displayed in the title area (for example, Edit and Delete buttons).
|
|
1957
|
+
*/
|
|
1958
|
+
actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1959
|
+
|
|
1960
|
+
/**
|
|
1961
|
+
* Breadcrumbs to be displayed in the title area.
|
|
1962
|
+
*/
|
|
1963
|
+
breadcrumbs?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1964
|
+
|
|
1965
|
+
/**
|
|
1966
|
+
* Footer content (for example, toolbar with buttons).
|
|
1967
|
+
*/
|
|
1968
|
+
footer?: Control;
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* Additional content to be displayed in the header after the avatar.
|
|
1972
|
+
*/
|
|
1973
|
+
headerContent?:
|
|
1974
|
+
| Control[]
|
|
1975
|
+
| Control
|
|
1976
|
+
| AggregationBindingInfo
|
|
1977
|
+
| `{${string}}`;
|
|
1978
|
+
|
|
1781
1979
|
/**
|
|
1782
1980
|
* Content(s) of the page
|
|
1783
1981
|
*/
|
|
1784
1982
|
items?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1983
|
+
|
|
1984
|
+
/**
|
|
1985
|
+
* Navigation actions to be displayed in the title area.
|
|
1986
|
+
*/
|
|
1987
|
+
navigationActions?:
|
|
1988
|
+
| Control[]
|
|
1989
|
+
| Control
|
|
1990
|
+
| AggregationBindingInfo
|
|
1991
|
+
| `{${string}}`;
|
|
1992
|
+
|
|
1993
|
+
/**
|
|
1994
|
+
* Content to be displayed next to the title (for example, GenericTag and Icon).
|
|
1995
|
+
*/
|
|
1996
|
+
titleContent?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1997
|
+
|
|
1998
|
+
/**
|
|
1999
|
+
* Reference to a control that provides sticky subheader content.
|
|
2000
|
+
*/
|
|
2001
|
+
stickySubheaderProvider?: Control | string;
|
|
1785
2002
|
}
|
|
1786
2003
|
}
|
|
1787
2004
|
|
|
@@ -2123,6 +2340,10 @@ declare module "sap/fe/macros/Table" {
|
|
|
2123
2340
|
$MacroAPISettings,
|
|
2124
2341
|
} from "sap/fe/macros/MacroAPI";
|
|
2125
2342
|
|
|
2343
|
+
import Action from "sap/fe/macros/table/Action";
|
|
2344
|
+
|
|
2345
|
+
import Column from "sap/fe/macros/table/Column";
|
|
2346
|
+
|
|
2126
2347
|
import Event from "sap/ui/base/Event";
|
|
2127
2348
|
|
|
2128
2349
|
import Context from "sap/ui/model/odata/v4/Context";
|
|
@@ -2138,15 +2359,11 @@ declare module "sap/fe/macros/Table" {
|
|
|
2138
2359
|
|
|
2139
2360
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
2140
2361
|
|
|
2141
|
-
import
|
|
2142
|
-
|
|
2143
|
-
import Action from "sap/fe/macros/table/Action";
|
|
2362
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
2144
2363
|
|
|
2145
2364
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
2146
2365
|
|
|
2147
|
-
import
|
|
2148
|
-
|
|
2149
|
-
import Column from "sap/fe/macros/table/Column";
|
|
2366
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
2150
2367
|
|
|
2151
2368
|
import TableCreationOptions from "sap/fe/macros/table/TableCreationOptions";
|
|
2152
2369
|
|
|
@@ -2191,6 +2408,34 @@ declare module "sap/fe/macros/Table" {
|
|
|
2191
2408
|
__implements__sap_fe_core_IRowBindingInterface: boolean;
|
|
2192
2409
|
__implements__sap_fe_macros_Table_ITableBlock: boolean;
|
|
2193
2410
|
|
|
2411
|
+
/**
|
|
2412
|
+
* Adds an action to the table.
|
|
2413
|
+
*
|
|
2414
|
+
* @since 1.145.0
|
|
2415
|
+
* @experimental As of version 1.145.0.
|
|
2416
|
+
*
|
|
2417
|
+
* @returns Reference to this to allow method chaining
|
|
2418
|
+
*/
|
|
2419
|
+
addAction(
|
|
2420
|
+
/**
|
|
2421
|
+
* The action to add
|
|
2422
|
+
*/
|
|
2423
|
+
action: Action
|
|
2424
|
+
): this;
|
|
2425
|
+
/**
|
|
2426
|
+
* Adds a column to the table.
|
|
2427
|
+
*
|
|
2428
|
+
* @since 1.145.0
|
|
2429
|
+
* @experimental As of version 1.145.0.
|
|
2430
|
+
*
|
|
2431
|
+
* @returns Reference to this to allow method chaining
|
|
2432
|
+
*/
|
|
2433
|
+
addColumn(
|
|
2434
|
+
/**
|
|
2435
|
+
* The column to add
|
|
2436
|
+
*/
|
|
2437
|
+
column: Column
|
|
2438
|
+
): this;
|
|
2194
2439
|
/**
|
|
2195
2440
|
* Adds a message to the table.
|
|
2196
2441
|
* The message applies to the whole table and not to an individual table row.
|
|
@@ -2502,6 +2747,34 @@ declare module "sap/fe/macros/Table" {
|
|
|
2502
2747
|
* Requests a refresh of the table.
|
|
2503
2748
|
*/
|
|
2504
2749
|
refresh(): void;
|
|
2750
|
+
/**
|
|
2751
|
+
* Removes an action from the table.
|
|
2752
|
+
*
|
|
2753
|
+
* @since 1.145.0
|
|
2754
|
+
* @experimental As of version 1.145.0.
|
|
2755
|
+
*
|
|
2756
|
+
* @returns The removed action or null
|
|
2757
|
+
*/
|
|
2758
|
+
removeAction(
|
|
2759
|
+
/**
|
|
2760
|
+
* The action to remove, or its index or ID
|
|
2761
|
+
*/
|
|
2762
|
+
action: number | Action | string
|
|
2763
|
+
): null | Action;
|
|
2764
|
+
/**
|
|
2765
|
+
* Removes a column from the table.
|
|
2766
|
+
*
|
|
2767
|
+
* @since 1.145.0
|
|
2768
|
+
* @experimental As of version 1.145.0.
|
|
2769
|
+
*
|
|
2770
|
+
* @returns The removed column or null
|
|
2771
|
+
*/
|
|
2772
|
+
removeColumn(
|
|
2773
|
+
/**
|
|
2774
|
+
* The column to remove, or its index or ID
|
|
2775
|
+
*/
|
|
2776
|
+
column: number | Column | string
|
|
2777
|
+
): null | Column;
|
|
2505
2778
|
/**
|
|
2506
2779
|
* Removes a message from the table.
|
|
2507
2780
|
*/
|
|
@@ -2527,7 +2800,7 @@ declare module "sap/fe/macros/Table" {
|
|
|
2527
2800
|
* @since 1.124.0
|
|
2528
2801
|
* @experimental As of version 1.124.0.
|
|
2529
2802
|
*
|
|
2530
|
-
* @returns Reference to this
|
|
2803
|
+
* @returns Reference to this to allow method chaining
|
|
2531
2804
|
*/
|
|
2532
2805
|
setIgnoredFields(
|
|
2533
2806
|
/**
|
|
@@ -2839,9 +3112,8 @@ declare module "sap/fe/macros/Table" {
|
|
|
2839
3112
|
* Aggregate actions of the table.
|
|
2840
3113
|
*/
|
|
2841
3114
|
actions?:
|
|
2842
|
-
|
|
|
2843
|
-
|
|
|
2844
|
-
| Action
|
|
3115
|
+
| ITableActionOrGroup[]
|
|
3116
|
+
| ITableActionOrGroup
|
|
2845
3117
|
| AggregationBindingInfo
|
|
2846
3118
|
| `{${string}}`;
|
|
2847
3119
|
|
|
@@ -2854,9 +3126,8 @@ declare module "sap/fe/macros/Table" {
|
|
|
2854
3126
|
* Aggregate columns of the table.
|
|
2855
3127
|
*/
|
|
2856
3128
|
columns?:
|
|
2857
|
-
|
|
|
2858
|
-
|
|
|
2859
|
-
| Column
|
|
3129
|
+
| ITableColumn[]
|
|
3130
|
+
| ITableColumn
|
|
2860
3131
|
| AggregationBindingInfo
|
|
2861
3132
|
| `{${string}}`;
|
|
2862
3133
|
|
|
@@ -2951,6 +3222,10 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
2951
3222
|
$MacroAPISettings,
|
|
2952
3223
|
} from "sap/fe/macros/MacroAPI";
|
|
2953
3224
|
|
|
3225
|
+
import Action from "sap/fe/macros/table/Action";
|
|
3226
|
+
|
|
3227
|
+
import Column from "sap/fe/macros/table/Column";
|
|
3228
|
+
|
|
2954
3229
|
import Event from "sap/ui/base/Event";
|
|
2955
3230
|
|
|
2956
3231
|
import Context from "sap/ui/model/odata/v4/Context";
|
|
@@ -2966,15 +3241,11 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
2966
3241
|
|
|
2967
3242
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
2968
3243
|
|
|
2969
|
-
import
|
|
2970
|
-
|
|
2971
|
-
import Action from "sap/fe/macros/table/Action";
|
|
3244
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
2972
3245
|
|
|
2973
3246
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
2974
3247
|
|
|
2975
|
-
import
|
|
2976
|
-
|
|
2977
|
-
import Column from "sap/fe/macros/table/Column";
|
|
3248
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
2978
3249
|
|
|
2979
3250
|
import TreeTableCreationOptions from "sap/fe/macros/table/TreeTableCreationOptions";
|
|
2980
3251
|
|
|
@@ -2993,6 +3264,34 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
2993
3264
|
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/table/treeTable Overview of Tree Table Building Block}
|
|
2994
3265
|
*/
|
|
2995
3266
|
export default class TreeTable extends MacroAPI {
|
|
3267
|
+
/**
|
|
3268
|
+
* Adds an action to the table.
|
|
3269
|
+
*
|
|
3270
|
+
* @since 1.145.0
|
|
3271
|
+
* @experimental As of version 1.145.0.
|
|
3272
|
+
*
|
|
3273
|
+
* @returns Reference to this to allow method chaining
|
|
3274
|
+
*/
|
|
3275
|
+
addAction(
|
|
3276
|
+
/**
|
|
3277
|
+
* The action to add
|
|
3278
|
+
*/
|
|
3279
|
+
action: Action
|
|
3280
|
+
): this;
|
|
3281
|
+
/**
|
|
3282
|
+
* Adds a column to the table.
|
|
3283
|
+
*
|
|
3284
|
+
* @since 1.145.0
|
|
3285
|
+
* @experimental As of version 1.145.0.
|
|
3286
|
+
*
|
|
3287
|
+
* @returns Reference to this to allow method chaining
|
|
3288
|
+
*/
|
|
3289
|
+
addColumn(
|
|
3290
|
+
/**
|
|
3291
|
+
* The column to add
|
|
3292
|
+
*/
|
|
3293
|
+
column: Column
|
|
3294
|
+
): this;
|
|
2996
3295
|
/**
|
|
2997
3296
|
* Adds a message to the table.
|
|
2998
3297
|
* The message applies to the whole table and not to an individual table row.
|
|
@@ -3304,6 +3603,34 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3304
3603
|
* Requests a refresh of the table.
|
|
3305
3604
|
*/
|
|
3306
3605
|
refresh(): void;
|
|
3606
|
+
/**
|
|
3607
|
+
* Removes an action from the table.
|
|
3608
|
+
*
|
|
3609
|
+
* @since 1.145.0
|
|
3610
|
+
* @experimental As of version 1.145.0.
|
|
3611
|
+
*
|
|
3612
|
+
* @returns The removed action or null
|
|
3613
|
+
*/
|
|
3614
|
+
removeAction(
|
|
3615
|
+
/**
|
|
3616
|
+
* The action to remove, or its index or ID
|
|
3617
|
+
*/
|
|
3618
|
+
action: number | Action | string
|
|
3619
|
+
): null | Action;
|
|
3620
|
+
/**
|
|
3621
|
+
* Removes a column from the table.
|
|
3622
|
+
*
|
|
3623
|
+
* @since 1.145.0
|
|
3624
|
+
* @experimental As of version 1.145.0.
|
|
3625
|
+
*
|
|
3626
|
+
* @returns The removed column or null
|
|
3627
|
+
*/
|
|
3628
|
+
removeColumn(
|
|
3629
|
+
/**
|
|
3630
|
+
* The column to remove, or its index or ID
|
|
3631
|
+
*/
|
|
3632
|
+
column: number | Column | string
|
|
3633
|
+
): null | Column;
|
|
3307
3634
|
/**
|
|
3308
3635
|
* Removes a message from the table.
|
|
3309
3636
|
*/
|
|
@@ -3329,7 +3656,7 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3329
3656
|
* @since 1.124.0
|
|
3330
3657
|
* @experimental As of version 1.124.0.
|
|
3331
3658
|
*
|
|
3332
|
-
* @returns Reference to this
|
|
3659
|
+
* @returns Reference to this to allow method chaining
|
|
3333
3660
|
*/
|
|
3334
3661
|
setIgnoredFields(
|
|
3335
3662
|
/**
|
|
@@ -3667,9 +3994,8 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3667
3994
|
* Aggregate actions of the table.
|
|
3668
3995
|
*/
|
|
3669
3996
|
actions?:
|
|
3670
|
-
|
|
|
3671
|
-
|
|
|
3672
|
-
| Action
|
|
3997
|
+
| ITableActionOrGroup[]
|
|
3998
|
+
| ITableActionOrGroup
|
|
3673
3999
|
| AggregationBindingInfo
|
|
3674
4000
|
| `{${string}}`;
|
|
3675
4001
|
|
|
@@ -3682,9 +4008,8 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3682
4008
|
* Aggregate columns of the table.
|
|
3683
4009
|
*/
|
|
3684
4010
|
columns?:
|
|
3685
|
-
|
|
|
3686
|
-
|
|
|
3687
|
-
| Column
|
|
4011
|
+
| ITableColumn[]
|
|
4012
|
+
| ITableColumn
|
|
3688
4013
|
| AggregationBindingInfo
|
|
3689
4014
|
| `{${string}}`;
|
|
3690
4015
|
|
|
@@ -3829,66 +4154,29 @@ declare module "sap/fe/macros/VariantManagement" {
|
|
|
3829
4154
|
|
|
3830
4155
|
declare module "sap/fe/macros/chart/Action" {
|
|
3831
4156
|
import {
|
|
3832
|
-
default as
|
|
3833
|
-
$
|
|
3834
|
-
} from "sap/fe/macros/controls/
|
|
4157
|
+
default as BaseAction,
|
|
4158
|
+
$BaseActionSettings,
|
|
4159
|
+
} from "sap/fe/macros/controls/BaseAction";
|
|
3835
4160
|
|
|
3836
4161
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3837
4162
|
|
|
3838
4163
|
/**
|
|
3839
4164
|
* Definition of a custom action to be used in the chart toolbar
|
|
3840
4165
|
*/
|
|
3841
|
-
export default class Action extends
|
|
4166
|
+
export default class Action extends BaseAction {}
|
|
3842
4167
|
/**
|
|
3843
4168
|
* Describes the settings that can be provided to the Action constructor.
|
|
3844
4169
|
*/
|
|
3845
|
-
export interface $ActionSettings
|
|
3846
|
-
extends $BuildingBlockObjectPropertySettings {
|
|
3847
|
-
/**
|
|
3848
|
-
* Reference to the key of another action already displayed in the toolbar to properly place this one
|
|
3849
|
-
*/
|
|
3850
|
-
anchor?: string | PropertyBindingInfo;
|
|
3851
|
-
|
|
3852
|
-
/**
|
|
3853
|
-
* Enables or disables the action
|
|
3854
|
-
*/
|
|
3855
|
-
enabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3856
|
-
|
|
3857
|
-
/**
|
|
3858
|
-
* Unique identifier of the action
|
|
3859
|
-
*/
|
|
3860
|
-
key?: string | PropertyBindingInfo;
|
|
3861
|
-
|
|
3862
|
-
/**
|
|
3863
|
-
* Defines the overflow group of the action in the overflow toolbar.
|
|
3864
|
-
*/
|
|
3865
|
-
overflowGroup?: int | PropertyBindingInfo | `{${string}}`;
|
|
3866
|
-
|
|
3867
|
-
/**
|
|
3868
|
-
* Defines where this action should be placed relative to the defined anchor
|
|
3869
|
-
* Allowed values are `Before` and `After`
|
|
3870
|
-
*/
|
|
3871
|
-
placement?: string | PropertyBindingInfo;
|
|
3872
|
-
|
|
4170
|
+
export interface $ActionSettings extends $BaseActionSettings {
|
|
3873
4171
|
/**
|
|
3874
4172
|
* Event handler to be called when the user chooses the action
|
|
3875
4173
|
*/
|
|
3876
4174
|
press?: string | PropertyBindingInfo;
|
|
3877
4175
|
|
|
3878
|
-
/**
|
|
3879
|
-
* Defines the priority of the action in the overflow toolbar.
|
|
3880
|
-
*/
|
|
3881
|
-
priority?: string | PropertyBindingInfo;
|
|
3882
|
-
|
|
3883
4176
|
/**
|
|
3884
4177
|
* Defines if the action requires a selection.
|
|
3885
4178
|
*/
|
|
3886
4179
|
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3887
|
-
|
|
3888
|
-
/**
|
|
3889
|
-
* The text that will be displayed for this action
|
|
3890
|
-
*/
|
|
3891
|
-
text?: string | PropertyBindingInfo;
|
|
3892
4180
|
}
|
|
3893
4181
|
}
|
|
3894
4182
|
|
|
@@ -4315,7 +4603,7 @@ declare module "sap/fe/macros/chart/Chart" {
|
|
|
4315
4603
|
| `{${string}}`;
|
|
4316
4604
|
|
|
4317
4605
|
/**
|
|
4318
|
-
*
|
|
4606
|
+
* ID of the FilterBar building block associated with the chart.
|
|
4319
4607
|
*/
|
|
4320
4608
|
filterBar?: Control | string;
|
|
4321
4609
|
|
|
@@ -4373,6 +4661,89 @@ declare module "sap/fe/macros/chart/OverflowGroup" {
|
|
|
4373
4661
|
}
|
|
4374
4662
|
}
|
|
4375
4663
|
|
|
4664
|
+
declare module "sap/fe/macros/controls/BaseAction" {
|
|
4665
|
+
import {
|
|
4666
|
+
default as BuildingBlockObjectProperty,
|
|
4667
|
+
$BuildingBlockObjectPropertySettings,
|
|
4668
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
4669
|
+
|
|
4670
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4671
|
+
|
|
4672
|
+
/**
|
|
4673
|
+
* Base class for Action building blocks used across different UI areas, such as Table and Chart.
|
|
4674
|
+
* Contains common properties shared by all action types.
|
|
4675
|
+
*/
|
|
4676
|
+
export default class BaseAction
|
|
4677
|
+
extends BuildingBlockObjectProperty
|
|
4678
|
+
implements
|
|
4679
|
+
/* was: sap.fe.core.converters.controls.Common.Action.BaseActionType */ Object
|
|
4680
|
+
{
|
|
4681
|
+
__implements__sap_fe_core_converters_controls_Common_Action_BaseActionType: boolean;
|
|
4682
|
+
}
|
|
4683
|
+
/**
|
|
4684
|
+
* Describes the settings that can be provided to the BaseAction constructor.
|
|
4685
|
+
*/
|
|
4686
|
+
export interface $BaseActionSettings
|
|
4687
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
4688
|
+
/**
|
|
4689
|
+
* Reference to the key of another action already displayed in the toolbar to properly place this one
|
|
4690
|
+
*/
|
|
4691
|
+
anchor?: string | PropertyBindingInfo;
|
|
4692
|
+
|
|
4693
|
+
/**
|
|
4694
|
+
* Enables or disables the action
|
|
4695
|
+
*/
|
|
4696
|
+
enabled?: any | PropertyBindingInfo | `{${string}}`;
|
|
4697
|
+
|
|
4698
|
+
/**
|
|
4699
|
+
* Defines the group of the action in the overflow toolbar.
|
|
4700
|
+
*/
|
|
4701
|
+
group?: int | PropertyBindingInfo | `{${string}}`;
|
|
4702
|
+
|
|
4703
|
+
/**
|
|
4704
|
+
* Displays the AI Icon on the action button.
|
|
4705
|
+
*/
|
|
4706
|
+
isAIOperation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4707
|
+
|
|
4708
|
+
/**
|
|
4709
|
+
* Unique identifier of the action
|
|
4710
|
+
*/
|
|
4711
|
+
key?: string | PropertyBindingInfo;
|
|
4712
|
+
|
|
4713
|
+
/**
|
|
4714
|
+
* Defines the overflow group of the action in the overflow toolbar.
|
|
4715
|
+
* Takes precedence over the group property when defined.
|
|
4716
|
+
*/
|
|
4717
|
+
overflowGroup?: int | PropertyBindingInfo | `{${string}}`;
|
|
4718
|
+
|
|
4719
|
+
/**
|
|
4720
|
+
* Defines where this action is placed relative to the defined anchor
|
|
4721
|
+
* Allowed values are `Before` and `After`
|
|
4722
|
+
*/
|
|
4723
|
+
placement?: string | PropertyBindingInfo;
|
|
4724
|
+
|
|
4725
|
+
/**
|
|
4726
|
+
* Defines the priority of the action in the overflow toolbar.
|
|
4727
|
+
*/
|
|
4728
|
+
priority?: string | PropertyBindingInfo;
|
|
4729
|
+
|
|
4730
|
+
/**
|
|
4731
|
+
* Defines if the action requires a selection.
|
|
4732
|
+
*/
|
|
4733
|
+
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4734
|
+
|
|
4735
|
+
/**
|
|
4736
|
+
* The text that is to be displayed for this action
|
|
4737
|
+
*/
|
|
4738
|
+
text?: any | PropertyBindingInfo | `{${string}}`;
|
|
4739
|
+
|
|
4740
|
+
/**
|
|
4741
|
+
* Determines whether the action is visible.
|
|
4742
|
+
*/
|
|
4743
|
+
visible?: any | PropertyBindingInfo | `{${string}}`;
|
|
4744
|
+
}
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4376
4747
|
declare module "sap/fe/macros/controls/BuildingBlockObjectProperty" {
|
|
4377
4748
|
import {
|
|
4378
4749
|
default as BuildingBlockBase,
|
|
@@ -4815,6 +5186,16 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
4815
5186
|
*/
|
|
4816
5187
|
fieldEditStyle?: string | PropertyBindingInfo;
|
|
4817
5188
|
|
|
5189
|
+
/**
|
|
5190
|
+
* Indicates whether the field has a situations indicator.
|
|
5191
|
+
*/
|
|
5192
|
+
hasSituationsIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5193
|
+
|
|
5194
|
+
/**
|
|
5195
|
+
* Property for defining how the avatar image fits within the given dimensions.
|
|
5196
|
+
*/
|
|
5197
|
+
imageFitType?: string | PropertyBindingInfo;
|
|
5198
|
+
|
|
4818
5199
|
/**
|
|
4819
5200
|
* Defines if and how the field measure will be displayed.
|
|
4820
5201
|
*
|
|
@@ -4879,12 +5260,12 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
4879
5260
|
/**
|
|
4880
5261
|
* Maximum number of lines for multiline texts in edit mode.
|
|
4881
5262
|
*/
|
|
4882
|
-
textLinesEdit?:
|
|
5263
|
+
textLinesEdit?: any | PropertyBindingInfo | `{${string}}`;
|
|
4883
5264
|
|
|
4884
5265
|
/**
|
|
4885
5266
|
* Maximum number of characters from the beginning of the text field that are shown initially.
|
|
4886
5267
|
*/
|
|
4887
|
-
textMaxCharactersDisplay?:
|
|
5268
|
+
textMaxCharactersDisplay?: any | PropertyBindingInfo | `{${string}}`;
|
|
4888
5269
|
|
|
4889
5270
|
/**
|
|
4890
5271
|
* Defines the maximum number of characters for the multiline text value.
|
|
@@ -4892,12 +5273,12 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
4892
5273
|
* If a multiline text exceeds the maximum number of allowed characters, the counter below the input field
|
|
4893
5274
|
* displays the exact number.
|
|
4894
5275
|
*/
|
|
4895
|
-
textMaxLength?:
|
|
5276
|
+
textMaxLength?: any | PropertyBindingInfo | `{${string}}`;
|
|
4896
5277
|
|
|
4897
5278
|
/**
|
|
4898
5279
|
* Maximum number of lines that multiline texts in edit mode can grow to.
|
|
4899
5280
|
*/
|
|
4900
|
-
textMaxLines?:
|
|
5281
|
+
textMaxLines?: any | PropertyBindingInfo | `{${string}}`;
|
|
4901
5282
|
}
|
|
4902
5283
|
}
|
|
4903
5284
|
|
|
@@ -4916,6 +5297,8 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
4916
5297
|
AggregationBindingInfo,
|
|
4917
5298
|
} from "sap/ui/base/ManagedObject";
|
|
4918
5299
|
|
|
5300
|
+
import FilterFieldOverride from "sap/fe/macros/filterBar/FilterFieldOverride";
|
|
5301
|
+
|
|
4919
5302
|
import FilterField from "sap/fe/macros/filterBar/FilterField";
|
|
4920
5303
|
|
|
4921
5304
|
/**
|
|
@@ -5315,6 +5698,11 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
5315
5698
|
*/
|
|
5316
5699
|
metaPath?: string | PropertyBindingInfo;
|
|
5317
5700
|
|
|
5701
|
+
/**
|
|
5702
|
+
* Comma separated list of navigation properties which are considered for filtering.
|
|
5703
|
+
*/
|
|
5704
|
+
navigationPropertiesForPersonalization?: string | PropertyBindingInfo;
|
|
5705
|
+
|
|
5318
5706
|
/**
|
|
5319
5707
|
* Handles the visibility of the 'Clear' button on the FilterBar.
|
|
5320
5708
|
*/
|
|
@@ -5334,7 +5722,8 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
5334
5722
|
* Aggregate filter fields of the FilterBar building block
|
|
5335
5723
|
*/
|
|
5336
5724
|
filterFields?:
|
|
5337
|
-
| FilterField
|
|
5725
|
+
| Array<FilterFieldOverride | FilterField>
|
|
5726
|
+
| FilterFieldOverride
|
|
5338
5727
|
| FilterField
|
|
5339
5728
|
| AggregationBindingInfo
|
|
5340
5729
|
| `{${string}}`;
|
|
@@ -5412,6 +5801,8 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5412
5801
|
AggregationBindingInfo,
|
|
5413
5802
|
} from "sap/ui/base/ManagedObject";
|
|
5414
5803
|
|
|
5804
|
+
import FilterFieldOverride from "sap/fe/macros/filterBar/FilterFieldOverride";
|
|
5805
|
+
|
|
5415
5806
|
import FilterField from "sap/fe/macros/filterBar/FilterField";
|
|
5416
5807
|
|
|
5417
5808
|
/**
|
|
@@ -5803,6 +6194,11 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5803
6194
|
*/
|
|
5804
6195
|
metaPath?: string | PropertyBindingInfo;
|
|
5805
6196
|
|
|
6197
|
+
/**
|
|
6198
|
+
* Comma separated list of navigation properties which are considered for filtering.
|
|
6199
|
+
*/
|
|
6200
|
+
navigationPropertiesForPersonalization?: string | PropertyBindingInfo;
|
|
6201
|
+
|
|
5806
6202
|
/**
|
|
5807
6203
|
* Handles the visibility of the 'Clear' button on the FilterBar.
|
|
5808
6204
|
*/
|
|
@@ -5822,7 +6218,8 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5822
6218
|
* Aggregate filter fields of the FilterBar building block
|
|
5823
6219
|
*/
|
|
5824
6220
|
filterFields?:
|
|
5825
|
-
| FilterField
|
|
6221
|
+
| Array<FilterFieldOverride | FilterField>
|
|
6222
|
+
| FilterFieldOverride
|
|
5826
6223
|
| FilterField
|
|
5827
6224
|
| AggregationBindingInfo
|
|
5828
6225
|
| `{${string}}`;
|
|
@@ -5947,6 +6344,52 @@ declare module "sap/fe/macros/filterBar/FilterField" {
|
|
|
5947
6344
|
}
|
|
5948
6345
|
}
|
|
5949
6346
|
|
|
6347
|
+
declare module "sap/fe/macros/filterBar/FilterFieldOverride" {
|
|
6348
|
+
import {
|
|
6349
|
+
default as BuildingBlockObjectProperty,
|
|
6350
|
+
$BuildingBlockObjectPropertySettings,
|
|
6351
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6352
|
+
|
|
6353
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6354
|
+
|
|
6355
|
+
/**
|
|
6356
|
+
* Definition of an override for the filter field to be used inside the FilterBar building block.
|
|
6357
|
+
*/
|
|
6358
|
+
export default class FilterFieldOverride extends BuildingBlockObjectProperty {}
|
|
6359
|
+
/**
|
|
6360
|
+
* Describes the settings that can be provided to the FilterFieldOverride constructor.
|
|
6361
|
+
*/
|
|
6362
|
+
export interface $FilterFieldOverrideSettings
|
|
6363
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
6364
|
+
/**
|
|
6365
|
+
* Reference to the key of another filter already displayed in the table to properly place this one.
|
|
6366
|
+
*/
|
|
6367
|
+
anchor?: string | PropertyBindingInfo;
|
|
6368
|
+
|
|
6369
|
+
/**
|
|
6370
|
+
* The filter field availability.
|
|
6371
|
+
* Allowed values are `Default`, `Adaptation`, and `Hidden`
|
|
6372
|
+
*/
|
|
6373
|
+
availability?: string | PropertyBindingInfo;
|
|
6374
|
+
|
|
6375
|
+
/**
|
|
6376
|
+
* Unique identifier of the filter field to be overridden.
|
|
6377
|
+
*/
|
|
6378
|
+
key?: string | PropertyBindingInfo;
|
|
6379
|
+
|
|
6380
|
+
/**
|
|
6381
|
+
* Defines where this filter is placed relative to the defined anchor.
|
|
6382
|
+
* Allowed values are `Before` and `After`
|
|
6383
|
+
*/
|
|
6384
|
+
placement?: string | PropertyBindingInfo;
|
|
6385
|
+
|
|
6386
|
+
/**
|
|
6387
|
+
* If set, the FilterField is marked as a mandatory field.
|
|
6388
|
+
*/
|
|
6389
|
+
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6390
|
+
}
|
|
6391
|
+
}
|
|
6392
|
+
|
|
5950
6393
|
declare module "sap/fe/macros/form/Form.block" {
|
|
5951
6394
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
5952
6395
|
|
|
@@ -5989,6 +6432,25 @@ declare module "sap/fe/macros/form/Form.block" {
|
|
|
5989
6432
|
*/
|
|
5990
6433
|
metaPath?: string | PropertyBindingInfo;
|
|
5991
6434
|
|
|
6435
|
+
/**
|
|
6436
|
+
* Filters the navigation properties that can be used by flexibility features.
|
|
6437
|
+
* This property allows you to specify which navigation properties are available
|
|
6438
|
+
* for flexibility operations such as adding custom fields.
|
|
6439
|
+
* You can use the asterisk (*) wildcard to include all navigation properties,
|
|
6440
|
+
* or specify individual navigation property names to restrict the available options.
|
|
6441
|
+
* Example:
|
|
6442
|
+
* Allow all navigation properties: navigationPropertiesForAdaptationDialog: ["*"]
|
|
6443
|
+
* Example:
|
|
6444
|
+
* Allow only a specific navigation property: navigationPropertiesForAdaptationDialog: ["Customer/Name"]
|
|
6445
|
+
* Example:
|
|
6446
|
+
* Allow multiple specific navigation properties based on a wildcard: navigationPropertiesForAdaptationDialog:
|
|
6447
|
+
* ["Cust*\/Name"]
|
|
6448
|
+
*/
|
|
6449
|
+
navigationPropertiesForAdaptationDialog?:
|
|
6450
|
+
| string[]
|
|
6451
|
+
| PropertyBindingInfo
|
|
6452
|
+
| `{${string}}`;
|
|
6453
|
+
|
|
5992
6454
|
/**
|
|
5993
6455
|
* The title of the form control.
|
|
5994
6456
|
*/
|
|
@@ -6001,12 +6463,154 @@ declare module "sap/fe/macros/form/Form.block" {
|
|
|
6001
6463
|
}
|
|
6002
6464
|
}
|
|
6003
6465
|
|
|
6466
|
+
declare module "sap/fe/macros/form/FormLayoutOptions" {
|
|
6467
|
+
import {
|
|
6468
|
+
default as BuildingBlockObjectProperty,
|
|
6469
|
+
$BuildingBlockObjectPropertySettings,
|
|
6470
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6471
|
+
|
|
6472
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6473
|
+
|
|
6474
|
+
/**
|
|
6475
|
+
* Configuration options for the Form layout
|
|
6476
|
+
*/
|
|
6477
|
+
export default class FormLayoutOptions extends BuildingBlockObjectProperty {}
|
|
6478
|
+
/**
|
|
6479
|
+
* Describes the settings that can be provided to the FormLayoutOptions constructor.
|
|
6480
|
+
*/
|
|
6481
|
+
export interface $FormLayoutOptionsSettings
|
|
6482
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
6483
|
+
/**
|
|
6484
|
+
* If set, the usage of `labelSpanL` and `labelSpanXL` is dependent on the size of the used column.
|
|
6485
|
+
* If the space is less than 600px, for example, two columns are used, `labelSpanM` is used instead.
|
|
6486
|
+
* Applicable for ResponsiveGridLayout type
|
|
6487
|
+
*/
|
|
6488
|
+
adjustLabelSpan?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6489
|
+
|
|
6490
|
+
/**
|
|
6491
|
+
* Defines the background color of the form
|
|
6492
|
+
*/
|
|
6493
|
+
backgroundDesign?: string | PropertyBindingInfo;
|
|
6494
|
+
|
|
6495
|
+
/**
|
|
6496
|
+
* The breakpoint (in pixels) between L size and XL size for the ResponsiveGridLayout
|
|
6497
|
+
* Applicable for ResponsiveGridLayout type
|
|
6498
|
+
*/
|
|
6499
|
+
breakpointL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6500
|
+
|
|
6501
|
+
/**
|
|
6502
|
+
* The breakpoint (in pixels) between M size and L size for the ResponsiveGridLayout
|
|
6503
|
+
* Applicable for ResponsiveGridLayout type
|
|
6504
|
+
*/
|
|
6505
|
+
breakpointM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6506
|
+
|
|
6507
|
+
/**
|
|
6508
|
+
* The breakpoint (in pixels) between XL size and XXL size for the ResponsiveGridLayout
|
|
6509
|
+
* Applicable for ResponsiveGridLayout type
|
|
6510
|
+
*/
|
|
6511
|
+
breakpointXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6512
|
+
|
|
6513
|
+
/**
|
|
6514
|
+
* Number of columns for L size
|
|
6515
|
+
* Applicable for ColumnLayout type
|
|
6516
|
+
*/
|
|
6517
|
+
columnsL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6518
|
+
|
|
6519
|
+
/**
|
|
6520
|
+
* Number of columns for M size
|
|
6521
|
+
* Applicable for ColumnLayout type
|
|
6522
|
+
*/
|
|
6523
|
+
columnsM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6524
|
+
|
|
6525
|
+
/**
|
|
6526
|
+
* Number of columns for XL size
|
|
6527
|
+
* Applicable for ColumnLayout type
|
|
6528
|
+
*/
|
|
6529
|
+
columnsXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6530
|
+
|
|
6531
|
+
/**
|
|
6532
|
+
* Number of grid cells that are empty at the end of a row in large screen size
|
|
6533
|
+
* Applicable for ColumnLayout type
|
|
6534
|
+
*/
|
|
6535
|
+
emptyCellsLarge?: int | PropertyBindingInfo | `{${string}}`;
|
|
6536
|
+
|
|
6537
|
+
/**
|
|
6538
|
+
* Number of empty grid cells that are added on the end of each line in L size
|
|
6539
|
+
* Applicable for ResponsiveGridLayout type
|
|
6540
|
+
*/
|
|
6541
|
+
emptySpanL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6542
|
+
|
|
6543
|
+
/**
|
|
6544
|
+
* Number of empty grid cells that are added on the end of each line in M size
|
|
6545
|
+
* Applicable for ResponsiveGridLayout type
|
|
6546
|
+
*/
|
|
6547
|
+
emptySpanM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6548
|
+
|
|
6549
|
+
/**
|
|
6550
|
+
* Number of empty grid cells that are added on the end of each line in S size
|
|
6551
|
+
* Applicable for ResponsiveGridLayout type
|
|
6552
|
+
*/
|
|
6553
|
+
emptySpanS?: int | PropertyBindingInfo | `{${string}}`;
|
|
6554
|
+
|
|
6555
|
+
/**
|
|
6556
|
+
* Number of empty grid cells that are added on the end of each line in XL size
|
|
6557
|
+
* Applicable for ResponsiveGridLayout type
|
|
6558
|
+
*/
|
|
6559
|
+
emptySpanXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6560
|
+
|
|
6561
|
+
/**
|
|
6562
|
+
* Number of grid cells that are reserved for the labels in large screen size
|
|
6563
|
+
* Applicable for ColumnLayout type
|
|
6564
|
+
*/
|
|
6565
|
+
labelCellsLarge?: int | PropertyBindingInfo | `{${string}}`;
|
|
6566
|
+
|
|
6567
|
+
/**
|
|
6568
|
+
* Number of grid cells that are used for the labels in L size
|
|
6569
|
+
* Applicable for ResponsiveGridLayout type
|
|
6570
|
+
*/
|
|
6571
|
+
labelSpanL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6572
|
+
|
|
6573
|
+
/**
|
|
6574
|
+
* Number of grid cells that are used for the labels in M size
|
|
6575
|
+
* Applicable for ResponsiveGridLayout type
|
|
6576
|
+
*/
|
|
6577
|
+
labelSpanM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6578
|
+
|
|
6579
|
+
/**
|
|
6580
|
+
* Number of grid cells that are used for the labels in S size
|
|
6581
|
+
* Applicable for ResponsiveGridLayout type
|
|
6582
|
+
*/
|
|
6583
|
+
labelSpanS?: int | PropertyBindingInfo | `{${string}}`;
|
|
6584
|
+
|
|
6585
|
+
/**
|
|
6586
|
+
* Number of grid cells that are used for the labels in XL size
|
|
6587
|
+
* Applicable for ResponsiveGridLayout type
|
|
6588
|
+
*/
|
|
6589
|
+
labelSpanXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6590
|
+
|
|
6591
|
+
/**
|
|
6592
|
+
* If set, a single container has the full size of the parent container.
|
|
6593
|
+
* Otherwise, the container size is determined by the number of columns and the spacing between the columns.
|
|
6594
|
+
* Applicable for ResponsiveGridLayout type
|
|
6595
|
+
*/
|
|
6596
|
+
singleContainerFullSize?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6597
|
+
|
|
6598
|
+
/**
|
|
6599
|
+
* The layout type to be used for the form
|
|
6600
|
+
*/
|
|
6601
|
+
type?: string | PropertyBindingInfo;
|
|
6602
|
+
}
|
|
6603
|
+
}
|
|
6604
|
+
|
|
6004
6605
|
declare module "sap/fe/macros/microchart/MicroChart" {
|
|
6005
6606
|
import {
|
|
6006
6607
|
default as MicroChart1,
|
|
6007
6608
|
$MicroChartSettings as $MicroChartSettings1,
|
|
6609
|
+
MicroChart$TitlePressEventParameters as MicroChart$TitlePressEventParameters1,
|
|
6008
6610
|
} from "sap/fe/macros/MicroChart";
|
|
6009
6611
|
|
|
6612
|
+
import Event from "sap/ui/base/Event";
|
|
6613
|
+
|
|
6010
6614
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6011
6615
|
|
|
6012
6616
|
/**
|
|
@@ -6034,6 +6638,73 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6034
6638
|
* @experimental
|
|
6035
6639
|
*/
|
|
6036
6640
|
export default class MicroChart extends MicroChart1 {
|
|
6641
|
+
/**
|
|
6642
|
+
*
|
|
6643
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6644
|
+
* to allow method chaining
|
|
6645
|
+
*/
|
|
6646
|
+
attachTitlePress(
|
|
6647
|
+
/**
|
|
6648
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
6649
|
+
* object when firing the event
|
|
6650
|
+
*/
|
|
6651
|
+
oData: object,
|
|
6652
|
+
/**
|
|
6653
|
+
* The function to be called when the event occurs
|
|
6654
|
+
*/
|
|
6655
|
+
fnFunction: (p1: Event) => void,
|
|
6656
|
+
/**
|
|
6657
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6658
|
+
*/
|
|
6659
|
+
oListener?: object
|
|
6660
|
+
): this;
|
|
6661
|
+
/**
|
|
6662
|
+
*
|
|
6663
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6664
|
+
* to allow method chaining
|
|
6665
|
+
*/
|
|
6666
|
+
attachTitlePress(
|
|
6667
|
+
/**
|
|
6668
|
+
* The function to be called when the event occurs
|
|
6669
|
+
*/
|
|
6670
|
+
fnFunction: (p1: Event) => void,
|
|
6671
|
+
/**
|
|
6672
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6673
|
+
*/
|
|
6674
|
+
oListener?: object
|
|
6675
|
+
): this;
|
|
6676
|
+
/**
|
|
6677
|
+
*
|
|
6678
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6679
|
+
* to allow method chaining
|
|
6680
|
+
*/
|
|
6681
|
+
detachTitlePress(
|
|
6682
|
+
/**
|
|
6683
|
+
* The function to be called when the event occurs
|
|
6684
|
+
*/
|
|
6685
|
+
fnFunction: (p1: Event) => void,
|
|
6686
|
+
/**
|
|
6687
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6688
|
+
*/
|
|
6689
|
+
oListener?: object
|
|
6690
|
+
): this;
|
|
6691
|
+
/**
|
|
6692
|
+
* Fires event titlePress
|
|
6693
|
+
* to attached listeners.
|
|
6694
|
+
*
|
|
6695
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6696
|
+
*
|
|
6697
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6698
|
+
* to allow method chaining
|
|
6699
|
+
*/
|
|
6700
|
+
fireTitlePress(
|
|
6701
|
+
/**
|
|
6702
|
+
* The parameters to pass along with the event.
|
|
6703
|
+
* See {@link types.EventHandler>} for the set of parameters that are
|
|
6704
|
+
* expected by the event handlers.
|
|
6705
|
+
*/
|
|
6706
|
+
mParameters?: {}
|
|
6707
|
+
): this;
|
|
6037
6708
|
/**
|
|
6038
6709
|
* Gets current value of property contextPath.
|
|
6039
6710
|
*
|
|
@@ -6048,6 +6719,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6048
6719
|
* @returns Value of property `hideOnNoData`
|
|
6049
6720
|
*/
|
|
6050
6721
|
getHideOnNoData(): boolean;
|
|
6722
|
+
/**
|
|
6723
|
+
* Gets current value of property linkAriaText.
|
|
6724
|
+
*
|
|
6725
|
+
*
|
|
6726
|
+
* @returns Value of property `linkAriaText`
|
|
6727
|
+
*/
|
|
6728
|
+
getLinkAriaText(): string;
|
|
6051
6729
|
/**
|
|
6052
6730
|
* Gets current value of property metaPath.
|
|
6053
6731
|
*
|
|
@@ -6069,6 +6747,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6069
6747
|
* @returns Value of property `size`
|
|
6070
6748
|
*/
|
|
6071
6749
|
getSize(): string;
|
|
6750
|
+
/**
|
|
6751
|
+
* Gets current value of property titleAsLink.
|
|
6752
|
+
*
|
|
6753
|
+
*
|
|
6754
|
+
* @returns Value of property `titleAsLink`
|
|
6755
|
+
*/
|
|
6756
|
+
getTitleAsLink(): boolean;
|
|
6072
6757
|
/**
|
|
6073
6758
|
* Gets current value of property contextPath.
|
|
6074
6759
|
*
|
|
@@ -6083,6 +6768,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6083
6768
|
* @returns Value of property `hideOnNoData`
|
|
6084
6769
|
*/
|
|
6085
6770
|
setHideOnNoData(): boolean;
|
|
6771
|
+
/**
|
|
6772
|
+
* Gets current value of property linkAriaText.
|
|
6773
|
+
*
|
|
6774
|
+
*
|
|
6775
|
+
* @returns Value of property `linkAriaText`
|
|
6776
|
+
*/
|
|
6777
|
+
setLinkAriaText(): string;
|
|
6086
6778
|
/**
|
|
6087
6779
|
* Gets current value of property metaPath.
|
|
6088
6780
|
*
|
|
@@ -6104,6 +6796,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6104
6796
|
* @returns Value of property `size`
|
|
6105
6797
|
*/
|
|
6106
6798
|
setSize(): string;
|
|
6799
|
+
/**
|
|
6800
|
+
* Gets current value of property titleAsLink.
|
|
6801
|
+
*
|
|
6802
|
+
*
|
|
6803
|
+
* @returns Value of property `titleAsLink`
|
|
6804
|
+
*/
|
|
6805
|
+
setTitleAsLink(): boolean;
|
|
6107
6806
|
}
|
|
6108
6807
|
/**
|
|
6109
6808
|
* Describes the settings that can be provided to the MicroChart constructor.
|
|
@@ -6122,6 +6821,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6122
6821
|
*/
|
|
6123
6822
|
hideOnNoData?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6124
6823
|
|
|
6824
|
+
/**
|
|
6825
|
+
* Custom ARIA text for the title link.
|
|
6826
|
+
* This property is only used when titleAsLink is set to true.
|
|
6827
|
+
* If not provided, default ARIA text based on the navigationType is used.
|
|
6828
|
+
*/
|
|
6829
|
+
linkAriaText?: string | PropertyBindingInfo;
|
|
6830
|
+
|
|
6125
6831
|
/**
|
|
6126
6832
|
* Metadata path to the MicroChart.
|
|
6127
6833
|
*/
|
|
@@ -6137,7 +6843,34 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6137
6843
|
* Size of the MicroChart
|
|
6138
6844
|
*/
|
|
6139
6845
|
size?: string | PropertyBindingInfo;
|
|
6846
|
+
|
|
6847
|
+
/**
|
|
6848
|
+
* Determines whether the micro chart title is displayed as a link or as a text.
|
|
6849
|
+
* When set to true, the title is rendered as a clickable link.
|
|
6850
|
+
*/
|
|
6851
|
+
titleAsLink?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6852
|
+
|
|
6853
|
+
/**
|
|
6854
|
+
* Event fired when the micro chart title link is pressed.
|
|
6855
|
+
* The event provides the binding context of the micro chart in the event parameters.
|
|
6856
|
+
* This event is only fired when titleAsLink is set to true.
|
|
6857
|
+
*/
|
|
6858
|
+
titlePress?: (oEvent: Event) => void;
|
|
6140
6859
|
}
|
|
6860
|
+
|
|
6861
|
+
/**
|
|
6862
|
+
* Parameters of the MicroChart#titlePress event.
|
|
6863
|
+
*/
|
|
6864
|
+
export interface MicroChart$TitlePressEventParameters
|
|
6865
|
+
extends MicroChart$TitlePressEventParameters1 {}
|
|
6866
|
+
|
|
6867
|
+
/**
|
|
6868
|
+
* Event object of the MicroChart#titlePress event.
|
|
6869
|
+
*/
|
|
6870
|
+
export type MicroChart$TitlePressEvent = Event<
|
|
6871
|
+
MicroChart$TitlePressEventParameters,
|
|
6872
|
+
MicroChart
|
|
6873
|
+
>;
|
|
6141
6874
|
}
|
|
6142
6875
|
|
|
6143
6876
|
declare module "sap/fe/macros/richtexteditor/ButtonGroup" {
|
|
@@ -6225,9 +6958,13 @@ declare module "sap/fe/macros/share/ShareOptions" {
|
|
|
6225
6958
|
|
|
6226
6959
|
declare module "sap/fe/macros/table/Action" {
|
|
6227
6960
|
import {
|
|
6228
|
-
default as
|
|
6229
|
-
$
|
|
6230
|
-
} from "sap/fe/macros/controls/
|
|
6961
|
+
default as BaseAction,
|
|
6962
|
+
$BaseActionSettings,
|
|
6963
|
+
} from "sap/fe/macros/controls/BaseAction";
|
|
6964
|
+
|
|
6965
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6966
|
+
|
|
6967
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6231
6968
|
|
|
6232
6969
|
import Event from "sap/ui/base/Event";
|
|
6233
6970
|
|
|
@@ -6236,7 +6973,13 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6236
6973
|
/**
|
|
6237
6974
|
* Definition of a custom action to be used inside the table toolbar
|
|
6238
6975
|
*/
|
|
6239
|
-
export default class Action
|
|
6976
|
+
export default class Action
|
|
6977
|
+
extends BaseAction
|
|
6978
|
+
implements ITableActionOrGroup, ITableAction
|
|
6979
|
+
{
|
|
6980
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
6981
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
6982
|
+
|
|
6240
6983
|
/**
|
|
6241
6984
|
*
|
|
6242
6985
|
* @returns Reference to sap.fe.macros.table.Action
|
|
@@ -6308,13 +7051,7 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6308
7051
|
/**
|
|
6309
7052
|
* Describes the settings that can be provided to the Action constructor.
|
|
6310
7053
|
*/
|
|
6311
|
-
export interface $ActionSettings
|
|
6312
|
-
extends $BuildingBlockObjectPropertySettings {
|
|
6313
|
-
/**
|
|
6314
|
-
* Reference to the key of another action already displayed in the toolbar to properly place this one
|
|
6315
|
-
*/
|
|
6316
|
-
anchor?: string | PropertyBindingInfo;
|
|
6317
|
-
|
|
7054
|
+
export interface $ActionSettings extends $BaseActionSettings {
|
|
6318
7055
|
/**
|
|
6319
7056
|
* Determines the shortcut combination to trigger the action
|
|
6320
7057
|
*/
|
|
@@ -6331,42 +7068,11 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6331
7068
|
*/
|
|
6332
7069
|
enableOnSelect?: string | PropertyBindingInfo;
|
|
6333
7070
|
|
|
6334
|
-
/**
|
|
6335
|
-
* Displays the AI Icon on the action button.
|
|
6336
|
-
*/
|
|
6337
|
-
isAIOperation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6338
|
-
|
|
6339
|
-
/**
|
|
6340
|
-
* Unique identifier of the action
|
|
6341
|
-
*/
|
|
6342
|
-
key?: string | PropertyBindingInfo;
|
|
6343
|
-
|
|
6344
|
-
/**
|
|
6345
|
-
* Defines the overflow group of the action in the overflow toolbar.
|
|
6346
|
-
*/
|
|
6347
|
-
overflowGroup?: int | PropertyBindingInfo | `{${string}}`;
|
|
6348
|
-
|
|
6349
|
-
/**
|
|
6350
|
-
* Defines where this action should be placed relative to the defined anchor
|
|
6351
|
-
* Allowed values are `Before` and `After`
|
|
6352
|
-
*/
|
|
6353
|
-
placement?: string | PropertyBindingInfo;
|
|
6354
|
-
|
|
6355
|
-
/**
|
|
6356
|
-
* Defines the priority of the action in the overflow toolbar.
|
|
6357
|
-
*/
|
|
6358
|
-
priority?: string | PropertyBindingInfo;
|
|
6359
|
-
|
|
6360
7071
|
/**
|
|
6361
7072
|
* Defines if the action requires a selection.
|
|
6362
7073
|
*/
|
|
6363
7074
|
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6364
7075
|
|
|
6365
|
-
/**
|
|
6366
|
-
* The text that will be displayed for this action
|
|
6367
|
-
*/
|
|
6368
|
-
text?: string | PropertyBindingInfo;
|
|
6369
|
-
|
|
6370
7076
|
/**
|
|
6371
7077
|
* Determines whether the action is visible.
|
|
6372
7078
|
*/
|
|
@@ -6395,19 +7101,24 @@ declare module "sap/fe/macros/table/ActionGroup" {
|
|
|
6395
7101
|
$BuildingBlockObjectPropertySettings,
|
|
6396
7102
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6397
7103
|
|
|
7104
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7105
|
+
|
|
6398
7106
|
import {
|
|
6399
7107
|
PropertyBindingInfo,
|
|
6400
7108
|
AggregationBindingInfo,
|
|
6401
7109
|
} from "sap/ui/base/ManagedObject";
|
|
6402
7110
|
|
|
6403
|
-
import
|
|
6404
|
-
|
|
6405
|
-
import Action from "sap/fe/macros/table/Action";
|
|
7111
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6406
7112
|
|
|
6407
7113
|
/**
|
|
6408
7114
|
* Definition of a custom ActionGroup to be used inside the table toolbar
|
|
6409
7115
|
*/
|
|
6410
|
-
export default class ActionGroup
|
|
7116
|
+
export default class ActionGroup
|
|
7117
|
+
extends BuildingBlockObjectProperty
|
|
7118
|
+
implements ITableActionOrGroup
|
|
7119
|
+
{
|
|
7120
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7121
|
+
}
|
|
6411
7122
|
/**
|
|
6412
7123
|
* Describes the settings that can be provided to the ActionGroup constructor.
|
|
6413
7124
|
*/
|
|
@@ -6454,9 +7165,8 @@ declare module "sap/fe/macros/table/ActionGroup" {
|
|
|
6454
7165
|
* Determines the nested actions
|
|
6455
7166
|
*/
|
|
6456
7167
|
actions?:
|
|
6457
|
-
|
|
|
6458
|
-
|
|
|
6459
|
-
| Action
|
|
7168
|
+
| ITableAction[]
|
|
7169
|
+
| ITableAction
|
|
6460
7170
|
| AggregationBindingInfo
|
|
6461
7171
|
| `{${string}}`;
|
|
6462
7172
|
}
|
|
@@ -6468,19 +7178,24 @@ declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
|
6468
7178
|
$BuildingBlockObjectPropertySettings,
|
|
6469
7179
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6470
7180
|
|
|
7181
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7182
|
+
|
|
6471
7183
|
import {
|
|
6472
7184
|
PropertyBindingInfo,
|
|
6473
7185
|
AggregationBindingInfo,
|
|
6474
7186
|
} from "sap/ui/base/ManagedObject";
|
|
6475
7187
|
|
|
6476
|
-
import
|
|
6477
|
-
|
|
6478
|
-
import Action from "sap/fe/macros/table/Action";
|
|
7188
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6479
7189
|
|
|
6480
7190
|
/**
|
|
6481
7191
|
* Definition of an action group override to be used inside the Table building block.
|
|
6482
7192
|
*/
|
|
6483
|
-
export default class ActionGroupOverride
|
|
7193
|
+
export default class ActionGroupOverride
|
|
7194
|
+
extends BuildingBlockObjectProperty
|
|
7195
|
+
implements ITableActionOrGroup
|
|
7196
|
+
{
|
|
7197
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7198
|
+
}
|
|
6484
7199
|
/**
|
|
6485
7200
|
* Describes the settings that can be provided to the ActionGroupOverride constructor.
|
|
6486
7201
|
*/
|
|
@@ -6507,9 +7222,8 @@ declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
|
6507
7222
|
* Determines the nested actions
|
|
6508
7223
|
*/
|
|
6509
7224
|
actions?:
|
|
6510
|
-
|
|
|
6511
|
-
|
|
|
6512
|
-
| Action
|
|
7225
|
+
| ITableAction[]
|
|
7226
|
+
| ITableAction
|
|
6513
7227
|
| AggregationBindingInfo
|
|
6514
7228
|
| `{${string}}`;
|
|
6515
7229
|
}
|
|
@@ -6521,12 +7235,22 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
6521
7235
|
$BuildingBlockObjectPropertySettings,
|
|
6522
7236
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6523
7237
|
|
|
7238
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7239
|
+
|
|
7240
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
7241
|
+
|
|
6524
7242
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6525
7243
|
|
|
6526
7244
|
/**
|
|
6527
7245
|
* Definition of an override for the action to be used inside the Table building block.
|
|
6528
7246
|
*/
|
|
6529
|
-
export default class ActionOverride
|
|
7247
|
+
export default class ActionOverride
|
|
7248
|
+
extends BuildingBlockObjectProperty
|
|
7249
|
+
implements ITableActionOrGroup, ITableAction
|
|
7250
|
+
{
|
|
7251
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7252
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7253
|
+
}
|
|
6530
7254
|
/**
|
|
6531
7255
|
* Describes the settings that can be provided to the ActionOverride constructor.
|
|
6532
7256
|
*/
|
|
@@ -6547,6 +7271,12 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
6547
7271
|
*/
|
|
6548
7272
|
defaultValuesFunction?: string | PropertyBindingInfo;
|
|
6549
7273
|
|
|
7274
|
+
/**
|
|
7275
|
+
* Disables strict handling for this action.
|
|
7276
|
+
* When true, the action does not use strict message handling.
|
|
7277
|
+
*/
|
|
7278
|
+
disableStrictHandling?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7279
|
+
|
|
6550
7280
|
/**
|
|
6551
7281
|
* Determines if the auto scroll is enabled after executing the action.
|
|
6552
7282
|
*/
|
|
@@ -6621,6 +7351,8 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
6621
7351
|
$BuildingBlockObjectPropertySettings,
|
|
6622
7352
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6623
7353
|
|
|
7354
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7355
|
+
|
|
6624
7356
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6625
7357
|
|
|
6626
7358
|
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
@@ -6629,7 +7361,12 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
6629
7361
|
* Definition of a custom column to be used inside the table.
|
|
6630
7362
|
* The template for the column has to be provided as the default aggregation
|
|
6631
7363
|
*/
|
|
6632
|
-
export default class Column
|
|
7364
|
+
export default class Column
|
|
7365
|
+
extends BuildingBlockObjectProperty
|
|
7366
|
+
implements ITableColumn
|
|
7367
|
+
{
|
|
7368
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7369
|
+
}
|
|
6633
7370
|
/**
|
|
6634
7371
|
* Describes the settings that can be provided to the Column constructor.
|
|
6635
7372
|
*/
|
|
@@ -6799,6 +7536,8 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6799
7536
|
$BuildingBlockObjectPropertySettings,
|
|
6800
7537
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6801
7538
|
|
|
7539
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7540
|
+
|
|
6802
7541
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6803
7542
|
|
|
6804
7543
|
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
@@ -6806,7 +7545,12 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6806
7545
|
/**
|
|
6807
7546
|
* Definition of an override for the column to be used inside the Table building block.
|
|
6808
7547
|
*/
|
|
6809
|
-
export default class ColumnOverride
|
|
7548
|
+
export default class ColumnOverride
|
|
7549
|
+
extends BuildingBlockObjectProperty
|
|
7550
|
+
implements ITableColumn
|
|
7551
|
+
{
|
|
7552
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7553
|
+
}
|
|
6810
7554
|
/**
|
|
6811
7555
|
* Describes the settings that can be provided to the ColumnOverride constructor.
|
|
6812
7556
|
*/
|
|
@@ -6857,6 +7601,66 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6857
7601
|
}
|
|
6858
7602
|
}
|
|
6859
7603
|
|
|
7604
|
+
declare module "sap/fe/macros/table/ITableAction" {
|
|
7605
|
+
/**
|
|
7606
|
+
* Interface for controls that can be used as actions in a group inside the {@link sap.fe.macros.Table }
|
|
7607
|
+
* building block.
|
|
7608
|
+
* This interface is implemented by:
|
|
7609
|
+
*
|
|
7610
|
+
* - {@link sap.fe.macros.table.Action }
|
|
7611
|
+
*
|
|
7612
|
+
* - {@link sap.fe.macros.table.ActionOverride }
|
|
7613
|
+
*
|
|
7614
|
+
*
|
|
7615
|
+
*
|
|
7616
|
+
* @since 1.145.0
|
|
7617
|
+
*/
|
|
7618
|
+
export interface ITableAction {
|
|
7619
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7620
|
+
}
|
|
7621
|
+
}
|
|
7622
|
+
|
|
7623
|
+
declare module "sap/fe/macros/table/ITableActionOrGroup" {
|
|
7624
|
+
/**
|
|
7625
|
+
* Interface for controls that can be used as actions or action groups inside the {@link sap.fe.macros.Table }
|
|
7626
|
+
* building block.
|
|
7627
|
+
* This interface is implemented by:
|
|
7628
|
+
*
|
|
7629
|
+
* - {@link sap.fe.macros.table.Action }
|
|
7630
|
+
*
|
|
7631
|
+
* - {@link sap.fe.macros.table.ActionOverride }
|
|
7632
|
+
*
|
|
7633
|
+
* - {@link sap.fe.macros.table.ActionGroup }
|
|
7634
|
+
*
|
|
7635
|
+
* - {@link sap.fe.macros.table.ActionGroupOverride }
|
|
7636
|
+
*
|
|
7637
|
+
*
|
|
7638
|
+
*
|
|
7639
|
+
* @since 1.145.0
|
|
7640
|
+
*/
|
|
7641
|
+
export interface ITableActionOrGroup {
|
|
7642
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7643
|
+
}
|
|
7644
|
+
}
|
|
7645
|
+
|
|
7646
|
+
declare module "sap/fe/macros/table/ITableColumn" {
|
|
7647
|
+
/**
|
|
7648
|
+
* Interface for controls that can be used as columns inside the {@link sap.fe.macros.Table } building block.
|
|
7649
|
+
* This interface is implemented by:
|
|
7650
|
+
*
|
|
7651
|
+
* - {@link sap.fe.macros.table.Column }
|
|
7652
|
+
*
|
|
7653
|
+
* - {@link sap.fe.macros.table.ColumnOverride }
|
|
7654
|
+
*
|
|
7655
|
+
*
|
|
7656
|
+
*
|
|
7657
|
+
* @since 1.145.0
|
|
7658
|
+
*/
|
|
7659
|
+
export interface ITableColumn {
|
|
7660
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7661
|
+
}
|
|
7662
|
+
}
|
|
7663
|
+
|
|
6860
7664
|
declare module "sap/fe/macros/table/MassEdit" {
|
|
6861
7665
|
import {
|
|
6862
7666
|
default as BuildingBlockObjectProperty,
|
|
@@ -6985,11 +7789,11 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
6985
7789
|
|
|
6986
7790
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
6987
7791
|
|
|
6988
|
-
import
|
|
7792
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6989
7793
|
|
|
6990
7794
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
6991
7795
|
|
|
6992
|
-
import
|
|
7796
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
6993
7797
|
|
|
6994
7798
|
import TableCreationOptions from "sap/fe/macros/table/TableCreationOptions";
|
|
6995
7799
|
|
|
@@ -7030,17 +7834,15 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7030
7834
|
* usage.
|
|
7031
7835
|
*
|
|
7032
7836
|
*
|
|
7033
|
-
* @
|
|
7034
|
-
* @experimental As of version 1.124.0.
|
|
7837
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table} instead
|
|
7035
7838
|
*/
|
|
7036
7839
|
export default class Table extends Table1 {
|
|
7037
7840
|
/**
|
|
7038
7841
|
* Adds an action to the table.
|
|
7039
7842
|
*
|
|
7040
|
-
* @
|
|
7041
|
-
* @experimental As of version 1.124.0.
|
|
7843
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.addAction} instead
|
|
7042
7844
|
*
|
|
7043
|
-
* @returns Reference to this
|
|
7845
|
+
* @returns Reference to this to allow method chaining
|
|
7044
7846
|
*/
|
|
7045
7847
|
addAction(
|
|
7046
7848
|
/**
|
|
@@ -7051,10 +7853,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7051
7853
|
/**
|
|
7052
7854
|
* Adds a column to the table.
|
|
7053
7855
|
*
|
|
7054
|
-
* @
|
|
7055
|
-
* @experimental As of version 1.124.0.
|
|
7856
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.addColumn} instead
|
|
7056
7857
|
*
|
|
7057
|
-
* @returns Reference to this
|
|
7858
|
+
* @returns Reference to this to allow method chaining
|
|
7058
7859
|
*/
|
|
7059
7860
|
addColumn(
|
|
7060
7861
|
/**
|
|
@@ -7327,8 +8128,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7327
8128
|
/**
|
|
7328
8129
|
* Get the fields that should be ignored when generating the table.
|
|
7329
8130
|
*
|
|
7330
|
-
* @
|
|
7331
|
-
* @experimental As of version 1.124.0.
|
|
8131
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.getIgnoredFields} instead
|
|
7332
8132
|
*
|
|
7333
8133
|
* @returns The value of the ignoredFields property
|
|
7334
8134
|
*/
|
|
@@ -7336,8 +8136,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7336
8136
|
/**
|
|
7337
8137
|
* Gets the path to the metadata that should be used to generate the table.
|
|
7338
8138
|
*
|
|
7339
|
-
* @
|
|
7340
|
-
* @experimental As of version 1.124.0.
|
|
8139
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.getMetaPath} instead
|
|
7341
8140
|
*
|
|
7342
8141
|
* @returns The path to the metadata
|
|
7343
8142
|
*/
|
|
@@ -7385,8 +8184,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7385
8184
|
/**
|
|
7386
8185
|
* Removes an action from the table.
|
|
7387
8186
|
*
|
|
7388
|
-
* @
|
|
7389
|
-
* @experimental As of version 1.124.0.
|
|
8187
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.removeAction} instead
|
|
7390
8188
|
*
|
|
7391
8189
|
* @returns The removed action or null
|
|
7392
8190
|
*/
|
|
@@ -7399,8 +8197,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7399
8197
|
/**
|
|
7400
8198
|
* Removes a column from the table.
|
|
7401
8199
|
*
|
|
7402
|
-
* @
|
|
7403
|
-
* @experimental As of version 1.124.0.
|
|
8200
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.removeColumn} instead
|
|
7404
8201
|
*
|
|
7405
8202
|
* @returns The removed column or null
|
|
7406
8203
|
*/
|
|
@@ -7432,10 +8229,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7432
8229
|
/**
|
|
7433
8230
|
* Sets the fields that should be ignored when generating the table.
|
|
7434
8231
|
*
|
|
7435
|
-
* @
|
|
7436
|
-
* @experimental As of version 1.124.0.
|
|
8232
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.setIgnoredFields} instead
|
|
7437
8233
|
*
|
|
7438
|
-
* @returns Reference to this
|
|
8234
|
+
* @returns Reference to this to allow method chaining
|
|
7439
8235
|
*/
|
|
7440
8236
|
setIgnoredFields(
|
|
7441
8237
|
/**
|
|
@@ -7446,10 +8242,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7446
8242
|
/**
|
|
7447
8243
|
* Sets the path to the metadata that should be used to generate the table.
|
|
7448
8244
|
*
|
|
7449
|
-
* @
|
|
7450
|
-
* @experimental As of version 1.124.0.
|
|
8245
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.setMetaPath} instead
|
|
7451
8246
|
*
|
|
7452
|
-
* @returns Reference to this
|
|
8247
|
+
* @returns Reference to this to allow method chaining
|
|
7453
8248
|
*/
|
|
7454
8249
|
setMetaPath(
|
|
7455
8250
|
/**
|
|
@@ -7502,7 +8297,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7502
8297
|
/**
|
|
7503
8298
|
* Describes the settings that can be provided to the Table constructor.
|
|
7504
8299
|
*
|
|
7505
|
-
* @
|
|
8300
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table} instead
|
|
7506
8301
|
*/
|
|
7507
8302
|
export interface $TableSettings extends $TableSettings1 {
|
|
7508
8303
|
/**
|
|
@@ -7763,9 +8558,8 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7763
8558
|
* Aggregate actions of the table.
|
|
7764
8559
|
*/
|
|
7765
8560
|
actions?:
|
|
7766
|
-
|
|
|
7767
|
-
|
|
|
7768
|
-
| Action
|
|
8561
|
+
| ITableActionOrGroup[]
|
|
8562
|
+
| ITableActionOrGroup
|
|
7769
8563
|
| AggregationBindingInfo
|
|
7770
8564
|
| `{${string}}`;
|
|
7771
8565
|
|
|
@@ -7778,9 +8572,8 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7778
8572
|
* Aggregate columns of the table.
|
|
7779
8573
|
*/
|
|
7780
8574
|
columns?:
|
|
7781
|
-
|
|
|
7782
|
-
|
|
|
7783
|
-
| Column
|
|
8575
|
+
| ITableColumn[]
|
|
8576
|
+
| ITableColumn
|
|
7784
8577
|
| AggregationBindingInfo
|
|
7785
8578
|
| `{${string}}`;
|
|
7786
8579
|
|
|
@@ -7970,11 +8763,11 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
7970
8763
|
|
|
7971
8764
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
7972
8765
|
|
|
7973
|
-
import
|
|
8766
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7974
8767
|
|
|
7975
8768
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
7976
8769
|
|
|
7977
|
-
import
|
|
8770
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7978
8771
|
|
|
7979
8772
|
import TreeTableCreationOptions from "sap/fe/macros/table/TreeTableCreationOptions";
|
|
7980
8773
|
|
|
@@ -8015,17 +8808,15 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8015
8808
|
* usage.
|
|
8016
8809
|
*
|
|
8017
8810
|
*
|
|
8018
|
-
* @
|
|
8019
|
-
* @experimental As of version 1.125.0.
|
|
8811
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable} instead
|
|
8020
8812
|
*/
|
|
8021
8813
|
export default class TreeTable extends TreeTable1 {
|
|
8022
8814
|
/**
|
|
8023
8815
|
* Adds an action to the table.
|
|
8024
8816
|
*
|
|
8025
|
-
* @
|
|
8026
|
-
* @experimental As of version 1.125.0.
|
|
8817
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.addAction} instead
|
|
8027
8818
|
*
|
|
8028
|
-
* @returns Reference to this
|
|
8819
|
+
* @returns Reference to this to allow method chaining
|
|
8029
8820
|
*/
|
|
8030
8821
|
addAction(
|
|
8031
8822
|
/**
|
|
@@ -8036,10 +8827,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8036
8827
|
/**
|
|
8037
8828
|
* Adds a column to the table.
|
|
8038
8829
|
*
|
|
8039
|
-
* @
|
|
8040
|
-
* @experimental As of version 1.124.0.
|
|
8830
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.addColumn} instead
|
|
8041
8831
|
*
|
|
8042
|
-
* @returns Reference to this
|
|
8832
|
+
* @returns Reference to this to allow method chaining
|
|
8043
8833
|
*/
|
|
8044
8834
|
addColumn(
|
|
8045
8835
|
/**
|
|
@@ -8312,8 +9102,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8312
9102
|
/**
|
|
8313
9103
|
* Get the fields that should be ignored when generating the table.
|
|
8314
9104
|
*
|
|
8315
|
-
* @
|
|
8316
|
-
* @experimental As of version 1.125.0.
|
|
9105
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.getIgnoredFields} instead
|
|
8317
9106
|
*
|
|
8318
9107
|
* @returns The value of the ignoredFields property
|
|
8319
9108
|
*/
|
|
@@ -8321,8 +9110,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8321
9110
|
/**
|
|
8322
9111
|
* Gets the path to the metadata that should be used to generate the table.
|
|
8323
9112
|
*
|
|
8324
|
-
* @
|
|
8325
|
-
* @experimental As of version 1.125.0.
|
|
9113
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.getMetaPath} instead
|
|
8326
9114
|
*
|
|
8327
9115
|
* @returns The path to the metadata
|
|
8328
9116
|
*/
|
|
@@ -8370,8 +9158,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8370
9158
|
/**
|
|
8371
9159
|
* Removes an action from the table.
|
|
8372
9160
|
*
|
|
8373
|
-
* @
|
|
8374
|
-
* @experimental As of version 1.125.0.
|
|
9161
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.removeAction} instead
|
|
8375
9162
|
*
|
|
8376
9163
|
* @returns The removed action or null
|
|
8377
9164
|
*/
|
|
@@ -8384,8 +9171,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8384
9171
|
/**
|
|
8385
9172
|
* Removes a column from the table.
|
|
8386
9173
|
*
|
|
8387
|
-
* @
|
|
8388
|
-
* @experimental As of version 1.125.0.
|
|
9174
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.removeColumn} instead
|
|
8389
9175
|
*
|
|
8390
9176
|
* @returns The removed column or null
|
|
8391
9177
|
*/
|
|
@@ -8417,10 +9203,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8417
9203
|
/**
|
|
8418
9204
|
* Sets the fields that should be ignored when generating the table.
|
|
8419
9205
|
*
|
|
8420
|
-
* @
|
|
8421
|
-
* @experimental As of version 1.125.0.
|
|
9206
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.setIgnoredFields} instead
|
|
8422
9207
|
*
|
|
8423
|
-
* @returns Reference to this
|
|
9208
|
+
* @returns Reference to this to allow method chaining
|
|
8424
9209
|
*/
|
|
8425
9210
|
setIgnoredFields(
|
|
8426
9211
|
/**
|
|
@@ -8431,10 +9216,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8431
9216
|
/**
|
|
8432
9217
|
* Sets the path to the metadata that should be used to generate the table.
|
|
8433
9218
|
*
|
|
8434
|
-
* @
|
|
8435
|
-
* @experimental As of version 1.125.0.
|
|
9219
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.setMetaPath} instead
|
|
8436
9220
|
*
|
|
8437
|
-
* @returns Reference to this
|
|
9221
|
+
* @returns Reference to this to allow method chaining
|
|
8438
9222
|
*/
|
|
8439
9223
|
setMetaPath(
|
|
8440
9224
|
/**
|
|
@@ -8487,7 +9271,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8487
9271
|
/**
|
|
8488
9272
|
* Describes the settings that can be provided to the TreeTable constructor.
|
|
8489
9273
|
*
|
|
8490
|
-
* @
|
|
9274
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable} instead
|
|
8491
9275
|
*/
|
|
8492
9276
|
export interface $TreeTableSettings extends $TreeTableSettings1 {
|
|
8493
9277
|
/**
|
|
@@ -8774,9 +9558,8 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8774
9558
|
* Aggregate actions of the table.
|
|
8775
9559
|
*/
|
|
8776
9560
|
actions?:
|
|
8777
|
-
|
|
|
8778
|
-
|
|
|
8779
|
-
| Action
|
|
9561
|
+
| ITableActionOrGroup[]
|
|
9562
|
+
| ITableActionOrGroup
|
|
8780
9563
|
| AggregationBindingInfo
|
|
8781
9564
|
| `{${string}}`;
|
|
8782
9565
|
|
|
@@ -8789,9 +9572,8 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8789
9572
|
* Aggregate columns of the table.
|
|
8790
9573
|
*/
|
|
8791
9574
|
columns?:
|
|
8792
|
-
|
|
|
8793
|
-
|
|
|
8794
|
-
| Column
|
|
9575
|
+
| ITableColumn[]
|
|
9576
|
+
| ITableColumn
|
|
8795
9577
|
| AggregationBindingInfo
|
|
8796
9578
|
| `{${string}}`;
|
|
8797
9579
|
|
|
@@ -9056,6 +9838,8 @@ declare module "sap/fe/macros/controls/section/ISingleSectionContributor" {
|
|
|
9056
9838
|
|
|
9057
9839
|
declare namespace sap {
|
|
9058
9840
|
interface IUI5DefineDependencyNames {
|
|
9841
|
+
"sap/fe/macros/AINotice": undefined;
|
|
9842
|
+
|
|
9059
9843
|
"sap/fe/macros/Chart": undefined;
|
|
9060
9844
|
|
|
9061
9845
|
"sap/fe/macros/chart/Action": undefined;
|
|
@@ -9074,6 +9858,8 @@ declare namespace sap {
|
|
|
9074
9858
|
|
|
9075
9859
|
"sap/fe/macros/ConditionalSwitchProperty": undefined;
|
|
9076
9860
|
|
|
9861
|
+
"sap/fe/macros/controls/BaseAction": undefined;
|
|
9862
|
+
|
|
9077
9863
|
"sap/fe/macros/controls/BuildingBlockObjectProperty": undefined;
|
|
9078
9864
|
|
|
9079
9865
|
"sap/fe/macros/controls/BuildingBlockWithTemplating": undefined;
|
|
@@ -9094,8 +9880,12 @@ declare namespace sap {
|
|
|
9094
9880
|
|
|
9095
9881
|
"sap/fe/macros/filterBar/FilterField": undefined;
|
|
9096
9882
|
|
|
9883
|
+
"sap/fe/macros/filterBar/FilterFieldOverride": undefined;
|
|
9884
|
+
|
|
9097
9885
|
"sap/fe/macros/form/Form.block": undefined;
|
|
9098
9886
|
|
|
9887
|
+
"sap/fe/macros/form/FormLayoutOptions": undefined;
|
|
9888
|
+
|
|
9099
9889
|
"sap/fe/macros/FormElement": undefined;
|
|
9100
9890
|
|
|
9101
9891
|
"sap/fe/macros/KPITag": undefined;
|
|
@@ -9148,6 +9938,12 @@ declare namespace sap {
|
|
|
9148
9938
|
|
|
9149
9939
|
"sap/fe/macros/table/ColumnOverride": undefined;
|
|
9150
9940
|
|
|
9941
|
+
"sap/fe/macros/table/ITableAction": undefined;
|
|
9942
|
+
|
|
9943
|
+
"sap/fe/macros/table/ITableActionOrGroup": undefined;
|
|
9944
|
+
|
|
9945
|
+
"sap/fe/macros/table/ITableColumn": undefined;
|
|
9946
|
+
|
|
9151
9947
|
"sap/fe/macros/table/MassEdit": undefined;
|
|
9152
9948
|
|
|
9153
9949
|
"sap/fe/macros/table/OverflowGroups": undefined;
|