@sapui5/ts-types 1.115.0 → 1.115.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.chart.d.ts +92 -49
  4. package/types/sap.f.d.ts +775 -686
  5. package/types/sap.fe.core.d.ts +57 -57
  6. package/types/sap.fe.macros.d.ts +66 -10
  7. package/types/sap.fe.navigation.d.ts +5 -5
  8. package/types/sap.fe.placeholder.d.ts +3 -0
  9. package/types/sap.fe.templates.d.ts +5 -6
  10. package/types/sap.fe.test.d.ts +4 -4
  11. package/types/sap.fe.tools.d.ts +3 -0
  12. package/types/sap.m.d.ts +7827 -6468
  13. package/types/sap.makit.d.ts +77 -30
  14. package/types/sap.me.d.ts +108 -75
  15. package/types/sap.ndc.d.ts +42 -30
  16. package/types/sap.suite.ui.generic.template.d.ts +72 -64
  17. package/types/sap.suite.ui.microchart.d.ts +354 -225
  18. package/types/sap.tnt.d.ts +67 -73
  19. package/types/sap.ui.codeeditor.d.ts +38 -34
  20. package/types/sap.ui.commons.d.ts +841 -675
  21. package/types/sap.ui.comp.d.ts +2545 -2065
  22. package/types/sap.ui.core.d.ts +2532 -1908
  23. package/types/sap.ui.dt.d.ts +1 -1
  24. package/types/sap.ui.export.d.ts +42 -27
  25. package/types/sap.ui.fl.d.ts +78 -56
  26. package/types/sap.ui.integration.d.ts +345 -299
  27. package/types/sap.ui.layout.d.ts +347 -337
  28. package/types/sap.ui.mdc.d.ts +959 -801
  29. package/types/sap.ui.richtexteditor.d.ts +62 -37
  30. package/types/sap.ui.rta.d.ts +7 -7
  31. package/types/sap.ui.suite.d.ts +23 -8
  32. package/types/sap.ui.support.d.ts +11 -11
  33. package/types/sap.ui.table.d.ts +476 -420
  34. package/types/sap.ui.testrecorder.d.ts +1 -1
  35. package/types/sap.ui.unified.d.ts +1186 -909
  36. package/types/sap.ui.ux3.d.ts +957 -736
  37. package/types/sap.ui.webc.common.d.ts +9 -9
  38. package/types/sap.ui.webc.fiori.d.ts +519 -386
  39. package/types/sap.ui.webc.main.d.ts +1377 -902
  40. package/types/sap.uiext.inbox.d.ts +135 -31
  41. package/types/sap.ushell.d.ts +379 -267
  42. package/types/sap.ushell_abap.d.ts +1 -1
  43. package/types/sap.uxap.d.ts +280 -242
  44. package/types/sap.viz.d.ts +1677 -601
@@ -1,9 +1,9 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
5
5
  /**
6
- * @SINCE 0.8
6
+ * @since 0.8
7
7
  *
8
8
  * Table-like controls, mainly for desktop scenarios.
9
9
  */
@@ -30,7 +30,7 @@ declare namespace sap {
30
30
  | `{${string}}`;
31
31
 
32
32
  /**
33
- * @SINCE 1.71
33
+ * @since 1.71
34
34
  *
35
35
  * Enables notifications that are displayed once a selection has been limited.
36
36
  */
@@ -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: sap.ui.base.Event<sap.ui.table.plugins.$MultiSelectionPluginSelectionChangeEventParameters>
64
+ oEvent: sap.ui.base.Event<sap.ui.table.plugins.MultiSelectionPlugin$SelectionChangeEventParameters>
65
65
  ) => void;
66
66
  }
67
67
 
@@ -81,9 +81,9 @@ declare namespace sap {
81
81
  selectionChange?: (oEvent: sap.ui.base.Event) => void;
82
82
  }
83
83
 
84
- interface $MultiSelectionPluginSelectionChangeEventParameters
84
+ interface MultiSelectionPlugin$SelectionChangeEventParameters
85
85
  extends sap.ui.table.plugins
86
- .$SelectionPluginSelectionChangeEventParameters {
86
+ .SelectionPlugin$SelectionChangeEventParameters {
87
87
  /**
88
88
  * Array of indices whose selection has been changed (either selected or deselected)
89
89
  */
@@ -100,10 +100,10 @@ declare namespace sap {
100
100
  customPayload?: object;
101
101
  }
102
102
 
103
- interface $SelectionPluginSelectionChangeEventParameters {}
103
+ interface SelectionPlugin$SelectionChangeEventParameters {}
104
104
 
105
105
  /**
106
- * @SINCE 1.64
106
+ * @since 1.64
107
107
  *
108
108
  * Implements a plugin to enable a special multi-selection behavior:
109
109
  * - No Select All checkbox, select all can only be done via range selection
@@ -206,9 +206,7 @@ declare namespace sap {
206
206
  /**
207
207
  * The function to be called when the event occurs
208
208
  */
209
- fnFunction: (
210
- p1: sap.ui.base.Event<sap.ui.table.plugins.$MultiSelectionPluginSelectionChangeEventParameters>
211
- ) => void,
209
+ fnFunction: (p1: MultiSelectionPlugin$SelectionChangeEvent) => void,
212
210
  /**
213
211
  * Context object to call the event handler with. Defaults to this `sap.ui.table.plugins.MultiSelectionPlugin`
214
212
  * itself
@@ -230,9 +228,7 @@ declare namespace sap {
230
228
  /**
231
229
  * The function to be called when the event occurs
232
230
  */
233
- fnFunction: (
234
- p1: sap.ui.base.Event<sap.ui.table.plugins.$MultiSelectionPluginSelectionChangeEventParameters>
235
- ) => void,
231
+ fnFunction: (p1: MultiSelectionPlugin$SelectionChangeEvent) => void,
236
232
  /**
237
233
  * Context object to call the event handler with. Defaults to this `sap.ui.table.plugins.MultiSelectionPlugin`
238
234
  * itself
@@ -261,16 +257,14 @@ declare namespace sap {
261
257
  /**
262
258
  * The function to be called, when the event occurs
263
259
  */
264
- fnFunction: (
265
- p1: sap.ui.base.Event<sap.ui.table.plugins.$MultiSelectionPluginSelectionChangeEventParameters>
266
- ) => void,
260
+ fnFunction: (p1: MultiSelectionPlugin$SelectionChangeEvent) => void,
267
261
  /**
268
262
  * Context object on which the given function had to be called
269
263
  */
270
264
  oListener?: object
271
265
  ): this;
272
266
  /**
273
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
267
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
274
268
  *
275
269
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
276
270
  *
@@ -280,10 +274,10 @@ declare namespace sap {
280
274
  /**
281
275
  * Parameters to pass along with the event
282
276
  */
283
- mParameters?: sap.ui.table.plugins.$MultiSelectionPluginSelectionChangeEventParameters
277
+ mParameters?: sap.ui.table.plugins.MultiSelectionPlugin$SelectionChangeEventParameters
284
278
  ): this;
285
279
  /**
286
- * @SINCE 1.71
280
+ * @since 1.71
287
281
  *
288
282
  * Gets current value of property {@link #getEnableNotification enableNotification}.
289
283
  *
@@ -386,7 +380,7 @@ declare namespace sap {
386
380
  oEventPayload?: object
387
381
  ): Promise<any>;
388
382
  /**
389
- * @SINCE 1.71
383
+ * @since 1.71
390
384
  *
391
385
  * Sets a new value for property {@link #getEnableNotification enableNotification}.
392
386
  *
@@ -509,8 +503,8 @@ declare namespace sap {
509
503
  ): this;
510
504
  }
511
505
  /**
512
- * @SINCE 1.64
513
- * @EXPERIMENTAL (since 1.64)
506
+ * @since 1.64
507
+ * @experimental (since 1.64)
514
508
  *
515
509
  * Implements the selection methods for a table.
516
510
  */
@@ -624,7 +618,7 @@ declare namespace sap {
624
618
  oListener?: object
625
619
  ): this;
626
620
  /**
627
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
621
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
628
622
  *
629
623
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
630
624
  *
@@ -664,6 +658,22 @@ declare namespace sap {
664
658
  bEnabled?: boolean
665
659
  ): this;
666
660
  }
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
+ type MultiSelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<MultiSelectionPlugin$SelectionChangeEventParameters>;
669
+
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
+ type SelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<SelectionPlugin$SelectionChangeEventParameters>;
667
677
  }
668
678
 
669
679
  interface $AnalyticalColumnSettings extends sap.ui.table.$ColumnSettings {
@@ -847,7 +857,7 @@ declare namespace sap {
847
857
  | `{${string}}`;
848
858
 
849
859
  /**
850
- * @SINCE 1.44.1
860
+ * @since 1.44.1
851
861
  *
852
862
  * Defines the minimum width of a column in pixels. This property only has an effect if the given column
853
863
  * width is flexible, for example with width `auto`. This property only influences the automatic behavior.
@@ -973,7 +983,7 @@ declare namespace sap {
973
983
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
974
984
 
975
985
  /**
976
- * @SINCE 1.9.2
986
+ * @since 1.9.2
977
987
  *
978
988
  * Type of filter. It is used to transform the search term into the specified type and should be the same
979
989
  * as defined in the binding for the column template. Default value is `sap.ui.model.type.String`. It can
@@ -1005,7 +1015,7 @@ declare namespace sap {
1005
1015
  | `{${string}}`;
1006
1016
 
1007
1017
  /**
1008
- * @SINCE 1.11.1
1018
+ * @since 1.11.1
1009
1019
  *
1010
1020
  * The name of the column which is used for the text representation of this column, for example, in menus.
1011
1021
  * If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
@@ -1014,7 +1024,7 @@ declare namespace sap {
1014
1024
  name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1015
1025
 
1016
1026
  /**
1017
- * @SINCE 1.13.0
1027
+ * @since 1.13.0
1018
1028
  *
1019
1029
  * Defines if the filter menu entry is displayed
1020
1030
  */
