@openui5/types 1.119.1 → 1.120.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -148,6 +148,12 @@ declare module "sap/ui/support/library" {
148
148
  * The accessibility preset.
149
149
  */
150
150
  Accessibility = "undefined",
151
+ /**
152
+ * @experimental (since 1.120)
153
+ *
154
+ * Preset to find usages of deprecated controls, properties, aggregations and others.
155
+ */
156
+ Deprecations = "undefined",
151
157
  }
152
158
  }
153
159
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -55,6 +55,8 @@ declare module "sap/ui/table/library" {
55
55
  Scrollbar = "Scrollbar",
56
56
  }
57
57
  /**
58
+ * @deprecated (since 1.115)
59
+ *
58
60
  * Enumeration of the `ResetAllMode` that can be used in a `TablePersoController`.
59
61
  */
60
62
  export enum ResetAllMode {
@@ -145,6 +147,8 @@ declare module "sap/ui/table/library" {
145
147
  VerticalScrollBar = "vsb",
146
148
  }
147
149
  /**
150
+ * @deprecated (since 1.120) - replaced with `sap.ui.core.SortOrder`
151
+ *
148
152
  * Sort order of a column
149
153
  */
150
154
  export enum SortOrder {
@@ -158,6 +162,8 @@ declare module "sap/ui/table/library" {
158
162
  Descending = "Descending",
159
163
  }
160
164
  /**
165
+ * @deprecated (since 1.120)
166
+ *
161
167
  * Different modes for setting the auto expand mode on tree or analytical bindings.
162
168
  *
163
169
  * This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
@@ -1383,6 +1389,7 @@ declare module "sap/ui/table/Column" {
1383
1389
  import {
1384
1390
  HorizontalAlign,
1385
1391
  ID,
1392
+ SortOrder,
1386
1393
  CSSSize,
1387
1394
  IColumnHeaderMenu,
1388
1395
  } from "sap/ui/core/library";
@@ -1391,8 +1398,6 @@ declare module "sap/ui/table/Column" {
1391
1398
 
1392
1399
  import ElementMetadata from "sap/ui/core/ElementMetadata";
1393
1400
 
1394
- import { SortOrder } from "sap/ui/table/library";
1395
-
1396
1401
  import {
1397
1402
  PropertyBindingInfo,
1398
1403
  AggregationBindingInfo,
@@ -1668,6 +1673,10 @@ declare module "sap/ui/table/Column" {
1668
1673
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link #setFilterType }
1669
1674
  * instead.
1670
1675
  *
1676
+ * **Note:** The usage of string-based type definitions without explicitly loading these types (`sap.ui.require`)
1677
+ * in the controller has been deprecated and might no longer work in future releases. Please ensure that
1678
+ * the types are requested correctly before setting this property.
1679
+ *
1671
1680
  * @returns Value of property `filterType`
1672
1681
  */
1673
1682
  getFilterType(): any;
@@ -1850,11 +1859,17 @@ declare module "sap/ui/table/Column" {
1850
1859
  */
1851
1860
  getShowSortMenuEntry(): boolean;
1852
1861
  /**
1862
+ * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
1863
+ * property
1864
+ *
1853
1865
  * Gets current value of property {@link #getSorted sorted}.
1854
1866
  *
1855
1867
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
1856
1868
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
1857
1869
  *
1870
+ * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
1871
+ * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
1872
+ *
1858
1873
  * Default value is `false`.
1859
1874
  *
1860
1875
  * @returns Value of property `sorted`
@@ -1863,10 +1878,10 @@ declare module "sap/ui/table/Column" {
1863
1878
  /**
1864
1879
  * Gets current value of property {@link #getSortOrder sortOrder}.
1865
1880
  *
1866
- * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
1867
- * rendered if the property `sorted` is `true`
1881
+ * Controls whether a sort indicator is displayed in the column header. **Note:** Setting this property
1882
+ * does not sort the table. The column can be sorted using {@link sap.ui.table.Table#sort}.
1868
1883
  *
1869
- * Default value is `Ascending`.
1884
+ * Default value is `None`.
1870
1885
  *
1871
1886
  * @returns Value of property `sortOrder`
1872
1887
  */
@@ -2346,11 +2361,17 @@ declare module "sap/ui/table/Column" {
2346
2361
  bShowSortMenuEntry?: boolean
2347
2362
  ): this;
2348
2363
  /**
2364
+ * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
2365
+ * property
2366
+ *
2349
2367
  * Sets a new value for property {@link #getSorted sorted}.
2350
2368
  *
2351
2369
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
2352
2370
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2353
2371
  *
2372
+ * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
2373
+ * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
2374
+ *
2354
2375
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2355
2376
  *
2356
2377
  * Default value is `false`.
@@ -2366,12 +2387,12 @@ declare module "sap/ui/table/Column" {
2366
2387
  /**
2367
2388
  * Sets a new value for property {@link #getSortOrder sortOrder}.
2368
2389
  *
2369
- * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
2370
- * rendered if the property `sorted` is `true`
2390
+ * Controls whether a sort indicator is displayed in the column header. **Note:** Setting this property
2391
+ * does not sort the table. The column can be sorted using {@link sap.ui.table.Table#sort}.
2371
2392
  *
2372
2393
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2373
2394
  *
2374
- * Default value is `Ascending`.
2395
+ * Default value is `None`.
2375
2396
  *
2376
2397
  * @returns Reference to `this` in order to allow method chaining
2377
2398
  */
@@ -2524,14 +2545,20 @@ declare module "sap/ui/table/Column" {
2524
2545
  | `{${string}}`;
2525
2546
 
2526
2547
  /**
2548
+ * @deprecated (since 1.120) - replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
2549
+ * property
2550
+ *
2527
2551
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
2528
2552
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2553
+ *
2554
+ * If this property is set to `true` and the `sortOrder` property is `None`, `sortOrder` is automatically
2555
+ * set to `Ascending`. If this property is `true` and `sortOrder` is `None`, the sort indicator is not shown.
2529
2556
  */
2530
2557
  sorted?: boolean | PropertyBindingInfo | `{${string}}`;
2531
2558
 
2532
2559
  /**
2533
- * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
2534
- * rendered if the property `sorted` is `true`
2560
+ * Controls whether a sort indicator is displayed in the column header. **Note:** Setting this property
2561
+ * does not sort the table. The column can be sorted using {@link sap.ui.table.Table#sort}.
2535
2562
  */
2536
2563
  sortOrder?:
2537
2564
  | (SortOrder | keyof typeof SortOrder)
@@ -2606,6 +2633,10 @@ declare module "sap/ui/table/Column" {
2606
2633
  * \{\} \}"`. Here the escaping is mandatory to avoid handling by the binding parser. As an alternative,
2607
2634
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link #setFilterType }
2608
2635
  * instead.
2636
+ *
2637
+ * **Note:** The usage of string-based type definitions without explicitly loading these types (`sap.ui.require`)
2638
+ * in the controller has been deprecated and might no longer work in future releases. Please ensure that
2639
+ * the types are requested correctly before setting this property.
2609
2640
  */
2610
2641
  filterType?: any | PropertyBindingInfo | `{${string}}`;
2611
2642
 
@@ -3330,7 +3361,9 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
3330
3361
  * Constructs an instance of sap.ui.table.plugins.SelectionPlugin
3331
3362
  *
3332
3363
  * The following restrictions apply:
3333
- * - Do not create subclasses of the SelectionPlugin. The API is subject to change.
3364
+ * - Do not create subclasses of the `SelectionPlugin`. The API is subject to change. **Note:** Subclasses
3365
+ * provided by the UI5 framework that are not explicitly marked as experimental or restricted in any other
3366
+ * way can be used on a regular basis.
3334
3367
  *
3335
3368
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3336
3369
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -5240,7 +5273,13 @@ declare module "sap/ui/table/RowSettings" {
5240
5273
  declare module "sap/ui/table/Table" {
5241
5274
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
5242
5275
 
5243
- import { ID, IContextMenu, Toolbar, CSSSize } from "sap/ui/core/library";
5276
+ import {
5277
+ ID,
5278
+ IContextMenu,
5279
+ Toolbar,
5280
+ CSSSize,
5281
+ SortOrder,
5282
+ } from "sap/ui/core/library";
5244
5283
 
5245
5284
  import Column from "sap/ui/table/Column";
5246
5285
 
@@ -5270,7 +5309,6 @@ declare module "sap/ui/table/Table" {
5270
5309
  SelectionBehavior,
5271
5310
  SelectionMode,
5272
5311
  VisibleRowCountMode,
5273
- SortOrder,
5274
5312
  } from "sap/ui/table/library";
5275
5313
 
5276
5314
  import RowAction from "sap/ui/table/RowAction";
@@ -5399,6 +5437,7 @@ declare module "sap/ui/table/Table" {
5399
5437
  ): this;
5400
5438
  /**
5401
5439
  * @since 1.64
5440
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
5402
5441
  *
5403
5442
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
5404
5443
  *
@@ -5781,6 +5820,8 @@ declare module "sap/ui/table/Table" {
5781
5820
  oListener?: object
5782
5821
  ): this;
5783
5822
  /**
5823
+ * @deprecated (since 1.117)
5824
+ *
5784
5825
  * Attaches event handler `fnFunction` to the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
5785
5826
  *
5786
5827
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -5806,6 +5847,8 @@ declare module "sap/ui/table/Table" {
5806
5847
  oListener?: object
5807
5848
  ): this;
5808
5849
  /**
5850
+ * @deprecated (since 1.117)
5851
+ *
5809
5852
  * Attaches event handler `fnFunction` to the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
5810
5853
  *
5811
5854
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -6138,10 +6181,15 @@ declare module "sap/ui/table/Table" {
6138
6181
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6139
6182
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
6140
6183
  *
6141
- * fired when the row selection of the table has been changed (the event parameters can be used to determine
6142
- * selection changes - to find out the selected rows you should better use the table selection API)
6184
+ * Fired if the row selection of the table has been changed.
6185
+ *
6186
+ * The event parameters can be used to determine selection changes. To find the selected rows, you should
6187
+ * use {@link sap.ui.table.Table#getSelectedIndices} or the related function of the used selection plugin
6188
+ * if it exists.
6143
6189
  *
6144
- * **Note:** If a selection plugin is applied to the table, this event won't be fired.
6190
+ * **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
6191
+ * (e.g. OData). Therefore, it is recommended to use a selection plugin instead. **Note:** If a selection
6192
+ * plugin is used with the table, this event won't be fired.
6145
6193
  *
6146
6194
  * @returns Reference to `this` in order to allow method chaining
6147
6195
  */
@@ -6167,10 +6215,15 @@ declare module "sap/ui/table/Table" {
6167
6215
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6168
6216
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
6169
6217
  *
6170
- * fired when the row selection of the table has been changed (the event parameters can be used to determine
6171
- * selection changes - to find out the selected rows you should better use the table selection API)
6218
+ * Fired if the row selection of the table has been changed.
6172
6219
  *
6173
- * **Note:** If a selection plugin is applied to the table, this event won't be fired.
6220
+ * The event parameters can be used to determine selection changes. To find the selected rows, you should
6221
+ * use {@link sap.ui.table.Table#getSelectedIndices} or the related function of the used selection plugin
6222
+ * if it exists.
6223
+ *
6224
+ * **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
6225
+ * (e.g. OData). Therefore, it is recommended to use a selection plugin instead. **Note:** If a selection
6226
+ * plugin is used with the table, this event won't be fired.
6174
6227
  *
6175
6228
  * @returns Reference to `this` in order to allow method chaining
6176
6229
  */
@@ -6370,6 +6423,7 @@ declare module "sap/ui/table/Table" {
6370
6423
  destroyNoData(): this;
6371
6424
  /**
6372
6425
  * @since 1.64
6426
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
6373
6427
  *
6374
6428
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
6375
6429
  *
@@ -6552,6 +6606,8 @@ declare module "sap/ui/table/Table" {
6552
6606
  oListener?: object
6553
6607
  ): this;
6554
6608
  /**
6609
+ * @deprecated (since 1.117)
6610
+ *
6555
6611
  * Detaches event handler `fnFunction` from the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
6556
6612
  *
6557
6613
  * The passed function and listener object must match the ones used for event registration.
@@ -6885,6 +6941,7 @@ declare module "sap/ui/table/Table" {
6885
6941
  mParameters?: Table$ColumnResizeEventParameters
6886
6942
  ): boolean;
6887
6943
  /**
6944
+ * @deprecated (since 1.117)
6888
6945
  * @ui5-protected Do not call from applications (only from related classes in the framework)
6889
6946
  *
6890
6947
  * Fires event {@link #event:columnSelect columnSelect} to attached listeners.
@@ -7397,15 +7454,14 @@ declare module "sap/ui/table/Table" {
7397
7454
  getNoData(): Control | string;
7398
7455
  /**
7399
7456
  * @since 1.64
7457
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
7400
7458
  *
7401
7459
  * Gets content of aggregation {@link #getPlugins plugins}.
7402
7460
  *
7403
7461
  * Plugin section of the table. Multiple plugins are possible, but always only **one** of a certain type.
7404
7462
  *
7405
- * The following restrictions apply:
7406
- * - If a selection plugin is applied to the table, the table's selection API must not be used. Instead,
7407
- * use the API of the plugin.
7408
- * - Only one MultiSelectionPlugin can be applied. No other plugins can be applied.
7463
+ * If a selection plugin is used, the table's selection API must not be used. Instead, use the API of the
7464
+ * plugin.
7409
7465
  */
7410
7466
  getPlugins(): SelectionPlugin[];
7411
7467
  /**
@@ -7456,7 +7512,8 @@ declare module "sap/ui/table/Table" {
7456
7512
  *
7457
7513
  * Gets content of aggregation {@link #getRowMode rowMode}.
7458
7514
  *
7459
- * Defines how the table handles the rows.
7515
+ * Defines how the table handles the rows. By default, the table operates in {@link sap.ui.table.rowmodes.Type Fixed }
7516
+ * mode.
7460
7517
  */
7461
7518
  getRowMode(): RowMode | (Type | keyof typeof Type);
7462
7519
  /**
@@ -7525,8 +7582,10 @@ declare module "sap/ui/table/Table" {
7525
7582
  * how the selection can be extended. It may also influence the visual appearance. When the selection mode
7526
7583
  * is changed, the current selection is removed. **Note:** Since the group header visualization relies on
7527
7584
  * the row selectors, the row selectors are always shown if the grouping functionality (depends on table
7528
- * type) is enabled, even if `sap.ui.table.SelectionMode.None` is set. **Note:** If a selection plugin is
7529
- * applied to the table, the selection mode is controlled by the plugin.
7585
+ * type) is enabled, even if `sap.ui.table.SelectionMode.None` is set. **Note:** The built-in selection
7586
+ * API has limited functionality, especially when it is combined with paging (e.g. OData). Therefore, it
7587
+ * is recommended to use a selection plugin instead. **Note:** If a selection plugin is used with the table,
7588
+ * the selection mode is controlled by the plugin.
7530
7589
  *
7531
7590
  * Default value is `MultiToggle`.
7532
7591
  *
@@ -7574,7 +7633,7 @@ declare module "sap/ui/table/Table" {
7574
7633
  /**
7575
7634
  * Gets the sorted columns in the order in which sorting was performed through the {@link sap.ui.table.Table#sort }
7576
7635
  * method and menus. Does not reflect sorting at binding level or the columns sort visualization set with
7577
- * {@link sap.ui.table.Column#setSorted} and {@link sap.ui.table.Column#setSortOrder}.
7636
+ * {@link sap.ui.table.Column#setSortOrder}.
7578
7637
  * See:
7579
7638
  * sap.ui.table.Table#sort
7580
7639
  *
@@ -7689,6 +7748,7 @@ declare module "sap/ui/table/Table" {
7689
7748
  ): int;
7690
7749
  /**
7691
7750
  * @since 1.64
7751
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
7692
7752
  *
7693
7753
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins plugins}.
7694
7754
  * and returns its index if found or -1 otherwise.
@@ -7749,6 +7809,7 @@ declare module "sap/ui/table/Table" {
7749
7809
  ): this;
7750
7810
  /**
7751
7811
  * @since 1.64
7812
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
7752
7813
  *
7753
7814
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
7754
7815
  *
@@ -7818,6 +7879,7 @@ declare module "sap/ui/table/Table" {
7818
7879
  removeAllExtension(): Control[];
7819
7880
  /**
7820
7881
  * @since 1.64
7882
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
7821
7883
  *
7822
7884
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
7823
7885
  *
@@ -7869,6 +7931,7 @@ declare module "sap/ui/table/Table" {
7869
7931
  ): Control | null;
7870
7932
  /**
7871
7933
  * @since 1.64
7934
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
7872
7935
  *
7873
7936
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
7874
7937
  *
@@ -8645,21 +8708,23 @@ declare module "sap/ui/table/Table" {
8645
8708
  sWidth?: CSSSize
8646
8709
  ): this;
8647
8710
  /**
8648
- * Sorts the given column ascending or descending.
8711
+ * Changes or removes sorting from the table.
8649
8712
  */
8650
8713
  sort(
8651
8714
  /**
8652
8715
  * Column to be sorted or undefined to clear sorting
8653
8716
  */
8654
- oColumn: Column | undefined,
8717
+ oColumn?: Column,
8655
8718
  /**
8656
- * Sort order of the column (if undefined the default will be ascending)
8719
+ * Sort order of the column
8657
8720
  */
8658
- oSortOrder: SortOrder | keyof typeof SortOrder,
8721
+ sSortOrder?: SortOrder | keyof typeof SortOrder,
8659
8722
  /**
8660
- * Set to true to add the new sort criterion to the existing sort criteria
8723
+ * Set to `true` to add the new sort criterion to the existing sort criteria, otherwise to replace it. If
8724
+ * the sort order is `sap.ui.core.SortOrder.None`, this parameter has no effect, and only the sort criterion
8725
+ * for this column is removed from the sort criteria.
8661
8726
  */
8662
- bAdd: boolean
8727
+ bAdd?: boolean
8663
8728
  ): void;
8664
8729
  /**
8665
8730
  * Unbinds aggregation {@link #getColumns columns} from model data.
@@ -8736,8 +8801,10 @@ declare module "sap/ui/table/Table" {
8736
8801
  * how the selection can be extended. It may also influence the visual appearance. When the selection mode
8737
8802
  * is changed, the current selection is removed. **Note:** Since the group header visualization relies on
8738
8803
  * the row selectors, the row selectors are always shown if the grouping functionality (depends on table
8739
- * type) is enabled, even if `sap.ui.table.SelectionMode.None` is set. **Note:** If a selection plugin is
8740
- * applied to the table, the selection mode is controlled by the plugin.
8804
+ * type) is enabled, even if `sap.ui.table.SelectionMode.None` is set. **Note:** The built-in selection
8805
+ * API has limited functionality, especially when it is combined with paging (e.g. OData). Therefore, it
8806
+ * is recommended to use a selection plugin instead. **Note:** If a selection plugin is used with the table,
8807
+ * the selection mode is controlled by the plugin.
8741
8808
  */
8742
8809
  selectionMode?:
8743
8810
  | (SelectionMode | keyof typeof SelectionMode)
@@ -9019,7 +9086,8 @@ declare module "sap/ui/table/Table" {
9019
9086
  /**
9020
9087
  * @since 1.119
9021
9088
  *
9022
- * Defines how the table handles the rows.
9089
+ * Defines how the table handles the rows. By default, the table operates in {@link sap.ui.table.rowmodes.Type Fixed }
9090
+ * mode.
9023
9091
  */
9024
9092
  rowMode?:
9025
9093
  | (Type | keyof typeof Type)
@@ -9064,13 +9132,12 @@ declare module "sap/ui/table/Table" {
9064
9132
 
9065
9133
  /**
9066
9134
  * @since 1.64
9135
+ * @deprecated (since 1.120) - Please add plugins to the `dependents` aggregation instead.
9067
9136
  *
9068
9137
  * Plugin section of the table. Multiple plugins are possible, but always only **one** of a certain type.
9069
9138
  *
9070
- * The following restrictions apply:
9071
- * - If a selection plugin is applied to the table, the table's selection API must not be used. Instead,
9072
- * use the API of the plugin.
9073
- * - Only one MultiSelectionPlugin can be applied. No other plugins can be applied.
9139
+ * If a selection plugin is used, the table's selection API must not be used. Instead, use the API of the
9140
+ * plugin.
9074
9141
  */
9075
9142
  plugins?:
9076
9143
  | SelectionPlugin[]
@@ -9094,14 +9161,21 @@ declare module "sap/ui/table/Table" {
9094
9161
  ariaLabelledBy?: Array<Control | string>;
9095
9162
 
9096
9163
  /**
9097
- * fired when the row selection of the table has been changed (the event parameters can be used to determine
9098
- * selection changes - to find out the selected rows you should better use the table selection API)
9164
+ * Fired if the row selection of the table has been changed.
9165
+ *
9166
+ * The event parameters can be used to determine selection changes. To find the selected rows, you should
9167
+ * use {@link sap.ui.table.Table#getSelectedIndices} or the related function of the used selection plugin
9168
+ * if it exists.
9099
9169
  *
9100
- * **Note:** If a selection plugin is applied to the table, this event won't be fired.
9170
+ * **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
9171
+ * (e.g. OData). Therefore, it is recommended to use a selection plugin instead. **Note:** If a selection
9172
+ * plugin is used with the table, this event won't be fired.
9101
9173
  */
9102
9174
  rowSelectionChange?: (oEvent: Table$RowSelectionChangeEvent) => void;
9103
9175
 
9104
9176
  /**
9177
+ * @deprecated (since 1.117)
9178
+ *
9105
9179
  * fired when a column of the table has been selected
9106
9180
  */
9107
9181
  columnSelect?: (oEvent: Table$ColumnSelectEvent) => void;
@@ -9508,17 +9582,17 @@ declare module "sap/ui/table/Table" {
9508
9582
 
9509
9583
  export interface Table$SortEventParameters {
9510
9584
  /**
9511
- * sorted column.
9585
+ * The column for which the sorting is changed
9512
9586
  */
9513
9587
  column?: Column;
9514
9588
 
9515
9589
  /**
9516
- * Sort Order
9590
+ * The new sort order
9517
9591
  */
9518
9592
  sortOrder?: SortOrder | keyof typeof SortOrder;
9519
9593
 
9520
9594
  /**
9521
- * If column was added to sorter this is true. If new sort is started this is set to false
9595
+ * Indicates that the column is added to the list of sorted columns
9522
9596
  */
9523
9597
  columnAdded?: boolean;
9524
9598
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4