@sapui5/ts-types 1.115.1 → 1.116.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/README.md +4 -14
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.apf.d.ts +38 -30
- package/types/sap.ca.ui.d.ts +129 -87
- package/types/sap.chart.d.ts +3 -48
- package/types/sap.collaboration.d.ts +22 -20
- package/types/sap.esh.search.ui.d.ts +111 -107
- package/types/sap.f.d.ts +70 -248
- package/types/sap.fe.core.d.ts +130 -4
- package/types/sap.fe.macros.d.ts +21 -47
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -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 +1074 -1207
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.landvisz.d.ts +53 -27
- package/types/sap.m.d.ts +377 -2599
- package/types/sap.makit.d.ts +1 -36
- package/types/sap.me.d.ts +6 -63
- package/types/sap.ndc.d.ts +22 -25
- package/types/sap.ovp.d.ts +19 -6
- package/types/sap.rules.ui.d.ts +29 -37
- package/types/sap.sac.df.d.ts +7 -5
- package/types/sap.suite.ui.commons.d.ts +1012 -1165
- package/types/sap.suite.ui.generic.template.d.ts +1 -7
- package/types/sap.suite.ui.microchart.d.ts +4 -105
- package/types/sap.tnt.d.ts +51 -24
- package/types/sap.ui.codeeditor.d.ts +3 -19
- package/types/sap.ui.commons.d.ts +39 -415
- package/types/sap.ui.comp.d.ts +290 -778
- package/types/sap.ui.core.d.ts +253 -845
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -12
- package/types/sap.ui.fl.d.ts +4 -78
- package/types/sap.ui.generic.app.d.ts +28 -30
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +119 -93
- package/types/sap.ui.layout.d.ts +6 -40
- package/types/sap.ui.mdc.d.ts +803 -842
- package/types/sap.ui.richtexteditor.d.ts +2 -27
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -12
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +21 -187
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +24 -379
- package/types/sap.ui.ux3.d.ts +44 -483
- package/types/sap.ui.vbm.d.ts +496 -764
- package/types/sap.ui.vk.d.ts +1332 -1844
- package/types/sap.ui.vtm.d.ts +312 -386
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +731 -308
- package/types/sap.ui.webc.main.d.ts +4118 -1173
- package/types/sap.uiext.inbox.d.ts +1 -79
- package/types/sap.ushell.d.ts +220 -862
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -80
- package/types/sap.viz.d.ts +3 -823
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +2 -2
- package/types/sap.zen.crosstab.d.ts +2 -2
- package/types/sap.zen.dsh.d.ts +127 -157
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -278,9 +278,7 @@ declare namespace sap {
|
|
|
278
278
|
* Event is fired when the text in the field has changed AND the focus leaves the editor or when the Enter
|
|
279
279
|
* key is pressed.
|
|
280
280
|
*/
|
|
281
|
-
change?: (
|
|
282
|
-
oEvent: sap.ui.base.Event<sap.ui.richtexteditor.RichTextEditor$ChangeEventParameters>
|
|
283
|
-
) => void;
|
|
281
|
+
change?: (oEvent: RichTextEditor$ChangeEvent) => void;
|
|
284
282
|
|
|
285
283
|
/**
|
|
286
284
|
* Fired when the used editor is loaded and ready (its HTML is also created).
|
|
@@ -1705,36 +1703,13 @@ declare namespace sap {
|
|
|
1705
1703
|
*/
|
|
1706
1704
|
TinyMCE6 = "TinyMCE6",
|
|
1707
1705
|
}
|
|
1708
|
-
/**
|
|
1709
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$BeforeEditorInitEventParameters'
|
|
1710
|
-
* in 1.115.1 and any later releases.
|
|
1711
|
-
*/
|
|
1712
|
-
type $RichTextEditorBeforeEditorInitEventParameters = sap.ui.richtexteditor.RichTextEditor$BeforeEditorInitEventParameters;
|
|
1713
1706
|
|
|
1714
1707
|
type RichTextEditor$BeforeEditorInitEvent = sap.ui.base.Event<RichTextEditor$BeforeEditorInitEventParameters>;
|
|
1715
1708
|
|
|
1716
|
-
/**
|
|
1717
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ChangeEventParameters'
|
|
1718
|
-
* in 1.115.1 and any later releases.
|
|
1719
|
-
*/
|
|
1720
|
-
type $RichTextEditorChangeEventParameters = sap.ui.richtexteditor.RichTextEditor$ChangeEventParameters;
|
|
1721
|
-
|
|
1722
1709
|
type RichTextEditor$ChangeEvent = sap.ui.base.Event<RichTextEditor$ChangeEventParameters>;
|
|
1723
1710
|
|
|
1724
|
-
/**
|
|
1725
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ReadyEventParameters'
|
|
1726
|
-
* in 1.115.1 and any later releases.
|
|
1727
|
-
*/
|
|
1728
|
-
type $RichTextEditorReadyEventParameters = sap.ui.richtexteditor.RichTextEditor$ReadyEventParameters;
|
|
1729
|
-
|
|
1730
1711
|
type RichTextEditor$ReadyEvent = sap.ui.base.Event<RichTextEditor$ReadyEventParameters>;
|
|
1731
1712
|
|
|
1732
|
-
/**
|
|
1733
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ReadyRecurringEventParameters'
|
|
1734
|
-
* in 1.115.1 and any later releases.
|
|
1735
|
-
*/
|
|
1736
|
-
type $RichTextEditorReadyRecurringEventParameters = sap.ui.richtexteditor.RichTextEditor$ReadyRecurringEventParameters;
|
|
1737
|
-
|
|
1738
1713
|
type RichTextEditor$ReadyRecurringEvent = sap.ui.base.Event<RichTextEditor$ReadyRecurringEventParameters>;
|
|
1739
1714
|
}
|
|
1740
1715
|
}
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -665,20 +665,9 @@ declare namespace sap {
|
|
|
665
665
|
*/
|
|
666
666
|
Yellow = "Yellow",
|
|
667
667
|
}
|
|
668
|
-
/**
|
|
669
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TaskCircle$PressEventParameters'
|
|
670
|
-
* in 1.115.1 and any later releases.
|
|
671
|
-
*/
|
|
672
|
-
type $TaskCirclePressEventParameters = sap.ui.suite.TaskCircle$PressEventParameters;
|
|
673
668
|
|
|
674
669
|
type TaskCircle$PressEvent = sap.ui.base.Event<TaskCircle$PressEventParameters>;
|
|
675
670
|
|
|
676
|
-
/**
|
|
677
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VerticalProgressIndicator$PressEventParameters'
|
|
678
|
-
* in 1.115.1 and any later releases.
|
|
679
|
-
*/
|
|
680
|
-
type $VerticalProgressIndicatorPressEventParameters = sap.ui.suite.VerticalProgressIndicator$PressEventParameters;
|
|
681
|
-
|
|
682
671
|
type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<VerticalProgressIndicator$PressEventParameters>;
|
|
683
672
|
}
|
|
684
673
|
}
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -61,7 +61,7 @@ declare namespace sap {
|
|
|
61
61
|
* This event is fired when the selection is changed.
|
|
62
62
|
*/
|
|
63
63
|
selectionChange?: (
|
|
64
|
-
oEvent:
|
|
64
|
+
oEvent: MultiSelectionPlugin$SelectionChangeEvent
|
|
65
65
|
) => void;
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -659,20 +659,8 @@ declare namespace sap {
|
|
|
659
659
|
): this;
|
|
660
660
|
}
|
|
661
661
|
|
|
662
|
-
/**
|
|
663
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MultiSelectionPlugin$SelectionChangeEventParameters'
|
|
664
|
-
* in 1.115.1 and any later releases.
|
|
665
|
-
*/
|
|
666
|
-
type $MultiSelectionPluginSelectionChangeEventParameters = sap.ui.table.plugins.MultiSelectionPlugin$SelectionChangeEventParameters;
|
|
667
|
-
|
|
668
662
|
type MultiSelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<MultiSelectionPlugin$SelectionChangeEventParameters>;
|
|
669
663
|
|
|
670
|
-
/**
|
|
671
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SelectionPlugin$SelectionChangeEventParameters'
|
|
672
|
-
* in 1.115.1 and any later releases.
|
|
673
|
-
*/
|
|
674
|
-
type $SelectionPluginSelectionChangeEventParameters = sap.ui.table.plugins.SelectionPlugin$SelectionChangeEventParameters;
|
|
675
|
-
|
|
676
664
|
type SelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<SelectionPlugin$SelectionChangeEventParameters>;
|
|
677
665
|
}
|
|
678
666
|
|
|
@@ -1129,9 +1117,7 @@ declare namespace sap {
|
|
|
1129
1117
|
*
|
|
1130
1118
|
* Fires before the column menu is opened.
|
|
1131
1119
|
*/
|
|
1132
|
-
columnMenuOpen?: (
|
|
1133
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Column$ColumnMenuOpenEventParameters>
|
|
1134
|
-
) => void;
|
|
1120
|
+
columnMenuOpen?: (oEvent: Column$ColumnMenuOpenEvent) => void;
|
|
1135
1121
|
}
|
|
1136
1122
|
|
|
1137
1123
|
interface $ColumnMenuSettings extends sap.ui.unified.$MenuSettings {}
|
|
@@ -1202,9 +1188,7 @@ declare namespace sap {
|
|
|
1202
1188
|
/**
|
|
1203
1189
|
* The `press` is fired when the user triggers the corresponding action.
|
|
1204
1190
|
*/
|
|
1205
|
-
press?: (
|
|
1206
|
-
oEvent: sap.ui.base.Event<sap.ui.table.RowActionItem$PressEventParameters>
|
|
1207
|
-
) => void;
|
|
1191
|
+
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
1208
1192
|
}
|
|
1209
1193
|
|
|
1210
1194
|
interface $RowSettingsSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -1744,30 +1728,22 @@ declare namespace sap {
|
|
|
1744
1728
|
*
|
|
1745
1729
|
* **Note:** If a selection plugin is applied to the table, this event won't be fired.
|
|
1746
1730
|
*/
|
|
1747
|
-
rowSelectionChange?: (
|
|
1748
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$RowSelectionChangeEventParameters>
|
|
1749
|
-
) => void;
|
|
1731
|
+
rowSelectionChange?: (oEvent: Table$RowSelectionChangeEvent) => void;
|
|
1750
1732
|
|
|
1751
1733
|
/**
|
|
1752
1734
|
* fired when a column of the table has been selected
|
|
1753
1735
|
*/
|
|
1754
|
-
columnSelect?: (
|
|
1755
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnSelectEventParameters>
|
|
1756
|
-
) => void;
|
|
1736
|
+
columnSelect?: (oEvent: Table$ColumnSelectEvent) => void;
|
|
1757
1737
|
|
|
1758
1738
|
/**
|
|
1759
1739
|
* fired when a table column is resized.
|
|
1760
1740
|
*/
|
|
1761
|
-
columnResize?: (
|
|
1762
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnResizeEventParameters>
|
|
1763
|
-
) => void;
|
|
1741
|
+
columnResize?: (oEvent: Table$ColumnResizeEvent) => void;
|
|
1764
1742
|
|
|
1765
1743
|
/**
|
|
1766
1744
|
* fired when a table column is moved.
|
|
1767
1745
|
*/
|
|
1768
|
-
columnMove?: (
|
|
1769
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnMoveEventParameters>
|
|
1770
|
-
) => void;
|
|
1746
|
+
columnMove?: (oEvent: Table$ColumnMoveEvent) => void;
|
|
1771
1747
|
|
|
1772
1748
|
/**
|
|
1773
1749
|
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort }
|
|
@@ -1775,9 +1751,7 @@ declare namespace sap {
|
|
|
1775
1751
|
*
|
|
1776
1752
|
* Sorters that are directly applied to the table binding will not fire this event.
|
|
1777
1753
|
*/
|
|
1778
|
-
sort?: (
|
|
1779
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$SortEventParameters>
|
|
1780
|
-
) => void;
|
|
1754
|
+
sort?: (oEvent: Table$SortEvent) => void;
|
|
1781
1755
|
|
|
1782
1756
|
/**
|
|
1783
1757
|
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter }
|
|
@@ -1785,32 +1759,24 @@ declare namespace sap {
|
|
|
1785
1759
|
*
|
|
1786
1760
|
* Filters that are directly applied to the table binding will not fire this event.
|
|
1787
1761
|
*/
|
|
1788
|
-
filter?: (
|
|
1789
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$FilterEventParameters>
|
|
1790
|
-
) => void;
|
|
1762
|
+
filter?: (oEvent: Table$FilterEvent) => void;
|
|
1791
1763
|
|
|
1792
1764
|
/**
|
|
1793
1765
|
* fired when the table is grouped (experimental!).
|
|
1794
1766
|
*/
|
|
1795
|
-
group?: (
|
|
1796
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$GroupEventParameters>
|
|
1797
|
-
) => void;
|
|
1767
|
+
group?: (oEvent: Table$GroupEvent) => void;
|
|
1798
1768
|
|
|
1799
1769
|
/**
|
|
1800
1770
|
* fired when the visibility of a table column is changed.
|
|
1801
1771
|
*/
|
|
1802
|
-
columnVisibility?: (
|
|
1803
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnVisibilityEventParameters>
|
|
1804
|
-
) => void;
|
|
1772
|
+
columnVisibility?: (oEvent: Table$ColumnVisibilityEvent) => void;
|
|
1805
1773
|
|
|
1806
1774
|
/**
|
|
1807
1775
|
* @since 1.21.0
|
|
1808
1776
|
*
|
|
1809
1777
|
* fired when the user clicks a cell of the table (experimental!).
|
|
1810
1778
|
*/
|
|
1811
|
-
cellClick?: (
|
|
1812
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$CellClickEventParameters>
|
|
1813
|
-
) => void;
|
|
1779
|
+
cellClick?: (oEvent: Table$CellClickEvent) => void;
|
|
1814
1780
|
|
|
1815
1781
|
/**
|
|
1816
1782
|
* @since 1.21.0
|
|
@@ -1818,9 +1784,7 @@ declare namespace sap {
|
|
|
1818
1784
|
*
|
|
1819
1785
|
* fired when the user clicks a cell of the table.
|
|
1820
1786
|
*/
|
|
1821
|
-
cellContextmenu?: (
|
|
1822
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$CellContextmenuEventParameters>
|
|
1823
|
-
) => void;
|
|
1787
|
+
cellContextmenu?: (oEvent: Table$CellContextmenuEvent) => void;
|
|
1824
1788
|
|
|
1825
1789
|
/**
|
|
1826
1790
|
* @since 1.54
|
|
@@ -1828,7 +1792,7 @@ declare namespace sap {
|
|
|
1828
1792
|
* Fired when the user requests the context menu for a table cell.
|
|
1829
1793
|
*/
|
|
1830
1794
|
beforeOpenContextMenu?: (
|
|
1831
|
-
oEvent:
|
|
1795
|
+
oEvent: Table$BeforeOpenContextMenuEvent
|
|
1832
1796
|
) => void;
|
|
1833
1797
|
|
|
1834
1798
|
/**
|
|
@@ -1836,9 +1800,7 @@ declare namespace sap {
|
|
|
1836
1800
|
*
|
|
1837
1801
|
* fired when a column of the table should be freezed
|
|
1838
1802
|
*/
|
|
1839
|
-
columnFreeze?: (
|
|
1840
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnFreezeEventParameters>
|
|
1841
|
-
) => void;
|
|
1803
|
+
columnFreeze?: (oEvent: Table$ColumnFreezeEvent) => void;
|
|
1842
1804
|
|
|
1843
1805
|
/**
|
|
1844
1806
|
* @since 1.23.0
|
|
@@ -1846,9 +1808,7 @@ declare namespace sap {
|
|
|
1846
1808
|
* This event is triggered when the custom filter item of the column menu is pressed. The column on which
|
|
1847
1809
|
* the event was triggered is passed as parameter.
|
|
1848
1810
|
*/
|
|
1849
|
-
customFilter?: (
|
|
1850
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$CustomFilterEventParameters>
|
|
1851
|
-
) => void;
|
|
1811
|
+
customFilter?: (oEvent: Table$CustomFilterEvent) => void;
|
|
1852
1812
|
|
|
1853
1813
|
/**
|
|
1854
1814
|
* @since 1.37.0
|
|
@@ -1857,7 +1817,7 @@ declare namespace sap {
|
|
|
1857
1817
|
* The event even is fired when setFirstVisibleRow is called programmatically.
|
|
1858
1818
|
*/
|
|
1859
1819
|
firstVisibleRowChanged?: (
|
|
1860
|
-
oEvent:
|
|
1820
|
+
oEvent: Table$FirstVisibleRowChangedEvent
|
|
1861
1821
|
) => void;
|
|
1862
1822
|
|
|
1863
1823
|
/**
|
|
@@ -1865,9 +1825,7 @@ declare namespace sap {
|
|
|
1865
1825
|
*
|
|
1866
1826
|
* This event gets fired when the busy state of the table changes. It should only be used by composite controls.
|
|
1867
1827
|
*/
|
|
1868
|
-
busyStateChanged?: (
|
|
1869
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$BusyStateChangedEventParameters>
|
|
1870
|
-
) => void;
|
|
1828
|
+
busyStateChanged?: (oEvent: Table$BusyStateChangedEvent) => void;
|
|
1871
1829
|
|
|
1872
1830
|
/**
|
|
1873
1831
|
* @since 1.60
|
|
@@ -1875,9 +1833,7 @@ declare namespace sap {
|
|
|
1875
1833
|
* This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
|
|
1876
1834
|
* with the standard keyboard shortcut, if the focus is inside the table.
|
|
1877
1835
|
*/
|
|
1878
|
-
paste?: (
|
|
1879
|
-
oEvent: sap.ui.base.Event<sap.ui.table.Table$PasteEventParameters>
|
|
1880
|
-
) => void;
|
|
1836
|
+
paste?: (oEvent: Table$PasteEvent) => void;
|
|
1881
1837
|
|
|
1882
1838
|
/**
|
|
1883
1839
|
* @since 1.86
|
|
@@ -2042,9 +1998,7 @@ declare namespace sap {
|
|
|
2042
1998
|
/**
|
|
2043
1999
|
* Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
|
|
2044
2000
|
*/
|
|
2045
|
-
toggleOpenState?: (
|
|
2046
|
-
oEvent: sap.ui.base.Event<sap.ui.table.TreeTable$ToggleOpenStateEventParameters>
|
|
2047
|
-
) => void;
|
|
2001
|
+
toggleOpenState?: (oEvent: TreeTable$ToggleOpenStateEvent) => void;
|
|
2048
2002
|
}
|
|
2049
2003
|
|
|
2050
2004
|
interface Column$ColumnMenuOpenEventParameters {
|
|
@@ -9449,164 +9403,44 @@ declare namespace sap {
|
|
|
9449
9403
|
*/
|
|
9450
9404
|
type TreeAutoExpandMode = sap.ui.model.TreeAutoExpandMode;
|
|
9451
9405
|
|
|
9452
|
-
/**
|
|
9453
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Column$ColumnMenuOpenEventParameters'
|
|
9454
|
-
* in 1.115.1 and any later releases.
|
|
9455
|
-
*/
|
|
9456
|
-
type $ColumnColumnMenuOpenEventParameters = sap.ui.table.Column$ColumnMenuOpenEventParameters;
|
|
9457
|
-
|
|
9458
9406
|
type Column$ColumnMenuOpenEvent = sap.ui.base.Event<Column$ColumnMenuOpenEventParameters>;
|
|
9459
9407
|
|
|
9460
|
-
/**
|
|
9461
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowActionItem$PressEventParameters'
|
|
9462
|
-
* in 1.115.1 and any later releases.
|
|
9463
|
-
*/
|
|
9464
|
-
type $RowActionItemPressEventParameters = sap.ui.table.RowActionItem$PressEventParameters;
|
|
9465
|
-
|
|
9466
9408
|
type RowActionItem$PressEvent = sap.ui.base.Event<RowActionItem$PressEventParameters>;
|
|
9467
9409
|
|
|
9468
|
-
/**
|
|
9469
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$BeforeOpenContextMenuEventParameters'
|
|
9470
|
-
* in 1.115.1 and any later releases.
|
|
9471
|
-
*/
|
|
9472
|
-
type $TableBeforeOpenContextMenuEventParameters = sap.ui.table.Table$BeforeOpenContextMenuEventParameters;
|
|
9473
|
-
|
|
9474
9410
|
type Table$BeforeOpenContextMenuEvent = sap.ui.base.Event<Table$BeforeOpenContextMenuEventParameters>;
|
|
9475
9411
|
|
|
9476
|
-
/**
|
|
9477
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$BusyStateChangedEventParameters'
|
|
9478
|
-
* in 1.115.1 and any later releases.
|
|
9479
|
-
*/
|
|
9480
|
-
type $TableBusyStateChangedEventParameters = sap.ui.table.Table$BusyStateChangedEventParameters;
|
|
9481
|
-
|
|
9482
9412
|
type Table$BusyStateChangedEvent = sap.ui.base.Event<Table$BusyStateChangedEventParameters>;
|
|
9483
9413
|
|
|
9484
|
-
/**
|
|
9485
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$CellClickEventParameters'
|
|
9486
|
-
* in 1.115.1 and any later releases.
|
|
9487
|
-
*/
|
|
9488
|
-
type $TableCellClickEventParameters = sap.ui.table.Table$CellClickEventParameters;
|
|
9489
|
-
|
|
9490
9414
|
type Table$CellClickEvent = sap.ui.base.Event<Table$CellClickEventParameters>;
|
|
9491
9415
|
|
|
9492
|
-
/**
|
|
9493
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$CellContextmenuEventParameters'
|
|
9494
|
-
* in 1.115.1 and any later releases.
|
|
9495
|
-
*/
|
|
9496
|
-
type $TableCellContextmenuEventParameters = sap.ui.table.Table$CellContextmenuEventParameters;
|
|
9497
|
-
|
|
9498
9416
|
type Table$CellContextmenuEvent = sap.ui.base.Event<Table$CellContextmenuEventParameters>;
|
|
9499
9417
|
|
|
9500
|
-
/**
|
|
9501
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnFreezeEventParameters'
|
|
9502
|
-
* in 1.115.1 and any later releases.
|
|
9503
|
-
*/
|
|
9504
|
-
type $TableColumnFreezeEventParameters = sap.ui.table.Table$ColumnFreezeEventParameters;
|
|
9505
|
-
|
|
9506
9418
|
type Table$ColumnFreezeEvent = sap.ui.base.Event<Table$ColumnFreezeEventParameters>;
|
|
9507
9419
|
|
|
9508
|
-
/**
|
|
9509
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnMoveEventParameters'
|
|
9510
|
-
* in 1.115.1 and any later releases.
|
|
9511
|
-
*/
|
|
9512
|
-
type $TableColumnMoveEventParameters = sap.ui.table.Table$ColumnMoveEventParameters;
|
|
9513
|
-
|
|
9514
9420
|
type Table$ColumnMoveEvent = sap.ui.base.Event<Table$ColumnMoveEventParameters>;
|
|
9515
9421
|
|
|
9516
|
-
/**
|
|
9517
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnResizeEventParameters'
|
|
9518
|
-
* in 1.115.1 and any later releases.
|
|
9519
|
-
*/
|
|
9520
|
-
type $TableColumnResizeEventParameters = sap.ui.table.Table$ColumnResizeEventParameters;
|
|
9521
|
-
|
|
9522
9422
|
type Table$ColumnResizeEvent = sap.ui.base.Event<Table$ColumnResizeEventParameters>;
|
|
9523
9423
|
|
|
9524
|
-
/**
|
|
9525
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnSelectEventParameters'
|
|
9526
|
-
* in 1.115.1 and any later releases.
|
|
9527
|
-
*/
|
|
9528
|
-
type $TableColumnSelectEventParameters = sap.ui.table.Table$ColumnSelectEventParameters;
|
|
9529
|
-
|
|
9530
9424
|
type Table$ColumnSelectEvent = sap.ui.base.Event<Table$ColumnSelectEventParameters>;
|
|
9531
9425
|
|
|
9532
|
-
/**
|
|
9533
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnVisibilityEventParameters'
|
|
9534
|
-
* in 1.115.1 and any later releases.
|
|
9535
|
-
*/
|
|
9536
|
-
type $TableColumnVisibilityEventParameters = sap.ui.table.Table$ColumnVisibilityEventParameters;
|
|
9537
|
-
|
|
9538
9426
|
type Table$ColumnVisibilityEvent = sap.ui.base.Event<Table$ColumnVisibilityEventParameters>;
|
|
9539
9427
|
|
|
9540
|
-
/**
|
|
9541
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$CustomFilterEventParameters'
|
|
9542
|
-
* in 1.115.1 and any later releases.
|
|
9543
|
-
*/
|
|
9544
|
-
type $TableCustomFilterEventParameters = sap.ui.table.Table$CustomFilterEventParameters;
|
|
9545
|
-
|
|
9546
9428
|
type Table$CustomFilterEvent = sap.ui.base.Event<Table$CustomFilterEventParameters>;
|
|
9547
9429
|
|
|
9548
|
-
/**
|
|
9549
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$FilterEventParameters'
|
|
9550
|
-
* in 1.115.1 and any later releases.
|
|
9551
|
-
*/
|
|
9552
|
-
type $TableFilterEventParameters = sap.ui.table.Table$FilterEventParameters;
|
|
9553
|
-
|
|
9554
9430
|
type Table$FilterEvent = sap.ui.base.Event<Table$FilterEventParameters>;
|
|
9555
9431
|
|
|
9556
|
-
/**
|
|
9557
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$FirstVisibleRowChangedEventParameters'
|
|
9558
|
-
* in 1.115.1 and any later releases.
|
|
9559
|
-
*/
|
|
9560
|
-
type $TableFirstVisibleRowChangedEventParameters = sap.ui.table.Table$FirstVisibleRowChangedEventParameters;
|
|
9561
|
-
|
|
9562
9432
|
type Table$FirstVisibleRowChangedEvent = sap.ui.base.Event<Table$FirstVisibleRowChangedEventParameters>;
|
|
9563
9433
|
|
|
9564
|
-
/**
|
|
9565
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$GroupEventParameters'
|
|
9566
|
-
* in 1.115.1 and any later releases.
|
|
9567
|
-
*/
|
|
9568
|
-
type $TableGroupEventParameters = sap.ui.table.Table$GroupEventParameters;
|
|
9569
|
-
|
|
9570
9434
|
type Table$GroupEvent = sap.ui.base.Event<Table$GroupEventParameters>;
|
|
9571
9435
|
|
|
9572
|
-
/**
|
|
9573
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$PasteEventParameters'
|
|
9574
|
-
* in 1.115.1 and any later releases.
|
|
9575
|
-
*/
|
|
9576
|
-
type $TablePasteEventParameters = sap.ui.table.Table$PasteEventParameters;
|
|
9577
|
-
|
|
9578
9436
|
type Table$PasteEvent = sap.ui.base.Event<Table$PasteEventParameters>;
|
|
9579
9437
|
|
|
9580
|
-
/**
|
|
9581
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowSelectionChangeEventParameters'
|
|
9582
|
-
* in 1.115.1 and any later releases.
|
|
9583
|
-
*/
|
|
9584
|
-
type $TableRowSelectionChangeEventParameters = sap.ui.table.Table$RowSelectionChangeEventParameters;
|
|
9585
|
-
|
|
9586
9438
|
type Table$RowSelectionChangeEvent = sap.ui.base.Event<Table$RowSelectionChangeEventParameters>;
|
|
9587
9439
|
|
|
9588
|
-
/**
|
|
9589
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowsUpdatedEventParameters'
|
|
9590
|
-
* in 1.115.1 and any later releases.
|
|
9591
|
-
*/
|
|
9592
|
-
type $TableRowsUpdatedEventParameters = sap.ui.table.Table$RowsUpdatedEventParameters;
|
|
9593
|
-
|
|
9594
9440
|
type Table$RowsUpdatedEvent = sap.ui.base.Event<Table$RowsUpdatedEventParameters>;
|
|
9595
9441
|
|
|
9596
|
-
/**
|
|
9597
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$SortEventParameters'
|
|
9598
|
-
* in 1.115.1 and any later releases.
|
|
9599
|
-
*/
|
|
9600
|
-
type $TableSortEventParameters = sap.ui.table.Table$SortEventParameters;
|
|
9601
|
-
|
|
9602
9442
|
type Table$SortEvent = sap.ui.base.Event<Table$SortEventParameters>;
|
|
9603
9443
|
|
|
9604
|
-
/**
|
|
9605
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TreeTable$ToggleOpenStateEventParameters'
|
|
9606
|
-
* in 1.115.1 and any later releases.
|
|
9607
|
-
*/
|
|
9608
|
-
type $TreeTableToggleOpenStateEventParameters = sap.ui.table.TreeTable$ToggleOpenStateEventParameters;
|
|
9609
|
-
|
|
9610
9444
|
type TreeTable$ToggleOpenStateEvent = sap.ui.base.Event<TreeTable$ToggleOpenStateEventParameters>;
|
|
9611
9445
|
}
|
|
9612
9446
|
}
|