@sapui5/types 1.144.1 → 1.145.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/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 +853 -203
- 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.0
|
|
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
|
*/
|
|
@@ -6005,8 +6467,11 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6005
6467
|
import {
|
|
6006
6468
|
default as MicroChart1,
|
|
6007
6469
|
$MicroChartSettings as $MicroChartSettings1,
|
|
6470
|
+
MicroChart$TitlePressEventParameters as MicroChart$TitlePressEventParameters1,
|
|
6008
6471
|
} from "sap/fe/macros/MicroChart";
|
|
6009
6472
|
|
|
6473
|
+
import Event from "sap/ui/base/Event";
|
|
6474
|
+
|
|
6010
6475
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6011
6476
|
|
|
6012
6477
|
/**
|
|
@@ -6034,6 +6499,73 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6034
6499
|
* @experimental
|
|
6035
6500
|
*/
|
|
6036
6501
|
export default class MicroChart extends MicroChart1 {
|
|
6502
|
+
/**
|
|
6503
|
+
*
|
|
6504
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6505
|
+
* to allow method chaining
|
|
6506
|
+
*/
|
|
6507
|
+
attachTitlePress(
|
|
6508
|
+
/**
|
|
6509
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
6510
|
+
* object when firing the event
|
|
6511
|
+
*/
|
|
6512
|
+
oData: object,
|
|
6513
|
+
/**
|
|
6514
|
+
* The function to be called when the event occurs
|
|
6515
|
+
*/
|
|
6516
|
+
fnFunction: (p1: Event) => void,
|
|
6517
|
+
/**
|
|
6518
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6519
|
+
*/
|
|
6520
|
+
oListener?: object
|
|
6521
|
+
): this;
|
|
6522
|
+
/**
|
|
6523
|
+
*
|
|
6524
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6525
|
+
* to allow method chaining
|
|
6526
|
+
*/
|
|
6527
|
+
attachTitlePress(
|
|
6528
|
+
/**
|
|
6529
|
+
* The function to be called when the event occurs
|
|
6530
|
+
*/
|
|
6531
|
+
fnFunction: (p1: Event) => void,
|
|
6532
|
+
/**
|
|
6533
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6534
|
+
*/
|
|
6535
|
+
oListener?: object
|
|
6536
|
+
): this;
|
|
6537
|
+
/**
|
|
6538
|
+
*
|
|
6539
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6540
|
+
* to allow method chaining
|
|
6541
|
+
*/
|
|
6542
|
+
detachTitlePress(
|
|
6543
|
+
/**
|
|
6544
|
+
* The function to be called when the event occurs
|
|
6545
|
+
*/
|
|
6546
|
+
fnFunction: (p1: Event) => void,
|
|
6547
|
+
/**
|
|
6548
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6549
|
+
*/
|
|
6550
|
+
oListener?: object
|
|
6551
|
+
): this;
|
|
6552
|
+
/**
|
|
6553
|
+
* Fires event titlePress
|
|
6554
|
+
* to attached listeners.
|
|
6555
|
+
*
|
|
6556
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6557
|
+
*
|
|
6558
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6559
|
+
* to allow method chaining
|
|
6560
|
+
*/
|
|
6561
|
+
fireTitlePress(
|
|
6562
|
+
/**
|
|
6563
|
+
* The parameters to pass along with the event.
|
|
6564
|
+
* See {@link types.EventHandler>} for the set of parameters that are
|
|
6565
|
+
* expected by the event handlers.
|
|
6566
|
+
*/
|
|
6567
|
+
mParameters?: {}
|
|
6568
|
+
): this;
|
|
6037
6569
|
/**
|
|
6038
6570
|
* Gets current value of property contextPath.
|
|
6039
6571
|
*
|
|
@@ -6048,6 +6580,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6048
6580
|
* @returns Value of property `hideOnNoData`
|
|
6049
6581
|
*/
|
|
6050
6582
|
getHideOnNoData(): boolean;
|
|
6583
|
+
/**
|
|
6584
|
+
* Gets current value of property linkAriaText.
|
|
6585
|
+
*
|
|
6586
|
+
*
|
|
6587
|
+
* @returns Value of property `linkAriaText`
|
|
6588
|
+
*/
|
|
6589
|
+
getLinkAriaText(): string;
|
|
6051
6590
|
/**
|
|
6052
6591
|
* Gets current value of property metaPath.
|
|
6053
6592
|
*
|
|
@@ -6069,6 +6608,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6069
6608
|
* @returns Value of property `size`
|
|
6070
6609
|
*/
|
|
6071
6610
|
getSize(): string;
|
|
6611
|
+
/**
|
|
6612
|
+
* Gets current value of property titleAsLink.
|
|
6613
|
+
*
|
|
6614
|
+
*
|
|
6615
|
+
* @returns Value of property `titleAsLink`
|
|
6616
|
+
*/
|
|
6617
|
+
getTitleAsLink(): boolean;
|
|
6072
6618
|
/**
|
|
6073
6619
|
* Gets current value of property contextPath.
|
|
6074
6620
|
*
|
|
@@ -6083,6 +6629,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6083
6629
|
* @returns Value of property `hideOnNoData`
|
|
6084
6630
|
*/
|
|
6085
6631
|
setHideOnNoData(): boolean;
|
|
6632
|
+
/**
|
|
6633
|
+
* Gets current value of property linkAriaText.
|
|
6634
|
+
*
|
|
6635
|
+
*
|
|
6636
|
+
* @returns Value of property `linkAriaText`
|
|
6637
|
+
*/
|
|
6638
|
+
setLinkAriaText(): string;
|
|
6086
6639
|
/**
|
|
6087
6640
|
* Gets current value of property metaPath.
|
|
6088
6641
|
*
|
|
@@ -6104,6 +6657,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6104
6657
|
* @returns Value of property `size`
|
|
6105
6658
|
*/
|
|
6106
6659
|
setSize(): string;
|
|
6660
|
+
/**
|
|
6661
|
+
* Gets current value of property titleAsLink.
|
|
6662
|
+
*
|
|
6663
|
+
*
|
|
6664
|
+
* @returns Value of property `titleAsLink`
|
|
6665
|
+
*/
|
|
6666
|
+
setTitleAsLink(): boolean;
|
|
6107
6667
|
}
|
|
6108
6668
|
/**
|
|
6109
6669
|
* Describes the settings that can be provided to the MicroChart constructor.
|
|
@@ -6122,6 +6682,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6122
6682
|
*/
|
|
6123
6683
|
hideOnNoData?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6124
6684
|
|
|
6685
|
+
/**
|
|
6686
|
+
* Custom ARIA text for the title link.
|
|
6687
|
+
* This property is only used when titleAsLink is set to true.
|
|
6688
|
+
* If not provided, default ARIA text based on the navigationType is used.
|
|
6689
|
+
*/
|
|
6690
|
+
linkAriaText?: string | PropertyBindingInfo;
|
|
6691
|
+
|
|
6125
6692
|
/**
|
|
6126
6693
|
* Metadata path to the MicroChart.
|
|
6127
6694
|
*/
|
|
@@ -6137,7 +6704,34 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6137
6704
|
* Size of the MicroChart
|
|
6138
6705
|
*/
|
|
6139
6706
|
size?: string | PropertyBindingInfo;
|
|
6707
|
+
|
|
6708
|
+
/**
|
|
6709
|
+
* Determines whether the micro chart title is displayed as a link or as a text.
|
|
6710
|
+
* When set to true, the title is rendered as a clickable link.
|
|
6711
|
+
*/
|
|
6712
|
+
titleAsLink?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6713
|
+
|
|
6714
|
+
/**
|
|
6715
|
+
* Event fired when the micro chart title link is pressed.
|
|
6716
|
+
* The event provides the binding context of the micro chart in the event parameters.
|
|
6717
|
+
* This event is only fired when titleAsLink is set to true.
|
|
6718
|
+
*/
|
|
6719
|
+
titlePress?: (oEvent: Event) => void;
|
|
6140
6720
|
}
|
|
6721
|
+
|
|
6722
|
+
/**
|
|
6723
|
+
* Parameters of the MicroChart#titlePress event.
|
|
6724
|
+
*/
|
|
6725
|
+
export interface MicroChart$TitlePressEventParameters
|
|
6726
|
+
extends MicroChart$TitlePressEventParameters1 {}
|
|
6727
|
+
|
|
6728
|
+
/**
|
|
6729
|
+
* Event object of the MicroChart#titlePress event.
|
|
6730
|
+
*/
|
|
6731
|
+
export type MicroChart$TitlePressEvent = Event<
|
|
6732
|
+
MicroChart$TitlePressEventParameters,
|
|
6733
|
+
MicroChart
|
|
6734
|
+
>;
|
|
6141
6735
|
}
|
|
6142
6736
|
|
|
6143
6737
|
declare module "sap/fe/macros/richtexteditor/ButtonGroup" {
|
|
@@ -6225,9 +6819,13 @@ declare module "sap/fe/macros/share/ShareOptions" {
|
|
|
6225
6819
|
|
|
6226
6820
|
declare module "sap/fe/macros/table/Action" {
|
|
6227
6821
|
import {
|
|
6228
|
-
default as
|
|
6229
|
-
$
|
|
6230
|
-
} from "sap/fe/macros/controls/
|
|
6822
|
+
default as BaseAction,
|
|
6823
|
+
$BaseActionSettings,
|
|
6824
|
+
} from "sap/fe/macros/controls/BaseAction";
|
|
6825
|
+
|
|
6826
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6827
|
+
|
|
6828
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6231
6829
|
|
|
6232
6830
|
import Event from "sap/ui/base/Event";
|
|
6233
6831
|
|
|
@@ -6236,7 +6834,13 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6236
6834
|
/**
|
|
6237
6835
|
* Definition of a custom action to be used inside the table toolbar
|
|
6238
6836
|
*/
|
|
6239
|
-
export default class Action
|
|
6837
|
+
export default class Action
|
|
6838
|
+
extends BaseAction
|
|
6839
|
+
implements ITableActionOrGroup, ITableAction
|
|
6840
|
+
{
|
|
6841
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
6842
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
6843
|
+
|
|
6240
6844
|
/**
|
|
6241
6845
|
*
|
|
6242
6846
|
* @returns Reference to sap.fe.macros.table.Action
|
|
@@ -6308,13 +6912,7 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6308
6912
|
/**
|
|
6309
6913
|
* Describes the settings that can be provided to the Action constructor.
|
|
6310
6914
|
*/
|
|
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
|
-
|
|
6915
|
+
export interface $ActionSettings extends $BaseActionSettings {
|
|
6318
6916
|
/**
|
|
6319
6917
|
* Determines the shortcut combination to trigger the action
|
|
6320
6918
|
*/
|
|
@@ -6331,47 +6929,11 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6331
6929
|
*/
|
|
6332
6930
|
enableOnSelect?: string | PropertyBindingInfo;
|
|
6333
6931
|
|
|
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
6932
|
/**
|
|
6361
6933
|
* Defines if the action requires a selection.
|
|
6362
6934
|
*/
|
|
6363
6935
|
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6364
6936
|
|
|
6365
|
-
/**
|
|
6366
|
-
* The text that will be displayed for this action
|
|
6367
|
-
*/
|
|
6368
|
-
text?: string | PropertyBindingInfo;
|
|
6369
|
-
|
|
6370
|
-
/**
|
|
6371
|
-
* Determines whether the action is visible.
|
|
6372
|
-
*/
|
|
6373
|
-
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6374
|
-
|
|
6375
6937
|
/**
|
|
6376
6938
|
* Event handler to be called when the user chooses the action
|
|
6377
6939
|
*/
|
|
@@ -6395,19 +6957,24 @@ declare module "sap/fe/macros/table/ActionGroup" {
|
|
|
6395
6957
|
$BuildingBlockObjectPropertySettings,
|
|
6396
6958
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6397
6959
|
|
|
6960
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6961
|
+
|
|
6398
6962
|
import {
|
|
6399
6963
|
PropertyBindingInfo,
|
|
6400
6964
|
AggregationBindingInfo,
|
|
6401
6965
|
} from "sap/ui/base/ManagedObject";
|
|
6402
6966
|
|
|
6403
|
-
import
|
|
6404
|
-
|
|
6405
|
-
import Action from "sap/fe/macros/table/Action";
|
|
6967
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6406
6968
|
|
|
6407
6969
|
/**
|
|
6408
6970
|
* Definition of a custom ActionGroup to be used inside the table toolbar
|
|
6409
6971
|
*/
|
|
6410
|
-
export default class ActionGroup
|
|
6972
|
+
export default class ActionGroup
|
|
6973
|
+
extends BuildingBlockObjectProperty
|
|
6974
|
+
implements ITableActionOrGroup
|
|
6975
|
+
{
|
|
6976
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
6977
|
+
}
|
|
6411
6978
|
/**
|
|
6412
6979
|
* Describes the settings that can be provided to the ActionGroup constructor.
|
|
6413
6980
|
*/
|
|
@@ -6454,9 +7021,8 @@ declare module "sap/fe/macros/table/ActionGroup" {
|
|
|
6454
7021
|
* Determines the nested actions
|
|
6455
7022
|
*/
|
|
6456
7023
|
actions?:
|
|
6457
|
-
|
|
|
6458
|
-
|
|
|
6459
|
-
| Action
|
|
7024
|
+
| ITableAction[]
|
|
7025
|
+
| ITableAction
|
|
6460
7026
|
| AggregationBindingInfo
|
|
6461
7027
|
| `{${string}}`;
|
|
6462
7028
|
}
|
|
@@ -6468,19 +7034,24 @@ declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
|
6468
7034
|
$BuildingBlockObjectPropertySettings,
|
|
6469
7035
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6470
7036
|
|
|
7037
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7038
|
+
|
|
6471
7039
|
import {
|
|
6472
7040
|
PropertyBindingInfo,
|
|
6473
7041
|
AggregationBindingInfo,
|
|
6474
7042
|
} from "sap/ui/base/ManagedObject";
|
|
6475
7043
|
|
|
6476
|
-
import
|
|
6477
|
-
|
|
6478
|
-
import Action from "sap/fe/macros/table/Action";
|
|
7044
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6479
7045
|
|
|
6480
7046
|
/**
|
|
6481
7047
|
* Definition of an action group override to be used inside the Table building block.
|
|
6482
7048
|
*/
|
|
6483
|
-
export default class ActionGroupOverride
|
|
7049
|
+
export default class ActionGroupOverride
|
|
7050
|
+
extends BuildingBlockObjectProperty
|
|
7051
|
+
implements ITableActionOrGroup
|
|
7052
|
+
{
|
|
7053
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7054
|
+
}
|
|
6484
7055
|
/**
|
|
6485
7056
|
* Describes the settings that can be provided to the ActionGroupOverride constructor.
|
|
6486
7057
|
*/
|
|
@@ -6507,9 +7078,8 @@ declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
|
6507
7078
|
* Determines the nested actions
|
|
6508
7079
|
*/
|
|
6509
7080
|
actions?:
|
|
6510
|
-
|
|
|
6511
|
-
|
|
|
6512
|
-
| Action
|
|
7081
|
+
| ITableAction[]
|
|
7082
|
+
| ITableAction
|
|
6513
7083
|
| AggregationBindingInfo
|
|
6514
7084
|
| `{${string}}`;
|
|
6515
7085
|
}
|
|
@@ -6521,12 +7091,22 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
6521
7091
|
$BuildingBlockObjectPropertySettings,
|
|
6522
7092
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6523
7093
|
|
|
7094
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7095
|
+
|
|
7096
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
7097
|
+
|
|
6524
7098
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6525
7099
|
|
|
6526
7100
|
/**
|
|
6527
7101
|
* Definition of an override for the action to be used inside the Table building block.
|
|
6528
7102
|
*/
|
|
6529
|
-
export default class ActionOverride
|
|
7103
|
+
export default class ActionOverride
|
|
7104
|
+
extends BuildingBlockObjectProperty
|
|
7105
|
+
implements ITableActionOrGroup, ITableAction
|
|
7106
|
+
{
|
|
7107
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7108
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7109
|
+
}
|
|
6530
7110
|
/**
|
|
6531
7111
|
* Describes the settings that can be provided to the ActionOverride constructor.
|
|
6532
7112
|
*/
|
|
@@ -6547,6 +7127,12 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
6547
7127
|
*/
|
|
6548
7128
|
defaultValuesFunction?: string | PropertyBindingInfo;
|
|
6549
7129
|
|
|
7130
|
+
/**
|
|
7131
|
+
* Disables strict handling for this action.
|
|
7132
|
+
* When true, the action does not use strict message handling.
|
|
7133
|
+
*/
|
|
7134
|
+
disableStrictHandling?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7135
|
+
|
|
6550
7136
|
/**
|
|
6551
7137
|
* Determines if the auto scroll is enabled after executing the action.
|
|
6552
7138
|
*/
|
|
@@ -6621,6 +7207,8 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
6621
7207
|
$BuildingBlockObjectPropertySettings,
|
|
6622
7208
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6623
7209
|
|
|
7210
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7211
|
+
|
|
6624
7212
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6625
7213
|
|
|
6626
7214
|
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
@@ -6629,7 +7217,12 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
6629
7217
|
* Definition of a custom column to be used inside the table.
|
|
6630
7218
|
* The template for the column has to be provided as the default aggregation
|
|
6631
7219
|
*/
|
|
6632
|
-
export default class Column
|
|
7220
|
+
export default class Column
|
|
7221
|
+
extends BuildingBlockObjectProperty
|
|
7222
|
+
implements ITableColumn
|
|
7223
|
+
{
|
|
7224
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7225
|
+
}
|
|
6633
7226
|
/**
|
|
6634
7227
|
* Describes the settings that can be provided to the Column constructor.
|
|
6635
7228
|
*/
|
|
@@ -6799,6 +7392,8 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6799
7392
|
$BuildingBlockObjectPropertySettings,
|
|
6800
7393
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6801
7394
|
|
|
7395
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7396
|
+
|
|
6802
7397
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6803
7398
|
|
|
6804
7399
|
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
@@ -6806,7 +7401,12 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6806
7401
|
/**
|
|
6807
7402
|
* Definition of an override for the column to be used inside the Table building block.
|
|
6808
7403
|
*/
|
|
6809
|
-
export default class ColumnOverride
|
|
7404
|
+
export default class ColumnOverride
|
|
7405
|
+
extends BuildingBlockObjectProperty
|
|
7406
|
+
implements ITableColumn
|
|
7407
|
+
{
|
|
7408
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7409
|
+
}
|
|
6810
7410
|
/**
|
|
6811
7411
|
* Describes the settings that can be provided to the ColumnOverride constructor.
|
|
6812
7412
|
*/
|
|
@@ -6857,6 +7457,66 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6857
7457
|
}
|
|
6858
7458
|
}
|
|
6859
7459
|
|
|
7460
|
+
declare module "sap/fe/macros/table/ITableAction" {
|
|
7461
|
+
/**
|
|
7462
|
+
* Interface for controls that can be used as actions in a group inside the {@link sap.fe.macros.Table }
|
|
7463
|
+
* building block.
|
|
7464
|
+
* This interface is implemented by:
|
|
7465
|
+
*
|
|
7466
|
+
* - {@link sap.fe.macros.table.Action }
|
|
7467
|
+
*
|
|
7468
|
+
* - {@link sap.fe.macros.table.ActionOverride }
|
|
7469
|
+
*
|
|
7470
|
+
*
|
|
7471
|
+
*
|
|
7472
|
+
* @since 1.145.0
|
|
7473
|
+
*/
|
|
7474
|
+
export interface ITableAction {
|
|
7475
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7476
|
+
}
|
|
7477
|
+
}
|
|
7478
|
+
|
|
7479
|
+
declare module "sap/fe/macros/table/ITableActionOrGroup" {
|
|
7480
|
+
/**
|
|
7481
|
+
* Interface for controls that can be used as actions or action groups inside the {@link sap.fe.macros.Table }
|
|
7482
|
+
* building block.
|
|
7483
|
+
* This interface is implemented by:
|
|
7484
|
+
*
|
|
7485
|
+
* - {@link sap.fe.macros.table.Action }
|
|
7486
|
+
*
|
|
7487
|
+
* - {@link sap.fe.macros.table.ActionOverride }
|
|
7488
|
+
*
|
|
7489
|
+
* - {@link sap.fe.macros.table.ActionGroup }
|
|
7490
|
+
*
|
|
7491
|
+
* - {@link sap.fe.macros.table.ActionGroupOverride }
|
|
7492
|
+
*
|
|
7493
|
+
*
|
|
7494
|
+
*
|
|
7495
|
+
* @since 1.145.0
|
|
7496
|
+
*/
|
|
7497
|
+
export interface ITableActionOrGroup {
|
|
7498
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7499
|
+
}
|
|
7500
|
+
}
|
|
7501
|
+
|
|
7502
|
+
declare module "sap/fe/macros/table/ITableColumn" {
|
|
7503
|
+
/**
|
|
7504
|
+
* Interface for controls that can be used as columns inside the {@link sap.fe.macros.Table } building block.
|
|
7505
|
+
* This interface is implemented by:
|
|
7506
|
+
*
|
|
7507
|
+
* - {@link sap.fe.macros.table.Column }
|
|
7508
|
+
*
|
|
7509
|
+
* - {@link sap.fe.macros.table.ColumnOverride }
|
|
7510
|
+
*
|
|
7511
|
+
*
|
|
7512
|
+
*
|
|
7513
|
+
* @since 1.145.0
|
|
7514
|
+
*/
|
|
7515
|
+
export interface ITableColumn {
|
|
7516
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7517
|
+
}
|
|
7518
|
+
}
|
|
7519
|
+
|
|
6860
7520
|
declare module "sap/fe/macros/table/MassEdit" {
|
|
6861
7521
|
import {
|
|
6862
7522
|
default as BuildingBlockObjectProperty,
|
|
@@ -6985,11 +7645,11 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
6985
7645
|
|
|
6986
7646
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
6987
7647
|
|
|
6988
|
-
import
|
|
7648
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6989
7649
|
|
|
6990
7650
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
6991
7651
|
|
|
6992
|
-
import
|
|
7652
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
6993
7653
|
|
|
6994
7654
|
import TableCreationOptions from "sap/fe/macros/table/TableCreationOptions";
|
|
6995
7655
|
|
|
@@ -7030,17 +7690,15 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7030
7690
|
* usage.
|
|
7031
7691
|
*
|
|
7032
7692
|
*
|
|
7033
|
-
* @
|
|
7034
|
-
* @experimental As of version 1.124.0.
|
|
7693
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table} instead
|
|
7035
7694
|
*/
|
|
7036
7695
|
export default class Table extends Table1 {
|
|
7037
7696
|
/**
|
|
7038
7697
|
* Adds an action to the table.
|
|
7039
7698
|
*
|
|
7040
|
-
* @
|
|
7041
|
-
* @experimental As of version 1.124.0.
|
|
7699
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.addAction} instead
|
|
7042
7700
|
*
|
|
7043
|
-
* @returns Reference to this
|
|
7701
|
+
* @returns Reference to this to allow method chaining
|
|
7044
7702
|
*/
|
|
7045
7703
|
addAction(
|
|
7046
7704
|
/**
|
|
@@ -7051,10 +7709,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7051
7709
|
/**
|
|
7052
7710
|
* Adds a column to the table.
|
|
7053
7711
|
*
|
|
7054
|
-
* @
|
|
7055
|
-
* @experimental As of version 1.124.0.
|
|
7712
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.addColumn} instead
|
|
7056
7713
|
*
|
|
7057
|
-
* @returns Reference to this
|
|
7714
|
+
* @returns Reference to this to allow method chaining
|
|
7058
7715
|
*/
|
|
7059
7716
|
addColumn(
|
|
7060
7717
|
/**
|
|
@@ -7327,8 +7984,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7327
7984
|
/**
|
|
7328
7985
|
* Get the fields that should be ignored when generating the table.
|
|
7329
7986
|
*
|
|
7330
|
-
* @
|
|
7331
|
-
* @experimental As of version 1.124.0.
|
|
7987
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.getIgnoredFields} instead
|
|
7332
7988
|
*
|
|
7333
7989
|
* @returns The value of the ignoredFields property
|
|
7334
7990
|
*/
|
|
@@ -7336,8 +7992,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7336
7992
|
/**
|
|
7337
7993
|
* Gets the path to the metadata that should be used to generate the table.
|
|
7338
7994
|
*
|
|
7339
|
-
* @
|
|
7340
|
-
* @experimental As of version 1.124.0.
|
|
7995
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.getMetaPath} instead
|
|
7341
7996
|
*
|
|
7342
7997
|
* @returns The path to the metadata
|
|
7343
7998
|
*/
|
|
@@ -7385,8 +8040,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7385
8040
|
/**
|
|
7386
8041
|
* Removes an action from the table.
|
|
7387
8042
|
*
|
|
7388
|
-
* @
|
|
7389
|
-
* @experimental As of version 1.124.0.
|
|
8043
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.removeAction} instead
|
|
7390
8044
|
*
|
|
7391
8045
|
* @returns The removed action or null
|
|
7392
8046
|
*/
|
|
@@ -7399,8 +8053,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7399
8053
|
/**
|
|
7400
8054
|
* Removes a column from the table.
|
|
7401
8055
|
*
|
|
7402
|
-
* @
|
|
7403
|
-
* @experimental As of version 1.124.0.
|
|
8056
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.removeColumn} instead
|
|
7404
8057
|
*
|
|
7405
8058
|
* @returns The removed column or null
|
|
7406
8059
|
*/
|
|
@@ -7432,10 +8085,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7432
8085
|
/**
|
|
7433
8086
|
* Sets the fields that should be ignored when generating the table.
|
|
7434
8087
|
*
|
|
7435
|
-
* @
|
|
7436
|
-
* @experimental As of version 1.124.0.
|
|
8088
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.setIgnoredFields} instead
|
|
7437
8089
|
*
|
|
7438
|
-
* @returns Reference to this
|
|
8090
|
+
* @returns Reference to this to allow method chaining
|
|
7439
8091
|
*/
|
|
7440
8092
|
setIgnoredFields(
|
|
7441
8093
|
/**
|
|
@@ -7446,10 +8098,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7446
8098
|
/**
|
|
7447
8099
|
* Sets the path to the metadata that should be used to generate the table.
|
|
7448
8100
|
*
|
|
7449
|
-
* @
|
|
7450
|
-
* @experimental As of version 1.124.0.
|
|
8101
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.setMetaPath} instead
|
|
7451
8102
|
*
|
|
7452
|
-
* @returns Reference to this
|
|
8103
|
+
* @returns Reference to this to allow method chaining
|
|
7453
8104
|
*/
|
|
7454
8105
|
setMetaPath(
|
|
7455
8106
|
/**
|
|
@@ -7502,7 +8153,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7502
8153
|
/**
|
|
7503
8154
|
* Describes the settings that can be provided to the Table constructor.
|
|
7504
8155
|
*
|
|
7505
|
-
* @
|
|
8156
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table} instead
|
|
7506
8157
|
*/
|
|
7507
8158
|
export interface $TableSettings extends $TableSettings1 {
|
|
7508
8159
|
/**
|
|
@@ -7763,9 +8414,8 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7763
8414
|
* Aggregate actions of the table.
|
|
7764
8415
|
*/
|
|
7765
8416
|
actions?:
|
|
7766
|
-
|
|
|
7767
|
-
|
|
|
7768
|
-
| Action
|
|
8417
|
+
| ITableActionOrGroup[]
|
|
8418
|
+
| ITableActionOrGroup
|
|
7769
8419
|
| AggregationBindingInfo
|
|
7770
8420
|
| `{${string}}`;
|
|
7771
8421
|
|
|
@@ -7778,9 +8428,8 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7778
8428
|
* Aggregate columns of the table.
|
|
7779
8429
|
*/
|
|
7780
8430
|
columns?:
|
|
7781
|
-
|
|
|
7782
|
-
|
|
|
7783
|
-
| Column
|
|
8431
|
+
| ITableColumn[]
|
|
8432
|
+
| ITableColumn
|
|
7784
8433
|
| AggregationBindingInfo
|
|
7785
8434
|
| `{${string}}`;
|
|
7786
8435
|
|
|
@@ -7970,11 +8619,11 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
7970
8619
|
|
|
7971
8620
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
7972
8621
|
|
|
7973
|
-
import
|
|
8622
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7974
8623
|
|
|
7975
8624
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
7976
8625
|
|
|
7977
|
-
import
|
|
8626
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7978
8627
|
|
|
7979
8628
|
import TreeTableCreationOptions from "sap/fe/macros/table/TreeTableCreationOptions";
|
|
7980
8629
|
|
|
@@ -8015,17 +8664,15 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8015
8664
|
* usage.
|
|
8016
8665
|
*
|
|
8017
8666
|
*
|
|
8018
|
-
* @
|
|
8019
|
-
* @experimental As of version 1.125.0.
|
|
8667
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable} instead
|
|
8020
8668
|
*/
|
|
8021
8669
|
export default class TreeTable extends TreeTable1 {
|
|
8022
8670
|
/**
|
|
8023
8671
|
* Adds an action to the table.
|
|
8024
8672
|
*
|
|
8025
|
-
* @
|
|
8026
|
-
* @experimental As of version 1.125.0.
|
|
8673
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.addAction} instead
|
|
8027
8674
|
*
|
|
8028
|
-
* @returns Reference to this
|
|
8675
|
+
* @returns Reference to this to allow method chaining
|
|
8029
8676
|
*/
|
|
8030
8677
|
addAction(
|
|
8031
8678
|
/**
|
|
@@ -8036,10 +8683,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8036
8683
|
/**
|
|
8037
8684
|
* Adds a column to the table.
|
|
8038
8685
|
*
|
|
8039
|
-
* @
|
|
8040
|
-
* @experimental As of version 1.124.0.
|
|
8686
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.addColumn} instead
|
|
8041
8687
|
*
|
|
8042
|
-
* @returns Reference to this
|
|
8688
|
+
* @returns Reference to this to allow method chaining
|
|
8043
8689
|
*/
|
|
8044
8690
|
addColumn(
|
|
8045
8691
|
/**
|
|
@@ -8312,8 +8958,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8312
8958
|
/**
|
|
8313
8959
|
* Get the fields that should be ignored when generating the table.
|
|
8314
8960
|
*
|
|
8315
|
-
* @
|
|
8316
|
-
* @experimental As of version 1.125.0.
|
|
8961
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.getIgnoredFields} instead
|
|
8317
8962
|
*
|
|
8318
8963
|
* @returns The value of the ignoredFields property
|
|
8319
8964
|
*/
|
|
@@ -8321,8 +8966,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8321
8966
|
/**
|
|
8322
8967
|
* Gets the path to the metadata that should be used to generate the table.
|
|
8323
8968
|
*
|
|
8324
|
-
* @
|
|
8325
|
-
* @experimental As of version 1.125.0.
|
|
8969
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.getMetaPath} instead
|
|
8326
8970
|
*
|
|
8327
8971
|
* @returns The path to the metadata
|
|
8328
8972
|
*/
|
|
@@ -8370,8 +9014,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8370
9014
|
/**
|
|
8371
9015
|
* Removes an action from the table.
|
|
8372
9016
|
*
|
|
8373
|
-
* @
|
|
8374
|
-
* @experimental As of version 1.125.0.
|
|
9017
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.removeAction} instead
|
|
8375
9018
|
*
|
|
8376
9019
|
* @returns The removed action or null
|
|
8377
9020
|
*/
|
|
@@ -8384,8 +9027,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8384
9027
|
/**
|
|
8385
9028
|
* Removes a column from the table.
|
|
8386
9029
|
*
|
|
8387
|
-
* @
|
|
8388
|
-
* @experimental As of version 1.125.0.
|
|
9030
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.removeColumn} instead
|
|
8389
9031
|
*
|
|
8390
9032
|
* @returns The removed column or null
|
|
8391
9033
|
*/
|
|
@@ -8417,10 +9059,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8417
9059
|
/**
|
|
8418
9060
|
* Sets the fields that should be ignored when generating the table.
|
|
8419
9061
|
*
|
|
8420
|
-
* @
|
|
8421
|
-
* @experimental As of version 1.125.0.
|
|
9062
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.setIgnoredFields} instead
|
|
8422
9063
|
*
|
|
8423
|
-
* @returns Reference to this
|
|
9064
|
+
* @returns Reference to this to allow method chaining
|
|
8424
9065
|
*/
|
|
8425
9066
|
setIgnoredFields(
|
|
8426
9067
|
/**
|
|
@@ -8431,10 +9072,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8431
9072
|
/**
|
|
8432
9073
|
* Sets the path to the metadata that should be used to generate the table.
|
|
8433
9074
|
*
|
|
8434
|
-
* @
|
|
8435
|
-
* @experimental As of version 1.125.0.
|
|
9075
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.setMetaPath} instead
|
|
8436
9076
|
*
|
|
8437
|
-
* @returns Reference to this
|
|
9077
|
+
* @returns Reference to this to allow method chaining
|
|
8438
9078
|
*/
|
|
8439
9079
|
setMetaPath(
|
|
8440
9080
|
/**
|
|
@@ -8487,7 +9127,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8487
9127
|
/**
|
|
8488
9128
|
* Describes the settings that can be provided to the TreeTable constructor.
|
|
8489
9129
|
*
|
|
8490
|
-
* @
|
|
9130
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable} instead
|
|
8491
9131
|
*/
|
|
8492
9132
|
export interface $TreeTableSettings extends $TreeTableSettings1 {
|
|
8493
9133
|
/**
|
|
@@ -8774,9 +9414,8 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8774
9414
|
* Aggregate actions of the table.
|
|
8775
9415
|
*/
|
|
8776
9416
|
actions?:
|
|
8777
|
-
|
|
|
8778
|
-
|
|
|
8779
|
-
| Action
|
|
9417
|
+
| ITableActionOrGroup[]
|
|
9418
|
+
| ITableActionOrGroup
|
|
8780
9419
|
| AggregationBindingInfo
|
|
8781
9420
|
| `{${string}}`;
|
|
8782
9421
|
|
|
@@ -8789,9 +9428,8 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8789
9428
|
* Aggregate columns of the table.
|
|
8790
9429
|
*/
|
|
8791
9430
|
columns?:
|
|
8792
|
-
|
|
|
8793
|
-
|
|
|
8794
|
-
| Column
|
|
9431
|
+
| ITableColumn[]
|
|
9432
|
+
| ITableColumn
|
|
8795
9433
|
| AggregationBindingInfo
|
|
8796
9434
|
| `{${string}}`;
|
|
8797
9435
|
|
|
@@ -9056,6 +9694,8 @@ declare module "sap/fe/macros/controls/section/ISingleSectionContributor" {
|
|
|
9056
9694
|
|
|
9057
9695
|
declare namespace sap {
|
|
9058
9696
|
interface IUI5DefineDependencyNames {
|
|
9697
|
+
"sap/fe/macros/AINotice": undefined;
|
|
9698
|
+
|
|
9059
9699
|
"sap/fe/macros/Chart": undefined;
|
|
9060
9700
|
|
|
9061
9701
|
"sap/fe/macros/chart/Action": undefined;
|
|
@@ -9074,6 +9714,8 @@ declare namespace sap {
|
|
|
9074
9714
|
|
|
9075
9715
|
"sap/fe/macros/ConditionalSwitchProperty": undefined;
|
|
9076
9716
|
|
|
9717
|
+
"sap/fe/macros/controls/BaseAction": undefined;
|
|
9718
|
+
|
|
9077
9719
|
"sap/fe/macros/controls/BuildingBlockObjectProperty": undefined;
|
|
9078
9720
|
|
|
9079
9721
|
"sap/fe/macros/controls/BuildingBlockWithTemplating": undefined;
|
|
@@ -9094,6 +9736,8 @@ declare namespace sap {
|
|
|
9094
9736
|
|
|
9095
9737
|
"sap/fe/macros/filterBar/FilterField": undefined;
|
|
9096
9738
|
|
|
9739
|
+
"sap/fe/macros/filterBar/FilterFieldOverride": undefined;
|
|
9740
|
+
|
|
9097
9741
|
"sap/fe/macros/form/Form.block": undefined;
|
|
9098
9742
|
|
|
9099
9743
|
"sap/fe/macros/FormElement": undefined;
|
|
@@ -9148,6 +9792,12 @@ declare namespace sap {
|
|
|
9148
9792
|
|
|
9149
9793
|
"sap/fe/macros/table/ColumnOverride": undefined;
|
|
9150
9794
|
|
|
9795
|
+
"sap/fe/macros/table/ITableAction": undefined;
|
|
9796
|
+
|
|
9797
|
+
"sap/fe/macros/table/ITableActionOrGroup": undefined;
|
|
9798
|
+
|
|
9799
|
+
"sap/fe/macros/table/ITableColumn": undefined;
|
|
9800
|
+
|
|
9151
9801
|
"sap/fe/macros/table/MassEdit": undefined;
|
|
9152
9802
|
|
|
9153
9803
|
"sap/fe/macros/table/OverflowGroups": undefined;
|