@openui5/types 1.120.11 → 1.120.13
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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +372 -54
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +118 -18
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/suite/library" {
|
|
4
4
|
/**
|
|
@@ -378,7 +378,13 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
378
378
|
iValue?: int
|
|
379
379
|
): this;
|
|
380
380
|
}
|
|
381
|
-
|
|
381
|
+
/**
|
|
382
|
+
* Describes the settings that can be provided to the TaskCircle constructor.
|
|
383
|
+
*
|
|
384
|
+
* @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
|
|
385
|
+
* known
|
|
386
|
+
* @experimental (since 1.2) - The API may change. Use with care.
|
|
387
|
+
*/
|
|
382
388
|
export interface $TaskCircleSettings extends $ControlSettings {
|
|
383
389
|
/**
|
|
384
390
|
* Current value of the task circle to be displayed. In dependency of the parameters maxValue and minValue
|
|
@@ -420,8 +426,14 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
420
426
|
press?: (oEvent: Event) => void;
|
|
421
427
|
}
|
|
422
428
|
|
|
429
|
+
/**
|
|
430
|
+
* Parameters of the TaskCircle#press event.
|
|
431
|
+
*/
|
|
423
432
|
export interface TaskCircle$PressEventParameters {}
|
|
424
433
|
|
|
434
|
+
/**
|
|
435
|
+
* Event object of the TaskCircle#press event.
|
|
436
|
+
*/
|
|
425
437
|
export type TaskCircle$PressEvent = Event<
|
|
426
438
|
TaskCircle$PressEventParameters,
|
|
427
439
|
TaskCircle
|
|
@@ -684,7 +696,13 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
684
696
|
*/
|
|
685
697
|
setPercentage(iPercentage: int): this;
|
|
686
698
|
}
|
|
687
|
-
|
|
699
|
+
/**
|
|
700
|
+
* Describes the settings that can be provided to the VerticalProgressIndicator constructor.
|
|
701
|
+
*
|
|
702
|
+
* @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
|
|
703
|
+
* known
|
|
704
|
+
* @experimental (since 1.2) - The API may change. Use with care.
|
|
705
|
+
*/
|
|
688
706
|
export interface $VerticalProgressIndicatorSettings extends $ControlSettings {
|
|
689
707
|
/**
|
|
690
708
|
* The numerical value between 0 and 100 which determines the height of the vertical bar. Values higher
|
|
@@ -708,8 +726,14 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
708
726
|
press?: (oEvent: Event) => void;
|
|
709
727
|
}
|
|
710
728
|
|
|
729
|
+
/**
|
|
730
|
+
* Parameters of the VerticalProgressIndicator#press event.
|
|
731
|
+
*/
|
|
711
732
|
export interface VerticalProgressIndicator$PressEventParameters {}
|
|
712
733
|
|
|
734
|
+
/**
|
|
735
|
+
* Event object of the VerticalProgressIndicator#press event.
|
|
736
|
+
*/
|
|
713
737
|
export type VerticalProgressIndicator$PressEvent = Event<
|
|
714
738
|
VerticalProgressIndicator$PressEventParameters,
|
|
715
739
|
VerticalProgressIndicator
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -442,7 +442,9 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
442
442
|
bSummed?: boolean
|
|
443
443
|
): this;
|
|
444
444
|
}
|
|
445
|
-
|
|
445
|
+
/**
|
|
446
|
+
* Describes the settings that can be provided to the AnalyticalColumn constructor.
|
|
447
|
+
*/
|
|
446
448
|
export interface $AnalyticalColumnSettings extends $ColumnSettings {
|
|
447
449
|
/**
|
|
448
450
|
* Defines the primary model property which is used inside the Column. In case of the analytical extension
|
|
@@ -565,7 +567,12 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
|
|
|
565
567
|
*/
|
|
566
568
|
static getMetadata(): ElementMetadata;
|
|
567
569
|
}
|
|
568
|
-
|
|
570
|
+
/**
|
|
571
|
+
* Describes the settings that can be provided to the AnalyticalColumnMenu constructor.
|
|
572
|
+
*
|
|
573
|
+
* @deprecated (since 1.117)
|
|
574
|
+
* @experimental (since 1.21)
|
|
575
|
+
*/
|
|
569
576
|
export interface $AnalyticalColumnMenuSettings extends $ColumnMenuSettings {}
|
|
570
577
|
}
|
|
571
578
|
|
|
@@ -1290,7 +1297,9 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1290
1297
|
*/
|
|
1291
1298
|
suspendUpdateAnalyticalInfo(): void;
|
|
1292
1299
|
}
|
|
1293
|
-
|
|
1300
|
+
/**
|
|
1301
|
+
* Describes the settings that can be provided to the AnalyticalTable constructor.
|
|
1302
|
+
*/
|
|
1294
1303
|
export interface $AnalyticalTableSettings extends $TableSettings {
|
|
1295
1304
|
/**
|
|
1296
1305
|
* Specifies if the total values should be displayed in the group headers or on bottom of the row. Does
|
|
@@ -1409,9 +1418,15 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1409
1418
|
group?: (oEvent: AnalyticalTable$GroupEvent) => void;
|
|
1410
1419
|
}
|
|
1411
1420
|
|
|
1421
|
+
/**
|
|
1422
|
+
* Parameters of the AnalyticalTable#group event.
|
|
1423
|
+
*/
|
|
1412
1424
|
export interface AnalyticalTable$GroupEventParameters
|
|
1413
1425
|
extends Table$GroupEventParameters {}
|
|
1414
1426
|
|
|
1427
|
+
/**
|
|
1428
|
+
* Event object of the AnalyticalTable#group event.
|
|
1429
|
+
*/
|
|
1415
1430
|
export type AnalyticalTable$GroupEvent = Event<
|
|
1416
1431
|
AnalyticalTable$GroupEventParameters,
|
|
1417
1432
|
AnalyticalTable
|
|
@@ -2565,7 +2580,9 @@ declare module "sap/ui/table/Column" {
|
|
|
2565
2580
|
*/
|
|
2566
2581
|
toggleSort(): void;
|
|
2567
2582
|
}
|
|
2568
|
-
|
|
2583
|
+
/**
|
|
2584
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
2585
|
+
*/
|
|
2569
2586
|
export interface $ColumnSettings extends $ElementSettings {
|
|
2570
2587
|
/**
|
|
2571
2588
|
* Width of the column in CSS units. Default value is `auto`, see
|
|
@@ -2823,6 +2840,11 @@ declare module "sap/ui/table/Column" {
|
|
|
2823
2840
|
columnMenuOpen?: (oEvent: Column$ColumnMenuOpenEvent) => void;
|
|
2824
2841
|
}
|
|
2825
2842
|
|
|
2843
|
+
/**
|
|
2844
|
+
* Parameters of the Column#columnMenuOpen event.
|
|
2845
|
+
*
|
|
2846
|
+
* @deprecated (since 1.117)
|
|
2847
|
+
*/
|
|
2826
2848
|
export interface Column$ColumnMenuOpenEventParameters {
|
|
2827
2849
|
/**
|
|
2828
2850
|
* Refence to the selected `menu` instance to be opened.
|
|
@@ -2830,6 +2852,11 @@ declare module "sap/ui/table/Column" {
|
|
|
2830
2852
|
menu?: Menu;
|
|
2831
2853
|
}
|
|
2832
2854
|
|
|
2855
|
+
/**
|
|
2856
|
+
* Event object of the Column#columnMenuOpen event.
|
|
2857
|
+
*
|
|
2858
|
+
* @deprecated (since 1.117)
|
|
2859
|
+
*/
|
|
2833
2860
|
export type Column$ColumnMenuOpenEvent = Event<
|
|
2834
2861
|
Column$ColumnMenuOpenEventParameters,
|
|
2835
2862
|
Column
|
|
@@ -2924,7 +2951,11 @@ declare module "sap/ui/table/ColumnMenu" {
|
|
|
2924
2951
|
*/
|
|
2925
2952
|
static getMetadata(): ElementMetadata;
|
|
2926
2953
|
}
|
|
2927
|
-
|
|
2954
|
+
/**
|
|
2955
|
+
* Describes the settings that can be provided to the ColumnMenu constructor.
|
|
2956
|
+
*
|
|
2957
|
+
* @deprecated (since 1.117) - use the {@link sap.m.table.columnmenu.Menu} instead.
|
|
2958
|
+
*/
|
|
2928
2959
|
export interface $ColumnMenuSettings extends $MenuSettings {}
|
|
2929
2960
|
}
|
|
2930
2961
|
|
|
@@ -3373,7 +3404,9 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3373
3404
|
bShowHeaderSelector?: boolean
|
|
3374
3405
|
): this;
|
|
3375
3406
|
}
|
|
3376
|
-
|
|
3407
|
+
/**
|
|
3408
|
+
* Describes the settings that can be provided to the MultiSelectionPlugin constructor.
|
|
3409
|
+
*/
|
|
3377
3410
|
export interface $MultiSelectionPluginSettings
|
|
3378
3411
|
extends $SelectionPluginSettings {
|
|
3379
3412
|
/**
|
|
@@ -3421,6 +3454,9 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3421
3454
|
) => void;
|
|
3422
3455
|
}
|
|
3423
3456
|
|
|
3457
|
+
/**
|
|
3458
|
+
* Parameters of the MultiSelectionPlugin#selectionChange event.
|
|
3459
|
+
*/
|
|
3424
3460
|
export interface MultiSelectionPlugin$SelectionChangeEventParameters
|
|
3425
3461
|
extends SelectionPlugin$SelectionChangeEventParameters {
|
|
3426
3462
|
/**
|
|
@@ -3439,6 +3475,9 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3439
3475
|
customPayload?: object;
|
|
3440
3476
|
}
|
|
3441
3477
|
|
|
3478
|
+
/**
|
|
3479
|
+
* Event object of the MultiSelectionPlugin#selectionChange event.
|
|
3480
|
+
*/
|
|
3442
3481
|
export type MultiSelectionPlugin$SelectionChangeEvent = Event<
|
|
3443
3482
|
MultiSelectionPlugin$SelectionChangeEventParameters,
|
|
3444
3483
|
MultiSelectionPlugin
|
|
@@ -3634,7 +3673,11 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3634
3673
|
bEnabled?: boolean
|
|
3635
3674
|
): this;
|
|
3636
3675
|
}
|
|
3637
|
-
|
|
3676
|
+
/**
|
|
3677
|
+
* Describes the settings that can be provided to the SelectionPlugin constructor.
|
|
3678
|
+
*
|
|
3679
|
+
* @experimental (since 1.64)
|
|
3680
|
+
*/
|
|
3638
3681
|
export interface $SelectionPluginSettings extends $ElementSettings {
|
|
3639
3682
|
/**
|
|
3640
3683
|
* Indicates whether this plugin is enabled.
|
|
@@ -3647,8 +3690,14 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3647
3690
|
selectionChange?: (oEvent: Event) => void;
|
|
3648
3691
|
}
|
|
3649
3692
|
|
|
3693
|
+
/**
|
|
3694
|
+
* Parameters of the SelectionPlugin#selectionChange event.
|
|
3695
|
+
*/
|
|
3650
3696
|
export interface SelectionPlugin$SelectionChangeEventParameters {}
|
|
3651
3697
|
|
|
3698
|
+
/**
|
|
3699
|
+
* Event object of the SelectionPlugin#selectionChange event.
|
|
3700
|
+
*/
|
|
3652
3701
|
export type SelectionPlugin$SelectionChangeEvent = Event<
|
|
3653
3702
|
SelectionPlugin$SelectionChangeEventParameters,
|
|
3654
3703
|
SelectionPlugin
|
|
@@ -3818,7 +3867,9 @@ declare module "sap/ui/table/Row" {
|
|
|
3818
3867
|
vCell: int | string | Control
|
|
3819
3868
|
): Control | null;
|
|
3820
3869
|
}
|
|
3821
|
-
|
|
3870
|
+
/**
|
|
3871
|
+
* Describes the settings that can be provided to the Row constructor.
|
|
3872
|
+
*/
|
|
3822
3873
|
export interface $RowSettings extends $ElementSettings {
|
|
3823
3874
|
/**
|
|
3824
3875
|
* The actual cells are a table-internal construct. The controls in this aggregation are the content of
|
|
@@ -4018,7 +4069,9 @@ declare module "sap/ui/table/RowAction" {
|
|
|
4018
4069
|
bVisible?: boolean
|
|
4019
4070
|
): this;
|
|
4020
4071
|
}
|
|
4021
|
-
|
|
4072
|
+
/**
|
|
4073
|
+
* Describes the settings that can be provided to the RowAction constructor.
|
|
4074
|
+
*/
|
|
4022
4075
|
export interface $RowActionSettings extends $ControlSettings {
|
|
4023
4076
|
/**
|
|
4024
4077
|
* Whether the control should be visible on the screen. If set to `false`, the control is hidden.
|
|
@@ -4313,7 +4366,9 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4313
4366
|
bVisible?: boolean
|
|
4314
4367
|
): this;
|
|
4315
4368
|
}
|
|
4316
|
-
|
|
4369
|
+
/**
|
|
4370
|
+
* Describes the settings that can be provided to the RowActionItem constructor.
|
|
4371
|
+
*/
|
|
4317
4372
|
export interface $RowActionItemSettings extends $ElementSettings {
|
|
4318
4373
|
/**
|
|
4319
4374
|
* The icon of the item.
|
|
@@ -4345,6 +4400,9 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4345
4400
|
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
4346
4401
|
}
|
|
4347
4402
|
|
|
4403
|
+
/**
|
|
4404
|
+
* Parameters of the RowActionItem#press event.
|
|
4405
|
+
*/
|
|
4348
4406
|
export interface RowActionItem$PressEventParameters {
|
|
4349
4407
|
/**
|
|
4350
4408
|
* The item which was pressed.
|
|
@@ -4357,6 +4415,9 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4357
4415
|
row?: Row;
|
|
4358
4416
|
}
|
|
4359
4417
|
|
|
4418
|
+
/**
|
|
4419
|
+
* Event object of the RowActionItem#press event.
|
|
4420
|
+
*/
|
|
4360
4421
|
export type RowActionItem$PressEvent = Event<
|
|
4361
4422
|
RowActionItem$PressEventParameters,
|
|
4362
4423
|
RowActionItem
|
|
@@ -4603,7 +4664,9 @@ declare module "sap/ui/table/rowmodes/Auto" {
|
|
|
4603
4664
|
iRowContentHeight?: int
|
|
4604
4665
|
): this;
|
|
4605
4666
|
}
|
|
4606
|
-
|
|
4667
|
+
/**
|
|
4668
|
+
* Describes the settings that can be provided to the Auto constructor.
|
|
4669
|
+
*/
|
|
4607
4670
|
export interface $AutoSettings extends $RowModeSettings {
|
|
4608
4671
|
/**
|
|
4609
4672
|
* The minimum number of displayed rows.
|
|
@@ -4844,7 +4907,9 @@ declare module "sap/ui/table/rowmodes/Fixed" {
|
|
|
4844
4907
|
iRowCount?: int
|
|
4845
4908
|
): this;
|
|
4846
4909
|
}
|
|
4847
|
-
|
|
4910
|
+
/**
|
|
4911
|
+
* Describes the settings that can be provided to the Fixed constructor.
|
|
4912
|
+
*/
|
|
4848
4913
|
export interface $FixedSettings extends $RowModeSettings {
|
|
4849
4914
|
/**
|
|
4850
4915
|
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
@@ -5086,7 +5151,9 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5086
5151
|
iRowCount?: int
|
|
5087
5152
|
): this;
|
|
5088
5153
|
}
|
|
5089
|
-
|
|
5154
|
+
/**
|
|
5155
|
+
* Describes the settings that can be provided to the Interactive constructor.
|
|
5156
|
+
*/
|
|
5090
5157
|
export interface $InteractiveSettings extends $RowModeSettings {
|
|
5091
5158
|
/**
|
|
5092
5159
|
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
@@ -5201,7 +5268,9 @@ declare module "sap/ui/table/rowmodes/RowMode" {
|
|
|
5201
5268
|
*/
|
|
5202
5269
|
static getMetadata(): ElementMetadata;
|
|
5203
5270
|
}
|
|
5204
|
-
|
|
5271
|
+
/**
|
|
5272
|
+
* Describes the settings that can be provided to the RowMode constructor.
|
|
5273
|
+
*/
|
|
5205
5274
|
export interface $RowModeSettings extends $ElementSettings {}
|
|
5206
5275
|
}
|
|
5207
5276
|
|
|
@@ -5426,7 +5495,9 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
5426
5495
|
bNavigated?: boolean
|
|
5427
5496
|
): this;
|
|
5428
5497
|
}
|
|
5429
|
-
|
|
5498
|
+
/**
|
|
5499
|
+
* Describes the settings that can be provided to the RowSettings constructor.
|
|
5500
|
+
*/
|
|
5430
5501
|
export interface $RowSettingsSettings extends $ElementSettings {
|
|
5431
5502
|
/**
|
|
5432
5503
|
* The highlight state of the rows.
|
|
@@ -9016,7 +9087,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9016
9087
|
*/
|
|
9017
9088
|
unbindRows(): this;
|
|
9018
9089
|
}
|
|
9019
|
-
|
|
9090
|
+
/**
|
|
9091
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
9092
|
+
*/
|
|
9020
9093
|
export interface $TableSettings extends $ControlSettings {
|
|
9021
9094
|
/**
|
|
9022
9095
|
* Width of the Table.
|
|
@@ -9570,6 +9643,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9570
9643
|
rowsUpdated?: (oEvent: Event) => void;
|
|
9571
9644
|
}
|
|
9572
9645
|
|
|
9646
|
+
/**
|
|
9647
|
+
* Parameters of the Table#beforeOpenContextMenu event.
|
|
9648
|
+
*/
|
|
9573
9649
|
export interface Table$BeforeOpenContextMenuEventParameters {
|
|
9574
9650
|
/**
|
|
9575
9651
|
* Row index where the context menu opens.
|
|
@@ -9587,11 +9663,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9587
9663
|
contextMenu?: IContextMenu;
|
|
9588
9664
|
}
|
|
9589
9665
|
|
|
9666
|
+
/**
|
|
9667
|
+
* Event object of the Table#beforeOpenContextMenu event.
|
|
9668
|
+
*/
|
|
9590
9669
|
export type Table$BeforeOpenContextMenuEvent = Event<
|
|
9591
9670
|
Table$BeforeOpenContextMenuEventParameters,
|
|
9592
9671
|
Table
|
|
9593
9672
|
>;
|
|
9594
9673
|
|
|
9674
|
+
/**
|
|
9675
|
+
* Parameters of the Table#busyStateChanged event.
|
|
9676
|
+
*/
|
|
9595
9677
|
export interface Table$BusyStateChangedEventParameters {
|
|
9596
9678
|
/**
|
|
9597
9679
|
* busy state
|
|
@@ -9599,11 +9681,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9599
9681
|
busy?: boolean;
|
|
9600
9682
|
}
|
|
9601
9683
|
|
|
9684
|
+
/**
|
|
9685
|
+
* Event object of the Table#busyStateChanged event.
|
|
9686
|
+
*/
|
|
9602
9687
|
export type Table$BusyStateChangedEvent = Event<
|
|
9603
9688
|
Table$BusyStateChangedEventParameters,
|
|
9604
9689
|
Table
|
|
9605
9690
|
>;
|
|
9606
9691
|
|
|
9692
|
+
/**
|
|
9693
|
+
* Parameters of the Table#cellClick event.
|
|
9694
|
+
*/
|
|
9607
9695
|
export interface Table$CellClickEventParameters {
|
|
9608
9696
|
/**
|
|
9609
9697
|
* The control of the cell.
|
|
@@ -9637,11 +9725,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9637
9725
|
rowBindingContext?: Context;
|
|
9638
9726
|
}
|
|
9639
9727
|
|
|
9728
|
+
/**
|
|
9729
|
+
* Event object of the Table#cellClick event.
|
|
9730
|
+
*/
|
|
9640
9731
|
export type Table$CellClickEvent = Event<
|
|
9641
9732
|
Table$CellClickEventParameters,
|
|
9642
9733
|
Table
|
|
9643
9734
|
>;
|
|
9644
9735
|
|
|
9736
|
+
/**
|
|
9737
|
+
* Parameters of the Table#cellContextmenu event.
|
|
9738
|
+
*
|
|
9739
|
+
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
9740
|
+
*/
|
|
9645
9741
|
export interface Table$CellContextmenuEventParameters {
|
|
9646
9742
|
/**
|
|
9647
9743
|
* The control of the cell.
|
|
@@ -9675,11 +9771,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9675
9771
|
rowBindingContext?: Context;
|
|
9676
9772
|
}
|
|
9677
9773
|
|
|
9774
|
+
/**
|
|
9775
|
+
* Event object of the Table#cellContextmenu event.
|
|
9776
|
+
*
|
|
9777
|
+
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
9778
|
+
*/
|
|
9678
9779
|
export type Table$CellContextmenuEvent = Event<
|
|
9679
9780
|
Table$CellContextmenuEventParameters,
|
|
9680
9781
|
Table
|
|
9681
9782
|
>;
|
|
9682
9783
|
|
|
9784
|
+
/**
|
|
9785
|
+
* Parameters of the Table#columnFreeze event.
|
|
9786
|
+
*/
|
|
9683
9787
|
export interface Table$ColumnFreezeEventParameters {
|
|
9684
9788
|
/**
|
|
9685
9789
|
* reference to the column to freeze
|
|
@@ -9687,11 +9791,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9687
9791
|
column?: Column;
|
|
9688
9792
|
}
|
|
9689
9793
|
|
|
9794
|
+
/**
|
|
9795
|
+
* Event object of the Table#columnFreeze event.
|
|
9796
|
+
*/
|
|
9690
9797
|
export type Table$ColumnFreezeEvent = Event<
|
|
9691
9798
|
Table$ColumnFreezeEventParameters,
|
|
9692
9799
|
Table
|
|
9693
9800
|
>;
|
|
9694
9801
|
|
|
9802
|
+
/**
|
|
9803
|
+
* Parameters of the Table#columnMove event.
|
|
9804
|
+
*/
|
|
9695
9805
|
export interface Table$ColumnMoveEventParameters {
|
|
9696
9806
|
/**
|
|
9697
9807
|
* moved column.
|
|
@@ -9704,11 +9814,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9704
9814
|
newPos?: int;
|
|
9705
9815
|
}
|
|
9706
9816
|
|
|
9817
|
+
/**
|
|
9818
|
+
* Event object of the Table#columnMove event.
|
|
9819
|
+
*/
|
|
9707
9820
|
export type Table$ColumnMoveEvent = Event<
|
|
9708
9821
|
Table$ColumnMoveEventParameters,
|
|
9709
9822
|
Table
|
|
9710
9823
|
>;
|
|
9711
9824
|
|
|
9825
|
+
/**
|
|
9826
|
+
* Parameters of the Table#columnResize event.
|
|
9827
|
+
*/
|
|
9712
9828
|
export interface Table$ColumnResizeEventParameters {
|
|
9713
9829
|
/**
|
|
9714
9830
|
* resized column.
|
|
@@ -9721,11 +9837,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9721
9837
|
width?: CSSSize;
|
|
9722
9838
|
}
|
|
9723
9839
|
|
|
9840
|
+
/**
|
|
9841
|
+
* Event object of the Table#columnResize event.
|
|
9842
|
+
*/
|
|
9724
9843
|
export type Table$ColumnResizeEvent = Event<
|
|
9725
9844
|
Table$ColumnResizeEventParameters,
|
|
9726
9845
|
Table
|
|
9727
9846
|
>;
|
|
9728
9847
|
|
|
9848
|
+
/**
|
|
9849
|
+
* Parameters of the Table#columnSelect event.
|
|
9850
|
+
*
|
|
9851
|
+
* @deprecated (since 1.117)
|
|
9852
|
+
*/
|
|
9729
9853
|
export interface Table$ColumnSelectEventParameters {
|
|
9730
9854
|
/**
|
|
9731
9855
|
* reference to the selected column
|
|
@@ -9733,11 +9857,21 @@ declare module "sap/ui/table/Table" {
|
|
|
9733
9857
|
column?: Column;
|
|
9734
9858
|
}
|
|
9735
9859
|
|
|
9860
|
+
/**
|
|
9861
|
+
* Event object of the Table#columnSelect event.
|
|
9862
|
+
*
|
|
9863
|
+
* @deprecated (since 1.117)
|
|
9864
|
+
*/
|
|
9736
9865
|
export type Table$ColumnSelectEvent = Event<
|
|
9737
9866
|
Table$ColumnSelectEventParameters,
|
|
9738
9867
|
Table
|
|
9739
9868
|
>;
|
|
9740
9869
|
|
|
9870
|
+
/**
|
|
9871
|
+
* Parameters of the Table#columnVisibility event.
|
|
9872
|
+
*
|
|
9873
|
+
* @deprecated (since 1.117)
|
|
9874
|
+
*/
|
|
9741
9875
|
export interface Table$ColumnVisibilityEventParameters {
|
|
9742
9876
|
/**
|
|
9743
9877
|
* affected column.
|
|
@@ -9750,11 +9884,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9750
9884
|
newVisible?: boolean;
|
|
9751
9885
|
}
|
|
9752
9886
|
|
|
9887
|
+
/**
|
|
9888
|
+
* Event object of the Table#columnVisibility event.
|
|
9889
|
+
*
|
|
9890
|
+
* @deprecated (since 1.117)
|
|
9891
|
+
*/
|
|
9753
9892
|
export type Table$ColumnVisibilityEvent = Event<
|
|
9754
9893
|
Table$ColumnVisibilityEventParameters,
|
|
9755
9894
|
Table
|
|
9756
9895
|
>;
|
|
9757
9896
|
|
|
9897
|
+
/**
|
|
9898
|
+
* Parameters of the Table#customFilter event.
|
|
9899
|
+
*/
|
|
9758
9900
|
export interface Table$CustomFilterEventParameters {
|
|
9759
9901
|
/**
|
|
9760
9902
|
* The column instance on which the custom filter button was pressed.
|
|
@@ -9767,11 +9909,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9767
9909
|
value?: string;
|
|
9768
9910
|
}
|
|
9769
9911
|
|
|
9912
|
+
/**
|
|
9913
|
+
* Event object of the Table#customFilter event.
|
|
9914
|
+
*/
|
|
9770
9915
|
export type Table$CustomFilterEvent = Event<
|
|
9771
9916
|
Table$CustomFilterEventParameters,
|
|
9772
9917
|
Table
|
|
9773
9918
|
>;
|
|
9774
9919
|
|
|
9920
|
+
/**
|
|
9921
|
+
* Parameters of the Table#filter event.
|
|
9922
|
+
*/
|
|
9775
9923
|
export interface Table$FilterEventParameters {
|
|
9776
9924
|
/**
|
|
9777
9925
|
* filtered column.
|
|
@@ -9784,8 +9932,14 @@ declare module "sap/ui/table/Table" {
|
|
|
9784
9932
|
value?: string;
|
|
9785
9933
|
}
|
|
9786
9934
|
|
|
9935
|
+
/**
|
|
9936
|
+
* Event object of the Table#filter event.
|
|
9937
|
+
*/
|
|
9787
9938
|
export type Table$FilterEvent = Event<Table$FilterEventParameters, Table>;
|
|
9788
9939
|
|
|
9940
|
+
/**
|
|
9941
|
+
* Parameters of the Table#firstVisibleRowChanged event.
|
|
9942
|
+
*/
|
|
9789
9943
|
export interface Table$FirstVisibleRowChangedEventParameters {
|
|
9790
9944
|
/**
|
|
9791
9945
|
* First visible row
|
|
@@ -9793,11 +9947,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9793
9947
|
firstVisibleRow?: int;
|
|
9794
9948
|
}
|
|
9795
9949
|
|
|
9950
|
+
/**
|
|
9951
|
+
* Event object of the Table#firstVisibleRowChanged event.
|
|
9952
|
+
*/
|
|
9796
9953
|
export type Table$FirstVisibleRowChangedEvent = Event<
|
|
9797
9954
|
Table$FirstVisibleRowChangedEventParameters,
|
|
9798
9955
|
Table
|
|
9799
9956
|
>;
|
|
9800
9957
|
|
|
9958
|
+
/**
|
|
9959
|
+
* Parameters of the Table#group event.
|
|
9960
|
+
*
|
|
9961
|
+
* @deprecated (since 1.118)
|
|
9962
|
+
*/
|
|
9801
9963
|
export interface Table$GroupEventParameters {
|
|
9802
9964
|
/**
|
|
9803
9965
|
* grouped column.
|
|
@@ -9805,8 +9967,16 @@ declare module "sap/ui/table/Table" {
|
|
|
9805
9967
|
column?: Column;
|
|
9806
9968
|
}
|
|
9807
9969
|
|
|
9970
|
+
/**
|
|
9971
|
+
* Event object of the Table#group event.
|
|
9972
|
+
*
|
|
9973
|
+
* @deprecated (since 1.118)
|
|
9974
|
+
*/
|
|
9808
9975
|
export type Table$GroupEvent = Event<Table$GroupEventParameters, Table>;
|
|
9809
9976
|
|
|
9977
|
+
/**
|
|
9978
|
+
* Parameters of the Table#paste event.
|
|
9979
|
+
*/
|
|
9810
9980
|
export interface Table$PasteEventParameters {
|
|
9811
9981
|
/**
|
|
9812
9982
|
* 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
|
|
@@ -9815,8 +9985,14 @@ declare module "sap/ui/table/Table" {
|
|
|
9815
9985
|
data?: string[][];
|
|
9816
9986
|
}
|
|
9817
9987
|
|
|
9988
|
+
/**
|
|
9989
|
+
* Event object of the Table#paste event.
|
|
9990
|
+
*/
|
|
9818
9991
|
export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
|
|
9819
9992
|
|
|
9993
|
+
/**
|
|
9994
|
+
* Parameters of the Table#rowSelectionChange event.
|
|
9995
|
+
*/
|
|
9820
9996
|
export interface Table$RowSelectionChangeEventParameters {
|
|
9821
9997
|
/**
|
|
9822
9998
|
* row index which has been clicked so that the selection has been changed (either selected or deselected)
|
|
@@ -9845,18 +10021,30 @@ declare module "sap/ui/table/Table" {
|
|
|
9845
10021
|
userInteraction?: boolean;
|
|
9846
10022
|
}
|
|
9847
10023
|
|
|
10024
|
+
/**
|
|
10025
|
+
* Event object of the Table#rowSelectionChange event.
|
|
10026
|
+
*/
|
|
9848
10027
|
export type Table$RowSelectionChangeEvent = Event<
|
|
9849
10028
|
Table$RowSelectionChangeEventParameters,
|
|
9850
10029
|
Table
|
|
9851
10030
|
>;
|
|
9852
10031
|
|
|
10032
|
+
/**
|
|
10033
|
+
* Parameters of the Table#rowsUpdated event.
|
|
10034
|
+
*/
|
|
9853
10035
|
export interface Table$RowsUpdatedEventParameters {}
|
|
9854
10036
|
|
|
10037
|
+
/**
|
|
10038
|
+
* Event object of the Table#rowsUpdated event.
|
|
10039
|
+
*/
|
|
9855
10040
|
export type Table$RowsUpdatedEvent = Event<
|
|
9856
10041
|
Table$RowsUpdatedEventParameters,
|
|
9857
10042
|
Table
|
|
9858
10043
|
>;
|
|
9859
10044
|
|
|
10045
|
+
/**
|
|
10046
|
+
* Parameters of the Table#sort event.
|
|
10047
|
+
*/
|
|
9860
10048
|
export interface Table$SortEventParameters {
|
|
9861
10049
|
/**
|
|
9862
10050
|
* The column for which the sorting is changed
|
|
@@ -9874,6 +10062,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9874
10062
|
columnAdded?: boolean;
|
|
9875
10063
|
}
|
|
9876
10064
|
|
|
10065
|
+
/**
|
|
10066
|
+
* Event object of the Table#sort event.
|
|
10067
|
+
*/
|
|
9877
10068
|
export type Table$SortEvent = Event<Table$SortEventParameters, Table>;
|
|
9878
10069
|
}
|
|
9879
10070
|
|
|
@@ -10169,7 +10360,11 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
10169
10360
|
oTable: ID | Table
|
|
10170
10361
|
): this;
|
|
10171
10362
|
}
|
|
10172
|
-
|
|
10363
|
+
/**
|
|
10364
|
+
* Describes the settings that can be provided to the TablePersoController constructor.
|
|
10365
|
+
*
|
|
10366
|
+
* @deprecated (since 1.115) - Please use the {@link sap.m.p13n.Engine Engine} for personalization instead.
|
|
10367
|
+
*/
|
|
10173
10368
|
export interface $TablePersoControllerSettings
|
|
10174
10369
|
extends $ManagedObjectSettings {
|
|
10175
10370
|
/**
|
|
@@ -10853,7 +11048,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10853
11048
|
bUseGroupMode?: boolean
|
|
10854
11049
|
): this;
|
|
10855
11050
|
}
|
|
10856
|
-
|
|
11051
|
+
/**
|
|
11052
|
+
* Describes the settings that can be provided to the TreeTable constructor.
|
|
11053
|
+
*/
|
|
10857
11054
|
export interface $TreeTableSettings extends $TableSettings {
|
|
10858
11055
|
/**
|
|
10859
11056
|
* Specifies whether the first level is expanded.
|
|
@@ -10942,6 +11139,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10942
11139
|
toggleOpenState?: (oEvent: TreeTable$ToggleOpenStateEvent) => void;
|
|
10943
11140
|
}
|
|
10944
11141
|
|
|
11142
|
+
/**
|
|
11143
|
+
* Parameters of the TreeTable#toggleOpenState event.
|
|
11144
|
+
*/
|
|
10945
11145
|
export interface TreeTable$ToggleOpenStateEventParameters {
|
|
10946
11146
|
/**
|
|
10947
11147
|
* Index of the expanded/collapsed row
|
|
@@ -10959,6 +11159,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10959
11159
|
expanded?: boolean;
|
|
10960
11160
|
}
|
|
10961
11161
|
|
|
11162
|
+
/**
|
|
11163
|
+
* Event object of the TreeTable#toggleOpenState event.
|
|
11164
|
+
*/
|
|
10962
11165
|
export type TreeTable$ToggleOpenStateEvent = Event<
|
|
10963
11166
|
TreeTable$ToggleOpenStateEventParameters,
|
|
10964
11167
|
TreeTable
|