@openui5/ts-types-esm 1.101.0 → 1.102.2

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.101.0
1
+ // For Library Version: 1.102.2
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -233,6 +233,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
233
233
  * with the information contained in `oClassInfo`.
234
234
  *
235
235
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Column.extend}.
236
+ *
237
+ * @returns Created class / constructor function
236
238
  */
237
239
  static extend<T extends Record<string, unknown>>(
238
240
  /**
@@ -251,12 +253,16 @@ declare module "sap/ui/table/AnalyticalColumn" {
251
253
  ): Function;
252
254
  /**
253
255
  * Returns a metadata object for class sap.ui.table.AnalyticalColumn.
256
+ *
257
+ * @returns Metadata object describing this class
254
258
  */
255
259
  static getMetadata(): ElementMetadata;
256
260
  /**
257
261
  * Gets current value of property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
258
262
  *
259
263
  * If the column is grouped, this formatter is used to format the value in the group header
264
+ *
265
+ * @returns Value of property `groupHeaderFormatter`
260
266
  */
261
267
  getGroupHeaderFormatter(): any;
262
268
  /**
@@ -266,6 +272,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
266
272
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
267
273
  *
268
274
  * Default value is `false`.
275
+ *
276
+ * @returns Value of property `inResult`
269
277
  */
270
278
  getInResult(): boolean;
271
279
  /**
@@ -273,6 +281,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
273
281
  *
274
282
  * Defines the primary model property which is used inside the Column. In case of the analytical extension
275
283
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
284
+ *
285
+ * @returns Value of property `leadingProperty`
276
286
  */
277
287
  getLeadingProperty(): string;
278
288
  /**
@@ -282,6 +292,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
282
292
  * has the same value for every rows within the group.
283
293
  *
284
294
  * Default value is `false`.
295
+ *
296
+ * @returns Value of property `showIfGrouped`
285
297
  */
286
298
  getShowIfGrouped(): boolean;
287
299
  /**
@@ -290,6 +302,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
290
302
  * If defined a sum for this column is calculated
291
303
  *
292
304
  * Default value is `false`.
305
+ *
306
+ * @returns Value of property `summed`
293
307
  */
294
308
  getSummed(): boolean;
295
309
  /**
@@ -298,6 +312,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
298
312
  * If the column is grouped, this formatter is used to format the value in the group header
299
313
  *
300
314
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
315
+ *
316
+ * @returns Reference to `this` in order to allow method chaining
301
317
  */
302
318
  setGroupHeaderFormatter(
303
319
  /**
@@ -314,6 +330,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
314
330
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
315
331
  *
316
332
  * Default value is `false`.
333
+ *
334
+ * @returns Reference to `this` in order to allow method chaining
317
335
  */
318
336
  setInResult(
319
337
  /**
@@ -328,6 +346,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
328
346
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
329
347
  *
330
348
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
349
+ *
350
+ * @returns Reference to `this` in order to allow method chaining
331
351
  */
332
352
  setLeadingProperty(
333
353
  /**
@@ -344,6 +364,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
344
364
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
345
365
  *
346
366
  * Default value is `false`.
367
+ *
368
+ * @returns Reference to `this` in order to allow method chaining
347
369
  */
348
370
  setShowIfGrouped(
349
371
  /**
@@ -359,6 +381,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
359
381
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
360
382
  *
361
383
  * Default value is `false`.
384
+ *
385
+ * @returns Reference to `this` in order to allow method chaining
362
386
  */
363
387
  setSummed(
364
388
  /**
@@ -378,24 +402,24 @@ declare module "sap/ui/table/AnalyticalColumn" {
378
402
  /**
379
403
  * If defined a sum for this column is calculated
380
404
  */
381
- summed?: boolean | PropertyBindingInfo;
405
+ summed?: boolean | PropertyBindingInfo | `{${string}}`;
382
406
 
383
407
  /**
384
408
  * Specifies that the dimension referred to by the column shall be included in the granularity of the data
385
409
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
386
410
  */
387
- inResult?: boolean | PropertyBindingInfo;
411
+ inResult?: boolean | PropertyBindingInfo | `{${string}}`;
388
412
 
389
413
  /**
390
414
  * Specifies whether the column is displayed within the table even if it is grouped or not. A grouped column
391
415
  * has the same value for every rows within the group.
392
416
  */
393
- showIfGrouped?: boolean | PropertyBindingInfo;
417
+ showIfGrouped?: boolean | PropertyBindingInfo | `{${string}}`;
394
418
 
395
419
  /**
396
420
  * If the column is grouped, this formatter is used to format the value in the group header
397
421
  */
398
- groupHeaderFormatter?: any | PropertyBindingInfo;
422
+ groupHeaderFormatter?: any | PropertyBindingInfo | `{${string}}`;
399
423
  }
400
424
  }
401
425
 
@@ -455,6 +479,8 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
455
479
  * it with the information contained in `oClassInfo`.
456
480
  *
457
481
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.ColumnMenu.extend}.
482
+ *
483
+ * @returns Created class / constructor function
458
484
  */
459
485
  static extend<T extends Record<string, unknown>>(
460
486
  /**
@@ -473,6 +499,8 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
473
499
  ): Function;
474
500
  /**
475
501
  * Returns a metadata object for class sap.ui.table.AnalyticalColumnMenu.
502
+ *
503
+ * @returns Metadata object describing this class
476
504
  */
477
505
  static getMetadata(): ElementMetadata;
478
506
  }
@@ -543,6 +571,8 @@ declare module "sap/ui/table/AnalyticalTable" {
543
571
  * the information contained in `oClassInfo`.
544
572
  *
545
573
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
574
+ *
575
+ * @returns Created class / constructor function
546
576
  */
547
577
  static extend<T extends Record<string, unknown>>(
548
578
  /**
@@ -561,6 +591,8 @@ declare module "sap/ui/table/AnalyticalTable" {
561
591
  ): Function;
562
592
  /**
563
593
  * Returns a metadata object for class sap.ui.table.AnalyticalTable.
594
+ *
595
+ * @returns Metadata object describing this class
564
596
  */
565
597
  static getMetadata(): ElementMetadata;
566
598
  /**
@@ -571,6 +603,8 @@ declare module "sap/ui/table/AnalyticalTable" {
571
603
  *
572
604
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
573
605
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
606
+ *
607
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
574
608
  */
575
609
  addSelectionInterval(
576
610
  /**
@@ -584,6 +618,8 @@ declare module "sap/ui/table/AnalyticalTable" {
584
618
  ): this;
585
619
  /**
586
620
  * Collapses one or more rows.
621
+ *
622
+ * @returns Reference to `this` in order to allow method chaining
587
623
  */
588
624
  collapse(
589
625
  /**
@@ -593,10 +629,14 @@ declare module "sap/ui/table/AnalyticalTable" {
593
629
  ): this;
594
630
  /**
595
631
  * Collapses all nodes (and their child nodes if collapseRecursive is activated).
632
+ *
633
+ * @returns Reference to `this` in order to allow method chaining
596
634
  */
597
635
  collapseAll(): this;
598
636
  /**
599
637
  * Expands one or more rows.
638
+ *
639
+ * @returns Reference to `this` in order to allow method chaining
600
640
  */
601
641
  expand(
602
642
  /**
@@ -610,6 +650,8 @@ declare module "sap/ui/table/AnalyticalTable" {
610
650
  * Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
611
651
  * is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
612
652
  * groups are loaded, which increases the scroll range, and the scroll thumb moves up.
653
+ *
654
+ * @returns Reference to `this` in order to allow method chaining
613
655
  */
614
656
  expandAll(): this;
615
657
  /**
@@ -637,6 +679,8 @@ declare module "sap/ui/table/AnalyticalTable" {
637
679
  *
638
680
  *
639
681
  * Default value is `"Bundled"`.
682
+ *
683
+ * @returns Value of property `autoExpandMode`
640
684
  */
641
685
  getAutoExpandMode(): string;
642
686
  /**
@@ -663,6 +707,8 @@ declare module "sap/ui/table/AnalyticalTable" {
663
707
  *
664
708
  *
665
709
  * Default value is `true`.
710
+ *
711
+ * @returns Value of property `collapseRecursive`
666
712
  */
667
713
  getCollapseRecursive(): boolean;
668
714
  /**
@@ -670,10 +716,14 @@ declare module "sap/ui/table/AnalyticalTable" {
670
716
  *
671
717
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
672
718
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
719
+ *
720
+ * @returns Value of property `columnVisibilityMenuSorter`
673
721
  */
674
722
  getColumnVisibilityMenuSorter(): any;
675
723
  /**
676
724
  * Returns the context of a row by its index.
725
+ *
726
+ * @returns The context of a row by its index
677
727
  */
678
728
  getContextByIndex(
679
729
  /**
@@ -687,6 +737,8 @@ declare module "sap/ui/table/AnalyticalTable" {
687
737
  * Gets current value of property {@link #getDirty dirty}.
688
738
  *
689
739
  * If dirty the content of the Table will be overlayed.
740
+ *
741
+ * @returns Value of property `dirty`
690
742
  */
691
743
  getDirty(): boolean;
692
744
  /**
@@ -725,6 +777,8 @@ declare module "sap/ui/table/AnalyticalTable" {
725
777
  *
726
778
  *
727
779
  * Default value is `0`.
780
+ *
781
+ * @returns Value of property `numberOfExpandedLevels`
728
782
  */
729
783
  getNumberOfExpandedLevels(): int;
730
784
  /**
@@ -732,6 +786,8 @@ declare module "sap/ui/table/AnalyticalTable" {
732
786
  *
733
787
  * The lead selection index is, among other things, used to determine the start/end of a selection range,
734
788
  * when using Shift-Click to select multiple entries at once.
789
+ *
790
+ * @returns Current lead selection index.
735
791
  */
736
792
  getSelectedIndex(): int;
737
793
  /**
@@ -740,6 +796,8 @@ declare module "sap/ui/table/AnalyticalTable" {
740
796
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
741
797
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
742
798
  * yet loaded" to the client), will not be returned.
799
+ *
800
+ * @returns an array containing all selected indices
743
801
  */
744
802
  getSelectedIndices(): int[];
745
803
  /**
@@ -767,14 +825,20 @@ declare module "sap/ui/table/AnalyticalTable" {
767
825
  *
768
826
  *
769
827
  * Default value is `false`.
828
+ *
829
+ * @returns Value of property `sumOnTop`
770
830
  */
771
831
  getSumOnTop(): boolean;
772
832
  /**
773
833
  * Returns the total size of the data entries.
834
+ *
835
+ * @returns The total size of the data entries
774
836
  */
775
837
  getTotalSize(): int;
776
838
  /**
777
839
  * Checks whether the row is expanded or collapsed.
840
+ *
841
+ * @returns `true` if the row is expanded, `false` if it is collapsed
778
842
  */
779
843
  isExpanded(
780
844
  /**
@@ -784,6 +848,8 @@ declare module "sap/ui/table/AnalyticalTable" {
784
848
  ): boolean;
785
849
  /**
786
850
  * Checks if the row at the given index is selected.
851
+ *
852
+ * @returns true if the index is selected, false otherwise
787
853
  */
788
854
  isIndexSelected(
789
855
  /**
@@ -796,6 +862,8 @@ declare module "sap/ui/table/AnalyticalTable" {
796
862
  * with their absolute row index. Please be aware that the absolute row index only applies to the tree which
797
863
  * is visualized by the `AnalyticalTable` control. Invisible nodes (collapsed child nodes) will not be taken
798
864
  * into account.
865
+ *
866
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
799
867
  */
800
868
  removeSelectionInterval(
801
869
  /**
@@ -827,6 +895,8 @@ declare module "sap/ui/table/AnalyticalTable" {
827
895
  * on the client are selected. In addition all subsequent rows/tree nodes, which will be paged into view
828
896
  * are also immediately selected. However, due to obvious performance/network traffic reasons, the SelectAll
829
897
  * function will NOT retrieve any data from the backend.
898
+ *
899
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
830
900
  */
831
901
  selectAll(): this;
832
902
  /**
@@ -856,6 +926,8 @@ declare module "sap/ui/table/AnalyticalTable" {
856
926
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
857
927
  *
858
928
  * Default value is `"Bundled"`.
929
+ *
930
+ * @returns Reference to `this` in order to allow method chaining
859
931
  */
860
932
  setAutoExpandMode(
861
933
  /**
@@ -889,6 +961,8 @@ declare module "sap/ui/table/AnalyticalTable" {
889
961
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
890
962
  *
891
963
  * Default value is `true`.
964
+ *
965
+ * @returns Reference to `this` in order to allow method chaining
892
966
  */
893
967
  setCollapseRecursive(
894
968
  /**
@@ -903,6 +977,8 @@ declare module "sap/ui/table/AnalyticalTable" {
903
977
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
904
978
  *
905
979
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
980
+ *
981
+ * @returns Reference to `this` in order to allow method chaining
906
982
  */
907
983
  setColumnVisibilityMenuSorter(
908
984
  /**
@@ -918,6 +994,8 @@ declare module "sap/ui/table/AnalyticalTable" {
918
994
  * If dirty the content of the Table will be overlayed.
919
995
  *
920
996
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
997
+ *
998
+ * @returns Reference to `this` in order to allow method chaining
921
999
  */
922
1000
  setDirty(
923
1001
  /**
@@ -929,12 +1007,16 @@ declare module "sap/ui/table/AnalyticalTable" {
929
1007
  * @deprecated (since 1.28)
930
1008
  *
931
1009
  * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
1010
+ *
1011
+ * @returns Reference to `this` in order to allow method chaining
932
1012
  */
933
1013
  setEnableGrouping(bValue: boolean): this;
934
1014
  /**
935
1015
  * @deprecated (since 1.28)
936
1016
  *
937
1017
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
1018
+ *
1019
+ * @returns Reference to `this` in order to allow method chaining
938
1020
  */
939
1021
  setGroupBy(oGroupBy: ID | Column): this;
940
1022
  /**
@@ -963,6 +1045,8 @@ declare module "sap/ui/table/AnalyticalTable" {
963
1045
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
964
1046
  *
965
1047
  * Default value is `0`.
1048
+ *
1049
+ * @returns Reference to `this` in order to allow method chaining
966
1050
  */
967
1051
  setNumberOfExpandedLevels(
968
1052
  /**
@@ -974,6 +1058,8 @@ declare module "sap/ui/table/AnalyticalTable" {
974
1058
  * In an `AnalyticalTable` control you can only select indices, which correspond to the currently visualized
975
1059
  * tree. Invisible nodes (e.g. collapsed child nodes) cannot be selected via Index, because they do not
976
1060
  * correspond to an `AnalyticalTable` row.
1061
+ *
1062
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
977
1063
  */
978
1064
  setSelectedIndex(
979
1065
  /**
@@ -986,6 +1072,8 @@ declare module "sap/ui/table/AnalyticalTable" {
986
1072
  *
987
1073
  * **Note:** The previous selection will be lost/overridden. If this is not the required behavior, please
988
1074
  * use `addSelectionInterval` and `removeSelectionInterval`.
1075
+ *
1076
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
989
1077
  */
990
1078
  setSelectionInterval(
991
1079
  /**
@@ -1024,6 +1112,8 @@ declare module "sap/ui/table/AnalyticalTable" {
1024
1112
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1025
1113
  *
1026
1114
  * Default value is `false`.
1115
+ *
1116
+ * @returns Reference to `this` in order to allow method chaining
1027
1117
  */
1028
1118
  setSumOnTop(
1029
1119
  /**
@@ -1061,7 +1151,7 @@ declare module "sap/ui/table/AnalyticalTable" {
1061
1151
  * });
1062
1152
  * ```
1063
1153
  */
1064
- sumOnTop?: boolean | PropertyBindingInfo;
1154
+ sumOnTop?: boolean | PropertyBindingInfo | `{${string}}`;
1065
1155
 
1066
1156
  /**
1067
1157
  * @deprecated (since 1.44) - replaced by the `numberOfExpandedLevels` binding parameter
@@ -1083,7 +1173,7 @@ declare module "sap/ui/table/AnalyticalTable" {
1083
1173
  * });
1084
1174
  * ```
1085
1175
  */
1086
- numberOfExpandedLevels?: int | PropertyBindingInfo;
1176
+ numberOfExpandedLevels?: int | PropertyBindingInfo | `{${string}}`;
1087
1177
 
1088
1178
  /**
1089
1179
  * @deprecated (since 1.44) - replaced by the `autoExpandMode` binding parameter
@@ -1112,7 +1202,7 @@ declare module "sap/ui/table/AnalyticalTable" {
1112
1202
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
1113
1203
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
1114
1204
  */
1115
- columnVisibilityMenuSorter?: any | PropertyBindingInfo;
1205
+ columnVisibilityMenuSorter?: any | PropertyBindingInfo | `{${string}}`;
1116
1206
 
1117
1207
  /**
1118
1208
  * @deprecated (since 1.76) - replaced by the `collapseRecursive` binding parameter
@@ -1134,14 +1224,14 @@ declare module "sap/ui/table/AnalyticalTable" {
1134
1224
  * });
1135
1225
  * ```
1136
1226
  */
1137
- collapseRecursive?: boolean | PropertyBindingInfo;
1227
+ collapseRecursive?: boolean | PropertyBindingInfo | `{${string}}`;
1138
1228
 
1139
1229
  /**
1140
1230
  * @deprecated (since 1.21.2) - replaced by {@link sap.ui.table.Table#setShowOverlay}
1141
1231
  *
1142
1232
  * If dirty the content of the Table will be overlayed.
1143
1233
  */
1144
- dirty?: boolean | PropertyBindingInfo;
1234
+ dirty?: boolean | PropertyBindingInfo | `{${string}}`;
1145
1235
  }
1146
1236
  }
1147
1237
 
@@ -1205,6 +1295,8 @@ declare module "sap/ui/table/Column" {
1205
1295
  * contained in `oClassInfo`.
1206
1296
  *
1207
1297
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1298
+ *
1299
+ * @returns Created class / constructor function
1208
1300
  */
1209
1301
  static extend<T extends Record<string, unknown>>(
1210
1302
  /**
@@ -1223,12 +1315,16 @@ declare module "sap/ui/table/Column" {
1223
1315
  ): Function;
1224
1316
  /**
1225
1317
  * Returns a metadata object for class sap.ui.table.Column.
1318
+ *
1319
+ * @returns Metadata object describing this class
1226
1320
  */
1227
1321
  static getMetadata(): ElementMetadata;
1228
1322
  /**
1229
1323
  * @SINCE 1.13.1
1230
1324
  *
1231
1325
  * Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
1326
+ *
1327
+ * @returns Reference to `this` in order to allow method chaining
1232
1328
  */
1233
1329
  addMultiLabel(
1234
1330
  /**
@@ -1246,6 +1342,8 @@ declare module "sap/ui/table/Column" {
1246
1342
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
1247
1343
  *
1248
1344
  * Fires before the column menu is opened.
1345
+ *
1346
+ * @returns Reference to `this` in order to allow method chaining
1249
1347
  */
1250
1348
  attachColumnMenuOpen(
1251
1349
  /**
@@ -1272,6 +1370,8 @@ declare module "sap/ui/table/Column" {
1272
1370
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
1273
1371
  *
1274
1372
  * Fires before the column menu is opened.
1373
+ *
1374
+ * @returns Reference to `this` in order to allow method chaining
1275
1375
  */
1276
1376
  attachColumnMenuOpen(
1277
1377
  /**
@@ -1285,20 +1385,28 @@ declare module "sap/ui/table/Column" {
1285
1385
  ): this;
1286
1386
  /**
1287
1387
  * Destroys the label in the aggregation {@link #getLabel label}.
1388
+ *
1389
+ * @returns Reference to `this` in order to allow method chaining
1288
1390
  */
1289
1391
  destroyLabel(): this;
1290
1392
  /**
1291
1393
  * Destroys the menu in the aggregation {@link #getMenu menu}.
1394
+ *
1395
+ * @returns Reference to `this` in order to allow method chaining
1292
1396
  */
1293
1397
  destroyMenu(): this;
1294
1398
  /**
1295
1399
  * @SINCE 1.13.1
1296
1400
  *
1297
1401
  * Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
1402
+ *
1403
+ * @returns Reference to `this` in order to allow method chaining
1298
1404
  */
1299
1405
  destroyMultiLabels(): this;
1300
1406
  /**
1301
1407
  * Destroys the template in the aggregation {@link #getTemplate template}.
1408
+ *
1409
+ * @returns Reference to `this` in order to allow method chaining
1302
1410
  */
1303
1411
  destroyTemplate(): this;
1304
1412
  /**
@@ -1308,6 +1416,8 @@ declare module "sap/ui/table/Column" {
1308
1416
  * `sap.ui.table.Column`.
1309
1417
  *
1310
1418
  * The passed function and listener object must match the ones used for event registration.
1419
+ *
1420
+ * @returns Reference to `this` in order to allow method chaining
1311
1421
  */
1312
1422
  detachColumnMenuOpen(
1313
1423
  /**
@@ -1326,6 +1436,8 @@ declare module "sap/ui/table/Column" {
1326
1436
  *
1327
1437
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
1328
1438
  * event object. The return value of this method indicates whether the default action should be executed.
1439
+ *
1440
+ * @returns Whether or not to prevent the default action
1329
1441
  */
1330
1442
  fireColumnMenuOpen(
1331
1443
  /**
@@ -1350,6 +1462,8 @@ declare module "sap/ui/table/Column" {
1350
1462
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
1351
1463
  *
1352
1464
  * Default value is `false`.
1465
+ *
1466
+ * @returns Value of property `autoResizable`
1353
1467
  */
1354
1468
  getAutoResizable(): boolean;
1355
1469
  /**
@@ -1357,6 +1471,8 @@ declare module "sap/ui/table/Column" {
1357
1471
  *
1358
1472
  * If this property is set, the default filter operator of the column is overridden. By default `Contains`
1359
1473
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
1474
+ *
1475
+ * @returns Value of property `defaultFilterOperator`
1360
1476
  */
1361
1477
  getDefaultFilterOperator(): string;
1362
1478
  /**
@@ -1367,12 +1483,16 @@ declare module "sap/ui/table/Column" {
1367
1483
  * sap.ui.table.Table#filter}.
1368
1484
  *
1369
1485
  * Default value is `false`.
1486
+ *
1487
+ * @returns Value of property `filtered`
1370
1488
  */
1371
1489
  getFiltered(): boolean;
1372
1490
  /**
1373
1491
  * Gets current value of property {@link #getFilterOperator filterOperator}.
1374
1492
  *
1375
1493
  * Filter operator to use when filtering this column.
1494
+ *
1495
+ * @returns Value of property `filterOperator`
1376
1496
  */
1377
1497
  getFilterOperator(): string;
1378
1498
  /**
@@ -1385,6 +1505,8 @@ declare module "sap/ui/table/Column" {
1385
1505
  *
1386
1506
  * A column menu entry for filtering can only be generated if the `filterProperty` is set. The default menu
1387
1507
  * entry is a text input field.
1508
+ *
1509
+ * @returns Value of property `filterProperty`
1388
1510
  */
1389
1511
  getFilterProperty(): string;
1390
1512
  /**
@@ -1399,6 +1521,8 @@ declare module "sap/ui/table/Column" {
1399
1521
  * \{\} \}"`. Here the escaping is mandatory to avoid handling by the binding parser. As an alternative,
1400
1522
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
1401
1523
  * #setFilterType} instead.
1524
+ *
1525
+ * @returns Value of property `filterType`
1402
1526
  */
1403
1527
  getFilterType(): any;
1404
1528
  /**
@@ -1420,6 +1544,9 @@ declare module "sap/ui/table/Column" {
1420
1544
  * some..thing between
1421
1545
  * 50..100 between
1422
1546
  * ```
1547
+ *
1548
+ *
1549
+ * @returns Value of property `filterValue`
1423
1550
  */
1424
1551
  getFilterValue(): string;
1425
1552
  /**
@@ -1434,6 +1561,8 @@ declare module "sap/ui/table/Column" {
1434
1561
  * of the table.
1435
1562
  *
1436
1563
  * Default value is `true`.
1564
+ *
1565
+ * @returns Value of property `flexible`
1437
1566
  */
1438
1567
  getFlexible(): boolean;
1439
1568
  /**
@@ -1442,6 +1571,8 @@ declare module "sap/ui/table/Column" {
1442
1571
  * Indicates if the column is grouped.
1443
1572
  *
1444
1573
  * Default value is `false`.
1574
+ *
1575
+ * @returns Value of property `grouped`
1445
1576
  */
1446
1577
  getGrouped(): boolean;
1447
1578
  /**
@@ -1451,6 +1582,8 @@ declare module "sap/ui/table/Column" {
1451
1582
  * alignment. You have to set the text align directly on the template.
1452
1583
  *
1453
1584
  * Default value is `Begin`.
1585
+ *
1586
+ * @returns Value of property `hAlign`
1454
1587
  */
1455
1588
  getHAlign(): HorizontalAlign | keyof typeof HorizontalAlign;
1456
1589
  /**
@@ -1464,6 +1597,8 @@ declare module "sap/ui/table/Column" {
1464
1597
  * which are part of the header with the greatest span will be set to fixed.
1465
1598
  *
1466
1599
  * Default value is `1`.
1600
+ *
1601
+ * @returns Value of property `headerSpan`
1467
1602
  */
1468
1603
  getHeaderSpan(): any;
1469
1604
  /**
@@ -1495,6 +1630,8 @@ declare module "sap/ui/table/Column" {
1495
1630
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
1496
1631
  *
1497
1632
  * Default value is `0`.
1633
+ *
1634
+ * @returns Value of property `minWidth`
1498
1635
  */
1499
1636
  getMinWidth(): int;
1500
1637
  /**
@@ -1514,6 +1651,8 @@ declare module "sap/ui/table/Column" {
1514
1651
  * The name of the column which is used for the text representation of this column, for example, in menus.
1515
1652
  * If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
1516
1653
  * as a fallback option.
1654
+ *
1655
+ * @returns Value of property `name`
1517
1656
  */
1518
1657
  getName(): string;
1519
1658
  /**
@@ -1523,6 +1662,8 @@ declare module "sap/ui/table/Column" {
1523
1662
  * (SHIFT + Left/Right Arrow keys)
1524
1663
  *
1525
1664
  * Default value is `true`.
1665
+ *
1666
+ * @returns Value of property `resizable`
1526
1667
  */
1527
1668
  getResizable(): boolean;
1528
1669
  /**
@@ -1533,6 +1674,8 @@ declare module "sap/ui/table/Column" {
1533
1674
  * Defines if the filter menu entry is displayed
1534
1675
  *
1535
1676
  * Default value is `true`.
1677
+ *
1678
+ * @returns Value of property `showFilterMenuEntry`
1536
1679
  */
1537
1680
  getShowFilterMenuEntry(): boolean;
1538
1681
  /**
@@ -1543,6 +1686,8 @@ declare module "sap/ui/table/Column" {
1543
1686
  * Defines if the sort menu entries are displayed
1544
1687
  *
1545
1688
  * Default value is `true`.
1689
+ *
1690
+ * @returns Value of property `showSortMenuEntry`
1546
1691
  */
1547
1692
  getShowSortMenuEntry(): boolean;
1548
1693
  /**
@@ -1552,6 +1697,8 @@ declare module "sap/ui/table/Column" {
1552
1697
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
1553
1698
  *
1554
1699
  * Default value is `false`.
1700
+ *
1701
+ * @returns Value of property `sorted`
1555
1702
  */
1556
1703
  getSorted(): boolean;
1557
1704
  /**
@@ -1561,6 +1708,8 @@ declare module "sap/ui/table/Column" {
1561
1708
  * rendered if the property `sorted` is `true`
1562
1709
  *
1563
1710
  * Default value is `Ascending`.
1711
+ *
1712
+ * @returns Value of property `sortOrder`
1564
1713
  */
1565
1714
  getSortOrder(): SortOrder | keyof typeof SortOrder;
1566
1715
  /**
@@ -1572,6 +1721,8 @@ declare module "sap/ui/table/Column" {
1572
1721
  * displayed in the same column, only one of the two can be defined as `sortProperty`.
1573
1722
  *
1574
1723
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
1724
+ *
1725
+ * @returns Value of property `sortProperty`
1575
1726
  */
1576
1727
  getSortProperty(): string;
1577
1728
  /**
@@ -1590,6 +1741,8 @@ declare module "sap/ui/table/Column" {
1590
1741
  getTemplate(): Control | string;
1591
1742
  /**
1592
1743
  * Returns a template clone. It either finds an unused clone or clones a new one from the template.
1744
+ *
1745
+ * @returns Clone of the template, or `null` if no template is defined
1593
1746
  */
1594
1747
  getTemplateClone(
1595
1748
  /**
@@ -1603,6 +1756,8 @@ declare module "sap/ui/table/Column" {
1603
1756
  * Invisible controls are not rendered.
1604
1757
  *
1605
1758
  * Default value is `true`.
1759
+ *
1760
+ * @returns Value of property `visible`
1606
1761
  */
1607
1762
  getVisible(): boolean;
1608
1763
  /**
@@ -1613,6 +1768,8 @@ declare module "sap/ui/table/Column" {
1613
1768
  * than 48px. This property can be changed by the user or by the application configuration/personalization.
1614
1769
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
1615
1770
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
1771
+ *
1772
+ * @returns Value of property `width`
1616
1773
  */
1617
1774
  getWidth(): CSSSize;
1618
1775
  /**
@@ -1620,6 +1777,8 @@ declare module "sap/ui/table/Column" {
1620
1777
  *
1621
1778
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
1622
1779
  * and returns its index if found or -1 otherwise.
1780
+ *
1781
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1623
1782
  */
1624
1783
  indexOfMultiLabel(
1625
1784
  /**
@@ -1631,6 +1790,8 @@ declare module "sap/ui/table/Column" {
1631
1790
  * @SINCE 1.13.1
1632
1791
  *
1633
1792
  * Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
1793
+ *
1794
+ * @returns Reference to `this` in order to allow method chaining
1634
1795
  */
1635
1796
  insertMultiLabel(
1636
1797
  /**
@@ -1650,12 +1811,16 @@ declare module "sap/ui/table/Column" {
1650
1811
  * Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
1651
1812
  *
1652
1813
  * Additionally, it unregisters them from the hosting UIArea.
1814
+ *
1815
+ * @returns An array of the removed elements (might be empty)
1653
1816
  */
1654
1817
  removeAllMultiLabels(): Control[];
1655
1818
  /**
1656
1819
  * @SINCE 1.13.1
1657
1820
  *
1658
1821
  * Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
1822
+ *
1823
+ * @returns The removed multiLabel or `null`
1659
1824
  */
1660
1825
  removeMultiLabel(
1661
1826
  /**
@@ -1677,6 +1842,8 @@ declare module "sap/ui/table/Column" {
1677
1842
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1678
1843
  *
1679
1844
  * Default value is `false`.
1845
+ *
1846
+ * @returns Reference to `this` in order to allow method chaining
1680
1847
  */
1681
1848
  setAutoResizable(
1682
1849
  /**
@@ -1691,6 +1858,8 @@ declare module "sap/ui/table/Column" {
1691
1858
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
1692
1859
  *
1693
1860
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1861
+ *
1862
+ * @returns Reference to `this` in order to allow method chaining
1694
1863
  */
1695
1864
  setDefaultFilterOperator(
1696
1865
  /**
@@ -1708,6 +1877,8 @@ declare module "sap/ui/table/Column" {
1708
1877
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1709
1878
  *
1710
1879
  * Default value is `false`.
1880
+ *
1881
+ * @returns Reference to `this` in order to allow method chaining
1711
1882
  */
1712
1883
  setFiltered(
1713
1884
  /**
@@ -1721,6 +1892,8 @@ declare module "sap/ui/table/Column" {
1721
1892
  * Filter operator to use when filtering this column.
1722
1893
  *
1723
1894
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1895
+ *
1896
+ * @returns Reference to `this` in order to allow method chaining
1724
1897
  */
1725
1898
  setFilterOperator(
1726
1899
  /**
@@ -1740,6 +1913,8 @@ declare module "sap/ui/table/Column" {
1740
1913
  * entry is a text input field.
1741
1914
  *
1742
1915
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1916
+ *
1917
+ * @returns Reference to `this` in order to allow method chaining
1743
1918
  */
1744
1919
  setFilterProperty(
1745
1920
  /**
@@ -1751,6 +1926,8 @@ declare module "sap/ui/table/Column" {
1751
1926
  * The filter type can be the class name of a type, an expression similar to the binding syntax, or a function.
1752
1927
  * A function receives the entered filter value as a parameter and should return the appropriate value for
1753
1928
  * the filter expression.
1929
+ *
1930
+ * @returns Reference to `this` in order to allow method chaining
1754
1931
  */
1755
1932
  setFilterType(
1756
1933
  /**
@@ -1780,6 +1957,8 @@ declare module "sap/ui/table/Column" {
1780
1957
  *
1781
1958
  *
1782
1959
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1960
+ *
1961
+ * @returns Reference to `this` in order to allow method chaining
1783
1962
  */
1784
1963
  setFilterValue(
1785
1964
  /**
@@ -1801,6 +1980,8 @@ declare module "sap/ui/table/Column" {
1801
1980
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1802
1981
  *
1803
1982
  * Default value is `true`.
1983
+ *
1984
+ * @returns Reference to `this` in order to allow method chaining
1804
1985
  */
1805
1986
  setFlexible(
1806
1987
  /**
@@ -1816,6 +1997,8 @@ declare module "sap/ui/table/Column" {
1816
1997
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1817
1998
  *
1818
1999
  * Default value is `false`.
2000
+ *
2001
+ * @returns Reference to `this` in order to allow method chaining
1819
2002
  */
1820
2003
  setGrouped(
1821
2004
  /**
@@ -1832,6 +2015,8 @@ declare module "sap/ui/table/Column" {
1832
2015
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1833
2016
  *
1834
2017
  * Default value is `Begin`.
2018
+ *
2019
+ * @returns Reference to `this` in order to allow method chaining
1835
2020
  */
1836
2021
  setHAlign(
1837
2022
  /**
@@ -1852,6 +2037,8 @@ declare module "sap/ui/table/Column" {
1852
2037
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1853
2038
  *
1854
2039
  * Default value is `1`.
2040
+ *
2041
+ * @returns Reference to `this` in order to allow method chaining
1855
2042
  */
1856
2043
  setHeaderSpan(
1857
2044
  /**
@@ -1861,6 +2048,8 @@ declare module "sap/ui/table/Column" {
1861
2048
  ): this;
1862
2049
  /**
1863
2050
  * Sets the aggregated {@link #getLabel label}.
2051
+ *
2052
+ * @returns Reference to `this` in order to allow method chaining
1864
2053
  */
1865
2054
  setLabel(
1866
2055
  /**
@@ -1870,6 +2059,8 @@ declare module "sap/ui/table/Column" {
1870
2059
  ): this;
1871
2060
  /**
1872
2061
  * Sets the aggregated {@link #getMenu menu}.
2062
+ *
2063
+ * @returns Reference to `this` in order to allow method chaining
1873
2064
  */
1874
2065
  setMenu(
1875
2066
  /**
@@ -1890,6 +2081,8 @@ declare module "sap/ui/table/Column" {
1890
2081
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1891
2082
  *
1892
2083
  * Default value is `0`.
2084
+ *
2085
+ * @returns Reference to `this` in order to allow method chaining
1893
2086
  */
1894
2087
  setMinWidth(
1895
2088
  /**
@@ -1907,6 +2100,8 @@ declare module "sap/ui/table/Column" {
1907
2100
  * as a fallback option.
1908
2101
  *
1909
2102
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2103
+ *
2104
+ * @returns Reference to `this` in order to allow method chaining
1910
2105
  */
1911
2106
  setName(
1912
2107
  /**
@@ -1923,6 +2118,8 @@ declare module "sap/ui/table/Column" {
1923
2118
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1924
2119
  *
1925
2120
  * Default value is `true`.
2121
+ *
2122
+ * @returns Reference to `this` in order to allow method chaining
1926
2123
  */
1927
2124
  setResizable(
1928
2125
  /**
@@ -1940,6 +2137,8 @@ declare module "sap/ui/table/Column" {
1940
2137
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1941
2138
  *
1942
2139
  * Default value is `true`.
2140
+ *
2141
+ * @returns Reference to `this` in order to allow method chaining
1943
2142
  */
1944
2143
  setShowFilterMenuEntry(
1945
2144
  /**
@@ -1957,6 +2156,8 @@ declare module "sap/ui/table/Column" {
1957
2156
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1958
2157
  *
1959
2158
  * Default value is `true`.
2159
+ *
2160
+ * @returns Reference to `this` in order to allow method chaining
1960
2161
  */
1961
2162
  setShowSortMenuEntry(
1962
2163
  /**
@@ -1973,6 +2174,8 @@ declare module "sap/ui/table/Column" {
1973
2174
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1974
2175
  *
1975
2176
  * Default value is `false`.
2177
+ *
2178
+ * @returns Reference to `this` in order to allow method chaining
1976
2179
  */
1977
2180
  setSorted(
1978
2181
  /**
@@ -1989,6 +2192,8 @@ declare module "sap/ui/table/Column" {
1989
2192
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1990
2193
  *
1991
2194
  * Default value is `Ascending`.
2195
+ *
2196
+ * @returns Reference to `this` in order to allow method chaining
1992
2197
  */
1993
2198
  setSortOrder(
1994
2199
  /**
@@ -2007,6 +2212,8 @@ declare module "sap/ui/table/Column" {
2007
2212
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
2008
2213
  *
2009
2214
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2215
+ *
2216
+ * @returns Reference to `this` in order to allow method chaining
2010
2217
  */
2011
2218
  setSortProperty(
2012
2219
  /**
@@ -2016,6 +2223,8 @@ declare module "sap/ui/table/Column" {
2016
2223
  ): this;
2017
2224
  /**
2018
2225
  * Sets the aggregated {@link #getTemplate template}.
2226
+ *
2227
+ * @returns Reference to `this` in order to allow method chaining
2019
2228
  */
2020
2229
  setTemplate(
2021
2230
  /**
@@ -2031,6 +2240,8 @@ declare module "sap/ui/table/Column" {
2031
2240
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2032
2241
  *
2033
2242
  * Default value is `true`.
2243
+ *
2244
+ * @returns Reference to `this` in order to allow method chaining
2034
2245
  */
2035
2246
  setVisible(
2036
2247
  /**
@@ -2048,6 +2259,8 @@ declare module "sap/ui/table/Column" {
2048
2259
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
2049
2260
  *
2050
2261
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2262
+ *
2263
+ * @returns Reference to `this` in order to allow method chaining
2051
2264
  */
2052
2265
  setWidth(
2053
2266
  /**
@@ -2057,12 +2270,16 @@ declare module "sap/ui/table/Column" {
2057
2270
  ): this;
2058
2271
  /**
2059
2272
  * Returns whether the column should be rendered.
2273
+ *
2274
+ * @returns Returns `true`, if the column should be rendered
2060
2275
  */
2061
2276
  shouldRender(): boolean;
2062
2277
  /**
2063
2278
  * @deprecated (since 1.5.1) - Please use the function "sap.ui.Table.prototype.sort".
2064
2279
  *
2065
2280
  * Sorts the current column ascending or descending.
2281
+ *
2282
+ * @returns Reference to `this` in order to allow method chaining
2066
2283
  */
2067
2284
  sort(
2068
2285
  /**
@@ -2086,7 +2303,7 @@ declare module "sap/ui/table/Column" {
2086
2303
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
2087
2304
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
2088
2305
  */
2089
- width?: CSSSize | PropertyBindingInfo;
2306
+ width?: CSSSize | PropertyBindingInfo | `{${string}}`;
2090
2307
 
2091
2308
  /**
2092
2309
  * @SINCE 1.44.1
@@ -2096,7 +2313,7 @@ declare module "sap/ui/table/Column" {
2096
2313
  * If a user adjusts the column width manually, the column width can become smaller. Minimal column width
2097
2314
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
2098
2315
  */
2099
- minWidth?: int | PropertyBindingInfo;
2316
+ minWidth?: int | PropertyBindingInfo | `{${string}}`;
2100
2317
 
2101
2318
  /**
2102
2319
  * @deprecated (since 1.44) - this property has no effect. Use the property `minWidth` in combination with
@@ -2107,13 +2324,13 @@ declare module "sap/ui/table/Column" {
2107
2324
  * width. If all columns are set to not be flexible, an extra "dummy" column will be created at the end
2108
2325
  * of the table.
2109
2326
  */
2110
- flexible?: boolean | PropertyBindingInfo;
2327
+ flexible?: boolean | PropertyBindingInfo | `{${string}}`;
2111
2328
 
2112
2329
  /**
2113
2330
  * If set to true, the column can be resized either using the resize bar (by mouse) or using the keyboard
2114
2331
  * (SHIFT + Left/Right Arrow keys)
2115
2332
  */
2116
- resizable?: boolean | PropertyBindingInfo;
2333
+ resizable?: boolean | PropertyBindingInfo | `{${string}}`;
2117
2334
 
2118
2335
  /**
2119
2336
  * Horizontal alignment of the column content. Controls with a text align do not inherit the horizontal
@@ -2121,19 +2338,23 @@ declare module "sap/ui/table/Column" {
2121
2338
  */
2122
2339
  hAlign?:
2123
2340
  | (HorizontalAlign | keyof typeof HorizontalAlign)
2124
- | PropertyBindingInfo;
2341
+ | PropertyBindingInfo
2342
+ | `{${string}}`;
2125
2343
 
2126
2344
  /**
2127
2345
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
2128
2346
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2129
2347
  */
2130
- sorted?: boolean | PropertyBindingInfo;
2348
+ sorted?: boolean | PropertyBindingInfo | `{${string}}`;
2131
2349
 
2132
2350
  /**
2133
2351
  * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
2134
2352
  * rendered if the property `sorted` is `true`
2135
2353
  */
2136
- sortOrder?: (SortOrder | keyof typeof SortOrder) | PropertyBindingInfo;
2354
+ sortOrder?:
2355
+ | (SortOrder | keyof typeof SortOrder)
2356
+ | PropertyBindingInfo
2357
+ | `{${string}}`;
2137
2358
 
2138
2359
  /**
2139
2360
  * Specifies the binding property on which the column will sort. Since the column template may have composite
@@ -2150,7 +2371,7 @@ declare module "sap/ui/table/Column" {
2150
2371
  * the column header - it does not trigger the filter function. The column can be filtered using {@link
2151
2372
  * sap.ui.table.Table#filter}.
2152
2373
  */
2153
- filtered?: boolean | PropertyBindingInfo;
2374
+ filtered?: boolean | PropertyBindingInfo | `{${string}}`;
2154
2375
 
2155
2376
  /**
2156
2377
  * Specifies the binding property on which the column shall be filtered. Since the column template may have
@@ -2205,17 +2426,17 @@ declare module "sap/ui/table/Column" {
2205
2426
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
2206
2427
  * #setFilterType} instead.
2207
2428
  */
2208
- filterType?: any | PropertyBindingInfo;
2429
+ filterType?: any | PropertyBindingInfo | `{${string}}`;
2209
2430
 
2210
2431
  /**
2211
2432
  * Indicates if the column is grouped.
2212
2433
  */
2213
- grouped?: boolean | PropertyBindingInfo;
2434
+ grouped?: boolean | PropertyBindingInfo | `{${string}}`;
2214
2435
 
2215
2436
  /**
2216
2437
  * Invisible controls are not rendered.
2217
2438
  */
2218
- visible?: boolean | PropertyBindingInfo;
2439
+ visible?: boolean | PropertyBindingInfo | `{${string}}`;
2219
2440
 
2220
2441
  /**
2221
2442
  * @SINCE 1.11.1
@@ -2231,14 +2452,14 @@ declare module "sap/ui/table/Column" {
2231
2452
  *
2232
2453
  * Defines if the filter menu entry is displayed
2233
2454
  */
2234
- showFilterMenuEntry?: boolean | PropertyBindingInfo;
2455
+ showFilterMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
2235
2456
 
2236
2457
  /**
2237
2458
  * @SINCE 1.13.0
2238
2459
  *
2239
2460
  * Defines if the sort menu entries are displayed
2240
2461
  */
2241
- showSortMenuEntry?: boolean | PropertyBindingInfo;
2462
+ showSortMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
2242
2463
 
2243
2464
  /**
2244
2465
  * If this property is set, a span is applied for the header. When moving columns, all columns which are
@@ -2248,7 +2469,7 @@ declare module "sap/ui/table/Column" {
2248
2469
  * Only columns with a span equal to 1 can have a column menu. When setting a column to fixed, all columns
2249
2470
  * which are part of the header with the greatest span will be set to fixed.
2250
2471
  */
2251
- headerSpan?: any | PropertyBindingInfo;
2472
+ headerSpan?: any | PropertyBindingInfo | `{${string}}`;
2252
2473
 
2253
2474
  /**
2254
2475
  * @SINCE 1.21.1
@@ -2259,7 +2480,7 @@ declare module "sap/ui/table/Column" {
2259
2480
  * sap.m.Input, sap.ui.commons.TextView, sap.ui.commons.Label, sap.ui.commons.Link and sap.ui.commons.TextField,
2260
2481
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
2261
2482
  */
2262
- autoResizable?: boolean | PropertyBindingInfo;
2483
+ autoResizable?: boolean | PropertyBindingInfo | `{${string}}`;
2263
2484
 
2264
2485
  /**
2265
2486
  * Label of the column which is displayed in the column header. This aggregation is for the standard behavior,
@@ -2274,7 +2495,7 @@ declare module "sap/ui/table/Column" {
2274
2495
  * Labels of the column which are displayed in the column header. Define a control for each header row in
2275
2496
  * the table. Use this aggregation if you want to use multiple headers per column.
2276
2497
  */
2277
- multiLabels?: Control[] | Control | AggregationBindingInfo;
2498
+ multiLabels?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
2278
2499
 
2279
2500
  /**
2280
2501
  * Template (cell renderer) of this column. A template is decoupled from the column. Each time the template's
@@ -2366,6 +2587,8 @@ declare module "sap/ui/table/ColumnMenu" {
2366
2587
  * information contained in `oClassInfo`.
2367
2588
  *
2368
2589
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.Menu.extend}.
2590
+ *
2591
+ * @returns Created class / constructor function
2369
2592
  */
2370
2593
  static extend<T extends Record<string, unknown>>(
2371
2594
  /**
@@ -2384,6 +2607,8 @@ declare module "sap/ui/table/ColumnMenu" {
2384
2607
  ): Function;
2385
2608
  /**
2386
2609
  * Returns a metadata object for class sap.ui.table.ColumnMenu.
2610
+ *
2611
+ * @returns Metadata object describing this class
2387
2612
  */
2388
2613
  static getMetadata(): ElementMetadata;
2389
2614
  }
@@ -2437,6 +2662,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2437
2662
  * enriches it with the information contained in `oClassInfo`.
2438
2663
  *
2439
2664
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.plugins.SelectionPlugin.extend}.
2665
+ *
2666
+ * @returns Created class / constructor function
2440
2667
  */
2441
2668
  static extend<T extends Record<string, unknown>>(
2442
2669
  /**
@@ -2455,6 +2682,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2455
2682
  ): Function;
2456
2683
  /**
2457
2684
  * Returns a metadata object for class sap.ui.table.plugins.MultiSelectionPlugin.
2685
+ *
2686
+ * @returns Metadata object describing this class
2458
2687
  */
2459
2688
  static getMetadata(): ElementMetadata;
2460
2689
  /**
@@ -2463,6 +2692,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2463
2692
  *
2464
2693
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
2465
2694
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
2695
+ *
2696
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2466
2697
  */
2467
2698
  addSelectionInterval(
2468
2699
  /**
@@ -2487,6 +2718,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2487
2718
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
2488
2719
  *
2489
2720
  * This event is fired when the selection is changed.
2721
+ *
2722
+ * @returns Reference to `this` in order to allow method chaining
2490
2723
  */
2491
2724
  attachSelectionChange(
2492
2725
  /**
@@ -2512,6 +2745,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2512
2745
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
2513
2746
  *
2514
2747
  * This event is fired when the selection is changed.
2748
+ *
2749
+ * @returns Reference to `this` in order to allow method chaining
2515
2750
  */
2516
2751
  attachSelectionChange(
2517
2752
  /**
@@ -2539,6 +2774,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2539
2774
  * this `sap.ui.table.plugins.MultiSelectionPlugin`.
2540
2775
  *
2541
2776
  * The passed function and listener object must match the ones used for event registration.
2777
+ *
2778
+ * @returns Reference to `this` in order to allow method chaining
2542
2779
  */
2543
2780
  detachSelectionChange(
2544
2781
  /**
@@ -2552,6 +2789,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2552
2789
  ): this;
2553
2790
  /**
2554
2791
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
2792
+ *
2793
+ * @returns Reference to `this` in order to allow method chaining
2555
2794
  */
2556
2795
  fireSelectionChange(
2557
2796
  /**
@@ -2580,6 +2819,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2580
2819
  * Enables notifications that are displayed once a selection has been limited.
2581
2820
  *
2582
2821
  * Default value is `false`.
2822
+ *
2823
+ * @returns Value of property `enableNotification`
2583
2824
  */
2584
2825
  getEnableNotification(): boolean;
2585
2826
  /**
@@ -2596,10 +2837,14 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2596
2837
  * control.
2597
2838
  *
2598
2839
  * Default value is `200`.
2840
+ *
2841
+ * @returns Value of property `limit`
2599
2842
  */
2600
2843
  getLimit(): int;
2601
2844
  /**
2602
2845
  * Zero-based indices of selected indices, wrapped in an array. An empty array means nothing has been selected.
2846
+ *
2847
+ * @returns An array containing all selected indices
2603
2848
  */
2604
2849
  getSelectedIndices(): int[];
2605
2850
  /**
@@ -2610,6 +2855,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2610
2855
  * removed.
2611
2856
  *
2612
2857
  * Default value is `MultiToggle`.
2858
+ *
2859
+ * @returns Value of property `selectionMode`
2613
2860
  */
2614
2861
  getSelectionMode(): SelectionMode | keyof typeof SelectionMode;
2615
2862
  /**
@@ -2618,10 +2865,14 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2618
2865
  * Show header selector
2619
2866
  *
2620
2867
  * Default value is `true`.
2868
+ *
2869
+ * @returns Value of property `showHeaderSelector`
2621
2870
  */
2622
2871
  getShowHeaderSelector(): boolean;
2623
2872
  /**
2624
2873
  * Returns the information whether the given index is selected.
2874
+ *
2875
+ * @returns `true` if the index is selected
2625
2876
  */
2626
2877
  isIndexSelected(
2627
2878
  /**
@@ -2651,6 +2902,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2651
2902
  /**
2652
2903
  * Requests the binding contexts and adds all indices to the selection if the limit is disabled or the binding
2653
2904
  * length is smaller then the limit.
2905
+ *
2906
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2654
2907
  */
2655
2908
  selectAll(
2656
2909
  /**
@@ -2669,6 +2922,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2669
2922
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2670
2923
  *
2671
2924
  * Default value is `false`.
2925
+ *
2926
+ * @returns Reference to `this` in order to allow method chaining
2672
2927
  */
2673
2928
  setEnableNotification(
2674
2929
  /**
@@ -2692,6 +2947,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2692
2947
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2693
2948
  *
2694
2949
  * Default value is `200`.
2950
+ *
2951
+ * @returns Reference to `this` in order to allow method chaining
2695
2952
  */
2696
2953
  setLimit(
2697
2954
  /**
@@ -2701,6 +2958,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2701
2958
  ): this;
2702
2959
  /**
2703
2960
  * Requests the context and sets the selected index to `iIndex`.
2961
+ *
2962
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2704
2963
  */
2705
2964
  setSelectedIndex(
2706
2965
  /**
@@ -2719,6 +2978,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2719
2978
  *
2720
2979
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
2721
2980
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
2981
+ *
2982
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2722
2983
  */
2723
2984
  setSelectionInterval(
2724
2985
  /**
@@ -2745,6 +3006,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2745
3006
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2746
3007
  *
2747
3008
  * Default value is `MultiToggle`.
3009
+ *
3010
+ * @returns Reference to `this` in order to allow method chaining
2748
3011
  */
2749
3012
  setSelectionMode(
2750
3013
  /**
@@ -2760,6 +3023,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2760
3023
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2761
3024
  *
2762
3025
  * Default value is `true`.
3026
+ *
3027
+ * @returns Reference to `this` in order to allow method chaining
2763
3028
  */
2764
3029
  setShowHeaderSelector(
2765
3030
  /**
@@ -2782,19 +3047,19 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2782
3047
  * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
2783
3048
  * control.
2784
3049
  */
2785
- limit?: int | PropertyBindingInfo;
3050
+ limit?: int | PropertyBindingInfo | `{${string}}`;
2786
3051
 
2787
3052
  /**
2788
3053
  * @SINCE 1.71
2789
3054
  *
2790
3055
  * Enables notifications that are displayed once a selection has been limited.
2791
3056
  */
2792
- enableNotification?: boolean | PropertyBindingInfo;
3057
+ enableNotification?: boolean | PropertyBindingInfo | `{${string}}`;
2793
3058
 
2794
3059
  /**
2795
3060
  * Show header selector
2796
3061
  */
2797
- showHeaderSelector?: boolean | PropertyBindingInfo;
3062
+ showHeaderSelector?: boolean | PropertyBindingInfo | `{${string}}`;
2798
3063
 
2799
3064
  /**
2800
3065
  * Selection mode of the plugin. This property controls whether single or multiple rows can be selected.
@@ -2803,7 +3068,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2803
3068
  */
2804
3069
  selectionMode?:
2805
3070
  | (SelectionMode | keyof typeof SelectionMode)
2806
- | PropertyBindingInfo;
3071
+ | PropertyBindingInfo
3072
+ | `{${string}}`;
2807
3073
 
2808
3074
  /**
2809
3075
  * This event is fired when the selection is changed.
@@ -2843,6 +3109,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2843
3109
  * it with the information contained in `oClassInfo`.
2844
3110
  *
2845
3111
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3112
+ *
3113
+ * @returns Created class / constructor function
2846
3114
  */
2847
3115
  static extend<T extends Record<string, unknown>>(
2848
3116
  /**
@@ -2861,6 +3129,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2861
3129
  ): Function;
2862
3130
  /**
2863
3131
  * Returns a metadata object for class sap.ui.table.plugins.SelectionPlugin.
3132
+ *
3133
+ * @returns Metadata object describing this class
2864
3134
  */
2865
3135
  static getMetadata(): ElementMetadata;
2866
3136
  /**
@@ -2871,6 +3141,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2871
3141
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
2872
3142
  *
2873
3143
  * This event is fired when the selection is changed.
3144
+ *
3145
+ * @returns Reference to `this` in order to allow method chaining
2874
3146
  */
2875
3147
  attachSelectionChange(
2876
3148
  /**
@@ -2896,6 +3168,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2896
3168
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
2897
3169
  *
2898
3170
  * This event is fired when the selection is changed.
3171
+ *
3172
+ * @returns Reference to `this` in order to allow method chaining
2899
3173
  */
2900
3174
  attachSelectionChange(
2901
3175
  /**
@@ -2913,6 +3187,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2913
3187
  * this `sap.ui.table.plugins.SelectionPlugin`.
2914
3188
  *
2915
3189
  * The passed function and listener object must match the ones used for event registration.
3190
+ *
3191
+ * @returns Reference to `this` in order to allow method chaining
2916
3192
  */
2917
3193
  detachSelectionChange(
2918
3194
  /**
@@ -2926,6 +3202,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2926
3202
  ): this;
2927
3203
  /**
2928
3204
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
3205
+ *
3206
+ * @returns Reference to `this` in order to allow method chaining
2929
3207
  */
2930
3208
  fireSelectionChange(
2931
3209
  /**
@@ -2992,6 +3270,8 @@ declare module "sap/ui/table/Row" {
2992
3270
  * contained in `oClassInfo`.
2993
3271
  *
2994
3272
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3273
+ *
3274
+ * @returns Created class / constructor function
2995
3275
  */
2996
3276
  static extend<T extends Record<string, unknown>>(
2997
3277
  /**
@@ -3010,10 +3290,14 @@ declare module "sap/ui/table/Row" {
3010
3290
  ): Function;
3011
3291
  /**
3012
3292
  * Returns a metadata object for class sap.ui.table.Row.
3293
+ *
3294
+ * @returns Metadata object describing this class
3013
3295
  */
3014
3296
  static getMetadata(): ElementMetadata;
3015
3297
  /**
3016
3298
  * Adds some cell to the aggregation {@link #getCells cells}.
3299
+ *
3300
+ * @returns Reference to `this` in order to allow method chaining
3017
3301
  */
3018
3302
  addCell(
3019
3303
  /**
@@ -3023,6 +3307,8 @@ declare module "sap/ui/table/Row" {
3023
3307
  ): this;
3024
3308
  /**
3025
3309
  * Destroys all the cells in the aggregation {@link #getCells cells}.
3310
+ *
3311
+ * @returns Reference to `this` in order to allow method chaining
3026
3312
  */
3027
3313
  destroyCells(): this;
3028
3314
  /**
@@ -3036,11 +3322,15 @@ declare module "sap/ui/table/Row" {
3036
3322
  /**
3037
3323
  * Returns the index of the row in the table or -1 if not added to a table. This function considers the
3038
3324
  * scroll position of the table and also takes fixed rows and fixed bottom rows into account.
3325
+ *
3326
+ * @returns index of the row (considers scroll position and fixed rows)
3039
3327
  */
3040
3328
  getIndex(): int;
3041
3329
  /**
3042
3330
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCells cells}. and returns
3043
3331
  * its index if found or -1 otherwise.
3332
+ *
3333
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3044
3334
  */
3045
3335
  indexOfCell(
3046
3336
  /**
@@ -3050,6 +3340,8 @@ declare module "sap/ui/table/Row" {
3050
3340
  ): int;
3051
3341
  /**
3052
3342
  * Inserts a cell into the aggregation {@link #getCells cells}.
3343
+ *
3344
+ * @returns Reference to `this` in order to allow method chaining
3053
3345
  */
3054
3346
  insertCell(
3055
3347
  /**
@@ -3067,10 +3359,14 @@ declare module "sap/ui/table/Row" {
3067
3359
  * Removes all the controls from the aggregation {@link #getCells cells}.
3068
3360
  *
3069
3361
  * Additionally, it unregisters them from the hosting UIArea.
3362
+ *
3363
+ * @returns An array of the removed elements (might be empty)
3070
3364
  */
3071
3365
  removeAllCells(): Control[];
3072
3366
  /**
3073
3367
  * Removes a cell from the aggregation {@link #getCells cells}.
3368
+ *
3369
+ * @returns The removed cell or `null`
3074
3370
  */
3075
3371
  removeCell(
3076
3372
  /**
@@ -3086,7 +3382,7 @@ declare module "sap/ui/table/Row" {
3086
3382
  * the cells. This aggregation is managed by the table and must not be manipulated. Only read access is
3087
3383
  * allowed.
3088
3384
  */
3089
- cells?: Control[] | Control | AggregationBindingInfo;
3385
+ cells?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
3090
3386
  }
3091
3387
  }
3092
3388
 
@@ -3146,6 +3442,8 @@ declare module "sap/ui/table/RowAction" {
3146
3442
  * information contained in `oClassInfo`.
3147
3443
  *
3148
3444
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3445
+ *
3446
+ * @returns Created class / constructor function
3149
3447
  */
3150
3448
  static extend<T extends Record<string, unknown>>(
3151
3449
  /**
@@ -3164,10 +3462,14 @@ declare module "sap/ui/table/RowAction" {
3164
3462
  ): Function;
3165
3463
  /**
3166
3464
  * Returns a metadata object for class sap.ui.table.RowAction.
3465
+ *
3466
+ * @returns Metadata object describing this class
3167
3467
  */
3168
3468
  static getMetadata(): ElementMetadata;
3169
3469
  /**
3170
3470
  * Adds some item to the aggregation {@link #getItems items}.
3471
+ *
3472
+ * @returns Reference to `this` in order to allow method chaining
3171
3473
  */
3172
3474
  addItem(
3173
3475
  /**
@@ -3177,6 +3479,8 @@ declare module "sap/ui/table/RowAction" {
3177
3479
  ): this;
3178
3480
  /**
3179
3481
  * Destroys all the items in the aggregation {@link #getItems items}.
3482
+ *
3483
+ * @returns Reference to `this` in order to allow method chaining
3180
3484
  */
3181
3485
  destroyItems(): this;
3182
3486
  /**
@@ -3191,11 +3495,15 @@ declare module "sap/ui/table/RowAction" {
3191
3495
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3192
3496
  *
3193
3497
  * Default value is `true`.
3498
+ *
3499
+ * @returns Value of property `visible`
3194
3500
  */
3195
3501
  getVisible(): boolean;
3196
3502
  /**
3197
3503
  * Checks for the provided `sap.ui.table.RowActionItem` in the aggregation {@link #getItems items}. and
3198
3504
  * returns its index if found or -1 otherwise.
3505
+ *
3506
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3199
3507
  */
3200
3508
  indexOfItem(
3201
3509
  /**
@@ -3205,6 +3513,8 @@ declare module "sap/ui/table/RowAction" {
3205
3513
  ): int;
3206
3514
  /**
3207
3515
  * Inserts a item into the aggregation {@link #getItems items}.
3516
+ *
3517
+ * @returns Reference to `this` in order to allow method chaining
3208
3518
  */
3209
3519
  insertItem(
3210
3520
  /**
@@ -3222,10 +3532,14 @@ declare module "sap/ui/table/RowAction" {
3222
3532
  * Removes all the controls from the aggregation {@link #getItems items}.
3223
3533
  *
3224
3534
  * Additionally, it unregisters them from the hosting UIArea.
3535
+ *
3536
+ * @returns An array of the removed elements (might be empty)
3225
3537
  */
3226
3538
  removeAllItems(): RowActionItem[];
3227
3539
  /**
3228
3540
  * Removes a item from the aggregation {@link #getItems items}.
3541
+ *
3542
+ * @returns The removed item or `null`
3229
3543
  */
3230
3544
  removeItem(
3231
3545
  /**
@@ -3241,6 +3555,8 @@ declare module "sap/ui/table/RowAction" {
3241
3555
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3242
3556
  *
3243
3557
  * Default value is `true`.
3558
+ *
3559
+ * @returns Reference to `this` in order to allow method chaining
3244
3560
  */
3245
3561
  setVisible(
3246
3562
  /**
@@ -3254,12 +3570,16 @@ declare module "sap/ui/table/RowAction" {
3254
3570
  /**
3255
3571
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3256
3572
  */
3257
- visible?: boolean | PropertyBindingInfo;
3573
+ visible?: boolean | PropertyBindingInfo | `{${string}}`;
3258
3574
 
3259
3575
  /**
3260
3576
  * The action items which should be displayed.
3261
3577
  */
3262
- items?: RowActionItem[] | RowActionItem | AggregationBindingInfo;
3578
+ items?:
3579
+ | RowActionItem[]
3580
+ | RowActionItem
3581
+ | AggregationBindingInfo
3582
+ | `{${string}}`;
3263
3583
  }
3264
3584
  }
3265
3585
 
@@ -3319,6 +3639,8 @@ declare module "sap/ui/table/RowActionItem" {
3319
3639
  * the information contained in `oClassInfo`.
3320
3640
  *
3321
3641
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3642
+ *
3643
+ * @returns Created class / constructor function
3322
3644
  */
3323
3645
  static extend<T extends Record<string, unknown>>(
3324
3646
  /**
@@ -3337,6 +3659,8 @@ declare module "sap/ui/table/RowActionItem" {
3337
3659
  ): Function;
3338
3660
  /**
3339
3661
  * Returns a metadata object for class sap.ui.table.RowActionItem.
3662
+ *
3663
+ * @returns Metadata object describing this class
3340
3664
  */
3341
3665
  static getMetadata(): ElementMetadata;
3342
3666
  /**
@@ -3346,6 +3670,8 @@ declare module "sap/ui/table/RowActionItem" {
3346
3670
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3347
3671
  *
3348
3672
  * The `press` is fired when the user triggers the corresponding action.
3673
+ *
3674
+ * @returns Reference to `this` in order to allow method chaining
3349
3675
  */
3350
3676
  attachPress(
3351
3677
  /**
@@ -3369,6 +3695,8 @@ declare module "sap/ui/table/RowActionItem" {
3369
3695
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3370
3696
  *
3371
3697
  * The `press` is fired when the user triggers the corresponding action.
3698
+ *
3699
+ * @returns Reference to `this` in order to allow method chaining
3372
3700
  */
3373
3701
  attachPress(
3374
3702
  /**
@@ -3384,6 +3712,8 @@ declare module "sap/ui/table/RowActionItem" {
3384
3712
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.ui.table.RowActionItem`.
3385
3713
  *
3386
3714
  * The passed function and listener object must match the ones used for event registration.
3715
+ *
3716
+ * @returns Reference to `this` in order to allow method chaining
3387
3717
  */
3388
3718
  detachPress(
3389
3719
  /**
@@ -3397,6 +3727,8 @@ declare module "sap/ui/table/RowActionItem" {
3397
3727
  ): this;
3398
3728
  /**
3399
3729
  * Fires event {@link #event:press press} to attached listeners.
3730
+ *
3731
+ * @returns Reference to `this` in order to allow method chaining
3400
3732
  */
3401
3733
  firePress(
3402
3734
  /**
@@ -3408,6 +3740,8 @@ declare module "sap/ui/table/RowActionItem" {
3408
3740
  * Gets current value of property {@link #getIcon icon}.
3409
3741
  *
3410
3742
  * The icon of the item.
3743
+ *
3744
+ * @returns Value of property `icon`
3411
3745
  */
3412
3746
  getIcon(): URI;
3413
3747
  /**
@@ -3416,6 +3750,8 @@ declare module "sap/ui/table/RowActionItem" {
3416
3750
  * The text of the item. It is used as tooltip and for accessibility purposes.
3417
3751
  *
3418
3752
  * Default value is `empty string`.
3753
+ *
3754
+ * @returns Value of property `text`
3419
3755
  */
3420
3756
  getText(): string;
3421
3757
  /**
@@ -3425,6 +3761,8 @@ declare module "sap/ui/table/RowActionItem" {
3425
3761
  * an icon or text is set explicitly this setting is used.
3426
3762
  *
3427
3763
  * Default value is `Custom`.
3764
+ *
3765
+ * @returns Value of property `type`
3428
3766
  */
3429
3767
  getType(): RowActionType | keyof typeof RowActionType;
3430
3768
  /**
@@ -3433,6 +3771,8 @@ declare module "sap/ui/table/RowActionItem" {
3433
3771
  * Whether the item should be visible on the screen.
3434
3772
  *
3435
3773
  * Default value is `true`.
3774
+ *
3775
+ * @returns Value of property `visible`
3436
3776
  */
3437
3777
  getVisible(): boolean;
3438
3778
  /**
@@ -3441,6 +3781,8 @@ declare module "sap/ui/table/RowActionItem" {
3441
3781
  * The icon of the item.
3442
3782
  *
3443
3783
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3784
+ *
3785
+ * @returns Reference to `this` in order to allow method chaining
3444
3786
  */
3445
3787
  setIcon(
3446
3788
  /**
@@ -3456,6 +3798,8 @@ declare module "sap/ui/table/RowActionItem" {
3456
3798
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3457
3799
  *
3458
3800
  * Default value is `empty string`.
3801
+ *
3802
+ * @returns Reference to `this` in order to allow method chaining
3459
3803
  */
3460
3804
  setText(
3461
3805
  /**
@@ -3472,6 +3816,8 @@ declare module "sap/ui/table/RowActionItem" {
3472
3816
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3473
3817
  *
3474
3818
  * Default value is `Custom`.
3819
+ *
3820
+ * @returns Reference to `this` in order to allow method chaining
3475
3821
  */
3476
3822
  setType(
3477
3823
  /**
@@ -3487,6 +3833,8 @@ declare module "sap/ui/table/RowActionItem" {
3487
3833
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3488
3834
  *
3489
3835
  * Default value is `true`.
3836
+ *
3837
+ * @returns Reference to `this` in order to allow method chaining
3490
3838
  */
3491
3839
  setVisible(
3492
3840
  /**
@@ -3500,12 +3848,12 @@ declare module "sap/ui/table/RowActionItem" {
3500
3848
  /**
3501
3849
  * The icon of the item.
3502
3850
  */
3503
- icon?: URI | PropertyBindingInfo;
3851
+ icon?: URI | PropertyBindingInfo | `{${string}}`;
3504
3852
 
3505
3853
  /**
3506
3854
  * Whether the item should be visible on the screen.
3507
3855
  */
3508
- visible?: boolean | PropertyBindingInfo;
3856
+ visible?: boolean | PropertyBindingInfo | `{${string}}`;
3509
3857
 
3510
3858
  /**
3511
3859
  * The text of the item. It is used as tooltip and for accessibility purposes.
@@ -3516,7 +3864,10 @@ declare module "sap/ui/table/RowActionItem" {
3516
3864
  * The type of the item. Setting the type ensures default values for the properties `icon` and `text`. If
3517
3865
  * an icon or text is set explicitly this setting is used.
3518
3866
  */
3519
- type?: (RowActionType | keyof typeof RowActionType) | PropertyBindingInfo;
3867
+ type?:
3868
+ | (RowActionType | keyof typeof RowActionType)
3869
+ | PropertyBindingInfo
3870
+ | `{${string}}`;
3520
3871
 
3521
3872
  /**
3522
3873
  * The `press` is fired when the user triggers the corresponding action.
@@ -3575,6 +3926,8 @@ declare module "sap/ui/table/RowSettings" {
3575
3926
  * the information contained in `oClassInfo`.
3576
3927
  *
3577
3928
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3929
+ *
3930
+ * @returns Created class / constructor function
3578
3931
  */
3579
3932
  static extend<T extends Record<string, unknown>>(
3580
3933
  /**
@@ -3593,6 +3946,8 @@ declare module "sap/ui/table/RowSettings" {
3593
3946
  ): Function;
3594
3947
  /**
3595
3948
  * Returns a metadata object for class sap.ui.table.RowSettings.
3949
+ *
3950
+ * @returns Metadata object describing this class
3596
3951
  */
3597
3952
  static getMetadata(): ElementMetadata;
3598
3953
  /**
@@ -3613,6 +3968,8 @@ declare module "sap/ui/table/RowSettings" {
3613
3968
  * property must be set.
3614
3969
  *
3615
3970
  * Default value is `"None"`.
3971
+ *
3972
+ * @returns Value of property `highlight`
3616
3973
  */
3617
3974
  getHighlight(): string;
3618
3975
  /**
@@ -3625,6 +3982,8 @@ declare module "sap/ui/table/RowSettings" {
3625
3982
  * the highlight.
3626
3983
  *
3627
3984
  * Default value is `empty string`.
3985
+ *
3986
+ * @returns Value of property `highlightText`
3628
3987
  */
3629
3988
  getHighlightText(): string;
3630
3989
  /**
@@ -3638,6 +3997,8 @@ declare module "sap/ui/table/RowSettings" {
3638
3997
  * must be set for **one** row only.
3639
3998
  *
3640
3999
  * Default value is `false`.
4000
+ *
4001
+ * @returns Value of property `navigated`
3641
4002
  */
3642
4003
  getNavigated(): boolean;
3643
4004
  /**
@@ -3660,6 +4021,8 @@ declare module "sap/ui/table/RowSettings" {
3660
4021
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3661
4022
  *
3662
4023
  * Default value is `"None"`.
4024
+ *
4025
+ * @returns Reference to `this` in order to allow method chaining
3663
4026
  */
3664
4027
  setHighlight(
3665
4028
  /**
@@ -3679,6 +4042,8 @@ declare module "sap/ui/table/RowSettings" {
3679
4042
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3680
4043
  *
3681
4044
  * Default value is `empty string`.
4045
+ *
4046
+ * @returns Reference to `this` in order to allow method chaining
3682
4047
  */
3683
4048
  setHighlightText(
3684
4049
  /**
@@ -3699,6 +4064,8 @@ declare module "sap/ui/table/RowSettings" {
3699
4064
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3700
4065
  *
3701
4066
  * Default value is `false`.
4067
+ *
4068
+ * @returns Reference to `this` in order to allow method chaining
3702
4069
  */
3703
4070
  setNavigated(
3704
4071
  /**
@@ -3743,7 +4110,7 @@ declare module "sap/ui/table/RowSettings" {
3743
4110
  * If set to `true`, a navigation indicator is displayed at the end of the row. **Note:** This property
3744
4111
  * must be set for **one** row only.
3745
4112
  */
3746
- navigated?: boolean | PropertyBindingInfo;
4113
+ navigated?: boolean | PropertyBindingInfo | `{${string}}`;
3747
4114
  }
3748
4115
  }
3749
4116
 
@@ -3846,6 +4213,8 @@ declare module "sap/ui/table/Table" {
3846
4213
  * contained in `oClassInfo`.
3847
4214
  *
3848
4215
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4216
+ *
4217
+ * @returns Created class / constructor function
3849
4218
  */
3850
4219
  static extend<T extends Record<string, unknown>>(
3851
4220
  /**
@@ -3864,10 +4233,14 @@ declare module "sap/ui/table/Table" {
3864
4233
  ): Function;
3865
4234
  /**
3866
4235
  * Returns a metadata object for class sap.ui.table.Table.
4236
+ *
4237
+ * @returns Metadata object describing this class
3867
4238
  */
3868
4239
  static getMetadata(): ElementMetadata;
3869
4240
  /**
3870
4241
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4242
+ *
4243
+ * @returns Reference to `this` in order to allow method chaining
3871
4244
  */
3872
4245
  addAriaLabelledBy(
3873
4246
  /**
@@ -3877,6 +4250,8 @@ declare module "sap/ui/table/Table" {
3877
4250
  ): this;
3878
4251
  /**
3879
4252
  * Adds some column to the aggregation {@link #getColumns columns}.
4253
+ *
4254
+ * @returns Reference to `this` in order to allow method chaining
3880
4255
  */
3881
4256
  addColumn(
3882
4257
  /**
@@ -3886,6 +4261,8 @@ declare module "sap/ui/table/Table" {
3886
4261
  ): this;
3887
4262
  /**
3888
4263
  * Adds some extension to the aggregation {@link #getExtension extension}.
4264
+ *
4265
+ * @returns Reference to `this` in order to allow method chaining
3889
4266
  */
3890
4267
  addExtension(
3891
4268
  /**
@@ -3897,6 +4274,8 @@ declare module "sap/ui/table/Table" {
3897
4274
  * @SINCE 1.64
3898
4275
  *
3899
4276
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
4277
+ *
4278
+ * @returns Reference to `this` in order to allow method chaining
3900
4279
  */
3901
4280
  addPlugin(
3902
4281
  /**
@@ -3906,6 +4285,8 @@ declare module "sap/ui/table/Table" {
3906
4285
  ): this;
3907
4286
  /**
3908
4287
  * Adds some row to the aggregation {@link #getRows rows}.
4288
+ *
4289
+ * @returns Reference to `this` in order to allow method chaining
3909
4290
  */
3910
4291
  addRow(
3911
4292
  /**
@@ -3916,6 +4297,8 @@ declare module "sap/ui/table/Table" {
3916
4297
  /**
3917
4298
  * Adds the given selection interval to the selection. In case of a single selection, only `iIndexTo` is
3918
4299
  * added to the selection.
4300
+ *
4301
+ * @returns Reference to `this` in order to allow method chaining
3919
4302
  */
3920
4303
  addSelectionInterval(
3921
4304
  /**
@@ -3937,6 +4320,8 @@ declare module "sap/ui/table/Table" {
3937
4320
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
3938
4321
  *
3939
4322
  * Fired when the user requests the context menu for a table cell.
4323
+ *
4324
+ * @returns Reference to `this` in order to allow method chaining
3940
4325
  */
3941
4326
  attachBeforeOpenContextMenu(
3942
4327
  /**
@@ -3963,6 +4348,8 @@ declare module "sap/ui/table/Table" {
3963
4348
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
3964
4349
  *
3965
4350
  * Fired when the user requests the context menu for a table cell.
4351
+ *
4352
+ * @returns Reference to `this` in order to allow method chaining
3966
4353
  */
3967
4354
  attachBeforeOpenContextMenu(
3968
4355
  /**
@@ -3984,6 +4371,8 @@ declare module "sap/ui/table/Table" {
3984
4371
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
3985
4372
  *
3986
4373
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
4374
+ *
4375
+ * @returns Reference to `this` in order to allow method chaining
3987
4376
  */
3988
4377
  attachBusyStateChanged(
3989
4378
  /**
@@ -4010,6 +4399,8 @@ declare module "sap/ui/table/Table" {
4010
4399
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4011
4400
  *
4012
4401
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
4402
+ *
4403
+ * @returns Reference to `this` in order to allow method chaining
4013
4404
  */
4014
4405
  attachBusyStateChanged(
4015
4406
  /**
@@ -4030,6 +4421,8 @@ declare module "sap/ui/table/Table" {
4030
4421
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4031
4422
  *
4032
4423
  * fired when the user clicks a cell of the table (experimental!).
4424
+ *
4425
+ * @returns Reference to `this` in order to allow method chaining
4033
4426
  */
4034
4427
  attachCellClick(
4035
4428
  /**
@@ -4055,6 +4448,8 @@ declare module "sap/ui/table/Table" {
4055
4448
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4056
4449
  *
4057
4450
  * fired when the user clicks a cell of the table (experimental!).
4451
+ *
4452
+ * @returns Reference to `this` in order to allow method chaining
4058
4453
  */
4059
4454
  attachCellClick(
4060
4455
  /**
@@ -4077,6 +4472,8 @@ declare module "sap/ui/table/Table" {
4077
4472
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4078
4473
  *
4079
4474
  * fired when the user clicks a cell of the table.
4475
+ *
4476
+ * @returns Reference to `this` in order to allow method chaining
4080
4477
  */
4081
4478
  attachCellContextmenu(
4082
4479
  /**
@@ -4104,6 +4501,8 @@ declare module "sap/ui/table/Table" {
4104
4501
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4105
4502
  *
4106
4503
  * fired when the user clicks a cell of the table.
4504
+ *
4505
+ * @returns Reference to `this` in order to allow method chaining
4107
4506
  */
4108
4507
  attachCellContextmenu(
4109
4508
  /**
@@ -4124,6 +4523,8 @@ declare module "sap/ui/table/Table" {
4124
4523
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4125
4524
  *
4126
4525
  * fired when a column of the table should be freezed
4526
+ *
4527
+ * @returns Reference to `this` in order to allow method chaining
4127
4528
  */
4128
4529
  attachColumnFreeze(
4129
4530
  /**
@@ -4149,6 +4550,8 @@ declare module "sap/ui/table/Table" {
4149
4550
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4150
4551
  *
4151
4552
  * fired when a column of the table should be freezed
4553
+ *
4554
+ * @returns Reference to `this` in order to allow method chaining
4152
4555
  */
4153
4556
  attachColumnFreeze(
4154
4557
  /**
@@ -4167,6 +4570,8 @@ declare module "sap/ui/table/Table" {
4167
4570
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4168
4571
  *
4169
4572
  * fired when a table column is moved.
4573
+ *
4574
+ * @returns Reference to `this` in order to allow method chaining
4170
4575
  */
4171
4576
  attachColumnMove(
4172
4577
  /**
@@ -4190,6 +4595,8 @@ declare module "sap/ui/table/Table" {
4190
4595
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4191
4596
  *
4192
4597
  * fired when a table column is moved.
4598
+ *
4599
+ * @returns Reference to `this` in order to allow method chaining
4193
4600
  */
4194
4601
  attachColumnMove(
4195
4602
  /**
@@ -4208,6 +4615,8 @@ declare module "sap/ui/table/Table" {
4208
4615
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4209
4616
  *
4210
4617
  * fired when a table column is resized.
4618
+ *
4619
+ * @returns Reference to `this` in order to allow method chaining
4211
4620
  */
4212
4621
  attachColumnResize(
4213
4622
  /**
@@ -4231,6 +4640,8 @@ declare module "sap/ui/table/Table" {
4231
4640
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4232
4641
  *
4233
4642
  * fired when a table column is resized.
4643
+ *
4644
+ * @returns Reference to `this` in order to allow method chaining
4234
4645
  */
4235
4646
  attachColumnResize(
4236
4647
  /**
@@ -4249,6 +4660,8 @@ declare module "sap/ui/table/Table" {
4249
4660
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4250
4661
  *
4251
4662
  * fired when a column of the table has been selected
4663
+ *
4664
+ * @returns Reference to `this` in order to allow method chaining
4252
4665
  */
4253
4666
  attachColumnSelect(
4254
4667
  /**
@@ -4272,6 +4685,8 @@ declare module "sap/ui/table/Table" {
4272
4685
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4273
4686
  *
4274
4687
  * fired when a column of the table has been selected
4688
+ *
4689
+ * @returns Reference to `this` in order to allow method chaining
4275
4690
  */
4276
4691
  attachColumnSelect(
4277
4692
  /**
@@ -4291,6 +4706,8 @@ declare module "sap/ui/table/Table" {
4291
4706
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4292
4707
  *
4293
4708
  * fired when the visibility of a table column is changed.
4709
+ *
4710
+ * @returns Reference to `this` in order to allow method chaining
4294
4711
  */
4295
4712
  attachColumnVisibility(
4296
4713
  /**
@@ -4315,6 +4732,8 @@ declare module "sap/ui/table/Table" {
4315
4732
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4316
4733
  *
4317
4734
  * fired when the visibility of a table column is changed.
4735
+ *
4736
+ * @returns Reference to `this` in order to allow method chaining
4318
4737
  */
4319
4738
  attachColumnVisibility(
4320
4739
  /**
@@ -4336,6 +4755,8 @@ declare module "sap/ui/table/Table" {
4336
4755
  *
4337
4756
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4338
4757
  * the event was triggered is passed as parameter.
4758
+ *
4759
+ * @returns Reference to `this` in order to allow method chaining
4339
4760
  */
4340
4761
  attachCustomFilter(
4341
4762
  /**
@@ -4362,6 +4783,8 @@ declare module "sap/ui/table/Table" {
4362
4783
  *
4363
4784
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4364
4785
  * the event was triggered is passed as parameter.
4786
+ *
4787
+ * @returns Reference to `this` in order to allow method chaining
4365
4788
  */
4366
4789
  attachCustomFilter(
4367
4790
  /**
@@ -4380,6 +4803,8 @@ declare module "sap/ui/table/Table" {
4380
4803
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4381
4804
  *
4382
4805
  * fired when the table is filtered.
4806
+ *
4807
+ * @returns Reference to `this` in order to allow method chaining
4383
4808
  */
4384
4809
  attachFilter(
4385
4810
  /**
@@ -4403,6 +4828,8 @@ declare module "sap/ui/table/Table" {
4403
4828
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4404
4829
  *
4405
4830
  * fired when the table is filtered.
4831
+ *
4832
+ * @returns Reference to `this` in order to allow method chaining
4406
4833
  */
4407
4834
  attachFilter(
4408
4835
  /**
@@ -4425,6 +4852,8 @@ declare module "sap/ui/table/Table" {
4425
4852
  *
4426
4853
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4427
4854
  * The event even is fired when setFirstVisibleRow is called programmatically.
4855
+ *
4856
+ * @returns Reference to `this` in order to allow method chaining
4428
4857
  */
4429
4858
  attachFirstVisibleRowChanged(
4430
4859
  /**
@@ -4452,6 +4881,8 @@ declare module "sap/ui/table/Table" {
4452
4881
  *
4453
4882
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4454
4883
  * The event even is fired when setFirstVisibleRow is called programmatically.
4884
+ *
4885
+ * @returns Reference to `this` in order to allow method chaining
4455
4886
  */
4456
4887
  attachFirstVisibleRowChanged(
4457
4888
  /**
@@ -4470,6 +4901,8 @@ declare module "sap/ui/table/Table" {
4470
4901
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4471
4902
  *
4472
4903
  * fired when the table is grouped (experimental!).
4904
+ *
4905
+ * @returns Reference to `this` in order to allow method chaining
4473
4906
  */
4474
4907
  attachGroup(
4475
4908
  /**
@@ -4493,6 +4926,8 @@ declare module "sap/ui/table/Table" {
4493
4926
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4494
4927
  *
4495
4928
  * fired when the table is grouped (experimental!).
4929
+ *
4930
+ * @returns Reference to `this` in order to allow method chaining
4496
4931
  */
4497
4932
  attachGroup(
4498
4933
  /**
@@ -4514,6 +4949,8 @@ declare module "sap/ui/table/Table" {
4514
4949
  *
4515
4950
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4516
4951
  * with the standard keyboard shortcut, if the focus is inside the table.
4952
+ *
4953
+ * @returns Reference to `this` in order to allow method chaining
4517
4954
  */
4518
4955
  attachPaste(
4519
4956
  /**
@@ -4540,6 +4977,8 @@ declare module "sap/ui/table/Table" {
4540
4977
  *
4541
4978
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4542
4979
  * with the standard keyboard shortcut, if the focus is inside the table.
4980
+ *
4981
+ * @returns Reference to `this` in order to allow method chaining
4543
4982
  */
4544
4983
  attachPaste(
4545
4984
  /**
@@ -4562,6 +5001,8 @@ declare module "sap/ui/table/Table" {
4562
5001
  * selection changes - to find out the selected rows you should better use the table selection API)
4563
5002
  *
4564
5003
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
5004
+ *
5005
+ * @returns Reference to `this` in order to allow method chaining
4565
5006
  */
4566
5007
  attachRowSelectionChange(
4567
5008
  /**
@@ -4589,6 +5030,8 @@ declare module "sap/ui/table/Table" {
4589
5030
  * selection changes - to find out the selected rows you should better use the table selection API)
4590
5031
  *
4591
5032
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
5033
+ *
5034
+ * @returns Reference to `this` in order to allow method chaining
4592
5035
  */
4593
5036
  attachRowSelectionChange(
4594
5037
  /**
@@ -4612,6 +5055,8 @@ declare module "sap/ui/table/Table" {
4612
5055
  * interaction, for example.
4613
5056
  *
4614
5057
  * **Note**: This event is fired often and must not be used for performance-critical tasks.
5058
+ *
5059
+ * @returns Reference to `this` in order to allow method chaining
4615
5060
  */
4616
5061
  attachRowsUpdated(
4617
5062
  /**
@@ -4640,6 +5085,8 @@ declare module "sap/ui/table/Table" {
4640
5085
  * interaction, for example.
4641
5086
  *
4642
5087
  * **Note**: This event is fired often and must not be used for performance-critical tasks.
5088
+ *
5089
+ * @returns Reference to `this` in order to allow method chaining
4643
5090
  */
4644
5091
  attachRowsUpdated(
4645
5092
  /**
@@ -4658,6 +5105,8 @@ declare module "sap/ui/table/Table" {
4658
5105
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4659
5106
  *
4660
5107
  * fired when the table is sorted.
5108
+ *
5109
+ * @returns Reference to `this` in order to allow method chaining
4661
5110
  */
4662
5111
  attachSort(
4663
5112
  /**
@@ -4681,6 +5130,8 @@ declare module "sap/ui/table/Table" {
4681
5130
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4682
5131
  *
4683
5132
  * fired when the table is sorted.
5133
+ *
5134
+ * @returns Reference to `this` in order to allow method chaining
4684
5135
  */
4685
5136
  attachSort(
4686
5137
  /**
@@ -4708,6 +5159,8 @@ declare module "sap/ui/table/Table" {
4708
5159
  *
4709
5160
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
4710
5161
  * of the possible properties of `oBindingInfo`.
5162
+ *
5163
+ * @returns Reference to `this` in order to allow method chaining
4711
5164
  */
4712
5165
  bindColumns(
4713
5166
  /**
@@ -4720,6 +5173,8 @@ declare module "sap/ui/table/Table" {
4720
5173
  *
4721
5174
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
4722
5175
  * of the possible properties of `oBindingInfo`.
5176
+ *
5177
+ * @returns Reference to `this` in order to allow method chaining
4723
5178
  */
4724
5179
  bindRows(
4725
5180
  /**
@@ -4729,58 +5184,82 @@ declare module "sap/ui/table/Table" {
4729
5184
  ): this;
4730
5185
  /**
4731
5186
  * Removes complete selection.
5187
+ *
5188
+ * @returns Reference to `this` in order to allow method chaining
4732
5189
  */
4733
5190
  clearSelection(): this;
4734
5191
  /**
4735
5192
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
5193
+ *
5194
+ * @returns Reference to `this` in order to allow method chaining
4736
5195
  */
4737
5196
  destroyColumns(): this;
4738
5197
  /**
4739
5198
  * @SINCE 1.54
4740
5199
  *
4741
5200
  * Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
5201
+ *
5202
+ * @returns Reference to `this` in order to allow method chaining
4742
5203
  */
4743
5204
  destroyContextMenu(): this;
4744
5205
  /**
4745
5206
  * Destroys all the extension in the aggregation {@link #getExtension extension}.
5207
+ *
5208
+ * @returns Reference to `this` in order to allow method chaining
4746
5209
  */
4747
5210
  destroyExtension(): this;
4748
5211
  /**
4749
5212
  * Destroys the footer in the aggregation {@link #getFooter footer}.
5213
+ *
5214
+ * @returns Reference to `this` in order to allow method chaining
4750
5215
  */
4751
5216
  destroyFooter(): this;
4752
5217
  /**
4753
5218
  * Destroys the noData in the aggregation {@link #getNoData noData}.
5219
+ *
5220
+ * @returns Reference to `this` in order to allow method chaining
4754
5221
  */
4755
5222
  destroyNoData(): this;
4756
5223
  /**
4757
5224
  * @SINCE 1.64
4758
5225
  *
4759
5226
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
5227
+ *
5228
+ * @returns Reference to `this` in order to allow method chaining
4760
5229
  */
4761
5230
  destroyPlugins(): this;
4762
5231
  /**
4763
5232
  * Destroys the rowActionTemplate in the aggregation {@link #getRowActionTemplate rowActionTemplate}.
5233
+ *
5234
+ * @returns Reference to `this` in order to allow method chaining
4764
5235
  */
4765
5236
  destroyRowActionTemplate(): this;
4766
5237
  /**
4767
5238
  * Destroys all the rows in the aggregation {@link #getRows rows}.
5239
+ *
5240
+ * @returns Reference to `this` in order to allow method chaining
4768
5241
  */
4769
5242
  destroyRows(): this;
4770
5243
  /**
4771
5244
  * Destroys the rowSettingsTemplate in the aggregation {@link #getRowSettingsTemplate rowSettingsTemplate}.
5245
+ *
5246
+ * @returns Reference to `this` in order to allow method chaining
4772
5247
  */
4773
5248
  destroyRowSettingsTemplate(): this;
4774
5249
  /**
4775
5250
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
4776
5251
  *
4777
5252
  * Destroys the title in the aggregation {@link #getTitle title}.
5253
+ *
5254
+ * @returns Reference to `this` in order to allow method chaining
4778
5255
  */
4779
5256
  destroyTitle(): this;
4780
5257
  /**
4781
5258
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
4782
5259
  *
4783
5260
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5261
+ *
5262
+ * @returns Reference to `this` in order to allow method chaining
4784
5263
  */
4785
5264
  destroyToolbar(): this;
4786
5265
  /**
@@ -4790,6 +5269,8 @@ declare module "sap/ui/table/Table" {
4790
5269
  * event of this `sap.ui.table.Table`.
4791
5270
  *
4792
5271
  * The passed function and listener object must match the ones used for event registration.
5272
+ *
5273
+ * @returns Reference to `this` in order to allow method chaining
4793
5274
  */
4794
5275
  detachBeforeOpenContextMenu(
4795
5276
  /**
@@ -4808,6 +5289,8 @@ declare module "sap/ui/table/Table" {
4808
5289
  * this `sap.ui.table.Table`.
4809
5290
  *
4810
5291
  * The passed function and listener object must match the ones used for event registration.
5292
+ *
5293
+ * @returns Reference to `this` in order to allow method chaining
4811
5294
  */
4812
5295
  detachBusyStateChanged(
4813
5296
  /**
@@ -4825,6 +5308,8 @@ declare module "sap/ui/table/Table" {
4825
5308
  * Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
4826
5309
  *
4827
5310
  * The passed function and listener object must match the ones used for event registration.
5311
+ *
5312
+ * @returns Reference to `this` in order to allow method chaining
4828
5313
  */
4829
5314
  detachCellClick(
4830
5315
  /**
@@ -4844,6 +5329,8 @@ declare module "sap/ui/table/Table" {
4844
5329
  * this `sap.ui.table.Table`.
4845
5330
  *
4846
5331
  * The passed function and listener object must match the ones used for event registration.
5332
+ *
5333
+ * @returns Reference to `this` in order to allow method chaining
4847
5334
  */
4848
5335
  detachCellContextmenu(
4849
5336
  /**
@@ -4861,6 +5348,8 @@ declare module "sap/ui/table/Table" {
4861
5348
  * Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
4862
5349
  *
4863
5350
  * The passed function and listener object must match the ones used for event registration.
5351
+ *
5352
+ * @returns Reference to `this` in order to allow method chaining
4864
5353
  */
4865
5354
  detachColumnFreeze(
4866
5355
  /**
@@ -4876,6 +5365,8 @@ declare module "sap/ui/table/Table" {
4876
5365
  * Detaches event handler `fnFunction` from the {@link #event:columnMove columnMove} event of this `sap.ui.table.Table`.
4877
5366
  *
4878
5367
  * The passed function and listener object must match the ones used for event registration.
5368
+ *
5369
+ * @returns Reference to `this` in order to allow method chaining
4879
5370
  */
4880
5371
  detachColumnMove(
4881
5372
  /**
@@ -4891,6 +5382,8 @@ declare module "sap/ui/table/Table" {
4891
5382
  * Detaches event handler `fnFunction` from the {@link #event:columnResize columnResize} event of this `sap.ui.table.Table`.
4892
5383
  *
4893
5384
  * The passed function and listener object must match the ones used for event registration.
5385
+ *
5386
+ * @returns Reference to `this` in order to allow method chaining
4894
5387
  */
4895
5388
  detachColumnResize(
4896
5389
  /**
@@ -4906,6 +5399,8 @@ declare module "sap/ui/table/Table" {
4906
5399
  * Detaches event handler `fnFunction` from the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
4907
5400
  *
4908
5401
  * The passed function and listener object must match the ones used for event registration.
5402
+ *
5403
+ * @returns Reference to `this` in order to allow method chaining
4909
5404
  */
4910
5405
  detachColumnSelect(
4911
5406
  /**
@@ -4922,6 +5417,8 @@ declare module "sap/ui/table/Table" {
4922
5417
  * this `sap.ui.table.Table`.
4923
5418
  *
4924
5419
  * The passed function and listener object must match the ones used for event registration.
5420
+ *
5421
+ * @returns Reference to `this` in order to allow method chaining
4925
5422
  */
4926
5423
  detachColumnVisibility(
4927
5424
  /**
@@ -4939,6 +5436,8 @@ declare module "sap/ui/table/Table" {
4939
5436
  * Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
4940
5437
  *
4941
5438
  * The passed function and listener object must match the ones used for event registration.
5439
+ *
5440
+ * @returns Reference to `this` in order to allow method chaining
4942
5441
  */
4943
5442
  detachCustomFilter(
4944
5443
  /**
@@ -4954,6 +5453,8 @@ declare module "sap/ui/table/Table" {
4954
5453
  * Detaches event handler `fnFunction` from the {@link #event:filter filter} event of this `sap.ui.table.Table`.
4955
5454
  *
4956
5455
  * The passed function and listener object must match the ones used for event registration.
5456
+ *
5457
+ * @returns Reference to `this` in order to allow method chaining
4957
5458
  */
4958
5459
  detachFilter(
4959
5460
  /**
@@ -4972,6 +5473,8 @@ declare module "sap/ui/table/Table" {
4972
5473
  * event of this `sap.ui.table.Table`.
4973
5474
  *
4974
5475
  * The passed function and listener object must match the ones used for event registration.
5476
+ *
5477
+ * @returns Reference to `this` in order to allow method chaining
4975
5478
  */
4976
5479
  detachFirstVisibleRowChanged(
4977
5480
  /**
@@ -4987,6 +5490,8 @@ declare module "sap/ui/table/Table" {
4987
5490
  * Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.Table`.
4988
5491
  *
4989
5492
  * The passed function and listener object must match the ones used for event registration.
5493
+ *
5494
+ * @returns Reference to `this` in order to allow method chaining
4990
5495
  */
4991
5496
  detachGroup(
4992
5497
  /**
@@ -5004,6 +5509,8 @@ declare module "sap/ui/table/Table" {
5004
5509
  * Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5005
5510
  *
5006
5511
  * The passed function and listener object must match the ones used for event registration.
5512
+ *
5513
+ * @returns Reference to `this` in order to allow method chaining
5007
5514
  */
5008
5515
  detachPaste(
5009
5516
  /**
@@ -5020,6 +5527,8 @@ declare module "sap/ui/table/Table" {
5020
5527
  * of this `sap.ui.table.Table`.
5021
5528
  *
5022
5529
  * The passed function and listener object must match the ones used for event registration.
5530
+ *
5531
+ * @returns Reference to `this` in order to allow method chaining
5023
5532
  */
5024
5533
  detachRowSelectionChange(
5025
5534
  /**
@@ -5037,6 +5546,8 @@ declare module "sap/ui/table/Table" {
5037
5546
  * Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
5038
5547
  *
5039
5548
  * The passed function and listener object must match the ones used for event registration.
5549
+ *
5550
+ * @returns Reference to `this` in order to allow method chaining
5040
5551
  */
5041
5552
  detachRowsUpdated(
5042
5553
  /**
@@ -5052,6 +5563,8 @@ declare module "sap/ui/table/Table" {
5052
5563
  * Detaches event handler `fnFunction` from the {@link #event:sort sort} event of this `sap.ui.table.Table`.
5053
5564
  *
5054
5565
  * The passed function and listener object must match the ones used for event registration.
5566
+ *
5567
+ * @returns Reference to `this` in order to allow method chaining
5055
5568
  */
5056
5569
  detachSort(
5057
5570
  /**
@@ -5072,6 +5585,8 @@ declare module "sap/ui/table/Table" {
5072
5585
  *
5073
5586
  * **Please note: This method uses synchronous requests. Support and functioning ends with the support
5074
5587
  * for synchronous requests in browsers.**
5588
+ *
5589
+ * @returns Export object
5075
5590
  */
5076
5591
  exportData(
5077
5592
  /**
@@ -5100,6 +5615,8 @@ declare module "sap/ui/table/Table" {
5100
5615
  *
5101
5616
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5102
5617
  * event object. The return value of this method indicates whether the default action should be executed.
5618
+ *
5619
+ * @returns Whether or not to prevent the default action
5103
5620
  */
5104
5621
  fireBeforeOpenContextMenu(
5105
5622
  /**
@@ -5124,6 +5641,8 @@ declare module "sap/ui/table/Table" {
5124
5641
  * @SINCE 1.37.0
5125
5642
  *
5126
5643
  * Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
5644
+ *
5645
+ * @returns Reference to `this` in order to allow method chaining
5127
5646
  */
5128
5647
  fireBusyStateChanged(
5129
5648
  /**
@@ -5138,6 +5657,8 @@ declare module "sap/ui/table/Table" {
5138
5657
  *
5139
5658
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5140
5659
  * event object. The return value of this method indicates whether the default action should be executed.
5660
+ *
5661
+ * @returns Whether or not to prevent the default action
5141
5662
  */
5142
5663
  fireCellClick(
5143
5664
  /**
@@ -5179,6 +5700,8 @@ declare module "sap/ui/table/Table" {
5179
5700
  *
5180
5701
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5181
5702
  * event object. The return value of this method indicates whether the default action should be executed.
5703
+ *
5704
+ * @returns Whether or not to prevent the default action
5182
5705
  */
5183
5706
  fireCellContextmenu(
5184
5707
  /**
@@ -5219,6 +5742,8 @@ declare module "sap/ui/table/Table" {
5219
5742
  *
5220
5743
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5221
5744
  * event object. The return value of this method indicates whether the default action should be executed.
5745
+ *
5746
+ * @returns Whether or not to prevent the default action
5222
5747
  */
5223
5748
  fireColumnFreeze(
5224
5749
  /**
@@ -5236,6 +5761,8 @@ declare module "sap/ui/table/Table" {
5236
5761
  *
5237
5762
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5238
5763
  * event object. The return value of this method indicates whether the default action should be executed.
5764
+ *
5765
+ * @returns Whether or not to prevent the default action
5239
5766
  */
5240
5767
  fireColumnMove(
5241
5768
  /**
@@ -5257,6 +5784,8 @@ declare module "sap/ui/table/Table" {
5257
5784
  *
5258
5785
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5259
5786
  * event object. The return value of this method indicates whether the default action should be executed.
5787
+ *
5788
+ * @returns Whether or not to prevent the default action
5260
5789
  */
5261
5790
  fireColumnResize(
5262
5791
  /**
@@ -5278,6 +5807,8 @@ declare module "sap/ui/table/Table" {
5278
5807
  *
5279
5808
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5280
5809
  * event object. The return value of this method indicates whether the default action should be executed.
5810
+ *
5811
+ * @returns Whether or not to prevent the default action
5281
5812
  */
5282
5813
  fireColumnSelect(
5283
5814
  /**
@@ -5295,6 +5826,8 @@ declare module "sap/ui/table/Table" {
5295
5826
  *
5296
5827
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5297
5828
  * event object. The return value of this method indicates whether the default action should be executed.
5829
+ *
5830
+ * @returns Whether or not to prevent the default action
5298
5831
  */
5299
5832
  fireColumnVisibility(
5300
5833
  /**
@@ -5315,6 +5848,8 @@ declare module "sap/ui/table/Table" {
5315
5848
  * @SINCE 1.23.0
5316
5849
  *
5317
5850
  * Fires event {@link #event:customFilter customFilter} to attached listeners.
5851
+ *
5852
+ * @returns Reference to `this` in order to allow method chaining
5318
5853
  */
5319
5854
  fireCustomFilter(
5320
5855
  /**
@@ -5327,6 +5862,8 @@ declare module "sap/ui/table/Table" {
5327
5862
  *
5328
5863
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5329
5864
  * event object. The return value of this method indicates whether the default action should be executed.
5865
+ *
5866
+ * @returns Whether or not to prevent the default action
5330
5867
  */
5331
5868
  fireFilter(
5332
5869
  /**
@@ -5347,6 +5884,8 @@ declare module "sap/ui/table/Table" {
5347
5884
  * @SINCE 1.37.0
5348
5885
  *
5349
5886
  * Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
5887
+ *
5888
+ * @returns Reference to `this` in order to allow method chaining
5350
5889
  */
5351
5890
  fireFirstVisibleRowChanged(
5352
5891
  /**
@@ -5359,6 +5898,8 @@ declare module "sap/ui/table/Table" {
5359
5898
  *
5360
5899
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5361
5900
  * event object. The return value of this method indicates whether the default action should be executed.
5901
+ *
5902
+ * @returns Whether or not to prevent the default action
5362
5903
  */
5363
5904
  fireGroup(
5364
5905
  /**
@@ -5378,6 +5919,8 @@ declare module "sap/ui/table/Table" {
5378
5919
  *
5379
5920
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5380
5921
  * event object. The return value of this method indicates whether the default action should be executed.
5922
+ *
5923
+ * @returns Whether or not to prevent the default action
5381
5924
  */
5382
5925
  firePaste(
5383
5926
  /**
@@ -5393,6 +5936,8 @@ declare module "sap/ui/table/Table" {
5393
5936
  ): boolean;
5394
5937
  /**
5395
5938
  * Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
5939
+ *
5940
+ * @returns Reference to `this` in order to allow method chaining
5396
5941
  */
5397
5942
  fireRowSelectionChange(
5398
5943
  /**
@@ -5426,6 +5971,8 @@ declare module "sap/ui/table/Table" {
5426
5971
  * @SINCE 1.86
5427
5972
  *
5428
5973
  * Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
5974
+ *
5975
+ * @returns Reference to `this` in order to allow method chaining
5429
5976
  */
5430
5977
  fireRowsUpdated(
5431
5978
  /**
@@ -5438,6 +5985,8 @@ declare module "sap/ui/table/Table" {
5438
5985
  *
5439
5986
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5440
5987
  * event object. The return value of this method indicates whether the default action should be executed.
5988
+ *
5989
+ * @returns Whether or not to prevent the default action
5441
5990
  */
5442
5991
  fireSort(
5443
5992
  /**
@@ -5488,6 +6037,8 @@ declare module "sap/ui/table/Table" {
5488
6037
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
5489
6038
  *
5490
6039
  * Default value is `false`.
6040
+ *
6041
+ * @returns Value of property `alternateRowColors`
5491
6042
  */
5492
6043
  getAlternateRowColors(): boolean;
5493
6044
  /**
@@ -5497,6 +6048,8 @@ declare module "sap/ui/table/Table" {
5497
6048
  getAriaLabelledBy(): ID[];
5498
6049
  /**
5499
6050
  * Get the binding object for a specific aggregation/property.
6051
+ *
6052
+ * @returns The binding for the given name
5500
6053
  */
5501
6054
  getBinding(
5502
6055
  /**
@@ -5514,6 +6067,8 @@ declare module "sap/ui/table/Table" {
5514
6067
  *
5515
6068
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
5516
6069
  * to each individual row of the table's header.
6070
+ *
6071
+ * @returns Value of property `columnHeaderHeight`
5517
6072
  */
5518
6073
  getColumnHeaderHeight(): int;
5519
6074
  /**
@@ -5525,6 +6080,8 @@ declare module "sap/ui/table/Table" {
5525
6080
  * table can't be guaranteed any more.
5526
6081
  *
5527
6082
  * Default value is `true`.
6083
+ *
6084
+ * @returns Value of property `columnHeaderVisible`
5528
6085
  */
5529
6086
  getColumnHeaderVisible(): boolean;
5530
6087
  /**
@@ -5541,6 +6098,8 @@ declare module "sap/ui/table/Table" {
5541
6098
  *
5542
6099
  * For server-based models you should consider to only make this API call when the index is within the currently
5543
6100
  * visible scroll area.
6101
+ *
6102
+ * @returns The context at this index or null
5544
6103
  */
5545
6104
  getContextByIndex(
5546
6105
  /**
@@ -5589,6 +6148,8 @@ declare module "sap/ui/table/Table" {
5589
6148
  * color in certain themes!)
5590
6149
  *
5591
6150
  * Default value is `true`.
6151
+ *
6152
+ * @returns Value of property `editable`
5592
6153
  */
5593
6154
  getEditable(): boolean;
5594
6155
  /**
@@ -5603,6 +6164,8 @@ declare module "sap/ui/table/Table" {
5603
6164
  * {@link sap.ui.core.Control#setBusy}.
5604
6165
  *
5605
6166
  * Default value is `false`.
6167
+ *
6168
+ * @returns Value of property `enableBusyIndicator`
5606
6169
  */
5607
6170
  getEnableBusyIndicator(): boolean;
5608
6171
  /**
@@ -5613,6 +6176,8 @@ declare module "sap/ui/table/Table" {
5613
6176
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
5614
6177
  *
5615
6178
  * Default value is `false`.
6179
+ *
6180
+ * @returns Value of property `enableCellFilter`
5616
6181
  */
5617
6182
  getEnableCellFilter(): boolean;
5618
6183
  /**
@@ -5623,6 +6188,8 @@ declare module "sap/ui/table/Table" {
5623
6188
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
5624
6189
  *
5625
6190
  * Default value is `false`.
6191
+ *
6192
+ * @returns Value of property `enableColumnFreeze`
5626
6193
  */
5627
6194
  getEnableColumnFreeze(): boolean;
5628
6195
  /**
@@ -5631,6 +6198,8 @@ declare module "sap/ui/table/Table" {
5631
6198
  * Flag to enable or disable column reordering
5632
6199
  *
5633
6200
  * Default value is `true`.
6201
+ *
6202
+ * @returns Value of property `enableColumnReordering`
5634
6203
  */
5635
6204
  getEnableColumnReordering(): boolean;
5636
6205
  /**
@@ -5642,6 +6211,8 @@ declare module "sap/ui/table/Table" {
5642
6211
  * button will be rendered for which' press event (customFilter) you can register an event handler.
5643
6212
  *
5644
6213
  * Default value is `false`.
6214
+ *
6215
+ * @returns Value of property `enableCustomFilter`
5645
6216
  */
5646
6217
  getEnableCustomFilter(): boolean;
5647
6218
  /**
@@ -5666,6 +6237,8 @@ declare module "sap/ui/table/Table" {
5666
6237
  * table is grouped by another column or grouping is disabled.
5667
6238
  *
5668
6239
  * Default value is `false`.
6240
+ *
6241
+ * @returns Value of property `enableGrouping`
5669
6242
  */
5670
6243
  getEnableGrouping(): boolean;
5671
6244
  /**
@@ -5677,6 +6250,8 @@ declare module "sap/ui/table/Table" {
5677
6250
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
5678
6251
  *
5679
6252
  * Default value is `true`.
6253
+ *
6254
+ * @returns Value of property `enableSelectAll`
5680
6255
  */
5681
6256
  getEnableSelectAll(): boolean;
5682
6257
  /**
@@ -5692,6 +6267,8 @@ declare module "sap/ui/table/Table" {
5692
6267
  * First visible row.
5693
6268
  *
5694
6269
  * Default value is `0`.
6270
+ *
6271
+ * @returns Value of property `firstVisibleRow`
5695
6272
  */
5696
6273
  getFirstVisibleRow(): int;
5697
6274
  /**
@@ -5706,6 +6283,8 @@ declare module "sap/ui/table/Table" {
5706
6283
  * client model}.
5707
6284
  *
5708
6285
  * Default value is `0`.
6286
+ *
6287
+ * @returns Value of property `fixedBottomRowCount`
5709
6288
  */
5710
6289
  getFixedBottomRowCount(): int;
5711
6290
  /**
@@ -5720,6 +6299,8 @@ declare module "sap/ui/table/Table" {
5720
6299
  * able to scroll horizontally.
5721
6300
  *
5722
6301
  * Default value is `0`.
6302
+ *
6303
+ * @returns Value of property `fixedColumnCount`
5723
6304
  */
5724
6305
  getFixedColumnCount(): int;
5725
6306
  /**
@@ -5732,6 +6313,8 @@ declare module "sap/ui/table/Table" {
5732
6313
  * client model}.
5733
6314
  *
5734
6315
  * Default value is `0`.
6316
+ *
6317
+ * @returns Value of property `fixedRowCount`
5735
6318
  */
5736
6319
  getFixedRowCount(): int;
5737
6320
  /**
@@ -5753,6 +6336,8 @@ declare module "sap/ui/table/Table" {
5753
6336
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
5754
6337
  *
5755
6338
  * Default value is `5`.
6339
+ *
6340
+ * @returns Value of property `minAutoRowCount`
5756
6341
  */
5757
6342
  getMinAutoRowCount(): int;
5758
6343
  /**
@@ -5764,6 +6349,8 @@ declare module "sap/ui/table/Table" {
5764
6349
  * option.
5765
6350
  *
5766
6351
  * Default value is `Scrollbar`.
6352
+ *
6353
+ * @returns Value of property `navigationMode`
5767
6354
  */
5768
6355
  getNavigationMode(): NavigationMode | keyof typeof NavigationMode;
5769
6356
  /**
@@ -5796,6 +6383,8 @@ declare module "sap/ui/table/Table" {
5796
6383
  * `1` and `2` are possible.
5797
6384
  *
5798
6385
  * Default value is `0`.
6386
+ *
6387
+ * @returns Value of property `rowActionCount`
5799
6388
  */
5800
6389
  getRowActionCount(): int;
5801
6390
  /**
@@ -5822,6 +6411,8 @@ declare module "sap/ui/table/Table" {
5822
6411
  *
5823
6412
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
5824
6413
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6414
+ *
6415
+ * @returns Value of property `rowHeight`
5825
6416
  */
5826
6417
  getRowHeight(): int;
5827
6418
  /**
@@ -5855,10 +6446,14 @@ declare module "sap/ui/table/Table" {
5855
6446
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices}
5856
6447
  *
5857
6448
  * Retrieves the lead selection index.
6449
+ *
6450
+ * @returns Currently Selected Index.
5858
6451
  */
5859
6452
  getSelectedIndex(): int;
5860
6453
  /**
5861
6454
  * Zero-based indices of selected items, wrapped in an array. An empty array means "no selection".
6455
+ *
6456
+ * @returns Selected indices
5862
6457
  */
5863
6458
  getSelectedIndices(): int[];
5864
6459
  /**
@@ -5870,6 +6465,8 @@ declare module "sap/ui/table/Table" {
5870
6465
  * on table type) is enabled, even if `sap.ui.table.SelectionBehavior.RowOnly` is set.
5871
6466
  *
5872
6467
  * Default value is `RowSelector`.
6468
+ *
6469
+ * @returns Value of property `selectionBehavior`
5873
6470
  */
5874
6471
  getSelectionBehavior(): SelectionBehavior | keyof typeof SelectionBehavior;
5875
6472
  /**
@@ -5883,6 +6480,8 @@ declare module "sap/ui/table/Table" {
5883
6480
  * applied to the table, the selection mode is controlled by the plugin.
5884
6481
  *
5885
6482
  * Default value is `MultiToggle`.
6483
+ *
6484
+ * @returns Value of property `selectionMode`
5886
6485
  */
5887
6486
  getSelectionMode(): SelectionMode | keyof typeof SelectionMode;
5888
6487
  /**
@@ -5892,6 +6491,8 @@ declare module "sap/ui/table/Table" {
5892
6491
  * header menu. It allows to show or hide columns
5893
6492
  *
5894
6493
  * Default value is `false`.
6494
+ *
6495
+ * @returns Value of property `showColumnVisibilityMenu`
5895
6496
  */
5896
6497
  getShowColumnVisibilityMenu(): boolean;
5897
6498
  /**
@@ -5901,6 +6502,8 @@ declare module "sap/ui/table/Table" {
5901
6502
  * just show a grid of empty cells
5902
6503
  *
5903
6504
  * Default value is `true`.
6505
+ *
6506
+ * @returns Value of property `showNoData`
5904
6507
  */
5905
6508
  getShowNoData(): boolean;
5906
6509
  /**
@@ -5912,6 +6515,8 @@ declare module "sap/ui/table/Table" {
5912
6515
  * anymore on the Table content.
5913
6516
  *
5914
6517
  * Default value is `false`.
6518
+ *
6519
+ * @returns Value of property `showOverlay`
5915
6520
  */
5916
6521
  getShowOverlay(): boolean;
5917
6522
  /**
@@ -5920,6 +6525,8 @@ declare module "sap/ui/table/Table" {
5920
6525
  * {@link sap.ui.table.Column#setSorted} and {@link sap.ui.table.Column#setSortOrder}.
5921
6526
  * See:
5922
6527
  * sap.ui.table.Table#sort
6528
+ *
6529
+ * @returns Array of sorted columns
5923
6530
  */
5924
6531
  getSortedColumns(): Column[];
5925
6532
  /**
@@ -5932,6 +6539,8 @@ declare module "sap/ui/table/Table" {
5932
6539
  * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
5933
6540
  *
5934
6541
  * Default value is `100`.
6542
+ *
6543
+ * @returns Value of property `threshold`
5935
6544
  */
5936
6545
  getThreshold(): int;
5937
6546
  /**
@@ -5957,6 +6566,8 @@ declare module "sap/ui/table/Table" {
5957
6566
  * Number of visible rows of the table.
5958
6567
  *
5959
6568
  * Default value is `10`.
6569
+ *
6570
+ * @returns Value of property `visibleRowCount`
5960
6571
  */
5961
6572
  getVisibleRowCount(): int;
5962
6573
  /**
@@ -5981,6 +6592,8 @@ declare module "sap/ui/table/Table" {
5981
6592
  * after rendering. The user can change the `visibleRowCount` by dragging a resizer.
5982
6593
  *
5983
6594
  * Default value is `Fixed`.
6595
+ *
6596
+ * @returns Value of property `visibleRowCountMode`
5984
6597
  */
5985
6598
  getVisibleRowCountMode():
5986
6599
  | VisibleRowCountMode
@@ -5991,11 +6604,15 @@ declare module "sap/ui/table/Table" {
5991
6604
  * Width of the Table.
5992
6605
  *
5993
6606
  * Default value is `'auto'`.
6607
+ *
6608
+ * @returns Value of property `width`
5994
6609
  */
5995
6610
  getWidth(): CSSSize;
5996
6611
  /**
5997
6612
  * Checks for the provided `sap.ui.table.Column` in the aggregation {@link #getColumns columns}. and returns
5998
6613
  * its index if found or -1 otherwise.
6614
+ *
6615
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5999
6616
  */
6000
6617
  indexOfColumn(
6001
6618
  /**
@@ -6006,6 +6623,8 @@ declare module "sap/ui/table/Table" {
6006
6623
  /**
6007
6624
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getExtension extension}. and
6008
6625
  * returns its index if found or -1 otherwise.
6626
+ *
6627
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6009
6628
  */
6010
6629
  indexOfExtension(
6011
6630
  /**
@@ -6018,6 +6637,8 @@ declare module "sap/ui/table/Table" {
6018
6637
  *
6019
6638
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins
6020
6639
  * plugins}. and returns its index if found or -1 otherwise.
6640
+ *
6641
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6021
6642
  */
6022
6643
  indexOfPlugin(
6023
6644
  /**
@@ -6028,6 +6649,8 @@ declare module "sap/ui/table/Table" {
6028
6649
  /**
6029
6650
  * Checks for the provided `sap.ui.table.Row` in the aggregation {@link #getRows rows}. and returns its
6030
6651
  * index if found or -1 otherwise.
6652
+ *
6653
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6031
6654
  */
6032
6655
  indexOfRow(
6033
6656
  /**
@@ -6037,6 +6660,8 @@ declare module "sap/ui/table/Table" {
6037
6660
  ): int;
6038
6661
  /**
6039
6662
  * Inserts a column into the aggregation {@link #getColumns columns}.
6663
+ *
6664
+ * @returns Reference to `this` in order to allow method chaining
6040
6665
  */
6041
6666
  insertColumn(
6042
6667
  /**
@@ -6052,6 +6677,8 @@ declare module "sap/ui/table/Table" {
6052
6677
  ): this;
6053
6678
  /**
6054
6679
  * Inserts a extension into the aggregation {@link #getExtension extension}.
6680
+ *
6681
+ * @returns Reference to `this` in order to allow method chaining
6055
6682
  */
6056
6683
  insertExtension(
6057
6684
  /**
@@ -6069,6 +6696,8 @@ declare module "sap/ui/table/Table" {
6069
6696
  * @SINCE 1.64
6070
6697
  *
6071
6698
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
6699
+ *
6700
+ * @returns Reference to `this` in order to allow method chaining
6072
6701
  */
6073
6702
  insertPlugin(
6074
6703
  /**
@@ -6084,6 +6713,8 @@ declare module "sap/ui/table/Table" {
6084
6713
  ): this;
6085
6714
  /**
6086
6715
  * Inserts a row into the aggregation {@link #getRows rows}.
6716
+ *
6717
+ * @returns Reference to `this` in order to allow method chaining
6087
6718
  */
6088
6719
  insertRow(
6089
6720
  /**
@@ -6099,6 +6730,8 @@ declare module "sap/ui/table/Table" {
6099
6730
  ): this;
6100
6731
  /**
6101
6732
  * Checks whether an index is selected.
6733
+ *
6734
+ * @returns Whether the index is selected
6102
6735
  */
6103
6736
  isIndexSelected(
6104
6737
  /**
@@ -6108,18 +6741,24 @@ declare module "sap/ui/table/Table" {
6108
6741
  ): boolean;
6109
6742
  /**
6110
6743
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
6744
+ *
6745
+ * @returns An array of the removed elements (might be empty)
6111
6746
  */
6112
6747
  removeAllAriaLabelledBy(): ID[];
6113
6748
  /**
6114
6749
  * Removes all the controls from the aggregation {@link #getColumns columns}.
6115
6750
  *
6116
6751
  * Additionally, it unregisters them from the hosting UIArea.
6752
+ *
6753
+ * @returns An array of the removed elements (might be empty)
6117
6754
  */
6118
6755
  removeAllColumns(): Column[];
6119
6756
  /**
6120
6757
  * Removes all the controls from the aggregation {@link #getExtension extension}.
6121
6758
  *
6122
6759
  * Additionally, it unregisters them from the hosting UIArea.
6760
+ *
6761
+ * @returns An array of the removed elements (might be empty)
6123
6762
  */
6124
6763
  removeAllExtension(): Control[];
6125
6764
  /**
@@ -6128,16 +6767,22 @@ declare module "sap/ui/table/Table" {
6128
6767
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
6129
6768
  *
6130
6769
  * Additionally, it unregisters them from the hosting UIArea.
6770
+ *
6771
+ * @returns An array of the removed elements (might be empty)
6131
6772
  */
6132
6773
  removeAllPlugins(): SelectionPlugin[];
6133
6774
  /**
6134
6775
  * Removes all the controls from the aggregation {@link #getRows rows}.
6135
6776
  *
6136
6777
  * Additionally, it unregisters them from the hosting UIArea.
6778
+ *
6779
+ * @returns An array of the removed elements (might be empty)
6137
6780
  */
6138
6781
  removeAllRows(): Row[];
6139
6782
  /**
6140
6783
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
6784
+ *
6785
+ * @returns The removed ariaLabelledBy or `null`
6141
6786
  */
6142
6787
  removeAriaLabelledBy(
6143
6788
  /**
@@ -6147,6 +6792,8 @@ declare module "sap/ui/table/Table" {
6147
6792
  ): ID;
6148
6793
  /**
6149
6794
  * Removes a column from the aggregation {@link #getColumns columns}.
6795
+ *
6796
+ * @returns The removed column or `null`
6150
6797
  */
6151
6798
  removeColumn(
6152
6799
  /**
@@ -6156,6 +6803,8 @@ declare module "sap/ui/table/Table" {
6156
6803
  ): Column;
6157
6804
  /**
6158
6805
  * Removes a extension from the aggregation {@link #getExtension extension}.
6806
+ *
6807
+ * @returns The removed extension or `null`
6159
6808
  */
6160
6809
  removeExtension(
6161
6810
  /**
@@ -6167,6 +6816,8 @@ declare module "sap/ui/table/Table" {
6167
6816
  * @SINCE 1.64
6168
6817
  *
6169
6818
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
6819
+ *
6820
+ * @returns The removed plugin or `null`
6170
6821
  */
6171
6822
  removePlugin(
6172
6823
  /**
@@ -6176,6 +6827,8 @@ declare module "sap/ui/table/Table" {
6176
6827
  ): SelectionPlugin;
6177
6828
  /**
6178
6829
  * Removes a row from the aggregation {@link #getRows rows}.
6830
+ *
6831
+ * @returns The removed row or `null`
6179
6832
  */
6180
6833
  removeRow(
6181
6834
  /**
@@ -6186,6 +6839,8 @@ declare module "sap/ui/table/Table" {
6186
6839
  /**
6187
6840
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
6188
6841
  * is removed from the selection.
6842
+ *
6843
+ * @returns Reference to `this` in order to allow method chaining
6189
6844
  */
6190
6845
  removeSelectionInterval(
6191
6846
  /**
@@ -6201,6 +6856,8 @@ declare module "sap/ui/table/Table" {
6201
6856
  * Adds all rows to the selection. Please note that for server based models like OData the indices which
6202
6857
  * are considered to be selected might not be available at the client yet. Calling getContextByIndex might
6203
6858
  * not return a result but trigger a roundtrip to request this single entity.
6859
+ *
6860
+ * @returns Reference to `this` in order to allow method chaining
6204
6861
  */
6205
6862
  selectAll(): this;
6206
6863
  /**
@@ -6213,6 +6870,8 @@ declare module "sap/ui/table/Table" {
6213
6870
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6214
6871
  *
6215
6872
  * Default value is `false`.
6873
+ *
6874
+ * @returns Reference to `this` in order to allow method chaining
6216
6875
  */
6217
6876
  setAlternateRowColors(
6218
6877
  /**
@@ -6232,6 +6891,8 @@ declare module "sap/ui/table/Table" {
6232
6891
  * to each individual row of the table's header.
6233
6892
  *
6234
6893
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6894
+ *
6895
+ * @returns Reference to `this` in order to allow method chaining
6235
6896
  */
6236
6897
  setColumnHeaderHeight(
6237
6898
  /**
@@ -6250,6 +6911,8 @@ declare module "sap/ui/table/Table" {
6250
6911
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6251
6912
  *
6252
6913
  * Default value is `true`.
6914
+ *
6915
+ * @returns Reference to `this` in order to allow method chaining
6253
6916
  */
6254
6917
  setColumnHeaderVisible(
6255
6918
  /**
@@ -6261,6 +6924,8 @@ declare module "sap/ui/table/Table" {
6261
6924
  * @SINCE 1.54
6262
6925
  *
6263
6926
  * Sets the aggregated {@link #getContextMenu contextMenu}.
6927
+ *
6928
+ * @returns Reference to `this` in order to allow method chaining
6264
6929
  */
6265
6930
  setContextMenu(
6266
6931
  /**
@@ -6277,6 +6942,8 @@ declare module "sap/ui/table/Table" {
6277
6942
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6278
6943
  *
6279
6944
  * Default value is `true`.
6945
+ *
6946
+ * @returns Reference to `this` in order to allow method chaining
6280
6947
  */
6281
6948
  setEditable(
6282
6949
  /**
@@ -6298,6 +6965,8 @@ declare module "sap/ui/table/Table" {
6298
6965
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6299
6966
  *
6300
6967
  * Default value is `false`.
6968
+ *
6969
+ * @returns Reference to `this` in order to allow method chaining
6301
6970
  */
6302
6971
  setEnableBusyIndicator(
6303
6972
  /**
@@ -6315,6 +6984,8 @@ declare module "sap/ui/table/Table" {
6315
6984
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6316
6985
  *
6317
6986
  * Default value is `false`.
6987
+ *
6988
+ * @returns Reference to `this` in order to allow method chaining
6318
6989
  */
6319
6990
  setEnableCellFilter(
6320
6991
  /**
@@ -6332,6 +7003,8 @@ declare module "sap/ui/table/Table" {
6332
7003
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6333
7004
  *
6334
7005
  * Default value is `false`.
7006
+ *
7007
+ * @returns Reference to `this` in order to allow method chaining
6335
7008
  */
6336
7009
  setEnableColumnFreeze(
6337
7010
  /**
@@ -6347,6 +7020,8 @@ declare module "sap/ui/table/Table" {
6347
7020
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6348
7021
  *
6349
7022
  * Default value is `true`.
7023
+ *
7024
+ * @returns Reference to `this` in order to allow method chaining
6350
7025
  */
6351
7026
  setEnableColumnReordering(
6352
7027
  /**
@@ -6365,6 +7040,8 @@ declare module "sap/ui/table/Table" {
6365
7040
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6366
7041
  *
6367
7042
  * Default value is `false`.
7043
+ *
7044
+ * @returns Reference to `this` in order to allow method chaining
6368
7045
  */
6369
7046
  setEnableCustomFilter(
6370
7047
  /**
@@ -6396,6 +7073,8 @@ declare module "sap/ui/table/Table" {
6396
7073
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6397
7074
  *
6398
7075
  * Default value is `false`.
7076
+ *
7077
+ * @returns Reference to `this` in order to allow method chaining
6399
7078
  */
6400
7079
  setEnableGrouping(
6401
7080
  /**
@@ -6414,6 +7093,8 @@ declare module "sap/ui/table/Table" {
6414
7093
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6415
7094
  *
6416
7095
  * Default value is `true`.
7096
+ *
7097
+ * @returns Reference to `this` in order to allow method chaining
6417
7098
  */
6418
7099
  setEnableSelectAll(
6419
7100
  /**
@@ -6429,6 +7110,8 @@ declare module "sap/ui/table/Table" {
6429
7110
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6430
7111
  *
6431
7112
  * Default value is `0`.
7113
+ *
7114
+ * @returns Reference to `this` in order to allow method chaining
6432
7115
  */
6433
7116
  setFirstVisibleRow(
6434
7117
  /**
@@ -6450,6 +7133,8 @@ declare module "sap/ui/table/Table" {
6450
7133
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6451
7134
  *
6452
7135
  * Default value is `0`.
7136
+ *
7137
+ * @returns Reference to `this` in order to allow method chaining
6453
7138
  */
6454
7139
  setFixedBottomRowCount(
6455
7140
  /**
@@ -6471,6 +7156,8 @@ declare module "sap/ui/table/Table" {
6471
7156
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6472
7157
  *
6473
7158
  * Default value is `0`.
7159
+ *
7160
+ * @returns Reference to `this` in order to allow method chaining
6474
7161
  */
6475
7162
  setFixedColumnCount(
6476
7163
  /**
@@ -6490,6 +7177,8 @@ declare module "sap/ui/table/Table" {
6490
7177
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6491
7178
  *
6492
7179
  * Default value is `0`.
7180
+ *
7181
+ * @returns Reference to `this` in order to allow method chaining
6493
7182
  */
6494
7183
  setFixedRowCount(
6495
7184
  /**
@@ -6499,6 +7188,8 @@ declare module "sap/ui/table/Table" {
6499
7188
  ): this;
6500
7189
  /**
6501
7190
  * Sets the aggregated {@link #getFooter footer}.
7191
+ *
7192
+ * @returns Reference to `this` in order to allow method chaining
6502
7193
  */
6503
7194
  setFooter(
6504
7195
  /**
@@ -6510,6 +7201,8 @@ declare module "sap/ui/table/Table" {
6510
7201
  * @EXPERIMENTAL (since 1.28)
6511
7202
  *
6512
7203
  * Sets the associated {@link #getGroupBy groupBy}.
7204
+ *
7205
+ * @returns Reference to `this` in order to allow method chaining
6513
7206
  */
6514
7207
  setGroupBy(
6515
7208
  /**
@@ -6527,6 +7220,8 @@ declare module "sap/ui/table/Table" {
6527
7220
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6528
7221
  *
6529
7222
  * Default value is `5`.
7223
+ *
7224
+ * @returns Reference to `this` in order to allow method chaining
6530
7225
  */
6531
7226
  setMinAutoRowCount(
6532
7227
  /**
@@ -6545,6 +7240,8 @@ declare module "sap/ui/table/Table" {
6545
7240
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6546
7241
  *
6547
7242
  * Default value is `Scrollbar`.
7243
+ *
7244
+ * @returns Reference to `this` in order to allow method chaining
6548
7245
  */
6549
7246
  setNavigationMode(
6550
7247
  /**
@@ -6554,6 +7251,8 @@ declare module "sap/ui/table/Table" {
6554
7251
  ): this;
6555
7252
  /**
6556
7253
  * Sets the aggregated {@link #getNoData noData}.
7254
+ *
7255
+ * @returns Reference to `this` in order to allow method chaining
6557
7256
  */
6558
7257
  setNoData(
6559
7258
  /**
@@ -6572,6 +7271,8 @@ declare module "sap/ui/table/Table" {
6572
7271
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6573
7272
  *
6574
7273
  * Default value is `0`.
7274
+ *
7275
+ * @returns Reference to `this` in order to allow method chaining
6575
7276
  */
6576
7277
  setRowActionCount(
6577
7278
  /**
@@ -6581,6 +7282,8 @@ declare module "sap/ui/table/Table" {
6581
7282
  ): this;
6582
7283
  /**
6583
7284
  * Sets the aggregated {@link #getRowActionTemplate rowActionTemplate}.
7285
+ *
7286
+ * @returns Reference to `this` in order to allow method chaining
6584
7287
  */
6585
7288
  setRowActionTemplate(
6586
7289
  /**
@@ -6606,6 +7309,8 @@ declare module "sap/ui/table/Table" {
6606
7309
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6607
7310
  *
6608
7311
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7312
+ *
7313
+ * @returns Reference to `this` in order to allow method chaining
6609
7314
  */
6610
7315
  setRowHeight(
6611
7316
  /**
@@ -6615,6 +7320,8 @@ declare module "sap/ui/table/Table" {
6615
7320
  ): this;
6616
7321
  /**
6617
7322
  * Sets the aggregated {@link #getRowSettingsTemplate rowSettingsTemplate}.
7323
+ *
7324
+ * @returns Reference to `this` in order to allow method chaining
6618
7325
  */
6619
7326
  setRowSettingsTemplate(
6620
7327
  /**
@@ -6624,6 +7331,8 @@ declare module "sap/ui/table/Table" {
6624
7331
  ): this;
6625
7332
  /**
6626
7333
  * Sets the selected index. The previous selection is removed.
7334
+ *
7335
+ * @returns Reference to `this` in order to allow method chaining
6627
7336
  */
6628
7337
  setSelectedIndex(
6629
7338
  /**
@@ -6642,6 +7351,8 @@ declare module "sap/ui/table/Table" {
6642
7351
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6643
7352
  *
6644
7353
  * Default value is `RowSelector`.
7354
+ *
7355
+ * @returns Reference to `this` in order to allow method chaining
6645
7356
  */
6646
7357
  setSelectionBehavior(
6647
7358
  /**
@@ -6651,6 +7362,8 @@ declare module "sap/ui/table/Table" {
6651
7362
  ): this;
6652
7363
  /**
6653
7364
  * Sets the given selection interval as selection. In case of a single selection, only `iIndexTo` is selected.
7365
+ *
7366
+ * @returns Reference to `this` in order to allow method chaining
6654
7367
  */
6655
7368
  setSelectionInterval(
6656
7369
  /**
@@ -6664,6 +7377,8 @@ declare module "sap/ui/table/Table" {
6664
7377
  ): this;
6665
7378
  /**
6666
7379
  * Sets the selection mode. The current selection is lost.
7380
+ *
7381
+ * @returns Reference to `this` in order to allow method chaining
6667
7382
  */
6668
7383
  setSelectionMode(
6669
7384
  /**
@@ -6680,6 +7395,8 @@ declare module "sap/ui/table/Table" {
6680
7395
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6681
7396
  *
6682
7397
  * Default value is `false`.
7398
+ *
7399
+ * @returns Reference to `this` in order to allow method chaining
6683
7400
  */
6684
7401
  setShowColumnVisibilityMenu(
6685
7402
  /**
@@ -6696,6 +7413,8 @@ declare module "sap/ui/table/Table" {
6696
7413
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6697
7414
  *
6698
7415
  * Default value is `true`.
7416
+ *
7417
+ * @returns Reference to `this` in order to allow method chaining
6699
7418
  */
6700
7419
  setShowNoData(
6701
7420
  /**
@@ -6714,6 +7433,8 @@ declare module "sap/ui/table/Table" {
6714
7433
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6715
7434
  *
6716
7435
  * Default value is `false`.
7436
+ *
7437
+ * @returns Reference to `this` in order to allow method chaining
6717
7438
  */
6718
7439
  setShowOverlay(
6719
7440
  /**
@@ -6724,6 +7445,8 @@ declare module "sap/ui/table/Table" {
6724
7445
  /**
6725
7446
  * Sets the threshold value, which will be added to all data requests in case the Table is bound against
6726
7447
  * an OData service.
7448
+ *
7449
+ * @returns Reference to `this` in order to allow method chaining
6727
7450
  */
6728
7451
  setThreshold(
6729
7452
  /**
@@ -6735,6 +7458,8 @@ declare module "sap/ui/table/Table" {
6735
7458
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
6736
7459
  *
6737
7460
  * Sets the aggregated {@link #getTitle title}.
7461
+ *
7462
+ * @returns Reference to `this` in order to allow method chaining
6738
7463
  */
6739
7464
  setTitle(
6740
7465
  /**
@@ -6746,6 +7471,8 @@ declare module "sap/ui/table/Table" {
6746
7471
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
6747
7472
  *
6748
7473
  * Sets the aggregated {@link #getToolbar toolbar}.
7474
+ *
7475
+ * @returns Reference to `this` in order to allow method chaining
6749
7476
  */
6750
7477
  setToolbar(
6751
7478
  /**
@@ -6761,6 +7488,8 @@ declare module "sap/ui/table/Table" {
6761
7488
  *
6762
7489
  * Please note that tooltips are not rendered for the table. The tooltip property will be set but it won't
6763
7490
  * effect the DOM.
7491
+ *
7492
+ * @returns Reference to `this` in order to allow method chaining
6764
7493
  */
6765
7494
  setTooltip(
6766
7495
  /**
@@ -6776,6 +7505,8 @@ declare module "sap/ui/table/Table" {
6776
7505
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6777
7506
  *
6778
7507
  * Default value is `10`.
7508
+ *
7509
+ * @returns Reference to `this` in order to allow method chaining
6779
7510
  */
6780
7511
  setVisibleRowCount(
6781
7512
  /**
@@ -6807,6 +7538,8 @@ declare module "sap/ui/table/Table" {
6807
7538
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6808
7539
  *
6809
7540
  * Default value is `Fixed`.
7541
+ *
7542
+ * @returns Reference to `this` in order to allow method chaining
6810
7543
  */
6811
7544
  setVisibleRowCountMode(
6812
7545
  /**
@@ -6824,6 +7557,8 @@ declare module "sap/ui/table/Table" {
6824
7557
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6825
7558
  *
6826
7559
  * Default value is `'auto'`.
7560
+ *
7561
+ * @returns Reference to `this` in order to allow method chaining
6827
7562
  */
6828
7563
  setWidth(
6829
7564
  /**
@@ -6850,10 +7585,14 @@ declare module "sap/ui/table/Table" {
6850
7585
  ): void;
6851
7586
  /**
6852
7587
  * Unbinds aggregation {@link #getColumns columns} from model data.
7588
+ *
7589
+ * @returns Reference to `this` in order to allow method chaining
6853
7590
  */
6854
7591
  unbindColumns(): this;
6855
7592
  /**
6856
7593
  * Unbinds aggregation {@link #getRows rows} from model data.
7594
+ *
7595
+ * @returns Reference to `this` in order to allow method chaining
6857
7596
  */
6858
7597
  unbindRows(): this;
6859
7598
  }
@@ -6862,7 +7601,7 @@ declare module "sap/ui/table/Table" {
6862
7601
  /**
6863
7602
  * Width of the Table.
6864
7603
  */
6865
- width?: CSSSize | PropertyBindingInfo;
7604
+ width?: CSSSize | PropertyBindingInfo | `{${string}}`;
6866
7605
 
6867
7606
  /**
6868
7607
  * Row height in pixel.
@@ -6879,7 +7618,7 @@ declare module "sap/ui/table/Table" {
6879
7618
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
6880
7619
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6881
7620
  */
6882
- rowHeight?: int | PropertyBindingInfo;
7621
+ rowHeight?: int | PropertyBindingInfo | `{${string}}`;
6883
7622
 
6884
7623
  /**
6885
7624
  * Header row height in pixel. If a value greater than 0 is set, it overrides the height defined in the
@@ -6890,7 +7629,7 @@ declare module "sap/ui/table/Table" {
6890
7629
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
6891
7630
  * to each individual row of the table's header.
6892
7631
  */
6893
- columnHeaderHeight?: int | PropertyBindingInfo;
7632
+ columnHeaderHeight?: int | PropertyBindingInfo | `{${string}}`;
6894
7633
 
6895
7634
  /**
6896
7635
  * Flag whether the column header is visible or not.
@@ -6898,17 +7637,17 @@ declare module "sap/ui/table/Table" {
6898
7637
  * **Caution:** Please be aware that when setting this property to `false`, a 100% accessibility of the
6899
7638
  * table can't be guaranteed any more.
6900
7639
  */
6901
- columnHeaderVisible?: boolean | PropertyBindingInfo;
7640
+ columnHeaderVisible?: boolean | PropertyBindingInfo | `{${string}}`;
6902
7641
 
6903
7642
  /**
6904
7643
  * Number of visible rows of the table.
6905
7644
  */
6906
- visibleRowCount?: int | PropertyBindingInfo;
7645
+ visibleRowCount?: int | PropertyBindingInfo | `{${string}}`;
6907
7646
 
6908
7647
  /**
6909
7648
  * First visible row.
6910
7649
  */
6911
- firstVisibleRow?: int | PropertyBindingInfo;
7650
+ firstVisibleRow?: int | PropertyBindingInfo | `{${string}}`;
6912
7651
 
6913
7652
  /**
6914
7653
  * Selection mode of the Table. This property controls whether single or multiple rows can be selected and
@@ -6920,7 +7659,8 @@ declare module "sap/ui/table/Table" {
6920
7659
  */
6921
7660
  selectionMode?:
6922
7661
  | (SelectionMode | keyof typeof SelectionMode)
6923
- | PropertyBindingInfo;
7662
+ | PropertyBindingInfo
7663
+ | `{${string}}`;
6924
7664
 
6925
7665
  /**
6926
7666
  * Selection behavior of the Table. This property defines whether the row selector is displayed and whether
@@ -6930,7 +7670,8 @@ declare module "sap/ui/table/Table" {
6930
7670
  */
6931
7671
  selectionBehavior?:
6932
7672
  | (SelectionBehavior | keyof typeof SelectionBehavior)
6933
- | PropertyBindingInfo;
7673
+ | PropertyBindingInfo
7674
+ | `{${string}}`;
6934
7675
 
6935
7676
  /**
6936
7677
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices} and {@link sap.ui.table.Table#setSelectedIndex}
@@ -6941,13 +7682,13 @@ declare module "sap/ui/table/Table" {
6941
7682
  * invalid, the call is ignored. **Note:** If the rows of the table are bound, the value of the property
6942
7683
  * is reset to -1. If a selection plugin is applied to the table, the property is not bindable.
6943
7684
  */
6944
- selectedIndex?: int | PropertyBindingInfo;
7685
+ selectedIndex?: int | PropertyBindingInfo | `{${string}}`;
6945
7686
 
6946
7687
  /**
6947
7688
  * Flag whether the controls of the Table are editable or not (currently this only controls the background
6948
7689
  * color in certain themes!)
6949
7690
  */
6950
- editable?: boolean | PropertyBindingInfo;
7691
+ editable?: boolean | PropertyBindingInfo | `{${string}}`;
6951
7692
 
6952
7693
  /**
6953
7694
  * @deprecated (since 1.38)
@@ -6957,7 +7698,8 @@ declare module "sap/ui/table/Table" {
6957
7698
  */
6958
7699
  navigationMode?:
6959
7700
  | (NavigationMode | keyof typeof NavigationMode)
6960
- | PropertyBindingInfo;
7701
+ | PropertyBindingInfo
7702
+ | `{${string}}`;
6961
7703
 
6962
7704
  /**
6963
7705
  * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
@@ -6966,12 +7708,12 @@ declare module "sap/ui/table/Table" {
6966
7708
  * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
6967
7709
  * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
6968
7710
  */
6969
- threshold?: int | PropertyBindingInfo;
7711
+ threshold?: int | PropertyBindingInfo | `{${string}}`;
6970
7712
 
6971
7713
  /**
6972
7714
  * Flag to enable or disable column reordering
6973
7715
  */
6974
- enableColumnReordering?: boolean | PropertyBindingInfo;
7716
+ enableColumnReordering?: boolean | PropertyBindingInfo | `{${string}}`;
6975
7717
 
6976
7718
  /**
6977
7719
  * @EXPERIMENTAL (since 1.28)
@@ -6992,19 +7734,19 @@ declare module "sap/ui/table/Table" {
6992
7734
  * - The column, by which the table is grouped, is not visible. It will become visible again only if the
6993
7735
  * table is grouped by another column or grouping is disabled.
6994
7736
  */
6995
- enableGrouping?: boolean | PropertyBindingInfo;
7737
+ enableGrouping?: boolean | PropertyBindingInfo | `{${string}}`;
6996
7738
 
6997
7739
  /**
6998
7740
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
6999
7741
  * header menu. It allows to show or hide columns
7000
7742
  */
7001
- showColumnVisibilityMenu?: boolean | PropertyBindingInfo;
7743
+ showColumnVisibilityMenu?: boolean | PropertyBindingInfo | `{${string}}`;
7002
7744
 
7003
7745
  /**
7004
7746
  * Flag whether to show the no data overlay or not once the table is empty. If set to false the table will
7005
7747
  * just show a grid of empty cells
7006
7748
  */
7007
- showNoData?: boolean | PropertyBindingInfo;
7749
+ showNoData?: boolean | PropertyBindingInfo | `{${string}}`;
7008
7750
 
7009
7751
  /**
7010
7752
  * @SINCE 1.9.2
@@ -7027,13 +7769,14 @@ declare module "sap/ui/table/Table" {
7027
7769
  */
7028
7770
  visibleRowCountMode?:
7029
7771
  | (VisibleRowCountMode | keyof typeof VisibleRowCountMode)
7030
- | PropertyBindingInfo;
7772
+ | PropertyBindingInfo
7773
+ | `{${string}}`;
7031
7774
 
7032
7775
  /**
7033
7776
  * This property is used to set the minimum count of visible rows when the property visibleRowCountMode
7034
7777
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
7035
7778
  */
7036
- minAutoRowCount?: int | PropertyBindingInfo;
7779
+ minAutoRowCount?: int | PropertyBindingInfo | `{${string}}`;
7037
7780
 
7038
7781
  /**
7039
7782
  * Number of columns that are fixed on the left. Only columns which are not fixed can be scrolled horizontally.
@@ -7044,7 +7787,7 @@ declare module "sap/ui/table/Table" {
7044
7787
  * the value of the property and adapts the behavior in an appropriate way to ensure that the user is still
7045
7788
  * able to scroll horizontally.
7046
7789
  */
7047
- fixedColumnCount?: int | PropertyBindingInfo;
7790
+ fixedColumnCount?: int | PropertyBindingInfo | `{${string}}`;
7048
7791
 
7049
7792
  /**
7050
7793
  * Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
@@ -7053,7 +7796,7 @@ declare module "sap/ui/table/Table" {
7053
7796
  * This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel
7054
7797
  * client model}.
7055
7798
  */
7056
- fixedRowCount?: int | PropertyBindingInfo;
7799
+ fixedRowCount?: int | PropertyBindingInfo | `{${string}}`;
7057
7800
 
7058
7801
  /**
7059
7802
  * @SINCE 1.18.7
@@ -7064,21 +7807,21 @@ declare module "sap/ui/table/Table" {
7064
7807
  * This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel
7065
7808
  * client model}.
7066
7809
  */
7067
- fixedBottomRowCount?: int | PropertyBindingInfo;
7810
+ fixedBottomRowCount?: int | PropertyBindingInfo | `{${string}}`;
7068
7811
 
7069
7812
  /**
7070
7813
  * @SINCE 1.21.0
7071
7814
  *
7072
7815
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
7073
7816
  */
7074
- enableColumnFreeze?: boolean | PropertyBindingInfo;
7817
+ enableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
7075
7818
 
7076
7819
  /**
7077
7820
  * @SINCE 1.21.0
7078
7821
  *
7079
7822
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
7080
7823
  */
7081
- enableCellFilter?: boolean | PropertyBindingInfo;
7824
+ enableCellFilter?: boolean | PropertyBindingInfo | `{${string}}`;
7082
7825
 
7083
7826
  /**
7084
7827
  * @SINCE 1.21.2
@@ -7086,7 +7829,7 @@ declare module "sap/ui/table/Table" {
7086
7829
  * Setting this property to true will show an overlay on top of the Table content and users cannot click
7087
7830
  * anymore on the Table content.
7088
7831
  */
7089
- showOverlay?: boolean | PropertyBindingInfo;
7832
+ showOverlay?: boolean | PropertyBindingInfo | `{${string}}`;
7090
7833
 
7091
7834
  /**
7092
7835
  * @SINCE 1.23.0
@@ -7094,7 +7837,7 @@ declare module "sap/ui/table/Table" {
7094
7837
  * Specifies if a select all button should be displayed in the top left corner. This button is only displayed
7095
7838
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
7096
7839
  */
7097
- enableSelectAll?: boolean | PropertyBindingInfo;
7840
+ enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
7098
7841
 
7099
7842
  /**
7100
7843
  * @SINCE 1.23.0
@@ -7102,7 +7845,7 @@ declare module "sap/ui/table/Table" {
7102
7845
  * Set this parameter to true to implement your own filter behaviour. Instead of the filter input box a
7103
7846
  * button will be rendered for which' press event (customFilter) you can register an event handler.
7104
7847
  */
7105
- enableCustomFilter?: boolean | PropertyBindingInfo;
7848
+ enableCustomFilter?: boolean | PropertyBindingInfo | `{${string}}`;
7106
7849
 
7107
7850
  /**
7108
7851
  * @SINCE 1.27.0
@@ -7113,7 +7856,7 @@ declare module "sap/ui/table/Table" {
7113
7856
  * the table switches back to not busy. The busy state of the table can still be set manually by calling
7114
7857
  * {@link sap.ui.core.Control#setBusy}.
7115
7858
  */
7116
- enableBusyIndicator?: boolean | PropertyBindingInfo;
7859
+ enableBusyIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
7117
7860
 
7118
7861
  /**
7119
7862
  * @SINCE 1.45.0
@@ -7121,14 +7864,14 @@ declare module "sap/ui/table/Table" {
7121
7864
  * Number of row actions made visible which determines the width of the row action column. The values `0`,
7122
7865
  * `1` and `2` are possible.
7123
7866
  */
7124
- rowActionCount?: int | PropertyBindingInfo;
7867
+ rowActionCount?: int | PropertyBindingInfo | `{${string}}`;
7125
7868
 
7126
7869
  /**
7127
7870
  * @SINCE 1.52
7128
7871
  *
7129
7872
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
7130
7873
  */
7131
- alternateRowColors?: boolean | PropertyBindingInfo;
7874
+ alternateRowColors?: boolean | PropertyBindingInfo | `{${string}}`;
7132
7875
 
7133
7876
  /**
7134
7877
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
@@ -7154,12 +7897,12 @@ declare module "sap/ui/table/Table" {
7154
7897
  * Extension section of the Table. If not set, no extension area will be rendered. Note: In case a `sap.m.Toolbar`
7155
7898
  * is used as header the CSS class sapMTBHeader-CTX should be applied on this toolbar.
7156
7899
  */
7157
- extension?: Control[] | Control | AggregationBindingInfo;
7900
+ extension?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
7158
7901
 
7159
7902
  /**
7160
7903
  * Columns of the Table
7161
7904
  */
7162
- columns?: Column[] | Column | AggregationBindingInfo;
7905
+ columns?: Column[] | Column | AggregationBindingInfo | `{${string}}`;
7163
7906
 
7164
7907
  /**
7165
7908
  * This aggregation is managed by the table itself. It can only be used with data binding, is read-only,
@@ -7177,7 +7920,7 @@ declare module "sap/ui/table/Table" {
7177
7920
  * of the table. Furthermore, row-specific settings can be defined with the {@link sap.ui.table.Table#setRowSettingsTemplate
7178
7921
  * rowSettingsTemplate} aggregation of the table.
7179
7922
  */
7180
- rows?: Row[] | Row | AggregationBindingInfo;
7923
+ rows?: Row[] | Row | AggregationBindingInfo | `{${string}}`;
7181
7924
 
7182
7925
  /**
7183
7926
  * The value for the noData aggregation can be either a string value or a control instance. The control
@@ -7224,7 +7967,11 @@ declare module "sap/ui/table/Table" {
7224
7967
  * use the API of the plugin.
7225
7968
  * - Only one MultiSelectionPlugin can be applied. No other plugins can be applied.
7226
7969
  */
7227
- plugins?: SelectionPlugin[] | SelectionPlugin | AggregationBindingInfo;
7970
+ plugins?:
7971
+ | SelectionPlugin[]
7972
+ | SelectionPlugin
7973
+ | AggregationBindingInfo
7974
+ | `{${string}}`;
7228
7975
 
7229
7976
  /**
7230
7977
  * @EXPERIMENTAL (since 1.28)
@@ -7412,6 +8159,8 @@ declare module "sap/ui/table/TablePersoController" {
7412
8159
  * it with the information contained in `oClassInfo`.
7413
8160
  *
7414
8161
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
8162
+ *
8163
+ * @returns Created class / constructor function
7415
8164
  */
7416
8165
  static extend<T extends Record<string, unknown>>(
7417
8166
  /**
@@ -7430,6 +8179,8 @@ declare module "sap/ui/table/TablePersoController" {
7430
8179
  ): Function;
7431
8180
  /**
7432
8181
  * Returns a metadata object for class sap.ui.table.TablePersoController.
8182
+ *
8183
+ * @returns Metadata object describing this class
7433
8184
  */
7434
8185
  static getMetadata(): ManagedObjectMetadata;
7435
8186
  /**
@@ -7438,6 +8189,8 @@ declare module "sap/ui/table/TablePersoController" {
7438
8189
  * Auto save state
7439
8190
  *
7440
8191
  * Default value is `true`.
8192
+ *
8193
+ * @returns Value of property `autoSave`
7441
8194
  */
7442
8195
  getAutoSave(): boolean;
7443
8196
  /**
@@ -7448,6 +8201,8 @@ declare module "sap/ui/table/TablePersoController" {
7448
8201
  * Table and the Column. Basically this will be more stable than using the auto IDs.
7449
8202
  *
7450
8203
  * Default value is `"persoKey"`.
8204
+ *
8205
+ * @returns Value of property `customDataKey`
7451
8206
  */
7452
8207
  getCustomDataKey(): string;
7453
8208
  /**
@@ -7457,6 +8212,8 @@ declare module "sap/ui/table/TablePersoController" {
7457
8212
  * - getPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7458
8213
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7459
8214
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
8215
+ *
8216
+ * @returns Value of property `persoService`
7460
8217
  */
7461
8218
  getPersoService(): any;
7462
8219
  /**
@@ -7472,6 +8229,8 @@ declare module "sap/ui/table/TablePersoController" {
7472
8229
  *
7473
8230
  *
7474
8231
  * Default value is `Default`.
8232
+ *
8233
+ * @returns Value of property `resetAllMode`
7475
8234
  */
7476
8235
  getResetAllMode(): ResetAllMode | keyof typeof ResetAllMode;
7477
8236
  /**
@@ -7481,6 +8240,8 @@ declare module "sap/ui/table/TablePersoController" {
7481
8240
  *
7482
8241
  *
7483
8242
  * Default value is `true`.
8243
+ *
8244
+ * @returns Value of property `showResetAll`
7484
8245
  */
7485
8246
  getShowResetAll(): boolean;
7486
8247
  /**
@@ -7498,10 +8259,14 @@ declare module "sap/ui/table/TablePersoController" {
7498
8259
  openDialog(mSettings: object): void;
7499
8260
  /**
7500
8261
  * Refresh the personalizations (reloads data from service).
8262
+ *
8263
+ * @returns `jQuery Promise` which is resolved once the refresh is finished
7501
8264
  */
7502
8265
  refresh(): jQuery.Promise;
7503
8266
  /**
7504
8267
  * Saves the current personalization state.
8268
+ *
8269
+ * @returns `jQuery Promise` which is resolved once the save is finished
7505
8270
  */
7506
8271
  savePersonalizations(): jQuery.Promise;
7507
8272
  /**
@@ -7512,6 +8277,8 @@ declare module "sap/ui/table/TablePersoController" {
7512
8277
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7513
8278
  *
7514
8279
  * Default value is `true`.
8280
+ *
8281
+ * @returns Reference to `this` in order to allow method chaining
7515
8282
  */
7516
8283
  setAutoSave(
7517
8284
  /**
@@ -7529,6 +8296,8 @@ declare module "sap/ui/table/TablePersoController" {
7529
8296
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7530
8297
  *
7531
8298
  * Default value is `"persoKey"`.
8299
+ *
8300
+ * @returns Reference to `this` in order to allow method chaining
7532
8301
  */
7533
8302
  setCustomDataKey(
7534
8303
  /**
@@ -7545,6 +8314,8 @@ declare module "sap/ui/table/TablePersoController" {
7545
8314
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7546
8315
  *
7547
8316
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8317
+ *
8318
+ * @returns Reference to `this` in order to allow method chaining
7548
8319
  */
7549
8320
  setPersoService(
7550
8321
  /**
@@ -7567,6 +8338,8 @@ declare module "sap/ui/table/TablePersoController" {
7567
8338
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7568
8339
  *
7569
8340
  * Default value is `Default`.
8341
+ *
8342
+ * @returns Reference to `this` in order to allow method chaining
7570
8343
  */
7571
8344
  setResetAllMode(
7572
8345
  /**
@@ -7583,6 +8356,8 @@ declare module "sap/ui/table/TablePersoController" {
7583
8356
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7584
8357
  *
7585
8358
  * Default value is `true`.
8359
+ *
8360
+ * @returns Reference to `this` in order to allow method chaining
7586
8361
  */
7587
8362
  setShowResetAll(
7588
8363
  /**
@@ -7592,6 +8367,8 @@ declare module "sap/ui/table/TablePersoController" {
7592
8367
  ): this;
7593
8368
  /**
7594
8369
  * Sets the associated {@link #getTable table}.
8370
+ *
8371
+ * @returns Reference to `this` in order to allow method chaining
7595
8372
  */
7596
8373
  setTable(
7597
8374
  /**
@@ -7607,7 +8384,7 @@ declare module "sap/ui/table/TablePersoController" {
7607
8384
  /**
7608
8385
  * Auto save state
7609
8386
  */
7610
- autoSave?: boolean | PropertyBindingInfo;
8387
+ autoSave?: boolean | PropertyBindingInfo | `{${string}}`;
7611
8388
 
7612
8389
  /**
7613
8390
  * Personalization Service object. Needs to have the following methods:
@@ -7615,7 +8392,7 @@ declare module "sap/ui/table/TablePersoController" {
7615
8392
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7616
8393
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7617
8394
  */
7618
- persoService?: any | PropertyBindingInfo;
8395
+ persoService?: any | PropertyBindingInfo | `{${string}}`;
7619
8396
 
7620
8397
  /**
7621
8398
  * By defining a custom data key the `TablePersoController` will try to get the key for saving the perso
@@ -7627,7 +8404,7 @@ declare module "sap/ui/table/TablePersoController" {
7627
8404
  /**
7628
8405
  * Controls the visibility of the Reset button of the `TablePersoDialog`.
7629
8406
  */
7630
- showResetAll?: boolean | PropertyBindingInfo;
8407
+ showResetAll?: boolean | PropertyBindingInfo | `{${string}}`;
7631
8408
 
7632
8409
  /**
7633
8410
  * Controls the behavior of the Reset button of the `TablePersoDialog`.
@@ -7640,7 +8417,8 @@ declare module "sap/ui/table/TablePersoController" {
7640
8417
  */
7641
8418
  resetAllMode?:
7642
8419
  | (ResetAllMode | keyof typeof ResetAllMode)
7643
- | PropertyBindingInfo;
8420
+ | PropertyBindingInfo
8421
+ | `{${string}}`;
7644
8422
 
7645
8423
  /**
7646
8424
  * The target table of this controller.
@@ -7710,6 +8488,8 @@ declare module "sap/ui/table/TreeTable" {
7710
8488
  * information contained in `oClassInfo`.
7711
8489
  *
7712
8490
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
8491
+ *
8492
+ * @returns Created class / constructor function
7713
8493
  */
7714
8494
  static extend<T extends Record<string, unknown>>(
7715
8495
  /**
@@ -7728,6 +8508,8 @@ declare module "sap/ui/table/TreeTable" {
7728
8508
  ): Function;
7729
8509
  /**
7730
8510
  * Returns a metadata object for class sap.ui.table.TreeTable.
8511
+ *
8512
+ * @returns Metadata object describing this class
7731
8513
  */
7732
8514
  static getMetadata(): ElementMetadata;
7733
8515
  /**
@@ -7736,6 +8518,8 @@ declare module "sap/ui/table/TreeTable" {
7736
8518
  *
7737
8519
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
7738
8520
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
8521
+ *
8522
+ * @returns Reference to `this` in order to allow method chaining
7739
8523
  */
7740
8524
  addSelectionInterval(
7741
8525
  /**
@@ -7755,6 +8539,8 @@ declare module "sap/ui/table/TreeTable" {
7755
8539
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7756
8540
  *
7757
8541
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
8542
+ *
8543
+ * @returns Reference to `this` in order to allow method chaining
7758
8544
  */
7759
8545
  attachToggleOpenState(
7760
8546
  /**
@@ -7779,6 +8565,8 @@ declare module "sap/ui/table/TreeTable" {
7779
8565
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7780
8566
  *
7781
8567
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
8568
+ *
8569
+ * @returns Reference to `this` in order to allow method chaining
7782
8570
  */
7783
8571
  attachToggleOpenState(
7784
8572
  /**
@@ -7792,6 +8580,8 @@ declare module "sap/ui/table/TreeTable" {
7792
8580
  ): this;
7793
8581
  /**
7794
8582
  * Collapses one or more rows.
8583
+ *
8584
+ * @returns `this` to allow method chaining
7795
8585
  */
7796
8586
  collapse(
7797
8587
  /**
@@ -7801,6 +8591,8 @@ declare module "sap/ui/table/TreeTable" {
7801
8591
  ): this;
7802
8592
  /**
7803
8593
  * Collapses all nodes (and lower if collapseRecursive is activated)
8594
+ *
8595
+ * @returns `this` to allow method chaining
7804
8596
  */
7805
8597
  collapseAll(): this;
7806
8598
  /**
@@ -7808,6 +8600,8 @@ declare module "sap/ui/table/TreeTable" {
7808
8600
  * this `sap.ui.table.TreeTable`.
7809
8601
  *
7810
8602
  * The passed function and listener object must match the ones used for event registration.
8603
+ *
8604
+ * @returns Reference to `this` in order to allow method chaining
7811
8605
  */
7812
8606
  detachToggleOpenState(
7813
8607
  /**
@@ -7821,6 +8615,8 @@ declare module "sap/ui/table/TreeTable" {
7821
8615
  ): this;
7822
8616
  /**
7823
8617
  * Expands one or more rows.
8618
+ *
8619
+ * @returns `this` to allow method chaining
7824
8620
  */
7825
8621
  expand(
7826
8622
  /**
@@ -7831,10 +8627,12 @@ declare module "sap/ui/table/TreeTable" {
7831
8627
  /**
7832
8628
  * Expands all nodes starting from the root level to the given level 'iLevel'.
7833
8629
  *
7834
- * Only supported with ODataModel v2, when running in OperationMode.Client or OperationMode.Auto. Fully
7835
- * supported for `sap.ui.model.ClientTreeBinding`, e.g. if you are using a `sap.ui.model.json.JSONModel`.
8630
+ * Only supported with ODataModel v2, when running in OperationMode.Client. Fully supported for `sap.ui.model.ClientTreeBinding`,
8631
+ * e.g. if you are using a `sap.ui.model.json.JSONModel`.
7836
8632
  *
7837
8633
  * Please also see `sap.ui.model.odata.OperationMode`.
8634
+ *
8635
+ * @returns a reference on the TreeTable control, can be used for chaining
7838
8636
  */
7839
8637
  expandToLevel(
7840
8638
  /**
@@ -7844,6 +8642,8 @@ declare module "sap/ui/table/TreeTable" {
7844
8642
  ): this;
7845
8643
  /**
7846
8644
  * Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
8645
+ *
8646
+ * @returns Reference to `this` in order to allow method chaining
7847
8647
  */
7848
8648
  fireToggleOpenState(
7849
8649
  /**
@@ -7888,6 +8688,8 @@ declare module "sap/ui/table/TreeTable" {
7888
8688
  *
7889
8689
  *
7890
8690
  * Default value is `true`.
8691
+ *
8692
+ * @returns Value of property `collapseRecursive`
7891
8693
  */
7892
8694
  getCollapseRecursive(): boolean;
7893
8695
  /**
@@ -7920,6 +8722,8 @@ declare module "sap/ui/table/TreeTable" {
7920
8722
  *
7921
8723
  *
7922
8724
  * Default value is `false`.
8725
+ *
8726
+ * @returns Value of property `expandFirstLevel`
7923
8727
  */
7924
8728
  getExpandFirstLevel(): boolean;
7925
8729
  /**
@@ -7932,6 +8736,8 @@ declare module "sap/ui/table/TreeTable" {
7932
8736
  * Gets current value of property {@link #getGroupHeaderProperty groupHeaderProperty}.
7933
8737
  *
7934
8738
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
8739
+ *
8740
+ * @returns Value of property `groupHeaderProperty`
7935
8741
  */
7936
8742
  getGroupHeaderProperty(): string;
7937
8743
  /**
@@ -7957,6 +8763,8 @@ declare module "sap/ui/table/TreeTable" {
7957
8763
  *
7958
8764
  *
7959
8765
  * Default value is `0`.
8766
+ *
8767
+ * @returns Value of property `rootLevel`
7960
8768
  */
7961
8769
  getRootLevel(): int;
7962
8770
  /**
@@ -7965,6 +8773,8 @@ declare module "sap/ui/table/TreeTable" {
7965
8773
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
7966
8774
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
7967
8775
  * yet loaded" to the client), will not be returned.
8776
+ *
8777
+ * @returns an array containing all selected indices
7968
8778
  */
7969
8779
  getSelectedIndices(): int[];
7970
8780
  /**
@@ -7974,10 +8784,14 @@ declare module "sap/ui/table/TreeTable" {
7974
8784
  * used to do the grouping for an OData service on the backend and visualize this in a table.
7975
8785
  *
7976
8786
  * Default value is `false`.
8787
+ *
8788
+ * @returns Value of property `useGroupMode`
7977
8789
  */
7978
8790
  getUseGroupMode(): boolean;
7979
8791
  /**
7980
8792
  * Checks whether the row is expanded or collapsed.
8793
+ *
8794
+ * @returns `true` if the row is expanded, `false` if it is collapsed
7981
8795
  */
7982
8796
  isExpanded(
7983
8797
  /**
@@ -7988,6 +8802,8 @@ declare module "sap/ui/table/TreeTable" {
7988
8802
  /**
7989
8803
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
7990
8804
  * is removed from the selection. Invisible nodes (collapsed child nodes) will not be regarded.
8805
+ *
8806
+ * @returns Reference to `this` in order to allow method chaining
7991
8807
  */
7992
8808
  removeSelectionInterval(
7993
8809
  /**
@@ -8006,6 +8822,8 @@ declare module "sap/ui/table/TreeTable" {
8006
8822
  * tree are selected. Additional rows or tree nodes that come into view through scrolling or paging are
8007
8823
  * also selected immediately as soon as they get visible. However, `SelectAll` does not retrieve any data
8008
8824
  * from the back end in order to improve performance and reduce the network traffic.
8825
+ *
8826
+ * @returns a reference on the TreeTable control, can be used for chaining
8009
8827
  */
8010
8828
  selectAll(): this;
8011
8829
  /**
@@ -8034,6 +8852,8 @@ declare module "sap/ui/table/TreeTable" {
8034
8852
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8035
8853
  *
8036
8854
  * Default value is `true`.
8855
+ *
8856
+ * @returns Reference to `this` in order to allow method chaining
8037
8857
  */
8038
8858
  setCollapseRecursive(
8039
8859
  /**
@@ -8047,6 +8867,8 @@ declare module "sap/ui/table/TreeTable" {
8047
8867
  * The property `enableGrouping` is not supported by the `TreeTable` control.
8048
8868
  * See:
8049
8869
  * sap.ui.table.TreeTable#setUseGroupMode
8870
+ *
8871
+ * @returns Reference to `this` in order to allow method chaining
8050
8872
  */
8051
8873
  setEnableGrouping(bValue: boolean): this;
8052
8874
  /**
@@ -8075,6 +8897,8 @@ declare module "sap/ui/table/TreeTable" {
8075
8897
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8076
8898
  *
8077
8899
  * Default value is `false`.
8900
+ *
8901
+ * @returns Reference to `this` in order to allow method chaining
8078
8902
  */
8079
8903
  setExpandFirstLevel(
8080
8904
  /**
@@ -8088,6 +8912,8 @@ declare module "sap/ui/table/TreeTable" {
8088
8912
  * **This property is not supportd for the TreeTable and will be ignored!**
8089
8913
  *
8090
8914
  * Default value is `0`
8915
+ *
8916
+ * @returns `this` to allow method chaining
8091
8917
  */
8092
8918
  setFixedRowCount(
8093
8919
  /**
@@ -8099,6 +8925,8 @@ declare module "sap/ui/table/TreeTable" {
8099
8925
  * @deprecated (since 1.28)
8100
8926
  *
8101
8927
  * The `groupBy` association is not supported by the `TreeTable` control.
8928
+ *
8929
+ * @returns Reference to `this` in order to allow method chaining
8102
8930
  */
8103
8931
  setGroupBy(oColumn: Column | ID): this;
8104
8932
  /**
@@ -8107,6 +8935,8 @@ declare module "sap/ui/table/TreeTable" {
8107
8935
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
8108
8936
  *
8109
8937
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8938
+ *
8939
+ * @returns Reference to `this` in order to allow method chaining
8110
8940
  */
8111
8941
  setGroupHeaderProperty(
8112
8942
  /**
@@ -8139,6 +8969,8 @@ declare module "sap/ui/table/TreeTable" {
8139
8969
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8140
8970
  *
8141
8971
  * Default value is `0`.
8972
+ *
8973
+ * @returns Reference to `this` in order to allow method chaining
8142
8974
  */
8143
8975
  setRootLevel(
8144
8976
  /**
@@ -8150,6 +8982,8 @@ declare module "sap/ui/table/TreeTable" {
8150
8982
  * Sets the selected index In a TreeTable you can only select indices, which correspond to the currently
8151
8983
  * visualized tree. Invisible tree nodes (e.g. collapsed child nodes) can not be selected via Index, because
8152
8984
  * they do not correspond to a TreeTable row.
8985
+ *
8986
+ * @returns a reference on the TreeTable control, can be used for chaining
8153
8987
  */
8154
8988
  setSelectedIndex(
8155
8989
  /**
@@ -8161,6 +8995,8 @@ declare module "sap/ui/table/TreeTable" {
8161
8995
  * Sets the selection of the TreeTable to the given range (including boundaries). Beware: The previous selection
8162
8996
  * will be lost/overridden. If this is not wanted, please use "addSelectionInterval" and "removeSelectionInterval".
8163
8997
  * Please be aware, that the absolute row index only applies to the tree which is visualized by the TreeTable.
8998
+ *
8999
+ * @returns a reference on the TreeTable control, can be used for chaining
8164
9000
  */
8165
9001
  setSelectionInterval(
8166
9002
  /**
@@ -8182,6 +9018,8 @@ declare module "sap/ui/table/TreeTable" {
8182
9018
  * **Note:** In flat mode the user of the table cannot expand or collapse certain nodes and the hierarchy
8183
9019
  * is not visible to the user. The caller of this function has to ensure to use this option only with non-hierarchical
8184
9020
  * data.
9021
+ *
9022
+ * @returns Reference to `this` in order to allow method chaining
8185
9023
  */
8186
9024
  setUseFlatMode(
8187
9025
  /**
@@ -8198,6 +9036,8 @@ declare module "sap/ui/table/TreeTable" {
8198
9036
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8199
9037
  *
8200
9038
  * Default value is `false`.
9039
+ *
9040
+ * @returns Reference to `this` in order to allow method chaining
8201
9041
  */
8202
9042
  setUseGroupMode(
8203
9043
  /**
@@ -8228,13 +9068,13 @@ declare module "sap/ui/table/TreeTable" {
8228
9068
  * });
8229
9069
  * ```
8230
9070
  */
8231
- expandFirstLevel?: boolean | PropertyBindingInfo;
9071
+ expandFirstLevel?: boolean | PropertyBindingInfo | `{${string}}`;
8232
9072
 
8233
9073
  /**
8234
9074
  * If group mode is enabled nodes with subitems are rendered as if they were group headers. This can be
8235
9075
  * used to do the grouping for an OData service on the backend and visualize this in a table.
8236
9076
  */
8237
- useGroupMode?: boolean | PropertyBindingInfo;
9077
+ useGroupMode?: boolean | PropertyBindingInfo | `{${string}}`;
8238
9078
 
8239
9079
  /**
8240
9080
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
@@ -8261,7 +9101,7 @@ declare module "sap/ui/table/TreeTable" {
8261
9101
  * });
8262
9102
  * ```
8263
9103
  */
8264
- collapseRecursive?: boolean | PropertyBindingInfo;
9104
+ collapseRecursive?: boolean | PropertyBindingInfo | `{${string}}`;
8265
9105
 
8266
9106
  /**
8267
9107
  * @deprecated (since 1.76) - replaced by the `rootLevel` binding parameter
@@ -8282,7 +9122,7 @@ declare module "sap/ui/table/TreeTable" {
8282
9122
  * });
8283
9123
  * ```
8284
9124
  */
8285
- rootLevel?: int | PropertyBindingInfo;
9125
+ rootLevel?: int | PropertyBindingInfo | `{${string}}`;
8286
9126
 
8287
9127
  /**
8288
9128
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.