@openui5/types 1.116.0 → 1.117.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.116.0
1
+ // For Library Version: 1.117.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.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -403,7 +403,10 @@ declare module "sap/ui/suite/TaskCircle" {
403
403
 
404
404
  export interface TaskCircle$PressEventParameters {}
405
405
 
406
- export type TaskCircle$PressEvent = Event<TaskCircle$PressEventParameters>;
406
+ export type TaskCircle$PressEvent = Event<
407
+ TaskCircle$PressEventParameters,
408
+ TaskCircle
409
+ >;
407
410
  }
408
411
 
409
412
  declare module "sap/ui/suite/VerticalProgressIndicator" {
@@ -675,7 +678,10 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
675
678
 
676
679
  export interface VerticalProgressIndicator$PressEventParameters {}
677
680
 
678
- export type VerticalProgressIndicator$PressEvent = Event<VerticalProgressIndicator$PressEventParameters>;
681
+ export type VerticalProgressIndicator$PressEvent = Event<
682
+ VerticalProgressIndicator$PressEventParameters,
683
+ VerticalProgressIndicator
684
+ >;
679
685
  }
680
686
 
681
687
  declare namespace sap {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -430,7 +430,8 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
430
430
  import ElementMetadata from "sap/ui/core/ElementMetadata";
431
431
 
432
432
  /**
433
- * @experimental (since 1.21) - The AnalyticalColumnMenu will be productized soon.
433
+ * @deprecated (since 1.117)
434
+ * @experimental (since 1.21)
434
435
  *
435
436
  * A column menu which is used by the analytical column
436
437
  */
@@ -710,6 +711,8 @@ declare module "sap/ui/table/AnalyticalTable" {
710
711
  */
711
712
  getCollapseRecursive(): boolean;
712
713
  /**
714
+ * @deprecated (since 1.117)
715
+ *
713
716
  * Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
714
717
  *
715
718
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
@@ -971,6 +974,8 @@ declare module "sap/ui/table/AnalyticalTable" {
971
974
  bCollapseRecursive?: boolean
972
975
  ): this;
973
976
  /**
977
+ * @deprecated (since 1.117)
978
+ *
974
979
  * Sets a new value for property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
975
980
  *
976
981
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
@@ -1201,6 +1206,8 @@ declare module "sap/ui/table/AnalyticalTable" {
1201
1206
  autoExpandMode?: string | PropertyBindingInfo;
1202
1207
 
1203
1208
  /**
1209
+ * @deprecated (since 1.117)
1210
+ *
1204
1211
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
1205
1212
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
1206
1213
  */
@@ -1341,6 +1348,7 @@ declare module "sap/ui/table/Column" {
1341
1348
  ): this;
1342
1349
  /**
1343
1350
  * @since 1.33.0
1351
+ * @deprecated (since 1.117)
1344
1352
  *
1345
1353
  * Attaches event handler `fnFunction` to the {@link #event:columnMenuOpen columnMenuOpen} event of this
1346
1354
  * `sap.ui.table.Column`.
@@ -1369,6 +1377,7 @@ declare module "sap/ui/table/Column" {
1369
1377
  ): this;
1370
1378
  /**
1371
1379
  * @since 1.33.0
1380
+ * @deprecated (since 1.117)
1372
1381
  *
1373
1382
  * Attaches event handler `fnFunction` to the {@link #event:columnMenuOpen columnMenuOpen} event of this
1374
1383
  * `sap.ui.table.Column`.
@@ -1397,6 +1406,8 @@ declare module "sap/ui/table/Column" {
1397
1406
  */
1398
1407
  destroyLabel(): this;
1399
1408
  /**
1409
+ * @deprecated (since 1.117) - use the `headerMenu` association instead.
1410
+ *
1400
1411
  * Destroys the menu in the aggregation {@link #getMenu menu}.
1401
1412
  *
1402
1413
  * @returns Reference to `this` in order to allow method chaining
@@ -1418,6 +1429,7 @@ declare module "sap/ui/table/Column" {
1418
1429
  destroyTemplate(): this;
1419
1430
  /**
1420
1431
  * @since 1.33.0
1432
+ * @deprecated (since 1.117)
1421
1433
  *
1422
1434
  * Detaches event handler `fnFunction` from the {@link #event:columnMenuOpen columnMenuOpen} event of this
1423
1435
  * `sap.ui.table.Column`.
@@ -1438,6 +1450,7 @@ declare module "sap/ui/table/Column" {
1438
1450
  ): this;
1439
1451
  /**
1440
1452
  * @since 1.33.0
1453
+ * @deprecated (since 1.117)
1441
1454
  * @ui5-protected Do not call from applications (only from related classes in the framework)
1442
1455
  *
1443
1456
  * Fires event {@link #event:columnMenuOpen columnMenuOpen} to attached listeners.
@@ -1619,6 +1632,8 @@ declare module "sap/ui/table/Column" {
1619
1632
  */
1620
1633
  getLabel(): Control | string;
1621
1634
  /**
1635
+ * @deprecated (since 1.117) - use the `headerMenu` association instead.
1636
+ *
1622
1637
  * Gets content of aggregation {@link #getMenu menu}.
1623
1638
  *
1624
1639
  * The menu used by the column. By default the {@link sap.ui.table.ColumnMenu} is used.
@@ -2082,6 +2097,8 @@ declare module "sap/ui/table/Column" {
2082
2097
  vLabel: Control | string
2083
2098
  ): this;
2084
2099
  /**
2100
+ * @deprecated (since 1.117) - use the `headerMenu` association instead.
2101
+ *
2085
2102
  * Sets the aggregated {@link #getMenu menu}.
2086
2103
  *
2087
2104
  * @returns Reference to `this` in order to allow method chaining
@@ -2536,6 +2553,8 @@ declare module "sap/ui/table/Column" {
2536
2553
  template?: string | Control | PropertyBindingInfo;
2537
2554
 
2538
2555
  /**
2556
+ * @deprecated (since 1.117) - use the `headerMenu` association instead.
2557
+ *
2539
2558
  * The menu used by the column. By default the {@link sap.ui.table.ColumnMenu} is used.
2540
2559
  *
2541
2560
  * **Note:** Applications must not use or change the default `sap.ui.table.ColumnMenu` of a column in any
@@ -2553,6 +2572,7 @@ declare module "sap/ui/table/Column" {
2553
2572
 
2554
2573
  /**
2555
2574
  * @since 1.33.0
2575
+ * @deprecated (since 1.117)
2556
2576
  *
2557
2577
  * Fires before the column menu is opened.
2558
2578
  */
@@ -2566,7 +2586,10 @@ declare module "sap/ui/table/Column" {
2566
2586
  menu?: Menu;
2567
2587
  }
2568
2588
 
2569
- export type Column$ColumnMenuOpenEvent = Event<Column$ColumnMenuOpenEventParameters>;
2589
+ export type Column$ColumnMenuOpenEvent = Event<
2590
+ Column$ColumnMenuOpenEventParameters,
2591
+ Column
2592
+ >;
2570
2593
  }
2571
2594
 
2572
2595
  declare module "sap/ui/table/ColumnMenu" {
@@ -2575,6 +2598,8 @@ declare module "sap/ui/table/ColumnMenu" {
2575
2598
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2576
2599
 
2577
2600
  /**
2601
+ * @deprecated (since 1.117) - use the {@link sap.m.table.columnmenu.Menu} instead.
2602
+ *
2578
2603
  * The column menu provides all common actions that can be performed on a column.
2579
2604
  */
2580
2605
  export default class ColumnMenu extends Menu {
@@ -3134,7 +3159,10 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
3134
3159
  customPayload?: object;
3135
3160
  }
3136
3161
 
3137
- export type MultiSelectionPlugin$SelectionChangeEvent = Event<MultiSelectionPlugin$SelectionChangeEventParameters>;
3162
+ export type MultiSelectionPlugin$SelectionChangeEvent = Event<
3163
+ MultiSelectionPlugin$SelectionChangeEventParameters,
3164
+ MultiSelectionPlugin
3165
+ >;
3138
3166
  }
3139
3167
 
3140
3168
  declare module "sap/ui/table/plugins/SelectionPlugin" {
@@ -3317,7 +3345,10 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
3317
3345
 
3318
3346
  export interface SelectionPlugin$SelectionChangeEventParameters {}
3319
3347
 
3320
- export type SelectionPlugin$SelectionChangeEvent = Event<SelectionPlugin$SelectionChangeEventParameters>;
3348
+ export type SelectionPlugin$SelectionChangeEvent = Event<
3349
+ SelectionPlugin$SelectionChangeEventParameters,
3350
+ SelectionPlugin
3351
+ >;
3321
3352
  }
3322
3353
 
3323
3354
  declare module "sap/ui/table/Row" {
@@ -3990,7 +4021,10 @@ declare module "sap/ui/table/RowActionItem" {
3990
4021
  row?: Row;
3991
4022
  }
3992
4023
 
3993
- export type RowActionItem$PressEvent = Event<RowActionItem$PressEventParameters>;
4024
+ export type RowActionItem$PressEvent = Event<
4025
+ RowActionItem$PressEventParameters,
4026
+ RowActionItem
4027
+ >;
3994
4028
  }
3995
4029
 
3996
4030
  declare module "sap/ui/table/RowSettings" {
@@ -4813,6 +4847,8 @@ declare module "sap/ui/table/Table" {
4813
4847
  oListener?: object
4814
4848
  ): this;
4815
4849
  /**
4850
+ * @deprecated (since 1.117)
4851
+ *
4816
4852
  * Attaches event handler `fnFunction` to the {@link #event:columnVisibility columnVisibility} event of
4817
4853
  * this `sap.ui.table.Table`.
4818
4854
  *
@@ -4839,6 +4875,8 @@ declare module "sap/ui/table/Table" {
4839
4875
  oListener?: object
4840
4876
  ): this;
4841
4877
  /**
4878
+ * @deprecated (since 1.117)
4879
+ *
4842
4880
  * Attaches event handler `fnFunction` to the {@link #event:columnVisibility columnVisibility} event of
4843
4881
  * this `sap.ui.table.Table`.
4844
4882
  *
@@ -5540,6 +5578,8 @@ declare module "sap/ui/table/Table" {
5540
5578
  oListener?: object
5541
5579
  ): this;
5542
5580
  /**
5581
+ * @deprecated (since 1.117)
5582
+ *
5543
5583
  * Detaches event handler `fnFunction` from the {@link #event:columnVisibility columnVisibility} event of
5544
5584
  * this `sap.ui.table.Table`.
5545
5585
  *
@@ -5868,6 +5908,7 @@ declare module "sap/ui/table/Table" {
5868
5908
  mParameters?: Table$ColumnSelectEventParameters
5869
5909
  ): boolean;
5870
5910
  /**
5911
+ * @deprecated (since 1.117)
5871
5912
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5872
5913
  *
5873
5914
  * Fires event {@link #event:columnVisibility columnVisibility} to attached listeners.
@@ -6485,6 +6526,9 @@ declare module "sap/ui/table/Table" {
6485
6526
  */
6486
6527
  getSelectionMode(): SelectionMode | keyof typeof SelectionMode;
6487
6528
  /**
6529
+ * @deprecated (since 1.117) - use a `ColumnMenu` with a custom menu item in the `headerMenu` association
6530
+ * instead.
6531
+ *
6488
6532
  * Gets current value of property {@link #getShowColumnVisibilityMenu showColumnVisibilityMenu}.
6489
6533
  *
6490
6534
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
@@ -7387,6 +7431,9 @@ declare module "sap/ui/table/Table" {
7387
7431
  sSelectionMode: SelectionMode | keyof typeof SelectionMode
7388
7432
  ): this;
7389
7433
  /**
7434
+ * @deprecated (since 1.117) - use a `ColumnMenu` with a custom menu item in the `headerMenu` association
7435
+ * instead.
7436
+ *
7390
7437
  * Sets a new value for property {@link #getShowColumnVisibilityMenu showColumnVisibilityMenu}.
7391
7438
  *
7392
7439
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
@@ -7739,6 +7786,9 @@ declare module "sap/ui/table/Table" {
7739
7786
  enableGrouping?: boolean | PropertyBindingInfo | `{${string}}`;
7740
7787
 
7741
7788
  /**
7789
+ * @deprecated (since 1.117) - use a `ColumnMenu` with a custom menu item in the `headerMenu` association
7790
+ * instead.
7791
+ *
7742
7792
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
7743
7793
  * header menu. It allows to show or hide columns
7744
7794
  */
@@ -8037,6 +8087,8 @@ declare module "sap/ui/table/Table" {
8037
8087
  group?: (oEvent: Table$GroupEvent) => void;
8038
8088
 
8039
8089
  /**
8090
+ * @deprecated (since 1.117)
8091
+ *
8040
8092
  * fired when the visibility of a table column is changed.
8041
8093
  */
8042
8094
  columnVisibility?: (oEvent: Table$ColumnVisibilityEvent) => void;
@@ -8131,7 +8183,10 @@ declare module "sap/ui/table/Table" {
8131
8183
  contextMenu?: IContextMenu;
8132
8184
  }
8133
8185
 
8134
- export type Table$BeforeOpenContextMenuEvent = Event<Table$BeforeOpenContextMenuEventParameters>;
8186
+ export type Table$BeforeOpenContextMenuEvent = Event<
8187
+ Table$BeforeOpenContextMenuEventParameters,
8188
+ Table
8189
+ >;
8135
8190
 
8136
8191
  export interface Table$BusyStateChangedEventParameters {
8137
8192
  /**
@@ -8140,7 +8195,10 @@ declare module "sap/ui/table/Table" {
8140
8195
  busy?: boolean;
8141
8196
  }
8142
8197
 
8143
- export type Table$BusyStateChangedEvent = Event<Table$BusyStateChangedEventParameters>;
8198
+ export type Table$BusyStateChangedEvent = Event<
8199
+ Table$BusyStateChangedEventParameters,
8200
+ Table
8201
+ >;
8144
8202
 
8145
8203
  export interface Table$CellClickEventParameters {
8146
8204
  /**
@@ -8175,7 +8233,10 @@ declare module "sap/ui/table/Table" {
8175
8233
  rowBindingContext?: Context;
8176
8234
  }
8177
8235
 
8178
- export type Table$CellClickEvent = Event<Table$CellClickEventParameters>;
8236
+ export type Table$CellClickEvent = Event<
8237
+ Table$CellClickEventParameters,
8238
+ Table
8239
+ >;
8179
8240
 
8180
8241
  export interface Table$CellContextmenuEventParameters {
8181
8242
  /**
@@ -8210,7 +8271,10 @@ declare module "sap/ui/table/Table" {
8210
8271
  rowBindingContext?: Context;
8211
8272
  }
8212
8273
 
8213
- export type Table$CellContextmenuEvent = Event<Table$CellContextmenuEventParameters>;
8274
+ export type Table$CellContextmenuEvent = Event<
8275
+ Table$CellContextmenuEventParameters,
8276
+ Table
8277
+ >;
8214
8278
 
8215
8279
  export interface Table$ColumnFreezeEventParameters {
8216
8280
  /**
@@ -8219,7 +8283,10 @@ declare module "sap/ui/table/Table" {
8219
8283
  column?: Column;
8220
8284
  }
8221
8285
 
8222
- export type Table$ColumnFreezeEvent = Event<Table$ColumnFreezeEventParameters>;
8286
+ export type Table$ColumnFreezeEvent = Event<
8287
+ Table$ColumnFreezeEventParameters,
8288
+ Table
8289
+ >;
8223
8290
 
8224
8291
  export interface Table$ColumnMoveEventParameters {
8225
8292
  /**
@@ -8233,7 +8300,10 @@ declare module "sap/ui/table/Table" {
8233
8300
  newPos?: int;
8234
8301
  }
8235
8302
 
8236
- export type Table$ColumnMoveEvent = Event<Table$ColumnMoveEventParameters>;
8303
+ export type Table$ColumnMoveEvent = Event<
8304
+ Table$ColumnMoveEventParameters,
8305
+ Table
8306
+ >;
8237
8307
 
8238
8308
  export interface Table$ColumnResizeEventParameters {
8239
8309
  /**
@@ -8247,7 +8317,10 @@ declare module "sap/ui/table/Table" {
8247
8317
  width?: CSSSize;
8248
8318
  }
8249
8319
 
8250
- export type Table$ColumnResizeEvent = Event<Table$ColumnResizeEventParameters>;
8320
+ export type Table$ColumnResizeEvent = Event<
8321
+ Table$ColumnResizeEventParameters,
8322
+ Table
8323
+ >;
8251
8324
 
8252
8325
  export interface Table$ColumnSelectEventParameters {
8253
8326
  /**
@@ -8256,7 +8329,10 @@ declare module "sap/ui/table/Table" {
8256
8329
  column?: Column;
8257
8330
  }
8258
8331
 
8259
- export type Table$ColumnSelectEvent = Event<Table$ColumnSelectEventParameters>;
8332
+ export type Table$ColumnSelectEvent = Event<
8333
+ Table$ColumnSelectEventParameters,
8334
+ Table
8335
+ >;
8260
8336
 
8261
8337
  export interface Table$ColumnVisibilityEventParameters {
8262
8338
  /**
@@ -8270,7 +8346,10 @@ declare module "sap/ui/table/Table" {
8270
8346
  newVisible?: boolean;
8271
8347
  }
8272
8348
 
8273
- export type Table$ColumnVisibilityEvent = Event<Table$ColumnVisibilityEventParameters>;
8349
+ export type Table$ColumnVisibilityEvent = Event<
8350
+ Table$ColumnVisibilityEventParameters,
8351
+ Table
8352
+ >;
8274
8353
 
8275
8354
  export interface Table$CustomFilterEventParameters {
8276
8355
  /**
@@ -8284,7 +8363,10 @@ declare module "sap/ui/table/Table" {
8284
8363
  value?: string;
8285
8364
  }
8286
8365
 
8287
- export type Table$CustomFilterEvent = Event<Table$CustomFilterEventParameters>;
8366
+ export type Table$CustomFilterEvent = Event<
8367
+ Table$CustomFilterEventParameters,
8368
+ Table
8369
+ >;
8288
8370
 
8289
8371
  export interface Table$FilterEventParameters {
8290
8372
  /**
@@ -8298,7 +8380,7 @@ declare module "sap/ui/table/Table" {
8298
8380
  value?: string;
8299
8381
  }
8300
8382
 
8301
- export type Table$FilterEvent = Event<Table$FilterEventParameters>;
8383
+ export type Table$FilterEvent = Event<Table$FilterEventParameters, Table>;
8302
8384
 
8303
8385
  export interface Table$FirstVisibleRowChangedEventParameters {
8304
8386
  /**
@@ -8307,7 +8389,10 @@ declare module "sap/ui/table/Table" {
8307
8389
  firstVisibleRow?: int;
8308
8390
  }
8309
8391
 
8310
- export type Table$FirstVisibleRowChangedEvent = Event<Table$FirstVisibleRowChangedEventParameters>;
8392
+ export type Table$FirstVisibleRowChangedEvent = Event<
8393
+ Table$FirstVisibleRowChangedEventParameters,
8394
+ Table
8395
+ >;
8311
8396
 
8312
8397
  export interface Table$GroupEventParameters {
8313
8398
  /**
@@ -8316,7 +8401,7 @@ declare module "sap/ui/table/Table" {
8316
8401
  column?: Column;
8317
8402
  }
8318
8403
 
8319
- export type Table$GroupEvent = Event<Table$GroupEventParameters>;
8404
+ export type Table$GroupEvent = Event<Table$GroupEventParameters, Table>;
8320
8405
 
8321
8406
  export interface Table$PasteEventParameters {
8322
8407
  /**
@@ -8326,7 +8411,7 @@ declare module "sap/ui/table/Table" {
8326
8411
  data?: string[][];
8327
8412
  }
8328
8413
 
8329
- export type Table$PasteEvent = Event<Table$PasteEventParameters>;
8414
+ export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
8330
8415
 
8331
8416
  export interface Table$RowSelectionChangeEventParameters {
8332
8417
  /**
@@ -8356,11 +8441,17 @@ declare module "sap/ui/table/Table" {
8356
8441
  userInteraction?: boolean;
8357
8442
  }
8358
8443
 
8359
- export type Table$RowSelectionChangeEvent = Event<Table$RowSelectionChangeEventParameters>;
8444
+ export type Table$RowSelectionChangeEvent = Event<
8445
+ Table$RowSelectionChangeEventParameters,
8446
+ Table
8447
+ >;
8360
8448
 
8361
8449
  export interface Table$RowsUpdatedEventParameters {}
8362
8450
 
8363
- export type Table$RowsUpdatedEvent = Event<Table$RowsUpdatedEventParameters>;
8451
+ export type Table$RowsUpdatedEvent = Event<
8452
+ Table$RowsUpdatedEventParameters,
8453
+ Table
8454
+ >;
8364
8455
 
8365
8456
  export interface Table$SortEventParameters {
8366
8457
  /**
@@ -8379,7 +8470,7 @@ declare module "sap/ui/table/Table" {
8379
8470
  columnAdded?: boolean;
8380
8471
  }
8381
8472
 
8382
- export type Table$SortEvent = Event<Table$SortEventParameters>;
8473
+ export type Table$SortEvent = Event<Table$SortEventParameters, Table>;
8383
8474
  }
8384
8475
 
8385
8476
  declare module "sap/ui/table/TablePersoController" {
@@ -9425,7 +9516,10 @@ declare module "sap/ui/table/TreeTable" {
9425
9516
  expanded?: boolean;
9426
9517
  }
9427
9518
 
9428
- export type TreeTable$ToggleOpenStateEvent = Event<TreeTable$ToggleOpenStateEventParameters>;
9519
+ export type TreeTable$ToggleOpenStateEvent = Event<
9520
+ TreeTable$ToggleOpenStateEventParameters,
9521
+ TreeTable
9522
+ >;
9429
9523
  }
9430
9524
 
9431
9525
  declare namespace sap {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4