@@ -1024,7 +1034,7 @@ declare namespace sap {
1024
1034
  | `{${string}}`;
1025
1035
 
1026
1036
  /**
1027
- * @SINCE 1.13.0
1037
+ * @since 1.13.0
1028
1038
  *
1029
1039
  * Defines if the sort menu entries are displayed
1030
1040
  */
@@ -1047,7 +1057,7 @@ declare namespace sap {
1047
1057
  | `{${string}}`;
1048
1058
 
1049
1059
  /**
1050
- * @SINCE 1.21.1
1060
+ * @since 1.21.1
1051
1061
  *
1052
1062
  * Enables auto-resizing of the column on double clicking the resize bar. The width is determined on the
1053
1063
  * widest currently displayed content. It does not consider rows which are currently not scrolled into view.
@@ -1071,7 +1081,7 @@ declare namespace sap {
1071
1081
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
1072
1082
 
1073
1083
  /**
1074
- * @SINCE 1.13.1
1084
+ * @since 1.13.1
1075
1085
  *
1076
1086
  * Labels of the column which are displayed in the column header. Define a control for each header row in
1077
1087
  * the table. Use this aggregation if you want to use multiple headers per column.
@@ -1108,19 +1118,19 @@ declare namespace sap {
1108
1118
  menu?: sap.ui.unified.Menu;
1109
1119
 
1110
1120
  /**
1111
- * @SINCE 1.110
1121
+ * @since 1.110
1112
1122
  *
1113
1123
  * The menu that can be opened by the header element of this column.
1114
1124
  */
1115
1125
  headerMenu?: sap.ui.core.IColumnHeaderMenu | string;
1116
1126
 
1117
1127
  /**
1118
- * @SINCE 1.33.0
1128
+ * @since 1.33.0
1119
1129
  *
1120
1130
  * Fires before the column menu is opened.
1121
1131
  */
1122
1132
  columnMenuOpen?: (
1123
- oEvent: sap.ui.base.Event<sap.ui.table.$ColumnColumnMenuOpenEventParameters>
1133
+ oEvent: sap.ui.base.Event<sap.ui.table.Column$ColumnMenuOpenEventParameters>
1124
1134
  ) => void;
1125
1135
  }
1126
1136
 
@@ -1193,13 +1203,13 @@ declare namespace sap {
1193
1203
  * The `press` is fired when the user triggers the corresponding action.
1194
1204
  */
1195
1205
  press?: (
1196
- oEvent: sap.ui.base.Event<sap.ui.table.$RowActionItemPressEventParameters>
1206
+ oEvent: sap.ui.base.Event<sap.ui.table.RowActionItem$PressEventParameters>
1197
1207
  ) => void;
1198
1208
  }
1199
1209
 
1200
1210
  interface $RowSettingsSettings extends sap.ui.core.$ElementSettings {
1201
1211
  /**
1202
- * @SINCE 1.48.0
1212
+ * @since 1.48.0
1203
1213
  *
1204
1214
  * The highlight state of the rows.
1205
1215
  *
@@ -1215,7 +1225,7 @@ declare namespace sap {
1215
1225
  highlight?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1216
1226
 
1217
1227
  /**
1218
- * @SINCE 1.62
1228
+ * @since 1.62
1219
1229
  *
1220
1230
  * Defines the semantics of the {@link sap.ui.table.RowSettings#setHighlight highlight} property for accessibility
1221
1231
  * purposes. It is only used as an invisible text for screen reader support and does not add a tooltip to
@@ -1224,7 +1234,7 @@ declare namespace sap {
1224
1234
  highlightText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1225
1235
 
1226
1236
  /**
1227
- * @SINCE 1.72
1237
+ * @since 1.72
1228
1238
  *
1229
1239
  * The navigated state of a row.
1230
1240
  *
@@ -1430,7 +1440,7 @@ declare namespace sap {
1430
1440
  | `{${string}}`;
1431
1441
 
1432
1442
  /**
1433
- * @SINCE 1.9.2
1443
+ * @since 1.9.2
1434
1444
  *
1435
1445
  * Defines how the table handles the visible rows in the table.
1436
1446
  *
@@ -1488,7 +1498,7 @@ declare namespace sap {
1488
1498
  | `{${string}}`;
1489
1499
 
1490
1500
  /**
1491
- * @SINCE 1.18.7
1501
+ * @since 1.18.7
1492
1502
  *
1493
1503
  * Number of rows that are fix on the bottom. When you use a vertical scrollbar, only the rows which are
1494
1504
  * not fixed, will scroll.
@@ -1501,7 +1511,7 @@ declare namespace sap {
1501
1511
  | `{${string}}`;
1502
1512
 
1503
1513
  /**
1504
- * @SINCE 1.21.0
1514
+ * @since 1.21.0
1505
1515
  *
1506
1516
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
1507
1517
  */
@@ -1511,7 +1521,7 @@ declare namespace sap {
1511
1521
  | `{${string}}`;
1512
1522
 
1513
1523
  /**
1514
- * @SINCE 1.21.0
1524
+ * @since 1.21.0
1515
1525
  *
1516
1526
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
1517
1527
  */
@@ -1521,7 +1531,7 @@ declare namespace sap {
1521
1531
  | `{${string}}`;
1522
1532
 
1523
1533
  /**
1524
- * @SINCE 1.21.2
1534
+ * @since 1.21.2
1525
1535
  *
1526
1536
  * Setting this property to true will show an overlay on top of the Table content and users cannot click
1527
1537
  * anymore on the Table content.
@@ -1532,7 +1542,7 @@ declare namespace sap {
1532
1542
  | `{${string}}`;
1533
1543
 
1534
1544
  /**
1535
- * @SINCE 1.23.0
1545
+ * @since 1.23.0
1536
1546
  *
1537
1547
  * Specifies if a select all button should be displayed in the top left corner. This button is only displayed
1538
1548
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
@@ -1543,7 +1553,7 @@ declare namespace sap {
1543
1553
  | `{${string}}`;
1544
1554
 
1545
1555
  /**
1546
- * @SINCE 1.23.0
1556
+ * @since 1.23.0
1547
1557
  *
1548
1558
  * Set this parameter to true to implement your own filter behaviour. Instead of the filter input box a
1549
1559
  * button will be rendered for which' press event (customFilter) you can register an event handler.
@@ -1554,7 +1564,7 @@ declare namespace sap {
1554
1564
  | `{${string}}`;
1555
1565
 
1556
1566
  /**
1557
- * @SINCE 1.27.0
1567
+ * @since 1.27.0
1558
1568
  *
1559
1569
  * If set to `true`, the table changes its busy state, resulting in showing or hiding the busy indicator.
1560
1570
  * The table will switch to busy as soon as data is retrieved to be displayed in the currently visible rows.
@@ -1568,7 +1578,7 @@ declare namespace sap {
1568
1578
  | `{${string}}`;
1569
1579
 
1570
1580
  /**
1571
- * @SINCE 1.45.0
1581
+ * @since 1.45.0
1572
1582
  *
1573
1583
  * Number of row actions made visible which determines the width of the row action column. The values `0`,
1574
1584
  * `1` and `2` are possible.
@@ -1579,7 +1589,7 @@ declare namespace sap {
1579
1589
  | `{${string}}`;
1580
1590
 
1581
1591
  /**
1582
- * @SINCE 1.52
1592
+ * @since 1.52
1583
1593
  *
1584
1594
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
1585
1595
  */
@@ -1685,7 +1695,7 @@ declare namespace sap {
1685
1695
  rowSettingsTemplate?: sap.ui.table.RowSettings;
1686
1696
 
1687
1697
  /**
1688
- * @SINCE 1.54
1698
+ * @since 1.54
1689
1699
  *
1690
1700
  * Defines the context menu for the table.
1691
1701
  *
@@ -1699,7 +1709,7 @@ declare namespace sap {
1699
1709
  contextMenu?: sap.ui.core.IContextMenu;
1700
1710
 
1701
1711
  /**
1702
- * @SINCE 1.64
1712
+ * @since 1.64
1703
1713
  *
1704
1714
  * Plugin section of the table. Multiple plugins are possible, but always only **one** of a certain type.
1705
1715
  *
@@ -1715,7 +1725,7 @@ declare namespace sap {
1715
1725
  | `{${string}}`;
1716
1726
 
1717
1727
  /**
1718
- * @EXPERIMENTAL (since 1.28) - This feature has a limited functionality.
1728
+ * @experimental (since 1.28) - This feature has a limited functionality.
1719
1729
  *
1720
1730
  * The column by which the table is grouped. Grouping will only be performed if `enableGrouping` is set
1721
1731
  * to `true`. Setting `groupBy` in the view does not work and throws an error. It can only be set if the
@@ -1735,28 +1745,28 @@ declare namespace sap {
1735
1745
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
1736
1746
  */
1737
1747
  rowSelectionChange?: (
1738
- oEvent: sap.ui.base.Event<sap.ui.table.$TableRowSelectionChangeEventParameters>
1748
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$RowSelectionChangeEventParameters>
1739
1749
  ) => void;
1740
1750
 
1741
1751
  /**
1742
1752
  * fired when a column of the table has been selected
1743
1753
  */
1744
1754
  columnSelect?: (
1745
- oEvent: sap.ui.base.Event<sap.ui.table.$TableColumnSelectEventParameters>
1755
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnSelectEventParameters>
1746
1756
  ) => void;
1747
1757
 
1748
1758
  /**
1749
1759
  * fired when a table column is resized.
1750
1760
  */
1751
1761
  columnResize?: (
1752
- oEvent: sap.ui.base.Event<sap.ui.table.$TableColumnResizeEventParameters>
1762
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnResizeEventParameters>
1753
1763
  ) => void;
1754
1764
 
1755
1765
  /**
1756
1766
  * fired when a table column is moved.
1757
1767
  */
1758
1768
  columnMove?: (
1759
- oEvent: sap.ui.base.Event<sap.ui.table.$TableColumnMoveEventParameters>
1769
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnMoveEventParameters>
1760
1770
  ) => void;
1761
1771
 
1762
1772
  /**
@@ -1766,7 +1776,7 @@ declare namespace sap {
1766
1776
  * Sorters that are directly applied to the table binding will not fire this event.
1767
1777
  */
1768
1778
  sort?: (
1769
- oEvent: sap.ui.base.Event<sap.ui.table.$TableSortEventParameters>
1779
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$SortEventParameters>
1770
1780
  ) => void;
1771
1781
 
1772
1782
  /**
@@ -1776,101 +1786,101 @@ declare namespace sap {
1776
1786
  * Filters that are directly applied to the table binding will not fire this event.
1777
1787
  */
1778
1788
  filter?: (
1779
- oEvent: sap.ui.base.Event<sap.ui.table.$TableFilterEventParameters>
1789
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$FilterEventParameters>
1780
1790
  ) => void;
1781
1791
 
1782
1792
  /**
1783
1793
  * fired when the table is grouped (experimental!).
1784
1794
  */
1785
1795
  group?: (
1786
- oEvent: sap.ui.base.Event<sap.ui.table.$TableGroupEventParameters>
1796
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$GroupEventParameters>
1787
1797
  ) => void;
1788
1798
 
1789
1799
  /**
1790
1800
  * fired when the visibility of a table column is changed.
1791
1801
  */
1792
1802
  columnVisibility?: (
1793
- oEvent: sap.ui.base.Event<sap.ui.table.$TableColumnVisibilityEventParameters>
1803
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnVisibilityEventParameters>
1794
1804
  ) => void;
1795
1805
 
1796
1806
  /**
1797
- * @SINCE 1.21.0
1807
+ * @since 1.21.0
1798
1808
  *
1799
1809
  * fired when the user clicks a cell of the table (experimental!).
1800
1810
  */
1801
1811
  cellClick?: (
1802
- oEvent: sap.ui.base.Event<sap.ui.table.$TableCellClickEventParameters>
1812
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$CellClickEventParameters>
1803
1813
  ) => void;
1804
1814
 
1805
1815
  /**
1806
- * @SINCE 1.21.0
1816
+ * @since 1.21.0
1807
1817
  * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
1808
1818
  *
1809
1819
  * fired when the user clicks a cell of the table.
1810
1820
  */
1811
1821
  cellContextmenu?: (
1812
- oEvent: sap.ui.base.Event<sap.ui.table.$TableCellContextmenuEventParameters>
1822
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$CellContextmenuEventParameters>
1813
1823
  ) => void;
1814
1824
 
1815
1825
  /**
1816
- * @SINCE 1.54
1826
+ * @since 1.54
1817
1827
  *
1818
1828
  * Fired when the user requests the context menu for a table cell.
1819
1829
  */
1820
1830
  beforeOpenContextMenu?: (
1821
- oEvent: sap.ui.base.Event<sap.ui.table.$TableBeforeOpenContextMenuEventParameters>
1831
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$BeforeOpenContextMenuEventParameters>
1822
1832
  ) => void;
1823
1833
 
1824
1834
  /**
1825
- * @SINCE 1.21.0
1835
+ * @since 1.21.0
1826
1836
  *
1827
1837
  * fired when a column of the table should be freezed
1828
1838
  */
1829
1839
  columnFreeze?: (
1830
- oEvent: sap.ui.base.Event<sap.ui.table.$TableColumnFreezeEventParameters>
1840
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$ColumnFreezeEventParameters>
1831
1841
  ) => void;
1832
1842
 
1833
1843
  /**
1834
- * @SINCE 1.23.0
1844
+ * @since 1.23.0
1835
1845
  *
1836
1846
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
1837
1847
  * the event was triggered is passed as parameter.
1838
1848
  */
1839
1849
  customFilter?: (
1840
- oEvent: sap.ui.base.Event<sap.ui.table.$TableCustomFilterEventParameters>
1850
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$CustomFilterEventParameters>
1841
1851
  ) => void;
1842
1852
 
1843
1853
  /**
1844
- * @SINCE 1.37.0
1854
+ * @since 1.37.0
1845
1855
  *
1846
1856
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
1847
1857
  * The event even is fired when setFirstVisibleRow is called programmatically.
1848
1858
  */
1849
1859
  firstVisibleRowChanged?: (
1850
- oEvent: sap.ui.base.Event<sap.ui.table.$TableFirstVisibleRowChangedEventParameters>
1860
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$FirstVisibleRowChangedEventParameters>
1851
1861
  ) => void;
1852
1862
 
1853
1863
  /**
1854
- * @SINCE 1.37.0
1864
+ * @since 1.37.0
1855
1865
  *
1856
1866
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
1857
1867
  */
1858
1868
  busyStateChanged?: (
1859
- oEvent: sap.ui.base.Event<sap.ui.table.$TableBusyStateChangedEventParameters>
1869
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$BusyStateChangedEventParameters>
1860
1870
  ) => void;
1861
1871
 
1862
1872
  /**
1863
- * @SINCE 1.60
1873
+ * @since 1.60
1864
1874
  *
1865
1875
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
1866
1876
  * with the standard keyboard shortcut, if the focus is inside the table.
1867
1877
  */
1868
1878
  paste?: (
1869
- oEvent: sap.ui.base.Event<sap.ui.table.$TablePasteEventParameters>
1879
+ oEvent: sap.ui.base.Event<sap.ui.table.Table$PasteEventParameters>
1870
1880
  ) => void;
1871
1881
 
1872
1882
  /**
1873
- * @SINCE 1.86
1883
+ * @since 1.86
1874
1884
  *
1875
1885
  * This event is fired after the table rows have been updated due to rendering, a model update, or a user
1876
1886
  * interaction, for example.
@@ -2033,18 +2043,18 @@ declare namespace sap {
2033
2043
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
2034
2044
  */
2035
2045
  toggleOpenState?: (
2036
- oEvent: sap.ui.base.Event<sap.ui.table.$TreeTableToggleOpenStateEventParameters>
2046
+ oEvent: sap.ui.base.Event<sap.ui.table.TreeTable$ToggleOpenStateEventParameters>
2037
2047
  ) => void;
2038
2048
  }
2039
2049
 
2040
- interface $ColumnColumnMenuOpenEventParameters {
2050
+ interface Column$ColumnMenuOpenEventParameters {
2041
2051
  /**
2042
2052
  * Refence to the selected `menu` instance to be opened.
2043
2053
  */
2044
2054
  menu?: sap.ui.unified.Menu;
2045
2055
  }
2046
2056
 
2047
- interface $RowActionItemPressEventParameters {
2057
+ interface RowActionItem$PressEventParameters {
2048
2058
  /**
2049
2059
  * The item which was pressed.
2050
2060
  */
@@ -2056,7 +2066,7 @@ declare namespace sap {
2056
2066
  row?: sap.ui.table.Row;
2057
2067
  }
2058
2068
 
2059
- interface $TableBeforeOpenContextMenuEventParameters {
2069
+ interface Table$BeforeOpenContextMenuEventParameters {
2060
2070
  /**
2061
2071
  * Row index where the context menu opens.
2062
2072
  */
@@ -2073,14 +2083,14 @@ declare namespace sap {
2073
2083
  contextMenu?: sap.ui.core.IContextMenu;
2074
2084
  }
2075
2085
 
2076
- interface $TableBusyStateChangedEventParameters {
2086
+ interface Table$BusyStateChangedEventParameters {
2077
2087
  /**
2078
2088
  * busy state
2079
2089
  */
2080
2090
  busy?: boolean;
2081
2091
  }
2082
2092
 
2083
- interface $TableCellClickEventParameters {
2093
+ interface Table$CellClickEventParameters {
2084
2094
  /**
2085
2095
  * The control of the cell.
2086
2096
  */
@@ -2113,7 +2123,7 @@ declare namespace sap {
2113
2123
  rowBindingContext?: sap.ui.model.Context;
2114
2124
  }
2115
2125
 
2116
- interface $TableCellContextmenuEventParameters {
2126
+ interface Table$CellContextmenuEventParameters {
2117
2127
  /**
2118
2128
  * The control of the cell.
2119
2129
  */
@@ -2146,14 +2156,14 @@ declare namespace sap {
2146
2156
  rowBindingContext?: sap.ui.model.Context;
2147
2157
  }
2148
2158
 
2149
- interface $TableColumnFreezeEventParameters {
2159
+ interface Table$ColumnFreezeEventParameters {
2150
2160
  /**
2151
2161
  * reference to the column to freeze
2152
2162
  */
2153
2163
  column?: sap.ui.table.Column;
2154
2164
  }
2155
2165
 
2156
- interface $TableColumnMoveEventParameters {
2166
+ interface Table$ColumnMoveEventParameters {
2157
2167
  /**
2158
2168
  * moved column.
2159
2169
  */
@@ -2165,7 +2175,7 @@ declare namespace sap {
2165
2175
  newPos?: int;
2166
2176
  }
2167
2177
 
2168
- interface $TableColumnResizeEventParameters {
2178
+ interface Table$ColumnResizeEventParameters {
2169
2179
  /**
2170
2180
  * resized column.
2171
2181
  */
@@ -2177,14 +2187,14 @@ declare namespace sap {
2177
2187
  width?: sap.ui.core.CSSSize;
2178
2188
  }
2179
2189
 
2180
- interface $TableColumnSelectEventParameters {
2190
+ interface Table$ColumnSelectEventParameters {
2181
2191
  /**
2182
2192
  * reference to the selected column
2183
2193
  */
2184
2194
  column?: sap.ui.table.Column;
2185
2195
  }
2186
2196
 
2187
- interface $TableColumnVisibilityEventParameters {
2197
+ interface Table$ColumnVisibilityEventParameters {
2188
2198
  /**
2189
2199
  * affected column.
2190
2200
  */
@@ -2196,7 +2206,7 @@ declare namespace sap {
2196
2206
  newVisible?: boolean;
2197
2207
  }
2198
2208
 
2199
- interface $TableCustomFilterEventParameters {
2209
+ interface Table$CustomFilterEventParameters {
2200
2210
  /**
2201
2211
  * The column instance on which the custom filter button was pressed.
2202
2212
  */
@@ -2208,7 +2218,7 @@ declare namespace sap {
2208
2218
  value?: string;
2209
2219
  }
2210
2220
 
2211
- interface $TableFilterEventParameters {
2221
+ interface Table$FilterEventParameters {
2212
2222
  /**
2213
2223
  * filtered column.
2214
2224
  */
@@ -2220,21 +2230,21 @@ declare namespace sap {
2220
2230
  value?: string;
2221
2231
  }
2222
2232
 
2223
- interface $TableFirstVisibleRowChangedEventParameters {
2233
+ interface Table$FirstVisibleRowChangedEventParameters {
2224
2234
  /**
2225
2235
  * First visible row
2226
2236
  */
2227
2237
  firstVisibleRow?: int;
2228
2238
  }
2229
2239
 
2230
- interface $TableGroupEventParameters {
2240
+ interface Table$GroupEventParameters {
2231
2241
  /**
2232
2242
  * grouped column.
2233
2243
  */
2234
2244
  column?: sap.ui.table.Column;
2235
2245
  }
2236
2246
 
2237
- interface $TablePasteEventParameters {
2247
+ interface Table$PasteEventParameters {
2238
2248
  /**
2239
2249
  * 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
2240
2250
  * dimension represents the cells of the tabular data.
@@ -2242,7 +2252,7 @@ declare namespace sap {
2242
2252
  data?: string[][];
2243
2253
  }
2244
2254
 
2245
- interface $TableRowSelectionChangeEventParameters {
2255
+ interface Table$RowSelectionChangeEventParameters {
2246
2256
  /**
2247
2257
  * row index which has been clicked so that the selection has been changed (either selected or deselected)
2248
2258
  */
@@ -2270,9 +2280,9 @@ declare namespace sap {
2270
2280
  userInteraction?: boolean;
2271
2281
  }
2272
2282
 
2273
- interface $TableRowsUpdatedEventParameters {}
2283
+ interface Table$RowsUpdatedEventParameters {}
2274
2284
 
2275
- interface $TableSortEventParameters {
2285
+ interface Table$SortEventParameters {
2276
2286
  /**
2277
2287
  * sorted column.
2278
2288
  */
@@ -2289,7 +2299,7 @@ declare namespace sap {
2289
2299
  columnAdded?: boolean;
2290
2300
  }
2291
2301
 
2292
- interface $TreeTableToggleOpenStateEventParameters {
2302
+ interface TreeTable$ToggleOpenStateEventParameters {
2293
2303
  /**
2294
2304
  * Index of the expanded/collapsed row
2295
2305
  */
@@ -2506,7 +2516,7 @@ declare namespace sap {
2506
2516
  ): this;
2507
2517
  }
2508
2518
  /**
2509
- * @EXPERIMENTAL (since 1.21) - The AnalyticalColumnMenu will be productized soon.
2519
+ * @experimental (since 1.21) - The AnalyticalColumnMenu will be productized soon.
2510
2520
  *
2511
2521
  * A column menu which is used by the analytical column
2512
2522
  */
@@ -2702,7 +2712,7 @@ declare namespace sap {
2702
2712
  vRowIndex: int | int[]
2703
2713
  ): this;
2704
2714
  /**
2705
- * @SINCE 1.70
2715
+ * @since 1.70
2706
2716
  *
2707
2717
  * Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
2708
2718
  * is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
@@ -2933,7 +2943,7 @@ declare namespace sap {
2933
2943
  iToIndex: int
2934
2944
  ): this;
2935
2945
  /**
2936
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2946
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2937
2947
  *
2938
2948
  * This function is used by some composite controls to force updating the AnalyticalInfo
2939
2949
  */
@@ -3181,7 +3191,7 @@ declare namespace sap {
3181
3191
  bSumOnTop?: boolean
3182
3192
  ): this;
3183
3193
  /**
3184
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3194
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3185
3195
  *
3186
3196
  * This function is used by some composite controls to avoid updating the AnalyticalInfo when several column
3187
3197
  * are added to the table. In order to finally update the AnalyticalInfo and request data, resumeUpdateAnalyticalInfo
@@ -3254,7 +3264,7 @@ declare namespace sap {
3254
3264
  */
3255
3265
  static getMetadata(): sap.ui.core.ElementMetadata;
3256
3266
  /**
3257
- * @SINCE 1.13.1
3267
+ * @since 1.13.1
3258
3268
  *
3259
3269
  * Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
3260
3270
  *
@@ -3267,7 +3277,7 @@ declare namespace sap {
3267
3277
  oMultiLabel: sap.ui.core.Control
3268
3278
  ): this;
3269
3279
  /**
3270
- * @SINCE 1.33.0
3280
+ * @since 1.33.0
3271
3281
  *
3272
3282
  * Attaches event handler `fnFunction` to the {@link #event:columnMenuOpen columnMenuOpen} event of this
3273
3283
  * `sap.ui.table.Column`.
@@ -3288,16 +3298,14 @@ declare namespace sap {
3288
3298
  /**
3289
3299
  * The function to be called when the event occurs
3290
3300
  */
3291
- fnFunction: (
3292
- p1: sap.ui.base.Event<sap.ui.table.$ColumnColumnMenuOpenEventParameters>
3293
- ) => void,
3301
+ fnFunction: (p1: Column$ColumnMenuOpenEvent) => void,
3294
3302
  /**
3295
3303
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Column` itself
3296
3304
  */
3297
3305
  oListener?: object
3298
3306
  ): this;
3299
3307
  /**
3300
- * @SINCE 1.33.0
3308
+ * @since 1.33.0
3301
3309
  *
3302
3310
  * Attaches event handler `fnFunction` to the {@link #event:columnMenuOpen columnMenuOpen} event of this
3303
3311
  * `sap.ui.table.Column`.
@@ -3313,9 +3321,7 @@ declare namespace sap {
3313
3321
  /**
3314
3322
  * The function to be called when the event occurs
3315
3323
  */
3316
- fnFunction: (
3317
- p1: sap.ui.base.Event<sap.ui.table.$ColumnColumnMenuOpenEventParameters>
3318
- ) => void,
3324
+ fnFunction: (p1: Column$ColumnMenuOpenEvent) => void,
3319
3325
  /**
3320
3326
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Column` itself
3321
3327
  */
@@ -3334,7 +3340,7 @@ declare namespace sap {
3334
3340
  */
3335
3341
  destroyMenu(): this;
3336
3342
  /**
3337
- * @SINCE 1.13.1
3343
+ * @since 1.13.1
3338
3344
  *
3339
3345
  * Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
3340
3346
  *
@@ -3348,7 +3354,7 @@ declare namespace sap {
3348
3354
  */
3349
3355
  destroyTemplate(): this;
3350
3356
  /**
3351
- * @SINCE 1.33.0
3357
+ * @since 1.33.0
3352
3358
  *
3353
3359
  * Detaches event handler `fnFunction` from the {@link #event:columnMenuOpen columnMenuOpen} event of this
3354
3360
  * `sap.ui.table.Column`.
@@ -3361,17 +3367,15 @@ declare namespace sap {
3361
3367
  /**
3362
3368
  * The function to be called, when the event occurs
3363
3369
  */
3364
- fnFunction: (
3365
- p1: sap.ui.base.Event<sap.ui.table.$ColumnColumnMenuOpenEventParameters>
3366
- ) => void,
3370
+ fnFunction: (p1: Column$ColumnMenuOpenEvent) => void,
3367
3371
  /**
3368
3372
  * Context object on which the given function had to be called
3369
3373
  */
3370
3374
  oListener?: object
3371
3375
  ): this;
3372
3376
  /**
3373
- * @SINCE 1.33.0
3374
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3377
+ * @since 1.33.0
3378
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3375
3379
  *
3376
3380
  * Fires event {@link #event:columnMenuOpen columnMenuOpen} to attached listeners.
3377
3381
  *
@@ -3384,10 +3388,10 @@ declare namespace sap {
3384
3388
  /**
3385
3389
  * Parameters to pass along with the event
3386
3390
  */
3387
- mParameters?: sap.ui.table.$ColumnColumnMenuOpenEventParameters
3391
+ mParameters?: sap.ui.table.Column$ColumnMenuOpenEventParameters
3388
3392
  ): boolean;
3389
3393
  /**
3390
- * @SINCE 1.21.1
3394
+ * @since 1.21.1
3391
3395
  *
3392
3396
  * Gets current value of property {@link #getAutoResizable autoResizable}.
3393
3397
  *
@@ -3445,7 +3449,7 @@ declare namespace sap {
3445
3449
  */
3446
3450
  getFilterProperty(): string;
3447
3451
  /**
3448
- * @SINCE 1.9.2
3452
+ * @since 1.9.2
3449
3453
  *
3450
3454
  * Gets current value of property {@link #getFilterType filterType}.
3451
3455
  *
@@ -3522,7 +3526,7 @@ declare namespace sap {
3522
3526
  */
3523
3527
  getHAlign(): sap.ui.core.HorizontalAlign;
3524
3528
  /**
3525
- * @SINCE 1.110
3529
+ * @since 1.110
3526
3530
  *
3527
3531
  * ID of the element which is the current target of the association {@link #getHeaderMenu headerMenu}, or
3528
3532
  * `null`.
@@ -3562,7 +3566,7 @@ declare namespace sap {
3562
3566
  */
3563
3567
  getMenu(): sap.ui.unified.Menu;
3564
3568
  /**
3565
- * @SINCE 1.44.1
3569
+ * @since 1.44.1
3566
3570
  *
3567
3571
  * Gets current value of property {@link #getMinWidth minWidth}.
3568
3572
  *
@@ -3577,7 +3581,7 @@ declare namespace sap {
3577
3581
  */
3578
3582
  getMinWidth(): int;
3579
3583
  /**
3580
- * @SINCE 1.13.1
3584
+ * @since 1.13.1
3581
3585
  *
3582
3586
  * Gets content of aggregation {@link #getMultiLabels multiLabels}.
3583
3587
  *
@@ -3586,7 +3590,7 @@ declare namespace sap {
3586
3590
  */
3587
3591
  getMultiLabels(): sap.ui.core.Control[];
3588
3592
  /**
3589
- * @SINCE 1.11.1
3593
+ * @since 1.11.1
3590
3594
  *
3591
3595
  * Gets current value of property {@link #getName name}.
3592
3596
  *
@@ -3609,7 +3613,7 @@ declare namespace sap {
3609
3613
  */
3610
3614
  getResizable(): boolean;
3611
3615
  /**
3612
- * @SINCE 1.13.0
3616
+ * @since 1.13.0
3613
3617
  *
3614
3618
  * Gets current value of property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
3615
3619
  *
@@ -3621,7 +3625,7 @@ declare namespace sap {
3621
3625
  */
3622
3626
  getShowFilterMenuEntry(): boolean;
3623
3627
  /**
3624
- * @SINCE 1.13.0
3628
+ * @since 1.13.0
3625
3629
  *
3626
3630
  * Gets current value of property {@link #getShowSortMenuEntry showSortMenuEntry}.
3627
3631
  *
@@ -3682,7 +3686,7 @@ declare namespace sap {
3682
3686
  */
3683
3687
  getTemplate(): sap.ui.core.Control | string;
3684
3688
  /**
3685
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3689
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3686
3690
  *
3687
3691
  * Returns a template clone. It either finds an unused clone or clones a new one from the template.
3688
3692
  *
@@ -3717,7 +3721,7 @@ declare namespace sap {
3717
3721
  */
3718
3722
  getWidth(): sap.ui.core.CSSSize;
3719
3723
  /**
3720
- * @SINCE 1.13.1
3724
+ * @since 1.13.1
3721
3725
  *
3722
3726
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
3723
3727
  * and returns its index if found or -1 otherwise.
@@ -3731,7 +3735,7 @@ declare namespace sap {
3731
3735
  oMultiLabel: sap.ui.core.Control
3732
3736
  ): int;
3733
3737
  /**
3734
- * @SINCE 1.13.1
3738
+ * @since 1.13.1
3735
3739
  *
3736
3740
  * Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
3737
3741
  *
@@ -3750,7 +3754,7 @@ declare namespace sap {
3750
3754
  iIndex: int
3751
3755
  ): this;
3752
3756
  /**
3753
- * @SINCE 1.13.1
3757
+ * @since 1.13.1
3754
3758
  *
3755
3759
  * Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
3756
3760
  *
@@ -3760,7 +3764,7 @@ declare namespace sap {
3760
3764
  */
3761
3765
  removeAllMultiLabels(): sap.ui.core.Control[];
3762
3766
  /**
3763
- * @SINCE 1.13.1
3767
+ * @since 1.13.1
3764
3768
  *
3765
3769
  * Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
3766
3770
  *
@@ -3773,7 +3777,7 @@ declare namespace sap {
3773
3777
  vMultiLabel: int | string | sap.ui.core.Control
3774
3778
  ): sap.ui.core.Control | null;
3775
3779
  /**
3776
- * @SINCE 1.21.1
3780
+ * @since 1.21.1
3777
3781
  *
3778
3782
  * Sets a new value for property {@link #getAutoResizable autoResizable}.
3779
3783
  *
@@ -3968,7 +3972,7 @@ declare namespace sap {
3968
3972
  sHAlign?: sap.ui.core.HorizontalAlign
3969
3973
  ): this;
3970
3974
  /**
3971
- * @SINCE 1.110
3975
+ * @since 1.110
3972
3976
  *
3973
3977
  * Sets the associated {@link #getHeaderMenu headerMenu}.
3974
3978
  *
@@ -4026,7 +4030,7 @@ declare namespace sap {
4026
4030
  oMenu: sap.ui.unified.Menu
4027
4031
  ): this;
4028
4032
  /**
4029
- * @SINCE 1.44.1
4033
+ * @since 1.44.1
4030
4034
  *
4031
4035
  * Sets a new value for property {@link #getMinWidth minWidth}.
4032
4036
  *
@@ -4048,7 +4052,7 @@ declare namespace sap {
4048
4052
  iMinWidth?: int
4049
4053
  ): this;
4050
4054
  /**
4051
- * @SINCE 1.11.1
4055
+ * @since 1.11.1
4052
4056
  *
4053
4057
  * Sets a new value for property {@link #getName name}.
4054
4058
  *
@@ -4085,7 +4089,7 @@ declare namespace sap {
4085
4089
  bResizable?: boolean
4086
4090
  ): this;
4087
4091
  /**
4088
- * @SINCE 1.13.0
4092
+ * @since 1.13.0
4089
4093
  *
4090
4094
  * Sets a new value for property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
4091
4095
  *
@@ -4104,7 +4108,7 @@ declare namespace sap {
4104
4108
  bShowFilterMenuEntry?: boolean
4105
4109
  ): this;
4106
4110
  /**
4107
- * @SINCE 1.13.0
4111
+ * @since 1.13.0
4108
4112
  *
4109
4113
  * Sets a new value for property {@link #getShowSortMenuEntry showSortMenuEntry}.
4110
4114
  *
@@ -4226,7 +4230,7 @@ declare namespace sap {
4226
4230
  sWidth?: sap.ui.core.CSSSize
4227
4231
  ): this;
4228
4232
  /**
4229
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4233
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4230
4234
  *
4231
4235
  * Returns whether the column should be rendered.
4232
4236
  *
@@ -4478,7 +4482,7 @@ declare namespace sap {
4478
4482
  ): sap.ui.core.Control | null;
4479
4483
  }
4480
4484
  /**
4481
- * @SINCE 1.45
4485
+ * @since 1.45
4482
4486
  *
4483
4487
  * The `RowAction` control allows to display multiple action items which can be selected by the user. If
4484
4488
  * more action items are available as the available space allows to display an overflow mechanism is provided.
@@ -4645,7 +4649,7 @@ declare namespace sap {
4645
4649
  ): this;
4646
4650
  }
4647
4651
  /**
4648
- * @SINCE 1.45
4652
+ * @since 1.45
4649
4653
  *
4650
4654
  * An action items to be displayed in a `RowAction` control. This element must only be used in the context
4651
4655
  * of the `sap.ui.table.Table` control to define row actions.
@@ -4730,9 +4734,7 @@ declare namespace sap {
4730
4734
  /**
4731
4735
  * The function to be called when the event occurs
4732
4736
  */
4733
- fnFunction: (
4734
- p1: sap.ui.base.Event<sap.ui.table.$RowActionItemPressEventParameters>
4735
- ) => void,
4737
+ fnFunction: (p1: RowActionItem$PressEvent) => void,
4736
4738
  /**
4737
4739
  * Context object to call the event handler with. Defaults to this `sap.ui.table.RowActionItem` itself
4738
4740
  */
@@ -4752,9 +4754,7 @@ declare namespace sap {
4752
4754
  /**
4753
4755
  * The function to be called when the event occurs
4754
4756
  */
4755
- fnFunction: (
4756
- p1: sap.ui.base.Event<sap.ui.table.$RowActionItemPressEventParameters>
4757
- ) => void,
4757
+ fnFunction: (p1: RowActionItem$PressEvent) => void,
4758
4758
  /**
4759
4759
  * Context object to call the event handler with. Defaults to this `sap.ui.table.RowActionItem` itself
4760
4760
  */
@@ -4771,16 +4771,14 @@ declare namespace sap {
4771
4771
  /**
4772
4772
  * The function to be called, when the event occurs
4773
4773
  */
4774
- fnFunction: (
4775
- p1: sap.ui.base.Event<sap.ui.table.$RowActionItemPressEventParameters>
4776
- ) => void,
4774
+ fnFunction: (p1: RowActionItem$PressEvent) => void,
4777
4775
  /**
4778
4776
  * Context object on which the given function had to be called
4779
4777
  */
4780
4778
  oListener?: object
4781
4779
  ): this;
4782
4780
  /**
4783
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4781
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4784
4782
  *
4785
4783
  * Fires event {@link #event:press press} to attached listeners.
4786
4784
  *
@@ -4790,7 +4788,7 @@ declare namespace sap {
4790
4788
  /**
4791
4789
  * Parameters to pass along with the event
4792
4790
  */
4793
- mParameters?: sap.ui.table.$RowActionItemPressEventParameters
4791
+ mParameters?: sap.ui.table.RowActionItem$PressEventParameters
4794
4792
  ): this;
4795
4793
  /**
4796
4794
  * Gets current value of property {@link #getIcon icon}.
@@ -4900,7 +4898,7 @@ declare namespace sap {
4900
4898
  ): this;
4901
4899
  }
4902
4900
  /**
4903
- * @SINCE 1.48.0
4901
+ * @since 1.48.0
4904
4902
  *
4905
4903
  * The `RowSettings` control allows you to configure a row. You can only use this control in the context
4906
4904
  * of the `sap.ui.table.Table` control to define row settings.
@@ -4967,7 +4965,7 @@ declare namespace sap {
4967
4965
  */
4968
4966
  static getMetadata(): sap.ui.core.ElementMetadata;
4969
4967
  /**
4970
- * @SINCE 1.48.0
4968
+ * @since 1.48.0
4971
4969
  *
4972
4970
  * Gets current value of property {@link #getHighlight highlight}.
4973
4971
  *
@@ -4988,7 +4986,7 @@ declare namespace sap {
4988
4986
  */
4989
4987
  getHighlight(): string;
4990
4988
  /**
4991
- * @SINCE 1.62
4989
+ * @since 1.62
4992
4990
  *
4993
4991
  * Gets current value of property {@link #getHighlightText highlightText}.
4994
4992
  *
@@ -5002,7 +5000,7 @@ declare namespace sap {
5002
5000
  */
5003
5001
  getHighlightText(): string;
5004
5002
  /**
5005
- * @SINCE 1.72
5003
+ * @since 1.72
5006
5004
  *
5007
5005
  * Gets current value of property {@link #getNavigated navigated}.
5008
5006
  *
@@ -5017,7 +5015,7 @@ declare namespace sap {
5017
5015
  */
5018
5016
  getNavigated(): boolean;
5019
5017
  /**
5020
- * @SINCE 1.48.0
5018
+ * @since 1.48.0
5021
5019
  *
5022
5020
  * Sets a new value for property {@link #getHighlight highlight}.
5023
5021
  *
@@ -5045,7 +5043,7 @@ declare namespace sap {
5045
5043
  sHighlight?: string
5046
5044
  ): this;
5047
5045
  /**
5048
- * @SINCE 1.62
5046
+ * @since 1.62
5049
5047
  *
5050
5048
  * Sets a new value for property {@link #getHighlightText highlightText}.
5051
5049
  *
@@ -5066,7 +5064,7 @@ declare namespace sap {
5066
5064
  sHighlightText?: string
5067
5065
  ): this;
5068
5066
  /**
5069
- * @SINCE 1.72
5067
+ * @since 1.72
5070
5068
  *
5071
5069
  * Sets a new value for property {@link #getNavigated navigated}.
5072
5070
  *
@@ -5203,7 +5201,7 @@ declare namespace sap {
5203
5201
  oExtension: sap.ui.core.Control
5204
5202
  ): this;
5205
5203
  /**
5206
- * @SINCE 1.64
5204
+ * @since 1.64
5207
5205
  *
5208
5206
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
5209
5207
  *
@@ -5243,7 +5241,7 @@ declare namespace sap {
5243
5241
  iIndexTo: int
5244
5242
  ): this;
5245
5243
  /**
5246
- * @SINCE 1.54
5244
+ * @since 1.54
5247
5245
  *
5248
5246
  * Attaches event handler `fnFunction` to the {@link #event:beforeOpenContextMenu beforeOpenContextMenu }
5249
5247
  * event of this `sap.ui.table.Table`.
@@ -5264,16 +5262,14 @@ declare namespace sap {
5264
5262
  /**
5265
5263
  * The function to be called when the event occurs
5266
5264
  */
5267
- fnFunction: (
5268
- p1: sap.ui.base.Event<sap.ui.table.$TableBeforeOpenContextMenuEventParameters>
5269
- ) => void,
5265
+ fnFunction: (p1: Table$BeforeOpenContextMenuEvent) => void,
5270
5266
  /**
5271
5267
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5272
5268
  */
5273
5269
  oListener?: object
5274
5270
  ): this;
5275
5271
  /**
5276
- * @SINCE 1.54
5272
+ * @since 1.54
5277
5273
  *
5278
5274
  * Attaches event handler `fnFunction` to the {@link #event:beforeOpenContextMenu beforeOpenContextMenu }
5279
5275
  * event of this `sap.ui.table.Table`.
@@ -5289,16 +5285,14 @@ declare namespace sap {
5289
5285
  /**
5290
5286
  * The function to be called when the event occurs
5291
5287
  */
5292
- fnFunction: (
5293
- p1: sap.ui.base.Event<sap.ui.table.$TableBeforeOpenContextMenuEventParameters>
5294
- ) => void,
5288
+ fnFunction: (p1: Table$BeforeOpenContextMenuEvent) => void,
5295
5289
  /**
5296
5290
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5297
5291
  */
5298
5292
  oListener?: object
5299
5293
  ): this;
5300
5294
  /**
5301
- * @SINCE 1.37.0
5295
+ * @since 1.37.0
5302
5296
  *
5303
5297
  * Attaches event handler `fnFunction` to the {@link #event:busyStateChanged busyStateChanged} event of
5304
5298
  * this `sap.ui.table.Table`.
@@ -5319,16 +5313,14 @@ declare namespace sap {
5319
5313
  /**
5320
5314
  * The function to be called when the event occurs
5321
5315
  */
5322
- fnFunction: (
5323
- p1: sap.ui.base.Event<sap.ui.table.$TableBusyStateChangedEventParameters>
5324
- ) => void,
5316
+ fnFunction: (p1: Table$BusyStateChangedEvent) => void,
5325
5317
  /**
5326
5318
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5327
5319
  */
5328
5320
  oListener?: object
5329
5321
  ): this;
5330
5322
  /**
5331
- * @SINCE 1.37.0
5323
+ * @since 1.37.0
5332
5324
  *
5333
5325
  * Attaches event handler `fnFunction` to the {@link #event:busyStateChanged busyStateChanged} event of
5334
5326
  * this `sap.ui.table.Table`.
@@ -5344,16 +5336,14 @@ declare namespace sap {
5344
5336
  /**
5345
5337
  * The function to be called when the event occurs
5346
5338
  */
5347
- fnFunction: (
5348
- p1: sap.ui.base.Event<sap.ui.table.$TableBusyStateChangedEventParameters>
5349
- ) => void,
5339
+ fnFunction: (p1: Table$BusyStateChangedEvent) => void,
5350
5340
  /**
5351
5341
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5352
5342
  */
5353
5343
  oListener?: object
5354
5344
  ): this;
5355
5345
  /**
5356
- * @SINCE 1.21.0
5346
+ * @since 1.21.0
5357
5347
  *
5358
5348
  * Attaches event handler `fnFunction` to the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
5359
5349
  *
@@ -5373,16 +5363,14 @@ declare namespace sap {
5373
5363
  /**
5374
5364
  * The function to be called when the event occurs
5375
5365
  */
5376
- fnFunction: (
5377
- p1: sap.ui.base.Event<sap.ui.table.$TableCellClickEventParameters>
5378
- ) => void,
5366
+ fnFunction: (p1: Table$CellClickEvent) => void,
5379
5367
  /**
5380
5368
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5381
5369
  */
5382
5370
  oListener?: object
5383
5371
  ): this;
5384
5372
  /**
5385
- * @SINCE 1.21.0
5373
+ * @since 1.21.0
5386
5374
  *
5387
5375
  * Attaches event handler `fnFunction` to the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
5388
5376
  *
@@ -5397,16 +5385,14 @@ declare namespace sap {
5397
5385
  /**
5398
5386
  * The function to be called when the event occurs
5399
5387
  */
5400
- fnFunction: (
5401
- p1: sap.ui.base.Event<sap.ui.table.$TableCellClickEventParameters>
5402
- ) => void,
5388
+ fnFunction: (p1: Table$CellClickEvent) => void,
5403
5389
  /**
5404
5390
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5405
5391
  */
5406
5392
  oListener?: object
5407
5393
  ): this;
5408
5394
  /**
5409
- * @SINCE 1.21.0
5395
+ * @since 1.21.0
5410
5396
  * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
5411
5397
  *
5412
5398
  * Attaches event handler `fnFunction` to the {@link #event:cellContextmenu cellContextmenu} event of this
@@ -5428,16 +5414,14 @@ declare namespace sap {
5428
5414
  /**
5429
5415
  * The function to be called when the event occurs
5430
5416
  */
5431
- fnFunction: (
5432
- p1: sap.ui.base.Event<sap.ui.table.$TableCellContextmenuEventParameters>
5433
- ) => void,
5417
+ fnFunction: (p1: Table$CellContextmenuEvent) => void,
5434
5418
  /**
5435
5419
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5436
5420
  */
5437
5421
  oListener?: object
5438
5422
  ): this;
5439
5423
  /**
5440
- * @SINCE 1.21.0
5424
+ * @since 1.21.0
5441
5425
  * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
5442
5426
  *
5443
5427
  * Attaches event handler `fnFunction` to the {@link #event:cellContextmenu cellContextmenu} event of this
@@ -5454,16 +5438,14 @@ declare namespace sap {
5454
5438
  /**
5455
5439
  * The function to be called when the event occurs
5456
5440
  */
5457
- fnFunction: (
5458
- p1: sap.ui.base.Event<sap.ui.table.$TableCellContextmenuEventParameters>
5459
- ) => void,
5441
+ fnFunction: (p1: Table$CellContextmenuEvent) => void,
5460
5442
  /**
5461
5443
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5462
5444
  */
5463
5445
  oListener?: object
5464
5446
  ): this;
5465
5447
  /**
5466
- * @SINCE 1.21.0
5448
+ * @since 1.21.0
5467
5449
  *
5468
5450
  * Attaches event handler `fnFunction` to the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
5469
5451
  *
@@ -5483,16 +5465,14 @@ declare namespace sap {
5483
5465
  /**
5484
5466
  * The function to be called when the event occurs
5485
5467
  */
5486
- fnFunction: (
5487
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnFreezeEventParameters>
5488
- ) => void,
5468
+ fnFunction: (p1: Table$ColumnFreezeEvent) => void,
5489
5469
  /**
5490
5470
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5491
5471
  */
5492
5472
  oListener?: object
5493
5473
  ): this;
5494
5474
  /**
5495
- * @SINCE 1.21.0
5475
+ * @since 1.21.0
5496
5476
  *
5497
5477
  * Attaches event handler `fnFunction` to the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
5498
5478
  *
@@ -5507,9 +5487,7 @@ declare namespace sap {
5507
5487
  /**
5508
5488
  * The function to be called when the event occurs
5509
5489
  */
5510
- fnFunction: (
5511
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnFreezeEventParameters>
5512
- ) => void,
5490
+ fnFunction: (p1: Table$ColumnFreezeEvent) => void,
5513
5491
  /**
5514
5492
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5515
5493
  */
@@ -5534,9 +5512,7 @@ declare namespace sap {
5534
5512
  /**
5535
5513
  * The function to be called when the event occurs
5536
5514
  */
5537
- fnFunction: (
5538
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnMoveEventParameters>
5539
- ) => void,
5515
+ fnFunction: (p1: Table$ColumnMoveEvent) => void,
5540
5516
  /**
5541
5517
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5542
5518
  */
@@ -5556,9 +5532,7 @@ declare namespace sap {
5556
5532
  /**
5557
5533
  * The function to be called when the event occurs
5558
5534
  */
5559
- fnFunction: (
5560
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnMoveEventParameters>
5561
- ) => void,
5535
+ fnFunction: (p1: Table$ColumnMoveEvent) => void,
5562
5536
  /**
5563
5537
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5564
5538
  */
@@ -5583,9 +5557,7 @@ declare namespace sap {
5583
5557
  /**
5584
5558
  * The function to be called when the event occurs
5585
5559
  */
5586
- fnFunction: (
5587
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnResizeEventParameters>
5588
- ) => void,
5560
+ fnFunction: (p1: Table$ColumnResizeEvent) => void,
5589
5561
  /**
5590
5562
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5591
5563
  */
@@ -5605,9 +5577,7 @@ declare namespace sap {
5605
5577
  /**
5606
5578
  * The function to be called when the event occurs
5607
5579
  */
5608
- fnFunction: (
5609
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnResizeEventParameters>
5610
- ) => void,
5580
+ fnFunction: (p1: Table$ColumnResizeEvent) => void,
5611
5581
  /**
5612
5582
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5613
5583
  */
@@ -5632,9 +5602,7 @@ declare namespace sap {
5632
5602
  /**
5633
5603
  * The function to be called when the event occurs
5634
5604
  */
5635
- fnFunction: (
5636
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnSelectEventParameters>
5637
- ) => void,
5605
+ fnFunction: (p1: Table$ColumnSelectEvent) => void,
5638
5606
  /**
5639
5607
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5640
5608
  */
@@ -5654,9 +5622,7 @@ declare namespace sap {
5654
5622
  /**
5655
5623
  * The function to be called when the event occurs
5656
5624
  */
5657
- fnFunction: (
5658
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnSelectEventParameters>
5659
- ) => void,
5625
+ fnFunction: (p1: Table$ColumnSelectEvent) => void,
5660
5626
  /**
5661
5627
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5662
5628
  */
@@ -5682,9 +5648,7 @@ declare namespace sap {
5682
5648
  /**
5683
5649
  * The function to be called when the event occurs
5684
5650
  */
5685
- fnFunction: (
5686
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnVisibilityEventParameters>
5687
- ) => void,
5651
+ fnFunction: (p1: Table$ColumnVisibilityEvent) => void,
5688
5652
  /**
5689
5653
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5690
5654
  */
@@ -5705,16 +5669,14 @@ declare namespace sap {
5705
5669
  /**
5706
5670
  * The function to be called when the event occurs
5707
5671
  */
5708
- fnFunction: (
5709
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnVisibilityEventParameters>
5710
- ) => void,
5672
+ fnFunction: (p1: Table$ColumnVisibilityEvent) => void,
5711
5673
  /**
5712
5674
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5713
5675
  */
5714
5676
  oListener?: object
5715
5677
  ): this;
5716
5678
  /**
5717
- * @SINCE 1.23.0
5679
+ * @since 1.23.0
5718
5680
  *
5719
5681
  * Attaches event handler `fnFunction` to the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
5720
5682
  *
@@ -5735,16 +5697,14 @@ declare namespace sap {
5735
5697
  /**
5736
5698
  * The function to be called when the event occurs
5737
5699
  */
5738
- fnFunction: (
5739
- p1: sap.ui.base.Event<sap.ui.table.$TableCustomFilterEventParameters>
5740
- ) => void,
5700
+ fnFunction: (p1: Table$CustomFilterEvent) => void,
5741
5701
  /**
5742
5702
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5743
5703
  */
5744
5704
  oListener?: object
5745
5705
  ): this;
5746
5706
  /**
5747
- * @SINCE 1.23.0
5707
+ * @since 1.23.0
5748
5708
  *
5749
5709
  * Attaches event handler `fnFunction` to the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
5750
5710
  *
@@ -5760,9 +5720,7 @@ declare namespace sap {
5760
5720
  /**
5761
5721
  * The function to be called when the event occurs
5762
5722
  */
5763
- fnFunction: (
5764
- p1: sap.ui.base.Event<sap.ui.table.$TableCustomFilterEventParameters>
5765
- ) => void,
5723
+ fnFunction: (p1: Table$CustomFilterEvent) => void,
5766
5724
  /**
5767
5725
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5768
5726
  */
@@ -5790,9 +5748,7 @@ declare namespace sap {
5790
5748
  /**
5791
5749
  * The function to be called when the event occurs
5792
5750
  */
5793
- fnFunction: (
5794
- p1: sap.ui.base.Event<sap.ui.table.$TableFilterEventParameters>
5795
- ) => void,
5751
+ fnFunction: (p1: Table$FilterEvent) => void,
5796
5752
  /**
5797
5753
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5798
5754
  */
@@ -5815,16 +5771,14 @@ declare namespace sap {
5815
5771
  /**
5816
5772
  * The function to be called when the event occurs
5817
5773
  */
5818
- fnFunction: (
5819
- p1: sap.ui.base.Event<sap.ui.table.$TableFilterEventParameters>
5820
- ) => void,
5774
+ fnFunction: (p1: Table$FilterEvent) => void,
5821
5775
  /**
5822
5776
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5823
5777
  */
5824
5778
  oListener?: object
5825
5779
  ): this;
5826
5780
  /**
5827
- * @SINCE 1.37.0
5781
+ * @since 1.37.0
5828
5782
  *
5829
5783
  * Attaches event handler `fnFunction` to the {@link #event:firstVisibleRowChanged firstVisibleRowChanged }
5830
5784
  * event of this `sap.ui.table.Table`.
@@ -5846,16 +5800,14 @@ declare namespace sap {
5846
5800
  /**
5847
5801
  * The function to be called when the event occurs
5848
5802
  */
5849
- fnFunction: (
5850
- p1: sap.ui.base.Event<sap.ui.table.$TableFirstVisibleRowChangedEventParameters>
5851
- ) => void,
5803
+ fnFunction: (p1: Table$FirstVisibleRowChangedEvent) => void,
5852
5804
  /**
5853
5805
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5854
5806
  */
5855
5807
  oListener?: object
5856
5808
  ): this;
5857
5809
  /**
5858
- * @SINCE 1.37.0
5810
+ * @since 1.37.0
5859
5811
  *
5860
5812
  * Attaches event handler `fnFunction` to the {@link #event:firstVisibleRowChanged firstVisibleRowChanged }
5861
5813
  * event of this `sap.ui.table.Table`.
@@ -5872,9 +5824,7 @@ declare namespace sap {
5872
5824
  /**
5873
5825
  * The function to be called when the event occurs
5874
5826
  */
5875
- fnFunction: (
5876
- p1: sap.ui.base.Event<sap.ui.table.$TableFirstVisibleRowChangedEventParameters>
5877
- ) => void,
5827
+ fnFunction: (p1: Table$FirstVisibleRowChangedEvent) => void,
5878
5828
  /**
5879
5829
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5880
5830
  */
@@ -5899,9 +5849,7 @@ declare namespace sap {
5899
5849
  /**
5900
5850
  * The function to be called when the event occurs
5901
5851
  */
5902
- fnFunction: (
5903
- p1: sap.ui.base.Event<sap.ui.table.$TableGroupEventParameters>
5904
- ) => void,
5852
+ fnFunction: (p1: Table$GroupEvent) => void,
5905
5853
  /**
5906
5854
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5907
5855
  */
@@ -5921,16 +5869,14 @@ declare namespace sap {
5921
5869
  /**
5922
5870
  * The function to be called when the event occurs
5923
5871
  */
5924
- fnFunction: (
5925
- p1: sap.ui.base.Event<sap.ui.table.$TableGroupEventParameters>
5926
- ) => void,
5872
+ fnFunction: (p1: Table$GroupEvent) => void,
5927
5873
  /**
5928
5874
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5929
5875
  */
5930
5876
  oListener?: object
5931
5877
  ): this;
5932
5878
  /**
5933
- * @SINCE 1.60
5879
+ * @since 1.60
5934
5880
  *
5935
5881
  * Attaches event handler `fnFunction` to the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5936
5882
  *
@@ -5951,16 +5897,14 @@ declare namespace sap {
5951
5897
  /**
5952
5898
  * The function to be called when the event occurs
5953
5899
  */
5954
- fnFunction: (
5955
- p1: sap.ui.base.Event<sap.ui.table.$TablePasteEventParameters>
5956
- ) => void,
5900
+ fnFunction: (p1: Table$PasteEvent) => void,
5957
5901
  /**
5958
5902
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5959
5903
  */
5960
5904
  oListener?: object
5961
5905
  ): this;
5962
5906
  /**
5963
- * @SINCE 1.60
5907
+ * @since 1.60
5964
5908
  *
5965
5909
  * Attaches event handler `fnFunction` to the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5966
5910
  *
@@ -5976,9 +5920,7 @@ declare namespace sap {
5976
5920
  /**
5977
5921
  * The function to be called when the event occurs
5978
5922
  */
5979
- fnFunction: (
5980
- p1: sap.ui.base.Event<sap.ui.table.$TablePasteEventParameters>
5981
- ) => void,
5923
+ fnFunction: (p1: Table$PasteEvent) => void,
5982
5924
  /**
5983
5925
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
5984
5926
  */
@@ -6007,9 +5949,7 @@ declare namespace sap {
6007
5949
  /**
6008
5950
  * The function to be called when the event occurs
6009
5951
  */
6010
- fnFunction: (
6011
- p1: sap.ui.base.Event<sap.ui.table.$TableRowSelectionChangeEventParameters>
6012
- ) => void,
5952
+ fnFunction: (p1: Table$RowSelectionChangeEvent) => void,
6013
5953
  /**
6014
5954
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
6015
5955
  */
@@ -6033,16 +5973,14 @@ declare namespace sap {
6033
5973
  /**
6034
5974
  * The function to be called when the event occurs
6035
5975
  */
6036
- fnFunction: (
6037
- p1: sap.ui.base.Event<sap.ui.table.$TableRowSelectionChangeEventParameters>
6038
- ) => void,
5976
+ fnFunction: (p1: Table$RowSelectionChangeEvent) => void,
6039
5977
  /**
6040
5978
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
6041
5979
  */
6042
5980
  oListener?: object
6043
5981
  ): this;
6044
5982
  /**
6045
- * @SINCE 1.86
5983
+ * @since 1.86
6046
5984
  *
6047
5985
  * Attaches event handler `fnFunction` to the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
6048
5986
  *
@@ -6072,7 +6010,7 @@ declare namespace sap {
6072
6010
  oListener?: object
6073
6011
  ): this;
6074
6012
  /**
6075
- * @SINCE 1.86
6013
+ * @since 1.86
6076
6014
  *
6077
6015
  * Attaches event handler `fnFunction` to the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
6078
6016
  *
@@ -6118,9 +6056,7 @@ declare namespace sap {
6118
6056
  /**
6119
6057
  * The function to be called when the event occurs
6120
6058
  */
6121
- fnFunction: (
6122
- p1: sap.ui.base.Event<sap.ui.table.$TableSortEventParameters>
6123
- ) => void,
6059
+ fnFunction: (p1: Table$SortEvent) => void,
6124
6060
  /**
6125
6061
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
6126
6062
  */
@@ -6143,16 +6079,14 @@ declare namespace sap {
6143
6079
  /**
6144
6080
  * The function to be called when the event occurs
6145
6081
  */
6146
- fnFunction: (
6147
- p1: sap.ui.base.Event<sap.ui.table.$TableSortEventParameters>
6148
- ) => void,
6082
+ fnFunction: (p1: Table$SortEvent) => void,
6149
6083
  /**
6150
6084
  * Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
6151
6085
  */
6152
6086
  oListener?: object
6153
6087
  ): this;
6154
6088
  /**
6155
- * @EXPERIMENTAL - Experimental! Presently implemented to only work with a very limited set of controls
6089
+ * @experimental - Experimental! Presently implemented to only work with a very limited set of controls
6156
6090
  * (e.g. sap.m.Text).
6157
6091
  *
6158
6092
  * Triggers automatic resizing of a column to the widest content.
@@ -6204,7 +6138,7 @@ declare namespace sap {
6204
6138
  */
6205
6139
  destroyColumns(): this;
6206
6140
  /**
6207
- * @SINCE 1.54
6141
+ * @since 1.54
6208
6142
  *
6209
6143
  * Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
6210
6144
  *
@@ -6230,7 +6164,7 @@ declare namespace sap {
6230
6164
  */
6231
6165
  destroyNoData(): this;
6232
6166
  /**
6233
- * @SINCE 1.64
6167
+ * @since 1.64
6234
6168
  *
6235
6169
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
6236
6170
  *
@@ -6272,7 +6206,7 @@ declare namespace sap {
6272
6206
  */
6273
6207
  destroyToolbar(): this;
6274
6208
  /**
6275
- * @SINCE 1.54
6209
+ * @since 1.54
6276
6210
  *
6277
6211
  * Detaches event handler `fnFunction` from the {@link #event:beforeOpenContextMenu beforeOpenContextMenu }
6278
6212
  * event of this `sap.ui.table.Table`.
@@ -6285,16 +6219,14 @@ declare namespace sap {
6285
6219
  /**
6286
6220
  * The function to be called, when the event occurs
6287
6221
  */
6288
- fnFunction: (
6289
- p1: sap.ui.base.Event<sap.ui.table.$TableBeforeOpenContextMenuEventParameters>
6290
- ) => void,
6222
+ fnFunction: (p1: Table$BeforeOpenContextMenuEvent) => void,
6291
6223
  /**
6292
6224
  * Context object on which the given function had to be called
6293
6225
  */
6294
6226
  oListener?: object
6295
6227
  ): this;
6296
6228
  /**
6297
- * @SINCE 1.37.0
6229
+ * @since 1.37.0
6298
6230
  *
6299
6231
  * Detaches event handler `fnFunction` from the {@link #event:busyStateChanged busyStateChanged} event of
6300
6232
  * this `sap.ui.table.Table`.
@@ -6307,16 +6239,14 @@ declare namespace sap {
6307
6239
  /**
6308
6240
  * The function to be called, when the event occurs
6309
6241
  */
6310
- fnFunction: (
6311
- p1: sap.ui.base.Event<sap.ui.table.$TableBusyStateChangedEventParameters>
6312
- ) => void,
6242
+ fnFunction: (p1: Table$BusyStateChangedEvent) => void,
6313
6243
  /**
6314
6244
  * Context object on which the given function had to be called
6315
6245
  */
6316
6246
  oListener?: object
6317
6247
  ): this;
6318
6248
  /**
6319
- * @SINCE 1.21.0
6249
+ * @since 1.21.0
6320
6250
  *
6321
6251
  * Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
6322
6252
  *
@@ -6328,16 +6258,14 @@ declare namespace sap {
6328
6258
  /**
6329
6259
  * The function to be called, when the event occurs
6330
6260
  */
6331
- fnFunction: (
6332
- p1: sap.ui.base.Event<sap.ui.table.$TableCellClickEventParameters>
6333
- ) => void,
6261
+ fnFunction: (p1: Table$CellClickEvent) => void,
6334
6262
  /**
6335
6263
  * Context object on which the given function had to be called
6336
6264
  */
6337
6265
  oListener?: object
6338
6266
  ): this;
6339
6267
  /**
6340
- * @SINCE 1.21.0
6268
+ * @since 1.21.0
6341
6269
  * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
6342
6270
  *
6343
6271
  * Detaches event handler `fnFunction` from the {@link #event:cellContextmenu cellContextmenu} event of
@@ -6351,16 +6279,14 @@ declare namespace sap {
6351
6279
  /**
6352
6280
  * The function to be called, when the event occurs
6353
6281
  */
6354
- fnFunction: (
6355
- p1: sap.ui.base.Event<sap.ui.table.$TableCellContextmenuEventParameters>
6356
- ) => void,
6282
+ fnFunction: (p1: Table$CellContextmenuEvent) => void,
6357
6283
  /**
6358
6284
  * Context object on which the given function had to be called
6359
6285
  */
6360
6286
  oListener?: object
6361
6287
  ): this;
6362
6288
  /**
6363
- * @SINCE 1.21.0
6289
+ * @since 1.21.0
6364
6290
  *
6365
6291
  * Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
6366
6292
  *
@@ -6372,9 +6298,7 @@ declare namespace sap {
6372
6298
  /**
6373
6299
  * The function to be called, when the event occurs
6374
6300
  */
6375
- fnFunction: (
6376
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnFreezeEventParameters>
6377
- ) => void,
6301
+ fnFunction: (p1: Table$ColumnFreezeEvent) => void,
6378
6302
  /**
6379
6303
  * Context object on which the given function had to be called
6380
6304
  */
@@ -6391,9 +6315,7 @@ declare namespace sap {
6391
6315
  /**
6392
6316
  * The function to be called, when the event occurs
6393
6317
  */
6394
- fnFunction: (
6395
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnMoveEventParameters>
6396
- ) => void,
6318
+ fnFunction: (p1: Table$ColumnMoveEvent) => void,
6397
6319
  /**
6398
6320
  * Context object on which the given function had to be called
6399
6321
  */
@@ -6410,9 +6332,7 @@ declare namespace sap {
6410
6332
  /**
6411
6333
  * The function to be called, when the event occurs
6412
6334
  */
6413
- fnFunction: (
6414
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnResizeEventParameters>
6415
- ) => void,
6335
+ fnFunction: (p1: Table$ColumnResizeEvent) => void,
6416
6336
  /**
6417
6337
  * Context object on which the given function had to be called
6418
6338
  */
@@ -6429,9 +6349,7 @@ declare namespace sap {
6429
6349
  /**
6430
6350
  * The function to be called, when the event occurs
6431
6351
  */
6432
- fnFunction: (
6433
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnSelectEventParameters>
6434
- ) => void,
6352
+ fnFunction: (p1: Table$ColumnSelectEvent) => void,
6435
6353
  /**
6436
6354
  * Context object on which the given function had to be called
6437
6355
  */
@@ -6449,16 +6367,14 @@ declare namespace sap {
6449
6367
  /**
6450
6368
  * The function to be called, when the event occurs
6451
6369
  */
6452
- fnFunction: (
6453
- p1: sap.ui.base.Event<sap.ui.table.$TableColumnVisibilityEventParameters>
6454
- ) => void,
6370
+ fnFunction: (p1: Table$ColumnVisibilityEvent) => void,
6455
6371
  /**
6456
6372
  * Context object on which the given function had to be called
6457
6373
  */
6458
6374
  oListener?: object
6459
6375
  ): this;
6460
6376
  /**
6461
- * @SINCE 1.23.0
6377
+ * @since 1.23.0
6462
6378
  *
6463
6379
  * Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
6464
6380
  *
@@ -6470,9 +6386,7 @@ declare namespace sap {
6470
6386
  /**
6471
6387
  * The function to be called, when the event occurs
6472
6388
  */
6473
- fnFunction: (
6474
- p1: sap.ui.base.Event<sap.ui.table.$TableCustomFilterEventParameters>
6475
- ) => void,
6389
+ fnFunction: (p1: Table$CustomFilterEvent) => void,
6476
6390
  /**
6477
6391
  * Context object on which the given function had to be called
6478
6392
  */
@@ -6489,16 +6403,14 @@ declare namespace sap {
6489
6403
  /**
6490
6404
  * The function to be called, when the event occurs
6491
6405
  */
6492
- fnFunction: (
6493
- p1: sap.ui.base.Event<sap.ui.table.$TableFilterEventParameters>
6494
- ) => void,
6406
+ fnFunction: (p1: Table$FilterEvent) => void,
6495
6407
  /**
6496
6408
  * Context object on which the given function had to be called
6497
6409
  */
6498
6410
  oListener?: object
6499
6411
  ): this;
6500
6412
  /**
6501
- * @SINCE 1.37.0
6413
+ * @since 1.37.0
6502
6414
  *
6503
6415
  * Detaches event handler `fnFunction` from the {@link #event:firstVisibleRowChanged firstVisibleRowChanged }
6504
6416
  * event of this `sap.ui.table.Table`.
@@ -6511,9 +6423,7 @@ declare namespace sap {
6511
6423
  /**
6512
6424
  * The function to be called, when the event occurs
6513
6425
  */
6514
- fnFunction: (
6515
- p1: sap.ui.base.Event<sap.ui.table.$TableFirstVisibleRowChangedEventParameters>
6516
- ) => void,
6426
+ fnFunction: (p1: Table$FirstVisibleRowChangedEvent) => void,
6517
6427
  /**
6518
6428
  * Context object on which the given function had to be called
6519
6429
  */
@@ -6530,16 +6440,14 @@ declare namespace sap {
6530
6440
  /**
6531
6441
  * The function to be called, when the event occurs
6532
6442
  */
6533
- fnFunction: (
6534
- p1: sap.ui.base.Event<sap.ui.table.$TableGroupEventParameters>
6535
- ) => void,
6443
+ fnFunction: (p1: Table$GroupEvent) => void,
6536
6444
  /**
6537
6445
  * Context object on which the given function had to be called
6538
6446
  */
6539
6447
  oListener?: object
6540
6448
  ): this;
6541
6449
  /**
6542
- * @SINCE 1.60
6450
+ * @since 1.60
6543
6451
  *
6544
6452
  * Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
6545
6453
  *
@@ -6551,9 +6459,7 @@ declare namespace sap {
6551
6459
  /**
6552
6460
  * The function to be called, when the event occurs
6553
6461
  */
6554
- fnFunction: (
6555
- p1: sap.ui.base.Event<sap.ui.table.$TablePasteEventParameters>
6556
- ) => void,
6462
+ fnFunction: (p1: Table$PasteEvent) => void,
6557
6463
  /**
6558
6464
  * Context object on which the given function had to be called
6559
6465
  */
@@ -6571,16 +6477,14 @@ declare namespace sap {
6571
6477
  /**
6572
6478
  * The function to be called, when the event occurs
6573
6479
  */
6574
- fnFunction: (
6575
- p1: sap.ui.base.Event<sap.ui.table.$TableRowSelectionChangeEventParameters>
6576
- ) => void,
6480
+ fnFunction: (p1: Table$RowSelectionChangeEvent) => void,
6577
6481
  /**
6578
6482
  * Context object on which the given function had to be called
6579
6483
  */
6580
6484
  oListener?: object
6581
6485
  ): this;
6582
6486
  /**
6583
- * @SINCE 1.86
6487
+ * @since 1.86
6584
6488
  *
6585
6489
  * Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
6586
6490
  *
@@ -6609,9 +6513,7 @@ declare namespace sap {
6609
6513
  /**
6610
6514
  * The function to be called, when the event occurs
6611
6515
  */
6612
- fnFunction: (
6613
- p1: sap.ui.base.Event<sap.ui.table.$TableSortEventParameters>
6614
- ) => void,
6516
+ fnFunction: (p1: Table$SortEvent) => void,
6615
6517
  /**
6616
6518
  * Context object on which the given function had to be called
6617
6519
  */
@@ -6619,7 +6521,7 @@ declare namespace sap {
6619
6521
  ): this;
6620
6522
  /**
6621
6523
  * @deprecated (since 1.56) - replaced by the `sap.ui.export` library.
6622
- * @EXPERIMENTAL - Experimental because the property for the column/cell definitions (sortProperty) could
6524
+ * @experimental - Experimental because the property for the column/cell definitions (sortProperty) could
6623
6525
  * change in future.
6624
6526
  *
6625
6527
  * Creates a new {@link sap.ui.core.util.Export} object and fills row/column information from the table
@@ -6651,8 +6553,8 @@ declare namespace sap {
6651
6553
  sValue?: string
6652
6554
  ): void;
6653
6555
  /**
6654
- * @SINCE 1.54
6655
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6556
+ * @since 1.54
6557
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6656
6558
  *
6657
6559
  * Fires event {@link #event:beforeOpenContextMenu beforeOpenContextMenu} to attached listeners.
6658
6560
  *
@@ -6665,11 +6567,11 @@ declare namespace sap {
6665
6567
  /**
6666
6568
  * Parameters to pass along with the event
6667
6569
  */
6668
- mParameters?: sap.ui.table.$TableBeforeOpenContextMenuEventParameters
6570
+ mParameters?: sap.ui.table.Table$BeforeOpenContextMenuEventParameters
6669
6571
  ): boolean;
6670
6572
  /**
6671
- * @SINCE 1.37.0
6672
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6573
+ * @since 1.37.0
6574
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6673
6575
  *
6674
6576
  * Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
6675
6577
  *
@@ -6679,11 +6581,11 @@ declare namespace sap {
6679
6581
  /**
6680
6582
  * Parameters to pass along with the event
6681
6583
  */
6682
- mParameters?: sap.ui.table.$TableBusyStateChangedEventParameters
6584
+ mParameters?: sap.ui.table.Table$BusyStateChangedEventParameters
6683
6585
  ): this;
6684
6586
  /**
6685
- * @SINCE 1.21.0
6686
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6587
+ * @since 1.21.0
6588
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6687
6589
  *
6688
6590
  * Fires event {@link #event:cellClick cellClick} to attached listeners.
6689
6591
  *
@@ -6696,12 +6598,12 @@ declare namespace sap {
6696
6598
  /**
6697
6599
  * Parameters to pass along with the event
6698
6600
  */
6699
- mParameters?: sap.ui.table.$TableCellClickEventParameters
6601
+ mParameters?: sap.ui.table.Table$CellClickEventParameters
6700
6602
  ): boolean;
6701
6603
  /**
6702
- * @SINCE 1.21.0
6604
+ * @since 1.21.0
6703
6605
  * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
6704
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6606
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6705
6607
  *
6706
6608
  * Fires event {@link #event:cellContextmenu cellContextmenu} to attached listeners.
6707
6609
  *
@@ -6714,11 +6616,11 @@ declare namespace sap {
6714
6616
  /**
6715
6617
  * Parameters to pass along with the event
6716
6618
  */
6717
- mParameters?: sap.ui.table.$TableCellContextmenuEventParameters
6619
+ mParameters?: sap.ui.table.Table$CellContextmenuEventParameters
6718
6620
  ): boolean;
6719
6621
  /**
6720
- * @SINCE 1.21.0
6721
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6622
+ * @since 1.21.0
6623
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6722
6624
  *
6723
6625
  * Fires event {@link #event:columnFreeze columnFreeze} to attached listeners.
6724
6626
  *
@@ -6731,10 +6633,10 @@ declare namespace sap {
6731
6633
  /**
6732
6634
  * Parameters to pass along with the event
6733
6635
  */
6734
- mParameters?: sap.ui.table.$TableColumnFreezeEventParameters
6636
+ mParameters?: sap.ui.table.Table$ColumnFreezeEventParameters
6735
6637
  ): boolean;
6736
6638
  /**
6737
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6639
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6738
6640
  *
6739
6641
  * Fires event {@link #event:columnMove columnMove} to attached listeners.
6740
6642
  *
@@ -6747,10 +6649,10 @@ declare namespace sap {
6747
6649
  /**
6748
6650
  * Parameters to pass along with the event
6749
6651
  */
6750
- mParameters?: sap.ui.table.$TableColumnMoveEventParameters
6652
+ mParameters?: sap.ui.table.Table$ColumnMoveEventParameters
6751
6653
  ): boolean;
6752
6654
  /**
6753
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6655
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6754
6656
  *
6755
6657
  * Fires event {@link #event:columnResize columnResize} to attached listeners.
6756
6658
  *
@@ -6763,10 +6665,10 @@ declare namespace sap {
6763
6665
  /**
6764
6666
  * Parameters to pass along with the event
6765
6667
  */
6766
- mParameters?: sap.ui.table.$TableColumnResizeEventParameters
6668
+ mParameters?: sap.ui.table.Table$ColumnResizeEventParameters
6767
6669
  ): boolean;
6768
6670
  /**
6769
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6671
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6770
6672
  *
6771
6673
  * Fires event {@link #event:columnSelect columnSelect} to attached listeners.
6772
6674
  *
@@ -6779,10 +6681,10 @@ declare namespace sap {
6779
6681
  /**
6780
6682
  * Parameters to pass along with the event
6781
6683
  */
6782
- mParameters?: sap.ui.table.$TableColumnSelectEventParameters
6684
+ mParameters?: sap.ui.table.Table$ColumnSelectEventParameters
6783
6685
  ): boolean;
6784
6686
  /**
6785
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6687
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6786
6688
  *
6787
6689
  * Fires event {@link #event:columnVisibility columnVisibility} to attached listeners.
6788
6690
  *
@@ -6795,11 +6697,11 @@ declare namespace sap {
6795
6697
  /**
6796
6698
  * Parameters to pass along with the event
6797
6699
  */
6798
- mParameters?: sap.ui.table.$TableColumnVisibilityEventParameters
6700
+ mParameters?: sap.ui.table.Table$ColumnVisibilityEventParameters
6799
6701
  ): boolean;
6800
6702
  /**
6801
- * @SINCE 1.23.0
6802
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6703
+ * @since 1.23.0
6704
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6803
6705
  *
6804
6706
  * Fires event {@link #event:customFilter customFilter} to attached listeners.
6805
6707
  *
@@ -6809,10 +6711,10 @@ declare namespace sap {
6809
6711
  /**
6810
6712
  * Parameters to pass along with the event
6811
6713
  */
6812
- mParameters?: sap.ui.table.$TableCustomFilterEventParameters
6714
+ mParameters?: sap.ui.table.Table$CustomFilterEventParameters
6813
6715
  ): this;
6814
6716
  /**
6815
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6717
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6816
6718
  *
6817
6719
  * Fires event {@link #event:filter filter} to attached listeners.
6818
6720
  *
@@ -6825,11 +6727,11 @@ declare namespace sap {
6825
6727
  /**
6826
6728
  * Parameters to pass along with the event
6827
6729
  */
6828
- mParameters?: sap.ui.table.$TableFilterEventParameters
6730
+ mParameters?: sap.ui.table.Table$FilterEventParameters
6829
6731
  ): boolean;
6830
6732
  /**
6831
- * @SINCE 1.37.0
6832
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6733
+ * @since 1.37.0
6734
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6833
6735
  *
6834
6736
  * Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
6835
6737
  *
@@ -6839,10 +6741,10 @@ declare namespace sap {
6839
6741
  /**
6840
6742
  * Parameters to pass along with the event
6841
6743
  */
6842
- mParameters?: sap.ui.table.$TableFirstVisibleRowChangedEventParameters
6744
+ mParameters?: sap.ui.table.Table$FirstVisibleRowChangedEventParameters
6843
6745
  ): this;
6844
6746
  /**
6845
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6747
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6846
6748
  *
6847
6749
  * Fires event {@link #event:group group} to attached listeners.
6848
6750
  *
@@ -6855,11 +6757,11 @@ declare namespace sap {
6855
6757
  /**
6856
6758
  * Parameters to pass along with the event
6857
6759
  */
6858
- mParameters?: sap.ui.table.$TableGroupEventParameters
6760
+ mParameters?: sap.ui.table.Table$GroupEventParameters
6859
6761
  ): boolean;
6860
6762
  /**
6861
- * @SINCE 1.60
6862
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6763
+ * @since 1.60
6764
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6863
6765
  *
6864
6766
  * Fires event {@link #event:paste paste} to attached listeners.
6865
6767
  *
@@ -6872,10 +6774,10 @@ declare namespace sap {
6872
6774
  /**
6873
6775
  * Parameters to pass along with the event
6874
6776
  */
6875
- mParameters?: sap.ui.table.$TablePasteEventParameters
6777
+ mParameters?: sap.ui.table.Table$PasteEventParameters
6876
6778
  ): boolean;
6877
6779
  /**
6878
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6780
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6879
6781
  *
6880
6782
  * Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
6881
6783
  *
@@ -6885,11 +6787,11 @@ declare namespace sap {
6885
6787
  /**
6886
6788
  * Parameters to pass along with the event
6887
6789
  */
6888
- mParameters?: sap.ui.table.$TableRowSelectionChangeEventParameters
6790
+ mParameters?: sap.ui.table.Table$RowSelectionChangeEventParameters
6889
6791
  ): this;
6890
6792
  /**
6891
- * @SINCE 1.86
6892
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6793
+ * @since 1.86
6794
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6893
6795
  *
6894
6796
  * Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
6895
6797
  *
@@ -6902,7 +6804,7 @@ declare namespace sap {
6902
6804
  mParameters?: object
6903
6805
  ): this;
6904
6806
  /**
6905
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6807
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6906
6808
  *
6907
6809
  * Fires event {@link #event:sort sort} to attached listeners.
6908
6810
  *
@@ -6915,7 +6817,7 @@ declare namespace sap {
6915
6817
  /**
6916
6818
  * Parameters to pass along with the event
6917
6819
  */
6918
- mParameters?: sap.ui.table.$TableSortEventParameters
6820
+ mParameters?: sap.ui.table.Table$SortEventParameters
6919
6821
  ): boolean;
6920
6822
  /**
6921
6823
  * Sets the focus to the stored focus DOM reference.
@@ -6940,7 +6842,7 @@ declare namespace sap {
6940
6842
  }
6941
6843
  ): void;
6942
6844
  /**
6943
- * @SINCE 1.52
6845
+ * @since 1.52
6944
6846
  *
6945
6847
  * Gets current value of property {@link #getAlternateRowColors alternateRowColors}.
6946
6848
  *
@@ -7017,7 +6919,7 @@ declare namespace sap {
7017
6919
  iIndex: int
7018
6920
  ): sap.ui.model.Context | null;
7019
6921
  /**
7020
- * @SINCE 1.54
6922
+ * @since 1.54
7021
6923
  *
7022
6924
  * Gets content of aggregation {@link #getContextMenu contextMenu}.
7023
6925
  *
@@ -7032,7 +6934,7 @@ declare namespace sap {
7032
6934
  */
7033
6935
  getContextMenu(): sap.ui.core.IContextMenu;
7034
6936
  /**
7035
- * @SINCE 1.52
6937
+ * @since 1.52
7036
6938
  *
7037
6939
  * Gets content of aggregation `dragDropConfig` which defines the drag-and-drop configuration.
7038
6940
  *
@@ -7064,7 +6966,7 @@ declare namespace sap {
7064
6966
  */
7065
6967
  getEditable(): boolean;
7066
6968
  /**
7067
- * @SINCE 1.27.0
6969
+ * @since 1.27.0
7068
6970
  *
7069
6971
  * Gets current value of property {@link #getEnableBusyIndicator enableBusyIndicator}.
7070
6972
  *
@@ -7080,7 +6982,7 @@ declare namespace sap {
7080
6982
  */
7081
6983
  getEnableBusyIndicator(): boolean;
7082
6984
  /**
7083
- * @SINCE 1.21.0
6985
+ * @since 1.21.0
7084
6986
  *
7085
6987
  * Gets current value of property {@link #getEnableCellFilter enableCellFilter}.
7086
6988
  *
@@ -7092,7 +6994,7 @@ declare namespace sap {
7092
6994
  */
7093
6995
  getEnableCellFilter(): boolean;
7094
6996
  /**
7095
- * @SINCE 1.21.0
6997
+ * @since 1.21.0
7096
6998
  *
7097
6999
  * Gets current value of property {@link #getEnableColumnFreeze enableColumnFreeze}.
7098
7000
  *
@@ -7114,7 +7016,7 @@ declare namespace sap {
7114
7016
  */
7115
7017
  getEnableColumnReordering(): boolean;
7116
7018
  /**
7117
- * @SINCE 1.23.0
7019
+ * @since 1.23.0
7118
7020
  *
7119
7021
  * Gets current value of property {@link #getEnableCustomFilter enableCustomFilter}.
7120
7022
  *
@@ -7153,7 +7055,7 @@ declare namespace sap {
7153
7055
  */
7154
7056
  getEnableGrouping(): boolean;
7155
7057
  /**
7156
- * @SINCE 1.23.0
7058
+ * @since 1.23.0
7157
7059
  *
7158
7060
  * Gets current value of property {@link #getEnableSelectAll enableSelectAll}.
7159
7061
  *
@@ -7183,7 +7085,7 @@ declare namespace sap {
7183
7085
  */
7184
7086
  getFirstVisibleRow(): int;
7185
7087
  /**
7186
- * @SINCE 1.18.7
7088
+ * @since 1.18.7
7187
7089
  *
7188
7090
  * Gets current value of property {@link #getFixedBottomRowCount fixedBottomRowCount}.
7189
7091
  *
@@ -7233,7 +7135,7 @@ declare namespace sap {
7233
7135
  */
7234
7136
  getFooter(): sap.ui.core.Control | string;
7235
7137
  /**
7236
- * @EXPERIMENTAL (since 1.28) - This feature has a limited functionality.
7138
+ * @experimental (since 1.28) - This feature has a limited functionality.
7237
7139
  *
7238
7140
  * ID of the element which is the current target of the association {@link #getGroupBy groupBy}, or `null`.
7239
7141
  */
@@ -7271,7 +7173,7 @@ declare namespace sap {
7271
7173
  */
7272
7174
  getNoData(): sap.ui.core.Control | string;
7273
7175
  /**
7274
- * @SINCE 1.64
7176
+ * @since 1.64
7275
7177
  *
7276
7178
  * Gets content of aggregation {@link #getPlugins plugins}.
7277
7179
  *
@@ -7284,7 +7186,7 @@ declare namespace sap {
7284
7186
  */
7285
7187
  getPlugins(): sap.ui.table.plugins.SelectionPlugin[];
7286
7188
  /**
7287
- * @SINCE 1.45.0
7189
+ * @since 1.45.0
7288
7190
  *
7289
7191
  * Gets current value of property {@link #getRowActionCount rowActionCount}.
7290
7192
  *
@@ -7421,7 +7323,7 @@ declare namespace sap {
7421
7323
  */
7422
7324
  getShowNoData(): boolean;
7423
7325
  /**
7424
- * @SINCE 1.21.2
7326
+ * @since 1.21.2
7425
7327
  *
7426
7328
  * Gets current value of property {@link #getShowOverlay showOverlay}.
7427
7329
  *
@@ -7485,7 +7387,7 @@ declare namespace sap {
7485
7387
  */
7486
7388
  getVisibleRowCount(): int;
7487
7389
  /**
7488
- * @SINCE 1.9.2
7390
+ * @since 1.9.2
7489
7391
  *
7490
7392
  * Gets current value of property {@link #getVisibleRowCountMode visibleRowCountMode}.
7491
7393
  *
@@ -7545,7 +7447,7 @@ declare namespace sap {
7545
7447
  oExtension: sap.ui.core.Control
7546
7448
  ): int;
7547
7449
  /**
7548
- * @SINCE 1.64
7450
+ * @since 1.64
7549
7451
  *
7550
7452
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins plugins}.
7551
7453
  * and returns its index if found or -1 otherwise.
@@ -7605,7 +7507,7 @@ declare namespace sap {
7605
7507
  iIndex: int
7606
7508
  ): this;
7607
7509
  /**
7608
- * @SINCE 1.64
7510
+ * @since 1.64
7609
7511
  *
7610
7512
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
7611
7513
  *
@@ -7674,7 +7576,7 @@ declare namespace sap {
7674
7576
  */
7675
7577
  removeAllExtension(): sap.ui.core.Control[];
7676
7578
  /**
7677
- * @SINCE 1.64
7579
+ * @since 1.64
7678
7580
  *
7679
7581
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
7680
7582
  *
@@ -7725,7 +7627,7 @@ declare namespace sap {
7725
7627
  vExtension: int | string | sap.ui.core.Control
7726
7628
  ): sap.ui.core.Control | null;
7727
7629
  /**
7728
- * @SINCE 1.64
7630
+ * @since 1.64
7729
7631
  *
7730
7632
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
7731
7633
  *
@@ -7773,7 +7675,7 @@ declare namespace sap {
7773
7675
  */
7774
7676
  selectAll(): this;
7775
7677
  /**
7776
- * @SINCE 1.52
7678
+ * @since 1.52
7777
7679
  *
7778
7680
  * Sets a new value for property {@link #getAlternateRowColors alternateRowColors}.
7779
7681
  *
@@ -7833,7 +7735,7 @@ declare namespace sap {
7833
7735
  bColumnHeaderVisible?: boolean
7834
7736
  ): this;
7835
7737
  /**
7836
- * @SINCE 1.54
7738
+ * @since 1.54
7837
7739
  *
7838
7740
  * Sets the aggregated {@link #getContextMenu contextMenu}.
7839
7741
  *
@@ -7866,7 +7768,7 @@ declare namespace sap {
7866
7768
  bEditable?: boolean
7867
7769
  ): this;
7868
7770
  /**
7869
- * @SINCE 1.27.0
7771
+ * @since 1.27.0
7870
7772
  *
7871
7773
  * Sets a new value for property {@link #getEnableBusyIndicator enableBusyIndicator}.
7872
7774
  *
@@ -7889,7 +7791,7 @@ declare namespace sap {
7889
7791
  bEnableBusyIndicator?: boolean
7890
7792
  ): this;
7891
7793
  /**
7892
- * @SINCE 1.21.0
7794
+ * @since 1.21.0
7893
7795
  *
7894
7796
  * Sets a new value for property {@link #getEnableCellFilter enableCellFilter}.
7895
7797
  *
@@ -7908,7 +7810,7 @@ declare namespace sap {
7908
7810
  bEnableCellFilter?: boolean
7909
7811
  ): this;
7910
7812
  /**
7911
- * @SINCE 1.21.0
7813
+ * @since 1.21.0
7912
7814
  *
7913
7815
  * Sets a new value for property {@link #getEnableColumnFreeze enableColumnFreeze}.
7914
7816
  *
@@ -7944,7 +7846,7 @@ declare namespace sap {
7944
7846
  bEnableColumnReordering?: boolean
7945
7847
  ): this;
7946
7848
  /**
7947
- * @SINCE 1.23.0
7849
+ * @since 1.23.0
7948
7850
  *
7949
7851
  * Sets a new value for property {@link #getEnableCustomFilter enableCustomFilter}.
7950
7852
  *
@@ -7997,7 +7899,7 @@ declare namespace sap {
7997
7899
  bEnableGrouping?: boolean
7998
7900
  ): this;
7999
7901
  /**
8000
- * @SINCE 1.23.0
7902
+ * @since 1.23.0
8001
7903
  *
8002
7904
  * Sets a new value for property {@link #getEnableSelectAll enableSelectAll}.
8003
7905
  *
@@ -8034,7 +7936,7 @@ declare namespace sap {
8034
7936
  iFirstVisibleRow?: int
8035
7937
  ): this;
8036
7938
  /**
8037
- * @SINCE 1.18.7
7939
+ * @since 1.18.7
8038
7940
  *
8039
7941
  * Sets a new value for property {@link #getFixedBottomRowCount fixedBottomRowCount}.
8040
7942
  *
@@ -8110,7 +8012,7 @@ declare namespace sap {
8110
8012
  vFooter: sap.ui.core.Control | string
8111
8013
  ): this;
8112
8014
  /**
8113
- * @EXPERIMENTAL (since 1.28) - This feature has a limited functionality.
8015
+ * @experimental (since 1.28) - This feature has a limited functionality.
8114
8016
  *
8115
8017
  * Sets the associated {@link #getGroupBy groupBy}.
8116
8018
  *
@@ -8173,7 +8075,7 @@ declare namespace sap {
8173
8075
  vNoData: sap.ui.core.Control | string
8174
8076
  ): this;
8175
8077
  /**
8176
- * @SINCE 1.45.0
8078
+ * @since 1.45.0
8177
8079
  *
8178
8080
  * Sets a new value for property {@link #getRowActionCount rowActionCount}.
8179
8081
  *
@@ -8335,7 +8237,7 @@ declare namespace sap {
8335
8237
  bShowNoData?: boolean
8336
8238
  ): this;
8337
8239
  /**
8338
- * @SINCE 1.21.2
8240
+ * @since 1.21.2
8339
8241
  *
8340
8242
  * Sets a new value for property {@link #getShowOverlay showOverlay}.
8341
8243
  *
@@ -8427,7 +8329,7 @@ declare namespace sap {
8427
8329
  iVisibleRowCount?: int
8428
8330
  ): this;
8429
8331
  /**
8430
- * @SINCE 1.9.2
8332
+ * @since 1.9.2
8431
8333
  *
8432
8334
  * Sets a new value for property {@link #getVisibleRowCountMode visibleRowCountMode}.
8433
8335
  *
@@ -8507,7 +8409,7 @@ declare namespace sap {
8507
8409
  unbindRows(): this;
8508
8410
  }
8509
8411
  /**
8510
- * @SINCE 1.21.1
8412
+ * @since 1.21.1
8511
8413
  * @deprecated (since 1.115) - Please use the {@link sap.m.p13n.Engine Engine} for personalization instead.
8512
8414
  *
8513
8415
  * The TablePersoController can be used to connect a table with a persistence service.
@@ -8639,7 +8541,7 @@ declare namespace sap {
8639
8541
  */
8640
8542
  getTable(): sap.ui.core.ID;
8641
8543
  /**
8642
- * @EXPERIMENTAL (since 1.21.2) - API might change / feature requires the sap.m library!
8544
+ * @experimental (since 1.21.2) - API might change / feature requires the sap.m library!
8643
8545
  *
8644
8546
  * Opens the personalization dialog for the Table to modify the visibility and the order of the columns.
8645
8547
  *
@@ -8879,9 +8781,7 @@ declare namespace sap {
8879
8781
  /**
8880
8782
  * The function to be called when the event occurs
8881
8783
  */
8882
- fnFunction: (
8883
- p1: sap.ui.base.Event<sap.ui.table.$TreeTableToggleOpenStateEventParameters>
8884
- ) => void,
8784
+ fnFunction: (p1: TreeTable$ToggleOpenStateEvent) => void,
8885
8785
  /**
8886
8786
  * Context object to call the event handler with. Defaults to this `sap.ui.table.TreeTable` itself
8887
8787
  */
@@ -8902,9 +8802,7 @@ declare namespace sap {
8902
8802
  /**
8903
8803
  * The function to be called when the event occurs
8904
8804
  */
8905
- fnFunction: (
8906
- p1: sap.ui.base.Event<sap.ui.table.$TreeTableToggleOpenStateEventParameters>
8907
- ) => void,
8805
+ fnFunction: (p1: TreeTable$ToggleOpenStateEvent) => void,
8908
8806
  /**
8909
8807
  * Context object to call the event handler with. Defaults to this `sap.ui.table.TreeTable` itself
8910
8808
  */
@@ -8939,9 +8837,7 @@ declare namespace sap {
8939
8837
  /**
8940
8838
  * The function to be called, when the event occurs
8941
8839
  */
8942
- fnFunction: (
8943
- p1: sap.ui.base.Event<sap.ui.table.$TreeTableToggleOpenStateEventParameters>
8944
- ) => void,
8840
+ fnFunction: (p1: TreeTable$ToggleOpenStateEvent) => void,
8945
8841
  /**
8946
8842
  * Context object on which the given function had to be called
8947
8843
  */
@@ -8975,7 +8871,7 @@ declare namespace sap {
8975
8871
  iLevel: int
8976
8872
  ): this;
8977
8873
  /**
8978
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8874
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8979
8875
  *
8980
8876
  * Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
8981
8877
  *
@@ -8985,7 +8881,7 @@ declare namespace sap {
8985
8881
  /**
8986
8882
  * Parameters to pass along with the event
8987
8883
  */
8988
- mParameters?: sap.ui.table.$TreeTableToggleOpenStateEventParameters
8884
+ mParameters?: sap.ui.table.TreeTable$ToggleOpenStateEventParameters
8989
8885
  ): this;
8990
8886
  /**
8991
8887
  * @deprecated (since 1.76) - replaced by the `collapseRecursive` binding parameter. May not work with all
@@ -9336,7 +9232,7 @@ declare namespace sap {
9336
9232
  iToIndex: int
9337
9233
  ): this;
9338
9234
  /**
9339
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9235
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9340
9236
  *
9341
9237
  * Allows to hide the tree structure (tree icons, indentation) in tree mode (property `useGroupMode` is
9342
9238
  * set to `false`).
@@ -9552,6 +9448,166 @@ declare namespace sap {
9552
9448
  * This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
9553
9449
  */
9554
9450
  type TreeAutoExpandMode = sap.ui.model.TreeAutoExpandMode;
9451
+
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
+ type Column$ColumnMenuOpenEvent = sap.ui.base.Event<Column$ColumnMenuOpenEventParameters>;
9459
+
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
+ type RowActionItem$PressEvent = sap.ui.base.Event<RowActionItem$PressEventParameters>;
9467
+
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
+ type Table$BeforeOpenContextMenuEvent = sap.ui.base.Event<Table$BeforeOpenContextMenuEventParameters>;
9475
+
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
+ type Table$BusyStateChangedEvent = sap.ui.base.Event<Table$BusyStateChangedEventParameters>;
9483
+
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
+ type Table$CellClickEvent = sap.ui.base.Event<Table$CellClickEventParameters>;
9491
+
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
+ type Table$CellContextmenuEvent = sap.ui.base.Event<Table$CellContextmenuEventParameters>;
9499
+
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
+ type Table$ColumnFreezeEvent = sap.ui.base.Event<Table$ColumnFreezeEventParameters>;
9507
+
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
+ type Table$ColumnMoveEvent = sap.ui.base.Event<Table$ColumnMoveEventParameters>;
9515
+
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
+ type Table$ColumnResizeEvent = sap.ui.base.Event<Table$ColumnResizeEventParameters>;
9523
+
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
+ type Table$ColumnSelectEvent = sap.ui.base.Event<Table$ColumnSelectEventParameters>;
9531
+
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
+ type Table$ColumnVisibilityEvent = sap.ui.base.Event<Table$ColumnVisibilityEventParameters>;
9539
+
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
+ type Table$CustomFilterEvent = sap.ui.base.Event<Table$CustomFilterEventParameters>;
9547
+
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
+ type Table$FilterEvent = sap.ui.base.Event<Table$FilterEventParameters>;
9555
+
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
+ type Table$FirstVisibleRowChangedEvent = sap.ui.base.Event<Table$FirstVisibleRowChangedEventParameters>;
9563
+
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
+ type Table$GroupEvent = sap.ui.base.Event<Table$GroupEventParameters>;
9571
+
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
+ type Table$PasteEvent = sap.ui.base.Event<Table$PasteEventParameters>;
9579
+
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
+ type Table$RowSelectionChangeEvent = sap.ui.base.Event<Table$RowSelectionChangeEventParameters>;
9587
+
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
+ type Table$RowsUpdatedEvent = sap.ui.base.Event<Table$RowsUpdatedEventParameters>;
9595
+
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
+ type Table$SortEvent = sap.ui.base.Event<Table$SortEventParameters>;
9603
+
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
+ type TreeTable$ToggleOpenStateEvent = sap.ui.base.Event<TreeTable$ToggleOpenStateEventParameters>;
9555
9611
  }
9556
9612
  }
9557
9613