@openui5/ts-types 1.122.1 → 1.123.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -9,6 +9,9 @@ declare namespace sap {
9
9
  */
10
10
  namespace table {
11
11
  namespace plugins {
12
+ /**
13
+ * Describes the settings that can be provided to the MultiSelectionPlugin constructor.
14
+ */
12
15
  interface $MultiSelectionPluginSettings
13
16
  extends sap.ui.table.plugins.$SelectionPluginSettings {
14
17
  /**
@@ -65,6 +68,11 @@ declare namespace sap {
65
68
  ) => void;
66
69
  }
67
70
 
71
+ /**
72
+ * Describes the settings that can be provided to the SelectionPlugin constructor.
73
+ *
74
+ * @experimental (since 1.64)
75
+ */
68
76
  interface $SelectionPluginSettings
69
77
  extends sap.ui.core.$ElementSettings {
70
78
  /**
@@ -81,6 +89,9 @@ declare namespace sap {
81
89
  selectionChange?: (oEvent: sap.ui.base.Event) => void;
82
90
  }
83
91
 
92
+ /**
93
+ * Parameters of the MultiSelectionPlugin#selectionChange event.
94
+ */
84
95
  interface MultiSelectionPlugin$SelectionChangeEventParameters
85
96
  extends sap.ui.table.plugins
86
97
  .SelectionPlugin$SelectionChangeEventParameters {
@@ -100,6 +111,9 @@ declare namespace sap {
100
111
  customPayload?: object;
101
112
  }
102
113
 
114
+ /**
115
+ * Parameters of the SelectionPlugin#selectionChange event.
116
+ */
103
117
  interface SelectionPlugin$SelectionChangeEventParameters {}
104
118
 
105
119
  /**
@@ -711,11 +725,17 @@ declare namespace sap {
711
725
  ): this;
712
726
  }
713
727
 
728
+ /**
729
+ * Event object of the MultiSelectionPlugin#selectionChange event.
730
+ */
714
731
  type MultiSelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<
715
732
  MultiSelectionPlugin$SelectionChangeEventParameters,
716
733
  MultiSelectionPlugin
717
734
  >;
718
735
 
736
+ /**
737
+ * Event object of the SelectionPlugin#selectionChange event.
738
+ */
719
739
  type SelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<
720
740
  SelectionPlugin$SelectionChangeEventParameters,
721
741
  SelectionPlugin
@@ -723,6 +743,9 @@ declare namespace sap {
723
743
  }
724
744
 
725
745
  namespace rowmodes {
746
+ /**
747
+ * Describes the settings that can be provided to the Auto constructor.
748
+ */
726
749
  interface $AutoSettings extends sap.ui.table.rowmodes.$RowModeSettings {
727
750
  /**
728
751
  * The minimum number of displayed rows.
@@ -770,6 +793,9 @@ declare namespace sap {
770
793
  | `{${string}}`;
771
794
  }
772
795
 
796
+ /**
797
+ * Describes the settings that can be provided to the Fixed constructor.
798
+ */
773
799
  interface $FixedSettings
774
800
  extends sap.ui.table.rowmodes.$RowModeSettings {
775
801
  /**
@@ -811,6 +837,9 @@ declare namespace sap {
811
837
  | `{${string}}`;
812
838
  }
813
839
 
840
+ /**
841
+ * Describes the settings that can be provided to the Interactive constructor.
842
+ */
814
843
  interface $InteractiveSettings
815
844
  extends sap.ui.table.rowmodes.$RowModeSettings {
816
845
  /**
@@ -860,6 +889,9 @@ declare namespace sap {
860
889
  | `{${string}}`;
861
890
  }
862
891
 
892
+ /**
893
+ * Describes the settings that can be provided to the RowMode constructor.
894
+ */
863
895
  interface $RowModeSettings extends sap.ui.core.$ElementSettings {}
864
896
 
865
897
  /**
@@ -1593,7 +1625,9 @@ declare namespace sap {
1593
1625
  Interactive = "Interactive",
1594
1626
  }
1595
1627
  }
1596
-
1628
+ /**
1629
+ * Describes the settings that can be provided to the AnalyticalColumn constructor.
1630
+ */
1597
1631
  interface $AnalyticalColumnSettings extends sap.ui.table.$ColumnSettings {
1598
1632
  /**
1599
1633
  * Defines the primary model property which is used inside the Column. In case of the analytical extension
@@ -1648,9 +1682,18 @@ declare namespace sap {
1648
1682
  | `{${string}}`;
1649
1683
  }
1650
1684
 
1685
+ /**
1686
+ * Describes the settings that can be provided to the AnalyticalColumnMenu constructor.
1687
+ *
1688
+ * @deprecated (since 1.117) - replaced by the `headerMenu` association of `sap.ui.table.Column`.
1689
+ * @experimental (since 1.21)
1690
+ */
1651
1691
  interface $AnalyticalColumnMenuSettings
1652
1692
  extends sap.ui.table.$ColumnMenuSettings {}
1653
1693
 
1694
+ /**
1695
+ * Describes the settings that can be provided to the AnalyticalTable constructor.
1696
+ */
1654
1697
  interface $AnalyticalTableSettings extends sap.ui.table.$TableSettings {
1655
1698
  /**
1656
1699
  * Specifies if the total values should be displayed in the group headers or on bottom of the row. Does
@@ -1733,7 +1776,7 @@ declare namespace sap {
1733
1776
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
1734
1777
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
1735
1778
  *
1736
- * @deprecated (since 1.117)
1779
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
1737
1780
  */
1738
1781
  columnVisibilityMenuSorter?:
1739
1782
  | any
@@ -1784,6 +1827,9 @@ declare namespace sap {
1784
1827
  group?: (oEvent: AnalyticalTable$GroupEvent) => void;
1785
1828
  }
1786
1829
 
1830
+ /**
1831
+ * Describes the settings that can be provided to the Column constructor.
1832
+ */
1787
1833
  interface $ColumnSettings extends sap.ui.core.$ElementSettings {
1788
1834
  /**
1789
1835
  * Width of the column in CSS units. Default value is `auto`, see
@@ -1952,7 +1998,7 @@ declare namespace sap {
1952
1998
  /**
1953
1999
  * Indicates if the column is grouped.
1954
2000
  *
1955
- * @deprecated (since 1.118)
2001
+ * @deprecated (since 1.118) - see the `enableGrouping` property of `sap.ui.table.Table` for details.
1956
2002
  */
1957
2003
  grouped?:
1958
2004
  | boolean
@@ -2087,13 +2133,21 @@ declare namespace sap {
2087
2133
  * Fires before the column menu is opened.
2088
2134
  *
2089
2135
  * @since 1.33.0
2090
- * @deprecated (since 1.117)
2136
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
2091
2137
  */
2092
2138
  columnMenuOpen?: (oEvent: Column$ColumnMenuOpenEvent) => void;
2093
2139
  }
2094
2140
 
2141
+ /**
2142
+ * Describes the settings that can be provided to the ColumnMenu constructor.
2143
+ *
2144
+ * @deprecated (since 1.117) - use the {@link sap.m.table.columnmenu.Menu} instead.
2145
+ */
2095
2146
  interface $ColumnMenuSettings extends sap.ui.unified.$MenuSettings {}
2096
2147
 
2148
+ /**
2149
+ * Describes the settings that can be provided to the Row constructor.
2150
+ */
2097
2151
  interface $RowSettings extends sap.ui.core.$ElementSettings {
2098
2152
  /**
2099
2153
  * The actual cells are a table-internal construct. The controls in this aggregation are the content of
@@ -2107,6 +2161,9 @@ declare namespace sap {
2107
2161
  | `{${string}}`;
2108
2162
  }
2109
2163
 
2164
+ /**
2165
+ * Describes the settings that can be provided to the RowAction constructor.
2166
+ */
2110
2167
  interface $RowActionSettings extends sap.ui.core.$ControlSettings {
2111
2168
  /**
2112
2169
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
@@ -2126,6 +2183,9 @@ declare namespace sap {
2126
2183
  | `{${string}}`;
2127
2184
  }
2128
2185
 
2186
+ /**
2187
+ * Describes the settings that can be provided to the RowActionItem constructor.
2188
+ */
2129
2189
  interface $RowActionItemSettings extends sap.ui.core.$ElementSettings {
2130
2190
  /**
2131
2191
  * The icon of the item.
@@ -2163,6 +2223,9 @@ declare namespace sap {
2163
2223
  press?: (oEvent: RowActionItem$PressEvent) => void;
2164
2224
  }
2165
2225
 
2226
+ /**
2227
+ * Describes the settings that can be provided to the RowSettings constructor.
2228
+ */
2166
2229
  interface $RowSettingsSettings extends sap.ui.core.$ElementSettings {
2167
2230
  /**
2168
2231
  * The highlight state of the rows.
@@ -2203,6 +2266,9 @@ declare namespace sap {
2203
2266
  | `{${string}}`;
2204
2267
  }
2205
2268
 
2269
+ /**
2270
+ * Describes the settings that can be provided to the Table constructor.
2271
+ */
2206
2272
  interface $TableSettings extends sap.ui.core.$ControlSettings {
2207
2273
  /**
2208
2274
  * Width of the Table.
@@ -2321,7 +2387,7 @@ declare namespace sap {
2321
2387
  * Flag whether the controls of the Table are editable or not (currently this only controls the background
2322
2388
  * color in certain themes!)
2323
2389
  *
2324
- * @deprecated (since 1.115)
2390
+ * @deprecated (since 1.115) - the concept has been discarded.
2325
2391
  */
2326
2392
  editable?:
2327
2393
  | boolean
@@ -2332,7 +2398,7 @@ declare namespace sap {
2332
2398
  * This property has been deprecated and must not be used anymore, since `Scrollbar` is the only supported
2333
2399
  * option.
2334
2400
  *
2335
- * @deprecated (since 1.38)
2401
+ * @deprecated (since 1.38) - the concept has been discarded.
2336
2402
  */
2337
2403
  navigationMode?:
2338
2404
  | sap.ui.table.NavigationMode
@@ -2376,7 +2442,7 @@ declare namespace sap {
2376
2442
  * - The column, by which the table is grouped, is not visible. It will become visible again only if the
2377
2443
  * table is grouped by another column or grouping is disabled.
2378
2444
  *
2379
- * @deprecated (since 1.110) - this feature has a limited functionality and should not be used anymore.
2445
+ * @deprecated (since 1.110) - the concept has been discarded.
2380
2446
  */
2381
2447
  enableGrouping?:
2382
2448
  | boolean
@@ -2709,7 +2775,7 @@ declare namespace sap {
2709
2775
  * to `true`. Setting `groupBy` in the view does not work and throws an error. It can only be set if the
2710
2776
  * column by which the table is grouped is already part of the `columns` aggregation of the table.
2711
2777
  *
2712
- * @deprecated (since 1.110)
2778
+ * @deprecated (since 1.110) - see the `enableGrouping` property for details.
2713
2779
  * @experimental (since 1.28) - This feature has a limited functionality.
2714
2780
  */
2715
2781
  groupBy?: sap.ui.table.Column | string;
@@ -2735,7 +2801,7 @@ declare namespace sap {
2735
2801
  /**
2736
2802
  * fired when a column of the table has been selected
2737
2803
  *
2738
- * @deprecated (since 1.117)
2804
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
2739
2805
  */
2740
2806
  columnSelect?: (oEvent: Table$ColumnSelectEvent) => void;
2741
2807
 
@@ -2768,14 +2834,14 @@ declare namespace sap {
2768
2834
  /**
2769
2835
  * fired when the table is grouped (experimental!).
2770
2836
  *
2771
- * @deprecated (since 1.118)
2837
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
2772
2838
  */
2773
2839
  group?: (oEvent: Table$GroupEvent) => void;
2774
2840
 
2775
2841
  /**
2776
2842
  * fired when the visibility of a table column is changed.
2777
2843
  *
2778
- * @deprecated (since 1.117)
2844
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
2779
2845
  */
2780
2846
  columnVisibility?: (oEvent: Table$ColumnVisibilityEvent) => void;
2781
2847
 
@@ -2855,6 +2921,11 @@ declare namespace sap {
2855
2921
  rowsUpdated?: (oEvent: sap.ui.base.Event) => void;
2856
2922
  }
2857
2923
 
2924
+ /**
2925
+ * Describes the settings that can be provided to the TablePersoController constructor.
2926
+ *
2927
+ * @deprecated (since 1.115) - Please use the {@link sap.m.p13n.Engine Engine} for personalization instead.
2928
+ */
2858
2929
  interface $TablePersoControllerSettings
2859
2930
  extends sap.ui.base.$ManagedObjectSettings {
2860
2931
  /**
@@ -2911,6 +2982,9 @@ declare namespace sap {
2911
2982
  table?: sap.ui.table.Table | string;
2912
2983
  }
2913
2984
 
2985
+ /**
2986
+ * Describes the settings that can be provided to the TreeTable constructor.
2987
+ */
2914
2988
  interface $TreeTableSettings extends sap.ui.table.$TableSettings {
2915
2989
  /**
2916
2990
  * Specifies whether the first level is expanded.
@@ -3013,9 +3087,17 @@ declare namespace sap {
3013
3087
  toggleOpenState?: (oEvent: TreeTable$ToggleOpenStateEvent) => void;
3014
3088
  }
3015
3089
 
3090
+ /**
3091
+ * Parameters of the AnalyticalTable#group event.
3092
+ */
3016
3093
  interface AnalyticalTable$GroupEventParameters
3017
3094
  extends sap.ui.table.Table$GroupEventParameters {}
3018
3095
 
3096
+ /**
3097
+ * Parameters of the Column#columnMenuOpen event.
3098
+ *
3099
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
3100
+ */
3019
3101
  interface Column$ColumnMenuOpenEventParameters {
3020
3102
  /**
3021
3103
  * Refence to the selected `menu` instance to be opened.
@@ -3023,6 +3105,9 @@ declare namespace sap {
3023
3105
  menu?: sap.ui.unified.Menu;
3024
3106
  }
3025
3107
 
3108
+ /**
3109
+ * Parameters of the RowActionItem#press event.
3110
+ */
3026
3111
  interface RowActionItem$PressEventParameters {
3027
3112
  /**
3028
3113
  * The item which was pressed.
@@ -3035,6 +3120,9 @@ declare namespace sap {
3035
3120
  row?: sap.ui.table.Row;
3036
3121
  }
3037
3122
 
3123
+ /**
3124
+ * Parameters of the Table#beforeOpenContextMenu event.
3125
+ */
3038
3126
  interface Table$BeforeOpenContextMenuEventParameters {
3039
3127
  /**
3040
3128
  * Row index where the context menu opens.
@@ -3052,6 +3140,9 @@ declare namespace sap {
3052
3140
  contextMenu?: sap.ui.core.IContextMenu;
3053
3141
  }
3054
3142
 
3143
+ /**
3144
+ * Parameters of the Table#busyStateChanged event.
3145
+ */
3055
3146
  interface Table$BusyStateChangedEventParameters {
3056
3147
  /**
3057
3148
  * busy state
@@ -3059,6 +3150,9 @@ declare namespace sap {
3059
3150
  busy?: boolean;
3060
3151
  }
3061
3152
 
3153
+ /**
3154
+ * Parameters of the Table#cellClick event.
3155
+ */
3062
3156
  interface Table$CellClickEventParameters {
3063
3157
  /**
3064
3158
  * The control of the cell.
@@ -3092,6 +3186,11 @@ declare namespace sap {
3092
3186
  rowBindingContext?: sap.ui.model.Context;
3093
3187
  }
3094
3188
 
3189
+ /**
3190
+ * Parameters of the Table#cellContextmenu event.
3191
+ *
3192
+ * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
3193
+ */
3095
3194
  interface Table$CellContextmenuEventParameters {
3096
3195
  /**
3097
3196
  * The control of the cell.
@@ -3125,6 +3224,9 @@ declare namespace sap {
3125
3224
  rowBindingContext?: sap.ui.model.Context;
3126
3225
  }
3127
3226
 
3227
+ /**
3228
+ * Parameters of the Table#columnFreeze event.
3229
+ */
3128
3230
  interface Table$ColumnFreezeEventParameters {
3129
3231
  /**
3130
3232
  * reference to the column to freeze
@@ -3132,6 +3234,9 @@ declare namespace sap {
3132
3234
  column?: sap.ui.table.Column;
3133
3235
  }
3134
3236
 
3237
+ /**
3238
+ * Parameters of the Table#columnMove event.
3239
+ */
3135
3240
  interface Table$ColumnMoveEventParameters {
3136
3241
  /**
3137
3242
  * moved column.
@@ -3144,6 +3249,9 @@ declare namespace sap {
3144
3249
  newPos?: int;
3145
3250
  }
3146
3251
 
3252
+ /**
3253
+ * Parameters of the Table#columnResize event.
3254
+ */
3147
3255
  interface Table$ColumnResizeEventParameters {
3148
3256
  /**
3149
3257
  * resized column.
@@ -3156,6 +3264,11 @@ declare namespace sap {
3156
3264
  width?: sap.ui.core.CSSSize;
3157
3265
  }
3158
3266
 
3267
+ /**
3268
+ * Parameters of the Table#columnSelect event.
3269
+ *
3270
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
3271
+ */
3159
3272
  interface Table$ColumnSelectEventParameters {
3160
3273
  /**
3161
3274
  * reference to the selected column
@@ -3163,6 +3276,11 @@ declare namespace sap {
3163
3276
  column?: sap.ui.table.Column;
3164
3277
  }
3165
3278
 
3279
+ /**
3280
+ * Parameters of the Table#columnVisibility event.
3281
+ *
3282
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
3283
+ */
3166
3284
  interface Table$ColumnVisibilityEventParameters {
3167
3285
  /**
3168
3286
  * affected column.
@@ -3175,6 +3293,9 @@ declare namespace sap {
3175
3293
  newVisible?: boolean;
3176
3294
  }
3177
3295
 
3296
+ /**
3297
+ * Parameters of the Table#customFilter event.
3298
+ */
3178
3299
  interface Table$CustomFilterEventParameters {
3179
3300
  /**
3180
3301
  * The column instance on which the custom filter button was pressed.
@@ -3187,6 +3308,9 @@ declare namespace sap {
3187
3308
  value?: string;
3188
3309
  }
3189
3310
 
3311
+ /**
3312
+ * Parameters of the Table#filter event.
3313
+ */
3190
3314
  interface Table$FilterEventParameters {
3191
3315
  /**
3192
3316
  * filtered column.
@@ -3199,6 +3323,9 @@ declare namespace sap {
3199
3323
  value?: string;
3200
3324
  }
3201
3325
 
3326
+ /**
3327
+ * Parameters of the Table#firstVisibleRowChanged event.
3328
+ */
3202
3329
  interface Table$FirstVisibleRowChangedEventParameters {
3203
3330
  /**
3204
3331
  * First visible row
@@ -3206,6 +3333,11 @@ declare namespace sap {
3206
3333
  firstVisibleRow?: int;
3207
3334
  }
3208
3335
 
3336
+ /**
3337
+ * Parameters of the Table#group event.
3338
+ *
3339
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
3340
+ */
3209
3341
  interface Table$GroupEventParameters {
3210
3342
  /**
3211
3343
  * grouped column.
@@ -3213,6 +3345,9 @@ declare namespace sap {
3213
3345
  column?: sap.ui.table.Column;
3214
3346
  }
3215
3347
 
3348
+ /**
3349
+ * Parameters of the Table#paste event.
3350
+ */
3216
3351
  interface Table$PasteEventParameters {
3217
3352
  /**
3218
3353
  * 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
@@ -3221,6 +3356,9 @@ declare namespace sap {
3221
3356
  data?: string[][];
3222
3357
  }
3223
3358
 
3359
+ /**
3360
+ * Parameters of the Table#rowSelectionChange event.
3361
+ */
3224
3362
  interface Table$RowSelectionChangeEventParameters {
3225
3363
  /**
3226
3364
  * row index which has been clicked so that the selection has been changed (either selected or deselected)
@@ -3249,8 +3387,14 @@ declare namespace sap {
3249
3387
  userInteraction?: boolean;
3250
3388
  }
3251
3389
 
3390
+ /**
3391
+ * Parameters of the Table#rowsUpdated event.
3392
+ */
3252
3393
  interface Table$RowsUpdatedEventParameters {}
3253
3394
 
3395
+ /**
3396
+ * Parameters of the Table#sort event.
3397
+ */
3254
3398
  interface Table$SortEventParameters {
3255
3399
  /**
3256
3400
  * The column for which the sorting is changed
@@ -3268,6 +3412,9 @@ declare namespace sap {
3268
3412
  columnAdded?: boolean;
3269
3413
  }
3270
3414
 
3415
+ /**
3416
+ * Parameters of the TreeTable#toggleOpenState event.
3417
+ */
3271
3418
  interface TreeTable$ToggleOpenStateEventParameters {
3272
3419
  /**
3273
3420
  * Index of the expanded/collapsed row
@@ -3530,7 +3677,7 @@ declare namespace sap {
3530
3677
  /**
3531
3678
  * A column menu which is used by the analytical column
3532
3679
  *
3533
- * @deprecated (since 1.117)
3680
+ * @deprecated (since 1.117) - replaced by the `headerMenu` association of `sap.ui.table.Column`.
3534
3681
  * @experimental (since 1.21)
3535
3682
  */
3536
3683
  class AnalyticalColumnMenu extends sap.ui.table.ColumnMenu {
@@ -3890,7 +4037,7 @@ declare namespace sap {
3890
4037
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
3891
4038
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
3892
4039
  *
3893
- * @deprecated (since 1.117)
4040
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
3894
4041
  *
3895
4042
  * @returns Value of property `columnVisibilityMenuSorter`
3896
4043
  */
@@ -3906,15 +4053,15 @@ declare namespace sap {
3906
4053
  */
3907
4054
  getDirty(): boolean;
3908
4055
  /**
3909
- * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
4056
+ * The `enableGrouping` property is not supported by the `AnalyticalTable` control.
3910
4057
  *
3911
- * @deprecated (since 1.28)
4058
+ * @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `AnalyticalTable` control.
3912
4059
  */
3913
4060
  getEnableGrouping(): boolean;
3914
4061
  /**
3915
4062
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
3916
4063
  *
3917
- * @deprecated (since 1.28)
4064
+ * @deprecated (since 1.28) - the `groupBy` association is not supported by the `AnalyticalTable` control.
3918
4065
  */
3919
4066
  getGroupBy(): sap.ui.core.ID;
3920
4067
  /**
@@ -4151,7 +4298,7 @@ declare namespace sap {
4151
4298
  *
4152
4299
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4153
4300
  *
4154
- * @deprecated (since 1.117)
4301
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
4155
4302
  *
4156
4303
  * @returns Reference to `this` in order to allow method chaining
4157
4304
  */
@@ -4179,9 +4326,9 @@ declare namespace sap {
4179
4326
  bDirty?: boolean
4180
4327
  ): this;
4181
4328
  /**
4182
- * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
4329
+ * The `enableGrouping` property is not supported by the `AnalyticalTable` control.
4183
4330
  *
4184
- * @deprecated (since 1.28)
4331
+ * @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `AnalyticalTable` control.
4185
4332
  *
4186
4333
  * @returns Reference to `this` in order to allow method chaining
4187
4334
  */
@@ -4189,7 +4336,7 @@ declare namespace sap {
4189
4336
  /**
4190
4337
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
4191
4338
  *
4192
- * @deprecated (since 1.28)
4339
+ * @deprecated (since 1.28) - the `groupBy` association is not supported by the `AnalyticalTable` control.
4193
4340
  *
4194
4341
  * @returns Reference to `this` in order to allow method chaining
4195
4342
  */
@@ -4396,7 +4543,7 @@ declare namespace sap {
4396
4543
  * Fires before the column menu is opened.
4397
4544
  *
4398
4545
  * @since 1.33.0
4399
- * @deprecated (since 1.117)
4546
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
4400
4547
  *
4401
4548
  * @returns Reference to `this` in order to allow method chaining
4402
4549
  */
@@ -4425,7 +4572,7 @@ declare namespace sap {
4425
4572
  * Fires before the column menu is opened.
4426
4573
  *
4427
4574
  * @since 1.33.0
4428
- * @deprecated (since 1.117)
4575
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
4429
4576
  *
4430
4577
  * @returns Reference to `this` in order to allow method chaining
4431
4578
  */
@@ -4476,7 +4623,7 @@ declare namespace sap {
4476
4623
  * The passed function and listener object must match the ones used for event registration.
4477
4624
  *
4478
4625
  * @since 1.33.0
4479
- * @deprecated (since 1.117)
4626
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
4480
4627
  *
4481
4628
  * @returns Reference to `this` in order to allow method chaining
4482
4629
  */
@@ -4497,7 +4644,7 @@ declare namespace sap {
4497
4644
  * event object. The return value of this method indicates whether the default action should be executed.
4498
4645
  *
4499
4646
  * @since 1.33.0
4500
- * @deprecated (since 1.117)
4647
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
4501
4648
  * @ui5-protected Do not call from applications (only from related classes in the framework)
4502
4649
  *
4503
4650
  * @returns Whether or not to prevent the default action
@@ -4638,7 +4785,7 @@ declare namespace sap {
4638
4785
  *
4639
4786
  * Default value is `false`.
4640
4787
  *
4641
- * @deprecated (since 1.118)
4788
+ * @deprecated (since 1.118) - see the `enableGrouping` property of `sap.ui.table.Table` for details.
4642
4789
  *
4643
4790
  * @returns Value of property `grouped`
4644
4791
  */
@@ -5099,7 +5246,7 @@ declare namespace sap {
5099
5246
  *
5100
5247
  * Default value is `false`.
5101
5248
  *
5102
- * @deprecated (since 1.118)
5249
+ * @deprecated (since 1.118) - see the `enableGrouping` property of `sap.ui.table.Table` for details.
5103
5250
  *
5104
5251
  * @returns Reference to `this` in order to allow method chaining
5105
5252
  */
@@ -6819,7 +6966,7 @@ declare namespace sap {
6819
6966
  *
6820
6967
  * fired when a column of the table has been selected
6821
6968
  *
6822
- * @deprecated (since 1.117)
6969
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
6823
6970
  *
6824
6971
  * @returns Reference to `this` in order to allow method chaining
6825
6972
  */
@@ -6846,7 +6993,7 @@ declare namespace sap {
6846
6993
  *
6847
6994
  * fired when a column of the table has been selected
6848
6995
  *
6849
- * @deprecated (since 1.117)
6996
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
6850
6997
  *
6851
6998
  * @returns Reference to `this` in order to allow method chaining
6852
6999
  */
@@ -6869,7 +7016,7 @@ declare namespace sap {
6869
7016
  *
6870
7017
  * fired when the visibility of a table column is changed.
6871
7018
  *
6872
- * @deprecated (since 1.117)
7019
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
6873
7020
  *
6874
7021
  * @returns Reference to `this` in order to allow method chaining
6875
7022
  */
@@ -6897,7 +7044,7 @@ declare namespace sap {
6897
7044
  *
6898
7045
  * fired when the visibility of a table column is changed.
6899
7046
  *
6900
- * @deprecated (since 1.117)
7047
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
6901
7048
  *
6902
7049
  * @returns Reference to `this` in order to allow method chaining
6903
7050
  */
@@ -7076,7 +7223,7 @@ declare namespace sap {
7076
7223
  *
7077
7224
  * fired when the table is grouped (experimental!).
7078
7225
  *
7079
- * @deprecated (since 1.118)
7226
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
7080
7227
  *
7081
7228
  * @returns Reference to `this` in order to allow method chaining
7082
7229
  */
@@ -7103,7 +7250,7 @@ declare namespace sap {
7103
7250
  *
7104
7251
  * fired when the table is grouped (experimental!).
7105
7252
  *
7106
- * @deprecated (since 1.118)
7253
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
7107
7254
  *
7108
7255
  * @returns Reference to `this` in order to allow method chaining
7109
7256
  */
@@ -7623,7 +7770,7 @@ declare namespace sap {
7623
7770
  *
7624
7771
  * The passed function and listener object must match the ones used for event registration.
7625
7772
  *
7626
- * @deprecated (since 1.117)
7773
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
7627
7774
  *
7628
7775
  * @returns Reference to `this` in order to allow method chaining
7629
7776
  */
@@ -7643,7 +7790,7 @@ declare namespace sap {
7643
7790
  *
7644
7791
  * The passed function and listener object must match the ones used for event registration.
7645
7792
  *
7646
- * @deprecated (since 1.117)
7793
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
7647
7794
  *
7648
7795
  * @returns Reference to `this` in order to allow method chaining
7649
7796
  */
@@ -7719,7 +7866,7 @@ declare namespace sap {
7719
7866
  *
7720
7867
  * The passed function and listener object must match the ones used for event registration.
7721
7868
  *
7722
- * @deprecated (since 1.118)
7869
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
7723
7870
  *
7724
7871
  * @returns Reference to `this` in order to allow method chaining
7725
7872
  */
@@ -7962,7 +8109,7 @@ declare namespace sap {
7962
8109
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
7963
8110
  * event object. The return value of this method indicates whether the default action should be executed.
7964
8111
  *
7965
- * @deprecated (since 1.117)
8112
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
7966
8113
  * @ui5-protected Do not call from applications (only from related classes in the framework)
7967
8114
  *
7968
8115
  * @returns Whether or not to prevent the default action
@@ -7979,7 +8126,7 @@ declare namespace sap {
7979
8126
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
7980
8127
  * event object. The return value of this method indicates whether the default action should be executed.
7981
8128
  *
7982
- * @deprecated (since 1.117)
8129
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
7983
8130
  * @ui5-protected Do not call from applications (only from related classes in the framework)
7984
8131
  *
7985
8132
  * @returns Whether or not to prevent the default action
@@ -8040,7 +8187,7 @@ declare namespace sap {
8040
8187
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
8041
8188
  * event object. The return value of this method indicates whether the default action should be executed.
8042
8189
  *
8043
- * @deprecated (since 1.118)
8190
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
8044
8191
  * @ui5-protected Do not call from applications (only from related classes in the framework)
8045
8192
  *
8046
8193
  * @returns Whether or not to prevent the default action
@@ -8256,7 +8403,7 @@ declare namespace sap {
8256
8403
  *
8257
8404
  * Default value is `true`.
8258
8405
  *
8259
- * @deprecated (since 1.115)
8406
+ * @deprecated (since 1.115) - the concept has been discarded.
8260
8407
  *
8261
8408
  * @returns Value of property `editable`
8262
8409
  */
@@ -8346,7 +8493,7 @@ declare namespace sap {
8346
8493
  *
8347
8494
  * Default value is `false`.
8348
8495
  *
8349
- * @deprecated (since 1.110) - this feature has a limited functionality and should not be used anymore.
8496
+ * @deprecated (since 1.110) - the concept has been discarded.
8350
8497
  *
8351
8498
  * @returns Value of property `enableGrouping`
8352
8499
  */
@@ -8437,7 +8584,7 @@ declare namespace sap {
8437
8584
  /**
8438
8585
  * ID of the element which is the current target of the association {@link #getGroupBy groupBy}, or `null`.
8439
8586
  *
8440
- * @deprecated (since 1.110)
8587
+ * @deprecated (since 1.110) - see the `enableGrouping` property for details.
8441
8588
  * @experimental (since 1.28) - This feature has a limited functionality.
8442
8589
  */
8443
8590
  getGroupBy(): sap.ui.core.ID | null;
@@ -8462,7 +8609,7 @@ declare namespace sap {
8462
8609
  *
8463
8610
  * Default value is `"Scrollbar"`.
8464
8611
  *
8465
- * @deprecated (since 1.38)
8612
+ * @deprecated (since 1.38) - the concept has been discarded.
8466
8613
  *
8467
8614
  * @returns Value of property `navigationMode`
8468
8615
  */
@@ -9122,7 +9269,7 @@ declare namespace sap {
9122
9269
  *
9123
9270
  * Default value is `true`.
9124
9271
  *
9125
- * @deprecated (since 1.115)
9272
+ * @deprecated (since 1.115) - the concept has been discarded.
9126
9273
  *
9127
9274
  * @returns Reference to `this` in order to allow method chaining
9128
9275
  */
@@ -9254,7 +9401,7 @@ declare namespace sap {
9254
9401
  *
9255
9402
  * Default value is `false`.
9256
9403
  *
9257
- * @deprecated (since 1.110) - this feature has a limited functionality and should not be used anymore.
9404
+ * @deprecated (since 1.110) - the concept has been discarded.
9258
9405
  *
9259
9406
  * @returns Reference to `this` in order to allow method chaining
9260
9407
  */
@@ -9382,7 +9529,7 @@ declare namespace sap {
9382
9529
  /**
9383
9530
  * Sets the associated {@link #getGroupBy groupBy}.
9384
9531
  *
9385
- * @deprecated (since 1.110)
9532
+ * @deprecated (since 1.110) - see the `enableGrouping` property for details.
9386
9533
  * @experimental (since 1.28) - This feature has a limited functionality.
9387
9534
  *
9388
9535
  * @returns Reference to `this` in order to allow method chaining
@@ -9424,7 +9571,7 @@ declare namespace sap {
9424
9571
  *
9425
9572
  * Default value is `"Scrollbar"`.
9426
9573
  *
9427
- * @deprecated (since 1.38)
9574
+ * @deprecated (since 1.38) - the concept has been discarded.
9428
9575
  *
9429
9576
  * @returns Reference to `this` in order to allow method chaining
9430
9577
  */
@@ -10354,9 +10501,9 @@ declare namespace sap {
10354
10501
  */
10355
10502
  getCollapseRecursive(): boolean;
10356
10503
  /**
10357
- * The property `enableGrouping` is not supported by the `TreeTable` control.
10504
+ * The `enableGrouping` property is not supported by the `TreeTable` control.
10358
10505
  *
10359
- * @deprecated (since 1.28)
10506
+ * @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `TreeTable` control.
10360
10507
  */
10361
10508
  getEnableGrouping(): boolean;
10362
10509
  /**
@@ -10391,7 +10538,7 @@ declare namespace sap {
10391
10538
  /**
10392
10539
  * The `groupBy` association is not supported by the `TreeTable` control.
10393
10540
  *
10394
- * @deprecated (since 1.28)
10541
+ * @deprecated (since 1.28) - the `groupBy` association is not supported by the `TreeTable` control.
10395
10542
  */
10396
10543
  getGroupBy(): sap.ui.core.ID;
10397
10544
  /**
@@ -10531,11 +10678,12 @@ declare namespace sap {
10531
10678
  bCollapseRecursive?: boolean
10532
10679
  ): this;
10533
10680
  /**
10534
- * The property `enableGrouping` is not supported by the `TreeTable` control.
10681
+ * The `enableGrouping` property is not supported by the `TreeTable` control.
10535
10682
  * See:
10536
10683
  * sap.ui.table.TreeTable#setUseGroupMode
10537
10684
  *
10538
- * @deprecated (since 1.28) - To get a group-like visualization the `useGroupMode` property can be used.
10685
+ * @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `TreeTable` control.
10686
+ * To get a group-like visualization the `useGroupMode` property can be used.
10539
10687
  *
10540
10688
  * @returns Reference to `this` in order to allow method chaining
10541
10689
  */
@@ -10595,7 +10743,7 @@ declare namespace sap {
10595
10743
  /**
10596
10744
  * The `groupBy` association is not supported by the `TreeTable` control.
10597
10745
  *
10598
- * @deprecated (since 1.28)
10746
+ * @deprecated (since 1.28) - the `groupBy` association is not supported by the `TreeTable` control.
10599
10747
  *
10600
10748
  * @returns Reference to `this` in order to allow method chaining
10601
10749
  */
@@ -10763,7 +10911,7 @@ declare namespace sap {
10763
10911
  *
10764
10912
  * This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'NavigationMode'.
10765
10913
  *
10766
- * @deprecated (since 1.38)
10914
+ * @deprecated (since 1.38) - the concept has been discarded.
10767
10915
  */
10768
10916
  enum NavigationMode {
10769
10917
  /**
@@ -10785,7 +10933,7 @@ declare namespace sap {
10785
10933
  *
10786
10934
  * This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'ResetAllMode'.
10787
10935
  *
10788
- * @deprecated (since 1.115)
10936
+ * @deprecated (since 1.115) - replaced by {@link sap.m.p13n.Engine}
10789
10937
  */
10790
10938
  enum ResetAllMode {
10791
10939
  /**
@@ -10904,7 +11052,7 @@ declare namespace sap {
10904
11052
  *
10905
11053
  * This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'VisibleRowCountMode'.
10906
11054
  *
10907
- * @deprecated (since 1.119)
11055
+ * @deprecated (since 1.119) - see the `rowMode` aggregation of `sap.ui.table.Table` for more details.
10908
11056
  */
10909
11057
  enum VisibleRowCountMode {
10910
11058
  /**
@@ -10932,110 +11080,183 @@ declare namespace sap {
10932
11080
  *
10933
11081
  * This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
10934
11082
  *
10935
- * @deprecated (since 1.120)
11083
+ * @deprecated (since 1.120) - replaced by `sap.ui.model.TreeAutoExpandMode`
10936
11084
  */
10937
11085
  type TreeAutoExpandMode = sap.ui.model.TreeAutoExpandMode;
10938
11086
 
11087
+ /**
11088
+ * Event object of the AnalyticalTable#group event.
11089
+ */
10939
11090
  type AnalyticalTable$GroupEvent = sap.ui.base.Event<
10940
11091
  AnalyticalTable$GroupEventParameters,
10941
11092
  AnalyticalTable
10942
11093
  >;
10943
11094
 
11095
+ /**
11096
+ * Event object of the Column#columnMenuOpen event.
11097
+ *
11098
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
11099
+ */
10944
11100
  type Column$ColumnMenuOpenEvent = sap.ui.base.Event<
10945
11101
  Column$ColumnMenuOpenEventParameters,
10946
11102
  Column
10947
11103
  >;
10948
11104
 
11105
+ /**
11106
+ * Event object of the RowActionItem#press event.
11107
+ */
10949
11108
  type RowActionItem$PressEvent = sap.ui.base.Event<
10950
11109
  RowActionItem$PressEventParameters,
10951
11110
  RowActionItem
10952
11111
  >;
10953
11112
 
11113
+ /**
11114
+ * Event object of the Table#beforeOpenContextMenu event.
11115
+ */
10954
11116
  type Table$BeforeOpenContextMenuEvent = sap.ui.base.Event<
10955
11117
  Table$BeforeOpenContextMenuEventParameters,
10956
11118
  Table
10957
11119
  >;
10958
11120
 
11121
+ /**
11122
+ * Event object of the Table#busyStateChanged event.
11123
+ */
10959
11124
  type Table$BusyStateChangedEvent = sap.ui.base.Event<
10960
11125
  Table$BusyStateChangedEventParameters,
10961
11126
  Table
10962
11127
  >;
10963
11128
 
11129
+ /**
11130
+ * Event object of the Table#cellClick event.
11131
+ */
10964
11132
  type Table$CellClickEvent = sap.ui.base.Event<
10965
11133
  Table$CellClickEventParameters,
10966
11134
  Table
10967
11135
  >;
10968
11136
 
11137
+ /**
11138
+ * Event object of the Table#cellContextmenu event.
11139
+ *
11140
+ * @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
11141
+ */
10969
11142
  type Table$CellContextmenuEvent = sap.ui.base.Event<
10970
11143
  Table$CellContextmenuEventParameters,
10971
11144
  Table
10972
11145
  >;
10973
11146
 
11147
+ /**
11148
+ * Event object of the Table#columnFreeze event.
11149
+ */
10974
11150
  type Table$ColumnFreezeEvent = sap.ui.base.Event<
10975
11151
  Table$ColumnFreezeEventParameters,
10976
11152
  Table
10977
11153
  >;
10978
11154
 
11155
+ /**
11156
+ * Event object of the Table#columnMove event.
11157
+ */
10979
11158
  type Table$ColumnMoveEvent = sap.ui.base.Event<
10980
11159
  Table$ColumnMoveEventParameters,
10981
11160
  Table
10982
11161
  >;
10983
11162
 
11163
+ /**
11164
+ * Event object of the Table#columnResize event.
11165
+ */
10984
11166
  type Table$ColumnResizeEvent = sap.ui.base.Event<
10985
11167
  Table$ColumnResizeEventParameters,
10986
11168
  Table
10987
11169
  >;
10988
11170
 
11171
+ /**
11172
+ * Event object of the Table#columnSelect event.
11173
+ *
11174
+ * @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
11175
+ */
10989
11176
  type Table$ColumnSelectEvent = sap.ui.base.Event<
10990
11177
  Table$ColumnSelectEventParameters,
10991
11178
  Table
10992
11179
  >;
10993
11180
 
11181
+ /**
11182
+ * Event object of the Table#columnVisibility event.
11183
+ *
11184
+ * @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
11185
+ */
10994
11186
  type Table$ColumnVisibilityEvent = sap.ui.base.Event<
10995
11187
  Table$ColumnVisibilityEventParameters,
10996
11188
  Table
10997
11189
  >;
10998
11190
 
11191
+ /**
11192
+ * Event object of the Table#customFilter event.
11193
+ */
10999
11194
  type Table$CustomFilterEvent = sap.ui.base.Event<
11000
11195
  Table$CustomFilterEventParameters,
11001
11196
  Table
11002
11197
  >;
11003
11198
 
11199
+ /**
11200
+ * Event object of the Table#filter event.
11201
+ */
11004
11202
  type Table$FilterEvent = sap.ui.base.Event<
11005
11203
  Table$FilterEventParameters,
11006
11204
  Table
11007
11205
  >;
11008
11206
 
11207
+ /**
11208
+ * Event object of the Table#firstVisibleRowChanged event.
11209
+ */
11009
11210
  type Table$FirstVisibleRowChangedEvent = sap.ui.base.Event<
11010
11211
  Table$FirstVisibleRowChangedEventParameters,
11011
11212
  Table
11012
11213
  >;
11013
11214
 
11215
+ /**
11216
+ * Event object of the Table#group event.
11217
+ *
11218
+ * @deprecated (since 1.118) - see the `enableGrouping` property for details.
11219
+ */
11014
11220
  type Table$GroupEvent = sap.ui.base.Event<
11015
11221
  Table$GroupEventParameters,
11016
11222
  Table
11017
11223
  >;
11018
11224
 
11225
+ /**
11226
+ * Event object of the Table#paste event.
11227
+ */
11019
11228
  type Table$PasteEvent = sap.ui.base.Event<
11020
11229
  Table$PasteEventParameters,
11021
11230
  Table
11022
11231
  >;
11023
11232
 
11233
+ /**
11234
+ * Event object of the Table#rowSelectionChange event.
11235
+ */
11024
11236
  type Table$RowSelectionChangeEvent = sap.ui.base.Event<
11025
11237
  Table$RowSelectionChangeEventParameters,
11026
11238
  Table
11027
11239
  >;
11028
11240
 
11241
+ /**
11242
+ * Event object of the Table#rowsUpdated event.
11243
+ */
11029
11244
  type Table$RowsUpdatedEvent = sap.ui.base.Event<
11030
11245
  Table$RowsUpdatedEventParameters,
11031
11246
  Table
11032
11247
  >;
11033
11248
 
11249
+ /**
11250
+ * Event object of the Table#sort event.
11251
+ */
11034
11252
  type Table$SortEvent = sap.ui.base.Event<
11035
11253
  Table$SortEventParameters,
11036
11254
  Table
11037
11255
  >;
11038
11256
 
11257
+ /**
11258
+ * Event object of the TreeTable#toggleOpenState event.
11259
+ */
11039
11260
  type TreeTable$ToggleOpenStateEvent = sap.ui.base.Event<
11040
11261
  TreeTable$ToggleOpenStateEventParameters,
11041
11262
  TreeTable