@openui5/ts-types 1.122.0 → 1.123.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +432 -46
- package/types/sap.m.d.ts +3962 -124
- package/types/sap.tnt.d.ts +46 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/sap.ui.commons.d.ts +792 -30
- package/types/sap.ui.core.d.ts +2194 -1540
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -1
- package/types/sap.ui.integration.d.ts +147 -5
- package/types/sap.ui.layout.d.ts +171 -8
- package/types/sap.ui.mdc.d.ts +554 -33
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -57
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -9
- package/types/sap.ui.ux3.d.ts +527 -5
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uxap.d.ts +123 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -150,6 +150,11 @@ declare namespace sap {
|
|
|
150
150
|
__implements__sap_ui_webc_fiori_IWizardStep: boolean;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
+
/**
|
|
154
|
+
* Describes the settings that can be provided to the Bar constructor.
|
|
155
|
+
*
|
|
156
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
157
|
+
*/
|
|
153
158
|
interface $BarSettings extends sap.ui.core.webc.$WebComponentSettings {
|
|
154
159
|
/**
|
|
155
160
|
* Defines the component's design.
|
|
@@ -195,6 +200,11 @@ declare namespace sap {
|
|
|
195
200
|
| `{${string}}`;
|
|
196
201
|
}
|
|
197
202
|
|
|
203
|
+
/**
|
|
204
|
+
* Describes the settings that can be provided to the BarcodeScannerDialog constructor.
|
|
205
|
+
*
|
|
206
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
207
|
+
*/
|
|
198
208
|
interface $BarcodeScannerDialogSettings
|
|
199
209
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
200
210
|
/**
|
|
@@ -208,6 +218,11 @@ declare namespace sap {
|
|
|
208
218
|
scanSuccess?: (oEvent: BarcodeScannerDialog$ScanSuccessEvent) => void;
|
|
209
219
|
}
|
|
210
220
|
|
|
221
|
+
/**
|
|
222
|
+
* Describes the settings that can be provided to the DynamicSideContent constructor.
|
|
223
|
+
*
|
|
224
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
225
|
+
*/
|
|
211
226
|
interface $DynamicSideContentSettings
|
|
212
227
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
213
228
|
/**
|
|
@@ -314,6 +329,11 @@ declare namespace sap {
|
|
|
314
329
|
layoutChange?: (oEvent: DynamicSideContent$LayoutChangeEvent) => void;
|
|
315
330
|
}
|
|
316
331
|
|
|
332
|
+
/**
|
|
333
|
+
* Describes the settings that can be provided to the FilterItem constructor.
|
|
334
|
+
*
|
|
335
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
336
|
+
*/
|
|
317
337
|
interface $FilterItemSettings
|
|
318
338
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
319
339
|
/**
|
|
@@ -338,6 +358,11 @@ declare namespace sap {
|
|
|
338
358
|
| `{${string}}`;
|
|
339
359
|
}
|
|
340
360
|
|
|
361
|
+
/**
|
|
362
|
+
* Describes the settings that can be provided to the FilterItemOption constructor.
|
|
363
|
+
*
|
|
364
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
365
|
+
*/
|
|
341
366
|
interface $FilterItemOptionSettings
|
|
342
367
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
343
368
|
/**
|
|
@@ -354,6 +379,11 @@ declare namespace sap {
|
|
|
354
379
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
355
380
|
}
|
|
356
381
|
|
|
382
|
+
/**
|
|
383
|
+
* Describes the settings that can be provided to the FlexibleColumnLayout constructor.
|
|
384
|
+
*
|
|
385
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
386
|
+
*/
|
|
357
387
|
interface $FlexibleColumnLayoutSettings
|
|
358
388
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
359
389
|
/**
|
|
@@ -462,6 +492,11 @@ declare namespace sap {
|
|
|
462
492
|
) => void;
|
|
463
493
|
}
|
|
464
494
|
|
|
495
|
+
/**
|
|
496
|
+
* Describes the settings that can be provided to the IllustratedMessage constructor.
|
|
497
|
+
*
|
|
498
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
499
|
+
*/
|
|
465
500
|
interface $IllustratedMessageSettings
|
|
466
501
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
467
502
|
name?:
|
|
@@ -534,6 +569,11 @@ declare namespace sap {
|
|
|
534
569
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
535
570
|
}
|
|
536
571
|
|
|
572
|
+
/**
|
|
573
|
+
* Describes the settings that can be provided to the MediaGallery constructor.
|
|
574
|
+
*
|
|
575
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
576
|
+
*/
|
|
537
577
|
interface $MediaGallerySettings
|
|
538
578
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
539
579
|
/**
|
|
@@ -625,6 +665,11 @@ declare namespace sap {
|
|
|
625
665
|
selectionChange?: (oEvent: MediaGallery$SelectionChangeEvent) => void;
|
|
626
666
|
}
|
|
627
667
|
|
|
668
|
+
/**
|
|
669
|
+
* Describes the settings that can be provided to the MediaGalleryItem constructor.
|
|
670
|
+
*
|
|
671
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
672
|
+
*/
|
|
628
673
|
interface $MediaGalleryItemSettings
|
|
629
674
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
630
675
|
/**
|
|
@@ -667,6 +712,11 @@ declare namespace sap {
|
|
|
667
712
|
thumbnail?: sap.ui.core.Control;
|
|
668
713
|
}
|
|
669
714
|
|
|
715
|
+
/**
|
|
716
|
+
* Describes the settings that can be provided to the NotificationAction constructor.
|
|
717
|
+
*
|
|
718
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
719
|
+
*/
|
|
670
720
|
interface $NotificationActionSettings
|
|
671
721
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
672
722
|
/**
|
|
@@ -705,6 +755,11 @@ declare namespace sap {
|
|
|
705
755
|
click?: (oEvent: NotificationAction$ClickEvent) => void;
|
|
706
756
|
}
|
|
707
757
|
|
|
758
|
+
/**
|
|
759
|
+
* Describes the settings that can be provided to the NotificationListGroupItem constructor.
|
|
760
|
+
*
|
|
761
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
762
|
+
*/
|
|
708
763
|
interface $NotificationListGroupItemSettings
|
|
709
764
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
710
765
|
/**
|
|
@@ -810,6 +865,11 @@ declare namespace sap {
|
|
|
810
865
|
toggle?: (oEvent: sap.ui.base.Event) => void;
|
|
811
866
|
}
|
|
812
867
|
|
|
868
|
+
/**
|
|
869
|
+
* Describes the settings that can be provided to the NotificationListItem constructor.
|
|
870
|
+
*
|
|
871
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
872
|
+
*/
|
|
813
873
|
interface $NotificationListItemSettings
|
|
814
874
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
815
875
|
/**
|
|
@@ -922,6 +982,11 @@ declare namespace sap {
|
|
|
922
982
|
close?: (oEvent: NotificationListItem$CloseEvent) => void;
|
|
923
983
|
}
|
|
924
984
|
|
|
985
|
+
/**
|
|
986
|
+
* Describes the settings that can be provided to the Page constructor.
|
|
987
|
+
*
|
|
988
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
989
|
+
*/
|
|
925
990
|
interface $PageSettings extends sap.ui.core.webc.$WebComponentSettings {
|
|
926
991
|
/**
|
|
927
992
|
* Defines the background color of the `sap.ui.webc.fiori.Page`.
|
|
@@ -997,6 +1062,11 @@ declare namespace sap {
|
|
|
997
1062
|
header?: sap.ui.webc.fiori.IBar;
|
|
998
1063
|
}
|
|
999
1064
|
|
|
1065
|
+
/**
|
|
1066
|
+
* Describes the settings that can be provided to the ProductSwitch constructor.
|
|
1067
|
+
*
|
|
1068
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1069
|
+
*/
|
|
1000
1070
|
interface $ProductSwitchSettings
|
|
1001
1071
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1002
1072
|
/**
|
|
@@ -1009,6 +1079,11 @@ declare namespace sap {
|
|
|
1009
1079
|
| `{${string}}`;
|
|
1010
1080
|
}
|
|
1011
1081
|
|
|
1082
|
+
/**
|
|
1083
|
+
* Describes the settings that can be provided to the ProductSwitchItem constructor.
|
|
1084
|
+
*
|
|
1085
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1086
|
+
*/
|
|
1012
1087
|
interface $ProductSwitchItemSettings
|
|
1013
1088
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1014
1089
|
/**
|
|
@@ -1058,6 +1133,11 @@ declare namespace sap {
|
|
|
1058
1133
|
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1059
1134
|
}
|
|
1060
1135
|
|
|
1136
|
+
/**
|
|
1137
|
+
* Describes the settings that can be provided to the ShellBar constructor.
|
|
1138
|
+
*
|
|
1139
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1140
|
+
*/
|
|
1061
1141
|
interface $ShellBarSettings
|
|
1062
1142
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1063
1143
|
/**
|
|
@@ -1248,6 +1328,11 @@ declare namespace sap {
|
|
|
1248
1328
|
profileClick?: (oEvent: ShellBar$ProfileClickEvent) => void;
|
|
1249
1329
|
}
|
|
1250
1330
|
|
|
1331
|
+
/**
|
|
1332
|
+
* Describes the settings that can be provided to the ShellBarItem constructor.
|
|
1333
|
+
*
|
|
1334
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1335
|
+
*/
|
|
1251
1336
|
interface $ShellBarItemSettings
|
|
1252
1337
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1253
1338
|
/**
|
|
@@ -1273,6 +1358,11 @@ declare namespace sap {
|
|
|
1273
1358
|
click?: (oEvent: ShellBarItem$ClickEvent) => void;
|
|
1274
1359
|
}
|
|
1275
1360
|
|
|
1361
|
+
/**
|
|
1362
|
+
* Describes the settings that can be provided to the SideNavigation constructor.
|
|
1363
|
+
*
|
|
1364
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1365
|
+
*/
|
|
1276
1366
|
interface $SideNavigationSettings
|
|
1277
1367
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1278
1368
|
/**
|
|
@@ -1329,6 +1419,11 @@ declare namespace sap {
|
|
|
1329
1419
|
) => void;
|
|
1330
1420
|
}
|
|
1331
1421
|
|
|
1422
|
+
/**
|
|
1423
|
+
* Describes the settings that can be provided to the SideNavigationItem constructor.
|
|
1424
|
+
*
|
|
1425
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1426
|
+
*/
|
|
1332
1427
|
interface $SideNavigationItemSettings
|
|
1333
1428
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1334
1429
|
/**
|
|
@@ -1388,6 +1483,11 @@ declare namespace sap {
|
|
|
1388
1483
|
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1389
1484
|
}
|
|
1390
1485
|
|
|
1486
|
+
/**
|
|
1487
|
+
* Describes the settings that can be provided to the SideNavigationSubItem constructor.
|
|
1488
|
+
*
|
|
1489
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1490
|
+
*/
|
|
1391
1491
|
interface $SideNavigationSubItemSettings
|
|
1392
1492
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1393
1493
|
/**
|
|
@@ -1419,6 +1519,11 @@ declare namespace sap {
|
|
|
1419
1519
|
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1420
1520
|
}
|
|
1421
1521
|
|
|
1522
|
+
/**
|
|
1523
|
+
* Describes the settings that can be provided to the SortItem constructor.
|
|
1524
|
+
*
|
|
1525
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
1526
|
+
*/
|
|
1422
1527
|
interface $SortItemSettings
|
|
1423
1528
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1424
1529
|
/**
|
|
@@ -1435,6 +1540,11 @@ declare namespace sap {
|
|
|
1435
1540
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1436
1541
|
}
|
|
1437
1542
|
|
|
1543
|
+
/**
|
|
1544
|
+
* Describes the settings that can be provided to the Timeline constructor.
|
|
1545
|
+
*
|
|
1546
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1547
|
+
*/
|
|
1438
1548
|
interface $TimelineSettings
|
|
1439
1549
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1440
1550
|
/**
|
|
@@ -1484,6 +1594,11 @@ declare namespace sap {
|
|
|
1484
1594
|
| `{${string}}`;
|
|
1485
1595
|
}
|
|
1486
1596
|
|
|
1597
|
+
/**
|
|
1598
|
+
* Describes the settings that can be provided to the TimelineItem constructor.
|
|
1599
|
+
*
|
|
1600
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1601
|
+
*/
|
|
1487
1602
|
interface $TimelineItemSettings
|
|
1488
1603
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1489
1604
|
/**
|
|
@@ -1536,6 +1651,11 @@ declare namespace sap {
|
|
|
1536
1651
|
nameClick?: (oEvent: sap.ui.base.Event) => void;
|
|
1537
1652
|
}
|
|
1538
1653
|
|
|
1654
|
+
/**
|
|
1655
|
+
* Describes the settings that can be provided to the UploadCollection constructor.
|
|
1656
|
+
*
|
|
1657
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1658
|
+
*/
|
|
1539
1659
|
interface $UploadCollectionSettings
|
|
1540
1660
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1541
1661
|
/**
|
|
@@ -1640,6 +1760,11 @@ declare namespace sap {
|
|
|
1640
1760
|
) => void;
|
|
1641
1761
|
}
|
|
1642
1762
|
|
|
1763
|
+
/**
|
|
1764
|
+
* Describes the settings that can be provided to the UploadCollectionItem constructor.
|
|
1765
|
+
*
|
|
1766
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1767
|
+
*/
|
|
1643
1768
|
interface $UploadCollectionItemSettings
|
|
1644
1769
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1645
1770
|
/**
|
|
@@ -1823,6 +1948,11 @@ declare namespace sap {
|
|
|
1823
1948
|
terminate?: (oEvent: sap.ui.base.Event) => void;
|
|
1824
1949
|
}
|
|
1825
1950
|
|
|
1951
|
+
/**
|
|
1952
|
+
* Describes the settings that can be provided to the ViewSettingsDialog constructor.
|
|
1953
|
+
*
|
|
1954
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
1955
|
+
*/
|
|
1826
1956
|
interface $ViewSettingsDialogSettings
|
|
1827
1957
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1828
1958
|
/**
|
|
@@ -1861,6 +1991,11 @@ declare namespace sap {
|
|
|
1861
1991
|
confirm?: (oEvent: ViewSettingsDialog$ConfirmEvent) => void;
|
|
1862
1992
|
}
|
|
1863
1993
|
|
|
1994
|
+
/**
|
|
1995
|
+
* Describes the settings that can be provided to the Wizard constructor.
|
|
1996
|
+
*
|
|
1997
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1998
|
+
*/
|
|
1864
1999
|
interface $WizardSettings
|
|
1865
2000
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1866
2001
|
/**
|
|
@@ -1897,6 +2032,11 @@ declare namespace sap {
|
|
|
1897
2032
|
stepChange?: (oEvent: Wizard$StepChangeEvent) => void;
|
|
1898
2033
|
}
|
|
1899
2034
|
|
|
2035
|
+
/**
|
|
2036
|
+
* Describes the settings that can be provided to the WizardStep constructor.
|
|
2037
|
+
*
|
|
2038
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
2039
|
+
*/
|
|
1900
2040
|
interface $WizardStepSettings
|
|
1901
2041
|
extends sap.ui.core.webc.$WebComponentSettings {
|
|
1902
2042
|
/**
|
|
@@ -1976,6 +2116,9 @@ declare namespace sap {
|
|
|
1976
2116
|
| `{${string}}`;
|
|
1977
2117
|
}
|
|
1978
2118
|
|
|
2119
|
+
/**
|
|
2120
|
+
* Parameters of the BarcodeScannerDialog#scanError event.
|
|
2121
|
+
*/
|
|
1979
2122
|
interface BarcodeScannerDialog$ScanErrorEventParameters {
|
|
1980
2123
|
/**
|
|
1981
2124
|
* the error message
|
|
@@ -1983,6 +2126,9 @@ declare namespace sap {
|
|
|
1983
2126
|
message?: string;
|
|
1984
2127
|
}
|
|
1985
2128
|
|
|
2129
|
+
/**
|
|
2130
|
+
* Parameters of the BarcodeScannerDialog#scanSuccess event.
|
|
2131
|
+
*/
|
|
1986
2132
|
interface BarcodeScannerDialog$ScanSuccessEventParameters {
|
|
1987
2133
|
/**
|
|
1988
2134
|
* the scan result as string
|
|
@@ -1995,6 +2141,9 @@ declare namespace sap {
|
|
|
1995
2141
|
rawBytes?: object;
|
|
1996
2142
|
}
|
|
1997
2143
|
|
|
2144
|
+
/**
|
|
2145
|
+
* Parameters of the DynamicSideContent#layoutChange event.
|
|
2146
|
+
*/
|
|
1998
2147
|
interface DynamicSideContent$LayoutChangeEventParameters {
|
|
1999
2148
|
/**
|
|
2000
2149
|
* the current breakpoint.
|
|
@@ -2017,6 +2166,9 @@ declare namespace sap {
|
|
|
2017
2166
|
sideContentVisible?: boolean;
|
|
2018
2167
|
}
|
|
2019
2168
|
|
|
2169
|
+
/**
|
|
2170
|
+
* Parameters of the FlexibleColumnLayout#layoutChange event.
|
|
2171
|
+
*/
|
|
2020
2172
|
interface FlexibleColumnLayout$LayoutChangeEventParameters {
|
|
2021
2173
|
/**
|
|
2022
2174
|
* The current layout
|
|
@@ -2054,10 +2206,19 @@ declare namespace sap {
|
|
|
2054
2206
|
resize?: boolean;
|
|
2055
2207
|
}
|
|
2056
2208
|
|
|
2209
|
+
/**
|
|
2210
|
+
* Parameters of the MediaGallery#displayAreaClick event.
|
|
2211
|
+
*/
|
|
2057
2212
|
interface MediaGallery$DisplayAreaClickEventParameters {}
|
|
2058
2213
|
|
|
2214
|
+
/**
|
|
2215
|
+
* Parameters of the MediaGallery#overflowClick event.
|
|
2216
|
+
*/
|
|
2059
2217
|
interface MediaGallery$OverflowClickEventParameters {}
|
|
2060
2218
|
|
|
2219
|
+
/**
|
|
2220
|
+
* Parameters of the MediaGallery#selectionChange event.
|
|
2221
|
+
*/
|
|
2061
2222
|
interface MediaGallery$SelectionChangeEventParameters {
|
|
2062
2223
|
/**
|
|
2063
2224
|
* the selected item.
|
|
@@ -2065,6 +2226,9 @@ declare namespace sap {
|
|
|
2065
2226
|
item?: HTMLElement;
|
|
2066
2227
|
}
|
|
2067
2228
|
|
|
2229
|
+
/**
|
|
2230
|
+
* Parameters of the NotificationAction#click event.
|
|
2231
|
+
*/
|
|
2068
2232
|
interface NotificationAction$ClickEventParameters {
|
|
2069
2233
|
/**
|
|
2070
2234
|
* DOM ref of the clicked element
|
|
@@ -2072,6 +2236,9 @@ declare namespace sap {
|
|
|
2072
2236
|
targetRef?: HTMLElement;
|
|
2073
2237
|
}
|
|
2074
2238
|
|
|
2239
|
+
/**
|
|
2240
|
+
* Parameters of the NotificationListGroupItem#close event.
|
|
2241
|
+
*/
|
|
2075
2242
|
interface NotificationListGroupItem$CloseEventParameters {
|
|
2076
2243
|
/**
|
|
2077
2244
|
* the closed item.
|
|
@@ -2079,8 +2246,14 @@ declare namespace sap {
|
|
|
2079
2246
|
item?: HTMLElement;
|
|
2080
2247
|
}
|
|
2081
2248
|
|
|
2249
|
+
/**
|
|
2250
|
+
* Parameters of the NotificationListGroupItem#toggle event.
|
|
2251
|
+
*/
|
|
2082
2252
|
interface NotificationListGroupItem$ToggleEventParameters {}
|
|
2083
2253
|
|
|
2254
|
+
/**
|
|
2255
|
+
* Parameters of the NotificationListItem#close event.
|
|
2256
|
+
*/
|
|
2084
2257
|
interface NotificationListItem$CloseEventParameters {
|
|
2085
2258
|
/**
|
|
2086
2259
|
* the closed item.
|
|
@@ -2088,8 +2261,14 @@ declare namespace sap {
|
|
|
2088
2261
|
item?: HTMLElement;
|
|
2089
2262
|
}
|
|
2090
2263
|
|
|
2264
|
+
/**
|
|
2265
|
+
* Parameters of the ProductSwitchItem#click event.
|
|
2266
|
+
*/
|
|
2091
2267
|
interface ProductSwitchItem$ClickEventParameters {}
|
|
2092
2268
|
|
|
2269
|
+
/**
|
|
2270
|
+
* Parameters of the ShellBar#coPilotClick event.
|
|
2271
|
+
*/
|
|
2093
2272
|
interface ShellBar$CoPilotClickEventParameters {
|
|
2094
2273
|
/**
|
|
2095
2274
|
* dom ref of the activated element
|
|
@@ -2097,6 +2276,9 @@ declare namespace sap {
|
|
|
2097
2276
|
targetRef?: HTMLElement;
|
|
2098
2277
|
}
|
|
2099
2278
|
|
|
2279
|
+
/**
|
|
2280
|
+
* Parameters of the ShellBar#logoClick event.
|
|
2281
|
+
*/
|
|
2100
2282
|
interface ShellBar$LogoClickEventParameters {
|
|
2101
2283
|
/**
|
|
2102
2284
|
* dom ref of the activated element
|
|
@@ -2104,6 +2286,9 @@ declare namespace sap {
|
|
|
2104
2286
|
targetRef?: HTMLElement;
|
|
2105
2287
|
}
|
|
2106
2288
|
|
|
2289
|
+
/**
|
|
2290
|
+
* Parameters of the ShellBar#menuItemClick event.
|
|
2291
|
+
*/
|
|
2107
2292
|
interface ShellBar$MenuItemClickEventParameters {
|
|
2108
2293
|
/**
|
|
2109
2294
|
* DOM ref of the activated list item
|
|
@@ -2111,6 +2296,9 @@ declare namespace sap {
|
|
|
2111
2296
|
item?: HTMLElement;
|
|
2112
2297
|
}
|
|
2113
2298
|
|
|
2299
|
+
/**
|
|
2300
|
+
* Parameters of the ShellBar#notificationsClick event.
|
|
2301
|
+
*/
|
|
2114
2302
|
interface ShellBar$NotificationsClickEventParameters {
|
|
2115
2303
|
/**
|
|
2116
2304
|
* dom ref of the activated element
|
|
@@ -2118,6 +2306,9 @@ declare namespace sap {
|
|
|
2118
2306
|
targetRef?: HTMLElement;
|
|
2119
2307
|
}
|
|
2120
2308
|
|
|
2309
|
+
/**
|
|
2310
|
+
* Parameters of the ShellBar#productSwitchClick event.
|
|
2311
|
+
*/
|
|
2121
2312
|
interface ShellBar$ProductSwitchClickEventParameters {
|
|
2122
2313
|
/**
|
|
2123
2314
|
* dom ref of the activated element
|
|
@@ -2125,6 +2316,9 @@ declare namespace sap {
|
|
|
2125
2316
|
targetRef?: HTMLElement;
|
|
2126
2317
|
}
|
|
2127
2318
|
|
|
2319
|
+
/**
|
|
2320
|
+
* Parameters of the ShellBar#profileClick event.
|
|
2321
|
+
*/
|
|
2128
2322
|
interface ShellBar$ProfileClickEventParameters {
|
|
2129
2323
|
/**
|
|
2130
2324
|
* dom ref of the activated element
|
|
@@ -2132,6 +2326,9 @@ declare namespace sap {
|
|
|
2132
2326
|
targetRef?: HTMLElement;
|
|
2133
2327
|
}
|
|
2134
2328
|
|
|
2329
|
+
/**
|
|
2330
|
+
* Parameters of the ShellBarItem#click event.
|
|
2331
|
+
*/
|
|
2135
2332
|
interface ShellBarItem$ClickEventParameters {
|
|
2136
2333
|
/**
|
|
2137
2334
|
* DOM ref of the clicked element
|
|
@@ -2139,6 +2336,9 @@ declare namespace sap {
|
|
|
2139
2336
|
targetRef?: HTMLElement;
|
|
2140
2337
|
}
|
|
2141
2338
|
|
|
2339
|
+
/**
|
|
2340
|
+
* Parameters of the SideNavigation#selectionChange event.
|
|
2341
|
+
*/
|
|
2142
2342
|
interface SideNavigation$SelectionChangeEventParameters {
|
|
2143
2343
|
/**
|
|
2144
2344
|
* the clicked item.
|
|
@@ -2148,12 +2348,24 @@ declare namespace sap {
|
|
|
2148
2348
|
| sap.ui.webc.fiori.ISideNavigationSubItem;
|
|
2149
2349
|
}
|
|
2150
2350
|
|
|
2351
|
+
/**
|
|
2352
|
+
* Parameters of the SideNavigationItem#click event.
|
|
2353
|
+
*/
|
|
2151
2354
|
interface SideNavigationItem$ClickEventParameters {}
|
|
2152
2355
|
|
|
2356
|
+
/**
|
|
2357
|
+
* Parameters of the SideNavigationSubItem#click event.
|
|
2358
|
+
*/
|
|
2153
2359
|
interface SideNavigationSubItem$ClickEventParameters {}
|
|
2154
2360
|
|
|
2361
|
+
/**
|
|
2362
|
+
* Parameters of the TimelineItem#nameClick event.
|
|
2363
|
+
*/
|
|
2155
2364
|
interface TimelineItem$NameClickEventParameters {}
|
|
2156
2365
|
|
|
2366
|
+
/**
|
|
2367
|
+
* Parameters of the UploadCollection#drop event.
|
|
2368
|
+
*/
|
|
2157
2369
|
interface UploadCollection$DropEventParameters {
|
|
2158
2370
|
/**
|
|
2159
2371
|
* The `drop` event operation data.
|
|
@@ -2161,6 +2373,9 @@ declare namespace sap {
|
|
|
2161
2373
|
dataTransfer?: DataTransfer;
|
|
2162
2374
|
}
|
|
2163
2375
|
|
|
2376
|
+
/**
|
|
2377
|
+
* Parameters of the UploadCollection#itemDelete event.
|
|
2378
|
+
*/
|
|
2164
2379
|
interface UploadCollection$ItemDeleteEventParameters {
|
|
2165
2380
|
/**
|
|
2166
2381
|
* The `sap.ui.webc.fiori.UploadCollectionItem` which was deleted.
|
|
@@ -2168,6 +2383,9 @@ declare namespace sap {
|
|
|
2168
2383
|
item?: HTMLElement;
|
|
2169
2384
|
}
|
|
2170
2385
|
|
|
2386
|
+
/**
|
|
2387
|
+
* Parameters of the UploadCollection#selectionChange event.
|
|
2388
|
+
*/
|
|
2171
2389
|
interface UploadCollection$SelectionChangeEventParameters {
|
|
2172
2390
|
/**
|
|
2173
2391
|
* An array of the selected items.
|
|
@@ -2175,18 +2393,39 @@ declare namespace sap {
|
|
|
2175
2393
|
selectedItems?: any[];
|
|
2176
2394
|
}
|
|
2177
2395
|
|
|
2396
|
+
/**
|
|
2397
|
+
* Parameters of the UploadCollectionItem#detailClick event.
|
|
2398
|
+
*/
|
|
2178
2399
|
interface UploadCollectionItem$DetailClickEventParameters {}
|
|
2179
2400
|
|
|
2401
|
+
/**
|
|
2402
|
+
* Parameters of the UploadCollectionItem#fileNameClick event.
|
|
2403
|
+
*/
|
|
2180
2404
|
interface UploadCollectionItem$FileNameClickEventParameters {}
|
|
2181
2405
|
|
|
2406
|
+
/**
|
|
2407
|
+
* Parameters of the UploadCollectionItem#rename event.
|
|
2408
|
+
*/
|
|
2182
2409
|
interface UploadCollectionItem$RenameEventParameters {}
|
|
2183
2410
|
|
|
2411
|
+
/**
|
|
2412
|
+
* Parameters of the UploadCollectionItem#retry event.
|
|
2413
|
+
*/
|
|
2184
2414
|
interface UploadCollectionItem$RetryEventParameters {}
|
|
2185
2415
|
|
|
2416
|
+
/**
|
|
2417
|
+
* Parameters of the UploadCollectionItem#terminate event.
|
|
2418
|
+
*/
|
|
2186
2419
|
interface UploadCollectionItem$TerminateEventParameters {}
|
|
2187
2420
|
|
|
2421
|
+
/**
|
|
2422
|
+
* Parameters of the ViewSettingsDialog#beforeOpen event.
|
|
2423
|
+
*/
|
|
2188
2424
|
interface ViewSettingsDialog$BeforeOpenEventParameters {}
|
|
2189
2425
|
|
|
2426
|
+
/**
|
|
2427
|
+
* Parameters of the ViewSettingsDialog#cancel event.
|
|
2428
|
+
*/
|
|
2190
2429
|
interface ViewSettingsDialog$CancelEventParameters {
|
|
2191
2430
|
/**
|
|
2192
2431
|
* The current sort order selected.
|
|
@@ -2214,6 +2453,9 @@ declare namespace sap {
|
|
|
2214
2453
|
filters?: any[];
|
|
2215
2454
|
}
|
|
2216
2455
|
|
|
2456
|
+
/**
|
|
2457
|
+
* Parameters of the ViewSettingsDialog#confirm event.
|
|
2458
|
+
*/
|
|
2217
2459
|
interface ViewSettingsDialog$ConfirmEventParameters {
|
|
2218
2460
|
/**
|
|
2219
2461
|
* The current sort order selected.
|
|
@@ -2241,6 +2483,9 @@ declare namespace sap {
|
|
|
2241
2483
|
filters?: any[];
|
|
2242
2484
|
}
|
|
2243
2485
|
|
|
2486
|
+
/**
|
|
2487
|
+
* Parameters of the Wizard#stepChange event.
|
|
2488
|
+
*/
|
|
2244
2489
|
interface Wizard$StepChangeEventParameters {
|
|
2245
2490
|
/**
|
|
2246
2491
|
* The new step.
|
|
@@ -15207,177 +15452,281 @@ declare namespace sap {
|
|
|
15207
15452
|
*/
|
|
15208
15453
|
SingleStep = "SingleStep",
|
|
15209
15454
|
}
|
|
15210
|
-
|
|
15455
|
+
/**
|
|
15456
|
+
* Event object of the BarcodeScannerDialog#scanError event.
|
|
15457
|
+
*/
|
|
15211
15458
|
type BarcodeScannerDialog$ScanErrorEvent = sap.ui.base.Event<
|
|
15212
15459
|
BarcodeScannerDialog$ScanErrorEventParameters,
|
|
15213
15460
|
BarcodeScannerDialog
|
|
15214
15461
|
>;
|
|
15215
15462
|
|
|
15463
|
+
/**
|
|
15464
|
+
* Event object of the BarcodeScannerDialog#scanSuccess event.
|
|
15465
|
+
*/
|
|
15216
15466
|
type BarcodeScannerDialog$ScanSuccessEvent = sap.ui.base.Event<
|
|
15217
15467
|
BarcodeScannerDialog$ScanSuccessEventParameters,
|
|
15218
15468
|
BarcodeScannerDialog
|
|
15219
15469
|
>;
|
|
15220
15470
|
|
|
15471
|
+
/**
|
|
15472
|
+
* Event object of the DynamicSideContent#layoutChange event.
|
|
15473
|
+
*/
|
|
15221
15474
|
type DynamicSideContent$LayoutChangeEvent = sap.ui.base.Event<
|
|
15222
15475
|
DynamicSideContent$LayoutChangeEventParameters,
|
|
15223
15476
|
DynamicSideContent
|
|
15224
15477
|
>;
|
|
15225
15478
|
|
|
15479
|
+
/**
|
|
15480
|
+
* Event object of the FlexibleColumnLayout#layoutChange event.
|
|
15481
|
+
*/
|
|
15226
15482
|
type FlexibleColumnLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
15227
15483
|
FlexibleColumnLayout$LayoutChangeEventParameters,
|
|
15228
15484
|
FlexibleColumnLayout
|
|
15229
15485
|
>;
|
|
15230
15486
|
|
|
15487
|
+
/**
|
|
15488
|
+
* Event object of the MediaGallery#displayAreaClick event.
|
|
15489
|
+
*/
|
|
15231
15490
|
type MediaGallery$DisplayAreaClickEvent = sap.ui.base.Event<
|
|
15232
15491
|
MediaGallery$DisplayAreaClickEventParameters,
|
|
15233
15492
|
MediaGallery
|
|
15234
15493
|
>;
|
|
15235
15494
|
|
|
15495
|
+
/**
|
|
15496
|
+
* Event object of the MediaGallery#overflowClick event.
|
|
15497
|
+
*/
|
|
15236
15498
|
type MediaGallery$OverflowClickEvent = sap.ui.base.Event<
|
|
15237
15499
|
MediaGallery$OverflowClickEventParameters,
|
|
15238
15500
|
MediaGallery
|
|
15239
15501
|
>;
|
|
15240
15502
|
|
|
15503
|
+
/**
|
|
15504
|
+
* Event object of the MediaGallery#selectionChange event.
|
|
15505
|
+
*/
|
|
15241
15506
|
type MediaGallery$SelectionChangeEvent = sap.ui.base.Event<
|
|
15242
15507
|
MediaGallery$SelectionChangeEventParameters,
|
|
15243
15508
|
MediaGallery
|
|
15244
15509
|
>;
|
|
15245
15510
|
|
|
15511
|
+
/**
|
|
15512
|
+
* Event object of the NotificationAction#click event.
|
|
15513
|
+
*/
|
|
15246
15514
|
type NotificationAction$ClickEvent = sap.ui.base.Event<
|
|
15247
15515
|
NotificationAction$ClickEventParameters,
|
|
15248
15516
|
NotificationAction
|
|
15249
15517
|
>;
|
|
15250
15518
|
|
|
15519
|
+
/**
|
|
15520
|
+
* Event object of the NotificationListGroupItem#close event.
|
|
15521
|
+
*/
|
|
15251
15522
|
type NotificationListGroupItem$CloseEvent = sap.ui.base.Event<
|
|
15252
15523
|
NotificationListGroupItem$CloseEventParameters,
|
|
15253
15524
|
NotificationListGroupItem
|
|
15254
15525
|
>;
|
|
15255
15526
|
|
|
15527
|
+
/**
|
|
15528
|
+
* Event object of the NotificationListGroupItem#toggle event.
|
|
15529
|
+
*/
|
|
15256
15530
|
type NotificationListGroupItem$ToggleEvent = sap.ui.base.Event<
|
|
15257
15531
|
NotificationListGroupItem$ToggleEventParameters,
|
|
15258
15532
|
NotificationListGroupItem
|
|
15259
15533
|
>;
|
|
15260
15534
|
|
|
15535
|
+
/**
|
|
15536
|
+
* Event object of the NotificationListItem#close event.
|
|
15537
|
+
*/
|
|
15261
15538
|
type NotificationListItem$CloseEvent = sap.ui.base.Event<
|
|
15262
15539
|
NotificationListItem$CloseEventParameters,
|
|
15263
15540
|
NotificationListItem
|
|
15264
15541
|
>;
|
|
15265
15542
|
|
|
15543
|
+
/**
|
|
15544
|
+
* Event object of the ProductSwitchItem#click event.
|
|
15545
|
+
*/
|
|
15266
15546
|
type ProductSwitchItem$ClickEvent = sap.ui.base.Event<
|
|
15267
15547
|
ProductSwitchItem$ClickEventParameters,
|
|
15268
15548
|
ProductSwitchItem
|
|
15269
15549
|
>;
|
|
15270
15550
|
|
|
15551
|
+
/**
|
|
15552
|
+
* Event object of the ShellBar#coPilotClick event.
|
|
15553
|
+
*/
|
|
15271
15554
|
type ShellBar$CoPilotClickEvent = sap.ui.base.Event<
|
|
15272
15555
|
ShellBar$CoPilotClickEventParameters,
|
|
15273
15556
|
ShellBar
|
|
15274
15557
|
>;
|
|
15275
15558
|
|
|
15559
|
+
/**
|
|
15560
|
+
* Event object of the ShellBar#logoClick event.
|
|
15561
|
+
*/
|
|
15276
15562
|
type ShellBar$LogoClickEvent = sap.ui.base.Event<
|
|
15277
15563
|
ShellBar$LogoClickEventParameters,
|
|
15278
15564
|
ShellBar
|
|
15279
15565
|
>;
|
|
15280
15566
|
|
|
15567
|
+
/**
|
|
15568
|
+
* Event object of the ShellBar#menuItemClick event.
|
|
15569
|
+
*/
|
|
15281
15570
|
type ShellBar$MenuItemClickEvent = sap.ui.base.Event<
|
|
15282
15571
|
ShellBar$MenuItemClickEventParameters,
|
|
15283
15572
|
ShellBar
|
|
15284
15573
|
>;
|
|
15285
15574
|
|
|
15575
|
+
/**
|
|
15576
|
+
* Event object of the ShellBar#notificationsClick event.
|
|
15577
|
+
*/
|
|
15286
15578
|
type ShellBar$NotificationsClickEvent = sap.ui.base.Event<
|
|
15287
15579
|
ShellBar$NotificationsClickEventParameters,
|
|
15288
15580
|
ShellBar
|
|
15289
15581
|
>;
|
|
15290
15582
|
|
|
15583
|
+
/**
|
|
15584
|
+
* Event object of the ShellBar#productSwitchClick event.
|
|
15585
|
+
*/
|
|
15291
15586
|
type ShellBar$ProductSwitchClickEvent = sap.ui.base.Event<
|
|
15292
15587
|
ShellBar$ProductSwitchClickEventParameters,
|
|
15293
15588
|
ShellBar
|
|
15294
15589
|
>;
|
|
15295
15590
|
|
|
15591
|
+
/**
|
|
15592
|
+
* Event object of the ShellBar#profileClick event.
|
|
15593
|
+
*/
|
|
15296
15594
|
type ShellBar$ProfileClickEvent = sap.ui.base.Event<
|
|
15297
15595
|
ShellBar$ProfileClickEventParameters,
|
|
15298
15596
|
ShellBar
|
|
15299
15597
|
>;
|
|
15300
15598
|
|
|
15599
|
+
/**
|
|
15600
|
+
* Event object of the ShellBarItem#click event.
|
|
15601
|
+
*/
|
|
15301
15602
|
type ShellBarItem$ClickEvent = sap.ui.base.Event<
|
|
15302
15603
|
ShellBarItem$ClickEventParameters,
|
|
15303
15604
|
ShellBarItem
|
|
15304
15605
|
>;
|
|
15305
15606
|
|
|
15607
|
+
/**
|
|
15608
|
+
* Event object of the SideNavigation#selectionChange event.
|
|
15609
|
+
*/
|
|
15306
15610
|
type SideNavigation$SelectionChangeEvent = sap.ui.base.Event<
|
|
15307
15611
|
SideNavigation$SelectionChangeEventParameters,
|
|
15308
15612
|
SideNavigation
|
|
15309
15613
|
>;
|
|
15310
15614
|
|
|
15615
|
+
/**
|
|
15616
|
+
* Event object of the SideNavigationItem#click event.
|
|
15617
|
+
*/
|
|
15311
15618
|
type SideNavigationItem$ClickEvent = sap.ui.base.Event<
|
|
15312
15619
|
SideNavigationItem$ClickEventParameters,
|
|
15313
15620
|
SideNavigationItem
|
|
15314
15621
|
>;
|
|
15315
15622
|
|
|
15623
|
+
/**
|
|
15624
|
+
* Event object of the SideNavigationSubItem#click event.
|
|
15625
|
+
*/
|
|
15316
15626
|
type SideNavigationSubItem$ClickEvent = sap.ui.base.Event<
|
|
15317
15627
|
SideNavigationSubItem$ClickEventParameters,
|
|
15318
15628
|
SideNavigationSubItem
|
|
15319
15629
|
>;
|
|
15320
15630
|
|
|
15631
|
+
/**
|
|
15632
|
+
* Event object of the TimelineItem#nameClick event.
|
|
15633
|
+
*/
|
|
15321
15634
|
type TimelineItem$NameClickEvent = sap.ui.base.Event<
|
|
15322
15635
|
TimelineItem$NameClickEventParameters,
|
|
15323
15636
|
TimelineItem
|
|
15324
15637
|
>;
|
|
15325
15638
|
|
|
15639
|
+
/**
|
|
15640
|
+
* Event object of the UploadCollection#drop event.
|
|
15641
|
+
*/
|
|
15326
15642
|
type UploadCollection$DropEvent = sap.ui.base.Event<
|
|
15327
15643
|
UploadCollection$DropEventParameters,
|
|
15328
15644
|
UploadCollection
|
|
15329
15645
|
>;
|
|
15330
15646
|
|
|
15647
|
+
/**
|
|
15648
|
+
* Event object of the UploadCollection#itemDelete event.
|
|
15649
|
+
*/
|
|
15331
15650
|
type UploadCollection$ItemDeleteEvent = sap.ui.base.Event<
|
|
15332
15651
|
UploadCollection$ItemDeleteEventParameters,
|
|
15333
15652
|
UploadCollection
|
|
15334
15653
|
>;
|
|
15335
15654
|
|
|
15655
|
+
/**
|
|
15656
|
+
* Event object of the UploadCollection#selectionChange event.
|
|
15657
|
+
*/
|
|
15336
15658
|
type UploadCollection$SelectionChangeEvent = sap.ui.base.Event<
|
|
15337
15659
|
UploadCollection$SelectionChangeEventParameters,
|
|
15338
15660
|
UploadCollection
|
|
15339
15661
|
>;
|
|
15340
15662
|
|
|
15663
|
+
/**
|
|
15664
|
+
* Event object of the UploadCollectionItem#detailClick event.
|
|
15665
|
+
*/
|
|
15341
15666
|
type UploadCollectionItem$DetailClickEvent = sap.ui.base.Event<
|
|
15342
15667
|
UploadCollectionItem$DetailClickEventParameters,
|
|
15343
15668
|
UploadCollectionItem
|
|
15344
15669
|
>;
|
|
15345
15670
|
|
|
15671
|
+
/**
|
|
15672
|
+
* Event object of the UploadCollectionItem#fileNameClick event.
|
|
15673
|
+
*/
|
|
15346
15674
|
type UploadCollectionItem$FileNameClickEvent = sap.ui.base.Event<
|
|
15347
15675
|
UploadCollectionItem$FileNameClickEventParameters,
|
|
15348
15676
|
UploadCollectionItem
|
|
15349
15677
|
>;
|
|
15350
15678
|
|
|
15679
|
+
/**
|
|
15680
|
+
* Event object of the UploadCollectionItem#rename event.
|
|
15681
|
+
*/
|
|
15351
15682
|
type UploadCollectionItem$RenameEvent = sap.ui.base.Event<
|
|
15352
15683
|
UploadCollectionItem$RenameEventParameters,
|
|
15353
15684
|
UploadCollectionItem
|
|
15354
15685
|
>;
|
|
15355
15686
|
|
|
15687
|
+
/**
|
|
15688
|
+
* Event object of the UploadCollectionItem#retry event.
|
|
15689
|
+
*/
|
|
15356
15690
|
type UploadCollectionItem$RetryEvent = sap.ui.base.Event<
|
|
15357
15691
|
UploadCollectionItem$RetryEventParameters,
|
|
15358
15692
|
UploadCollectionItem
|
|
15359
15693
|
>;
|
|
15360
15694
|
|
|
15695
|
+
/**
|
|
15696
|
+
* Event object of the UploadCollectionItem#terminate event.
|
|
15697
|
+
*/
|
|
15361
15698
|
type UploadCollectionItem$TerminateEvent = sap.ui.base.Event<
|
|
15362
15699
|
UploadCollectionItem$TerminateEventParameters,
|
|
15363
15700
|
UploadCollectionItem
|
|
15364
15701
|
>;
|
|
15365
15702
|
|
|
15703
|
+
/**
|
|
15704
|
+
* Event object of the ViewSettingsDialog#beforeOpen event.
|
|
15705
|
+
*/
|
|
15366
15706
|
type ViewSettingsDialog$BeforeOpenEvent = sap.ui.base.Event<
|
|
15367
15707
|
ViewSettingsDialog$BeforeOpenEventParameters,
|
|
15368
15708
|
ViewSettingsDialog
|
|
15369
15709
|
>;
|
|
15370
15710
|
|
|
15711
|
+
/**
|
|
15712
|
+
* Event object of the ViewSettingsDialog#cancel event.
|
|
15713
|
+
*/
|
|
15371
15714
|
type ViewSettingsDialog$CancelEvent = sap.ui.base.Event<
|
|
15372
15715
|
ViewSettingsDialog$CancelEventParameters,
|
|
15373
15716
|
ViewSettingsDialog
|
|
15374
15717
|
>;
|
|
15375
15718
|
|
|
15719
|
+
/**
|
|
15720
|
+
* Event object of the ViewSettingsDialog#confirm event.
|
|
15721
|
+
*/
|
|
15376
15722
|
type ViewSettingsDialog$ConfirmEvent = sap.ui.base.Event<
|
|
15377
15723
|
ViewSettingsDialog$ConfirmEventParameters,
|
|
15378
15724
|
ViewSettingsDialog
|
|
15379
15725
|
>;
|
|
15380
15726
|
|
|
15727
|
+
/**
|
|
15728
|
+
* Event object of the Wizard#stepChange event.
|
|
15729
|
+
*/
|
|
15381
15730
|
type Wizard$StepChangeEvent = sap.ui.base.Event<
|
|
15382
15731
|
Wizard$StepChangeEventParameters,
|
|
15383
15732
|
Wizard
|