@openui5/ts-types 1.120.10 → 1.120.12
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 +364 -2
- package/types/sap.m.d.ts +3125 -13
- 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 +1190 -75
- 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
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.12
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -33,6 +33,11 @@ declare namespace sap {
|
|
|
33
33
|
__implements__sap_ui_ux3_DataSetView: boolean;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
/**
|
|
37
|
+
* Describes the settings that can be provided to the ActionBar constructor.
|
|
38
|
+
*
|
|
39
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` or `sap.m.OverflowToolbar` control.
|
|
40
|
+
*/
|
|
36
41
|
interface $ActionBarSettings extends sap.ui.core.$ControlSettings {
|
|
37
42
|
/**
|
|
38
43
|
* Keeps track of the actionBars Follow/Unfollow button’s state. Its value is one of - FollowActionState.Default
|
|
@@ -159,6 +164,11 @@ declare namespace sap {
|
|
|
159
164
|
feedSubmit?: (oEvent: ActionBar$FeedSubmitEvent) => void;
|
|
160
165
|
}
|
|
161
166
|
|
|
167
|
+
/**
|
|
168
|
+
* Describes the settings that can be provided to the Collection constructor.
|
|
169
|
+
*
|
|
170
|
+
* @deprecated (since 1.38)
|
|
171
|
+
*/
|
|
162
172
|
interface $CollectionSettings extends sap.ui.core.$ElementSettings {
|
|
163
173
|
/**
|
|
164
174
|
* Name for the collection
|
|
@@ -206,6 +216,11 @@ declare namespace sap {
|
|
|
206
216
|
propertyChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
207
217
|
}
|
|
208
218
|
|
|
219
|
+
/**
|
|
220
|
+
* Describes the settings that can be provided to the CollectionInspector constructor.
|
|
221
|
+
*
|
|
222
|
+
* @deprecated (since 1.38)
|
|
223
|
+
*/
|
|
209
224
|
interface $CollectionInspectorSettings
|
|
210
225
|
extends sap.ui.core.$ControlSettings {
|
|
211
226
|
/**
|
|
@@ -263,6 +278,11 @@ declare namespace sap {
|
|
|
263
278
|
editCollection?: (oEvent: sap.ui.base.Event) => void;
|
|
264
279
|
}
|
|
265
280
|
|
|
281
|
+
/**
|
|
282
|
+
* Describes the settings that can be provided to the DataSet constructor.
|
|
283
|
+
*
|
|
284
|
+
* @deprecated (since 1.38) - Use a container by choice from the {@link sap.m} library, instead.
|
|
285
|
+
*/
|
|
266
286
|
interface $DataSetSettings extends sap.ui.core.$ControlSettings {
|
|
267
287
|
/**
|
|
268
288
|
* show Toolbar
|
|
@@ -339,6 +359,11 @@ declare namespace sap {
|
|
|
339
359
|
search?: (oEvent: DataSet$SearchEvent) => void;
|
|
340
360
|
}
|
|
341
361
|
|
|
362
|
+
/**
|
|
363
|
+
* Describes the settings that can be provided to the DataSetItem constructor.
|
|
364
|
+
*
|
|
365
|
+
* @deprecated (since 1.38)
|
|
366
|
+
*/
|
|
342
367
|
interface $DataSetItemSettings extends sap.ui.core.$ElementSettings {
|
|
343
368
|
/**
|
|
344
369
|
* image
|
|
@@ -372,6 +397,11 @@ declare namespace sap {
|
|
|
372
397
|
selected?: (oEvent: DataSetItem$SelectedEvent) => void;
|
|
373
398
|
}
|
|
374
399
|
|
|
400
|
+
/**
|
|
401
|
+
* Describes the settings that can be provided to the DataSetSimpleView constructor.
|
|
402
|
+
*
|
|
403
|
+
* @deprecated (since 1.38) - Use a layout by choice from the {@link sap.m} library, instead.
|
|
404
|
+
*/
|
|
375
405
|
interface $DataSetSimpleViewSettings
|
|
376
406
|
extends sap.ui.core.$ControlSettings {
|
|
377
407
|
/**
|
|
@@ -483,6 +513,12 @@ declare namespace sap {
|
|
|
483
513
|
template?: sap.ui.core.Control;
|
|
484
514
|
}
|
|
485
515
|
|
|
516
|
+
/**
|
|
517
|
+
* Describes the settings that can be provided to the Exact constructor.
|
|
518
|
+
*
|
|
519
|
+
* @deprecated (since 1.38)
|
|
520
|
+
* @experimental (since 1.2) - API is not yet finished and might change completely
|
|
521
|
+
*/
|
|
486
522
|
interface $ExactSettings extends sap.ui.core.$ControlSettings {
|
|
487
523
|
/**
|
|
488
524
|
* A title text which is displayed above the result section
|
|
@@ -514,6 +550,12 @@ declare namespace sap {
|
|
|
514
550
|
refineSearch?: (oEvent: Exact$RefineSearchEvent) => void;
|
|
515
551
|
}
|
|
516
552
|
|
|
553
|
+
/**
|
|
554
|
+
* Describes the settings that can be provided to the ExactArea constructor.
|
|
555
|
+
*
|
|
556
|
+
* @deprecated (since 1.38)
|
|
557
|
+
* @experimental (since 1.6) - API is not yet finished and might change completely
|
|
558
|
+
*/
|
|
517
559
|
interface $ExactAreaSettings extends sap.ui.core.$ControlSettings {
|
|
518
560
|
/**
|
|
519
561
|
* Specifies whether the tool bar shall be visible
|
|
@@ -542,6 +584,11 @@ declare namespace sap {
|
|
|
542
584
|
| `{${string}}`;
|
|
543
585
|
}
|
|
544
586
|
|
|
587
|
+
/**
|
|
588
|
+
* Describes the settings that can be provided to the ExactAttribute constructor.
|
|
589
|
+
*
|
|
590
|
+
* @deprecated (since 1.38)
|
|
591
|
+
*/
|
|
545
592
|
interface $ExactAttributeSettings extends sap.ui.core.$ElementSettings {
|
|
546
593
|
/**
|
|
547
594
|
* The attribute name
|
|
@@ -636,6 +683,11 @@ declare namespace sap {
|
|
|
636
683
|
) => void;
|
|
637
684
|
}
|
|
638
685
|
|
|
686
|
+
/**
|
|
687
|
+
* Describes the settings that can be provided to the ExactBrowser constructor.
|
|
688
|
+
*
|
|
689
|
+
* @deprecated (since 1.38)
|
|
690
|
+
*/
|
|
639
691
|
interface $ExactBrowserSettings extends sap.ui.core.$ControlSettings {
|
|
640
692
|
/**
|
|
641
693
|
* Title text in the list area of the Exact Browser. The title is not shown when the property showTopList
|
|
@@ -754,6 +806,11 @@ declare namespace sap {
|
|
|
754
806
|
save?: (oEvent: sap.ui.base.Event) => void;
|
|
755
807
|
}
|
|
756
808
|
|
|
809
|
+
/**
|
|
810
|
+
* Describes the settings that can be provided to the ExactList constructor.
|
|
811
|
+
*
|
|
812
|
+
* @deprecated (since 1.38)
|
|
813
|
+
*/
|
|
757
814
|
interface $ExactListSettings extends sap.ui.core.$ControlSettings {
|
|
758
815
|
/**
|
|
759
816
|
* Defines whether the close icon shall be displayed in the header.
|
|
@@ -797,6 +854,11 @@ declare namespace sap {
|
|
|
797
854
|
attributeSelected?: (oEvent: ExactList$AttributeSelectedEvent) => void;
|
|
798
855
|
}
|
|
799
856
|
|
|
857
|
+
/**
|
|
858
|
+
* Describes the settings that can be provided to the FacetFilter constructor.
|
|
859
|
+
*
|
|
860
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
|
|
861
|
+
*/
|
|
800
862
|
interface $FacetFilterSettings extends sap.ui.core.$ControlSettings {
|
|
801
863
|
/**
|
|
802
864
|
* If the value is "Auto" - the Facet Filter takes the whole available height. If "Fixed" , then the default
|
|
@@ -817,6 +879,11 @@ declare namespace sap {
|
|
|
817
879
|
| `{${string}}`;
|
|
818
880
|
}
|
|
819
881
|
|
|
882
|
+
/**
|
|
883
|
+
* Describes the settings that can be provided to the FacetFilterList constructor.
|
|
884
|
+
*
|
|
885
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
|
|
886
|
+
*/
|
|
820
887
|
interface $FacetFilterListSettings extends sap.ui.core.$ControlSettings {
|
|
821
888
|
/**
|
|
822
889
|
* The title of this list.
|
|
@@ -873,6 +940,14 @@ declare namespace sap {
|
|
|
873
940
|
select?: (oEvent: FacetFilterList$SelectEvent) => void;
|
|
874
941
|
}
|
|
875
942
|
|
|
943
|
+
/**
|
|
944
|
+
* Describes the settings that can be provided to the Feed constructor.
|
|
945
|
+
*
|
|
946
|
+
* @deprecated (since 1.38) - Instead, use **any** `sap.ui.layout` container control.
|
|
947
|
+
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
948
|
+
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
949
|
+
* Feed model topic is still open.
|
|
950
|
+
*/
|
|
876
951
|
interface $FeedSettings extends sap.ui.core.$ControlSettings {
|
|
877
952
|
/**
|
|
878
953
|
* The path to the thumbnail image used for the feeder
|
|
@@ -953,6 +1028,14 @@ declare namespace sap {
|
|
|
953
1028
|
toggleLive?: (oEvent: Feed$ToggleLiveEvent) => void;
|
|
954
1029
|
}
|
|
955
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* Describes the settings that can be provided to the FeedChunk constructor.
|
|
1033
|
+
*
|
|
1034
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.FeedListItem` control.
|
|
1035
|
+
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
1036
|
+
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
1037
|
+
* Feed model topic is still open.
|
|
1038
|
+
*/
|
|
956
1039
|
interface $FeedChunkSettings extends sap.ui.core.$ControlSettings {
|
|
957
1040
|
/**
|
|
958
1041
|
* URL to the thumbnail image.
|
|
@@ -1146,6 +1229,14 @@ declare namespace sap {
|
|
|
1146
1229
|
) => void;
|
|
1147
1230
|
}
|
|
1148
1231
|
|
|
1232
|
+
/**
|
|
1233
|
+
* Describes the settings that can be provided to the Feeder constructor.
|
|
1234
|
+
*
|
|
1235
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.FeedInput` control.
|
|
1236
|
+
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
1237
|
+
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
1238
|
+
* Feed model topic is still open.
|
|
1239
|
+
*/
|
|
1149
1240
|
interface $FeederSettings extends sap.ui.core.$ControlSettings {
|
|
1150
1241
|
/**
|
|
1151
1242
|
* URL to the thumb nail image This property is optional if the feeder is a sub-control of a feed or a feedChunk
|
|
@@ -1183,6 +1274,12 @@ declare namespace sap {
|
|
|
1183
1274
|
submit?: (oEvent: Feeder$SubmitEvent) => void;
|
|
1184
1275
|
}
|
|
1185
1276
|
|
|
1277
|
+
/**
|
|
1278
|
+
* Describes the settings that can be provided to the NavigationBar constructor.
|
|
1279
|
+
*
|
|
1280
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
|
|
1281
|
+
* control.
|
|
1282
|
+
*/
|
|
1186
1283
|
interface $NavigationBarSettings extends sap.ui.core.$ControlSettings {
|
|
1187
1284
|
/**
|
|
1188
1285
|
* Defines whether the navigation bar shall have top-level appearance
|
|
@@ -1230,6 +1327,12 @@ declare namespace sap {
|
|
|
1230
1327
|
select?: (oEvent: NavigationBar$SelectEvent) => void;
|
|
1231
1328
|
}
|
|
1232
1329
|
|
|
1330
|
+
/**
|
|
1331
|
+
* Describes the settings that can be provided to the NavigationItem constructor.
|
|
1332
|
+
*
|
|
1333
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
|
|
1334
|
+
* control.
|
|
1335
|
+
*/
|
|
1233
1336
|
interface $NavigationItemSettings extends sap.ui.core.$ItemSettings {
|
|
1234
1337
|
/**
|
|
1235
1338
|
* Whether the NavigationItem is currently visible. When making NavigationItems invisible at runtime it
|
|
@@ -1266,6 +1369,11 @@ declare namespace sap {
|
|
|
1266
1369
|
| `{${string}}`;
|
|
1267
1370
|
}
|
|
1268
1371
|
|
|
1372
|
+
/**
|
|
1373
|
+
* Describes the settings that can be provided to the NotificationBar constructor.
|
|
1374
|
+
*
|
|
1375
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.MessagePopover` control.
|
|
1376
|
+
*/
|
|
1269
1377
|
interface $NotificationBarSettings extends sap.ui.core.$ControlSettings {
|
|
1270
1378
|
/**
|
|
1271
1379
|
* This property displays the bar corresponding to given status
|
|
@@ -1323,6 +1431,11 @@ declare namespace sap {
|
|
|
1323
1431
|
resize?: (oEvent: NotificationBar$ResizeEvent) => void;
|
|
1324
1432
|
}
|
|
1325
1433
|
|
|
1434
|
+
/**
|
|
1435
|
+
* Describes the settings that can be provided to the Notifier constructor.
|
|
1436
|
+
*
|
|
1437
|
+
* @deprecated (since 1.38)
|
|
1438
|
+
*/
|
|
1326
1439
|
interface $NotifierSettings extends sap.ui.core.$ElementSettings {
|
|
1327
1440
|
/**
|
|
1328
1441
|
* Icon of the control that should be displayed within the corresponding bar
|
|
@@ -1352,6 +1465,11 @@ declare namespace sap {
|
|
|
1352
1465
|
messageSelected?: (oEvent: Notifier$MessageSelectedEvent) => void;
|
|
1353
1466
|
}
|
|
1354
1467
|
|
|
1468
|
+
/**
|
|
1469
|
+
* Describes the settings that can be provided to the Overlay constructor.
|
|
1470
|
+
*
|
|
1471
|
+
* @deprecated (since 1.38)
|
|
1472
|
+
*/
|
|
1355
1473
|
interface $OverlaySettings extends sap.ui.core.$ControlSettings {
|
|
1356
1474
|
/**
|
|
1357
1475
|
* Defines whether the 'Open' button shall be visible.
|
|
@@ -1390,6 +1508,11 @@ declare namespace sap {
|
|
|
1390
1508
|
open?: (oEvent: Overlay$OpenEvent) => void;
|
|
1391
1509
|
}
|
|
1392
1510
|
|
|
1511
|
+
/**
|
|
1512
|
+
* Describes the settings that can be provided to the OverlayContainer constructor.
|
|
1513
|
+
*
|
|
1514
|
+
* @deprecated (since 1.38)
|
|
1515
|
+
*/
|
|
1393
1516
|
interface $OverlayContainerSettings extends sap.ui.ux3.$OverlaySettings {
|
|
1394
1517
|
/**
|
|
1395
1518
|
* Aggregation for content
|
|
@@ -1401,6 +1524,11 @@ declare namespace sap {
|
|
|
1401
1524
|
| `{${string}}`;
|
|
1402
1525
|
}
|
|
1403
1526
|
|
|
1527
|
+
/**
|
|
1528
|
+
* Describes the settings that can be provided to the OverlayDialog constructor.
|
|
1529
|
+
*
|
|
1530
|
+
* @deprecated (since 1.38)
|
|
1531
|
+
*/
|
|
1404
1532
|
interface $OverlayDialogSettings extends sap.ui.ux3.$OverlaySettings {
|
|
1405
1533
|
/**
|
|
1406
1534
|
* Determines the width of the Overlay Dialog. If the width is set to "auto" it is always 50% of the overlay
|
|
@@ -1430,6 +1558,11 @@ declare namespace sap {
|
|
|
1430
1558
|
| `{${string}}`;
|
|
1431
1559
|
}
|
|
1432
1560
|
|
|
1561
|
+
/**
|
|
1562
|
+
* Describes the settings that can be provided to the QuickView constructor.
|
|
1563
|
+
*
|
|
1564
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.QuickView` control.
|
|
1565
|
+
*/
|
|
1433
1566
|
interface $QuickViewSettings extends sap.ui.commons.$CalloutBaseSettings {
|
|
1434
1567
|
/**
|
|
1435
1568
|
* Thing type (mandatory) like Account, Material, Employee etc. is displayed in a header at the top part
|
|
@@ -1582,6 +1715,11 @@ declare namespace sap {
|
|
|
1582
1715
|
navigate?: (oEvent: QuickView$NavigateEvent) => void;
|
|
1583
1716
|
}
|
|
1584
1717
|
|
|
1718
|
+
/**
|
|
1719
|
+
* Describes the settings that can be provided to the Shell constructor.
|
|
1720
|
+
*
|
|
1721
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Shell}
|
|
1722
|
+
*/
|
|
1585
1723
|
interface $ShellSettings extends sap.ui.core.$ControlSettings {
|
|
1586
1724
|
/**
|
|
1587
1725
|
* The application title to appear in the left part of the header, usually a company and/or product name.
|
|
@@ -1838,6 +1976,11 @@ declare namespace sap {
|
|
|
1838
1976
|
paneClosed?: (oEvent: Shell$PaneClosedEvent) => void;
|
|
1839
1977
|
}
|
|
1840
1978
|
|
|
1979
|
+
/**
|
|
1980
|
+
* Describes the settings that can be provided to the ThingAction constructor.
|
|
1981
|
+
*
|
|
1982
|
+
* @deprecated (since 1.38)
|
|
1983
|
+
*/
|
|
1841
1984
|
interface $ThingActionSettings extends sap.ui.core.$ElementSettings {
|
|
1842
1985
|
/**
|
|
1843
1986
|
* text of action
|
|
@@ -1858,6 +2001,11 @@ declare namespace sap {
|
|
|
1858
2001
|
select?: (oEvent: ThingAction$SelectEvent) => void;
|
|
1859
2002
|
}
|
|
1860
2003
|
|
|
2004
|
+
/**
|
|
2005
|
+
* Describes the settings that can be provided to the ThingGroup constructor.
|
|
2006
|
+
*
|
|
2007
|
+
* @deprecated (since 1.38)
|
|
2008
|
+
*/
|
|
1861
2009
|
interface $ThingGroupSettings extends sap.ui.core.$ElementSettings {
|
|
1862
2010
|
/**
|
|
1863
2011
|
* Title of Group
|
|
@@ -1891,6 +2039,11 @@ declare namespace sap {
|
|
|
1891
2039
|
| `{${string}}`;
|
|
1892
2040
|
}
|
|
1893
2041
|
|
|
2042
|
+
/**
|
|
2043
|
+
* Describes the settings that can be provided to the ThingInspector constructor.
|
|
2044
|
+
*
|
|
2045
|
+
* @deprecated (since 1.38) - There is not an exact replacement.
|
|
2046
|
+
*/
|
|
1894
2047
|
interface $ThingInspectorSettings extends sap.ui.ux3.$OverlaySettings {
|
|
1895
2048
|
/**
|
|
1896
2049
|
* First Line of the Thing Inspector Title
|
|
@@ -2044,6 +2197,11 @@ declare namespace sap {
|
|
|
2044
2197
|
feedSubmit?: (oEvent: ThingInspector$FeedSubmitEvent) => void;
|
|
2045
2198
|
}
|
|
2046
2199
|
|
|
2200
|
+
/**
|
|
2201
|
+
* Describes the settings that can be provided to the ThingViewer constructor.
|
|
2202
|
+
*
|
|
2203
|
+
* @deprecated (since 1.38) - There is not an exact replacement.
|
|
2204
|
+
*/
|
|
2047
2205
|
interface $ThingViewerSettings extends sap.ui.core.$ControlSettings {
|
|
2048
2206
|
/**
|
|
2049
2207
|
* Title of the Thing Inspector
|
|
@@ -2138,6 +2296,11 @@ declare namespace sap {
|
|
|
2138
2296
|
facetSelected?: (oEvent: ThingViewer$FacetSelectedEvent) => void;
|
|
2139
2297
|
}
|
|
2140
2298
|
|
|
2299
|
+
/**
|
|
2300
|
+
* Describes the settings that can be provided to the ToolPopup constructor.
|
|
2301
|
+
*
|
|
2302
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Popover` control.
|
|
2303
|
+
*/
|
|
2141
2304
|
interface $ToolPopupSettings extends sap.ui.core.$ControlSettings {
|
|
2142
2305
|
/**
|
|
2143
2306
|
* Determines the title displayed in the pop up window
|
|
@@ -2323,6 +2486,9 @@ declare namespace sap {
|
|
|
2323
2486
|
opened?: (oEvent: sap.ui.base.Event) => void;
|
|
2324
2487
|
}
|
|
2325
2488
|
|
|
2489
|
+
/**
|
|
2490
|
+
* Parameters of the ActionBar#actionSelected event.
|
|
2491
|
+
*/
|
|
2326
2492
|
interface ActionBar$ActionSelectedEventParameters {
|
|
2327
2493
|
/**
|
|
2328
2494
|
* Id of selected ThingAction
|
|
@@ -2341,6 +2507,9 @@ declare namespace sap {
|
|
|
2341
2507
|
newState?: string;
|
|
2342
2508
|
}
|
|
2343
2509
|
|
|
2510
|
+
/**
|
|
2511
|
+
* Parameters of the ActionBar#feedSubmit event.
|
|
2512
|
+
*/
|
|
2344
2513
|
interface ActionBar$FeedSubmitEventParameters {
|
|
2345
2514
|
/**
|
|
2346
2515
|
* Feed text
|
|
@@ -2348,16 +2517,34 @@ declare namespace sap {
|
|
|
2348
2517
|
text?: string;
|
|
2349
2518
|
}
|
|
2350
2519
|
|
|
2520
|
+
/**
|
|
2521
|
+
* Parameters of the Collection#propertyChanged event.
|
|
2522
|
+
*/
|
|
2351
2523
|
interface Collection$PropertyChangedEventParameters {}
|
|
2352
2524
|
|
|
2525
|
+
/**
|
|
2526
|
+
* Parameters of the Collection#selectionChanged event.
|
|
2527
|
+
*/
|
|
2353
2528
|
interface Collection$SelectionChangedEventParameters {}
|
|
2354
2529
|
|
|
2530
|
+
/**
|
|
2531
|
+
* Parameters of the CollectionInspector#collectionSelected event.
|
|
2532
|
+
*/
|
|
2355
2533
|
interface CollectionInspector$CollectionSelectedEventParameters {}
|
|
2356
2534
|
|
|
2535
|
+
/**
|
|
2536
|
+
* Parameters of the CollectionInspector#editCollection event.
|
|
2537
|
+
*/
|
|
2357
2538
|
interface CollectionInspector$EditCollectionEventParameters {}
|
|
2358
2539
|
|
|
2540
|
+
/**
|
|
2541
|
+
* Parameters of the CollectionInspector#itemSelectionChanged event.
|
|
2542
|
+
*/
|
|
2359
2543
|
interface CollectionInspector$ItemSelectionChangedEventParameters {}
|
|
2360
2544
|
|
|
2545
|
+
/**
|
|
2546
|
+
* Parameters of the DataSet#search event.
|
|
2547
|
+
*/
|
|
2361
2548
|
interface DataSet$SearchEventParameters {
|
|
2362
2549
|
/**
|
|
2363
2550
|
* The search query
|
|
@@ -2365,6 +2552,9 @@ declare namespace sap {
|
|
|
2365
2552
|
query?: string;
|
|
2366
2553
|
}
|
|
2367
2554
|
|
|
2555
|
+
/**
|
|
2556
|
+
* Parameters of the DataSet#selectionChanged event.
|
|
2557
|
+
*/
|
|
2368
2558
|
interface DataSet$SelectionChangedEventParameters {
|
|
2369
2559
|
/**
|
|
2370
2560
|
* Old lead selected index
|
|
@@ -2377,6 +2567,9 @@ declare namespace sap {
|
|
|
2377
2567
|
newLeadSelectedIndex?: int;
|
|
2378
2568
|
}
|
|
2379
2569
|
|
|
2570
|
+
/**
|
|
2571
|
+
* Parameters of the DataSetItem#selected event.
|
|
2572
|
+
*/
|
|
2380
2573
|
interface DataSetItem$SelectedEventParameters {
|
|
2381
2574
|
/**
|
|
2382
2575
|
* Id of the selected Datset item
|
|
@@ -2384,6 +2577,9 @@ declare namespace sap {
|
|
|
2384
2577
|
itemId?: string;
|
|
2385
2578
|
}
|
|
2386
2579
|
|
|
2580
|
+
/**
|
|
2581
|
+
* Parameters of the Exact#refineSearch event.
|
|
2582
|
+
*/
|
|
2387
2583
|
interface Exact$RefineSearchEventParameters {
|
|
2388
2584
|
/**
|
|
2389
2585
|
* The query string which was entered in the search field
|
|
@@ -2401,6 +2597,9 @@ declare namespace sap {
|
|
|
2401
2597
|
allSelectedAttributes?: object;
|
|
2402
2598
|
}
|
|
2403
2599
|
|
|
2600
|
+
/**
|
|
2601
|
+
* Parameters of the Exact#search event.
|
|
2602
|
+
*/
|
|
2404
2603
|
interface Exact$SearchEventParameters {
|
|
2405
2604
|
/**
|
|
2406
2605
|
* The query string which was entered in the search field.
|
|
@@ -2408,6 +2607,9 @@ declare namespace sap {
|
|
|
2408
2607
|
query?: string;
|
|
2409
2608
|
}
|
|
2410
2609
|
|
|
2610
|
+
/**
|
|
2611
|
+
* Parameters of the ExactAttribute#supplyAttributes event.
|
|
2612
|
+
*/
|
|
2411
2613
|
interface ExactAttribute$SupplyAttributesEventParameters {
|
|
2412
2614
|
/**
|
|
2413
2615
|
* The ExactAttribute
|
|
@@ -2415,6 +2617,9 @@ declare namespace sap {
|
|
|
2415
2617
|
attribute?: sap.ui.ux3.ExactAttribute;
|
|
2416
2618
|
}
|
|
2417
2619
|
|
|
2620
|
+
/**
|
|
2621
|
+
* Parameters of the ExactBrowser#attributeSelected event.
|
|
2622
|
+
*/
|
|
2418
2623
|
interface ExactBrowser$AttributeSelectedEventParameters {
|
|
2419
2624
|
/**
|
|
2420
2625
|
* The attribute which was selected or unselected recently
|
|
@@ -2427,8 +2632,14 @@ declare namespace sap {
|
|
|
2427
2632
|
allAttributes?: object;
|
|
2428
2633
|
}
|
|
2429
2634
|
|
|
2635
|
+
/**
|
|
2636
|
+
* Parameters of the ExactBrowser#save event.
|
|
2637
|
+
*/
|
|
2430
2638
|
interface ExactBrowser$SaveEventParameters {}
|
|
2431
2639
|
|
|
2640
|
+
/**
|
|
2641
|
+
* Parameters of the ExactList#attributeSelected event.
|
|
2642
|
+
*/
|
|
2432
2643
|
interface ExactList$AttributeSelectedEventParameters {
|
|
2433
2644
|
/**
|
|
2434
2645
|
* The attribute which was selected/unselected recently
|
|
@@ -2441,6 +2652,9 @@ declare namespace sap {
|
|
|
2441
2652
|
allAttributes?: object;
|
|
2442
2653
|
}
|
|
2443
2654
|
|
|
2655
|
+
/**
|
|
2656
|
+
* Parameters of the FacetFilterList#select event.
|
|
2657
|
+
*/
|
|
2444
2658
|
interface FacetFilterList$SelectEventParameters {
|
|
2445
2659
|
/**
|
|
2446
2660
|
* Id of the FacetFilterList taht fires the event.
|
|
@@ -2464,6 +2678,9 @@ declare namespace sap {
|
|
|
2464
2678
|
all?: boolean;
|
|
2465
2679
|
}
|
|
2466
2680
|
|
|
2681
|
+
/**
|
|
2682
|
+
* Parameters of the Feed#chunkAdded event.
|
|
2683
|
+
*/
|
|
2467
2684
|
interface Feed$ChunkAddedEventParameters {
|
|
2468
2685
|
/**
|
|
2469
2686
|
* New chunk
|
|
@@ -2471,6 +2688,9 @@ declare namespace sap {
|
|
|
2471
2688
|
chunk?: sap.ui.ux3.FeedChunk;
|
|
2472
2689
|
}
|
|
2473
2690
|
|
|
2691
|
+
/**
|
|
2692
|
+
* Parameters of the Feed#filterChange event.
|
|
2693
|
+
*/
|
|
2474
2694
|
interface Feed$FilterChangeEventParameters {
|
|
2475
2695
|
/**
|
|
2476
2696
|
* The new/changed value of the filter
|
|
@@ -2478,6 +2698,9 @@ declare namespace sap {
|
|
|
2478
2698
|
newValue?: string;
|
|
2479
2699
|
}
|
|
2480
2700
|
|
|
2701
|
+
/**
|
|
2702
|
+
* Parameters of the Feed#search event.
|
|
2703
|
+
*/
|
|
2481
2704
|
interface Feed$SearchEventParameters {
|
|
2482
2705
|
/**
|
|
2483
2706
|
* The search query
|
|
@@ -2485,6 +2708,9 @@ declare namespace sap {
|
|
|
2485
2708
|
query?: string;
|
|
2486
2709
|
}
|
|
2487
2710
|
|
|
2711
|
+
/**
|
|
2712
|
+
* Parameters of the Feed#toggleLive event.
|
|
2713
|
+
*/
|
|
2488
2714
|
interface Feed$ToggleLiveEventParameters {
|
|
2489
2715
|
/**
|
|
2490
2716
|
* Current live indicator
|
|
@@ -2492,6 +2718,9 @@ declare namespace sap {
|
|
|
2492
2718
|
live?: boolean;
|
|
2493
2719
|
}
|
|
2494
2720
|
|
|
2721
|
+
/**
|
|
2722
|
+
* Parameters of the Feed#toolsItemSelected event.
|
|
2723
|
+
*/
|
|
2495
2724
|
interface Feed$ToolsItemSelectedEventParameters {
|
|
2496
2725
|
/**
|
|
2497
2726
|
* The Id of the selected item
|
|
@@ -2504,6 +2733,9 @@ declare namespace sap {
|
|
|
2504
2733
|
item?: sap.ui.unified.MenuItemBase;
|
|
2505
2734
|
}
|
|
2506
2735
|
|
|
2736
|
+
/**
|
|
2737
|
+
* Parameters of the FeedChunk#actionItemSelected event.
|
|
2738
|
+
*/
|
|
2507
2739
|
interface FeedChunk$ActionItemSelectedEventParameters {
|
|
2508
2740
|
/**
|
|
2509
2741
|
* The Id of the selected item
|
|
@@ -2516,6 +2748,9 @@ declare namespace sap {
|
|
|
2516
2748
|
item?: sap.ui.unified.MenuItemBase;
|
|
2517
2749
|
}
|
|
2518
2750
|
|
|
2751
|
+
/**
|
|
2752
|
+
* Parameters of the FeedChunk#commentAdded event.
|
|
2753
|
+
*/
|
|
2519
2754
|
interface FeedChunk$CommentAddedEventParameters {
|
|
2520
2755
|
/**
|
|
2521
2756
|
* New comment chunk
|
|
@@ -2523,10 +2758,19 @@ declare namespace sap {
|
|
|
2523
2758
|
comment?: sap.ui.ux3.FeedChunk;
|
|
2524
2759
|
}
|
|
2525
2760
|
|
|
2761
|
+
/**
|
|
2762
|
+
* Parameters of the FeedChunk#deleted event.
|
|
2763
|
+
*/
|
|
2526
2764
|
interface FeedChunk$DeletedEventParameters {}
|
|
2527
2765
|
|
|
2766
|
+
/**
|
|
2767
|
+
* Parameters of the FeedChunk#inspect event.
|
|
2768
|
+
*/
|
|
2528
2769
|
interface FeedChunk$InspectEventParameters {}
|
|
2529
2770
|
|
|
2771
|
+
/**
|
|
2772
|
+
* Parameters of the FeedChunk#referenceClicked event.
|
|
2773
|
+
*/
|
|
2530
2774
|
interface FeedChunk$ReferenceClickedEventParameters {
|
|
2531
2775
|
/**
|
|
2532
2776
|
* Text of the @-reference
|
|
@@ -2534,8 +2778,14 @@ declare namespace sap {
|
|
|
2534
2778
|
text?: string;
|
|
2535
2779
|
}
|
|
2536
2780
|
|
|
2781
|
+
/**
|
|
2782
|
+
* Parameters of the FeedChunk#senderClicked event.
|
|
2783
|
+
*/
|
|
2537
2784
|
interface FeedChunk$SenderClickedEventParameters {}
|
|
2538
2785
|
|
|
2786
|
+
/**
|
|
2787
|
+
* Parameters of the FeedChunk#toggleFavorite event.
|
|
2788
|
+
*/
|
|
2539
2789
|
interface FeedChunk$ToggleFavoriteEventParameters {
|
|
2540
2790
|
/**
|
|
2541
2791
|
* Current favorite state
|
|
@@ -2543,6 +2793,9 @@ declare namespace sap {
|
|
|
2543
2793
|
favorite?: boolean;
|
|
2544
2794
|
}
|
|
2545
2795
|
|
|
2796
|
+
/**
|
|
2797
|
+
* Parameters of the FeedChunk#toggleFlagged event.
|
|
2798
|
+
*/
|
|
2546
2799
|
interface FeedChunk$ToggleFlaggedEventParameters {
|
|
2547
2800
|
/**
|
|
2548
2801
|
* Current flagged state
|
|
@@ -2550,6 +2803,9 @@ declare namespace sap {
|
|
|
2550
2803
|
flagged?: boolean;
|
|
2551
2804
|
}
|
|
2552
2805
|
|
|
2806
|
+
/**
|
|
2807
|
+
* Parameters of the FeedChunk#toggleShared event.
|
|
2808
|
+
*/
|
|
2553
2809
|
interface FeedChunk$ToggleSharedEventParameters {
|
|
2554
2810
|
/**
|
|
2555
2811
|
* Current shared state
|
|
@@ -2557,6 +2813,9 @@ declare namespace sap {
|
|
|
2557
2813
|
shareed?: boolean;
|
|
2558
2814
|
}
|
|
2559
2815
|
|
|
2816
|
+
/**
|
|
2817
|
+
* Parameters of the Feeder#submit event.
|
|
2818
|
+
*/
|
|
2560
2819
|
interface Feeder$SubmitEventParameters {
|
|
2561
2820
|
/**
|
|
2562
2821
|
* The text that is submitted
|
|
@@ -2564,6 +2823,9 @@ declare namespace sap {
|
|
|
2564
2823
|
text?: string;
|
|
2565
2824
|
}
|
|
2566
2825
|
|
|
2826
|
+
/**
|
|
2827
|
+
* Parameters of the NavigationBar#select event.
|
|
2828
|
+
*/
|
|
2567
2829
|
interface NavigationBar$SelectEventParameters {
|
|
2568
2830
|
/**
|
|
2569
2831
|
* The ID of the newly selected NavigationItem.
|
|
@@ -2576,6 +2838,9 @@ declare namespace sap {
|
|
|
2576
2838
|
item?: sap.ui.ux3.NavigationItem;
|
|
2577
2839
|
}
|
|
2578
2840
|
|
|
2841
|
+
/**
|
|
2842
|
+
* Parameters of the NotificationBar#display event.
|
|
2843
|
+
*/
|
|
2579
2844
|
interface NotificationBar$DisplayEventParameters {
|
|
2580
2845
|
/**
|
|
2581
2846
|
* Indicates if the bar wants to be shown or hidden
|
|
@@ -2583,6 +2848,9 @@ declare namespace sap {
|
|
|
2583
2848
|
show?: boolean;
|
|
2584
2849
|
}
|
|
2585
2850
|
|
|
2851
|
+
/**
|
|
2852
|
+
* Parameters of the NotificationBar#resize event.
|
|
2853
|
+
*/
|
|
2586
2854
|
interface NotificationBar$ResizeEventParameters {
|
|
2587
2855
|
/**
|
|
2588
2856
|
* The corresponding status to which the bar was resized. The corresponding heights can be taken for the
|
|
@@ -2591,6 +2859,9 @@ declare namespace sap {
|
|
|
2591
2859
|
status?: sap.ui.ux3.NotificationBarStatus;
|
|
2592
2860
|
}
|
|
2593
2861
|
|
|
2862
|
+
/**
|
|
2863
|
+
* Parameters of the Notifier#messageSelected event.
|
|
2864
|
+
*/
|
|
2594
2865
|
interface Notifier$MessageSelectedEventParameters {
|
|
2595
2866
|
/**
|
|
2596
2867
|
* The message that was selected
|
|
@@ -2603,6 +2874,9 @@ declare namespace sap {
|
|
|
2603
2874
|
notifier?: sap.ui.ux3.Notifier;
|
|
2604
2875
|
}
|
|
2605
2876
|
|
|
2877
|
+
/**
|
|
2878
|
+
* Parameters of the Overlay#close event.
|
|
2879
|
+
*/
|
|
2606
2880
|
interface Overlay$CloseEventParameters {
|
|
2607
2881
|
/**
|
|
2608
2882
|
* The ID of the Overlay instance.
|
|
@@ -2610,6 +2884,9 @@ declare namespace sap {
|
|
|
2610
2884
|
id?: string;
|
|
2611
2885
|
}
|
|
2612
2886
|
|
|
2887
|
+
/**
|
|
2888
|
+
* Parameters of the Overlay#closed event.
|
|
2889
|
+
*/
|
|
2613
2890
|
interface Overlay$ClosedEventParameters {
|
|
2614
2891
|
/**
|
|
2615
2892
|
* The ID of the Overlay instance.
|
|
@@ -2617,6 +2894,9 @@ declare namespace sap {
|
|
|
2617
2894
|
id?: string;
|
|
2618
2895
|
}
|
|
2619
2896
|
|
|
2897
|
+
/**
|
|
2898
|
+
* Parameters of the Overlay#open event.
|
|
2899
|
+
*/
|
|
2620
2900
|
interface Overlay$OpenEventParameters {
|
|
2621
2901
|
/**
|
|
2622
2902
|
* The ID of the Overlay instance
|
|
@@ -2624,6 +2904,9 @@ declare namespace sap {
|
|
|
2624
2904
|
id?: string;
|
|
2625
2905
|
}
|
|
2626
2906
|
|
|
2907
|
+
/**
|
|
2908
|
+
* Parameters of the Overlay#openNew event.
|
|
2909
|
+
*/
|
|
2627
2910
|
interface Overlay$OpenNewEventParameters {
|
|
2628
2911
|
/**
|
|
2629
2912
|
* The ID of the Overlay instance.
|
|
@@ -2631,6 +2914,9 @@ declare namespace sap {
|
|
|
2631
2914
|
id?: string;
|
|
2632
2915
|
}
|
|
2633
2916
|
|
|
2917
|
+
/**
|
|
2918
|
+
* Parameters of the QuickView#actionSelected event.
|
|
2919
|
+
*/
|
|
2634
2920
|
interface QuickView$ActionSelectedEventParameters {
|
|
2635
2921
|
/**
|
|
2636
2922
|
* Id of selected ThingAction
|
|
@@ -2649,6 +2935,9 @@ declare namespace sap {
|
|
|
2649
2935
|
newState?: string;
|
|
2650
2936
|
}
|
|
2651
2937
|
|
|
2938
|
+
/**
|
|
2939
|
+
* Parameters of the QuickView#feedSubmit event.
|
|
2940
|
+
*/
|
|
2652
2941
|
interface QuickView$FeedSubmitEventParameters {
|
|
2653
2942
|
/**
|
|
2654
2943
|
* Feed text
|
|
@@ -2656,6 +2945,9 @@ declare namespace sap {
|
|
|
2656
2945
|
text?: string;
|
|
2657
2946
|
}
|
|
2658
2947
|
|
|
2948
|
+
/**
|
|
2949
|
+
* Parameters of the QuickView#navigate event.
|
|
2950
|
+
*/
|
|
2659
2951
|
interface QuickView$NavigateEventParameters {
|
|
2660
2952
|
/**
|
|
2661
2953
|
* URI of the Thing Inspector application.
|
|
@@ -2663,10 +2955,19 @@ declare namespace sap {
|
|
|
2663
2955
|
href?: string;
|
|
2664
2956
|
}
|
|
2665
2957
|
|
|
2958
|
+
/**
|
|
2959
|
+
* Parameters of the Shell#feedSubmit event.
|
|
2960
|
+
*/
|
|
2666
2961
|
interface Shell$FeedSubmitEventParameters {}
|
|
2667
2962
|
|
|
2963
|
+
/**
|
|
2964
|
+
* Parameters of the Shell#logout event.
|
|
2965
|
+
*/
|
|
2668
2966
|
interface Shell$LogoutEventParameters {}
|
|
2669
2967
|
|
|
2968
|
+
/**
|
|
2969
|
+
* Parameters of the Shell#paneBarItemSelected event.
|
|
2970
|
+
*/
|
|
2670
2971
|
interface Shell$PaneBarItemSelectedEventParameters {
|
|
2671
2972
|
/**
|
|
2672
2973
|
* The ID of the selected PaneBarItem.
|
|
@@ -2684,6 +2985,9 @@ declare namespace sap {
|
|
|
2684
2985
|
key?: string;
|
|
2685
2986
|
}
|
|
2686
2987
|
|
|
2988
|
+
/**
|
|
2989
|
+
* Parameters of the Shell#paneClosed event.
|
|
2990
|
+
*/
|
|
2687
2991
|
interface Shell$PaneClosedEventParameters {
|
|
2688
2992
|
/**
|
|
2689
2993
|
* The id of the PaneBarItem to which the closed pane belonged.
|
|
@@ -2691,8 +2995,14 @@ declare namespace sap {
|
|
|
2691
2995
|
id?: string;
|
|
2692
2996
|
}
|
|
2693
2997
|
|
|
2998
|
+
/**
|
|
2999
|
+
* Parameters of the Shell#search event.
|
|
3000
|
+
*/
|
|
2694
3001
|
interface Shell$SearchEventParameters {}
|
|
2695
3002
|
|
|
3003
|
+
/**
|
|
3004
|
+
* Parameters of the Shell#worksetItemSelected event.
|
|
3005
|
+
*/
|
|
2696
3006
|
interface Shell$WorksetItemSelectedEventParameters {
|
|
2697
3007
|
/**
|
|
2698
3008
|
* The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
|
|
@@ -2711,6 +3021,9 @@ declare namespace sap {
|
|
|
2711
3021
|
key?: string;
|
|
2712
3022
|
}
|
|
2713
3023
|
|
|
3024
|
+
/**
|
|
3025
|
+
* Parameters of the ThingAction#select event.
|
|
3026
|
+
*/
|
|
2714
3027
|
interface ThingAction$SelectEventParameters {
|
|
2715
3028
|
/**
|
|
2716
3029
|
* Id of selected action
|
|
@@ -2723,6 +3036,9 @@ declare namespace sap {
|
|
|
2723
3036
|
action?: sap.ui.ux3.ThingAction;
|
|
2724
3037
|
}
|
|
2725
3038
|
|
|
3039
|
+
/**
|
|
3040
|
+
* Parameters of the ThingInspector#actionSelected event.
|
|
3041
|
+
*/
|
|
2726
3042
|
interface ThingInspector$ActionSelectedEventParameters {
|
|
2727
3043
|
/**
|
|
2728
3044
|
* Id of selected ThingAction
|
|
@@ -2735,6 +3051,9 @@ declare namespace sap {
|
|
|
2735
3051
|
action?: sap.ui.ux3.ThingAction;
|
|
2736
3052
|
}
|
|
2737
3053
|
|
|
3054
|
+
/**
|
|
3055
|
+
* Parameters of the ThingInspector#facetSelected event.
|
|
3056
|
+
*/
|
|
2738
3057
|
interface ThingInspector$FacetSelectedEventParameters {
|
|
2739
3058
|
/**
|
|
2740
3059
|
* Id of selected NavigationItem
|
|
@@ -2752,6 +3071,9 @@ declare namespace sap {
|
|
|
2752
3071
|
key?: string;
|
|
2753
3072
|
}
|
|
2754
3073
|
|
|
3074
|
+
/**
|
|
3075
|
+
* Parameters of the ThingInspector#feedSubmit event.
|
|
3076
|
+
*/
|
|
2755
3077
|
interface ThingInspector$FeedSubmitEventParameters {
|
|
2756
3078
|
/**
|
|
2757
3079
|
* Feed text
|
|
@@ -2759,6 +3081,9 @@ declare namespace sap {
|
|
|
2759
3081
|
text?: string;
|
|
2760
3082
|
}
|
|
2761
3083
|
|
|
3084
|
+
/**
|
|
3085
|
+
* Parameters of the ThingViewer#facetSelected event.
|
|
3086
|
+
*/
|
|
2762
3087
|
interface ThingViewer$FacetSelectedEventParameters {
|
|
2763
3088
|
/**
|
|
2764
3089
|
* Id of selected NavigationItem
|
|
@@ -2776,10 +3101,19 @@ declare namespace sap {
|
|
|
2776
3101
|
key?: string;
|
|
2777
3102
|
}
|
|
2778
3103
|
|
|
3104
|
+
/**
|
|
3105
|
+
* Parameters of the ToolPopup#close event.
|
|
3106
|
+
*/
|
|
2779
3107
|
interface ToolPopup$CloseEventParameters {}
|
|
2780
3108
|
|
|
3109
|
+
/**
|
|
3110
|
+
* Parameters of the ToolPopup#closed event.
|
|
3111
|
+
*/
|
|
2781
3112
|
interface ToolPopup$ClosedEventParameters {}
|
|
2782
3113
|
|
|
3114
|
+
/**
|
|
3115
|
+
* Parameters of the ToolPopup#enter event.
|
|
3116
|
+
*/
|
|
2783
3117
|
interface ToolPopup$EnterEventParameters {
|
|
2784
3118
|
/**
|
|
2785
3119
|
* The onsapenter event, received by the pop up
|
|
@@ -2792,10 +3126,19 @@ declare namespace sap {
|
|
|
2792
3126
|
originalSrcControl?: sap.ui.core.Control;
|
|
2793
3127
|
}
|
|
2794
3128
|
|
|
3129
|
+
/**
|
|
3130
|
+
* Parameters of the ToolPopup#iconChanged event.
|
|
3131
|
+
*/
|
|
2795
3132
|
interface ToolPopup$IconChangedEventParameters {}
|
|
2796
3133
|
|
|
3134
|
+
/**
|
|
3135
|
+
* Parameters of the ToolPopup#open event.
|
|
3136
|
+
*/
|
|
2797
3137
|
interface ToolPopup$OpenEventParameters {}
|
|
2798
3138
|
|
|
3139
|
+
/**
|
|
3140
|
+
* Parameters of the ToolPopup#opened event.
|
|
3141
|
+
*/
|
|
2799
3142
|
interface ToolPopup$OpenedEventParameters {}
|
|
2800
3143
|
|
|
2801
3144
|
/**
|
|
@@ -19061,302 +19404,481 @@ declare namespace sap {
|
|
|
19061
19404
|
*/
|
|
19062
19405
|
Fixed = "Fixed",
|
|
19063
19406
|
}
|
|
19064
|
-
|
|
19407
|
+
/**
|
|
19408
|
+
* Event object of the ActionBar#actionSelected event.
|
|
19409
|
+
*/
|
|
19065
19410
|
type ActionBar$ActionSelectedEvent = sap.ui.base.Event<
|
|
19066
19411
|
ActionBar$ActionSelectedEventParameters,
|
|
19067
19412
|
ActionBar
|
|
19068
19413
|
>;
|
|
19069
19414
|
|
|
19415
|
+
/**
|
|
19416
|
+
* Event object of the ActionBar#feedSubmit event.
|
|
19417
|
+
*/
|
|
19070
19418
|
type ActionBar$FeedSubmitEvent = sap.ui.base.Event<
|
|
19071
19419
|
ActionBar$FeedSubmitEventParameters,
|
|
19072
19420
|
ActionBar
|
|
19073
19421
|
>;
|
|
19074
19422
|
|
|
19423
|
+
/**
|
|
19424
|
+
* Event object of the Collection#propertyChanged event.
|
|
19425
|
+
*/
|
|
19075
19426
|
type Collection$PropertyChangedEvent = sap.ui.base.Event<
|
|
19076
19427
|
Collection$PropertyChangedEventParameters,
|
|
19077
19428
|
Collection
|
|
19078
19429
|
>;
|
|
19079
19430
|
|
|
19431
|
+
/**
|
|
19432
|
+
* Event object of the Collection#selectionChanged event.
|
|
19433
|
+
*/
|
|
19080
19434
|
type Collection$SelectionChangedEvent = sap.ui.base.Event<
|
|
19081
19435
|
Collection$SelectionChangedEventParameters,
|
|
19082
19436
|
Collection
|
|
19083
19437
|
>;
|
|
19084
19438
|
|
|
19439
|
+
/**
|
|
19440
|
+
* Event object of the CollectionInspector#collectionSelected event.
|
|
19441
|
+
*/
|
|
19085
19442
|
type CollectionInspector$CollectionSelectedEvent = sap.ui.base.Event<
|
|
19086
19443
|
CollectionInspector$CollectionSelectedEventParameters,
|
|
19087
19444
|
CollectionInspector
|
|
19088
19445
|
>;
|
|
19089
19446
|
|
|
19447
|
+
/**
|
|
19448
|
+
* Event object of the CollectionInspector#editCollection event.
|
|
19449
|
+
*/
|
|
19090
19450
|
type CollectionInspector$EditCollectionEvent = sap.ui.base.Event<
|
|
19091
19451
|
CollectionInspector$EditCollectionEventParameters,
|
|
19092
19452
|
CollectionInspector
|
|
19093
19453
|
>;
|
|
19094
19454
|
|
|
19455
|
+
/**
|
|
19456
|
+
* Event object of the CollectionInspector#itemSelectionChanged event.
|
|
19457
|
+
*/
|
|
19095
19458
|
type CollectionInspector$ItemSelectionChangedEvent = sap.ui.base.Event<
|
|
19096
19459
|
CollectionInspector$ItemSelectionChangedEventParameters,
|
|
19097
19460
|
CollectionInspector
|
|
19098
19461
|
>;
|
|
19099
19462
|
|
|
19463
|
+
/**
|
|
19464
|
+
* Event object of the DataSet#search event.
|
|
19465
|
+
*/
|
|
19100
19466
|
type DataSet$SearchEvent = sap.ui.base.Event<
|
|
19101
19467
|
DataSet$SearchEventParameters,
|
|
19102
19468
|
DataSet
|
|
19103
19469
|
>;
|
|
19104
19470
|
|
|
19471
|
+
/**
|
|
19472
|
+
* Event object of the DataSet#selectionChanged event.
|
|
19473
|
+
*/
|
|
19105
19474
|
type DataSet$SelectionChangedEvent = sap.ui.base.Event<
|
|
19106
19475
|
DataSet$SelectionChangedEventParameters,
|
|
19107
19476
|
DataSet
|
|
19108
19477
|
>;
|
|
19109
19478
|
|
|
19479
|
+
/**
|
|
19480
|
+
* Event object of the DataSetItem#selected event.
|
|
19481
|
+
*/
|
|
19110
19482
|
type DataSetItem$SelectedEvent = sap.ui.base.Event<
|
|
19111
19483
|
DataSetItem$SelectedEventParameters,
|
|
19112
19484
|
DataSetItem
|
|
19113
19485
|
>;
|
|
19114
19486
|
|
|
19487
|
+
/**
|
|
19488
|
+
* Event object of the Exact#refineSearch event.
|
|
19489
|
+
*/
|
|
19115
19490
|
type Exact$RefineSearchEvent = sap.ui.base.Event<
|
|
19116
19491
|
Exact$RefineSearchEventParameters,
|
|
19117
19492
|
Exact
|
|
19118
19493
|
>;
|
|
19119
19494
|
|
|
19495
|
+
/**
|
|
19496
|
+
* Event object of the Exact#search event.
|
|
19497
|
+
*/
|
|
19120
19498
|
type Exact$SearchEvent = sap.ui.base.Event<
|
|
19121
19499
|
Exact$SearchEventParameters,
|
|
19122
19500
|
Exact
|
|
19123
19501
|
>;
|
|
19124
19502
|
|
|
19503
|
+
/**
|
|
19504
|
+
* Event object of the ExactAttribute#supplyAttributes event.
|
|
19505
|
+
*/
|
|
19125
19506
|
type ExactAttribute$SupplyAttributesEvent = sap.ui.base.Event<
|
|
19126
19507
|
ExactAttribute$SupplyAttributesEventParameters,
|
|
19127
19508
|
ExactAttribute
|
|
19128
19509
|
>;
|
|
19129
19510
|
|
|
19511
|
+
/**
|
|
19512
|
+
* Event object of the ExactBrowser#attributeSelected event.
|
|
19513
|
+
*/
|
|
19130
19514
|
type ExactBrowser$AttributeSelectedEvent = sap.ui.base.Event<
|
|
19131
19515
|
ExactBrowser$AttributeSelectedEventParameters,
|
|
19132
19516
|
ExactBrowser
|
|
19133
19517
|
>;
|
|
19134
19518
|
|
|
19519
|
+
/**
|
|
19520
|
+
* Event object of the ExactBrowser#save event.
|
|
19521
|
+
*/
|
|
19135
19522
|
type ExactBrowser$SaveEvent = sap.ui.base.Event<
|
|
19136
19523
|
ExactBrowser$SaveEventParameters,
|
|
19137
19524
|
ExactBrowser
|
|
19138
19525
|
>;
|
|
19139
19526
|
|
|
19527
|
+
/**
|
|
19528
|
+
* Event object of the ExactList#attributeSelected event.
|
|
19529
|
+
*/
|
|
19140
19530
|
type ExactList$AttributeSelectedEvent = sap.ui.base.Event<
|
|
19141
19531
|
ExactList$AttributeSelectedEventParameters,
|
|
19142
19532
|
ExactList
|
|
19143
19533
|
>;
|
|
19144
19534
|
|
|
19535
|
+
/**
|
|
19536
|
+
* Event object of the FacetFilterList#select event.
|
|
19537
|
+
*/
|
|
19145
19538
|
type FacetFilterList$SelectEvent = sap.ui.base.Event<
|
|
19146
19539
|
FacetFilterList$SelectEventParameters,
|
|
19147
19540
|
FacetFilterList
|
|
19148
19541
|
>;
|
|
19149
19542
|
|
|
19543
|
+
/**
|
|
19544
|
+
* Event object of the Feed#chunkAdded event.
|
|
19545
|
+
*/
|
|
19150
19546
|
type Feed$ChunkAddedEvent = sap.ui.base.Event<
|
|
19151
19547
|
Feed$ChunkAddedEventParameters,
|
|
19152
19548
|
Feed
|
|
19153
19549
|
>;
|
|
19154
19550
|
|
|
19551
|
+
/**
|
|
19552
|
+
* Event object of the Feed#filterChange event.
|
|
19553
|
+
*/
|
|
19155
19554
|
type Feed$FilterChangeEvent = sap.ui.base.Event<
|
|
19156
19555
|
Feed$FilterChangeEventParameters,
|
|
19157
19556
|
Feed
|
|
19158
19557
|
>;
|
|
19159
19558
|
|
|
19559
|
+
/**
|
|
19560
|
+
* Event object of the Feed#search event.
|
|
19561
|
+
*/
|
|
19160
19562
|
type Feed$SearchEvent = sap.ui.base.Event<
|
|
19161
19563
|
Feed$SearchEventParameters,
|
|
19162
19564
|
Feed
|
|
19163
19565
|
>;
|
|
19164
19566
|
|
|
19567
|
+
/**
|
|
19568
|
+
* Event object of the Feed#toggleLive event.
|
|
19569
|
+
*/
|
|
19165
19570
|
type Feed$ToggleLiveEvent = sap.ui.base.Event<
|
|
19166
19571
|
Feed$ToggleLiveEventParameters,
|
|
19167
19572
|
Feed
|
|
19168
19573
|
>;
|
|
19169
19574
|
|
|
19575
|
+
/**
|
|
19576
|
+
* Event object of the Feed#toolsItemSelected event.
|
|
19577
|
+
*/
|
|
19170
19578
|
type Feed$ToolsItemSelectedEvent = sap.ui.base.Event<
|
|
19171
19579
|
Feed$ToolsItemSelectedEventParameters,
|
|
19172
19580
|
Feed
|
|
19173
19581
|
>;
|
|
19174
19582
|
|
|
19583
|
+
/**
|
|
19584
|
+
* Event object of the FeedChunk#actionItemSelected event.
|
|
19585
|
+
*/
|
|
19175
19586
|
type FeedChunk$ActionItemSelectedEvent = sap.ui.base.Event<
|
|
19176
19587
|
FeedChunk$ActionItemSelectedEventParameters,
|
|
19177
19588
|
FeedChunk
|
|
19178
19589
|
>;
|
|
19179
19590
|
|
|
19591
|
+
/**
|
|
19592
|
+
* Event object of the FeedChunk#commentAdded event.
|
|
19593
|
+
*/
|
|
19180
19594
|
type FeedChunk$CommentAddedEvent = sap.ui.base.Event<
|
|
19181
19595
|
FeedChunk$CommentAddedEventParameters,
|
|
19182
19596
|
FeedChunk
|
|
19183
19597
|
>;
|
|
19184
19598
|
|
|
19599
|
+
/**
|
|
19600
|
+
* Event object of the FeedChunk#deleted event.
|
|
19601
|
+
*/
|
|
19185
19602
|
type FeedChunk$DeletedEvent = sap.ui.base.Event<
|
|
19186
19603
|
FeedChunk$DeletedEventParameters,
|
|
19187
19604
|
FeedChunk
|
|
19188
19605
|
>;
|
|
19189
19606
|
|
|
19607
|
+
/**
|
|
19608
|
+
* Event object of the FeedChunk#inspect event.
|
|
19609
|
+
*/
|
|
19190
19610
|
type FeedChunk$InspectEvent = sap.ui.base.Event<
|
|
19191
19611
|
FeedChunk$InspectEventParameters,
|
|
19192
19612
|
FeedChunk
|
|
19193
19613
|
>;
|
|
19194
19614
|
|
|
19615
|
+
/**
|
|
19616
|
+
* Event object of the FeedChunk#referenceClicked event.
|
|
19617
|
+
*/
|
|
19195
19618
|
type FeedChunk$ReferenceClickedEvent = sap.ui.base.Event<
|
|
19196
19619
|
FeedChunk$ReferenceClickedEventParameters,
|
|
19197
19620
|
FeedChunk
|
|
19198
19621
|
>;
|
|
19199
19622
|
|
|
19623
|
+
/**
|
|
19624
|
+
* Event object of the FeedChunk#senderClicked event.
|
|
19625
|
+
*/
|
|
19200
19626
|
type FeedChunk$SenderClickedEvent = sap.ui.base.Event<
|
|
19201
19627
|
FeedChunk$SenderClickedEventParameters,
|
|
19202
19628
|
FeedChunk
|
|
19203
19629
|
>;
|
|
19204
19630
|
|
|
19631
|
+
/**
|
|
19632
|
+
* Event object of the FeedChunk#toggleFavorite event.
|
|
19633
|
+
*/
|
|
19205
19634
|
type FeedChunk$ToggleFavoriteEvent = sap.ui.base.Event<
|
|
19206
19635
|
FeedChunk$ToggleFavoriteEventParameters,
|
|
19207
19636
|
FeedChunk
|
|
19208
19637
|
>;
|
|
19209
19638
|
|
|
19639
|
+
/**
|
|
19640
|
+
* Event object of the FeedChunk#toggleFlagged event.
|
|
19641
|
+
*/
|
|
19210
19642
|
type FeedChunk$ToggleFlaggedEvent = sap.ui.base.Event<
|
|
19211
19643
|
FeedChunk$ToggleFlaggedEventParameters,
|
|
19212
19644
|
FeedChunk
|
|
19213
19645
|
>;
|
|
19214
19646
|
|
|
19647
|
+
/**
|
|
19648
|
+
* Event object of the FeedChunk#toggleShared event.
|
|
19649
|
+
*/
|
|
19215
19650
|
type FeedChunk$ToggleSharedEvent = sap.ui.base.Event<
|
|
19216
19651
|
FeedChunk$ToggleSharedEventParameters,
|
|
19217
19652
|
FeedChunk
|
|
19218
19653
|
>;
|
|
19219
19654
|
|
|
19655
|
+
/**
|
|
19656
|
+
* Event object of the Feeder#submit event.
|
|
19657
|
+
*/
|
|
19220
19658
|
type Feeder$SubmitEvent = sap.ui.base.Event<
|
|
19221
19659
|
Feeder$SubmitEventParameters,
|
|
19222
19660
|
Feeder
|
|
19223
19661
|
>;
|
|
19224
19662
|
|
|
19663
|
+
/**
|
|
19664
|
+
* Event object of the NavigationBar#select event.
|
|
19665
|
+
*/
|
|
19225
19666
|
type NavigationBar$SelectEvent = sap.ui.base.Event<
|
|
19226
19667
|
NavigationBar$SelectEventParameters,
|
|
19227
19668
|
NavigationBar
|
|
19228
19669
|
>;
|
|
19229
19670
|
|
|
19671
|
+
/**
|
|
19672
|
+
* Event object of the NotificationBar#display event.
|
|
19673
|
+
*/
|
|
19230
19674
|
type NotificationBar$DisplayEvent = sap.ui.base.Event<
|
|
19231
19675
|
NotificationBar$DisplayEventParameters,
|
|
19232
19676
|
NotificationBar
|
|
19233
19677
|
>;
|
|
19234
19678
|
|
|
19679
|
+
/**
|
|
19680
|
+
* Event object of the NotificationBar#resize event.
|
|
19681
|
+
*/
|
|
19235
19682
|
type NotificationBar$ResizeEvent = sap.ui.base.Event<
|
|
19236
19683
|
NotificationBar$ResizeEventParameters,
|
|
19237
19684
|
NotificationBar
|
|
19238
19685
|
>;
|
|
19239
19686
|
|
|
19687
|
+
/**
|
|
19688
|
+
* Event object of the Notifier#messageSelected event.
|
|
19689
|
+
*/
|
|
19240
19690
|
type Notifier$MessageSelectedEvent = sap.ui.base.Event<
|
|
19241
19691
|
Notifier$MessageSelectedEventParameters,
|
|
19242
19692
|
Notifier
|
|
19243
19693
|
>;
|
|
19244
19694
|
|
|
19695
|
+
/**
|
|
19696
|
+
* Event object of the Overlay#close event.
|
|
19697
|
+
*/
|
|
19245
19698
|
type Overlay$CloseEvent = sap.ui.base.Event<
|
|
19246
19699
|
Overlay$CloseEventParameters,
|
|
19247
19700
|
Overlay
|
|
19248
19701
|
>;
|
|
19249
19702
|
|
|
19703
|
+
/**
|
|
19704
|
+
* Event object of the Overlay#closed event.
|
|
19705
|
+
*/
|
|
19250
19706
|
type Overlay$ClosedEvent = sap.ui.base.Event<
|
|
19251
19707
|
Overlay$ClosedEventParameters,
|
|
19252
19708
|
Overlay
|
|
19253
19709
|
>;
|
|
19254
19710
|
|
|
19711
|
+
/**
|
|
19712
|
+
* Event object of the Overlay#open event.
|
|
19713
|
+
*/
|
|
19255
19714
|
type Overlay$OpenEvent = sap.ui.base.Event<
|
|
19256
19715
|
Overlay$OpenEventParameters,
|
|
19257
19716
|
Overlay
|
|
19258
19717
|
>;
|
|
19259
19718
|
|
|
19719
|
+
/**
|
|
19720
|
+
* Event object of the Overlay#openNew event.
|
|
19721
|
+
*/
|
|
19260
19722
|
type Overlay$OpenNewEvent = sap.ui.base.Event<
|
|
19261
19723
|
Overlay$OpenNewEventParameters,
|
|
19262
19724
|
Overlay
|
|
19263
19725
|
>;
|
|
19264
19726
|
|
|
19727
|
+
/**
|
|
19728
|
+
* Event object of the QuickView#actionSelected event.
|
|
19729
|
+
*/
|
|
19265
19730
|
type QuickView$ActionSelectedEvent = sap.ui.base.Event<
|
|
19266
19731
|
QuickView$ActionSelectedEventParameters,
|
|
19267
19732
|
QuickView
|
|
19268
19733
|
>;
|
|
19269
19734
|
|
|
19735
|
+
/**
|
|
19736
|
+
* Event object of the QuickView#feedSubmit event.
|
|
19737
|
+
*/
|
|
19270
19738
|
type QuickView$FeedSubmitEvent = sap.ui.base.Event<
|
|
19271
19739
|
QuickView$FeedSubmitEventParameters,
|
|
19272
19740
|
QuickView
|
|
19273
19741
|
>;
|
|
19274
19742
|
|
|
19743
|
+
/**
|
|
19744
|
+
* Event object of the QuickView#navigate event.
|
|
19745
|
+
*/
|
|
19275
19746
|
type QuickView$NavigateEvent = sap.ui.base.Event<
|
|
19276
19747
|
QuickView$NavigateEventParameters,
|
|
19277
19748
|
QuickView
|
|
19278
19749
|
>;
|
|
19279
19750
|
|
|
19751
|
+
/**
|
|
19752
|
+
* Event object of the Shell#feedSubmit event.
|
|
19753
|
+
*/
|
|
19280
19754
|
type Shell$FeedSubmitEvent = sap.ui.base.Event<
|
|
19281
19755
|
Shell$FeedSubmitEventParameters,
|
|
19282
19756
|
Shell
|
|
19283
19757
|
>;
|
|
19284
19758
|
|
|
19759
|
+
/**
|
|
19760
|
+
* Event object of the Shell#logout event.
|
|
19761
|
+
*/
|
|
19285
19762
|
type Shell$LogoutEvent = sap.ui.base.Event<
|
|
19286
19763
|
Shell$LogoutEventParameters,
|
|
19287
19764
|
Shell
|
|
19288
19765
|
>;
|
|
19289
19766
|
|
|
19767
|
+
/**
|
|
19768
|
+
* Event object of the Shell#paneBarItemSelected event.
|
|
19769
|
+
*/
|
|
19290
19770
|
type Shell$PaneBarItemSelectedEvent = sap.ui.base.Event<
|
|
19291
19771
|
Shell$PaneBarItemSelectedEventParameters,
|
|
19292
19772
|
Shell
|
|
19293
19773
|
>;
|
|
19294
19774
|
|
|
19775
|
+
/**
|
|
19776
|
+
* Event object of the Shell#paneClosed event.
|
|
19777
|
+
*/
|
|
19295
19778
|
type Shell$PaneClosedEvent = sap.ui.base.Event<
|
|
19296
19779
|
Shell$PaneClosedEventParameters,
|
|
19297
19780
|
Shell
|
|
19298
19781
|
>;
|
|
19299
19782
|
|
|
19783
|
+
/**
|
|
19784
|
+
* Event object of the Shell#search event.
|
|
19785
|
+
*/
|
|
19300
19786
|
type Shell$SearchEvent = sap.ui.base.Event<
|
|
19301
19787
|
Shell$SearchEventParameters,
|
|
19302
19788
|
Shell
|
|
19303
19789
|
>;
|
|
19304
19790
|
|
|
19791
|
+
/**
|
|
19792
|
+
* Event object of the Shell#worksetItemSelected event.
|
|
19793
|
+
*/
|
|
19305
19794
|
type Shell$WorksetItemSelectedEvent = sap.ui.base.Event<
|
|
19306
19795
|
Shell$WorksetItemSelectedEventParameters,
|
|
19307
19796
|
Shell
|
|
19308
19797
|
>;
|
|
19309
19798
|
|
|
19799
|
+
/**
|
|
19800
|
+
* Event object of the ThingAction#select event.
|
|
19801
|
+
*/
|
|
19310
19802
|
type ThingAction$SelectEvent = sap.ui.base.Event<
|
|
19311
19803
|
ThingAction$SelectEventParameters,
|
|
19312
19804
|
ThingAction
|
|
19313
19805
|
>;
|
|
19314
19806
|
|
|
19807
|
+
/**
|
|
19808
|
+
* Event object of the ThingInspector#actionSelected event.
|
|
19809
|
+
*/
|
|
19315
19810
|
type ThingInspector$ActionSelectedEvent = sap.ui.base.Event<
|
|
19316
19811
|
ThingInspector$ActionSelectedEventParameters,
|
|
19317
19812
|
ThingInspector
|
|
19318
19813
|
>;
|
|
19319
19814
|
|
|
19815
|
+
/**
|
|
19816
|
+
* Event object of the ThingInspector#facetSelected event.
|
|
19817
|
+
*/
|
|
19320
19818
|
type ThingInspector$FacetSelectedEvent = sap.ui.base.Event<
|
|
19321
19819
|
ThingInspector$FacetSelectedEventParameters,
|
|
19322
19820
|
ThingInspector
|
|
19323
19821
|
>;
|
|
19324
19822
|
|
|
19823
|
+
/**
|
|
19824
|
+
* Event object of the ThingInspector#feedSubmit event.
|
|
19825
|
+
*/
|
|
19325
19826
|
type ThingInspector$FeedSubmitEvent = sap.ui.base.Event<
|
|
19326
19827
|
ThingInspector$FeedSubmitEventParameters,
|
|
19327
19828
|
ThingInspector
|
|
19328
19829
|
>;
|
|
19329
19830
|
|
|
19831
|
+
/**
|
|
19832
|
+
* Event object of the ThingViewer#facetSelected event.
|
|
19833
|
+
*/
|
|
19330
19834
|
type ThingViewer$FacetSelectedEvent = sap.ui.base.Event<
|
|
19331
19835
|
ThingViewer$FacetSelectedEventParameters,
|
|
19332
19836
|
ThingViewer
|
|
19333
19837
|
>;
|
|
19334
19838
|
|
|
19839
|
+
/**
|
|
19840
|
+
* Event object of the ToolPopup#close event.
|
|
19841
|
+
*/
|
|
19335
19842
|
type ToolPopup$CloseEvent = sap.ui.base.Event<
|
|
19336
19843
|
ToolPopup$CloseEventParameters,
|
|
19337
19844
|
ToolPopup
|
|
19338
19845
|
>;
|
|
19339
19846
|
|
|
19847
|
+
/**
|
|
19848
|
+
* Event object of the ToolPopup#closed event.
|
|
19849
|
+
*/
|
|
19340
19850
|
type ToolPopup$ClosedEvent = sap.ui.base.Event<
|
|
19341
19851
|
ToolPopup$ClosedEventParameters,
|
|
19342
19852
|
ToolPopup
|
|
19343
19853
|
>;
|
|
19344
19854
|
|
|
19855
|
+
/**
|
|
19856
|
+
* Event object of the ToolPopup#enter event.
|
|
19857
|
+
*/
|
|
19345
19858
|
type ToolPopup$EnterEvent = sap.ui.base.Event<
|
|
19346
19859
|
ToolPopup$EnterEventParameters,
|
|
19347
19860
|
ToolPopup
|
|
19348
19861
|
>;
|
|
19349
19862
|
|
|
19863
|
+
/**
|
|
19864
|
+
* Event object of the ToolPopup#iconChanged event.
|
|
19865
|
+
*/
|
|
19350
19866
|
type ToolPopup$IconChangedEvent = sap.ui.base.Event<
|
|
19351
19867
|
ToolPopup$IconChangedEventParameters,
|
|
19352
19868
|
ToolPopup
|
|
19353
19869
|
>;
|
|
19354
19870
|
|
|
19871
|
+
/**
|
|
19872
|
+
* Event object of the ToolPopup#open event.
|
|
19873
|
+
*/
|
|
19355
19874
|
type ToolPopup$OpenEvent = sap.ui.base.Event<
|
|
19356
19875
|
ToolPopup$OpenEventParameters,
|
|
19357
19876
|
ToolPopup
|
|
19358
19877
|
>;
|
|
19359
19878
|
|
|
19879
|
+
/**
|
|
19880
|
+
* Event object of the ToolPopup#opened event.
|
|
19881
|
+
*/
|
|
19360
19882
|
type ToolPopup$OpenedEvent = sap.ui.base.Event<
|
|
19361
19883
|
ToolPopup$OpenedEventParameters,
|
|
19362
19884
|
ToolPopup
|