@sapui5/types 1.144.1 → 1.146.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 +167 -102
- package/types/sap.f.d.ts +73 -526
- 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 +1022 -207
- 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 +172 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +350 -29
- 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 +404 -21
- 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 +27 -26
- 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 +1181 -478
- 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 +9 -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 +65 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +379 -51
- package/types/sap.ui.richtexteditor.d.ts +33 -11
- 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 +74 -3
- 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 +376 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- 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 +198 -136
- 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,17 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
|
+
|
|
3
|
+
declare module "sap/fe/macros/AINotice" {
|
|
4
|
+
/**
|
|
5
|
+
* Building block that displays a AI notice.
|
|
6
|
+
* It's used to display information related to AI features. This information is rendered either
|
|
7
|
+
* as a link if the aggregation popoverContent is defined or as a label if there is no aggregation popoverContent.
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* @since 1.145.0
|
|
11
|
+
*/
|
|
12
|
+
export default class AINotice
|
|
13
|
+
extends /* was: sap.fe.controls.AINotice */ Object {}
|
|
14
|
+
}
|
|
2
15
|
|
|
3
16
|
declare module "sap/fe/macros/Chart" {
|
|
4
17
|
import {
|
|
@@ -368,7 +381,7 @@ declare module "sap/fe/macros/Chart" {
|
|
|
368
381
|
| `{${string}}`;
|
|
369
382
|
|
|
370
383
|
/**
|
|
371
|
-
*
|
|
384
|
+
* ID of the FilterBar building block associated with the chart.
|
|
372
385
|
*/
|
|
373
386
|
filterBar?: Control | string;
|
|
374
387
|
|
|
@@ -1547,6 +1560,8 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1547
1560
|
$BuildingBlockSettings,
|
|
1548
1561
|
} from "sap/fe/core/buildingBlocks/BuildingBlock";
|
|
1549
1562
|
|
|
1563
|
+
import Event from "sap/ui/base/Event";
|
|
1564
|
+
|
|
1550
1565
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1551
1566
|
|
|
1552
1567
|
/**
|
|
@@ -1577,6 +1592,73 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1577
1592
|
* @since 1.93.0
|
|
1578
1593
|
*/
|
|
1579
1594
|
export default class MicroChart extends BuildingBlock {
|
|
1595
|
+
/**
|
|
1596
|
+
*
|
|
1597
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1598
|
+
* to allow method chaining
|
|
1599
|
+
*/
|
|
1600
|
+
attachTitlePress(
|
|
1601
|
+
/**
|
|
1602
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
1603
|
+
* object when firing the event
|
|
1604
|
+
*/
|
|
1605
|
+
oData: object,
|
|
1606
|
+
/**
|
|
1607
|
+
* The function to be called when the event occurs
|
|
1608
|
+
*/
|
|
1609
|
+
fnFunction: (p1: Event) => void,
|
|
1610
|
+
/**
|
|
1611
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
1612
|
+
*/
|
|
1613
|
+
oListener?: object
|
|
1614
|
+
): this;
|
|
1615
|
+
/**
|
|
1616
|
+
*
|
|
1617
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1618
|
+
* to allow method chaining
|
|
1619
|
+
*/
|
|
1620
|
+
attachTitlePress(
|
|
1621
|
+
/**
|
|
1622
|
+
* The function to be called when the event occurs
|
|
1623
|
+
*/
|
|
1624
|
+
fnFunction: (p1: Event) => void,
|
|
1625
|
+
/**
|
|
1626
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
1627
|
+
*/
|
|
1628
|
+
oListener?: object
|
|
1629
|
+
): this;
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1633
|
+
* to allow method chaining
|
|
1634
|
+
*/
|
|
1635
|
+
detachTitlePress(
|
|
1636
|
+
/**
|
|
1637
|
+
* The function to be called when the event occurs
|
|
1638
|
+
*/
|
|
1639
|
+
fnFunction: (p1: Event) => void,
|
|
1640
|
+
/**
|
|
1641
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
1642
|
+
*/
|
|
1643
|
+
oListener?: object
|
|
1644
|
+
): this;
|
|
1645
|
+
/**
|
|
1646
|
+
* Fires event titlePress
|
|
1647
|
+
* to attached listeners.
|
|
1648
|
+
*
|
|
1649
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1650
|
+
*
|
|
1651
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
1652
|
+
* to allow method chaining
|
|
1653
|
+
*/
|
|
1654
|
+
fireTitlePress(
|
|
1655
|
+
/**
|
|
1656
|
+
* The parameters to pass along with the event.
|
|
1657
|
+
* See {@link types.EventHandler>} for the set of parameters that are
|
|
1658
|
+
* expected by the event handlers.
|
|
1659
|
+
*/
|
|
1660
|
+
mParameters?: {}
|
|
1661
|
+
): this;
|
|
1580
1662
|
/**
|
|
1581
1663
|
* Gets current value of property contextPath.
|
|
1582
1664
|
*
|
|
@@ -1591,6 +1673,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1591
1673
|
* @returns Value of property `hideOnNoData`
|
|
1592
1674
|
*/
|
|
1593
1675
|
getHideOnNoData(): boolean;
|
|
1676
|
+
/**
|
|
1677
|
+
* Gets current value of property linkAriaText.
|
|
1678
|
+
*
|
|
1679
|
+
*
|
|
1680
|
+
* @returns Value of property `linkAriaText`
|
|
1681
|
+
*/
|
|
1682
|
+
getLinkAriaText(): string;
|
|
1594
1683
|
/**
|
|
1595
1684
|
* Gets current value of property metaPath.
|
|
1596
1685
|
*
|
|
@@ -1612,6 +1701,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1612
1701
|
* @returns Value of property `size`
|
|
1613
1702
|
*/
|
|
1614
1703
|
getSize(): string;
|
|
1704
|
+
/**
|
|
1705
|
+
* Gets current value of property titleAsLink.
|
|
1706
|
+
*
|
|
1707
|
+
*
|
|
1708
|
+
* @returns Value of property `titleAsLink`
|
|
1709
|
+
*/
|
|
1710
|
+
getTitleAsLink(): boolean;
|
|
1615
1711
|
/**
|
|
1616
1712
|
* Gets current value of property contextPath.
|
|
1617
1713
|
*
|
|
@@ -1626,6 +1722,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1626
1722
|
* @returns Value of property `hideOnNoData`
|
|
1627
1723
|
*/
|
|
1628
1724
|
setHideOnNoData(): boolean;
|
|
1725
|
+
/**
|
|
1726
|
+
* Gets current value of property linkAriaText.
|
|
1727
|
+
*
|
|
1728
|
+
*
|
|
1729
|
+
* @returns Value of property `linkAriaText`
|
|
1730
|
+
*/
|
|
1731
|
+
setLinkAriaText(): string;
|
|
1629
1732
|
/**
|
|
1630
1733
|
* Gets current value of property metaPath.
|
|
1631
1734
|
*
|
|
@@ -1647,6 +1750,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1647
1750
|
* @returns Value of property `size`
|
|
1648
1751
|
*/
|
|
1649
1752
|
setSize(): string;
|
|
1753
|
+
/**
|
|
1754
|
+
* Gets current value of property titleAsLink.
|
|
1755
|
+
*
|
|
1756
|
+
*
|
|
1757
|
+
* @returns Value of property `titleAsLink`
|
|
1758
|
+
*/
|
|
1759
|
+
setTitleAsLink(): boolean;
|
|
1650
1760
|
}
|
|
1651
1761
|
/**
|
|
1652
1762
|
* Describes the settings that can be provided to the MicroChart constructor.
|
|
@@ -1662,6 +1772,13 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1662
1772
|
*/
|
|
1663
1773
|
hideOnNoData?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1664
1774
|
|
|
1775
|
+
/**
|
|
1776
|
+
* Custom ARIA text for the title link.
|
|
1777
|
+
* This property is only used when titleAsLink is set to true.
|
|
1778
|
+
* If not provided, default ARIA text based on the navigationType is used.
|
|
1779
|
+
*/
|
|
1780
|
+
linkAriaText?: string | PropertyBindingInfo;
|
|
1781
|
+
|
|
1665
1782
|
/**
|
|
1666
1783
|
* Metadata path to the MicroChart.
|
|
1667
1784
|
*/
|
|
@@ -1677,7 +1794,33 @@ declare module "sap/fe/macros/MicroChart" {
|
|
|
1677
1794
|
* Size of the MicroChart
|
|
1678
1795
|
*/
|
|
1679
1796
|
size?: string | PropertyBindingInfo;
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* Determines whether the micro chart title is displayed as a link or as a text.
|
|
1800
|
+
* When set to true, the title is rendered as a clickable link.
|
|
1801
|
+
*/
|
|
1802
|
+
titleAsLink?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1803
|
+
|
|
1804
|
+
/**
|
|
1805
|
+
* Event fired when the micro chart title link is pressed.
|
|
1806
|
+
* The event provides the binding context of the micro chart in the event parameters.
|
|
1807
|
+
* This event is only fired when titleAsLink is set to true.
|
|
1808
|
+
*/
|
|
1809
|
+
titlePress?: (oEvent: Event) => void;
|
|
1680
1810
|
}
|
|
1811
|
+
|
|
1812
|
+
/**
|
|
1813
|
+
* Parameters of the MicroChart#titlePress event.
|
|
1814
|
+
*/
|
|
1815
|
+
export interface MicroChart$TitlePressEventParameters {}
|
|
1816
|
+
|
|
1817
|
+
/**
|
|
1818
|
+
* Event object of the MicroChart#titlePress event.
|
|
1819
|
+
*/
|
|
1820
|
+
export type MicroChart$TitlePressEvent = Event<
|
|
1821
|
+
MicroChart$TitlePressEventParameters,
|
|
1822
|
+
MicroChart
|
|
1823
|
+
>;
|
|
1681
1824
|
}
|
|
1682
1825
|
|
|
1683
1826
|
declare module "sap/fe/macros/MultiValueField" {
|
|
@@ -1760,6 +1903,11 @@ declare module "sap/fe/macros/Page" {
|
|
|
1760
1903
|
* Describes the settings that can be provided to the Page constructor.
|
|
1761
1904
|
*/
|
|
1762
1905
|
export interface $PageSettings extends $BuildingBlockSettings {
|
|
1906
|
+
/**
|
|
1907
|
+
* ImageFitType of the avatar image. This property is only considered if the title property is defined.
|
|
1908
|
+
*/
|
|
1909
|
+
avatarImageFitType?: string | PropertyBindingInfo;
|
|
1910
|
+
|
|
1763
1911
|
/**
|
|
1764
1912
|
* Source of the avatar image. This property is considered only if the title property is defined.
|
|
1765
1913
|
*/
|
|
@@ -1771,6 +1919,11 @@ declare module "sap/fe/macros/Page" {
|
|
|
1771
1919
|
*/
|
|
1772
1920
|
description?: string | PropertyBindingInfo;
|
|
1773
1921
|
|
|
1922
|
+
/**
|
|
1923
|
+
* Controls the visibility of the footer.
|
|
1924
|
+
*/
|
|
1925
|
+
showFooter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1926
|
+
|
|
1774
1927
|
/**
|
|
1775
1928
|
* Title of the page. If no title is provided, the title, avatar, and description are derived from the unqualified
|
|
1776
1929
|
* HeaderInfo annotation associated with the entity.
|
|
@@ -1778,10 +1931,53 @@ declare module "sap/fe/macros/Page" {
|
|
|
1778
1931
|
*/
|
|
1779
1932
|
title?: string | PropertyBindingInfo;
|
|
1780
1933
|
|
|
1934
|
+
/**
|
|
1935
|
+
* Actions to be displayed in the title area (for example, Edit and Delete buttons).
|
|
1936
|
+
*/
|
|
1937
|
+
actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1938
|
+
|
|
1939
|
+
/**
|
|
1940
|
+
* Breadcrumbs to be displayed in the title area.
|
|
1941
|
+
*/
|
|
1942
|
+
breadcrumbs?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1943
|
+
|
|
1944
|
+
/**
|
|
1945
|
+
* Footer content (for example, toolbar with buttons).
|
|
1946
|
+
*/
|
|
1947
|
+
footer?: Control;
|
|
1948
|
+
|
|
1949
|
+
/**
|
|
1950
|
+
* Additional content to be displayed in the header after the avatar.
|
|
1951
|
+
*/
|
|
1952
|
+
headerContent?:
|
|
1953
|
+
| Control[]
|
|
1954
|
+
| Control
|
|
1955
|
+
| AggregationBindingInfo
|
|
1956
|
+
| `{${string}}`;
|
|
1957
|
+
|
|
1781
1958
|
/**
|
|
1782
1959
|
* Content(s) of the page
|
|
1783
1960
|
*/
|
|
1784
1961
|
items?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1962
|
+
|
|
1963
|
+
/**
|
|
1964
|
+
* Navigation actions to be displayed in the title area.
|
|
1965
|
+
*/
|
|
1966
|
+
navigationActions?:
|
|
1967
|
+
| Control[]
|
|
1968
|
+
| Control
|
|
1969
|
+
| AggregationBindingInfo
|
|
1970
|
+
| `{${string}}`;
|
|
1971
|
+
|
|
1972
|
+
/**
|
|
1973
|
+
* Content to be displayed next to the title (for example, GenericTag and Icon).
|
|
1974
|
+
*/
|
|
1975
|
+
titleContent?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
1976
|
+
|
|
1977
|
+
/**
|
|
1978
|
+
* Reference to a control that provides sticky subheader content.
|
|
1979
|
+
*/
|
|
1980
|
+
stickySubheaderProvider?: Control | string;
|
|
1785
1981
|
}
|
|
1786
1982
|
}
|
|
1787
1983
|
|
|
@@ -2123,6 +2319,10 @@ declare module "sap/fe/macros/Table" {
|
|
|
2123
2319
|
$MacroAPISettings,
|
|
2124
2320
|
} from "sap/fe/macros/MacroAPI";
|
|
2125
2321
|
|
|
2322
|
+
import Action from "sap/fe/macros/table/Action";
|
|
2323
|
+
|
|
2324
|
+
import Column from "sap/fe/macros/table/Column";
|
|
2325
|
+
|
|
2126
2326
|
import Event from "sap/ui/base/Event";
|
|
2127
2327
|
|
|
2128
2328
|
import Context from "sap/ui/model/odata/v4/Context";
|
|
@@ -2138,15 +2338,11 @@ declare module "sap/fe/macros/Table" {
|
|
|
2138
2338
|
|
|
2139
2339
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
2140
2340
|
|
|
2141
|
-
import
|
|
2142
|
-
|
|
2143
|
-
import Action from "sap/fe/macros/table/Action";
|
|
2341
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
2144
2342
|
|
|
2145
2343
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
2146
2344
|
|
|
2147
|
-
import
|
|
2148
|
-
|
|
2149
|
-
import Column from "sap/fe/macros/table/Column";
|
|
2345
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
2150
2346
|
|
|
2151
2347
|
import TableCreationOptions from "sap/fe/macros/table/TableCreationOptions";
|
|
2152
2348
|
|
|
@@ -2191,6 +2387,34 @@ declare module "sap/fe/macros/Table" {
|
|
|
2191
2387
|
__implements__sap_fe_core_IRowBindingInterface: boolean;
|
|
2192
2388
|
__implements__sap_fe_macros_Table_ITableBlock: boolean;
|
|
2193
2389
|
|
|
2390
|
+
/**
|
|
2391
|
+
* Adds an action to the table.
|
|
2392
|
+
*
|
|
2393
|
+
* @since 1.145.0
|
|
2394
|
+
* @experimental As of version 1.145.0.
|
|
2395
|
+
*
|
|
2396
|
+
* @returns Reference to this to allow method chaining
|
|
2397
|
+
*/
|
|
2398
|
+
addAction(
|
|
2399
|
+
/**
|
|
2400
|
+
* The action to add
|
|
2401
|
+
*/
|
|
2402
|
+
action: Action
|
|
2403
|
+
): this;
|
|
2404
|
+
/**
|
|
2405
|
+
* Adds a column to the table.
|
|
2406
|
+
*
|
|
2407
|
+
* @since 1.145.0
|
|
2408
|
+
* @experimental As of version 1.145.0.
|
|
2409
|
+
*
|
|
2410
|
+
* @returns Reference to this to allow method chaining
|
|
2411
|
+
*/
|
|
2412
|
+
addColumn(
|
|
2413
|
+
/**
|
|
2414
|
+
* The column to add
|
|
2415
|
+
*/
|
|
2416
|
+
column: Column
|
|
2417
|
+
): this;
|
|
2194
2418
|
/**
|
|
2195
2419
|
* Adds a message to the table.
|
|
2196
2420
|
* The message applies to the whole table and not to an individual table row.
|
|
@@ -2502,6 +2726,34 @@ declare module "sap/fe/macros/Table" {
|
|
|
2502
2726
|
* Requests a refresh of the table.
|
|
2503
2727
|
*/
|
|
2504
2728
|
refresh(): void;
|
|
2729
|
+
/**
|
|
2730
|
+
* Removes an action from the table.
|
|
2731
|
+
*
|
|
2732
|
+
* @since 1.145.0
|
|
2733
|
+
* @experimental As of version 1.145.0.
|
|
2734
|
+
*
|
|
2735
|
+
* @returns The removed action or null
|
|
2736
|
+
*/
|
|
2737
|
+
removeAction(
|
|
2738
|
+
/**
|
|
2739
|
+
* The action to remove, or its index or ID
|
|
2740
|
+
*/
|
|
2741
|
+
action: number | Action | string
|
|
2742
|
+
): null | Action;
|
|
2743
|
+
/**
|
|
2744
|
+
* Removes a column from the table.
|
|
2745
|
+
*
|
|
2746
|
+
* @since 1.145.0
|
|
2747
|
+
* @experimental As of version 1.145.0.
|
|
2748
|
+
*
|
|
2749
|
+
* @returns The removed column or null
|
|
2750
|
+
*/
|
|
2751
|
+
removeColumn(
|
|
2752
|
+
/**
|
|
2753
|
+
* The column to remove, or its index or ID
|
|
2754
|
+
*/
|
|
2755
|
+
column: number | Column | string
|
|
2756
|
+
): null | Column;
|
|
2505
2757
|
/**
|
|
2506
2758
|
* Removes a message from the table.
|
|
2507
2759
|
*/
|
|
@@ -2527,7 +2779,7 @@ declare module "sap/fe/macros/Table" {
|
|
|
2527
2779
|
* @since 1.124.0
|
|
2528
2780
|
* @experimental As of version 1.124.0.
|
|
2529
2781
|
*
|
|
2530
|
-
* @returns Reference to this
|
|
2782
|
+
* @returns Reference to this to allow method chaining
|
|
2531
2783
|
*/
|
|
2532
2784
|
setIgnoredFields(
|
|
2533
2785
|
/**
|
|
@@ -2839,9 +3091,8 @@ declare module "sap/fe/macros/Table" {
|
|
|
2839
3091
|
* Aggregate actions of the table.
|
|
2840
3092
|
*/
|
|
2841
3093
|
actions?:
|
|
2842
|
-
|
|
|
2843
|
-
|
|
|
2844
|
-
| Action
|
|
3094
|
+
| ITableActionOrGroup[]
|
|
3095
|
+
| ITableActionOrGroup
|
|
2845
3096
|
| AggregationBindingInfo
|
|
2846
3097
|
| `{${string}}`;
|
|
2847
3098
|
|
|
@@ -2854,9 +3105,8 @@ declare module "sap/fe/macros/Table" {
|
|
|
2854
3105
|
* Aggregate columns of the table.
|
|
2855
3106
|
*/
|
|
2856
3107
|
columns?:
|
|
2857
|
-
|
|
|
2858
|
-
|
|
|
2859
|
-
| Column
|
|
3108
|
+
| ITableColumn[]
|
|
3109
|
+
| ITableColumn
|
|
2860
3110
|
| AggregationBindingInfo
|
|
2861
3111
|
| `{${string}}`;
|
|
2862
3112
|
|
|
@@ -2951,6 +3201,10 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
2951
3201
|
$MacroAPISettings,
|
|
2952
3202
|
} from "sap/fe/macros/MacroAPI";
|
|
2953
3203
|
|
|
3204
|
+
import Action from "sap/fe/macros/table/Action";
|
|
3205
|
+
|
|
3206
|
+
import Column from "sap/fe/macros/table/Column";
|
|
3207
|
+
|
|
2954
3208
|
import Event from "sap/ui/base/Event";
|
|
2955
3209
|
|
|
2956
3210
|
import Context from "sap/ui/model/odata/v4/Context";
|
|
@@ -2966,15 +3220,11 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
2966
3220
|
|
|
2967
3221
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
2968
3222
|
|
|
2969
|
-
import
|
|
2970
|
-
|
|
2971
|
-
import Action from "sap/fe/macros/table/Action";
|
|
3223
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
2972
3224
|
|
|
2973
3225
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
2974
3226
|
|
|
2975
|
-
import
|
|
2976
|
-
|
|
2977
|
-
import Column from "sap/fe/macros/table/Column";
|
|
3227
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
2978
3228
|
|
|
2979
3229
|
import TreeTableCreationOptions from "sap/fe/macros/table/TreeTableCreationOptions";
|
|
2980
3230
|
|
|
@@ -2993,6 +3243,34 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
2993
3243
|
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/table/treeTable Overview of Tree Table Building Block}
|
|
2994
3244
|
*/
|
|
2995
3245
|
export default class TreeTable extends MacroAPI {
|
|
3246
|
+
/**
|
|
3247
|
+
* Adds an action to the table.
|
|
3248
|
+
*
|
|
3249
|
+
* @since 1.145.0
|
|
3250
|
+
* @experimental As of version 1.145.0.
|
|
3251
|
+
*
|
|
3252
|
+
* @returns Reference to this to allow method chaining
|
|
3253
|
+
*/
|
|
3254
|
+
addAction(
|
|
3255
|
+
/**
|
|
3256
|
+
* The action to add
|
|
3257
|
+
*/
|
|
3258
|
+
action: Action
|
|
3259
|
+
): this;
|
|
3260
|
+
/**
|
|
3261
|
+
* Adds a column to the table.
|
|
3262
|
+
*
|
|
3263
|
+
* @since 1.145.0
|
|
3264
|
+
* @experimental As of version 1.145.0.
|
|
3265
|
+
*
|
|
3266
|
+
* @returns Reference to this to allow method chaining
|
|
3267
|
+
*/
|
|
3268
|
+
addColumn(
|
|
3269
|
+
/**
|
|
3270
|
+
* The column to add
|
|
3271
|
+
*/
|
|
3272
|
+
column: Column
|
|
3273
|
+
): this;
|
|
2996
3274
|
/**
|
|
2997
3275
|
* Adds a message to the table.
|
|
2998
3276
|
* The message applies to the whole table and not to an individual table row.
|
|
@@ -3304,6 +3582,34 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3304
3582
|
* Requests a refresh of the table.
|
|
3305
3583
|
*/
|
|
3306
3584
|
refresh(): void;
|
|
3585
|
+
/**
|
|
3586
|
+
* Removes an action from the table.
|
|
3587
|
+
*
|
|
3588
|
+
* @since 1.145.0
|
|
3589
|
+
* @experimental As of version 1.145.0.
|
|
3590
|
+
*
|
|
3591
|
+
* @returns The removed action or null
|
|
3592
|
+
*/
|
|
3593
|
+
removeAction(
|
|
3594
|
+
/**
|
|
3595
|
+
* The action to remove, or its index or ID
|
|
3596
|
+
*/
|
|
3597
|
+
action: number | Action | string
|
|
3598
|
+
): null | Action;
|
|
3599
|
+
/**
|
|
3600
|
+
* Removes a column from the table.
|
|
3601
|
+
*
|
|
3602
|
+
* @since 1.145.0
|
|
3603
|
+
* @experimental As of version 1.145.0.
|
|
3604
|
+
*
|
|
3605
|
+
* @returns The removed column or null
|
|
3606
|
+
*/
|
|
3607
|
+
removeColumn(
|
|
3608
|
+
/**
|
|
3609
|
+
* The column to remove, or its index or ID
|
|
3610
|
+
*/
|
|
3611
|
+
column: number | Column | string
|
|
3612
|
+
): null | Column;
|
|
3307
3613
|
/**
|
|
3308
3614
|
* Removes a message from the table.
|
|
3309
3615
|
*/
|
|
@@ -3329,7 +3635,7 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3329
3635
|
* @since 1.124.0
|
|
3330
3636
|
* @experimental As of version 1.124.0.
|
|
3331
3637
|
*
|
|
3332
|
-
* @returns Reference to this
|
|
3638
|
+
* @returns Reference to this to allow method chaining
|
|
3333
3639
|
*/
|
|
3334
3640
|
setIgnoredFields(
|
|
3335
3641
|
/**
|
|
@@ -3667,9 +3973,8 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3667
3973
|
* Aggregate actions of the table.
|
|
3668
3974
|
*/
|
|
3669
3975
|
actions?:
|
|
3670
|
-
|
|
|
3671
|
-
|
|
|
3672
|
-
| Action
|
|
3976
|
+
| ITableActionOrGroup[]
|
|
3977
|
+
| ITableActionOrGroup
|
|
3673
3978
|
| AggregationBindingInfo
|
|
3674
3979
|
| `{${string}}`;
|
|
3675
3980
|
|
|
@@ -3682,9 +3987,8 @@ declare module "sap/fe/macros/TreeTable" {
|
|
|
3682
3987
|
* Aggregate columns of the table.
|
|
3683
3988
|
*/
|
|
3684
3989
|
columns?:
|
|
3685
|
-
|
|
|
3686
|
-
|
|
|
3687
|
-
| Column
|
|
3990
|
+
| ITableColumn[]
|
|
3991
|
+
| ITableColumn
|
|
3688
3992
|
| AggregationBindingInfo
|
|
3689
3993
|
| `{${string}}`;
|
|
3690
3994
|
|
|
@@ -3829,68 +4133,31 @@ declare module "sap/fe/macros/VariantManagement" {
|
|
|
3829
4133
|
|
|
3830
4134
|
declare module "sap/fe/macros/chart/Action" {
|
|
3831
4135
|
import {
|
|
3832
|
-
default as
|
|
3833
|
-
$
|
|
3834
|
-
} from "sap/fe/macros/controls/
|
|
4136
|
+
default as BaseAction,
|
|
4137
|
+
$BaseActionSettings,
|
|
4138
|
+
} from "sap/fe/macros/controls/BaseAction";
|
|
3835
4139
|
|
|
3836
4140
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3837
4141
|
|
|
3838
4142
|
/**
|
|
3839
4143
|
* Definition of a custom action to be used in the chart toolbar
|
|
3840
4144
|
*/
|
|
3841
|
-
export default class Action extends
|
|
4145
|
+
export default class Action extends BaseAction {}
|
|
3842
4146
|
/**
|
|
3843
4147
|
* Describes the settings that can be provided to the Action constructor.
|
|
3844
4148
|
*/
|
|
3845
|
-
export interface $ActionSettings
|
|
3846
|
-
extends $BuildingBlockObjectPropertySettings {
|
|
4149
|
+
export interface $ActionSettings extends $BaseActionSettings {
|
|
3847
4150
|
/**
|
|
3848
|
-
*
|
|
4151
|
+
* Event handler to be called when the user chooses the action
|
|
3849
4152
|
*/
|
|
3850
|
-
|
|
4153
|
+
press?: string | PropertyBindingInfo;
|
|
3851
4154
|
|
|
3852
4155
|
/**
|
|
3853
|
-
*
|
|
4156
|
+
* Defines if the action requires a selection.
|
|
3854
4157
|
*/
|
|
3855
|
-
|
|
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
|
-
|
|
3873
|
-
/**
|
|
3874
|
-
* Event handler to be called when the user chooses the action
|
|
3875
|
-
*/
|
|
3876
|
-
press?: string | PropertyBindingInfo;
|
|
3877
|
-
|
|
3878
|
-
/**
|
|
3879
|
-
* Defines the priority of the action in the overflow toolbar.
|
|
3880
|
-
*/
|
|
3881
|
-
priority?: string | PropertyBindingInfo;
|
|
3882
|
-
|
|
3883
|
-
/**
|
|
3884
|
-
* Defines if the action requires a selection.
|
|
3885
|
-
*/
|
|
3886
|
-
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3887
|
-
|
|
3888
|
-
/**
|
|
3889
|
-
* The text that will be displayed for this action
|
|
3890
|
-
*/
|
|
3891
|
-
text?: string | PropertyBindingInfo;
|
|
3892
|
-
}
|
|
3893
|
-
}
|
|
4158
|
+
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4159
|
+
}
|
|
4160
|
+
}
|
|
3894
4161
|
|
|
3895
4162
|
declare module "sap/fe/macros/chart/ActionGroup" {
|
|
3896
4163
|
import {
|
|
@@ -4315,7 +4582,7 @@ declare module "sap/fe/macros/chart/Chart" {
|
|
|
4315
4582
|
| `{${string}}`;
|
|
4316
4583
|
|
|
4317
4584
|
/**
|
|
4318
|
-
*
|
|
4585
|
+
* ID of the FilterBar building block associated with the chart.
|
|
4319
4586
|
*/
|
|
4320
4587
|
filterBar?: Control | string;
|
|
4321
4588
|
|
|
@@ -4373,6 +4640,89 @@ declare module "sap/fe/macros/chart/OverflowGroup" {
|
|
|
4373
4640
|
}
|
|
4374
4641
|
}
|
|
4375
4642
|
|
|
4643
|
+
declare module "sap/fe/macros/controls/BaseAction" {
|
|
4644
|
+
import {
|
|
4645
|
+
default as BuildingBlockObjectProperty,
|
|
4646
|
+
$BuildingBlockObjectPropertySettings,
|
|
4647
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
4648
|
+
|
|
4649
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4650
|
+
|
|
4651
|
+
/**
|
|
4652
|
+
* Base class for Action building blocks used across different UI areas, such as Table and Chart.
|
|
4653
|
+
* Contains common properties shared by all action types.
|
|
4654
|
+
*/
|
|
4655
|
+
export default class BaseAction
|
|
4656
|
+
extends BuildingBlockObjectProperty
|
|
4657
|
+
implements
|
|
4658
|
+
/* was: sap.fe.core.converters.controls.Common.Action.BaseActionType */ Object
|
|
4659
|
+
{
|
|
4660
|
+
__implements__sap_fe_core_converters_controls_Common_Action_BaseActionType: boolean;
|
|
4661
|
+
}
|
|
4662
|
+
/**
|
|
4663
|
+
* Describes the settings that can be provided to the BaseAction constructor.
|
|
4664
|
+
*/
|
|
4665
|
+
export interface $BaseActionSettings
|
|
4666
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
4667
|
+
/**
|
|
4668
|
+
* Reference to the key of another action already displayed in the toolbar to properly place this one
|
|
4669
|
+
*/
|
|
4670
|
+
anchor?: string | PropertyBindingInfo;
|
|
4671
|
+
|
|
4672
|
+
/**
|
|
4673
|
+
* Enables or disables the action
|
|
4674
|
+
*/
|
|
4675
|
+
enabled?: any | PropertyBindingInfo | `{${string}}`;
|
|
4676
|
+
|
|
4677
|
+
/**
|
|
4678
|
+
* Defines the group of the action in the overflow toolbar.
|
|
4679
|
+
*/
|
|
4680
|
+
group?: int | PropertyBindingInfo | `{${string}}`;
|
|
4681
|
+
|
|
4682
|
+
/**
|
|
4683
|
+
* Displays the AI Icon on the action button.
|
|
4684
|
+
*/
|
|
4685
|
+
isAIOperation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4686
|
+
|
|
4687
|
+
/**
|
|
4688
|
+
* Unique identifier of the action
|
|
4689
|
+
*/
|
|
4690
|
+
key?: string | PropertyBindingInfo;
|
|
4691
|
+
|
|
4692
|
+
/**
|
|
4693
|
+
* Defines the overflow group of the action in the overflow toolbar.
|
|
4694
|
+
* Takes precedence over the group property when defined.
|
|
4695
|
+
*/
|
|
4696
|
+
overflowGroup?: int | PropertyBindingInfo | `{${string}}`;
|
|
4697
|
+
|
|
4698
|
+
/**
|
|
4699
|
+
* Defines where this action is placed relative to the defined anchor
|
|
4700
|
+
* Allowed values are `Before` and `After`
|
|
4701
|
+
*/
|
|
4702
|
+
placement?: string | PropertyBindingInfo;
|
|
4703
|
+
|
|
4704
|
+
/**
|
|
4705
|
+
* Defines the priority of the action in the overflow toolbar.
|
|
4706
|
+
*/
|
|
4707
|
+
priority?: string | PropertyBindingInfo;
|
|
4708
|
+
|
|
4709
|
+
/**
|
|
4710
|
+
* Defines if the action requires a selection.
|
|
4711
|
+
*/
|
|
4712
|
+
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4713
|
+
|
|
4714
|
+
/**
|
|
4715
|
+
* The text that is to be displayed for this action
|
|
4716
|
+
*/
|
|
4717
|
+
text?: any | PropertyBindingInfo | `{${string}}`;
|
|
4718
|
+
|
|
4719
|
+
/**
|
|
4720
|
+
* Determines whether the action is visible.
|
|
4721
|
+
*/
|
|
4722
|
+
visible?: any | PropertyBindingInfo | `{${string}}`;
|
|
4723
|
+
}
|
|
4724
|
+
}
|
|
4725
|
+
|
|
4376
4726
|
declare module "sap/fe/macros/controls/BuildingBlockObjectProperty" {
|
|
4377
4727
|
import {
|
|
4378
4728
|
default as BuildingBlockBase,
|
|
@@ -4808,6 +5158,11 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
4808
5158
|
*/
|
|
4809
5159
|
displayMode?: string | PropertyBindingInfo;
|
|
4810
5160
|
|
|
5161
|
+
/**
|
|
5162
|
+
* Property for defining if the avatar image can be enlarged.
|
|
5163
|
+
*/
|
|
5164
|
+
enableEnlargeImage?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5165
|
+
|
|
4811
5166
|
/**
|
|
4812
5167
|
* Determines how the field should be rendered, e.g. as radio buttons.
|
|
4813
5168
|
*
|
|
@@ -4815,6 +5170,16 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
4815
5170
|
*/
|
|
4816
5171
|
fieldEditStyle?: string | PropertyBindingInfo;
|
|
4817
5172
|
|
|
5173
|
+
/**
|
|
5174
|
+
* Indicates whether the field has a situations indicator.
|
|
5175
|
+
*/
|
|
5176
|
+
hasSituationsIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5177
|
+
|
|
5178
|
+
/**
|
|
5179
|
+
* Property for defining how the avatar image fits within the given dimensions.
|
|
5180
|
+
*/
|
|
5181
|
+
imageFitType?: string | PropertyBindingInfo;
|
|
5182
|
+
|
|
4818
5183
|
/**
|
|
4819
5184
|
* Defines if and how the field measure will be displayed.
|
|
4820
5185
|
*
|
|
@@ -4916,6 +5281,8 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
4916
5281
|
AggregationBindingInfo,
|
|
4917
5282
|
} from "sap/ui/base/ManagedObject";
|
|
4918
5283
|
|
|
5284
|
+
import FilterFieldOverride from "sap/fe/macros/filterBar/FilterFieldOverride";
|
|
5285
|
+
|
|
4919
5286
|
import FilterField from "sap/fe/macros/filterBar/FilterField";
|
|
4920
5287
|
|
|
4921
5288
|
/**
|
|
@@ -5288,7 +5655,7 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
5288
5655
|
* Triggers the API search on the filter bar.
|
|
5289
5656
|
*
|
|
5290
5657
|
*
|
|
5291
|
-
* @returns Returns a promise which resolves if filter
|
|
5658
|
+
* @returns Returns a promise which resolves if the filter is triggered; otherwise it is rejected.
|
|
5292
5659
|
*/
|
|
5293
5660
|
triggerSearch(): Promise<object | undefined>;
|
|
5294
5661
|
}
|
|
@@ -5315,6 +5682,14 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
5315
5682
|
*/
|
|
5316
5683
|
metaPath?: string | PropertyBindingInfo;
|
|
5317
5684
|
|
|
5685
|
+
/**
|
|
5686
|
+
* Comma separated list of navigation properties which are considered for filtering.
|
|
5687
|
+
*/
|
|
5688
|
+
navigationPropertiesForPersonalization?:
|
|
5689
|
+
| string[]
|
|
5690
|
+
| PropertyBindingInfo
|
|
5691
|
+
| `{${string}}`;
|
|
5692
|
+
|
|
5318
5693
|
/**
|
|
5319
5694
|
* Handles the visibility of the 'Clear' button on the FilterBar.
|
|
5320
5695
|
*/
|
|
@@ -5334,7 +5709,8 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
5334
5709
|
* Aggregate filter fields of the FilterBar building block
|
|
5335
5710
|
*/
|
|
5336
5711
|
filterFields?:
|
|
5337
|
-
| FilterField
|
|
5712
|
+
| Array<FilterFieldOverride | FilterField>
|
|
5713
|
+
| FilterFieldOverride
|
|
5338
5714
|
| FilterField
|
|
5339
5715
|
| AggregationBindingInfo
|
|
5340
5716
|
| `{${string}}`;
|
|
@@ -5347,7 +5723,7 @@ declare module "sap/fe/macros/filterBar/FilterBar" {
|
|
|
5347
5723
|
|
|
5348
5724
|
/**
|
|
5349
5725
|
* This event is fired after either a filter value or the visibility of a filter item has been changed.
|
|
5350
|
-
* The event contains conditions that
|
|
5726
|
+
* The event contains conditions that are used as filters.
|
|
5351
5727
|
*/
|
|
5352
5728
|
filterChanged?: (oEvent: Event) => void;
|
|
5353
5729
|
|
|
@@ -5412,6 +5788,8 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5412
5788
|
AggregationBindingInfo,
|
|
5413
5789
|
} from "sap/ui/base/ManagedObject";
|
|
5414
5790
|
|
|
5791
|
+
import FilterFieldOverride from "sap/fe/macros/filterBar/FilterFieldOverride";
|
|
5792
|
+
|
|
5415
5793
|
import FilterField from "sap/fe/macros/filterBar/FilterField";
|
|
5416
5794
|
|
|
5417
5795
|
/**
|
|
@@ -5779,7 +6157,7 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5779
6157
|
* Triggers the API search on the filter bar.
|
|
5780
6158
|
*
|
|
5781
6159
|
*
|
|
5782
|
-
* @returns Returns a promise which resolves if filter
|
|
6160
|
+
* @returns Returns a promise which resolves if the filter is triggered; otherwise it is rejected.
|
|
5783
6161
|
*/
|
|
5784
6162
|
triggerSearch(): Promise<object | undefined>;
|
|
5785
6163
|
}
|
|
@@ -5803,6 +6181,14 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5803
6181
|
*/
|
|
5804
6182
|
metaPath?: string | PropertyBindingInfo;
|
|
5805
6183
|
|
|
6184
|
+
/**
|
|
6185
|
+
* Comma separated list of navigation properties which are considered for filtering.
|
|
6186
|
+
*/
|
|
6187
|
+
navigationPropertiesForPersonalization?:
|
|
6188
|
+
| string[]
|
|
6189
|
+
| PropertyBindingInfo
|
|
6190
|
+
| `{${string}}`;
|
|
6191
|
+
|
|
5806
6192
|
/**
|
|
5807
6193
|
* Handles the visibility of the 'Clear' button on the FilterBar.
|
|
5808
6194
|
*/
|
|
@@ -5822,7 +6208,8 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5822
6208
|
* Aggregate filter fields of the FilterBar building block
|
|
5823
6209
|
*/
|
|
5824
6210
|
filterFields?:
|
|
5825
|
-
| FilterField
|
|
6211
|
+
| Array<FilterFieldOverride | FilterField>
|
|
6212
|
+
| FilterFieldOverride
|
|
5826
6213
|
| FilterField
|
|
5827
6214
|
| AggregationBindingInfo
|
|
5828
6215
|
| `{${string}}`;
|
|
@@ -5835,7 +6222,7 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
5835
6222
|
|
|
5836
6223
|
/**
|
|
5837
6224
|
* This event is fired after either a filter value or the visibility of a filter item has been changed.
|
|
5838
|
-
* The event contains conditions that
|
|
6225
|
+
* The event contains conditions that are used as filters.
|
|
5839
6226
|
*/
|
|
5840
6227
|
filterChanged?: (oEvent: Event) => void;
|
|
5841
6228
|
|
|
@@ -5899,7 +6286,12 @@ declare module "sap/fe/macros/filterBar/FilterField" {
|
|
|
5899
6286
|
*
|
|
5900
6287
|
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/filterBar/filterBarCustoms Overview of Building Blocks}
|
|
5901
6288
|
*/
|
|
5902
|
-
export default class FilterField
|
|
6289
|
+
export default class FilterField
|
|
6290
|
+
extends BuildingBlockObjectProperty
|
|
6291
|
+
implements /* was: sap.fe.macros.filterBar.IFilterField */ Object
|
|
6292
|
+
{
|
|
6293
|
+
__implements__sap_fe_macros_filterBar_IFilterField: boolean;
|
|
6294
|
+
}
|
|
5903
6295
|
/**
|
|
5904
6296
|
* Describes the settings that can be provided to the FilterField constructor.
|
|
5905
6297
|
*/
|
|
@@ -5910,6 +6302,12 @@ declare module "sap/fe/macros/filterBar/FilterField" {
|
|
|
5910
6302
|
*/
|
|
5911
6303
|
anchor?: string | PropertyBindingInfo;
|
|
5912
6304
|
|
|
6305
|
+
/**
|
|
6306
|
+
* The filter field availability.
|
|
6307
|
+
* Allowed values are `Default`, `Adaptation`, and `Hidden`
|
|
6308
|
+
*/
|
|
6309
|
+
availability?: string | PropertyBindingInfo;
|
|
6310
|
+
|
|
5913
6311
|
/**
|
|
5914
6312
|
* The property name of the FilterField
|
|
5915
6313
|
*/
|
|
@@ -5927,7 +6325,7 @@ declare module "sap/fe/macros/filterBar/FilterField" {
|
|
|
5927
6325
|
placement?: string | PropertyBindingInfo;
|
|
5928
6326
|
|
|
5929
6327
|
/**
|
|
5930
|
-
* Defines which property
|
|
6328
|
+
* Defines which property are influenced by the FilterField.
|
|
5931
6329
|
* This must be a valid property of the entity as this can be used for SAP Companion integration
|
|
5932
6330
|
*/
|
|
5933
6331
|
property?: string | PropertyBindingInfo;
|
|
@@ -5947,6 +6345,57 @@ declare module "sap/fe/macros/filterBar/FilterField" {
|
|
|
5947
6345
|
}
|
|
5948
6346
|
}
|
|
5949
6347
|
|
|
6348
|
+
declare module "sap/fe/macros/filterBar/FilterFieldOverride" {
|
|
6349
|
+
import {
|
|
6350
|
+
default as BuildingBlockObjectProperty,
|
|
6351
|
+
$BuildingBlockObjectPropertySettings,
|
|
6352
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6353
|
+
|
|
6354
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6355
|
+
|
|
6356
|
+
/**
|
|
6357
|
+
* Definition of an override for the filter field to be used inside the FilterBar building block.
|
|
6358
|
+
*/
|
|
6359
|
+
export default class FilterFieldOverride
|
|
6360
|
+
extends BuildingBlockObjectProperty
|
|
6361
|
+
implements /* was: sap.fe.macros.filterBar.IFilterField */ Object
|
|
6362
|
+
{
|
|
6363
|
+
__implements__sap_fe_macros_filterBar_IFilterField: boolean;
|
|
6364
|
+
}
|
|
6365
|
+
/**
|
|
6366
|
+
* Describes the settings that can be provided to the FilterFieldOverride constructor.
|
|
6367
|
+
*/
|
|
6368
|
+
export interface $FilterFieldOverrideSettings
|
|
6369
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
6370
|
+
/**
|
|
6371
|
+
* Reference to the key of another filter already displayed in the table to properly place this one.
|
|
6372
|
+
*/
|
|
6373
|
+
anchor?: string | PropertyBindingInfo;
|
|
6374
|
+
|
|
6375
|
+
/**
|
|
6376
|
+
* The filter field availability.
|
|
6377
|
+
* Allowed values are `Default`, `Adaptation`, and `Hidden`
|
|
6378
|
+
*/
|
|
6379
|
+
availability?: string | PropertyBindingInfo;
|
|
6380
|
+
|
|
6381
|
+
/**
|
|
6382
|
+
* Unique identifier of the filter field to be overridden.
|
|
6383
|
+
*/
|
|
6384
|
+
key?: string | PropertyBindingInfo;
|
|
6385
|
+
|
|
6386
|
+
/**
|
|
6387
|
+
* Defines where this filter is placed relative to the defined anchor.
|
|
6388
|
+
* Allowed values are `Before` and `After`
|
|
6389
|
+
*/
|
|
6390
|
+
placement?: string | PropertyBindingInfo;
|
|
6391
|
+
|
|
6392
|
+
/**
|
|
6393
|
+
* If set, the FilterField is marked as a mandatory field.
|
|
6394
|
+
*/
|
|
6395
|
+
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6396
|
+
}
|
|
6397
|
+
}
|
|
6398
|
+
|
|
5950
6399
|
declare module "sap/fe/macros/form/Form.block" {
|
|
5951
6400
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
5952
6401
|
|
|
@@ -5989,6 +6438,25 @@ declare module "sap/fe/macros/form/Form.block" {
|
|
|
5989
6438
|
*/
|
|
5990
6439
|
metaPath?: string | PropertyBindingInfo;
|
|
5991
6440
|
|
|
6441
|
+
/**
|
|
6442
|
+
* Filters the navigation properties that can be used by flexibility features.
|
|
6443
|
+
* This property allows you to specify which navigation properties are available
|
|
6444
|
+
* for flexibility operations such as adding custom fields.
|
|
6445
|
+
* You can use the asterisk (*) wildcard to include all navigation properties,
|
|
6446
|
+
* or specify individual navigation property names to restrict the available options.
|
|
6447
|
+
* Example:
|
|
6448
|
+
* Allow all navigation properties: navigationPropertiesForAdaptationDialog: ["*"]
|
|
6449
|
+
* Example:
|
|
6450
|
+
* Allow only a specific navigation property: navigationPropertiesForAdaptationDialog: ["Customer/Name"]
|
|
6451
|
+
* Example:
|
|
6452
|
+
* Allow multiple specific navigation properties based on a wildcard: navigationPropertiesForAdaptationDialog:
|
|
6453
|
+
* ["Cust*\/Name"]
|
|
6454
|
+
*/
|
|
6455
|
+
navigationPropertiesForAdaptationDialog?:
|
|
6456
|
+
| string[]
|
|
6457
|
+
| PropertyBindingInfo
|
|
6458
|
+
| `{${string}}`;
|
|
6459
|
+
|
|
5992
6460
|
/**
|
|
5993
6461
|
* The title of the form control.
|
|
5994
6462
|
*/
|
|
@@ -6001,12 +6469,154 @@ declare module "sap/fe/macros/form/Form.block" {
|
|
|
6001
6469
|
}
|
|
6002
6470
|
}
|
|
6003
6471
|
|
|
6472
|
+
declare module "sap/fe/macros/form/FormLayoutOptions" {
|
|
6473
|
+
import {
|
|
6474
|
+
default as BuildingBlockObjectProperty,
|
|
6475
|
+
$BuildingBlockObjectPropertySettings,
|
|
6476
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6477
|
+
|
|
6478
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6479
|
+
|
|
6480
|
+
/**
|
|
6481
|
+
* Configuration options for the Form layout
|
|
6482
|
+
*/
|
|
6483
|
+
export default class FormLayoutOptions extends BuildingBlockObjectProperty {}
|
|
6484
|
+
/**
|
|
6485
|
+
* Describes the settings that can be provided to the FormLayoutOptions constructor.
|
|
6486
|
+
*/
|
|
6487
|
+
export interface $FormLayoutOptionsSettings
|
|
6488
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
6489
|
+
/**
|
|
6490
|
+
* If set, the usage of `labelSpanL` and `labelSpanXL` is dependent on the size of the used column.
|
|
6491
|
+
* If the space is less than 600px (e.g., 2 columns are used), `labelSpanM` is used instead.
|
|
6492
|
+
* Applicable for ResponsiveGridLayout type
|
|
6493
|
+
*/
|
|
6494
|
+
adjustLabelSpan?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6495
|
+
|
|
6496
|
+
/**
|
|
6497
|
+
* Defines the background color of the form
|
|
6498
|
+
*/
|
|
6499
|
+
backgroundDesign?: string | PropertyBindingInfo;
|
|
6500
|
+
|
|
6501
|
+
/**
|
|
6502
|
+
* The breakpoint (in pixels) between L size and XL size for the ResponsiveGridLayout
|
|
6503
|
+
* Applicable for ResponsiveGridLayout type
|
|
6504
|
+
*/
|
|
6505
|
+
breakpointL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6506
|
+
|
|
6507
|
+
/**
|
|
6508
|
+
* The breakpoint (in pixels) between M size and L size for the ResponsiveGridLayout
|
|
6509
|
+
* Applicable for ResponsiveGridLayout type
|
|
6510
|
+
*/
|
|
6511
|
+
breakpointM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6512
|
+
|
|
6513
|
+
/**
|
|
6514
|
+
* The breakpoint (in pixels) between XL size and XXL size for the ResponsiveGridLayout
|
|
6515
|
+
* Applicable for ResponsiveGridLayout type
|
|
6516
|
+
*/
|
|
6517
|
+
breakpointXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6518
|
+
|
|
6519
|
+
/**
|
|
6520
|
+
* Number of columns for L size
|
|
6521
|
+
* Applicable for ColumnLayout type
|
|
6522
|
+
*/
|
|
6523
|
+
columnsL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6524
|
+
|
|
6525
|
+
/**
|
|
6526
|
+
* Number of columns for M size
|
|
6527
|
+
* Applicable for ColumnLayout type
|
|
6528
|
+
*/
|
|
6529
|
+
columnsM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6530
|
+
|
|
6531
|
+
/**
|
|
6532
|
+
* Number of columns for XL size
|
|
6533
|
+
* Applicable for ColumnLayout type
|
|
6534
|
+
*/
|
|
6535
|
+
columnsXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6536
|
+
|
|
6537
|
+
/**
|
|
6538
|
+
* Number of grid cells that are empty at the end of a row in large screen size
|
|
6539
|
+
* Applicable for ColumnLayout type
|
|
6540
|
+
*/
|
|
6541
|
+
emptyCellsLarge?: int | PropertyBindingInfo | `{${string}}`;
|
|
6542
|
+
|
|
6543
|
+
/**
|
|
6544
|
+
* Number of empty grid cells that are added on the end of each line in L size
|
|
6545
|
+
* Applicable for ResponsiveGridLayout type
|
|
6546
|
+
*/
|
|
6547
|
+
emptySpanL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6548
|
+
|
|
6549
|
+
/**
|
|
6550
|
+
* Number of empty grid cells that are added on the end of each line in M size
|
|
6551
|
+
* Applicable for ResponsiveGridLayout type
|
|
6552
|
+
*/
|
|
6553
|
+
emptySpanM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6554
|
+
|
|
6555
|
+
/**
|
|
6556
|
+
* Number of empty grid cells that are added on the end of each line in S size
|
|
6557
|
+
* Applicable for ResponsiveGridLayout type
|
|
6558
|
+
*/
|
|
6559
|
+
emptySpanS?: int | PropertyBindingInfo | `{${string}}`;
|
|
6560
|
+
|
|
6561
|
+
/**
|
|
6562
|
+
* Number of empty grid cells that are added on the end of each line in XL size
|
|
6563
|
+
* Applicable for ResponsiveGridLayout type
|
|
6564
|
+
*/
|
|
6565
|
+
emptySpanXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6566
|
+
|
|
6567
|
+
/**
|
|
6568
|
+
* Number of grid cells that are reserved for the labels in large screen size
|
|
6569
|
+
* Applicable for ColumnLayout type
|
|
6570
|
+
*/
|
|
6571
|
+
labelCellsLarge?: int | PropertyBindingInfo | `{${string}}`;
|
|
6572
|
+
|
|
6573
|
+
/**
|
|
6574
|
+
* Number of grid cells that are used for the labels in L size
|
|
6575
|
+
* Applicable for ResponsiveGridLayout type
|
|
6576
|
+
*/
|
|
6577
|
+
labelSpanL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6578
|
+
|
|
6579
|
+
/**
|
|
6580
|
+
* Number of grid cells that are used for the labels in M size
|
|
6581
|
+
* Applicable for ResponsiveGridLayout type
|
|
6582
|
+
*/
|
|
6583
|
+
labelSpanM?: int | PropertyBindingInfo | `{${string}}`;
|
|
6584
|
+
|
|
6585
|
+
/**
|
|
6586
|
+
* Number of grid cells that are used for the labels in S size
|
|
6587
|
+
* Applicable for ResponsiveGridLayout type
|
|
6588
|
+
*/
|
|
6589
|
+
labelSpanS?: int | PropertyBindingInfo | `{${string}}`;
|
|
6590
|
+
|
|
6591
|
+
/**
|
|
6592
|
+
* Number of grid cells that are used for the labels in XL size
|
|
6593
|
+
* Applicable for ResponsiveGridLayout type
|
|
6594
|
+
*/
|
|
6595
|
+
labelSpanXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
6596
|
+
|
|
6597
|
+
/**
|
|
6598
|
+
* If set, a single container has the full size of the parent container.
|
|
6599
|
+
* Otherwise, the container size is determined by the number of columns and the spacing between the columns.
|
|
6600
|
+
* Applicable for ResponsiveGridLayout type
|
|
6601
|
+
*/
|
|
6602
|
+
singleContainerFullSize?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6603
|
+
|
|
6604
|
+
/**
|
|
6605
|
+
* The layout type to be used for the form
|
|
6606
|
+
*/
|
|
6607
|
+
type?: string | PropertyBindingInfo;
|
|
6608
|
+
}
|
|
6609
|
+
}
|
|
6610
|
+
|
|
6004
6611
|
declare module "sap/fe/macros/microchart/MicroChart" {
|
|
6005
6612
|
import {
|
|
6006
6613
|
default as MicroChart1,
|
|
6007
6614
|
$MicroChartSettings as $MicroChartSettings1,
|
|
6615
|
+
MicroChart$TitlePressEventParameters as MicroChart$TitlePressEventParameters1,
|
|
6008
6616
|
} from "sap/fe/macros/MicroChart";
|
|
6009
6617
|
|
|
6618
|
+
import Event from "sap/ui/base/Event";
|
|
6619
|
+
|
|
6010
6620
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6011
6621
|
|
|
6012
6622
|
/**
|
|
@@ -6034,6 +6644,73 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6034
6644
|
* @experimental
|
|
6035
6645
|
*/
|
|
6036
6646
|
export default class MicroChart extends MicroChart1 {
|
|
6647
|
+
/**
|
|
6648
|
+
*
|
|
6649
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6650
|
+
* to allow method chaining
|
|
6651
|
+
*/
|
|
6652
|
+
attachTitlePress(
|
|
6653
|
+
/**
|
|
6654
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
6655
|
+
* object when firing the event
|
|
6656
|
+
*/
|
|
6657
|
+
oData: object,
|
|
6658
|
+
/**
|
|
6659
|
+
* The function to be called when the event occurs
|
|
6660
|
+
*/
|
|
6661
|
+
fnFunction: (p1: Event) => void,
|
|
6662
|
+
/**
|
|
6663
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6664
|
+
*/
|
|
6665
|
+
oListener?: object
|
|
6666
|
+
): this;
|
|
6667
|
+
/**
|
|
6668
|
+
*
|
|
6669
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6670
|
+
* to allow method chaining
|
|
6671
|
+
*/
|
|
6672
|
+
attachTitlePress(
|
|
6673
|
+
/**
|
|
6674
|
+
* The function to be called when the event occurs
|
|
6675
|
+
*/
|
|
6676
|
+
fnFunction: (p1: Event) => void,
|
|
6677
|
+
/**
|
|
6678
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6679
|
+
*/
|
|
6680
|
+
oListener?: object
|
|
6681
|
+
): this;
|
|
6682
|
+
/**
|
|
6683
|
+
*
|
|
6684
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6685
|
+
* to allow method chaining
|
|
6686
|
+
*/
|
|
6687
|
+
detachTitlePress(
|
|
6688
|
+
/**
|
|
6689
|
+
* The function to be called when the event occurs
|
|
6690
|
+
*/
|
|
6691
|
+
fnFunction: (p1: Event) => void,
|
|
6692
|
+
/**
|
|
6693
|
+
* The context object to call the event handler with. Defaults to this `this` control
|
|
6694
|
+
*/
|
|
6695
|
+
oListener?: object
|
|
6696
|
+
): this;
|
|
6697
|
+
/**
|
|
6698
|
+
* Fires event titlePress
|
|
6699
|
+
* to attached listeners.
|
|
6700
|
+
*
|
|
6701
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6702
|
+
*
|
|
6703
|
+
* @returns Reference to sap.fe.macros.MicroChart
|
|
6704
|
+
* to allow method chaining
|
|
6705
|
+
*/
|
|
6706
|
+
fireTitlePress(
|
|
6707
|
+
/**
|
|
6708
|
+
* The parameters to pass along with the event.
|
|
6709
|
+
* See {@link types.EventHandler>} for the set of parameters that are
|
|
6710
|
+
* expected by the event handlers.
|
|
6711
|
+
*/
|
|
6712
|
+
mParameters?: {}
|
|
6713
|
+
): this;
|
|
6037
6714
|
/**
|
|
6038
6715
|
* Gets current value of property contextPath.
|
|
6039
6716
|
*
|
|
@@ -6048,6 +6725,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6048
6725
|
* @returns Value of property `hideOnNoData`
|
|
6049
6726
|
*/
|
|
6050
6727
|
getHideOnNoData(): boolean;
|
|
6728
|
+
/**
|
|
6729
|
+
* Gets current value of property linkAriaText.
|
|
6730
|
+
*
|
|
6731
|
+
*
|
|
6732
|
+
* @returns Value of property `linkAriaText`
|
|
6733
|
+
*/
|
|
6734
|
+
getLinkAriaText(): string;
|
|
6051
6735
|
/**
|
|
6052
6736
|
* Gets current value of property metaPath.
|
|
6053
6737
|
*
|
|
@@ -6069,6 +6753,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6069
6753
|
* @returns Value of property `size`
|
|
6070
6754
|
*/
|
|
6071
6755
|
getSize(): string;
|
|
6756
|
+
/**
|
|
6757
|
+
* Gets current value of property titleAsLink.
|
|
6758
|
+
*
|
|
6759
|
+
*
|
|
6760
|
+
* @returns Value of property `titleAsLink`
|
|
6761
|
+
*/
|
|
6762
|
+
getTitleAsLink(): boolean;
|
|
6072
6763
|
/**
|
|
6073
6764
|
* Gets current value of property contextPath.
|
|
6074
6765
|
*
|
|
@@ -6083,6 +6774,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6083
6774
|
* @returns Value of property `hideOnNoData`
|
|
6084
6775
|
*/
|
|
6085
6776
|
setHideOnNoData(): boolean;
|
|
6777
|
+
/**
|
|
6778
|
+
* Gets current value of property linkAriaText.
|
|
6779
|
+
*
|
|
6780
|
+
*
|
|
6781
|
+
* @returns Value of property `linkAriaText`
|
|
6782
|
+
*/
|
|
6783
|
+
setLinkAriaText(): string;
|
|
6086
6784
|
/**
|
|
6087
6785
|
* Gets current value of property metaPath.
|
|
6088
6786
|
*
|
|
@@ -6104,6 +6802,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6104
6802
|
* @returns Value of property `size`
|
|
6105
6803
|
*/
|
|
6106
6804
|
setSize(): string;
|
|
6805
|
+
/**
|
|
6806
|
+
* Gets current value of property titleAsLink.
|
|
6807
|
+
*
|
|
6808
|
+
*
|
|
6809
|
+
* @returns Value of property `titleAsLink`
|
|
6810
|
+
*/
|
|
6811
|
+
setTitleAsLink(): boolean;
|
|
6107
6812
|
}
|
|
6108
6813
|
/**
|
|
6109
6814
|
* Describes the settings that can be provided to the MicroChart constructor.
|
|
@@ -6122,6 +6827,13 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6122
6827
|
*/
|
|
6123
6828
|
hideOnNoData?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6124
6829
|
|
|
6830
|
+
/**
|
|
6831
|
+
* Custom ARIA text for the title link.
|
|
6832
|
+
* This property is only used when titleAsLink is set to true.
|
|
6833
|
+
* If not provided, default ARIA text based on the navigationType is used.
|
|
6834
|
+
*/
|
|
6835
|
+
linkAriaText?: string | PropertyBindingInfo;
|
|
6836
|
+
|
|
6125
6837
|
/**
|
|
6126
6838
|
* Metadata path to the MicroChart.
|
|
6127
6839
|
*/
|
|
@@ -6137,7 +6849,34 @@ declare module "sap/fe/macros/microchart/MicroChart" {
|
|
|
6137
6849
|
* Size of the MicroChart
|
|
6138
6850
|
*/
|
|
6139
6851
|
size?: string | PropertyBindingInfo;
|
|
6852
|
+
|
|
6853
|
+
/**
|
|
6854
|
+
* Determines whether the micro chart title is displayed as a link or as a text.
|
|
6855
|
+
* When set to true, the title is rendered as a clickable link.
|
|
6856
|
+
*/
|
|
6857
|
+
titleAsLink?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6858
|
+
|
|
6859
|
+
/**
|
|
6860
|
+
* Event fired when the micro chart title link is pressed.
|
|
6861
|
+
* The event provides the binding context of the micro chart in the event parameters.
|
|
6862
|
+
* This event is only fired when titleAsLink is set to true.
|
|
6863
|
+
*/
|
|
6864
|
+
titlePress?: (oEvent: Event) => void;
|
|
6140
6865
|
}
|
|
6866
|
+
|
|
6867
|
+
/**
|
|
6868
|
+
* Parameters of the MicroChart#titlePress event.
|
|
6869
|
+
*/
|
|
6870
|
+
export interface MicroChart$TitlePressEventParameters
|
|
6871
|
+
extends MicroChart$TitlePressEventParameters1 {}
|
|
6872
|
+
|
|
6873
|
+
/**
|
|
6874
|
+
* Event object of the MicroChart#titlePress event.
|
|
6875
|
+
*/
|
|
6876
|
+
export type MicroChart$TitlePressEvent = Event<
|
|
6877
|
+
MicroChart$TitlePressEventParameters,
|
|
6878
|
+
MicroChart
|
|
6879
|
+
>;
|
|
6141
6880
|
}
|
|
6142
6881
|
|
|
6143
6882
|
declare module "sap/fe/macros/richtexteditor/ButtonGroup" {
|
|
@@ -6160,6 +6899,8 @@ declare module "sap/fe/macros/richtexteditor/ButtonGroup" {
|
|
|
6160
6899
|
|
|
6161
6900
|
/**
|
|
6162
6901
|
* The priority of the group in the custom toolbar.
|
|
6902
|
+
*
|
|
6903
|
+
* @deprecated As of version now. since 1.136 use priority instead
|
|
6163
6904
|
*/
|
|
6164
6905
|
customToolbarPriority?: int | PropertyBindingInfo | `{${string}}`;
|
|
6165
6906
|
|
|
@@ -6175,6 +6916,8 @@ declare module "sap/fe/macros/richtexteditor/ButtonGroup" {
|
|
|
6175
6916
|
|
|
6176
6917
|
/**
|
|
6177
6918
|
* Row number in which the button should be
|
|
6919
|
+
*
|
|
6920
|
+
* @deprecated As of version now. since 1.136 this parameter no longer has any effect
|
|
6178
6921
|
*/
|
|
6179
6922
|
row?: int | PropertyBindingInfo | `{${string}}`;
|
|
6180
6923
|
|
|
@@ -6212,6 +6955,8 @@ declare module "sap/fe/macros/share/ShareOptions" {
|
|
|
6212
6955
|
$BuildingBlockObjectPropertySettings,
|
|
6213
6956
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6214
6957
|
|
|
6958
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6959
|
+
|
|
6215
6960
|
/**
|
|
6216
6961
|
* Share Options.
|
|
6217
6962
|
*/
|
|
@@ -6220,14 +6965,25 @@ declare module "sap/fe/macros/share/ShareOptions" {
|
|
|
6220
6965
|
* Describes the settings that can be provided to the ShareOptions constructor.
|
|
6221
6966
|
*/
|
|
6222
6967
|
export interface $ShareOptionsSettings
|
|
6223
|
-
extends $BuildingBlockObjectPropertySettings {
|
|
6968
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
6969
|
+
/**
|
|
6970
|
+
* Controls visibility of the "Share in SAP Build Work Zone" option.
|
|
6971
|
+
* This option appears as either "Share in SAP Jam" or "Share in SAP Build Work Zone"
|
|
6972
|
+
* depending on the customer's deployment. Both labels refer to the same functionality.
|
|
6973
|
+
*/
|
|
6974
|
+
showShareInWorkzone?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6975
|
+
}
|
|
6224
6976
|
}
|
|
6225
6977
|
|
|
6226
6978
|
declare module "sap/fe/macros/table/Action" {
|
|
6227
6979
|
import {
|
|
6228
|
-
default as
|
|
6229
|
-
$
|
|
6230
|
-
} from "sap/fe/macros/controls/
|
|
6980
|
+
default as BaseAction,
|
|
6981
|
+
$BaseActionSettings,
|
|
6982
|
+
} from "sap/fe/macros/controls/BaseAction";
|
|
6983
|
+
|
|
6984
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6985
|
+
|
|
6986
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6231
6987
|
|
|
6232
6988
|
import Event from "sap/ui/base/Event";
|
|
6233
6989
|
|
|
@@ -6236,7 +6992,13 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6236
6992
|
/**
|
|
6237
6993
|
* Definition of a custom action to be used inside the table toolbar
|
|
6238
6994
|
*/
|
|
6239
|
-
export default class Action
|
|
6995
|
+
export default class Action
|
|
6996
|
+
extends BaseAction
|
|
6997
|
+
implements ITableActionOrGroup, ITableAction
|
|
6998
|
+
{
|
|
6999
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7000
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7001
|
+
|
|
6240
7002
|
/**
|
|
6241
7003
|
*
|
|
6242
7004
|
* @returns Reference to sap.fe.macros.table.Action
|
|
@@ -6308,13 +7070,7 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6308
7070
|
/**
|
|
6309
7071
|
* Describes the settings that can be provided to the Action constructor.
|
|
6310
7072
|
*/
|
|
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
|
-
|
|
7073
|
+
export interface $ActionSettings extends $BaseActionSettings {
|
|
6318
7074
|
/**
|
|
6319
7075
|
* Determines the shortcut combination to trigger the action
|
|
6320
7076
|
*/
|
|
@@ -6331,42 +7087,11 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
6331
7087
|
*/
|
|
6332
7088
|
enableOnSelect?: string | PropertyBindingInfo;
|
|
6333
7089
|
|
|
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
7090
|
/**
|
|
6361
7091
|
* Defines if the action requires a selection.
|
|
6362
7092
|
*/
|
|
6363
7093
|
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6364
7094
|
|
|
6365
|
-
/**
|
|
6366
|
-
* The text that will be displayed for this action
|
|
6367
|
-
*/
|
|
6368
|
-
text?: string | PropertyBindingInfo;
|
|
6369
|
-
|
|
6370
7095
|
/**
|
|
6371
7096
|
* Determines whether the action is visible.
|
|
6372
7097
|
*/
|
|
@@ -6395,19 +7120,24 @@ declare module "sap/fe/macros/table/ActionGroup" {
|
|
|
6395
7120
|
$BuildingBlockObjectPropertySettings,
|
|
6396
7121
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6397
7122
|
|
|
7123
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7124
|
+
|
|
6398
7125
|
import {
|
|
6399
7126
|
PropertyBindingInfo,
|
|
6400
7127
|
AggregationBindingInfo,
|
|
6401
7128
|
} from "sap/ui/base/ManagedObject";
|
|
6402
7129
|
|
|
6403
|
-
import
|
|
6404
|
-
|
|
6405
|
-
import Action from "sap/fe/macros/table/Action";
|
|
7130
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6406
7131
|
|
|
6407
7132
|
/**
|
|
6408
7133
|
* Definition of a custom ActionGroup to be used inside the table toolbar
|
|
6409
7134
|
*/
|
|
6410
|
-
export default class ActionGroup
|
|
7135
|
+
export default class ActionGroup
|
|
7136
|
+
extends BuildingBlockObjectProperty
|
|
7137
|
+
implements ITableActionOrGroup
|
|
7138
|
+
{
|
|
7139
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7140
|
+
}
|
|
6411
7141
|
/**
|
|
6412
7142
|
* Describes the settings that can be provided to the ActionGroup constructor.
|
|
6413
7143
|
*/
|
|
@@ -6454,9 +7184,8 @@ declare module "sap/fe/macros/table/ActionGroup" {
|
|
|
6454
7184
|
* Determines the nested actions
|
|
6455
7185
|
*/
|
|
6456
7186
|
actions?:
|
|
6457
|
-
|
|
|
6458
|
-
|
|
|
6459
|
-
| Action
|
|
7187
|
+
| ITableAction[]
|
|
7188
|
+
| ITableAction
|
|
6460
7189
|
| AggregationBindingInfo
|
|
6461
7190
|
| `{${string}}`;
|
|
6462
7191
|
}
|
|
@@ -6468,19 +7197,24 @@ declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
|
6468
7197
|
$BuildingBlockObjectPropertySettings,
|
|
6469
7198
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6470
7199
|
|
|
7200
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7201
|
+
|
|
6471
7202
|
import {
|
|
6472
7203
|
PropertyBindingInfo,
|
|
6473
7204
|
AggregationBindingInfo,
|
|
6474
7205
|
} from "sap/ui/base/ManagedObject";
|
|
6475
7206
|
|
|
6476
|
-
import
|
|
6477
|
-
|
|
6478
|
-
import Action from "sap/fe/macros/table/Action";
|
|
7207
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
6479
7208
|
|
|
6480
7209
|
/**
|
|
6481
7210
|
* Definition of an action group override to be used inside the Table building block.
|
|
6482
7211
|
*/
|
|
6483
|
-
export default class ActionGroupOverride
|
|
7212
|
+
export default class ActionGroupOverride
|
|
7213
|
+
extends BuildingBlockObjectProperty
|
|
7214
|
+
implements ITableActionOrGroup
|
|
7215
|
+
{
|
|
7216
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7217
|
+
}
|
|
6484
7218
|
/**
|
|
6485
7219
|
* Describes the settings that can be provided to the ActionGroupOverride constructor.
|
|
6486
7220
|
*/
|
|
@@ -6507,9 +7241,8 @@ declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
|
6507
7241
|
* Determines the nested actions
|
|
6508
7242
|
*/
|
|
6509
7243
|
actions?:
|
|
6510
|
-
|
|
|
6511
|
-
|
|
|
6512
|
-
| Action
|
|
7244
|
+
| ITableAction[]
|
|
7245
|
+
| ITableAction
|
|
6513
7246
|
| AggregationBindingInfo
|
|
6514
7247
|
| `{${string}}`;
|
|
6515
7248
|
}
|
|
@@ -6521,12 +7254,22 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
6521
7254
|
$BuildingBlockObjectPropertySettings,
|
|
6522
7255
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6523
7256
|
|
|
7257
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7258
|
+
|
|
7259
|
+
import { ITableAction } from "sap/fe/macros/table/ITableAction";
|
|
7260
|
+
|
|
6524
7261
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6525
7262
|
|
|
6526
7263
|
/**
|
|
6527
7264
|
* Definition of an override for the action to be used inside the Table building block.
|
|
6528
7265
|
*/
|
|
6529
|
-
export default class ActionOverride
|
|
7266
|
+
export default class ActionOverride
|
|
7267
|
+
extends BuildingBlockObjectProperty
|
|
7268
|
+
implements ITableActionOrGroup, ITableAction
|
|
7269
|
+
{
|
|
7270
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7271
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7272
|
+
}
|
|
6530
7273
|
/**
|
|
6531
7274
|
* Describes the settings that can be provided to the ActionOverride constructor.
|
|
6532
7275
|
*/
|
|
@@ -6547,6 +7290,12 @@ declare module "sap/fe/macros/table/ActionOverride" {
|
|
|
6547
7290
|
*/
|
|
6548
7291
|
defaultValuesFunction?: string | PropertyBindingInfo;
|
|
6549
7292
|
|
|
7293
|
+
/**
|
|
7294
|
+
* Disables strict handling for this action.
|
|
7295
|
+
* When true, the action does not use strict message handling.
|
|
7296
|
+
*/
|
|
7297
|
+
disableStrictHandling?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7298
|
+
|
|
6550
7299
|
/**
|
|
6551
7300
|
* Determines if the auto scroll is enabled after executing the action.
|
|
6552
7301
|
*/
|
|
@@ -6621,6 +7370,8 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
6621
7370
|
$BuildingBlockObjectPropertySettings,
|
|
6622
7371
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6623
7372
|
|
|
7373
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7374
|
+
|
|
6624
7375
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6625
7376
|
|
|
6626
7377
|
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
@@ -6629,7 +7380,12 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
6629
7380
|
* Definition of a custom column to be used inside the table.
|
|
6630
7381
|
* The template for the column has to be provided as the default aggregation
|
|
6631
7382
|
*/
|
|
6632
|
-
export default class Column
|
|
7383
|
+
export default class Column
|
|
7384
|
+
extends BuildingBlockObjectProperty
|
|
7385
|
+
implements ITableColumn
|
|
7386
|
+
{
|
|
7387
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7388
|
+
}
|
|
6633
7389
|
/**
|
|
6634
7390
|
* Describes the settings that can be provided to the Column constructor.
|
|
6635
7391
|
*/
|
|
@@ -6799,6 +7555,8 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6799
7555
|
$BuildingBlockObjectPropertySettings,
|
|
6800
7556
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
6801
7557
|
|
|
7558
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7559
|
+
|
|
6802
7560
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6803
7561
|
|
|
6804
7562
|
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
@@ -6806,7 +7564,12 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6806
7564
|
/**
|
|
6807
7565
|
* Definition of an override for the column to be used inside the Table building block.
|
|
6808
7566
|
*/
|
|
6809
|
-
export default class ColumnOverride
|
|
7567
|
+
export default class ColumnOverride
|
|
7568
|
+
extends BuildingBlockObjectProperty
|
|
7569
|
+
implements ITableColumn
|
|
7570
|
+
{
|
|
7571
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7572
|
+
}
|
|
6810
7573
|
/**
|
|
6811
7574
|
* Describes the settings that can be provided to the ColumnOverride constructor.
|
|
6812
7575
|
*/
|
|
@@ -6857,6 +7620,66 @@ declare module "sap/fe/macros/table/ColumnOverride" {
|
|
|
6857
7620
|
}
|
|
6858
7621
|
}
|
|
6859
7622
|
|
|
7623
|
+
declare module "sap/fe/macros/table/ITableAction" {
|
|
7624
|
+
/**
|
|
7625
|
+
* Interface for controls that can be used as actions in a group 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
|
+
*
|
|
7634
|
+
*
|
|
7635
|
+
* @since 1.145.0
|
|
7636
|
+
*/
|
|
7637
|
+
export interface ITableAction {
|
|
7638
|
+
__implements__sap_fe_macros_table_ITableAction: boolean;
|
|
7639
|
+
}
|
|
7640
|
+
}
|
|
7641
|
+
|
|
7642
|
+
declare module "sap/fe/macros/table/ITableActionOrGroup" {
|
|
7643
|
+
/**
|
|
7644
|
+
* Interface for controls that can be used as actions or action groups inside the {@link sap.fe.macros.Table }
|
|
7645
|
+
* building block.
|
|
7646
|
+
* This interface is implemented by:
|
|
7647
|
+
*
|
|
7648
|
+
* - {@link sap.fe.macros.table.Action }
|
|
7649
|
+
*
|
|
7650
|
+
* - {@link sap.fe.macros.table.ActionOverride }
|
|
7651
|
+
*
|
|
7652
|
+
* - {@link sap.fe.macros.table.ActionGroup }
|
|
7653
|
+
*
|
|
7654
|
+
* - {@link sap.fe.macros.table.ActionGroupOverride }
|
|
7655
|
+
*
|
|
7656
|
+
*
|
|
7657
|
+
*
|
|
7658
|
+
* @since 1.145.0
|
|
7659
|
+
*/
|
|
7660
|
+
export interface ITableActionOrGroup {
|
|
7661
|
+
__implements__sap_fe_macros_table_ITableActionOrGroup: boolean;
|
|
7662
|
+
}
|
|
7663
|
+
}
|
|
7664
|
+
|
|
7665
|
+
declare module "sap/fe/macros/table/ITableColumn" {
|
|
7666
|
+
/**
|
|
7667
|
+
* Interface for controls that can be used as columns inside the {@link sap.fe.macros.Table } building block.
|
|
7668
|
+
* This interface is implemented by:
|
|
7669
|
+
*
|
|
7670
|
+
* - {@link sap.fe.macros.table.Column }
|
|
7671
|
+
*
|
|
7672
|
+
* - {@link sap.fe.macros.table.ColumnOverride }
|
|
7673
|
+
*
|
|
7674
|
+
*
|
|
7675
|
+
*
|
|
7676
|
+
* @since 1.145.0
|
|
7677
|
+
*/
|
|
7678
|
+
export interface ITableColumn {
|
|
7679
|
+
__implements__sap_fe_macros_table_ITableColumn: boolean;
|
|
7680
|
+
}
|
|
7681
|
+
}
|
|
7682
|
+
|
|
6860
7683
|
declare module "sap/fe/macros/table/MassEdit" {
|
|
6861
7684
|
import {
|
|
6862
7685
|
default as BuildingBlockObjectProperty,
|
|
@@ -6985,11 +7808,11 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
6985
7808
|
|
|
6986
7809
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
6987
7810
|
|
|
6988
|
-
import
|
|
7811
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
6989
7812
|
|
|
6990
7813
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
6991
7814
|
|
|
6992
|
-
import
|
|
7815
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
6993
7816
|
|
|
6994
7817
|
import TableCreationOptions from "sap/fe/macros/table/TableCreationOptions";
|
|
6995
7818
|
|
|
@@ -7030,17 +7853,15 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7030
7853
|
* usage.
|
|
7031
7854
|
*
|
|
7032
7855
|
*
|
|
7033
|
-
* @
|
|
7034
|
-
* @experimental As of version 1.124.0.
|
|
7856
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table} instead
|
|
7035
7857
|
*/
|
|
7036
7858
|
export default class Table extends Table1 {
|
|
7037
7859
|
/**
|
|
7038
7860
|
* Adds an action to the table.
|
|
7039
7861
|
*
|
|
7040
|
-
* @
|
|
7041
|
-
* @experimental As of version 1.124.0.
|
|
7862
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.addAction} instead
|
|
7042
7863
|
*
|
|
7043
|
-
* @returns Reference to this
|
|
7864
|
+
* @returns Reference to this to allow method chaining
|
|
7044
7865
|
*/
|
|
7045
7866
|
addAction(
|
|
7046
7867
|
/**
|
|
@@ -7051,10 +7872,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7051
7872
|
/**
|
|
7052
7873
|
* Adds a column to the table.
|
|
7053
7874
|
*
|
|
7054
|
-
* @
|
|
7055
|
-
* @experimental As of version 1.124.0.
|
|
7875
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.addColumn} instead
|
|
7056
7876
|
*
|
|
7057
|
-
* @returns Reference to this
|
|
7877
|
+
* @returns Reference to this to allow method chaining
|
|
7058
7878
|
*/
|
|
7059
7879
|
addColumn(
|
|
7060
7880
|
/**
|
|
@@ -7327,8 +8147,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7327
8147
|
/**
|
|
7328
8148
|
* Get the fields that should be ignored when generating the table.
|
|
7329
8149
|
*
|
|
7330
|
-
* @
|
|
7331
|
-
* @experimental As of version 1.124.0.
|
|
8150
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.getIgnoredFields} instead
|
|
7332
8151
|
*
|
|
7333
8152
|
* @returns The value of the ignoredFields property
|
|
7334
8153
|
*/
|
|
@@ -7336,8 +8155,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7336
8155
|
/**
|
|
7337
8156
|
* Gets the path to the metadata that should be used to generate the table.
|
|
7338
8157
|
*
|
|
7339
|
-
* @
|
|
7340
|
-
* @experimental As of version 1.124.0.
|
|
8158
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.getMetaPath} instead
|
|
7341
8159
|
*
|
|
7342
8160
|
* @returns The path to the metadata
|
|
7343
8161
|
*/
|
|
@@ -7385,8 +8203,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7385
8203
|
/**
|
|
7386
8204
|
* Removes an action from the table.
|
|
7387
8205
|
*
|
|
7388
|
-
* @
|
|
7389
|
-
* @experimental As of version 1.124.0.
|
|
8206
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.removeAction} instead
|
|
7390
8207
|
*
|
|
7391
8208
|
* @returns The removed action or null
|
|
7392
8209
|
*/
|
|
@@ -7399,8 +8216,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7399
8216
|
/**
|
|
7400
8217
|
* Removes a column from the table.
|
|
7401
8218
|
*
|
|
7402
|
-
* @
|
|
7403
|
-
* @experimental As of version 1.124.0.
|
|
8219
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.removeColumn} instead
|
|
7404
8220
|
*
|
|
7405
8221
|
* @returns The removed column or null
|
|
7406
8222
|
*/
|
|
@@ -7432,10 +8248,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7432
8248
|
/**
|
|
7433
8249
|
* Sets the fields that should be ignored when generating the table.
|
|
7434
8250
|
*
|
|
7435
|
-
* @
|
|
7436
|
-
* @experimental As of version 1.124.0.
|
|
8251
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.setIgnoredFields} instead
|
|
7437
8252
|
*
|
|
7438
|
-
* @returns Reference to this
|
|
8253
|
+
* @returns Reference to this to allow method chaining
|
|
7439
8254
|
*/
|
|
7440
8255
|
setIgnoredFields(
|
|
7441
8256
|
/**
|
|
@@ -7446,10 +8261,9 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7446
8261
|
/**
|
|
7447
8262
|
* Sets the path to the metadata that should be used to generate the table.
|
|
7448
8263
|
*
|
|
7449
|
-
* @
|
|
7450
|
-
* @experimental As of version 1.124.0.
|
|
8264
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table.setMetaPath} instead
|
|
7451
8265
|
*
|
|
7452
|
-
* @returns Reference to this
|
|
8266
|
+
* @returns Reference to this to allow method chaining
|
|
7453
8267
|
*/
|
|
7454
8268
|
setMetaPath(
|
|
7455
8269
|
/**
|
|
@@ -7502,7 +8316,7 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7502
8316
|
/**
|
|
7503
8317
|
* Describes the settings that can be provided to the Table constructor.
|
|
7504
8318
|
*
|
|
7505
|
-
* @
|
|
8319
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.Table} instead
|
|
7506
8320
|
*/
|
|
7507
8321
|
export interface $TableSettings extends $TableSettings1 {
|
|
7508
8322
|
/**
|
|
@@ -7763,9 +8577,8 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7763
8577
|
* Aggregate actions of the table.
|
|
7764
8578
|
*/
|
|
7765
8579
|
actions?:
|
|
7766
|
-
|
|
|
7767
|
-
|
|
|
7768
|
-
| Action
|
|
8580
|
+
| ITableActionOrGroup[]
|
|
8581
|
+
| ITableActionOrGroup
|
|
7769
8582
|
| AggregationBindingInfo
|
|
7770
8583
|
| `{${string}}`;
|
|
7771
8584
|
|
|
@@ -7778,9 +8591,8 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
7778
8591
|
* Aggregate columns of the table.
|
|
7779
8592
|
*/
|
|
7780
8593
|
columns?:
|
|
7781
|
-
|
|
|
7782
|
-
|
|
|
7783
|
-
| Column
|
|
8594
|
+
| ITableColumn[]
|
|
8595
|
+
| ITableColumn
|
|
7784
8596
|
| AggregationBindingInfo
|
|
7785
8597
|
| `{${string}}`;
|
|
7786
8598
|
|
|
@@ -7970,11 +8782,11 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
7970
8782
|
|
|
7971
8783
|
import OverflowGroup from "sap/fe/macros/table/OverflowGroups";
|
|
7972
8784
|
|
|
7973
|
-
import
|
|
8785
|
+
import { ITableActionOrGroup } from "sap/fe/macros/table/ITableActionOrGroup";
|
|
7974
8786
|
|
|
7975
8787
|
import AnalyticalConfiguration from "sap/fe/macros/table/AnalyticalConfiguration";
|
|
7976
8788
|
|
|
7977
|
-
import
|
|
8789
|
+
import { ITableColumn } from "sap/fe/macros/table/ITableColumn";
|
|
7978
8790
|
|
|
7979
8791
|
import TreeTableCreationOptions from "sap/fe/macros/table/TreeTableCreationOptions";
|
|
7980
8792
|
|
|
@@ -8015,17 +8827,15 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8015
8827
|
* usage.
|
|
8016
8828
|
*
|
|
8017
8829
|
*
|
|
8018
|
-
* @
|
|
8019
|
-
* @experimental As of version 1.125.0.
|
|
8830
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable} instead
|
|
8020
8831
|
*/
|
|
8021
8832
|
export default class TreeTable extends TreeTable1 {
|
|
8022
8833
|
/**
|
|
8023
8834
|
* Adds an action to the table.
|
|
8024
8835
|
*
|
|
8025
|
-
* @
|
|
8026
|
-
* @experimental As of version 1.125.0.
|
|
8836
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.addAction} instead
|
|
8027
8837
|
*
|
|
8028
|
-
* @returns Reference to this
|
|
8838
|
+
* @returns Reference to this to allow method chaining
|
|
8029
8839
|
*/
|
|
8030
8840
|
addAction(
|
|
8031
8841
|
/**
|
|
@@ -8036,10 +8846,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8036
8846
|
/**
|
|
8037
8847
|
* Adds a column to the table.
|
|
8038
8848
|
*
|
|
8039
|
-
* @
|
|
8040
|
-
* @experimental As of version 1.124.0.
|
|
8849
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.addColumn} instead
|
|
8041
8850
|
*
|
|
8042
|
-
* @returns Reference to this
|
|
8851
|
+
* @returns Reference to this to allow method chaining
|
|
8043
8852
|
*/
|
|
8044
8853
|
addColumn(
|
|
8045
8854
|
/**
|
|
@@ -8312,8 +9121,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8312
9121
|
/**
|
|
8313
9122
|
* Get the fields that should be ignored when generating the table.
|
|
8314
9123
|
*
|
|
8315
|
-
* @
|
|
8316
|
-
* @experimental As of version 1.125.0.
|
|
9124
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.getIgnoredFields} instead
|
|
8317
9125
|
*
|
|
8318
9126
|
* @returns The value of the ignoredFields property
|
|
8319
9127
|
*/
|
|
@@ -8321,8 +9129,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8321
9129
|
/**
|
|
8322
9130
|
* Gets the path to the metadata that should be used to generate the table.
|
|
8323
9131
|
*
|
|
8324
|
-
* @
|
|
8325
|
-
* @experimental As of version 1.125.0.
|
|
9132
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.getMetaPath} instead
|
|
8326
9133
|
*
|
|
8327
9134
|
* @returns The path to the metadata
|
|
8328
9135
|
*/
|
|
@@ -8370,8 +9177,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8370
9177
|
/**
|
|
8371
9178
|
* Removes an action from the table.
|
|
8372
9179
|
*
|
|
8373
|
-
* @
|
|
8374
|
-
* @experimental As of version 1.125.0.
|
|
9180
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.removeAction} instead
|
|
8375
9181
|
*
|
|
8376
9182
|
* @returns The removed action or null
|
|
8377
9183
|
*/
|
|
@@ -8384,8 +9190,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8384
9190
|
/**
|
|
8385
9191
|
* Removes a column from the table.
|
|
8386
9192
|
*
|
|
8387
|
-
* @
|
|
8388
|
-
* @experimental As of version 1.125.0.
|
|
9193
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.removeColumn} instead
|
|
8389
9194
|
*
|
|
8390
9195
|
* @returns The removed column or null
|
|
8391
9196
|
*/
|
|
@@ -8417,10 +9222,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8417
9222
|
/**
|
|
8418
9223
|
* Sets the fields that should be ignored when generating the table.
|
|
8419
9224
|
*
|
|
8420
|
-
* @
|
|
8421
|
-
* @experimental As of version 1.125.0.
|
|
9225
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.setIgnoredFields} instead
|
|
8422
9226
|
*
|
|
8423
|
-
* @returns Reference to this
|
|
9227
|
+
* @returns Reference to this to allow method chaining
|
|
8424
9228
|
*/
|
|
8425
9229
|
setIgnoredFields(
|
|
8426
9230
|
/**
|
|
@@ -8431,10 +9235,9 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8431
9235
|
/**
|
|
8432
9236
|
* Sets the path to the metadata that should be used to generate the table.
|
|
8433
9237
|
*
|
|
8434
|
-
* @
|
|
8435
|
-
* @experimental As of version 1.125.0.
|
|
9238
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable.setMetaPath} instead
|
|
8436
9239
|
*
|
|
8437
|
-
* @returns Reference to this
|
|
9240
|
+
* @returns Reference to this to allow method chaining
|
|
8438
9241
|
*/
|
|
8439
9242
|
setMetaPath(
|
|
8440
9243
|
/**
|
|
@@ -8487,7 +9290,7 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8487
9290
|
/**
|
|
8488
9291
|
* Describes the settings that can be provided to the TreeTable constructor.
|
|
8489
9292
|
*
|
|
8490
|
-
* @
|
|
9293
|
+
* @deprecated As of version 1.145. Use {@link sap.fe.macros.TreeTable} instead
|
|
8491
9294
|
*/
|
|
8492
9295
|
export interface $TreeTableSettings extends $TreeTableSettings1 {
|
|
8493
9296
|
/**
|
|
@@ -8774,9 +9577,8 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8774
9577
|
* Aggregate actions of the table.
|
|
8775
9578
|
*/
|
|
8776
9579
|
actions?:
|
|
8777
|
-
|
|
|
8778
|
-
|
|
|
8779
|
-
| Action
|
|
9580
|
+
| ITableActionOrGroup[]
|
|
9581
|
+
| ITableActionOrGroup
|
|
8780
9582
|
| AggregationBindingInfo
|
|
8781
9583
|
| `{${string}}`;
|
|
8782
9584
|
|
|
@@ -8789,9 +9591,8 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
8789
9591
|
* Aggregate columns of the table.
|
|
8790
9592
|
*/
|
|
8791
9593
|
columns?:
|
|
8792
|
-
|
|
|
8793
|
-
|
|
|
8794
|
-
| Column
|
|
9594
|
+
| ITableColumn[]
|
|
9595
|
+
| ITableColumn
|
|
8795
9596
|
| AggregationBindingInfo
|
|
8796
9597
|
| `{${string}}`;
|
|
8797
9598
|
|
|
@@ -9056,6 +9857,8 @@ declare module "sap/fe/macros/controls/section/ISingleSectionContributor" {
|
|
|
9056
9857
|
|
|
9057
9858
|
declare namespace sap {
|
|
9058
9859
|
interface IUI5DefineDependencyNames {
|
|
9860
|
+
"sap/fe/macros/AINotice": undefined;
|
|
9861
|
+
|
|
9059
9862
|
"sap/fe/macros/Chart": undefined;
|
|
9060
9863
|
|
|
9061
9864
|
"sap/fe/macros/chart/Action": undefined;
|
|
@@ -9074,6 +9877,8 @@ declare namespace sap {
|
|
|
9074
9877
|
|
|
9075
9878
|
"sap/fe/macros/ConditionalSwitchProperty": undefined;
|
|
9076
9879
|
|
|
9880
|
+
"sap/fe/macros/controls/BaseAction": undefined;
|
|
9881
|
+
|
|
9077
9882
|
"sap/fe/macros/controls/BuildingBlockObjectProperty": undefined;
|
|
9078
9883
|
|
|
9079
9884
|
"sap/fe/macros/controls/BuildingBlockWithTemplating": undefined;
|
|
@@ -9094,8 +9899,12 @@ declare namespace sap {
|
|
|
9094
9899
|
|
|
9095
9900
|
"sap/fe/macros/filterBar/FilterField": undefined;
|
|
9096
9901
|
|
|
9902
|
+
"sap/fe/macros/filterBar/FilterFieldOverride": undefined;
|
|
9903
|
+
|
|
9097
9904
|
"sap/fe/macros/form/Form.block": undefined;
|
|
9098
9905
|
|
|
9906
|
+
"sap/fe/macros/form/FormLayoutOptions": undefined;
|
|
9907
|
+
|
|
9099
9908
|
"sap/fe/macros/FormElement": undefined;
|
|
9100
9909
|
|
|
9101
9910
|
"sap/fe/macros/KPITag": undefined;
|
|
@@ -9148,6 +9957,12 @@ declare namespace sap {
|
|
|
9148
9957
|
|
|
9149
9958
|
"sap/fe/macros/table/ColumnOverride": undefined;
|
|
9150
9959
|
|
|
9960
|
+
"sap/fe/macros/table/ITableAction": undefined;
|
|
9961
|
+
|
|
9962
|
+
"sap/fe/macros/table/ITableActionOrGroup": undefined;
|
|
9963
|
+
|
|
9964
|
+
"sap/fe/macros/table/ITableColumn": undefined;
|
|
9965
|
+
|
|
9151
9966
|
"sap/fe/macros/table/MassEdit": undefined;
|
|
9152
9967
|
|
|
9153
9968
|
"sap/fe/macros/table/OverflowGroups": undefined;
|