@openui5/ts-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 +369 -2
- package/types/sap.m.d.ts +3123 -7
- package/types/sap.tnt.d.ts +40 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/sap.ui.commons.d.ts +753 -1
- package/types/sap.ui.core.d.ts +1098 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -1
- package/types/sap.ui.integration.d.ts +144 -2
- package/types/sap.ui.layout.d.ts +166 -2
- package/types/sap.ui.mdc.d.ts +430 -4
- 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 +222 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -2
- package/types/sap.ui.ux3.d.ts +524 -2
- 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 +118 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
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.
|
|
@@ -15159,177 +15404,281 @@ declare namespace sap {
|
|
|
15159
15404
|
*/
|
|
15160
15405
|
SingleStep = "SingleStep",
|
|
15161
15406
|
}
|
|
15162
|
-
|
|
15407
|
+
/**
|
|
15408
|
+
* Event object of the BarcodeScannerDialog#scanError event.
|
|
15409
|
+
*/
|
|
15163
15410
|
type BarcodeScannerDialog$ScanErrorEvent = sap.ui.base.Event<
|
|
15164
15411
|
BarcodeScannerDialog$ScanErrorEventParameters,
|
|
15165
15412
|
BarcodeScannerDialog
|
|
15166
15413
|
>;
|
|
15167
15414
|
|
|
15415
|
+
/**
|
|
15416
|
+
* Event object of the BarcodeScannerDialog#scanSuccess event.
|
|
15417
|
+
*/
|
|
15168
15418
|
type BarcodeScannerDialog$ScanSuccessEvent = sap.ui.base.Event<
|
|
15169
15419
|
BarcodeScannerDialog$ScanSuccessEventParameters,
|
|
15170
15420
|
BarcodeScannerDialog
|
|
15171
15421
|
>;
|
|
15172
15422
|
|
|
15423
|
+
/**
|
|
15424
|
+
* Event object of the DynamicSideContent#layoutChange event.
|
|
15425
|
+
*/
|
|
15173
15426
|
type DynamicSideContent$LayoutChangeEvent = sap.ui.base.Event<
|
|
15174
15427
|
DynamicSideContent$LayoutChangeEventParameters,
|
|
15175
15428
|
DynamicSideContent
|
|
15176
15429
|
>;
|
|
15177
15430
|
|
|
15431
|
+
/**
|
|
15432
|
+
* Event object of the FlexibleColumnLayout#layoutChange event.
|
|
15433
|
+
*/
|
|
15178
15434
|
type FlexibleColumnLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
15179
15435
|
FlexibleColumnLayout$LayoutChangeEventParameters,
|
|
15180
15436
|
FlexibleColumnLayout
|
|
15181
15437
|
>;
|
|
15182
15438
|
|
|
15439
|
+
/**
|
|
15440
|
+
* Event object of the MediaGallery#displayAreaClick event.
|
|
15441
|
+
*/
|
|
15183
15442
|
type MediaGallery$DisplayAreaClickEvent = sap.ui.base.Event<
|
|
15184
15443
|
MediaGallery$DisplayAreaClickEventParameters,
|
|
15185
15444
|
MediaGallery
|
|
15186
15445
|
>;
|
|
15187
15446
|
|
|
15447
|
+
/**
|
|
15448
|
+
* Event object of the MediaGallery#overflowClick event.
|
|
15449
|
+
*/
|
|
15188
15450
|
type MediaGallery$OverflowClickEvent = sap.ui.base.Event<
|
|
15189
15451
|
MediaGallery$OverflowClickEventParameters,
|
|
15190
15452
|
MediaGallery
|
|
15191
15453
|
>;
|
|
15192
15454
|
|
|
15455
|
+
/**
|
|
15456
|
+
* Event object of the MediaGallery#selectionChange event.
|
|
15457
|
+
*/
|
|
15193
15458
|
type MediaGallery$SelectionChangeEvent = sap.ui.base.Event<
|
|
15194
15459
|
MediaGallery$SelectionChangeEventParameters,
|
|
15195
15460
|
MediaGallery
|
|
15196
15461
|
>;
|
|
15197
15462
|
|
|
15463
|
+
/**
|
|
15464
|
+
* Event object of the NotificationAction#click event.
|
|
15465
|
+
*/
|
|
15198
15466
|
type NotificationAction$ClickEvent = sap.ui.base.Event<
|
|
15199
15467
|
NotificationAction$ClickEventParameters,
|
|
15200
15468
|
NotificationAction
|
|
15201
15469
|
>;
|
|
15202
15470
|
|
|
15471
|
+
/**
|
|
15472
|
+
* Event object of the NotificationListGroupItem#close event.
|
|
15473
|
+
*/
|
|
15203
15474
|
type NotificationListGroupItem$CloseEvent = sap.ui.base.Event<
|
|
15204
15475
|
NotificationListGroupItem$CloseEventParameters,
|
|
15205
15476
|
NotificationListGroupItem
|
|
15206
15477
|
>;
|
|
15207
15478
|
|
|
15479
|
+
/**
|
|
15480
|
+
* Event object of the NotificationListGroupItem#toggle event.
|
|
15481
|
+
*/
|
|
15208
15482
|
type NotificationListGroupItem$ToggleEvent = sap.ui.base.Event<
|
|
15209
15483
|
NotificationListGroupItem$ToggleEventParameters,
|
|
15210
15484
|
NotificationListGroupItem
|
|
15211
15485
|
>;
|
|
15212
15486
|
|
|
15487
|
+
/**
|
|
15488
|
+
* Event object of the NotificationListItem#close event.
|
|
15489
|
+
*/
|
|
15213
15490
|
type NotificationListItem$CloseEvent = sap.ui.base.Event<
|
|
15214
15491
|
NotificationListItem$CloseEventParameters,
|
|
15215
15492
|
NotificationListItem
|
|
15216
15493
|
>;
|
|
15217
15494
|
|
|
15495
|
+
/**
|
|
15496
|
+
* Event object of the ProductSwitchItem#click event.
|
|
15497
|
+
*/
|
|
15218
15498
|
type ProductSwitchItem$ClickEvent = sap.ui.base.Event<
|
|
15219
15499
|
ProductSwitchItem$ClickEventParameters,
|
|
15220
15500
|
ProductSwitchItem
|
|
15221
15501
|
>;
|
|
15222
15502
|
|
|
15503
|
+
/**
|
|
15504
|
+
* Event object of the ShellBar#coPilotClick event.
|
|
15505
|
+
*/
|
|
15223
15506
|
type ShellBar$CoPilotClickEvent = sap.ui.base.Event<
|
|
15224
15507
|
ShellBar$CoPilotClickEventParameters,
|
|
15225
15508
|
ShellBar
|
|
15226
15509
|
>;
|
|
15227
15510
|
|
|
15511
|
+
/**
|
|
15512
|
+
* Event object of the ShellBar#logoClick event.
|
|
15513
|
+
*/
|
|
15228
15514
|
type ShellBar$LogoClickEvent = sap.ui.base.Event<
|
|
15229
15515
|
ShellBar$LogoClickEventParameters,
|
|
15230
15516
|
ShellBar
|
|
15231
15517
|
>;
|
|
15232
15518
|
|
|
15519
|
+
/**
|
|
15520
|
+
* Event object of the ShellBar#menuItemClick event.
|
|
15521
|
+
*/
|
|
15233
15522
|
type ShellBar$MenuItemClickEvent = sap.ui.base.Event<
|
|
15234
15523
|
ShellBar$MenuItemClickEventParameters,
|
|
15235
15524
|
ShellBar
|
|
15236
15525
|
>;
|
|
15237
15526
|
|
|
15527
|
+
/**
|
|
15528
|
+
* Event object of the ShellBar#notificationsClick event.
|
|
15529
|
+
*/
|
|
15238
15530
|
type ShellBar$NotificationsClickEvent = sap.ui.base.Event<
|
|
15239
15531
|
ShellBar$NotificationsClickEventParameters,
|
|
15240
15532
|
ShellBar
|
|
15241
15533
|
>;
|
|
15242
15534
|
|
|
15535
|
+
/**
|
|
15536
|
+
* Event object of the ShellBar#productSwitchClick event.
|
|
15537
|
+
*/
|
|
15243
15538
|
type ShellBar$ProductSwitchClickEvent = sap.ui.base.Event<
|
|
15244
15539
|
ShellBar$ProductSwitchClickEventParameters,
|
|
15245
15540
|
ShellBar
|
|
15246
15541
|
>;
|
|
15247
15542
|
|
|
15543
|
+
/**
|
|
15544
|
+
* Event object of the ShellBar#profileClick event.
|
|
15545
|
+
*/
|
|
15248
15546
|
type ShellBar$ProfileClickEvent = sap.ui.base.Event<
|
|
15249
15547
|
ShellBar$ProfileClickEventParameters,
|
|
15250
15548
|
ShellBar
|
|
15251
15549
|
>;
|
|
15252
15550
|
|
|
15551
|
+
/**
|
|
15552
|
+
* Event object of the ShellBarItem#click event.
|
|
15553
|
+
*/
|
|
15253
15554
|
type ShellBarItem$ClickEvent = sap.ui.base.Event<
|
|
15254
15555
|
ShellBarItem$ClickEventParameters,
|
|
15255
15556
|
ShellBarItem
|
|
15256
15557
|
>;
|
|
15257
15558
|
|
|
15559
|
+
/**
|
|
15560
|
+
* Event object of the SideNavigation#selectionChange event.
|
|
15561
|
+
*/
|
|
15258
15562
|
type SideNavigation$SelectionChangeEvent = sap.ui.base.Event<
|
|
15259
15563
|
SideNavigation$SelectionChangeEventParameters,
|
|
15260
15564
|
SideNavigation
|
|
15261
15565
|
>;
|
|
15262
15566
|
|
|
15567
|
+
/**
|
|
15568
|
+
* Event object of the SideNavigationItem#click event.
|
|
15569
|
+
*/
|
|
15263
15570
|
type SideNavigationItem$ClickEvent = sap.ui.base.Event<
|
|
15264
15571
|
SideNavigationItem$ClickEventParameters,
|
|
15265
15572
|
SideNavigationItem
|
|
15266
15573
|
>;
|
|
15267
15574
|
|
|
15575
|
+
/**
|
|
15576
|
+
* Event object of the SideNavigationSubItem#click event.
|
|
15577
|
+
*/
|
|
15268
15578
|
type SideNavigationSubItem$ClickEvent = sap.ui.base.Event<
|
|
15269
15579
|
SideNavigationSubItem$ClickEventParameters,
|
|
15270
15580
|
SideNavigationSubItem
|
|
15271
15581
|
>;
|
|
15272
15582
|
|
|
15583
|
+
/**
|
|
15584
|
+
* Event object of the TimelineItem#nameClick event.
|
|
15585
|
+
*/
|
|
15273
15586
|
type TimelineItem$NameClickEvent = sap.ui.base.Event<
|
|
15274
15587
|
TimelineItem$NameClickEventParameters,
|
|
15275
15588
|
TimelineItem
|
|
15276
15589
|
>;
|
|
15277
15590
|
|
|
15591
|
+
/**
|
|
15592
|
+
* Event object of the UploadCollection#drop event.
|
|
15593
|
+
*/
|
|
15278
15594
|
type UploadCollection$DropEvent = sap.ui.base.Event<
|
|
15279
15595
|
UploadCollection$DropEventParameters,
|
|
15280
15596
|
UploadCollection
|
|
15281
15597
|
>;
|
|
15282
15598
|
|
|
15599
|
+
/**
|
|
15600
|
+
* Event object of the UploadCollection#itemDelete event.
|
|
15601
|
+
*/
|
|
15283
15602
|
type UploadCollection$ItemDeleteEvent = sap.ui.base.Event<
|
|
15284
15603
|
UploadCollection$ItemDeleteEventParameters,
|
|
15285
15604
|
UploadCollection
|
|
15286
15605
|
>;
|
|
15287
15606
|
|
|
15607
|
+
/**
|
|
15608
|
+
* Event object of the UploadCollection#selectionChange event.
|
|
15609
|
+
*/
|
|
15288
15610
|
type UploadCollection$SelectionChangeEvent = sap.ui.base.Event<
|
|
15289
15611
|
UploadCollection$SelectionChangeEventParameters,
|
|
15290
15612
|
UploadCollection
|
|
15291
15613
|
>;
|
|
15292
15614
|
|
|
15615
|
+
/**
|
|
15616
|
+
* Event object of the UploadCollectionItem#detailClick event.
|
|
15617
|
+
*/
|
|
15293
15618
|
type UploadCollectionItem$DetailClickEvent = sap.ui.base.Event<
|
|
15294
15619
|
UploadCollectionItem$DetailClickEventParameters,
|
|
15295
15620
|
UploadCollectionItem
|
|
15296
15621
|
>;
|
|
15297
15622
|
|
|
15623
|
+
/**
|
|
15624
|
+
* Event object of the UploadCollectionItem#fileNameClick event.
|
|
15625
|
+
*/
|
|
15298
15626
|
type UploadCollectionItem$FileNameClickEvent = sap.ui.base.Event<
|
|
15299
15627
|
UploadCollectionItem$FileNameClickEventParameters,
|
|
15300
15628
|
UploadCollectionItem
|
|
15301
15629
|
>;
|
|
15302
15630
|
|
|
15631
|
+
/**
|
|
15632
|
+
* Event object of the UploadCollectionItem#rename event.
|
|
15633
|
+
*/
|
|
15303
15634
|
type UploadCollectionItem$RenameEvent = sap.ui.base.Event<
|
|
15304
15635
|
UploadCollectionItem$RenameEventParameters,
|
|
15305
15636
|
UploadCollectionItem
|
|
15306
15637
|
>;
|
|
15307
15638
|
|
|
15639
|
+
/**
|
|
15640
|
+
* Event object of the UploadCollectionItem#retry event.
|
|
15641
|
+
*/
|
|
15308
15642
|
type UploadCollectionItem$RetryEvent = sap.ui.base.Event<
|
|
15309
15643
|
UploadCollectionItem$RetryEventParameters,
|
|
15310
15644
|
UploadCollectionItem
|
|
15311
15645
|
>;
|
|
15312
15646
|
|
|
15647
|
+
/**
|
|
15648
|
+
* Event object of the UploadCollectionItem#terminate event.
|
|
15649
|
+
*/
|
|
15313
15650
|
type UploadCollectionItem$TerminateEvent = sap.ui.base.Event<
|
|
15314
15651
|
UploadCollectionItem$TerminateEventParameters,
|
|
15315
15652
|
UploadCollectionItem
|
|
15316
15653
|
>;
|
|
15317
15654
|
|
|
15655
|
+
/**
|
|
15656
|
+
* Event object of the ViewSettingsDialog#beforeOpen event.
|
|
15657
|
+
*/
|
|
15318
15658
|
type ViewSettingsDialog$BeforeOpenEvent = sap.ui.base.Event<
|
|
15319
15659
|
ViewSettingsDialog$BeforeOpenEventParameters,
|
|
15320
15660
|
ViewSettingsDialog
|
|
15321
15661
|
>;
|
|
15322
15662
|
|
|
15663
|
+
/**
|
|
15664
|
+
* Event object of the ViewSettingsDialog#cancel event.
|
|
15665
|
+
*/
|
|
15323
15666
|
type ViewSettingsDialog$CancelEvent = sap.ui.base.Event<
|
|
15324
15667
|
ViewSettingsDialog$CancelEventParameters,
|
|
15325
15668
|
ViewSettingsDialog
|
|
15326
15669
|
>;
|
|
15327
15670
|
|
|
15671
|
+
/**
|
|
15672
|
+
* Event object of the ViewSettingsDialog#confirm event.
|
|
15673
|
+
*/
|
|
15328
15674
|
type ViewSettingsDialog$ConfirmEvent = sap.ui.base.Event<
|
|
15329
15675
|
ViewSettingsDialog$ConfirmEventParameters,
|
|
15330
15676
|
ViewSettingsDialog
|
|
15331
15677
|
>;
|
|
15332
15678
|
|
|
15679
|
+
/**
|
|
15680
|
+
* Event object of the Wizard#stepChange event.
|
|
15681
|
+
*/
|
|
15333
15682
|
type Wizard$StepChangeEvent = sap.ui.base.Event<
|
|
15334
15683
|
Wizard$StepChangeEventParameters,
|
|
15335
15684
|
Wizard
|