@openui5/ts-types 1.114.0 → 1.115.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,9 @@
1
- // For Library Version: 1.114.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
5
5
  /**
6
- * @SINCE 0.13
6
+ * @since 0.13
7
7
  * @deprecated (since 1.38)
8
8
  *
9
9
  * Controls that implement the SAP User Experience (UX) Guidelines 3.0
@@ -11,7 +11,7 @@ declare namespace sap {
11
11
  namespace ux3 {
12
12
  /**
13
13
  * @deprecated (since 1.36) - This class was never released for productive use and will never be.
14
- * @EXPERIMENTAL (since 1.0) - The Shell-features Personalization, Color Picker and “Inspect”-Tool are only
14
+ * @experimental (since 1.0) - The Shell-features Personalization, Color Picker and “Inspect”-Tool are only
15
15
  * experimental work and might change or disappear in future versions.
16
16
  *
17
17
  * Experimental implementation of visual Ux3 Shell personalization / branding.
@@ -151,12 +151,16 @@ declare namespace sap {
151
151
  *
152
152
  * For ‘Update’, please refer to event ‘feedSubmit’
153
153
  */
154
- actionSelected?: (oEvent: sap.ui.base.Event) => void;
154
+ actionSelected?: (
155
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ActionBar$ActionSelectedEventParameters>
156
+ ) => void;
155
157
 
156
158
  /**
157
159
  * Fired when a new feed entry is submitted.
158
160
  */
159
- feedSubmit?: (oEvent: sap.ui.base.Event) => void;
161
+ feedSubmit?: (
162
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ActionBar$FeedSubmitEventParameters>
163
+ ) => void;
160
164
  }
161
165
 
162
166
  interface $CollectionSettings extends sap.ui.core.$ElementSettings {
@@ -331,12 +335,16 @@ declare namespace sap {
331
335
  /**
332
336
  * selection Changed
333
337
  */
334
- selectionChanged?: (oEvent: sap.ui.base.Event) => void;
338
+ selectionChanged?: (
339
+ oEvent: sap.ui.base.Event<sap.ui.ux3.DataSet$SelectionChangedEventParameters>
340
+ ) => void;
335
341
 
336
342
  /**
337
343
  * Event which is fired when the user triggers a search
338
344
  */
339
- search?: (oEvent: sap.ui.base.Event) => void;
345
+ search?: (
346
+ oEvent: sap.ui.base.Event<sap.ui.ux3.DataSet$SearchEventParameters>
347
+ ) => void;
340
348
  }
341
349
 
342
350
  interface $DataSetItemSettings extends sap.ui.core.$ElementSettings {
@@ -369,7 +377,9 @@ declare namespace sap {
369
377
  /**
370
378
  * Event Fired when Datset item is selected.
371
379
  */
372
- selected?: (oEvent: sap.ui.base.Event) => void;
380
+ selected?: (
381
+ oEvent: sap.ui.base.Event<sap.ui.ux3.DataSetItem$SelectedEventParameters>
382
+ ) => void;
373
383
  }
374
384
 
375
385
  interface $DataSetSimpleViewSettings
@@ -413,7 +423,7 @@ declare namespace sap {
413
423
  | `{${string}}`;
414
424
 
415
425
  /**
416
- * @SINCE 1.9.2
426
+ * @since 1.9.2
417
427
  *
418
428
  * When true and the property floating is true the DatSet items are floating containers filling the whole
419
429
  * space of a row.
@@ -424,7 +434,7 @@ declare namespace sap {
424
434
  | `{${string}}`;
425
435
 
426
436
  /**
427
- * @SINCE 1.9.2
437
+ * @since 1.9.2
428
438
  *
429
439
  * When itemMinWidth>0 and the property floating is true the given minimum width in pixels is set to DatSet
430
440
  * items. A minimum width must be given when the property responsive is set.
@@ -435,7 +445,7 @@ declare namespace sap {
435
445
  | `{${string}}`;
436
446
 
437
447
  /**
438
- * @SINCE 1.13.0
448
+ * @since 1.13.0
439
449
  *
440
450
  * If this value is greater zero only this amount of items is loaded in the first place. New items are loaded
441
451
  * automatically when the user scrolls down. The number of items which are reloaded can be defined with
@@ -447,7 +457,7 @@ declare namespace sap {
447
457
  | `{${string}}`;
448
458
 
449
459
  /**
450
- * @SINCE 1.13.0
460
+ * @since 1.13.0
451
461
  *
452
462
  * This number defines the item count which is reloaded on scroll if initialItemCount is enabled.
453
463
  */
@@ -457,7 +467,7 @@ declare namespace sap {
457
467
  | `{${string}}`;
458
468
 
459
469
  /**
460
- * @SINCE 1.13.0
470
+ * @since 1.13.0
461
471
  *
462
472
  * ID of the DOM Element or jQuery reference to the dom which holds the scrollbar for the dataset
463
473
  */
@@ -467,7 +477,7 @@ declare namespace sap {
467
477
  | `{${string}}`;
468
478
 
469
479
  /**
470
- * @SINCE 1.13.0
480
+ * @since 1.13.0
471
481
  *
472
482
  * If the pagination feature is used without specifying a scroll area, a height for the dataset must be
473
483
  * defined.
@@ -506,12 +516,16 @@ declare namespace sap {
506
516
  /**
507
517
  * Event is fired when the search button is clicked
508
518
  */
509
- search?: (oEvent: sap.ui.base.Event) => void;
519
+ search?: (
520
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Exact$SearchEventParameters>
521
+ ) => void;
510
522
 
511
523
  /**
512
524
  * Event which is fired when an attribute is selected or unselected.
513
525
  */
514
- refineSearch?: (oEvent: sap.ui.base.Event) => void;
526
+ refineSearch?: (
527
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Exact$RefineSearchEventParameters>
528
+ ) => void;
515
529
  }
516
530
 
517
531
  interface $ExactAreaSettings extends sap.ui.core.$ControlSettings {
@@ -557,7 +571,7 @@ declare namespace sap {
557
571
  | `{${string}}`;
558
572
 
559
573
  /**
560
- * @SINCE 1.7.0
574
+ * @since 1.7.0
561
575
  *
562
576
  * Specifies the width of the corresponding list in pixels. The value must be between 70 and 500.
563
577
  */
@@ -567,7 +581,7 @@ declare namespace sap {
567
581
  | `{${string}}`;
568
582
 
569
583
  /**
570
- * @SINCE 1.7.1
584
+ * @since 1.7.1
571
585
  *
572
586
  * The order how the sublists of this attribute should be displayed.
573
587
  */
@@ -631,7 +645,9 @@ declare namespace sap {
631
645
  * the corresponding ExactAttribute is selected, it was already selected when a handler is attached or function
632
646
  * getAttributes() is called.
633
647
  */
634
- supplyAttributes?: (oEvent: sap.ui.base.Event) => void;
648
+ supplyAttributes?: (
649
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ExactAttribute$SupplyAttributesEventParameters>
650
+ ) => void;
635
651
  }
636
652
 
637
653
  interface $ExactBrowserSettings extends sap.ui.core.$ControlSettings {
@@ -647,7 +663,7 @@ declare namespace sap {
647
663
  headerTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
648
664
 
649
665
  /**
650
- * @SINCE 1.7.1
666
+ * @since 1.7.1
651
667
  *
652
668
  * The order how the sublists of the top level list should be displayed.
653
669
  */
@@ -681,7 +697,7 @@ declare namespace sap {
681
697
  | `{${string}}`;
682
698
 
683
699
  /**
684
- * @SINCE 1.7.0
700
+ * @since 1.7.0
685
701
  *
686
702
  * Whether the top list of the ExactBrowser should be shown. When the property is set to false the application
687
703
  * must ensure to select top level attributes appropriately.
@@ -700,7 +716,7 @@ declare namespace sap {
700
716
  | `{${string}}`;
701
717
 
702
718
  /**
703
- * @SINCE 1.9.2
719
+ * @since 1.9.2
704
720
  *
705
721
  * Whether the save button should be available in the header area.
706
722
  */
@@ -710,7 +726,7 @@ declare namespace sap {
710
726
  | `{${string}}`;
711
727
 
712
728
  /**
713
- * @SINCE 1.7.0
729
+ * @since 1.7.0
714
730
  *
715
731
  * Specifies the width of the top list in pixels. The value must be between 70 and 500.
716
732
  */
@@ -742,7 +758,9 @@ declare namespace sap {
742
758
  /**
743
759
  * Event is fired when an attribute is selected or unselected.
744
760
  */
745
- attributeSelected?: (oEvent: sap.ui.base.Event) => void;
761
+ attributeSelected?: (
762
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ExactBrowser$AttributeSelectedEventParameters>
763
+ ) => void;
746
764
 
747
765
  /**
748
766
  * Event is fired when an attribute is selected or unselected.
@@ -790,7 +808,9 @@ declare namespace sap {
790
808
  /**
791
809
  * Event which is fired when an attribute is selected/unselected
792
810
  */
793
- attributeSelected?: (oEvent: sap.ui.base.Event) => void;
811
+ attributeSelected?: (
812
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ExactList$AttributeSelectedEventParameters>
813
+ ) => void;
794
814
  }
795
815
 
796
816
  interface $FacetFilterSettings extends sap.ui.core.$ControlSettings {
@@ -828,7 +848,7 @@ declare namespace sap {
828
848
  | `{${string}}`;
829
849
 
830
850
  /**
831
- * @SINCE 1.9.0
851
+ * @since 1.9.0
832
852
  *
833
853
  * Specifies whether the text values from the additionalText property (see sap.ui.core.ListItems) shall
834
854
  * be displayed.
@@ -866,7 +886,9 @@ declare namespace sap {
866
886
  /**
867
887
  * On Select event.
868
888
  */
869
- select?: (oEvent: sap.ui.base.Event) => void;
889
+ select?: (
890
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FacetFilterList$SelectEventParameters>
891
+ ) => void;
870
892
  }
871
893
 
872
894
  interface $FeedSettings extends sap.ui.core.$ControlSettings {
@@ -926,27 +948,37 @@ declare namespace sap {
926
948
  /**
927
949
  * Event is fired when the filter is changed
928
950
  */
929
- filterChange?: (oEvent: sap.ui.base.Event) => void;
951
+ filterChange?: (
952
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Feed$FilterChangeEventParameters>
953
+ ) => void;
930
954
 
931
955
  /**
932
956
  * Event is fired when the search function on SearchField is triggered
933
957
  */
934
- search?: (oEvent: sap.ui.base.Event) => void;
958
+ search?: (
959
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Feed$SearchEventParameters>
960
+ ) => void;
935
961
 
936
962
  /**
937
963
  * Event is fired when a new chunk is added
938
964
  */
939
- chunkAdded?: (oEvent: sap.ui.base.Event) => void;
965
+ chunkAdded?: (
966
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Feed$ChunkAddedEventParameters>
967
+ ) => void;
940
968
 
941
969
  /**
942
970
  * Event is fired when an item from the tools MenuButton was selected
943
971
  */
944
- toolsItemSelected?: (oEvent: sap.ui.base.Event) => void;
972
+ toolsItemSelected?: (
973
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Feed$ToolsItemSelectedEventParameters>
974
+ ) => void;
945
975
 
946
976
  /**
947
977
  * Event is fired when the live mode has changed
948
978
  */
949
- toggleLive?: (oEvent: sap.ui.base.Event) => void;
979
+ toggleLive?: (
980
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Feed$ToggleLiveEventParameters>
981
+ ) => void;
950
982
  }
951
983
 
952
984
  interface $FeedChunkSettings extends sap.ui.core.$ControlSettings {
@@ -1101,12 +1133,16 @@ declare namespace sap {
1101
1133
  /**
1102
1134
  * Event is raised when a comment is added to the entry. This event is not supported for comment chunks.
1103
1135
  */
1104
- commentAdded?: (oEvent: sap.ui.base.Event) => void;
1136
+ commentAdded?: (
1137
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FeedChunk$CommentAddedEventParameters>
1138
+ ) => void;
1105
1139
 
1106
1140
  /**
1107
1141
  * Event is raised when the user clicks to flag the entry. This event is not supported for comment chunks.
1108
1142
  */
1109
- toggleFlagged?: (oEvent: sap.ui.base.Event) => void;
1143
+ toggleFlagged?: (
1144
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FeedChunk$ToggleFlaggedEventParameters>
1145
+ ) => void;
1110
1146
 
1111
1147
  /**
1112
1148
  * Event is fired when the thumbnail or the name of the sender is clicked.
@@ -1116,13 +1152,17 @@ declare namespace sap {
1116
1152
  /**
1117
1153
  * Click on a @-reference
1118
1154
  */
1119
- referenceClicked?: (oEvent: sap.ui.base.Event) => void;
1155
+ referenceClicked?: (
1156
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FeedChunk$ReferenceClickedEventParameters>
1157
+ ) => void;
1120
1158
 
1121
1159
  /**
1122
1160
  * Event is raised when the user clicks to set the entry as favorite. This event is not supported for comment
1123
1161
  * chunks.
1124
1162
  */
1125
- toggleFavorite?: (oEvent: sap.ui.base.Event) => void;
1163
+ toggleFavorite?: (
1164
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FeedChunk$ToggleFavoriteEventParameters>
1165
+ ) => void;
1126
1166
 
1127
1167
  /**
1128
1168
  * Event is fired when the inspect button was pressed
@@ -1132,12 +1172,16 @@ declare namespace sap {
1132
1172
  /**
1133
1173
  * Event is raised when the user clicks to share the entry. This event is not supported for comment chunks.
1134
1174
  */
1135
- toggleShared?: (oEvent: sap.ui.base.Event) => void;
1175
+ toggleShared?: (
1176
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FeedChunk$ToggleSharedEventParameters>
1177
+ ) => void;
1136
1178
 
1137
1179
  /**
1138
1180
  * Event is fired when an item from the action menu button was selected.
1139
1181
  */
1140
- actionItemSelected?: (oEvent: sap.ui.base.Event) => void;
1182
+ actionItemSelected?: (
1183
+ oEvent: sap.ui.base.Event<sap.ui.ux3.FeedChunk$ActionItemSelectedEventParameters>
1184
+ ) => void;
1141
1185
  }
1142
1186
 
1143
1187
  interface $FeederSettings extends sap.ui.core.$ControlSettings {
@@ -1174,7 +1218,9 @@ declare namespace sap {
1174
1218
  /**
1175
1219
  * Event is fired when the entered text is submitted
1176
1220
  */
1177
- submit?: (oEvent: sap.ui.base.Event) => void;
1221
+ submit?: (
1222
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Feeder$SubmitEventParameters>
1223
+ ) => void;
1178
1224
  }
1179
1225
 
1180
1226
  interface $NavigationBarSettings extends sap.ui.core.$ControlSettings {
@@ -1187,7 +1233,7 @@ declare namespace sap {
1187
1233
  | `{${string}}`;
1188
1234
 
1189
1235
  /**
1190
- * @SINCE 1.36
1236
+ * @since 1.36
1191
1237
  *
1192
1238
  * Sets the appearance of the menu items in the overflow menu to uppercase
1193
1239
  */
@@ -1221,12 +1267,14 @@ declare namespace sap {
1221
1267
  /**
1222
1268
  * Event is fired when an item is selected by the user
1223
1269
  */
1224
- select?: (oEvent: sap.ui.base.Event) => void;
1270
+ select?: (
1271
+ oEvent: sap.ui.base.Event<sap.ui.ux3.NavigationBar$SelectEventParameters>
1272
+ ) => void;
1225
1273
  }
1226
1274
 
1227
1275
  interface $NavigationItemSettings extends sap.ui.core.$ItemSettings {
1228
1276
  /**
1229
- * @SINCE 1.9.0
1277
+ * @since 1.9.0
1230
1278
  *
1231
1279
  * Whether the NavigationItem is currently visible. When making NavigationItems invisible at runtime it
1232
1280
  * is the application's responsibility to make sure it is not the currently selected one - or to select
@@ -1278,7 +1326,7 @@ declare namespace sap {
1278
1326
  | `{${string}}`;
1279
1327
 
1280
1328
  /**
1281
- * @SINCE 1.24.5
1329
+ * @since 1.24.5
1282
1330
  *
1283
1331
  * This property defines if the toggler should be displayed the whole time when the NotificationBar is shown.
1284
1332
  */
@@ -1305,16 +1353,20 @@ declare namespace sap {
1305
1353
  * Event is fired when the bar wants to be displayed depending on given flag. This allows the application
1306
1354
  * to decide what to do.
1307
1355
  */
1308
- display?: (oEvent: sap.ui.base.Event) => void;
1356
+ display?: (
1357
+ oEvent: sap.ui.base.Event<sap.ui.ux3.NotificationBar$DisplayEventParameters>
1358
+ ) => void;
1309
1359
 
1310
1360
  /**
1311
- * @SINCE 1.12.2
1361
+ * @since 1.12.2
1312
1362
  *
1313
1363
  * This event is thrown when the bar was resized (to the different valid states: Min, Max, Default, None).
1314
1364
  * The event itself can be used from SAPUI5-version 1.12.2 since there was a bug in the previous versions
1315
1365
  * firing this event.
1316
1366
  */
1317
- resize?: (oEvent: sap.ui.base.Event) => void;
1367
+ resize?: (
1368
+ oEvent: sap.ui.base.Event<sap.ui.ux3.NotificationBar$ResizeEventParameters>
1369
+ ) => void;
1318
1370
  }
1319
1371
 
1320
1372
  interface $NotifierSettings extends sap.ui.core.$ElementSettings {
@@ -1343,7 +1395,9 @@ declare namespace sap {
1343
1395
  /**
1344
1396
  * Event is fired when a message of the notifiers was selected.
1345
1397
  */
1346
- messageSelected?: (oEvent: sap.ui.base.Event) => void;
1398
+ messageSelected?: (
1399
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Notifier$MessageSelectedEventParameters>
1400
+ ) => void;
1347
1401
  }
1348
1402
 
1349
1403
  interface $OverlaySettings extends sap.ui.core.$ControlSettings {
@@ -1366,22 +1420,30 @@ declare namespace sap {
1366
1420
  /**
1367
1421
  * Event is fired when the Overlay starts closing.
1368
1422
  */
1369
- close?: (oEvent: sap.ui.base.Event) => void;
1423
+ close?: (
1424
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Overlay$CloseEventParameters>
1425
+ ) => void;
1370
1426
 
1371
1427
  /**
1372
1428
  * Event is fired when the Overlay is closed.
1373
1429
  */
1374
- closed?: (oEvent: sap.ui.base.Event) => void;
1430
+ closed?: (
1431
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Overlay$ClosedEventParameters>
1432
+ ) => void;
1375
1433
 
1376
1434
  /**
1377
1435
  * Event is fired when the 'Open' button of the Overlay is clicked.
1378
1436
  */
1379
- openNew?: (oEvent: sap.ui.base.Event) => void;
1437
+ openNew?: (
1438
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Overlay$OpenNewEventParameters>
1439
+ ) => void;
1380
1440
 
1381
1441
  /**
1382
1442
  * Event is fired when the Overlay is opened.
1383
1443
  */
1384
- open?: (oEvent: sap.ui.base.Event) => void;
1444
+ open?: (
1445
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Overlay$OpenEventParameters>
1446
+ ) => void;
1385
1447
  }
1386
1448
 
1387
1449
  interface $OverlayContainerSettings extends sap.ui.ux3.$OverlaySettings {
@@ -1562,18 +1624,24 @@ declare namespace sap {
1562
1624
  /**
1563
1625
  * Action is selected in Action Bar
1564
1626
  */
1565
- actionSelected?: (oEvent: sap.ui.base.Event) => void;
1627
+ actionSelected?: (
1628
+ oEvent: sap.ui.base.Event<sap.ui.ux3.QuickView$ActionSelectedEventParameters>
1629
+ ) => void;
1566
1630
 
1567
1631
  /**
1568
1632
  * Fired when a new feed entry is submitted.
1569
1633
  */
1570
- feedSubmit?: (oEvent: sap.ui.base.Event) => void;
1634
+ feedSubmit?: (
1635
+ oEvent: sap.ui.base.Event<sap.ui.ux3.QuickView$FeedSubmitEventParameters>
1636
+ ) => void;
1571
1637
 
1572
1638
  /**
1573
1639
  * Event is fired when a user clicks on the firstTitle link. Call the preventDefault method of the event
1574
1640
  * object to cancel browser navigation.
1575
1641
  */
1576
- navigate?: (oEvent: sap.ui.base.Event) => void;
1642
+ navigate?: (
1643
+ oEvent: sap.ui.base.Event<sap.ui.ux3.QuickView$NavigateEventParameters>
1644
+ ) => void;
1577
1645
  }
1578
1646
 
1579
1647
  interface $ShellSettings extends sap.ui.core.$ControlSettings {
@@ -1608,7 +1676,7 @@ declare namespace sap {
1608
1676
  | `{${string}}`;
1609
1677
 
1610
1678
  /**
1611
- * @SINCE 1.9.0
1679
+ * @since 1.9.0
1612
1680
  *
1613
1681
  * The tooltip to be displayed for the Logout Button of the Shell. If not set, a text meaning "Logout" in
1614
1682
  * the current language will be displayed.
@@ -1671,7 +1739,7 @@ declare namespace sap {
1671
1739
  | `{${string}}`;
1672
1740
 
1673
1741
  /**
1674
- * @SINCE 1.12.0
1742
+ * @since 1.12.0
1675
1743
  *
1676
1744
  * Defines which design type is to be used.
1677
1745
  */
@@ -1690,7 +1758,7 @@ declare namespace sap {
1690
1758
  | `{${string}}`;
1691
1759
 
1692
1760
  /**
1693
- * @SINCE 1.9.0
1761
+ * @since 1.9.0
1694
1762
  *
1695
1763
  * Whether the Shell content area should have a theme-dependent padding or not.
1696
1764
  */
@@ -1700,7 +1768,7 @@ declare namespace sap {
1700
1768
  | `{${string}}`;
1701
1769
 
1702
1770
  /**
1703
- * @SINCE 1.9.0
1771
+ * @since 1.9.0
1704
1772
  *
1705
1773
  * If set to true, the content area has a defined height. This means that any content put inside can use
1706
1774
  * "100%" height in CSS and will then consume all available space. However, if content is larger, scrollbars
@@ -1712,7 +1780,7 @@ declare namespace sap {
1712
1780
  | `{${string}}`;
1713
1781
 
1714
1782
  /**
1715
- * @SINCE 1.14.0
1783
+ * @since 1.14.0
1716
1784
  *
1717
1785
  * Whether the Shell header (Title Area + Header Items) can be accessed when an Overlay, OverlayContainer
1718
1786
  * or ThingInspector is open.
@@ -1779,7 +1847,7 @@ declare namespace sap {
1779
1847
  | `{${string}}`;
1780
1848
 
1781
1849
  /**
1782
- * @SINCE 1.7.0
1850
+ * @since 1.7.0
1783
1851
  *
1784
1852
  * The NotificationBar which should be integrated into the Shell.
1785
1853
  */
@@ -1800,13 +1868,17 @@ declare namespace sap {
1800
1868
  * is responsible for displaying the correct content for the selected one of the newly created sub-items.
1801
1869
  * The Shell will currently always mark the first sub-item as selected.
1802
1870
  */
1803
- worksetItemSelected?: (oEvent: sap.ui.base.Event) => void;
1871
+ worksetItemSelected?: (
1872
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Shell$WorksetItemSelectedEventParameters>
1873
+ ) => void;
1804
1874
 
1805
1875
  /**
1806
1876
  * An item in the right-hand-side pane bar has been selected, the pane is now visible and can be filled
1807
1877
  * with UI elements.
1808
1878
  */
1809
- paneBarItemSelected?: (oEvent: sap.ui.base.Event) => void;
1879
+ paneBarItemSelected?: (
1880
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Shell$PaneBarItemSelectedEventParameters>
1881
+ ) => void;
1810
1882
 
1811
1883
  /**
1812
1884
  * Fired when the user clicks the "Log-off" button
@@ -1824,12 +1896,14 @@ declare namespace sap {
1824
1896
  feedSubmit?: (oEvent: sap.ui.base.Event) => void;
1825
1897
 
1826
1898
  /**
1827
- * @SINCE 1.12.0
1899
+ * @since 1.12.0
1828
1900
  *
1829
1901
  * Fired after a side pane of the shell is closed. It is also fired, when an open pane is closed by calling
1830
1902
  * setShowPane(false), if and only if the pane was opened before.
1831
1903
  */
1832
- paneClosed?: (oEvent: sap.ui.base.Event) => void;
1904
+ paneClosed?: (
1905
+ oEvent: sap.ui.base.Event<sap.ui.ux3.Shell$PaneClosedEventParameters>
1906
+ ) => void;
1833
1907
  }
1834
1908
 
1835
1909
  interface $ThingActionSettings extends sap.ui.core.$ElementSettings {
@@ -1849,7 +1923,9 @@ declare namespace sap {
1849
1923
  /**
1850
1924
  * Event will be fired when the action was triggered.
1851
1925
  */
1852
- select?: (oEvent: sap.ui.base.Event) => void;
1926
+ select?: (
1927
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ThingAction$SelectEventParameters>
1928
+ ) => void;
1853
1929
  }
1854
1930
 
1855
1931
  interface $ThingGroupSettings extends sap.ui.core.$ElementSettings {
@@ -1966,7 +2042,7 @@ declare namespace sap {
1966
2042
  | `{${string}}`;
1967
2043
 
1968
2044
  /**
1969
- * @SINCE 1.16.3
2045
+ * @since 1.16.3
1970
2046
  *
1971
2047
  * Defines which header type should be used.
1972
2048
  */
@@ -2024,18 +2100,24 @@ declare namespace sap {
2024
2100
  /**
2025
2101
  * Further thing related Action selected
2026
2102
  */
2027
- actionSelected?: (oEvent: sap.ui.base.Event) => void;
2103
+ actionSelected?: (
2104
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ThingInspector$ActionSelectedEventParameters>
2105
+ ) => void;
2028
2106
 
2029
2107
  /**
2030
2108
  * Event for facet selection. The application is responsible for displaying the correct content for the
2031
2109
  * selected one. The ThingInspector will currently always mark the first facet as selected.
2032
2110
  */
2033
- facetSelected?: (oEvent: sap.ui.base.Event) => void;
2111
+ facetSelected?: (
2112
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ThingInspector$FacetSelectedEventParameters>
2113
+ ) => void;
2034
2114
 
2035
2115
  /**
2036
2116
  * Fired when a new feed entry is submitted.
2037
2117
  */
2038
- feedSubmit?: (oEvent: sap.ui.base.Event) => void;
2118
+ feedSubmit?: (
2119
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ThingInspector$FeedSubmitEventParameters>
2120
+ ) => void;
2039
2121
  }
2040
2122
 
2041
2123
  interface $ThingViewerSettings extends sap.ui.core.$ControlSettings {
@@ -2079,7 +2161,7 @@ declare namespace sap {
2079
2161
  | `{${string}}`;
2080
2162
 
2081
2163
  /**
2082
- * @SINCE 1.16.3
2164
+ * @since 1.16.3
2083
2165
  *
2084
2166
  * Defines which header type should be used.
2085
2167
  */
@@ -2129,7 +2211,9 @@ declare namespace sap {
2129
2211
  * Event for facet selection. The application is responsible for displaying the correct content for the
2130
2212
  * selected one. The ThingInspector will currently always mark the first facet as selected.
2131
2213
  */
2132
- facetSelected?: (oEvent: sap.ui.base.Event) => void;
2214
+ facetSelected?: (
2215
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ThingViewer$FacetSelectedEventParameters>
2216
+ ) => void;
2133
2217
  }
2134
2218
 
2135
2219
  interface $ToolPopupSettings extends sap.ui.core.$ControlSettings {
@@ -2178,7 +2262,7 @@ declare namespace sap {
2178
2262
  | `{${string}}`;
2179
2263
 
2180
2264
  /**
2181
- * @SINCE 1.11.1
2265
+ * @since 1.11.1
2182
2266
  *
2183
2267
  * Specifies whether the ToolPopup has a dark or bright background. If set to true the background and borders
2184
2268
  * will be dark. If false they will be bright. This property only has an effect for the GoldReflection-theme.
@@ -2189,7 +2273,7 @@ declare namespace sap {
2189
2273
  | `{${string}}`;
2190
2274
 
2191
2275
  /**
2192
- * @SINCE 1.13.2
2276
+ * @since 1.13.2
2193
2277
  *
2194
2278
  * Determines whether the ToolPopup will auto close when it loses focus. If the user e.g. clicks outside
2195
2279
  * of the ToolPopup it will be closed. Please don't use "modal" and "autoclose" at the same time. In this
@@ -2201,7 +2285,7 @@ declare namespace sap {
2201
2285
  | `{${string}}`;
2202
2286
 
2203
2287
  /**
2204
- * @SINCE 1.13.2
2288
+ * @since 1.13.2
2205
2289
  *
2206
2290
  * Forces a maximum height of the ToolPopup in pixels. If the ToolPopup content is higher than the ToolPopup,
2207
2291
  * the content will be scrollable.
@@ -2212,7 +2296,7 @@ declare namespace sap {
2212
2296
  | `{${string}}`;
2213
2297
 
2214
2298
  /**
2215
- * @SINCE 1.15.0
2299
+ * @since 1.15.0
2216
2300
  *
2217
2301
  * Forces a maximum width of the ToolPopup in pixels.
2218
2302
  */
@@ -2222,7 +2306,7 @@ declare namespace sap {
2222
2306
  | `{${string}}`;
2223
2307
 
2224
2308
  /**
2225
- * @SINCE 1.19.0
2309
+ * @since 1.19.0
2226
2310
  *
2227
2311
  * Time in milliseconds for the open animation.
2228
2312
  */
@@ -2232,7 +2316,7 @@ declare namespace sap {
2232
2316
  | `{${string}}`;
2233
2317
 
2234
2318
  /**
2235
- * @SINCE 1.19.0
2319
+ * @since 1.19.0
2236
2320
  *
2237
2321
  * Time in milliseconds for the close animation.
2238
2322
  */
@@ -2272,7 +2356,7 @@ declare namespace sap {
2272
2356
  opener?: sap.ui.core.Control | string;
2273
2357
 
2274
2358
  /**
2275
- * @SINCE 1.20.1
2359
+ * @since 1.20.1
2276
2360
  *
2277
2361
  * Defines one of the buttons that have been provided via button aggregation to be the default button. This
2278
2362
  * default button is initially selected, if no control is set via the initialFocus association explicitly.
@@ -2295,7 +2379,9 @@ declare namespace sap {
2295
2379
  /**
2296
2380
  * Event is fired whenever the user clicks the Enter or the Enter key inside the pop up
2297
2381
  */
2298
- enter?: (oEvent: sap.ui.base.Event) => void;
2382
+ enter?: (
2383
+ oEvent: sap.ui.base.Event<sap.ui.ux3.ToolPopup$EnterEventParameters>
2384
+ ) => void;
2299
2385
 
2300
2386
  /**
2301
2387
  * Event is fired when one of the icon properties is modified (Note: The icon is not rendered by the ToolPopup).
@@ -2310,13 +2396,488 @@ declare namespace sap {
2310
2396
  closed?: (oEvent: sap.ui.base.Event) => void;
2311
2397
 
2312
2398
  /**
2313
- * @SINCE 1.19.0
2399
+ * @since 1.19.0
2314
2400
  *
2315
2401
  * Event is being fired after the ToolPopup has been opened.
2316
2402
  */
2317
2403
  opened?: (oEvent: sap.ui.base.Event) => void;
2318
2404
  }
2319
2405
 
2406
+ interface ActionBar$ActionSelectedEventParameters {
2407
+ /**
2408
+ * Id of selected ThingAction
2409
+ */
2410
+ id?: string;
2411
+
2412
+ /**
2413
+ * Selected ThingAction
2414
+ */
2415
+ action?: sap.ui.ux3.ThingAction;
2416
+
2417
+ /**
2418
+ * New State of the selected action.Only filled if the respective action maintains a state property, for
2419
+ * example 'FollowUp' or 'Favorite'
2420
+ */
2421
+ newState?: string;
2422
+ }
2423
+
2424
+ interface ActionBar$FeedSubmitEventParameters {
2425
+ /**
2426
+ * Feed text
2427
+ */
2428
+ text?: string;
2429
+ }
2430
+
2431
+ interface Collection$PropertyChangedEventParameters {}
2432
+
2433
+ interface Collection$SelectionChangedEventParameters {}
2434
+
2435
+ interface CollectionInspector$CollectionSelectedEventParameters {}
2436
+
2437
+ interface CollectionInspector$EditCollectionEventParameters {}
2438
+
2439
+ interface CollectionInspector$ItemSelectionChangedEventParameters {}
2440
+
2441
+ interface DataSet$SearchEventParameters {
2442
+ /**
2443
+ * The search query
2444
+ */
2445
+ query?: string;
2446
+ }
2447
+
2448
+ interface DataSet$SelectionChangedEventParameters {
2449
+ /**
2450
+ * Old lead selected index
2451
+ */
2452
+ oldLeadSelectedIndex?: int;
2453
+
2454
+ /**
2455
+ * New lead selected index
2456
+ */
2457
+ newLeadSelectedIndex?: int;
2458
+ }
2459
+
2460
+ interface DataSetItem$SelectedEventParameters {
2461
+ /**
2462
+ * Id of the selected Datset item
2463
+ */
2464
+ itemId?: string;
2465
+ }
2466
+
2467
+ interface Exact$RefineSearchEventParameters {
2468
+ /**
2469
+ * The query string which was entered in the search field
2470
+ */
2471
+ query?: string;
2472
+
2473
+ /**
2474
+ * The attribute which was selected or unselected recently
2475
+ */
2476
+ changedAttribute?: sap.ui.ux3.ExactAttribute;
2477
+
2478
+ /**
2479
+ * Array of all selected ExcatAttribute.
2480
+ */
2481
+ allSelectedAttributes?: object;
2482
+ }
2483
+
2484
+ interface Exact$SearchEventParameters {
2485
+ /**
2486
+ * The query string which was entered in the search field.
2487
+ */
2488
+ query?: string;
2489
+ }
2490
+
2491
+ interface ExactAttribute$SupplyAttributesEventParameters {
2492
+ /**
2493
+ * The ExactAttribute
2494
+ */
2495
+ attribute?: sap.ui.ux3.ExactAttribute;
2496
+ }
2497
+
2498
+ interface ExactBrowser$AttributeSelectedEventParameters {
2499
+ /**
2500
+ * The attribute which was selected or unselected recently
2501
+ */
2502
+ attribute?: sap.ui.ux3.ExactAttribute;
2503
+
2504
+ /**
2505
+ * Array of all selected ExactAttributes
2506
+ */
2507
+ allAttributes?: object;
2508
+ }
2509
+
2510
+ interface ExactBrowser$SaveEventParameters {}
2511
+
2512
+ interface ExactList$AttributeSelectedEventParameters {
2513
+ /**
2514
+ * The attribute which was selected/unselected recently
2515
+ */
2516
+ attribute?: sap.ui.ux3.ExactAttribute;
2517
+
2518
+ /**
2519
+ * Array of all ExactAttributes
2520
+ */
2521
+ allAttributes?: object;
2522
+ }
2523
+
2524
+ interface FacetFilterList$SelectEventParameters {
2525
+ /**
2526
+ * Id of the FacetFilterList taht fires the event.
2527
+ */
2528
+ id?: string;
2529
+
2530
+ /**
2531
+ * Array of selected Indices.
2532
+ */
2533
+ selectedIndices?: int[];
2534
+
2535
+ /**
2536
+ * Array of selected Items.
2537
+ */
2538
+ selectedItems?: sap.ui.core.ListItem[];
2539
+
2540
+ /**
2541
+ * If it is true, then Item All is selected. That means all items in the list are selected - no filter is
2542
+ * set.
2543
+ */
2544
+ all?: boolean;
2545
+ }
2546
+
2547
+ interface Feed$ChunkAddedEventParameters {
2548
+ /**
2549
+ * New chunk
2550
+ */
2551
+ chunk?: sap.ui.ux3.FeedChunk;
2552
+ }
2553
+
2554
+ interface Feed$FilterChangeEventParameters {
2555
+ /**
2556
+ * The new/changed value of the filter
2557
+ */
2558
+ newValue?: string;
2559
+ }
2560
+
2561
+ interface Feed$SearchEventParameters {
2562
+ /**
2563
+ * The search query
2564
+ */
2565
+ query?: string;
2566
+ }
2567
+
2568
+ interface Feed$ToggleLiveEventParameters {
2569
+ /**
2570
+ * Current live indicator
2571
+ */
2572
+ live?: boolean;
2573
+ }
2574
+
2575
+ interface Feed$ToolsItemSelectedEventParameters {
2576
+ /**
2577
+ * The Id of the selected item
2578
+ */
2579
+ itemId?: string;
2580
+
2581
+ /**
2582
+ * The selected item
2583
+ */
2584
+ item?: sap.ui.unified.MenuItemBase;
2585
+ }
2586
+
2587
+ interface FeedChunk$ActionItemSelectedEventParameters {
2588
+ /**
2589
+ * The Id of the selected item
2590
+ */
2591
+ itemId?: string;
2592
+
2593
+ /**
2594
+ * The selected item
2595
+ */
2596
+ item?: sap.ui.unified.MenuItemBase;
2597
+ }
2598
+
2599
+ interface FeedChunk$CommentAddedEventParameters {
2600
+ /**
2601
+ * New comment chunk
2602
+ */
2603
+ comment?: sap.ui.ux3.FeedChunk;
2604
+ }
2605
+
2606
+ interface FeedChunk$DeletedEventParameters {}
2607
+
2608
+ interface FeedChunk$InspectEventParameters {}
2609
+
2610
+ interface FeedChunk$ReferenceClickedEventParameters {
2611
+ /**
2612
+ * Text of the @-reference
2613
+ */
2614
+ text?: string;
2615
+ }
2616
+
2617
+ interface FeedChunk$SenderClickedEventParameters {}
2618
+
2619
+ interface FeedChunk$ToggleFavoriteEventParameters {
2620
+ /**
2621
+ * Current favorite state
2622
+ */
2623
+ favorite?: boolean;
2624
+ }
2625
+
2626
+ interface FeedChunk$ToggleFlaggedEventParameters {
2627
+ /**
2628
+ * Current flagged state
2629
+ */
2630
+ flagged?: boolean;
2631
+ }
2632
+
2633
+ interface FeedChunk$ToggleSharedEventParameters {
2634
+ /**
2635
+ * Current shared state
2636
+ */
2637
+ shareed?: boolean;
2638
+ }
2639
+
2640
+ interface Feeder$SubmitEventParameters {
2641
+ /**
2642
+ * The text that is submitted
2643
+ */
2644
+ text?: string;
2645
+ }
2646
+
2647
+ interface NavigationBar$SelectEventParameters {
2648
+ /**
2649
+ * The ID of the newly selected NavigationItem.
2650
+ */
2651
+ itemId?: string;
2652
+
2653
+ /**
2654
+ * The newly selected NavigationItem.
2655
+ */
2656
+ item?: sap.ui.ux3.NavigationItem;
2657
+ }
2658
+
2659
+ interface NotificationBar$DisplayEventParameters {
2660
+ /**
2661
+ * Indicates if the bar wants to be shown or hidden
2662
+ */
2663
+ show?: boolean;
2664
+ }
2665
+
2666
+ interface NotificationBar$ResizeEventParameters {
2667
+ /**
2668
+ * The corresponding status to which the bar was resized. The corresponding heights can be taken for the
2669
+ * bar's CSS file.
2670
+ */
2671
+ status?: sap.ui.ux3.NotificationBarStatus;
2672
+ }
2673
+
2674
+ interface Notifier$MessageSelectedEventParameters {
2675
+ /**
2676
+ * The message that was selected
2677
+ */
2678
+ message?: sap.ui.core.Message;
2679
+
2680
+ /**
2681
+ * The notifier that contains the selected message
2682
+ */
2683
+ notifier?: sap.ui.ux3.Notifier;
2684
+ }
2685
+
2686
+ interface Overlay$CloseEventParameters {
2687
+ /**
2688
+ * The ID of the Overlay instance.
2689
+ */
2690
+ id?: string;
2691
+ }
2692
+
2693
+ interface Overlay$ClosedEventParameters {
2694
+ /**
2695
+ * The ID of the Overlay instance.
2696
+ */
2697
+ id?: string;
2698
+ }
2699
+
2700
+ interface Overlay$OpenEventParameters {
2701
+ /**
2702
+ * The ID of the Overlay instance
2703
+ */
2704
+ id?: string;
2705
+ }
2706
+
2707
+ interface Overlay$OpenNewEventParameters {
2708
+ /**
2709
+ * The ID of the Overlay instance.
2710
+ */
2711
+ id?: string;
2712
+ }
2713
+
2714
+ interface QuickView$ActionSelectedEventParameters {
2715
+ /**
2716
+ * Id of selected ThingAction
2717
+ */
2718
+ id?: string;
2719
+
2720
+ /**
2721
+ * Selected ThingAction
2722
+ */
2723
+ action?: sap.ui.ux3.ThingAction;
2724
+
2725
+ /**
2726
+ * New State of the selected action. Only filled if the respective action maintains a state property, for
2727
+ * example 'FollowUp' or 'Favorite'
2728
+ */
2729
+ newState?: string;
2730
+ }
2731
+
2732
+ interface QuickView$FeedSubmitEventParameters {
2733
+ /**
2734
+ * Feed text
2735
+ */
2736
+ text?: string;
2737
+ }
2738
+
2739
+ interface QuickView$NavigateEventParameters {
2740
+ /**
2741
+ * URI of the Thing Inspector application.
2742
+ */
2743
+ href?: string;
2744
+ }
2745
+
2746
+ interface Shell$FeedSubmitEventParameters {}
2747
+
2748
+ interface Shell$LogoutEventParameters {}
2749
+
2750
+ interface Shell$PaneBarItemSelectedEventParameters {
2751
+ /**
2752
+ * The ID of the selected PaneBarItem.
2753
+ */
2754
+ id?: string;
2755
+
2756
+ /**
2757
+ * The selected Item
2758
+ */
2759
+ item?: sap.ui.core.Item;
2760
+
2761
+ /**
2762
+ * The key of the selected Item (or null if there is no key)
2763
+ */
2764
+ key?: string;
2765
+ }
2766
+
2767
+ interface Shell$PaneClosedEventParameters {
2768
+ /**
2769
+ * The id of the PaneBarItem to which the closed pane belonged.
2770
+ */
2771
+ id?: string;
2772
+ }
2773
+
2774
+ interface Shell$SearchEventParameters {}
2775
+
2776
+ interface Shell$WorksetItemSelectedEventParameters {
2777
+ /**
2778
+ * The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
2779
+ * which has sub-items, the ID of the currently active sub-item (/leaf) is given.
2780
+ */
2781
+ id?: string;
2782
+
2783
+ /**
2784
+ * The selected NavigationItem
2785
+ */
2786
+ item?: sap.ui.ux3.NavigationItem;
2787
+
2788
+ /**
2789
+ * The key of the selected NavigationItem (or null if there is no key)
2790
+ */
2791
+ key?: string;
2792
+ }
2793
+
2794
+ interface ThingAction$SelectEventParameters {
2795
+ /**
2796
+ * Id of selected action
2797
+ */
2798
+ id?: string;
2799
+
2800
+ /**
2801
+ * Selected Thing Action
2802
+ */
2803
+ action?: sap.ui.ux3.ThingAction;
2804
+ }
2805
+
2806
+ interface ThingInspector$ActionSelectedEventParameters {
2807
+ /**
2808
+ * Id of selected ThingAction
2809
+ */
2810
+ id?: string;
2811
+
2812
+ /**
2813
+ * Selected ThingAction
2814
+ */
2815
+ action?: sap.ui.ux3.ThingAction;
2816
+ }
2817
+
2818
+ interface ThingInspector$FacetSelectedEventParameters {
2819
+ /**
2820
+ * Id of selected NavigationItem
2821
+ */
2822
+ id?: string;
2823
+
2824
+ /**
2825
+ * The selected NavigationItem
2826
+ */
2827
+ item?: sap.ui.ux3.NavigationItem;
2828
+
2829
+ /**
2830
+ * Key of selected NavigationItem
2831
+ */
2832
+ key?: string;
2833
+ }
2834
+
2835
+ interface ThingInspector$FeedSubmitEventParameters {
2836
+ /**
2837
+ * Feed text
2838
+ */
2839
+ text?: string;
2840
+ }
2841
+
2842
+ interface ThingViewer$FacetSelectedEventParameters {
2843
+ /**
2844
+ * Id of selected NavigationItem
2845
+ */
2846
+ id?: string;
2847
+
2848
+ /**
2849
+ * The selected NavigationItem
2850
+ */
2851
+ item?: sap.ui.ux3.NavigationItem;
2852
+
2853
+ /**
2854
+ * Key of selected NavigationItem
2855
+ */
2856
+ key?: string;
2857
+ }
2858
+
2859
+ interface ToolPopup$CloseEventParameters {}
2860
+
2861
+ interface ToolPopup$ClosedEventParameters {}
2862
+
2863
+ interface ToolPopup$EnterEventParameters {
2864
+ /**
2865
+ * The onsapenter event, received by the pop up
2866
+ */
2867
+ originalEvent?: object;
2868
+
2869
+ /**
2870
+ * The control that was focused when the user pressed the Enter key (may be null)
2871
+ */
2872
+ originalSrcControl?: sap.ui.core.Control;
2873
+ }
2874
+
2875
+ interface ToolPopup$IconChangedEventParameters {}
2876
+
2877
+ interface ToolPopup$OpenEventParameters {}
2878
+
2879
+ interface ToolPopup$OpenedEventParameters {}
2880
+
2320
2881
  /**
2321
2882
  * @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` or `sap.m.OverflowToolbar` control.
2322
2883
  *
@@ -2416,7 +2977,7 @@ declare namespace sap {
2416
2977
  /**
2417
2978
  * The function to be called when the event occurs
2418
2979
  */
2419
- fnFunction: (p1: sap.ui.base.Event) => void,
2980
+ fnFunction: (p1: ActionBar$ActionSelectedEvent) => void,
2420
2981
  /**
2421
2982
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
2422
2983
  */
@@ -2443,7 +3004,7 @@ declare namespace sap {
2443
3004
  /**
2444
3005
  * The function to be called when the event occurs
2445
3006
  */
2446
- fnFunction: (p1: sap.ui.base.Event) => void,
3007
+ fnFunction: (p1: ActionBar$ActionSelectedEvent) => void,
2447
3008
  /**
2448
3009
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
2449
3010
  */
@@ -2468,7 +3029,7 @@ declare namespace sap {
2468
3029
  /**
2469
3030
  * The function to be called when the event occurs
2470
3031
  */
2471
- fnFunction: (p1: sap.ui.base.Event) => void,
3032
+ fnFunction: (p1: ActionBar$FeedSubmitEvent) => void,
2472
3033
  /**
2473
3034
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
2474
3035
  */
@@ -2488,7 +3049,7 @@ declare namespace sap {
2488
3049
  /**
2489
3050
  * The function to be called when the event occurs
2490
3051
  */
2491
- fnFunction: (p1: sap.ui.base.Event) => void,
3052
+ fnFunction: (p1: ActionBar$FeedSubmitEvent) => void,
2492
3053
  /**
2493
3054
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
2494
3055
  */
@@ -2511,7 +3072,7 @@ declare namespace sap {
2511
3072
  /**
2512
3073
  * The function to be called, when the event occurs
2513
3074
  */
2514
- fnFunction: (p1: sap.ui.base.Event) => void,
3075
+ fnFunction: (p1: ActionBar$ActionSelectedEvent) => void,
2515
3076
  /**
2516
3077
  * Context object on which the given function had to be called
2517
3078
  */
@@ -2528,14 +3089,14 @@ declare namespace sap {
2528
3089
  /**
2529
3090
  * The function to be called, when the event occurs
2530
3091
  */
2531
- fnFunction: (p1: sap.ui.base.Event) => void,
3092
+ fnFunction: (p1: ActionBar$FeedSubmitEvent) => void,
2532
3093
  /**
2533
3094
  * Context object on which the given function had to be called
2534
3095
  */
2535
3096
  oListener?: object
2536
3097
  ): this;
2537
3098
  /**
2538
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3099
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2539
3100
  *
2540
3101
  * Fires event {@link #event:actionSelected actionSelected} to attached listeners.
2541
3102
  *
@@ -2545,24 +3106,10 @@ declare namespace sap {
2545
3106
  /**
2546
3107
  * Parameters to pass along with the event
2547
3108
  */
2548
- mParameters?: {
2549
- /**
2550
- * Id of selected ThingAction
2551
- */
2552
- id?: string;
2553
- /**
2554
- * Selected ThingAction
2555
- */
2556
- action?: sap.ui.ux3.ThingAction;
2557
- /**
2558
- * New State of the selected action.Only filled if the respective action maintains a state property, for
2559
- * example 'FollowUp' or 'Favorite'
2560
- */
2561
- newState?: string;
2562
- }
2563
- ): this;
2564
- /**
2565
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3109
+ mParameters?: sap.ui.ux3.ActionBar$ActionSelectedEventParameters
3110
+ ): this;
3111
+ /**
3112
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2566
3113
  *
2567
3114
  * Fires event {@link #event:feedSubmit feedSubmit} to attached listeners.
2568
3115
  *
@@ -2572,12 +3119,7 @@ declare namespace sap {
2572
3119
  /**
2573
3120
  * Parameters to pass along with the event
2574
3121
  */
2575
- mParameters?: {
2576
- /**
2577
- * Feed text
2578
- */
2579
- text?: string;
2580
- }
3122
+ mParameters?: sap.ui.ux3.ActionBar$FeedSubmitEventParameters
2581
3123
  ): this;
2582
3124
  /**
2583
3125
  * Gets current value of property {@link #getAlwaysShowMoreMenu alwaysShowMoreMenu}.
@@ -2711,7 +3253,7 @@ declare namespace sap {
2711
3253
  oBusinessAction: sap.ui.ux3.ThingAction
2712
3254
  ): int;
2713
3255
  /**
2714
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3256
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2715
3257
  *
2716
3258
  * Checks whether the control is still valid (is in the DOM). ActionBar instance is rendered if and only
2717
3259
  * if 'isActive' returns 'true'. This check is called implicitely by the rendere, MUST not be removed.
@@ -2918,7 +3460,7 @@ declare namespace sap {
2918
3460
  ): this;
2919
3461
  }
2920
3462
  /**
2921
- * @SINCE 1.9.0
3463
+ * @since 1.9.0
2922
3464
  * @deprecated (since 1.38)
2923
3465
  *
2924
3466
  * Collection
@@ -3143,7 +3685,7 @@ declare namespace sap {
3143
3685
  oListener?: object
3144
3686
  ): this;
3145
3687
  /**
3146
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3688
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3147
3689
  *
3148
3690
  * Fires event {@link #event:propertyChanged propertyChanged} to attached listeners.
3149
3691
  *
@@ -3156,7 +3698,7 @@ declare namespace sap {
3156
3698
  mParameters?: object
3157
3699
  ): this;
3158
3700
  /**
3159
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3701
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3160
3702
  *
3161
3703
  * Fires event {@link #event:selectionChanged selectionChanged} to attached listeners.
3162
3704
  *
@@ -3195,8 +3737,7 @@ declare namespace sap {
3195
3737
  */
3196
3738
  getMultiSelection(): boolean;
3197
3739
  /**
3198
- * Returns array of IDs of the elements which are the current targets of the association {@link #getSelectedItems
3199
- * selectedItems}.
3740
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getSelectedItems selectedItems}.
3200
3741
  */
3201
3742
  getSelectedItems(): sap.ui.core.ID[];
3202
3743
  /**
@@ -3321,7 +3862,7 @@ declare namespace sap {
3321
3862
  ): this;
3322
3863
  }
3323
3864
  /**
3324
- * @SINCE 1.9.0
3865
+ * @since 1.9.0
3325
3866
  * @deprecated (since 1.38)
3326
3867
  *
3327
3868
  * CollectionInspector
@@ -3603,7 +4144,7 @@ declare namespace sap {
3603
4144
  oListener?: object
3604
4145
  ): this;
3605
4146
  /**
3606
- * Detaches event handler `fnFunction` from the {@link #event:itemSelectionChanged itemSelectionChanged}
4147
+ * Detaches event handler `fnFunction` from the {@link #event:itemSelectionChanged itemSelectionChanged }
3607
4148
  * event of this `sap.ui.ux3.CollectionInspector`.
3608
4149
  *
3609
4150
  * The passed function and listener object must match the ones used for event registration.
@@ -3621,7 +4162,7 @@ declare namespace sap {
3621
4162
  oListener?: object
3622
4163
  ): this;
3623
4164
  /**
3624
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4165
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3625
4166
  *
3626
4167
  * Fires event {@link #event:collectionSelected collectionSelected} to attached listeners.
3627
4168
  *
@@ -3634,7 +4175,7 @@ declare namespace sap {
3634
4175
  mParameters?: object
3635
4176
  ): this;
3636
4177
  /**
3637
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4178
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3638
4179
  *
3639
4180
  * Fires event {@link #event:editCollection editCollection} to attached listeners.
3640
4181
  *
@@ -3647,7 +4188,7 @@ declare namespace sap {
3647
4188
  mParameters?: object
3648
4189
  ): this;
3649
4190
  /**
3650
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4191
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3651
4192
  *
3652
4193
  * Fires event {@link #event:itemSelectionChanged itemSelectionChanged} to attached listeners.
3653
4194
  *
@@ -3912,13 +4453,13 @@ declare namespace sap {
3912
4453
  */
3913
4454
  static getMetadata(): sap.ui.core.ElementMetadata;
3914
4455
  /**
3915
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4456
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3916
4457
  *
3917
4458
  * Rerendering of the FilterArea
3918
4459
  */
3919
4460
  _rerenderFilter(): void;
3920
4461
  /**
3921
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4462
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3922
4463
  *
3923
4464
  * Rerendering of the Toolbar
3924
4465
  */
@@ -3984,7 +4525,7 @@ declare namespace sap {
3984
4525
  /**
3985
4526
  * The function to be called when the event occurs
3986
4527
  */
3987
- fnFunction: (p1: sap.ui.base.Event) => void,
4528
+ fnFunction: (p1: DataSet$SearchEvent) => void,
3988
4529
  /**
3989
4530
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
3990
4531
  */
@@ -4004,7 +4545,7 @@ declare namespace sap {
4004
4545
  /**
4005
4546
  * The function to be called when the event occurs
4006
4547
  */
4007
- fnFunction: (p1: sap.ui.base.Event) => void,
4548
+ fnFunction: (p1: DataSet$SearchEvent) => void,
4008
4549
  /**
4009
4550
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
4010
4551
  */
@@ -4030,7 +4571,7 @@ declare namespace sap {
4030
4571
  /**
4031
4572
  * The function to be called when the event occurs
4032
4573
  */
4033
- fnFunction: (p1: sap.ui.base.Event) => void,
4574
+ fnFunction: (p1: DataSet$SelectionChangedEvent) => void,
4034
4575
  /**
4035
4576
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
4036
4577
  */
@@ -4051,7 +4592,7 @@ declare namespace sap {
4051
4592
  /**
4052
4593
  * The function to be called when the event occurs
4053
4594
  */
4054
- fnFunction: (p1: sap.ui.base.Event) => void,
4595
+ fnFunction: (p1: DataSet$SelectionChangedEvent) => void,
4055
4596
  /**
4056
4597
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
4057
4598
  */
@@ -4076,7 +4617,7 @@ declare namespace sap {
4076
4617
  */
4077
4618
  clearSelection(): void;
4078
4619
  /**
4079
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4620
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4080
4621
  *
4081
4622
  * Creates a view switch button
4082
4623
  *
@@ -4121,7 +4662,7 @@ declare namespace sap {
4121
4662
  /**
4122
4663
  * The function to be called, when the event occurs
4123
4664
  */
4124
- fnFunction: (p1: sap.ui.base.Event) => void,
4665
+ fnFunction: (p1: DataSet$SearchEvent) => void,
4125
4666
  /**
4126
4667
  * Context object on which the given function had to be called
4127
4668
  */
@@ -4139,14 +4680,14 @@ declare namespace sap {
4139
4680
  /**
4140
4681
  * The function to be called, when the event occurs
4141
4682
  */
4142
- fnFunction: (p1: sap.ui.base.Event) => void,
4683
+ fnFunction: (p1: DataSet$SelectionChangedEvent) => void,
4143
4684
  /**
4144
4685
  * Context object on which the given function had to be called
4145
4686
  */
4146
4687
  oListener?: object
4147
4688
  ): this;
4148
4689
  /**
4149
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4690
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4150
4691
  *
4151
4692
  * Fires event {@link #event:search search} to attached listeners.
4152
4693
  *
@@ -4156,15 +4697,10 @@ declare namespace sap {
4156
4697
  /**
4157
4698
  * Parameters to pass along with the event
4158
4699
  */
4159
- mParameters?: {
4160
- /**
4161
- * The search query
4162
- */
4163
- query?: string;
4164
- }
4700
+ mParameters?: sap.ui.ux3.DataSet$SearchEventParameters
4165
4701
  ): this;
4166
4702
  /**
4167
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4703
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4168
4704
  *
4169
4705
  * Fires event {@link #event:selectionChanged selectionChanged} to attached listeners.
4170
4706
  *
@@ -4174,16 +4710,7 @@ declare namespace sap {
4174
4710
  /**
4175
4711
  * Parameters to pass along with the event
4176
4712
  */
4177
- mParameters?: {
4178
- /**
4179
- * Old lead selected index
4180
- */
4181
- oldLeadSelectedIndex?: int;
4182
- /**
4183
- * New lead selected index
4184
- */
4185
- newLeadSelectedIndex?: int;
4186
- }
4713
+ mParameters?: sap.ui.ux3.DataSet$SelectionChangedEventParameters
4187
4714
  ): this;
4188
4715
  /**
4189
4716
  * Gets content of aggregation {@link #getFilter filter}.
@@ -4198,7 +4725,7 @@ declare namespace sap {
4198
4725
  */
4199
4726
  getItems(): sap.ui.ux3.DataSetItem[];
4200
4727
  /**
4201
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4728
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4202
4729
  *
4203
4730
  * Returns the LeadSelection index
4204
4731
  *
@@ -4224,7 +4751,7 @@ declare namespace sap {
4224
4751
  */
4225
4752
  getSelectedIndices(): void;
4226
4753
  /**
4227
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4754
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4228
4755
  *
4229
4756
  * Returns id of selected Item from given index
4230
4757
  *
@@ -4365,7 +4892,7 @@ declare namespace sap {
4365
4892
  iIndex: int
4366
4893
  ): this;
4367
4894
  /**
4368
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4895
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4369
4896
  *
4370
4897
  * Returns true if iIndex is selected
4371
4898
  *
@@ -4439,7 +4966,7 @@ declare namespace sap {
4439
4966
  vView: int | string | sap.ui.ux3.DataSetView
4440
4967
  ): sap.ui.ux3.DataSetView | null;
4441
4968
  /**
4442
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4969
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4443
4970
  *
4444
4971
  * Set the LeadSelection index
4445
4972
  */
@@ -4613,7 +5140,7 @@ declare namespace sap {
4613
5140
  /**
4614
5141
  * The function to be called when the event occurs
4615
5142
  */
4616
- fnFunction: (p1: sap.ui.base.Event) => void,
5143
+ fnFunction: (p1: DataSetItem$SelectedEvent) => void,
4617
5144
  /**
4618
5145
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSetItem` itself
4619
5146
  */
@@ -4633,7 +5160,7 @@ declare namespace sap {
4633
5160
  /**
4634
5161
  * The function to be called when the event occurs
4635
5162
  */
4636
- fnFunction: (p1: sap.ui.base.Event) => void,
5163
+ fnFunction: (p1: DataSetItem$SelectedEvent) => void,
4637
5164
  /**
4638
5165
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSetItem` itself
4639
5166
  */
@@ -4650,14 +5177,14 @@ declare namespace sap {
4650
5177
  /**
4651
5178
  * The function to be called, when the event occurs
4652
5179
  */
4653
- fnFunction: (p1: sap.ui.base.Event) => void,
5180
+ fnFunction: (p1: DataSetItem$SelectedEvent) => void,
4654
5181
  /**
4655
5182
  * Context object on which the given function had to be called
4656
5183
  */
4657
5184
  oListener?: object
4658
5185
  ): this;
4659
5186
  /**
4660
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5187
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4661
5188
  *
4662
5189
  * Fires event {@link #event:selected selected} to attached listeners.
4663
5190
  *
@@ -4667,12 +5194,7 @@ declare namespace sap {
4667
5194
  /**
4668
5195
  * Parameters to pass along with the event
4669
5196
  */
4670
- mParameters?: {
4671
- /**
4672
- * Id of the selected Datset item
4673
- */
4674
- itemId?: string;
4675
- }
5197
+ mParameters?: sap.ui.ux3.DataSetItem$SelectedEventParameters
4676
5198
  ): this;
4677
5199
  /**
4678
5200
  * Gets current value of property {@link #getCheckable checkable}.
@@ -4855,7 +5377,7 @@ declare namespace sap {
4855
5377
  */
4856
5378
  destroyTemplate(): this;
4857
5379
  /**
4858
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5380
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4859
5381
  *
4860
5382
  * View finalization: Called when leaving the view
4861
5383
  */
@@ -4872,7 +5394,7 @@ declare namespace sap {
4872
5394
  */
4873
5395
  getFloating(): boolean;
4874
5396
  /**
4875
- * @SINCE 1.13.0
5397
+ * @since 1.13.0
4876
5398
  *
4877
5399
  * Gets current value of property {@link #getHeight height}.
4878
5400
  *
@@ -4907,7 +5429,7 @@ declare namespace sap {
4907
5429
  */
4908
5430
  getIconSelected(): sap.ui.core.URI;
4909
5431
  /**
4910
- * @SINCE 1.13.0
5432
+ * @since 1.13.0
4911
5433
  *
4912
5434
  * Gets current value of property {@link #getInitialItemCount initialItemCount}.
4913
5435
  *
@@ -4921,7 +5443,7 @@ declare namespace sap {
4921
5443
  */
4922
5444
  getInitialItemCount(): int;
4923
5445
  /**
4924
- * @SINCE 1.9.2
5446
+ * @since 1.9.2
4925
5447
  *
4926
5448
  * Gets current value of property {@link #getItemMinWidth itemMinWidth}.
4927
5449
  *
@@ -4944,7 +5466,7 @@ declare namespace sap {
4944
5466
  */
4945
5467
  getName(): string;
4946
5468
  /**
4947
- * @SINCE 1.13.0
5469
+ * @since 1.13.0
4948
5470
  *
4949
5471
  * Gets current value of property {@link #getReloadItemCount reloadItemCount}.
4950
5472
  *
@@ -4956,7 +5478,7 @@ declare namespace sap {
4956
5478
  */
4957
5479
  getReloadItemCount(): int;
4958
5480
  /**
4959
- * @SINCE 1.9.2
5481
+ * @since 1.9.2
4960
5482
  *
4961
5483
  * Gets current value of property {@link #getResponsive responsive}.
4962
5484
  *
@@ -4969,7 +5491,7 @@ declare namespace sap {
4969
5491
  */
4970
5492
  getResponsive(): boolean;
4971
5493
  /**
4972
- * @SINCE 1.13.0
5494
+ * @since 1.13.0
4973
5495
  *
4974
5496
  * Gets current value of property {@link #getScrollArea scrollArea}.
4975
5497
  *
@@ -4985,7 +5507,7 @@ declare namespace sap {
4985
5507
  */
4986
5508
  getTemplate(): sap.ui.core.Control;
4987
5509
  /**
4988
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5510
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4989
5511
  *
4990
5512
  * Eventhandler for the selection of an Item
4991
5513
  */
@@ -4996,7 +5518,7 @@ declare namespace sap {
4996
5518
  oEvent: sap.ui.base.Event
4997
5519
  ): void;
4998
5520
  /**
4999
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5521
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5000
5522
  *
5001
5523
  * View Initialization: Called when selecting the view
5002
5524
  */
@@ -5007,7 +5529,7 @@ declare namespace sap {
5007
5529
  aItems: any[]
5008
5530
  ): void;
5009
5531
  /**
5010
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5532
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5011
5533
  *
5012
5534
  * Check if Item `oItem` is selected
5013
5535
  */
@@ -5036,7 +5558,7 @@ declare namespace sap {
5036
5558
  bFloating?: boolean
5037
5559
  ): this;
5038
5560
  /**
5039
- * @SINCE 1.13.0
5561
+ * @since 1.13.0
5040
5562
  *
5041
5563
  * Sets a new value for property {@link #getHeight height}.
5042
5564
  *
@@ -5099,7 +5621,7 @@ declare namespace sap {
5099
5621
  sIconSelected?: sap.ui.core.URI
5100
5622
  ): this;
5101
5623
  /**
5102
- * @SINCE 1.13.0
5624
+ * @since 1.13.0
5103
5625
  *
5104
5626
  * Sets a new value for property {@link #getInitialItemCount initialItemCount}.
5105
5627
  *
@@ -5120,7 +5642,7 @@ declare namespace sap {
5120
5642
  iInitialItemCount?: int
5121
5643
  ): this;
5122
5644
  /**
5123
- * @SINCE 1.9.2
5645
+ * @since 1.9.2
5124
5646
  *
5125
5647
  * Sets a new value for property {@link #getItemMinWidth itemMinWidth}.
5126
5648
  *
@@ -5157,7 +5679,7 @@ declare namespace sap {
5157
5679
  sName?: string
5158
5680
  ): this;
5159
5681
  /**
5160
- * @SINCE 1.13.0
5682
+ * @since 1.13.0
5161
5683
  *
5162
5684
  * Sets a new value for property {@link #getReloadItemCount reloadItemCount}.
5163
5685
  *
@@ -5176,7 +5698,7 @@ declare namespace sap {
5176
5698
  iReloadItemCount?: int
5177
5699
  ): this;
5178
5700
  /**
5179
- * @SINCE 1.9.2
5701
+ * @since 1.9.2
5180
5702
  *
5181
5703
  * Sets a new value for property {@link #getResponsive responsive}.
5182
5704
  *
@@ -5213,7 +5735,7 @@ declare namespace sap {
5213
5735
  oTemplate: sap.ui.core.Control
5214
5736
  ): this;
5215
5737
  /**
5216
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5738
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5217
5739
  *
5218
5740
  * View update: Called when pagination adds items
5219
5741
  */
@@ -5226,7 +5748,7 @@ declare namespace sap {
5226
5748
  }
5227
5749
  /**
5228
5750
  * @deprecated (since 1.38)
5229
- * @EXPERIMENTAL (since 1.2) - API is not yet finished and might change completely
5751
+ * @experimental (since 1.2) - API is not yet finished and might change completely
5230
5752
  *
5231
5753
  * A comprehensive UI design approach with graphical and functional elements for searching data, exploring
5232
5754
  * data, and acting on the data ("Explore and Act (Exact) Pattern").
@@ -5322,7 +5844,7 @@ declare namespace sap {
5322
5844
  /**
5323
5845
  * The function to be called when the event occurs
5324
5846
  */
5325
- fnFunction: (p1: sap.ui.base.Event) => void,
5847
+ fnFunction: (p1: Exact$RefineSearchEvent) => void,
5326
5848
  /**
5327
5849
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
5328
5850
  */
@@ -5342,7 +5864,7 @@ declare namespace sap {
5342
5864
  /**
5343
5865
  * The function to be called when the event occurs
5344
5866
  */
5345
- fnFunction: (p1: sap.ui.base.Event) => void,
5867
+ fnFunction: (p1: Exact$RefineSearchEvent) => void,
5346
5868
  /**
5347
5869
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
5348
5870
  */
@@ -5367,7 +5889,7 @@ declare namespace sap {
5367
5889
  /**
5368
5890
  * The function to be called when the event occurs
5369
5891
  */
5370
- fnFunction: (p1: sap.ui.base.Event) => void,
5892
+ fnFunction: (p1: Exact$SearchEvent) => void,
5371
5893
  /**
5372
5894
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
5373
5895
  */
@@ -5387,7 +5909,7 @@ declare namespace sap {
5387
5909
  /**
5388
5910
  * The function to be called when the event occurs
5389
5911
  */
5390
- fnFunction: (p1: sap.ui.base.Event) => void,
5912
+ fnFunction: (p1: Exact$SearchEvent) => void,
5391
5913
  /**
5392
5914
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
5393
5915
  */
@@ -5416,7 +5938,7 @@ declare namespace sap {
5416
5938
  /**
5417
5939
  * The function to be called, when the event occurs
5418
5940
  */
5419
- fnFunction: (p1: sap.ui.base.Event) => void,
5941
+ fnFunction: (p1: Exact$RefineSearchEvent) => void,
5420
5942
  /**
5421
5943
  * Context object on which the given function had to be called
5422
5944
  */
@@ -5433,14 +5955,14 @@ declare namespace sap {
5433
5955
  /**
5434
5956
  * The function to be called, when the event occurs
5435
5957
  */
5436
- fnFunction: (p1: sap.ui.base.Event) => void,
5958
+ fnFunction: (p1: Exact$SearchEvent) => void,
5437
5959
  /**
5438
5960
  * Context object on which the given function had to be called
5439
5961
  */
5440
5962
  oListener?: object
5441
5963
  ): this;
5442
5964
  /**
5443
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5965
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5444
5966
  *
5445
5967
  * Fires event {@link #event:refineSearch refineSearch} to attached listeners.
5446
5968
  *
@@ -5450,23 +5972,10 @@ declare namespace sap {
5450
5972
  /**
5451
5973
  * Parameters to pass along with the event
5452
5974
  */
5453
- mParameters?: {
5454
- /**
5455
- * The query string which was entered in the search field
5456
- */
5457
- query?: string;
5458
- /**
5459
- * The attribute which was selected or unselected recently
5460
- */
5461
- changedAttribute?: sap.ui.ux3.ExactAttribute;
5462
- /**
5463
- * Array of all selected ExcatAttribute.
5464
- */
5465
- allSelectedAttributes?: object;
5466
- }
5975
+ mParameters?: sap.ui.ux3.Exact$RefineSearchEventParameters
5467
5976
  ): this;
5468
5977
  /**
5469
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5978
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5470
5979
  *
5471
5980
  * Fires event {@link #event:search search} to attached listeners.
5472
5981
  *
@@ -5476,12 +5985,7 @@ declare namespace sap {
5476
5985
  /**
5477
5986
  * Parameters to pass along with the event
5478
5987
  */
5479
- mParameters?: {
5480
- /**
5481
- * The query string which was entered in the search field.
5482
- */
5483
- query?: string;
5484
- }
5988
+ mParameters?: sap.ui.ux3.Exact$SearchEventParameters
5485
5989
  ): this;
5486
5990
  /**
5487
5991
  * Gets content of aggregation {@link #getAttributes attributes}.
@@ -5588,7 +6092,7 @@ declare namespace sap {
5588
6092
  }
5589
6093
  /**
5590
6094
  * @deprecated (since 1.38)
5591
- * @EXPERIMENTAL (since 1.6) - API is not yet finished and might change completely
6095
+ * @experimental (since 1.6) - API is not yet finished and might change completely
5592
6096
  *
5593
6097
  * Consists of two sections: A tool bar and a content area where arbitrary controls can be added. The ExactArea
5594
6098
  * is intended to be used for the Exact design approach but alternatively also in a stand alone version.
@@ -5923,7 +6427,7 @@ declare namespace sap {
5923
6427
  /**
5924
6428
  * The function to be called when the event occurs
5925
6429
  */
5926
- fnFunction: (p1: sap.ui.base.Event) => void,
6430
+ fnFunction: (p1: ExactAttribute$SupplyAttributesEvent) => void,
5927
6431
  /**
5928
6432
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactAttribute` itself
5929
6433
  */
@@ -5946,7 +6450,7 @@ declare namespace sap {
5946
6450
  /**
5947
6451
  * The function to be called when the event occurs
5948
6452
  */
5949
- fnFunction: (p1: sap.ui.base.Event) => void,
6453
+ fnFunction: (p1: ExactAttribute$SupplyAttributesEvent) => void,
5950
6454
  /**
5951
6455
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactAttribute` itself
5952
6456
  */
@@ -5970,14 +6474,14 @@ declare namespace sap {
5970
6474
  /**
5971
6475
  * The function to be called, when the event occurs
5972
6476
  */
5973
- fnFunction: (p1: sap.ui.base.Event) => void,
6477
+ fnFunction: (p1: ExactAttribute$SupplyAttributesEvent) => void,
5974
6478
  /**
5975
6479
  * Context object on which the given function had to be called
5976
6480
  */
5977
6481
  oListener?: object
5978
6482
  ): this;
5979
6483
  /**
5980
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6484
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5981
6485
  *
5982
6486
  * Fires event {@link #event:supplyAttributes supplyAttributes} to attached listeners.
5983
6487
  *
@@ -5987,12 +6491,7 @@ declare namespace sap {
5987
6491
  /**
5988
6492
  * Parameters to pass along with the event
5989
6493
  */
5990
- mParameters?: {
5991
- /**
5992
- * The ExactAttribute
5993
- */
5994
- attribute?: sap.ui.ux3.ExactAttribute;
5995
- }
6494
+ mParameters?: sap.ui.ux3.ExactAttribute$SupplyAttributesEventParameters
5996
6495
  ): this;
5997
6496
  /**
5998
6497
  * Gets current value of property {@link #getAdditionalData additionalData}.
@@ -6020,7 +6519,7 @@ declare namespace sap {
6020
6519
  */
6021
6520
  getAutoActivateSupply(): boolean;
6022
6521
  /**
6023
- * @SINCE 1.7.1
6522
+ * @since 1.7.1
6024
6523
  *
6025
6524
  * Gets current value of property {@link #getListOrder listOrder}.
6026
6525
  *
@@ -6080,7 +6579,7 @@ declare namespace sap {
6080
6579
  */
6081
6580
  getText(): string;
6082
6581
  /**
6083
- * @SINCE 1.7.0
6582
+ * @since 1.7.0
6084
6583
  *
6085
6584
  * Gets current value of property {@link #getWidth width}.
6086
6585
  *
@@ -6183,7 +6682,7 @@ declare namespace sap {
6183
6682
  bAutoActivateSupply?: boolean
6184
6683
  ): this;
6185
6684
  /**
6186
- * @SINCE 1.7.1
6685
+ * @since 1.7.1
6187
6686
  *
6188
6687
  * Sets a new value for property {@link #getListOrder listOrder}.
6189
6688
  *
@@ -6202,7 +6701,7 @@ declare namespace sap {
6202
6701
  sListOrder?: sap.ui.ux3.ExactOrder
6203
6702
  ): this;
6204
6703
  /**
6205
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6704
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6206
6705
  *
6207
6706
  * See:
6208
6707
  * sap.ui.base.ManagedObject.prototype.setProperty
@@ -6296,7 +6795,7 @@ declare namespace sap {
6296
6795
  */
6297
6796
  setTooltip(oTooltip: string | sap.ui.core.TooltipBase): this;
6298
6797
  /**
6299
- * @SINCE 1.7.0
6798
+ * @since 1.7.0
6300
6799
  *
6301
6800
  * Sets a new value for property {@link #getWidth width}.
6302
6801
  *
@@ -6416,7 +6915,7 @@ declare namespace sap {
6416
6915
  /**
6417
6916
  * The function to be called when the event occurs
6418
6917
  */
6419
- fnFunction: (p1: sap.ui.base.Event) => void,
6918
+ fnFunction: (p1: ExactBrowser$AttributeSelectedEvent) => void,
6420
6919
  /**
6421
6920
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactBrowser` itself
6422
6921
  */
@@ -6437,7 +6936,7 @@ declare namespace sap {
6437
6936
  /**
6438
6937
  * The function to be called when the event occurs
6439
6938
  */
6440
- fnFunction: (p1: sap.ui.base.Event) => void,
6939
+ fnFunction: (p1: ExactBrowser$AttributeSelectedEvent) => void,
6441
6940
  /**
6442
6941
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactBrowser` itself
6443
6942
  */
@@ -6512,7 +7011,7 @@ declare namespace sap {
6512
7011
  /**
6513
7012
  * The function to be called, when the event occurs
6514
7013
  */
6515
- fnFunction: (p1: sap.ui.base.Event) => void,
7014
+ fnFunction: (p1: ExactBrowser$AttributeSelectedEvent) => void,
6516
7015
  /**
6517
7016
  * Context object on which the given function had to be called
6518
7017
  */
@@ -6536,7 +7035,7 @@ declare namespace sap {
6536
7035
  oListener?: object
6537
7036
  ): this;
6538
7037
  /**
6539
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7038
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6540
7039
  *
6541
7040
  * Fires event {@link #event:attributeSelected attributeSelected} to attached listeners.
6542
7041
  *
@@ -6546,19 +7045,10 @@ declare namespace sap {
6546
7045
  /**
6547
7046
  * Parameters to pass along with the event
6548
7047
  */
6549
- mParameters?: {
6550
- /**
6551
- * The attribute which was selected or unselected recently
6552
- */
6553
- attribute?: sap.ui.ux3.ExactAttribute;
6554
- /**
6555
- * Array of all selected ExactAttributes
6556
- */
6557
- allAttributes?: object;
6558
- }
7048
+ mParameters?: sap.ui.ux3.ExactBrowser$AttributeSelectedEventParameters
6559
7049
  ): this;
6560
7050
  /**
6561
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7051
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6562
7052
  *
6563
7053
  * Fires event {@link #event:save save} to attached listeners.
6564
7054
  *
@@ -6597,7 +7087,7 @@ declare namespace sap {
6597
7087
  */
6598
7088
  getEnableReset(): boolean;
6599
7089
  /**
6600
- * @SINCE 1.9.2
7090
+ * @since 1.9.2
6601
7091
  *
6602
7092
  * Gets current value of property {@link #getEnableSave enableSave}.
6603
7093
  *
@@ -6648,7 +7138,7 @@ declare namespace sap {
6648
7138
  */
6649
7139
  getShowHeader(): boolean;
6650
7140
  /**
6651
- * @SINCE 1.7.0
7141
+ * @since 1.7.0
6652
7142
  *
6653
7143
  * Gets current value of property {@link #getShowTopList showTopList}.
6654
7144
  *
@@ -6670,7 +7160,7 @@ declare namespace sap {
6670
7160
  */
6671
7161
  getTitle(): string;
6672
7162
  /**
6673
- * @SINCE 1.7.1
7163
+ * @since 1.7.1
6674
7164
  *
6675
7165
  * Gets current value of property {@link #getTopListOrder topListOrder}.
6676
7166
  *
@@ -6682,7 +7172,7 @@ declare namespace sap {
6682
7172
  */
6683
7173
  getTopListOrder(): sap.ui.ux3.ExactOrder;
6684
7174
  /**
6685
- * @SINCE 1.7.0
7175
+ * @since 1.7.0
6686
7176
  *
6687
7177
  * Gets current value of property {@link #getTopListWidth topListWidth}.
6688
7178
  *
@@ -6780,7 +7270,7 @@ declare namespace sap {
6780
7270
  bEnableReset?: boolean
6781
7271
  ): this;
6782
7272
  /**
6783
- * @SINCE 1.9.2
7273
+ * @since 1.9.2
6784
7274
  *
6785
7275
  * Sets a new value for property {@link #getEnableSave enableSave}.
6786
7276
  *
@@ -6871,7 +7361,7 @@ declare namespace sap {
6871
7361
  bShowHeader?: boolean
6872
7362
  ): this;
6873
7363
  /**
6874
- * @SINCE 1.7.0
7364
+ * @since 1.7.0
6875
7365
  *
6876
7366
  * Sets a new value for property {@link #getShowTopList showTopList}.
6877
7367
  *
@@ -6907,7 +7397,7 @@ declare namespace sap {
6907
7397
  sTitle?: string
6908
7398
  ): this;
6909
7399
  /**
6910
- * @SINCE 1.7.1
7400
+ * @since 1.7.1
6911
7401
  *
6912
7402
  * Sets a new value for property {@link #getTopListOrder topListOrder}.
6913
7403
  *
@@ -6926,7 +7416,7 @@ declare namespace sap {
6926
7416
  sTopListOrder?: sap.ui.ux3.ExactOrder
6927
7417
  ): this;
6928
7418
  /**
6929
- * @SINCE 1.7.0
7419
+ * @since 1.7.0
6930
7420
  *
6931
7421
  * Sets a new value for property {@link #getTopListWidth topListWidth}.
6932
7422
  *
@@ -7043,7 +7533,7 @@ declare namespace sap {
7043
7533
  /**
7044
7534
  * The function to be called when the event occurs
7045
7535
  */
7046
- fnFunction: (p1: sap.ui.base.Event) => void,
7536
+ fnFunction: (p1: ExactList$AttributeSelectedEvent) => void,
7047
7537
  /**
7048
7538
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactList` itself
7049
7539
  */
@@ -7064,7 +7554,7 @@ declare namespace sap {
7064
7554
  /**
7065
7555
  * The function to be called when the event occurs
7066
7556
  */
7067
- fnFunction: (p1: sap.ui.base.Event) => void,
7557
+ fnFunction: (p1: ExactList$AttributeSelectedEvent) => void,
7068
7558
  /**
7069
7559
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactList` itself
7070
7560
  */
@@ -7088,14 +7578,14 @@ declare namespace sap {
7088
7578
  /**
7089
7579
  * The function to be called, when the event occurs
7090
7580
  */
7091
- fnFunction: (p1: sap.ui.base.Event) => void,
7581
+ fnFunction: (p1: ExactList$AttributeSelectedEvent) => void,
7092
7582
  /**
7093
7583
  * Context object on which the given function had to be called
7094
7584
  */
7095
7585
  oListener?: object
7096
7586
  ): this;
7097
7587
  /**
7098
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7588
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7099
7589
  *
7100
7590
  * Fires event {@link #event:attributeSelected attributeSelected} to attached listeners.
7101
7591
  *
@@ -7105,16 +7595,7 @@ declare namespace sap {
7105
7595
  /**
7106
7596
  * Parameters to pass along with the event
7107
7597
  */
7108
- mParameters?: {
7109
- /**
7110
- * The attribute which was selected/unselected recently
7111
- */
7112
- attribute?: sap.ui.ux3.ExactAttribute;
7113
- /**
7114
- * Array of all ExactAttributes
7115
- */
7116
- allAttributes?: object;
7117
- }
7598
+ mParameters?: sap.ui.ux3.ExactList$AttributeSelectedEventParameters
7118
7599
  ): this;
7119
7600
  /**
7120
7601
  * ID of the element which is the current target of the association {@link #getData data}, or `null`.
@@ -7528,7 +8009,7 @@ declare namespace sap {
7528
8009
  /**
7529
8010
  * The function to be called when the event occurs
7530
8011
  */
7531
- fnFunction: (p1: sap.ui.base.Event) => void,
8012
+ fnFunction: (p1: FacetFilterList$SelectEvent) => void,
7532
8013
  /**
7533
8014
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FacetFilterList` itself
7534
8015
  */
@@ -7548,7 +8029,7 @@ declare namespace sap {
7548
8029
  /**
7549
8030
  * The function to be called when the event occurs
7550
8031
  */
7551
- fnFunction: (p1: sap.ui.base.Event) => void,
8032
+ fnFunction: (p1: FacetFilterList$SelectEvent) => void,
7552
8033
  /**
7553
8034
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FacetFilterList` itself
7554
8035
  */
@@ -7571,14 +8052,14 @@ declare namespace sap {
7571
8052
  /**
7572
8053
  * The function to be called, when the event occurs
7573
8054
  */
7574
- fnFunction: (p1: sap.ui.base.Event) => void,
8055
+ fnFunction: (p1: FacetFilterList$SelectEvent) => void,
7575
8056
  /**
7576
8057
  * Context object on which the given function had to be called
7577
8058
  */
7578
8059
  oListener?: object
7579
8060
  ): this;
7580
8061
  /**
7581
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8062
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7582
8063
  *
7583
8064
  * Fires event {@link #event:select select} to attached listeners.
7584
8065
  *
@@ -7588,28 +8069,10 @@ declare namespace sap {
7588
8069
  /**
7589
8070
  * Parameters to pass along with the event
7590
8071
  */
7591
- mParameters?: {
7592
- /**
7593
- * Id of the FacetFilterList taht fires the event.
7594
- */
7595
- id?: string;
7596
- /**
7597
- * Array of selected Indices.
7598
- */
7599
- selectedIndices?: int[];
7600
- /**
7601
- * Array of selected Items.
7602
- */
7603
- selectedItems?: sap.ui.core.ListItem[];
7604
- /**
7605
- * If it is true, then Item All is selected. That means all items in the list are selected - no filter is
7606
- * set.
7607
- */
7608
- all?: boolean;
7609
- }
7610
- ): this;
7611
- /**
7612
- * @SINCE 1.9.0
8072
+ mParameters?: sap.ui.ux3.FacetFilterList$SelectEventParameters
8073
+ ): this;
8074
+ /**
8075
+ * @since 1.9.0
7613
8076
  *
7614
8077
  * Gets current value of property {@link #getDisplaySecondaryValues displaySecondaryValues}.
7615
8078
  *
@@ -7712,7 +8175,7 @@ declare namespace sap {
7712
8175
  vItem: int | string | sap.ui.core.ListItem
7713
8176
  ): sap.ui.core.ListItem | null;
7714
8177
  /**
7715
- * @SINCE 1.9.0
8178
+ * @since 1.9.0
7716
8179
  *
7717
8180
  * Sets a new value for property {@link #getDisplaySecondaryValues displaySecondaryValues}.
7718
8181
  *
@@ -7798,7 +8261,7 @@ declare namespace sap {
7798
8261
  }
7799
8262
  /**
7800
8263
  * @deprecated (since 1.38) - Instead, use **any** `sap.ui.layout` container control.
7801
- * @EXPERIMENTAL (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
8264
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
7802
8265
  * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
7803
8266
  * Feed model topic is still open.
7804
8267
  *
@@ -7917,7 +8380,7 @@ declare namespace sap {
7917
8380
  /**
7918
8381
  * The function to be called when the event occurs
7919
8382
  */
7920
- fnFunction: (p1: sap.ui.base.Event) => void,
8383
+ fnFunction: (p1: Feed$ChunkAddedEvent) => void,
7921
8384
  /**
7922
8385
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
7923
8386
  */
@@ -7937,7 +8400,7 @@ declare namespace sap {
7937
8400
  /**
7938
8401
  * The function to be called when the event occurs
7939
8402
  */
7940
- fnFunction: (p1: sap.ui.base.Event) => void,
8403
+ fnFunction: (p1: Feed$ChunkAddedEvent) => void,
7941
8404
  /**
7942
8405
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
7943
8406
  */
@@ -7962,7 +8425,7 @@ declare namespace sap {
7962
8425
  /**
7963
8426
  * The function to be called when the event occurs
7964
8427
  */
7965
- fnFunction: (p1: sap.ui.base.Event) => void,
8428
+ fnFunction: (p1: Feed$FilterChangeEvent) => void,
7966
8429
  /**
7967
8430
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
7968
8431
  */
@@ -7982,7 +8445,7 @@ declare namespace sap {
7982
8445
  /**
7983
8446
  * The function to be called when the event occurs
7984
8447
  */
7985
- fnFunction: (p1: sap.ui.base.Event) => void,
8448
+ fnFunction: (p1: Feed$FilterChangeEvent) => void,
7986
8449
  /**
7987
8450
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
7988
8451
  */
@@ -8007,7 +8470,7 @@ declare namespace sap {
8007
8470
  /**
8008
8471
  * The function to be called when the event occurs
8009
8472
  */
8010
- fnFunction: (p1: sap.ui.base.Event) => void,
8473
+ fnFunction: (p1: Feed$SearchEvent) => void,
8011
8474
  /**
8012
8475
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
8013
8476
  */
@@ -8027,7 +8490,7 @@ declare namespace sap {
8027
8490
  /**
8028
8491
  * The function to be called when the event occurs
8029
8492
  */
8030
- fnFunction: (p1: sap.ui.base.Event) => void,
8493
+ fnFunction: (p1: Feed$SearchEvent) => void,
8031
8494
  /**
8032
8495
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
8033
8496
  */
@@ -8052,7 +8515,7 @@ declare namespace sap {
8052
8515
  /**
8053
8516
  * The function to be called when the event occurs
8054
8517
  */
8055
- fnFunction: (p1: sap.ui.base.Event) => void,
8518
+ fnFunction: (p1: Feed$ToggleLiveEvent) => void,
8056
8519
  /**
8057
8520
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
8058
8521
  */
@@ -8072,7 +8535,7 @@ declare namespace sap {
8072
8535
  /**
8073
8536
  * The function to be called when the event occurs
8074
8537
  */
8075
- fnFunction: (p1: sap.ui.base.Event) => void,
8538
+ fnFunction: (p1: Feed$ToggleLiveEvent) => void,
8076
8539
  /**
8077
8540
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
8078
8541
  */
@@ -8098,7 +8561,7 @@ declare namespace sap {
8098
8561
  /**
8099
8562
  * The function to be called when the event occurs
8100
8563
  */
8101
- fnFunction: (p1: sap.ui.base.Event) => void,
8564
+ fnFunction: (p1: Feed$ToolsItemSelectedEvent) => void,
8102
8565
  /**
8103
8566
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
8104
8567
  */
@@ -8119,7 +8582,7 @@ declare namespace sap {
8119
8582
  /**
8120
8583
  * The function to be called when the event occurs
8121
8584
  */
8122
- fnFunction: (p1: sap.ui.base.Event) => void,
8585
+ fnFunction: (p1: Feed$ToolsItemSelectedEvent) => void,
8123
8586
  /**
8124
8587
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
8125
8588
  */
@@ -8196,7 +8659,7 @@ declare namespace sap {
8196
8659
  /**
8197
8660
  * The function to be called, when the event occurs
8198
8661
  */
8199
- fnFunction: (p1: sap.ui.base.Event) => void,
8662
+ fnFunction: (p1: Feed$ChunkAddedEvent) => void,
8200
8663
  /**
8201
8664
  * Context object on which the given function had to be called
8202
8665
  */
@@ -8213,7 +8676,7 @@ declare namespace sap {
8213
8676
  /**
8214
8677
  * The function to be called, when the event occurs
8215
8678
  */
8216
- fnFunction: (p1: sap.ui.base.Event) => void,
8679
+ fnFunction: (p1: Feed$FilterChangeEvent) => void,
8217
8680
  /**
8218
8681
  * Context object on which the given function had to be called
8219
8682
  */
@@ -8230,7 +8693,7 @@ declare namespace sap {
8230
8693
  /**
8231
8694
  * The function to be called, when the event occurs
8232
8695
  */
8233
- fnFunction: (p1: sap.ui.base.Event) => void,
8696
+ fnFunction: (p1: Feed$SearchEvent) => void,
8234
8697
  /**
8235
8698
  * Context object on which the given function had to be called
8236
8699
  */
@@ -8247,7 +8710,7 @@ declare namespace sap {
8247
8710
  /**
8248
8711
  * The function to be called, when the event occurs
8249
8712
  */
8250
- fnFunction: (p1: sap.ui.base.Event) => void,
8713
+ fnFunction: (p1: Feed$ToggleLiveEvent) => void,
8251
8714
  /**
8252
8715
  * Context object on which the given function had to be called
8253
8716
  */
@@ -8265,14 +8728,14 @@ declare namespace sap {
8265
8728
  /**
8266
8729
  * The function to be called, when the event occurs
8267
8730
  */
8268
- fnFunction: (p1: sap.ui.base.Event) => void,
8731
+ fnFunction: (p1: Feed$ToolsItemSelectedEvent) => void,
8269
8732
  /**
8270
8733
  * Context object on which the given function had to be called
8271
8734
  */
8272
8735
  oListener?: object
8273
8736
  ): this;
8274
8737
  /**
8275
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8738
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8276
8739
  *
8277
8740
  * Fires event {@link #event:chunkAdded chunkAdded} to attached listeners.
8278
8741
  *
@@ -8282,15 +8745,10 @@ declare namespace sap {
8282
8745
  /**
8283
8746
  * Parameters to pass along with the event
8284
8747
  */
8285
- mParameters?: {
8286
- /**
8287
- * New chunk
8288
- */
8289
- chunk?: sap.ui.ux3.FeedChunk;
8290
- }
8748
+ mParameters?: sap.ui.ux3.Feed$ChunkAddedEventParameters
8291
8749
  ): this;
8292
8750
  /**
8293
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8751
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8294
8752
  *
8295
8753
  * Fires event {@link #event:filterChange filterChange} to attached listeners.
8296
8754
  *
@@ -8300,15 +8758,10 @@ declare namespace sap {
8300
8758
  /**
8301
8759
  * Parameters to pass along with the event
8302
8760
  */
8303
- mParameters?: {
8304
- /**
8305
- * The new/changed value of the filter
8306
- */
8307
- newValue?: string;
8308
- }
8761
+ mParameters?: sap.ui.ux3.Feed$FilterChangeEventParameters
8309
8762
  ): this;
8310
8763
  /**
8311
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8764
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8312
8765
  *
8313
8766
  * Fires event {@link #event:search search} to attached listeners.
8314
8767
  *
@@ -8318,15 +8771,10 @@ declare namespace sap {
8318
8771
  /**
8319
8772
  * Parameters to pass along with the event
8320
8773
  */
8321
- mParameters?: {
8322
- /**
8323
- * The search query
8324
- */
8325
- query?: string;
8326
- }
8774
+ mParameters?: sap.ui.ux3.Feed$SearchEventParameters
8327
8775
  ): this;
8328
8776
  /**
8329
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8777
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8330
8778
  *
8331
8779
  * Fires event {@link #event:toggleLive toggleLive} to attached listeners.
8332
8780
  *
@@ -8336,15 +8784,10 @@ declare namespace sap {
8336
8784
  /**
8337
8785
  * Parameters to pass along with the event
8338
8786
  */
8339
- mParameters?: {
8340
- /**
8341
- * Current live indicator
8342
- */
8343
- live?: boolean;
8344
- }
8787
+ mParameters?: sap.ui.ux3.Feed$ToggleLiveEventParameters
8345
8788
  ): this;
8346
8789
  /**
8347
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8790
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8348
8791
  *
8349
8792
  * Fires event {@link #event:toolsItemSelected toolsItemSelected} to attached listeners.
8350
8793
  *
@@ -8354,16 +8797,7 @@ declare namespace sap {
8354
8797
  /**
8355
8798
  * Parameters to pass along with the event
8356
8799
  */
8357
- mParameters?: {
8358
- /**
8359
- * The Id of the selected item
8360
- */
8361
- itemId?: string;
8362
- /**
8363
- * The selected item
8364
- */
8365
- item?: sap.ui.unified.MenuItemBase;
8366
- }
8800
+ mParameters?: sap.ui.ux3.Feed$ToolsItemSelectedEventParameters
8367
8801
  ): this;
8368
8802
  /**
8369
8803
  * Gets content of aggregation {@link #getChunks chunks}.
@@ -8644,7 +9078,7 @@ declare namespace sap {
8644
9078
  }
8645
9079
  /**
8646
9080
  * @deprecated (since 1.38) - Instead, use the `sap.m.FeedListItem` control.
8647
- * @EXPERIMENTAL (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
9081
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
8648
9082
  * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
8649
9083
  * Feed model topic is still open.
8650
9084
  *
@@ -8755,7 +9189,7 @@ declare namespace sap {
8755
9189
  /**
8756
9190
  * The function to be called when the event occurs
8757
9191
  */
8758
- fnFunction: (p1: sap.ui.base.Event) => void,
9192
+ fnFunction: (p1: FeedChunk$ActionItemSelectedEvent) => void,
8759
9193
  /**
8760
9194
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8761
9195
  */
@@ -8776,7 +9210,7 @@ declare namespace sap {
8776
9210
  /**
8777
9211
  * The function to be called when the event occurs
8778
9212
  */
8779
- fnFunction: (p1: sap.ui.base.Event) => void,
9213
+ fnFunction: (p1: FeedChunk$ActionItemSelectedEvent) => void,
8780
9214
  /**
8781
9215
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8782
9216
  */
@@ -8801,7 +9235,7 @@ declare namespace sap {
8801
9235
  /**
8802
9236
  * The function to be called when the event occurs
8803
9237
  */
8804
- fnFunction: (p1: sap.ui.base.Event) => void,
9238
+ fnFunction: (p1: FeedChunk$CommentAddedEvent) => void,
8805
9239
  /**
8806
9240
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8807
9241
  */
@@ -8821,7 +9255,7 @@ declare namespace sap {
8821
9255
  /**
8822
9256
  * The function to be called when the event occurs
8823
9257
  */
8824
- fnFunction: (p1: sap.ui.base.Event) => void,
9258
+ fnFunction: (p1: FeedChunk$CommentAddedEvent) => void,
8825
9259
  /**
8826
9260
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8827
9261
  */
@@ -8937,7 +9371,7 @@ declare namespace sap {
8937
9371
  /**
8938
9372
  * The function to be called when the event occurs
8939
9373
  */
8940
- fnFunction: (p1: sap.ui.base.Event) => void,
9374
+ fnFunction: (p1: FeedChunk$ReferenceClickedEvent) => void,
8941
9375
  /**
8942
9376
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8943
9377
  */
@@ -8958,7 +9392,7 @@ declare namespace sap {
8958
9392
  /**
8959
9393
  * The function to be called when the event occurs
8960
9394
  */
8961
- fnFunction: (p1: sap.ui.base.Event) => void,
9395
+ fnFunction: (p1: FeedChunk$ReferenceClickedEvent) => void,
8962
9396
  /**
8963
9397
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8964
9398
  */
@@ -9030,7 +9464,7 @@ declare namespace sap {
9030
9464
  /**
9031
9465
  * The function to be called when the event occurs
9032
9466
  */
9033
- fnFunction: (p1: sap.ui.base.Event) => void,
9467
+ fnFunction: (p1: FeedChunk$ToggleFavoriteEvent) => void,
9034
9468
  /**
9035
9469
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
9036
9470
  */
@@ -9052,7 +9486,7 @@ declare namespace sap {
9052
9486
  /**
9053
9487
  * The function to be called when the event occurs
9054
9488
  */
9055
- fnFunction: (p1: sap.ui.base.Event) => void,
9489
+ fnFunction: (p1: FeedChunk$ToggleFavoriteEvent) => void,
9056
9490
  /**
9057
9491
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
9058
9492
  */
@@ -9077,7 +9511,7 @@ declare namespace sap {
9077
9511
  /**
9078
9512
  * The function to be called when the event occurs
9079
9513
  */
9080
- fnFunction: (p1: sap.ui.base.Event) => void,
9514
+ fnFunction: (p1: FeedChunk$ToggleFlaggedEvent) => void,
9081
9515
  /**
9082
9516
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
9083
9517
  */
@@ -9097,7 +9531,7 @@ declare namespace sap {
9097
9531
  /**
9098
9532
  * The function to be called when the event occurs
9099
9533
  */
9100
- fnFunction: (p1: sap.ui.base.Event) => void,
9534
+ fnFunction: (p1: FeedChunk$ToggleFlaggedEvent) => void,
9101
9535
  /**
9102
9536
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
9103
9537
  */
@@ -9122,7 +9556,7 @@ declare namespace sap {
9122
9556
  /**
9123
9557
  * The function to be called when the event occurs
9124
9558
  */
9125
- fnFunction: (p1: sap.ui.base.Event) => void,
9559
+ fnFunction: (p1: FeedChunk$ToggleSharedEvent) => void,
9126
9560
  /**
9127
9561
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
9128
9562
  */
@@ -9142,7 +9576,7 @@ declare namespace sap {
9142
9576
  /**
9143
9577
  * The function to be called when the event occurs
9144
9578
  */
9145
- fnFunction: (p1: sap.ui.base.Event) => void,
9579
+ fnFunction: (p1: FeedChunk$ToggleSharedEvent) => void,
9146
9580
  /**
9147
9581
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
9148
9582
  */
@@ -9200,7 +9634,7 @@ declare namespace sap {
9200
9634
  /**
9201
9635
  * The function to be called, when the event occurs
9202
9636
  */
9203
- fnFunction: (p1: sap.ui.base.Event) => void,
9637
+ fnFunction: (p1: FeedChunk$ActionItemSelectedEvent) => void,
9204
9638
  /**
9205
9639
  * Context object on which the given function had to be called
9206
9640
  */
@@ -9217,7 +9651,7 @@ declare namespace sap {
9217
9651
  /**
9218
9652
  * The function to be called, when the event occurs
9219
9653
  */
9220
- fnFunction: (p1: sap.ui.base.Event) => void,
9654
+ fnFunction: (p1: FeedChunk$CommentAddedEvent) => void,
9221
9655
  /**
9222
9656
  * Context object on which the given function had to be called
9223
9657
  */
@@ -9269,7 +9703,7 @@ declare namespace sap {
9269
9703
  /**
9270
9704
  * The function to be called, when the event occurs
9271
9705
  */
9272
- fnFunction: (p1: sap.ui.base.Event) => void,
9706
+ fnFunction: (p1: FeedChunk$ReferenceClickedEvent) => void,
9273
9707
  /**
9274
9708
  * Context object on which the given function had to be called
9275
9709
  */
@@ -9305,7 +9739,7 @@ declare namespace sap {
9305
9739
  /**
9306
9740
  * The function to be called, when the event occurs
9307
9741
  */
9308
- fnFunction: (p1: sap.ui.base.Event) => void,
9742
+ fnFunction: (p1: FeedChunk$ToggleFavoriteEvent) => void,
9309
9743
  /**
9310
9744
  * Context object on which the given function had to be called
9311
9745
  */
@@ -9323,7 +9757,7 @@ declare namespace sap {
9323
9757
  /**
9324
9758
  * The function to be called, when the event occurs
9325
9759
  */
9326
- fnFunction: (p1: sap.ui.base.Event) => void,
9760
+ fnFunction: (p1: FeedChunk$ToggleFlaggedEvent) => void,
9327
9761
  /**
9328
9762
  * Context object on which the given function had to be called
9329
9763
  */
@@ -9340,14 +9774,14 @@ declare namespace sap {
9340
9774
  /**
9341
9775
  * The function to be called, when the event occurs
9342
9776
  */
9343
- fnFunction: (p1: sap.ui.base.Event) => void,
9777
+ fnFunction: (p1: FeedChunk$ToggleSharedEvent) => void,
9344
9778
  /**
9345
9779
  * Context object on which the given function had to be called
9346
9780
  */
9347
9781
  oListener?: object
9348
9782
  ): this;
9349
9783
  /**
9350
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9784
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9351
9785
  *
9352
9786
  * Fires event {@link #event:actionItemSelected actionItemSelected} to attached listeners.
9353
9787
  *
@@ -9357,19 +9791,10 @@ declare namespace sap {
9357
9791
  /**
9358
9792
  * Parameters to pass along with the event
9359
9793
  */
9360
- mParameters?: {
9361
- /**
9362
- * The Id of the selected item
9363
- */
9364
- itemId?: string;
9365
- /**
9366
- * The selected item
9367
- */
9368
- item?: sap.ui.unified.MenuItemBase;
9369
- }
9794
+ mParameters?: sap.ui.ux3.FeedChunk$ActionItemSelectedEventParameters
9370
9795
  ): this;
9371
9796
  /**
9372
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9797
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9373
9798
  *
9374
9799
  * Fires event {@link #event:commentAdded commentAdded} to attached listeners.
9375
9800
  *
@@ -9379,15 +9804,10 @@ declare namespace sap {
9379
9804
  /**
9380
9805
  * Parameters to pass along with the event
9381
9806
  */
9382
- mParameters?: {
9383
- /**
9384
- * New comment chunk
9385
- */
9386
- comment?: sap.ui.ux3.FeedChunk;
9387
- }
9807
+ mParameters?: sap.ui.ux3.FeedChunk$CommentAddedEventParameters
9388
9808
  ): this;
9389
9809
  /**
9390
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9810
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9391
9811
  *
9392
9812
  * Fires event {@link #event:deleted deleted} to attached listeners.
9393
9813
  *
@@ -9400,7 +9820,7 @@ declare namespace sap {
9400
9820
  mParameters?: object
9401
9821
  ): this;
9402
9822
  /**
9403
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9823
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9404
9824
  *
9405
9825
  * Fires event {@link #event:inspect inspect} to attached listeners.
9406
9826
  *
@@ -9413,7 +9833,7 @@ declare namespace sap {
9413
9833
  mParameters?: object
9414
9834
  ): this;
9415
9835
  /**
9416
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9836
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9417
9837
  *
9418
9838
  * Fires event {@link #event:referenceClicked referenceClicked} to attached listeners.
9419
9839
  *
@@ -9423,15 +9843,10 @@ declare namespace sap {
9423
9843
  /**
9424
9844
  * Parameters to pass along with the event
9425
9845
  */
9426
- mParameters?: {
9427
- /**
9428
- * Text of the @-reference
9429
- */
9430
- text?: string;
9431
- }
9846
+ mParameters?: sap.ui.ux3.FeedChunk$ReferenceClickedEventParameters
9432
9847
  ): this;
9433
9848
  /**
9434
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9849
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9435
9850
  *
9436
9851
  * Fires event {@link #event:senderClicked senderClicked} to attached listeners.
9437
9852
  *
@@ -9444,7 +9859,7 @@ declare namespace sap {
9444
9859
  mParameters?: object
9445
9860
  ): this;
9446
9861
  /**
9447
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9862
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9448
9863
  *
9449
9864
  * Fires event {@link #event:toggleFavorite toggleFavorite} to attached listeners.
9450
9865
  *
@@ -9454,15 +9869,10 @@ declare namespace sap {
9454
9869
  /**
9455
9870
  * Parameters to pass along with the event
9456
9871
  */
9457
- mParameters?: {
9458
- /**
9459
- * Current favorite state
9460
- */
9461
- favorite?: boolean;
9462
- }
9872
+ mParameters?: sap.ui.ux3.FeedChunk$ToggleFavoriteEventParameters
9463
9873
  ): this;
9464
9874
  /**
9465
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9875
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9466
9876
  *
9467
9877
  * Fires event {@link #event:toggleFlagged toggleFlagged} to attached listeners.
9468
9878
  *
@@ -9472,15 +9882,10 @@ declare namespace sap {
9472
9882
  /**
9473
9883
  * Parameters to pass along with the event
9474
9884
  */
9475
- mParameters?: {
9476
- /**
9477
- * Current flagged state
9478
- */
9479
- flagged?: boolean;
9480
- }
9885
+ mParameters?: sap.ui.ux3.FeedChunk$ToggleFlaggedEventParameters
9481
9886
  ): this;
9482
9887
  /**
9483
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9888
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9484
9889
  *
9485
9890
  * Fires event {@link #event:toggleShared toggleShared} to attached listeners.
9486
9891
  *
@@ -9490,12 +9895,7 @@ declare namespace sap {
9490
9895
  /**
9491
9896
  * Parameters to pass along with the event
9492
9897
  */
9493
- mParameters?: {
9494
- /**
9495
- * Current shared state
9496
- */
9497
- shareed?: boolean;
9498
- }
9898
+ mParameters?: sap.ui.ux3.FeedChunk$ToggleSharedEventParameters
9499
9899
  ): this;
9500
9900
  /**
9501
9901
  * Gets content of aggregation {@link #getActionMenuItems actionMenuItems}.
@@ -10042,7 +10442,7 @@ declare namespace sap {
10042
10442
  }
10043
10443
  /**
10044
10444
  * @deprecated (since 1.38) - Instead, use the `sap.m.FeedInput` control.
10045
- * @EXPERIMENTAL (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
10445
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
10046
10446
  * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
10047
10447
  * Feed model topic is still open.
10048
10448
  *
@@ -10130,7 +10530,7 @@ declare namespace sap {
10130
10530
  /**
10131
10531
  * The function to be called when the event occurs
10132
10532
  */
10133
- fnFunction: (p1: sap.ui.base.Event) => void,
10533
+ fnFunction: (p1: Feeder$SubmitEvent) => void,
10134
10534
  /**
10135
10535
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feeder` itself
10136
10536
  */
@@ -10150,7 +10550,7 @@ declare namespace sap {
10150
10550
  /**
10151
10551
  * The function to be called when the event occurs
10152
10552
  */
10153
- fnFunction: (p1: sap.ui.base.Event) => void,
10553
+ fnFunction: (p1: Feeder$SubmitEvent) => void,
10154
10554
  /**
10155
10555
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feeder` itself
10156
10556
  */
@@ -10167,14 +10567,14 @@ declare namespace sap {
10167
10567
  /**
10168
10568
  * The function to be called, when the event occurs
10169
10569
  */
10170
- fnFunction: (p1: sap.ui.base.Event) => void,
10570
+ fnFunction: (p1: Feeder$SubmitEvent) => void,
10171
10571
  /**
10172
10572
  * Context object on which the given function had to be called
10173
10573
  */
10174
10574
  oListener?: object
10175
10575
  ): this;
10176
10576
  /**
10177
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10577
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10178
10578
  *
10179
10579
  * Fires event {@link #event:submit submit} to attached listeners.
10180
10580
  *
@@ -10184,12 +10584,7 @@ declare namespace sap {
10184
10584
  /**
10185
10585
  * Parameters to pass along with the event
10186
10586
  */
10187
- mParameters?: {
10188
- /**
10189
- * The text that is submitted
10190
- */
10191
- text?: string;
10192
- }
10587
+ mParameters?: sap.ui.ux3.Feeder$SubmitEventParameters
10193
10588
  ): this;
10194
10589
  /**
10195
10590
  * Gets current value of property {@link #getPlaceholderText placeholderText}.
@@ -10404,7 +10799,7 @@ declare namespace sap {
10404
10799
  /**
10405
10800
  * The function to be called when the event occurs
10406
10801
  */
10407
- fnFunction: (p1: sap.ui.base.Event) => void,
10802
+ fnFunction: (p1: NavigationBar$SelectEvent) => void,
10408
10803
  /**
10409
10804
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NavigationBar` itself
10410
10805
  */
@@ -10424,7 +10819,7 @@ declare namespace sap {
10424
10819
  /**
10425
10820
  * The function to be called when the event occurs
10426
10821
  */
10427
- fnFunction: (p1: sap.ui.base.Event) => void,
10822
+ fnFunction: (p1: NavigationBar$SelectEvent) => void,
10428
10823
  /**
10429
10824
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NavigationBar` itself
10430
10825
  */
@@ -10447,14 +10842,14 @@ declare namespace sap {
10447
10842
  /**
10448
10843
  * The function to be called, when the event occurs
10449
10844
  */
10450
- fnFunction: (p1: sap.ui.base.Event) => void,
10845
+ fnFunction: (p1: NavigationBar$SelectEvent) => void,
10451
10846
  /**
10452
10847
  * Context object on which the given function had to be called
10453
10848
  */
10454
10849
  oListener?: object
10455
10850
  ): this;
10456
10851
  /**
10457
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10852
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10458
10853
  *
10459
10854
  * Fires event {@link #event:select select} to attached listeners.
10460
10855
  *
@@ -10467,20 +10862,10 @@ declare namespace sap {
10467
10862
  /**
10468
10863
  * Parameters to pass along with the event
10469
10864
  */
10470
- mParameters?: {
10471
- /**
10472
- * The ID of the newly selected NavigationItem.
10473
- */
10474
- itemId?: string;
10475
- /**
10476
- * The newly selected NavigationItem.
10477
- */
10478
- item?: sap.ui.ux3.NavigationItem;
10479
- }
10865
+ mParameters?: sap.ui.ux3.NavigationBar$SelectEventParameters
10480
10866
  ): boolean;
10481
10867
  /**
10482
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAssociatedItems
10483
- * associatedItems}.
10868
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAssociatedItems associatedItems}.
10484
10869
  */
10485
10870
  getAssociatedItems(): sap.ui.core.ID[];
10486
10871
  /**
@@ -10492,7 +10877,7 @@ declare namespace sap {
10492
10877
  */
10493
10878
  getItems(): sap.ui.ux3.NavigationItem[];
10494
10879
  /**
10495
- * @SINCE 1.36
10880
+ * @since 1.36
10496
10881
  *
10497
10882
  * Gets current value of property {@link #getOverflowItemsToUpperCase overflowItemsToUpperCase}.
10498
10883
  *
@@ -10598,7 +10983,7 @@ declare namespace sap {
10598
10983
  aItems: sap.ui.ux3.NavigationItem[]
10599
10984
  ): this;
10600
10985
  /**
10601
- * @SINCE 1.36
10986
+ * @since 1.36
10602
10987
  *
10603
10988
  * Sets a new value for property {@link #getOverflowItemsToUpperCase overflowItemsToUpperCase}.
10604
10989
  *
@@ -10750,7 +11135,7 @@ declare namespace sap {
10750
11135
  */
10751
11136
  getSubItems(): sap.ui.ux3.NavigationItem[];
10752
11137
  /**
10753
- * @SINCE 1.9.0
11138
+ * @since 1.9.0
10754
11139
  *
10755
11140
  * Gets current value of property {@link #getVisible visible}.
10756
11141
  *
@@ -10832,7 +11217,7 @@ declare namespace sap {
10832
11217
  sHref?: sap.ui.core.URI
10833
11218
  ): this;
10834
11219
  /**
10835
- * @SINCE 1.9.0
11220
+ * @since 1.9.0
10836
11221
  *
10837
11222
  * Sets a new value for property {@link #getVisible visible}.
10838
11223
  *
@@ -10854,7 +11239,7 @@ declare namespace sap {
10854
11239
  ): this;
10855
11240
  }
10856
11241
  /**
10857
- * @SINCE 1.7.0
11242
+ * @since 1.7.0
10858
11243
  * @deprecated (since 1.38) - Instead, use the `sap.m.MessagePopover` control.
10859
11244
  *
10860
11245
  * A NotificationBar is a "toolbar" that can be added to a page to show messages and notifications from
@@ -10955,7 +11340,7 @@ declare namespace sap {
10955
11340
  /**
10956
11341
  * The function to be called when the event occurs
10957
11342
  */
10958
- fnFunction: (p1: sap.ui.base.Event) => void,
11343
+ fnFunction: (p1: NotificationBar$DisplayEvent) => void,
10959
11344
  /**
10960
11345
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
10961
11346
  */
@@ -10976,14 +11361,14 @@ declare namespace sap {
10976
11361
  /**
10977
11362
  * The function to be called when the event occurs
10978
11363
  */
10979
- fnFunction: (p1: sap.ui.base.Event) => void,
11364
+ fnFunction: (p1: NotificationBar$DisplayEvent) => void,
10980
11365
  /**
10981
11366
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
10982
11367
  */
10983
11368
  oListener?: object
10984
11369
  ): this;
10985
11370
  /**
10986
- * @SINCE 1.12.2
11371
+ * @since 1.12.2
10987
11372
  *
10988
11373
  * Attaches event handler `fnFunction` to the {@link #event:resize resize} event of this `sap.ui.ux3.NotificationBar`.
10989
11374
  *
@@ -11005,14 +11390,14 @@ declare namespace sap {
11005
11390
  /**
11006
11391
  * The function to be called when the event occurs
11007
11392
  */
11008
- fnFunction: (p1: sap.ui.base.Event) => void,
11393
+ fnFunction: (p1: NotificationBar$ResizeEvent) => void,
11009
11394
  /**
11010
11395
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
11011
11396
  */
11012
11397
  oListener?: object
11013
11398
  ): this;
11014
11399
  /**
11015
- * @SINCE 1.12.2
11400
+ * @since 1.12.2
11016
11401
  *
11017
11402
  * Attaches event handler `fnFunction` to the {@link #event:resize resize} event of this `sap.ui.ux3.NotificationBar`.
11018
11403
  *
@@ -11029,7 +11414,7 @@ declare namespace sap {
11029
11414
  /**
11030
11415
  * The function to be called when the event occurs
11031
11416
  */
11032
- fnFunction: (p1: sap.ui.base.Event) => void,
11417
+ fnFunction: (p1: NotificationBar$ResizeEvent) => void,
11033
11418
  /**
11034
11419
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
11035
11420
  */
@@ -11058,14 +11443,14 @@ declare namespace sap {
11058
11443
  /**
11059
11444
  * The function to be called, when the event occurs
11060
11445
  */
11061
- fnFunction: (p1: sap.ui.base.Event) => void,
11446
+ fnFunction: (p1: NotificationBar$DisplayEvent) => void,
11062
11447
  /**
11063
11448
  * Context object on which the given function had to be called
11064
11449
  */
11065
11450
  oListener?: object
11066
11451
  ): this;
11067
11452
  /**
11068
- * @SINCE 1.12.2
11453
+ * @since 1.12.2
11069
11454
  *
11070
11455
  * Detaches event handler `fnFunction` from the {@link #event:resize resize} event of this `sap.ui.ux3.NotificationBar`.
11071
11456
  *
@@ -11077,14 +11462,14 @@ declare namespace sap {
11077
11462
  /**
11078
11463
  * The function to be called, when the event occurs
11079
11464
  */
11080
- fnFunction: (p1: sap.ui.base.Event) => void,
11465
+ fnFunction: (p1: NotificationBar$ResizeEvent) => void,
11081
11466
  /**
11082
11467
  * Context object on which the given function had to be called
11083
11468
  */
11084
11469
  oListener?: object
11085
11470
  ): this;
11086
11471
  /**
11087
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11472
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11088
11473
  *
11089
11474
  * Fires event {@link #event:display display} to attached listeners.
11090
11475
  *
@@ -11094,16 +11479,11 @@ declare namespace sap {
11094
11479
  /**
11095
11480
  * Parameters to pass along with the event
11096
11481
  */
11097
- mParameters?: {
11098
- /**
11099
- * Indicates if the bar wants to be shown or hidden
11100
- */
11101
- show?: boolean;
11102
- }
11482
+ mParameters?: sap.ui.ux3.NotificationBar$DisplayEventParameters
11103
11483
  ): this;
11104
11484
  /**
11105
- * @SINCE 1.12.2
11106
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11485
+ * @since 1.12.2
11486
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11107
11487
  *
11108
11488
  * Fires event {@link #event:resize resize} to attached listeners.
11109
11489
  *
@@ -11113,16 +11493,10 @@ declare namespace sap {
11113
11493
  /**
11114
11494
  * Parameters to pass along with the event
11115
11495
  */
11116
- mParameters?: {
11117
- /**
11118
- * The corresponding status to which the bar was resized. The corresponding heights can be taken for the
11119
- * bar's CSS file.
11120
- */
11121
- status?: sap.ui.ux3.NotificationBarStatus;
11122
- }
11496
+ mParameters?: sap.ui.ux3.NotificationBar$ResizeEventParameters
11123
11497
  ): this;
11124
11498
  /**
11125
- * @SINCE 1.24.5
11499
+ * @since 1.24.5
11126
11500
  *
11127
11501
  * Gets current value of property {@link #getAlwaysShowToggler alwaysShowToggler}.
11128
11502
  *
@@ -11219,7 +11593,7 @@ declare namespace sap {
11219
11593
  vNotifier: int | string | sap.ui.core.Element
11220
11594
  ): sap.ui.core.Element | null;
11221
11595
  /**
11222
- * @SINCE 1.22.11
11596
+ * @since 1.22.11
11223
11597
  */
11224
11598
  setAlwaysShowToggler(
11225
11599
  /**
@@ -11370,7 +11744,7 @@ declare namespace sap {
11370
11744
  /**
11371
11745
  * The function to be called when the event occurs
11372
11746
  */
11373
- fnFunction: (p1: sap.ui.base.Event) => void,
11747
+ fnFunction: (p1: Notifier$MessageSelectedEvent) => void,
11374
11748
  /**
11375
11749
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Notifier` itself
11376
11750
  */
@@ -11391,7 +11765,7 @@ declare namespace sap {
11391
11765
  /**
11392
11766
  * The function to be called when the event occurs
11393
11767
  */
11394
- fnFunction: (p1: sap.ui.base.Event) => void,
11768
+ fnFunction: (p1: Notifier$MessageSelectedEvent) => void,
11395
11769
  /**
11396
11770
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Notifier` itself
11397
11771
  */
@@ -11415,14 +11789,14 @@ declare namespace sap {
11415
11789
  /**
11416
11790
  * The function to be called, when the event occurs
11417
11791
  */
11418
- fnFunction: (p1: sap.ui.base.Event) => void,
11792
+ fnFunction: (p1: Notifier$MessageSelectedEvent) => void,
11419
11793
  /**
11420
11794
  * Context object on which the given function had to be called
11421
11795
  */
11422
11796
  oListener?: object
11423
11797
  ): this;
11424
11798
  /**
11425
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11799
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11426
11800
  *
11427
11801
  * Fires event {@link #event:messageSelected messageSelected} to attached listeners.
11428
11802
  *
@@ -11432,16 +11806,7 @@ declare namespace sap {
11432
11806
  /**
11433
11807
  * Parameters to pass along with the event
11434
11808
  */
11435
- mParameters?: {
11436
- /**
11437
- * The message that was selected
11438
- */
11439
- message?: sap.ui.core.Message;
11440
- /**
11441
- * The notifier that contains the selected message
11442
- */
11443
- notifier?: sap.ui.ux3.Notifier;
11444
- }
11809
+ mParameters?: sap.ui.ux3.Notifier$MessageSelectedEventParameters
11445
11810
  ): this;
11446
11811
  /**
11447
11812
  * Gets current value of property {@link #getIcon icon}.
@@ -11636,7 +12001,7 @@ declare namespace sap {
11636
12001
  /**
11637
12002
  * The function to be called when the event occurs
11638
12003
  */
11639
- fnFunction: (p1: sap.ui.base.Event) => void,
12004
+ fnFunction: (p1: Overlay$CloseEvent) => void,
11640
12005
  /**
11641
12006
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11642
12007
  */
@@ -11656,7 +12021,7 @@ declare namespace sap {
11656
12021
  /**
11657
12022
  * The function to be called when the event occurs
11658
12023
  */
11659
- fnFunction: (p1: sap.ui.base.Event) => void,
12024
+ fnFunction: (p1: Overlay$CloseEvent) => void,
11660
12025
  /**
11661
12026
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11662
12027
  */
@@ -11681,7 +12046,7 @@ declare namespace sap {
11681
12046
  /**
11682
12047
  * The function to be called when the event occurs
11683
12048
  */
11684
- fnFunction: (p1: sap.ui.base.Event) => void,
12049
+ fnFunction: (p1: Overlay$ClosedEvent) => void,
11685
12050
  /**
11686
12051
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11687
12052
  */
@@ -11701,7 +12066,7 @@ declare namespace sap {
11701
12066
  /**
11702
12067
  * The function to be called when the event occurs
11703
12068
  */
11704
- fnFunction: (p1: sap.ui.base.Event) => void,
12069
+ fnFunction: (p1: Overlay$ClosedEvent) => void,
11705
12070
  /**
11706
12071
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11707
12072
  */
@@ -11726,7 +12091,7 @@ declare namespace sap {
11726
12091
  /**
11727
12092
  * The function to be called when the event occurs
11728
12093
  */
11729
- fnFunction: (p1: sap.ui.base.Event) => void,
12094
+ fnFunction: (p1: Overlay$OpenEvent) => void,
11730
12095
  /**
11731
12096
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11732
12097
  */
@@ -11746,7 +12111,7 @@ declare namespace sap {
11746
12111
  /**
11747
12112
  * The function to be called when the event occurs
11748
12113
  */
11749
- fnFunction: (p1: sap.ui.base.Event) => void,
12114
+ fnFunction: (p1: Overlay$OpenEvent) => void,
11750
12115
  /**
11751
12116
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11752
12117
  */
@@ -11771,7 +12136,7 @@ declare namespace sap {
11771
12136
  /**
11772
12137
  * The function to be called when the event occurs
11773
12138
  */
11774
- fnFunction: (p1: sap.ui.base.Event) => void,
12139
+ fnFunction: (p1: Overlay$OpenNewEvent) => void,
11775
12140
  /**
11776
12141
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11777
12142
  */
@@ -11791,7 +12156,7 @@ declare namespace sap {
11791
12156
  /**
11792
12157
  * The function to be called when the event occurs
11793
12158
  */
11794
- fnFunction: (p1: sap.ui.base.Event) => void,
12159
+ fnFunction: (p1: Overlay$OpenNewEvent) => void,
11795
12160
  /**
11796
12161
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11797
12162
  */
@@ -11812,7 +12177,7 @@ declare namespace sap {
11812
12177
  /**
11813
12178
  * The function to be called, when the event occurs
11814
12179
  */
11815
- fnFunction: (p1: sap.ui.base.Event) => void,
12180
+ fnFunction: (p1: Overlay$CloseEvent) => void,
11816
12181
  /**
11817
12182
  * Context object on which the given function had to be called
11818
12183
  */
@@ -11829,7 +12194,7 @@ declare namespace sap {
11829
12194
  /**
11830
12195
  * The function to be called, when the event occurs
11831
12196
  */
11832
- fnFunction: (p1: sap.ui.base.Event) => void,
12197
+ fnFunction: (p1: Overlay$ClosedEvent) => void,
11833
12198
  /**
11834
12199
  * Context object on which the given function had to be called
11835
12200
  */
@@ -11846,7 +12211,7 @@ declare namespace sap {
11846
12211
  /**
11847
12212
  * The function to be called, when the event occurs
11848
12213
  */
11849
- fnFunction: (p1: sap.ui.base.Event) => void,
12214
+ fnFunction: (p1: Overlay$OpenEvent) => void,
11850
12215
  /**
11851
12216
  * Context object on which the given function had to be called
11852
12217
  */
@@ -11863,14 +12228,14 @@ declare namespace sap {
11863
12228
  /**
11864
12229
  * The function to be called, when the event occurs
11865
12230
  */
11866
- fnFunction: (p1: sap.ui.base.Event) => void,
12231
+ fnFunction: (p1: Overlay$OpenNewEvent) => void,
11867
12232
  /**
11868
12233
  * Context object on which the given function had to be called
11869
12234
  */
11870
12235
  oListener?: object
11871
12236
  ): this;
11872
12237
  /**
11873
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12238
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11874
12239
  *
11875
12240
  * Fires event {@link #event:close close} to attached listeners.
11876
12241
  *
@@ -11883,15 +12248,10 @@ declare namespace sap {
11883
12248
  /**
11884
12249
  * Parameters to pass along with the event
11885
12250
  */
11886
- mParameters?: {
11887
- /**
11888
- * The ID of the Overlay instance.
11889
- */
11890
- id?: string;
11891
- }
12251
+ mParameters?: sap.ui.ux3.Overlay$CloseEventParameters
11892
12252
  ): boolean;
11893
12253
  /**
11894
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12254
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11895
12255
  *
11896
12256
  * Fires event {@link #event:closed closed} to attached listeners.
11897
12257
  *
@@ -11904,15 +12264,10 @@ declare namespace sap {
11904
12264
  /**
11905
12265
  * Parameters to pass along with the event
11906
12266
  */
11907
- mParameters?: {
11908
- /**
11909
- * The ID of the Overlay instance.
11910
- */
11911
- id?: string;
11912
- }
12267
+ mParameters?: sap.ui.ux3.Overlay$ClosedEventParameters
11913
12268
  ): boolean;
11914
12269
  /**
11915
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12270
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11916
12271
  *
11917
12272
  * Fires event {@link #event:open open} to attached listeners.
11918
12273
  *
@@ -11922,15 +12277,10 @@ declare namespace sap {
11922
12277
  /**
11923
12278
  * Parameters to pass along with the event
11924
12279
  */
11925
- mParameters?: {
11926
- /**
11927
- * The ID of the Overlay instance
11928
- */
11929
- id?: string;
11930
- }
12280
+ mParameters?: sap.ui.ux3.Overlay$OpenEventParameters
11931
12281
  ): this;
11932
12282
  /**
11933
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12283
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11934
12284
  *
11935
12285
  * Fires event {@link #event:openNew openNew} to attached listeners.
11936
12286
  *
@@ -11940,12 +12290,7 @@ declare namespace sap {
11940
12290
  /**
11941
12291
  * Parameters to pass along with the event
11942
12292
  */
11943
- mParameters?: {
11944
- /**
11945
- * The ID of the Overlay instance.
11946
- */
11947
- id?: string;
11948
- }
12293
+ mParameters?: sap.ui.ux3.Overlay$OpenNewEventParameters
11949
12294
  ): this;
11950
12295
  /**
11951
12296
  * Gets current value of property {@link #getCloseButtonVisible closeButtonVisible}.
@@ -12437,7 +12782,7 @@ declare namespace sap {
12437
12782
  /**
12438
12783
  * The function to be called when the event occurs
12439
12784
  */
12440
- fnFunction: (p1: sap.ui.base.Event) => void,
12785
+ fnFunction: (p1: QuickView$ActionSelectedEvent) => void,
12441
12786
  /**
12442
12787
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12443
12788
  */
@@ -12458,7 +12803,7 @@ declare namespace sap {
12458
12803
  /**
12459
12804
  * The function to be called when the event occurs
12460
12805
  */
12461
- fnFunction: (p1: sap.ui.base.Event) => void,
12806
+ fnFunction: (p1: QuickView$ActionSelectedEvent) => void,
12462
12807
  /**
12463
12808
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12464
12809
  */
@@ -12483,7 +12828,7 @@ declare namespace sap {
12483
12828
  /**
12484
12829
  * The function to be called when the event occurs
12485
12830
  */
12486
- fnFunction: (p1: sap.ui.base.Event) => void,
12831
+ fnFunction: (p1: QuickView$FeedSubmitEvent) => void,
12487
12832
  /**
12488
12833
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12489
12834
  */
@@ -12503,7 +12848,7 @@ declare namespace sap {
12503
12848
  /**
12504
12849
  * The function to be called when the event occurs
12505
12850
  */
12506
- fnFunction: (p1: sap.ui.base.Event) => void,
12851
+ fnFunction: (p1: QuickView$FeedSubmitEvent) => void,
12507
12852
  /**
12508
12853
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12509
12854
  */
@@ -12529,7 +12874,7 @@ declare namespace sap {
12529
12874
  /**
12530
12875
  * The function to be called when the event occurs
12531
12876
  */
12532
- fnFunction: (p1: sap.ui.base.Event) => void,
12877
+ fnFunction: (p1: QuickView$NavigateEvent) => void,
12533
12878
  /**
12534
12879
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12535
12880
  */
@@ -12550,7 +12895,7 @@ declare namespace sap {
12550
12895
  /**
12551
12896
  * The function to be called when the event occurs
12552
12897
  */
12553
- fnFunction: (p1: sap.ui.base.Event) => void,
12898
+ fnFunction: (p1: QuickView$NavigateEvent) => void,
12554
12899
  /**
12555
12900
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12556
12901
  */
@@ -12586,7 +12931,7 @@ declare namespace sap {
12586
12931
  /**
12587
12932
  * The function to be called, when the event occurs
12588
12933
  */
12589
- fnFunction: (p1: sap.ui.base.Event) => void,
12934
+ fnFunction: (p1: QuickView$ActionSelectedEvent) => void,
12590
12935
  /**
12591
12936
  * Context object on which the given function had to be called
12592
12937
  */
@@ -12603,7 +12948,7 @@ declare namespace sap {
12603
12948
  /**
12604
12949
  * The function to be called, when the event occurs
12605
12950
  */
12606
- fnFunction: (p1: sap.ui.base.Event) => void,
12951
+ fnFunction: (p1: QuickView$FeedSubmitEvent) => void,
12607
12952
  /**
12608
12953
  * Context object on which the given function had to be called
12609
12954
  */
@@ -12620,14 +12965,14 @@ declare namespace sap {
12620
12965
  /**
12621
12966
  * The function to be called, when the event occurs
12622
12967
  */
12623
- fnFunction: (p1: sap.ui.base.Event) => void,
12968
+ fnFunction: (p1: QuickView$NavigateEvent) => void,
12624
12969
  /**
12625
12970
  * Context object on which the given function had to be called
12626
12971
  */
12627
12972
  oListener?: object
12628
12973
  ): this;
12629
12974
  /**
12630
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12975
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12631
12976
  *
12632
12977
  * Fires event {@link #event:actionSelected actionSelected} to attached listeners.
12633
12978
  *
@@ -12637,24 +12982,10 @@ declare namespace sap {
12637
12982
  /**
12638
12983
  * Parameters to pass along with the event
12639
12984
  */
12640
- mParameters?: {
12641
- /**
12642
- * Id of selected ThingAction
12643
- */
12644
- id?: string;
12645
- /**
12646
- * Selected ThingAction
12647
- */
12648
- action?: sap.ui.ux3.ThingAction;
12649
- /**
12650
- * New State of the selected action. Only filled if the respective action maintains a state property, for
12651
- * example 'FollowUp' or 'Favorite'
12652
- */
12653
- newState?: string;
12654
- }
12655
- ): this;
12656
- /**
12657
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12985
+ mParameters?: sap.ui.ux3.QuickView$ActionSelectedEventParameters
12986
+ ): this;
12987
+ /**
12988
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12658
12989
  *
12659
12990
  * Fires event {@link #event:feedSubmit feedSubmit} to attached listeners.
12660
12991
  *
@@ -12664,15 +12995,10 @@ declare namespace sap {
12664
12995
  /**
12665
12996
  * Parameters to pass along with the event
12666
12997
  */
12667
- mParameters?: {
12668
- /**
12669
- * Feed text
12670
- */
12671
- text?: string;
12672
- }
12998
+ mParameters?: sap.ui.ux3.QuickView$FeedSubmitEventParameters
12673
12999
  ): this;
12674
13000
  /**
12675
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13001
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12676
13002
  *
12677
13003
  * Fires event {@link #event:navigate navigate} to attached listeners.
12678
13004
  *
@@ -12685,12 +13011,7 @@ declare namespace sap {
12685
13011
  /**
12686
13012
  * Parameters to pass along with the event
12687
13013
  */
12688
- mParameters?: {
12689
- /**
12690
- * URI of the Thing Inspector application.
12691
- */
12692
- href?: string;
12693
- }
13014
+ mParameters?: sap.ui.ux3.QuickView$NavigateEventParameters
12694
13015
  ): boolean;
12695
13016
  /**
12696
13017
  * Gets content of aggregation {@link #getActionBar actionBar}.
@@ -13449,7 +13770,7 @@ declare namespace sap {
13449
13770
  /**
13450
13771
  * The function to be called when the event occurs
13451
13772
  */
13452
- fnFunction: (p1: sap.ui.base.Event) => void,
13773
+ fnFunction: (p1: Shell$PaneBarItemSelectedEvent) => void,
13453
13774
  /**
13454
13775
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13455
13776
  */
@@ -13471,14 +13792,14 @@ declare namespace sap {
13471
13792
  /**
13472
13793
  * The function to be called when the event occurs
13473
13794
  */
13474
- fnFunction: (p1: sap.ui.base.Event) => void,
13795
+ fnFunction: (p1: Shell$PaneBarItemSelectedEvent) => void,
13475
13796
  /**
13476
13797
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13477
13798
  */
13478
13799
  oListener?: object
13479
13800
  ): this;
13480
13801
  /**
13481
- * @SINCE 1.12.0
13802
+ * @since 1.12.0
13482
13803
  *
13483
13804
  * Attaches event handler `fnFunction` to the {@link #event:paneClosed paneClosed} event of this `sap.ui.ux3.Shell`.
13484
13805
  *
@@ -13499,14 +13820,14 @@ declare namespace sap {
13499
13820
  /**
13500
13821
  * The function to be called when the event occurs
13501
13822
  */
13502
- fnFunction: (p1: sap.ui.base.Event) => void,
13823
+ fnFunction: (p1: Shell$PaneClosedEvent) => void,
13503
13824
  /**
13504
13825
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13505
13826
  */
13506
13827
  oListener?: object
13507
13828
  ): this;
13508
13829
  /**
13509
- * @SINCE 1.12.0
13830
+ * @since 1.12.0
13510
13831
  *
13511
13832
  * Attaches event handler `fnFunction` to the {@link #event:paneClosed paneClosed} event of this `sap.ui.ux3.Shell`.
13512
13833
  *
@@ -13522,7 +13843,7 @@ declare namespace sap {
13522
13843
  /**
13523
13844
  * The function to be called when the event occurs
13524
13845
  */
13525
- fnFunction: (p1: sap.ui.base.Event) => void,
13846
+ fnFunction: (p1: Shell$PaneClosedEvent) => void,
13526
13847
  /**
13527
13848
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13528
13849
  */
@@ -13596,7 +13917,7 @@ declare namespace sap {
13596
13917
  /**
13597
13918
  * The function to be called when the event occurs
13598
13919
  */
13599
- fnFunction: (p1: sap.ui.base.Event) => void,
13920
+ fnFunction: (p1: Shell$WorksetItemSelectedEvent) => void,
13600
13921
  /**
13601
13922
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13602
13923
  */
@@ -13620,7 +13941,7 @@ declare namespace sap {
13620
13941
  /**
13621
13942
  * The function to be called when the event occurs
13622
13943
  */
13623
- fnFunction: (p1: sap.ui.base.Event) => void,
13944
+ fnFunction: (p1: Shell$WorksetItemSelectedEvent) => void,
13624
13945
  /**
13625
13946
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13626
13947
  */
@@ -13645,7 +13966,7 @@ declare namespace sap {
13645
13966
  */
13646
13967
  destroyHeaderItems(): this;
13647
13968
  /**
13648
- * @SINCE 1.7.0
13969
+ * @since 1.7.0
13649
13970
  *
13650
13971
  * Destroys the notificationBar in the aggregation {@link #getNotificationBar notificationBar}.
13651
13972
  *
@@ -13722,14 +14043,14 @@ declare namespace sap {
13722
14043
  /**
13723
14044
  * The function to be called, when the event occurs
13724
14045
  */
13725
- fnFunction: (p1: sap.ui.base.Event) => void,
14046
+ fnFunction: (p1: Shell$PaneBarItemSelectedEvent) => void,
13726
14047
  /**
13727
14048
  * Context object on which the given function had to be called
13728
14049
  */
13729
14050
  oListener?: object
13730
14051
  ): this;
13731
14052
  /**
13732
- * @SINCE 1.12.0
14053
+ * @since 1.12.0
13733
14054
  *
13734
14055
  * Detaches event handler `fnFunction` from the {@link #event:paneClosed paneClosed} event of this `sap.ui.ux3.Shell`.
13735
14056
  *
@@ -13741,7 +14062,7 @@ declare namespace sap {
13741
14062
  /**
13742
14063
  * The function to be called, when the event occurs
13743
14064
  */
13744
- fnFunction: (p1: sap.ui.base.Event) => void,
14065
+ fnFunction: (p1: Shell$PaneClosedEvent) => void,
13745
14066
  /**
13746
14067
  * Context object on which the given function had to be called
13747
14068
  */
@@ -13776,14 +14097,14 @@ declare namespace sap {
13776
14097
  /**
13777
14098
  * The function to be called, when the event occurs
13778
14099
  */
13779
- fnFunction: (p1: sap.ui.base.Event) => void,
14100
+ fnFunction: (p1: Shell$WorksetItemSelectedEvent) => void,
13780
14101
  /**
13781
14102
  * Context object on which the given function had to be called
13782
14103
  */
13783
14104
  oListener?: object
13784
14105
  ): this;
13785
14106
  /**
13786
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14107
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13787
14108
  *
13788
14109
  * Fires event {@link #event:feedSubmit feedSubmit} to attached listeners.
13789
14110
  *
@@ -13796,7 +14117,7 @@ declare namespace sap {
13796
14117
  mParameters?: object
13797
14118
  ): this;
13798
14119
  /**
13799
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14120
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13800
14121
  *
13801
14122
  * Fires event {@link #event:logout logout} to attached listeners.
13802
14123
  *
@@ -13809,7 +14130,7 @@ declare namespace sap {
13809
14130
  mParameters?: object
13810
14131
  ): this;
13811
14132
  /**
13812
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14133
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13813
14134
  *
13814
14135
  * Fires event {@link #event:paneBarItemSelected paneBarItemSelected} to attached listeners.
13815
14136
  *
@@ -13819,24 +14140,11 @@ declare namespace sap {
13819
14140
  /**
13820
14141
  * Parameters to pass along with the event
13821
14142
  */
13822
- mParameters?: {
13823
- /**
13824
- * The ID of the selected PaneBarItem.
13825
- */
13826
- id?: string;
13827
- /**
13828
- * The selected Item
13829
- */
13830
- item?: sap.ui.core.Item;
13831
- /**
13832
- * The key of the selected Item (or null if there is no key)
13833
- */
13834
- key?: string;
13835
- }
13836
- ): this;
13837
- /**
13838
- * @SINCE 1.12.0
13839
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14143
+ mParameters?: sap.ui.ux3.Shell$PaneBarItemSelectedEventParameters
14144
+ ): this;
14145
+ /**
14146
+ * @since 1.12.0
14147
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13840
14148
  *
13841
14149
  * Fires event {@link #event:paneClosed paneClosed} to attached listeners.
13842
14150
  *
@@ -13846,15 +14154,10 @@ declare namespace sap {
13846
14154
  /**
13847
14155
  * Parameters to pass along with the event
13848
14156
  */
13849
- mParameters?: {
13850
- /**
13851
- * The id of the PaneBarItem to which the closed pane belonged.
13852
- */
13853
- id?: string;
13854
- }
14157
+ mParameters?: sap.ui.ux3.Shell$PaneClosedEventParameters
13855
14158
  ): this;
13856
14159
  /**
13857
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14160
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13858
14161
  *
13859
14162
  * Fires event {@link #event:search search} to attached listeners.
13860
14163
  *
@@ -13867,7 +14170,7 @@ declare namespace sap {
13867
14170
  mParameters?: object
13868
14171
  ): this;
13869
14172
  /**
13870
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14173
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13871
14174
  *
13872
14175
  * Fires event {@link #event:worksetItemSelected worksetItemSelected} to attached listeners.
13873
14176
  *
@@ -13880,24 +14183,10 @@ declare namespace sap {
13880
14183
  /**
13881
14184
  * Parameters to pass along with the event
13882
14185
  */
13883
- mParameters?: {
13884
- /**
13885
- * The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
13886
- * which has sub-items, the ID of the currently active sub-item (/leaf) is given.
13887
- */
13888
- id?: string;
13889
- /**
13890
- * The selected NavigationItem
13891
- */
13892
- item?: sap.ui.ux3.NavigationItem;
13893
- /**
13894
- * The key of the selected NavigationItem (or null if there is no key)
13895
- */
13896
- key?: string;
13897
- }
14186
+ mParameters?: sap.ui.ux3.Shell$WorksetItemSelectedEventParameters
13898
14187
  ): boolean;
13899
14188
  /**
13900
- * @SINCE 1.14.0
14189
+ * @since 1.14.0
13901
14190
  *
13902
14191
  * Gets current value of property {@link #getAllowOverlayHeaderAccess allowOverlayHeaderAccess}.
13903
14192
  *
@@ -13929,7 +14218,7 @@ declare namespace sap {
13929
14218
  */
13930
14219
  getAppIconTooltip(): string;
13931
14220
  /**
13932
- * @SINCE 1.9.0
14221
+ * @since 1.9.0
13933
14222
  *
13934
14223
  * Gets current value of property {@link #getApplyContentPadding applyContentPadding}.
13935
14224
  *
@@ -13957,7 +14246,7 @@ declare namespace sap {
13957
14246
  */
13958
14247
  getContent(): sap.ui.core.Control[];
13959
14248
  /**
13960
- * @SINCE 1.12.0
14249
+ * @since 1.12.0
13961
14250
  *
13962
14251
  * Gets current value of property {@link #getDesignType designType}.
13963
14252
  *
@@ -13969,7 +14258,7 @@ declare namespace sap {
13969
14258
  */
13970
14259
  getDesignType(): sap.ui.ux3.ShellDesignType;
13971
14260
  /**
13972
- * @SINCE 1.9.0
14261
+ * @since 1.9.0
13973
14262
  *
13974
14263
  * Gets current value of property {@link #getFullHeightContent fullHeightContent}.
13975
14264
  *
@@ -14001,7 +14290,7 @@ declare namespace sap {
14001
14290
  */
14002
14291
  getHeaderType(): sap.ui.ux3.ShellHeaderType;
14003
14292
  /**
14004
- * @SINCE 1.9.0
14293
+ * @since 1.9.0
14005
14294
  *
14006
14295
  * Gets current value of property {@link #getLogoutButtonTooltip logoutButtonTooltip}.
14007
14296
  *
@@ -14012,7 +14301,7 @@ declare namespace sap {
14012
14301
  */
14013
14302
  getLogoutButtonTooltip(): string;
14014
14303
  /**
14015
- * @SINCE 1.7.0
14304
+ * @since 1.7.0
14016
14305
  *
14017
14306
  * Gets content of aggregation {@link #getNotificationBar notificationBar}.
14018
14307
  *
@@ -14453,7 +14742,7 @@ declare namespace sap {
14453
14742
  vWorksetItem: int | string | sap.ui.ux3.NavigationItem
14454
14743
  ): sap.ui.ux3.NavigationItem | null;
14455
14744
  /**
14456
- * @SINCE 1.14.0
14745
+ * @since 1.14.0
14457
14746
  *
14458
14747
  * Sets a new value for property {@link #getAllowOverlayHeaderAccess allowOverlayHeaderAccess}.
14459
14748
  *
@@ -14506,7 +14795,7 @@ declare namespace sap {
14506
14795
  sAppIconTooltip?: string
14507
14796
  ): this;
14508
14797
  /**
14509
- * @SINCE 1.9.0
14798
+ * @since 1.9.0
14510
14799
  *
14511
14800
  * Sets a new value for property {@link #getApplyContentPadding applyContentPadding}.
14512
14801
  *
@@ -14562,7 +14851,7 @@ declare namespace sap {
14562
14851
  bDestroyOldContent: boolean
14563
14852
  ): sap.ui.core.Control[];
14564
14853
  /**
14565
- * @SINCE 1.12.0
14854
+ * @since 1.12.0
14566
14855
  *
14567
14856
  * Sets a new value for property {@link #getDesignType designType}.
14568
14857
  *
@@ -14581,7 +14870,7 @@ declare namespace sap {
14581
14870
  sDesignType?: sap.ui.ux3.ShellDesignType
14582
14871
  ): this;
14583
14872
  /**
14584
- * @SINCE 1.9.0
14873
+ * @since 1.9.0
14585
14874
  *
14586
14875
  * Sets a new value for property {@link #getFullHeightContent fullHeightContent}.
14587
14876
  *
@@ -14620,7 +14909,7 @@ declare namespace sap {
14620
14909
  sHeaderType?: sap.ui.ux3.ShellHeaderType
14621
14910
  ): this;
14622
14911
  /**
14623
- * @SINCE 1.9.0
14912
+ * @since 1.9.0
14624
14913
  *
14625
14914
  * Sets a new value for property {@link #getLogoutButtonTooltip logoutButtonTooltip}.
14626
14915
  *
@@ -14638,8 +14927,8 @@ declare namespace sap {
14638
14927
  sLogoutButtonTooltip?: string
14639
14928
  ): this;
14640
14929
  /**
14641
- * @SINCE 1.7.0
14642
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14930
+ * @since 1.7.0
14931
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
14643
14932
  *
14644
14933
  * Moves the complete Shell away from the right window border by the given number of pixels (left border
14645
14934
  * in RTL case).
@@ -14907,7 +15196,7 @@ declare namespace sap {
14907
15196
  /**
14908
15197
  * The function to be called when the event occurs
14909
15198
  */
14910
- fnFunction: (p1: sap.ui.base.Event) => void,
15199
+ fnFunction: (p1: ThingAction$SelectEvent) => void,
14911
15200
  /**
14912
15201
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingAction` itself
14913
15202
  */
@@ -14927,7 +15216,7 @@ declare namespace sap {
14927
15216
  /**
14928
15217
  * The function to be called when the event occurs
14929
15218
  */
14930
- fnFunction: (p1: sap.ui.base.Event) => void,
15219
+ fnFunction: (p1: ThingAction$SelectEvent) => void,
14931
15220
  /**
14932
15221
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingAction` itself
14933
15222
  */
@@ -14944,14 +15233,14 @@ declare namespace sap {
14944
15233
  /**
14945
15234
  * The function to be called, when the event occurs
14946
15235
  */
14947
- fnFunction: (p1: sap.ui.base.Event) => void,
15236
+ fnFunction: (p1: ThingAction$SelectEvent) => void,
14948
15237
  /**
14949
15238
  * Context object on which the given function had to be called
14950
15239
  */
14951
15240
  oListener?: object
14952
15241
  ): this;
14953
15242
  /**
14954
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15243
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
14955
15244
  *
14956
15245
  * Fires event {@link #event:select select} to attached listeners.
14957
15246
  *
@@ -14961,16 +15250,7 @@ declare namespace sap {
14961
15250
  /**
14962
15251
  * Parameters to pass along with the event
14963
15252
  */
14964
- mParameters?: {
14965
- /**
14966
- * Id of selected action
14967
- */
14968
- id?: string;
14969
- /**
14970
- * Selected Thing Action
14971
- */
14972
- action?: sap.ui.ux3.ThingAction;
14973
- }
15253
+ mParameters?: sap.ui.ux3.ThingAction$SelectEventParameters
14974
15254
  ): this;
14975
15255
  /**
14976
15256
  * Gets current value of property {@link #getEnabled enabled}.
@@ -15412,7 +15692,7 @@ declare namespace sap {
15412
15692
  /**
15413
15693
  * The function to be called when the event occurs
15414
15694
  */
15415
- fnFunction: (p1: sap.ui.base.Event) => void,
15695
+ fnFunction: (p1: ThingInspector$ActionSelectedEvent) => void,
15416
15696
  /**
15417
15697
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15418
15698
  */
@@ -15433,7 +15713,7 @@ declare namespace sap {
15433
15713
  /**
15434
15714
  * The function to be called when the event occurs
15435
15715
  */
15436
- fnFunction: (p1: sap.ui.base.Event) => void,
15716
+ fnFunction: (p1: ThingInspector$ActionSelectedEvent) => void,
15437
15717
  /**
15438
15718
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15439
15719
  */
@@ -15459,7 +15739,7 @@ declare namespace sap {
15459
15739
  /**
15460
15740
  * The function to be called when the event occurs
15461
15741
  */
15462
- fnFunction: (p1: sap.ui.base.Event) => void,
15742
+ fnFunction: (p1: ThingInspector$FacetSelectedEvent) => void,
15463
15743
  /**
15464
15744
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15465
15745
  */
@@ -15480,7 +15760,7 @@ declare namespace sap {
15480
15760
  /**
15481
15761
  * The function to be called when the event occurs
15482
15762
  */
15483
- fnFunction: (p1: sap.ui.base.Event) => void,
15763
+ fnFunction: (p1: ThingInspector$FacetSelectedEvent) => void,
15484
15764
  /**
15485
15765
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15486
15766
  */
@@ -15505,7 +15785,7 @@ declare namespace sap {
15505
15785
  /**
15506
15786
  * The function to be called when the event occurs
15507
15787
  */
15508
- fnFunction: (p1: sap.ui.base.Event) => void,
15788
+ fnFunction: (p1: ThingInspector$FeedSubmitEvent) => void,
15509
15789
  /**
15510
15790
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15511
15791
  */
@@ -15525,7 +15805,7 @@ declare namespace sap {
15525
15805
  /**
15526
15806
  * The function to be called when the event occurs
15527
15807
  */
15528
- fnFunction: (p1: sap.ui.base.Event) => void,
15808
+ fnFunction: (p1: ThingInspector$FeedSubmitEvent) => void,
15529
15809
  /**
15530
15810
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15531
15811
  */
@@ -15573,7 +15853,7 @@ declare namespace sap {
15573
15853
  /**
15574
15854
  * The function to be called, when the event occurs
15575
15855
  */
15576
- fnFunction: (p1: sap.ui.base.Event) => void,
15856
+ fnFunction: (p1: ThingInspector$ActionSelectedEvent) => void,
15577
15857
  /**
15578
15858
  * Context object on which the given function had to be called
15579
15859
  */
@@ -15591,7 +15871,7 @@ declare namespace sap {
15591
15871
  /**
15592
15872
  * The function to be called, when the event occurs
15593
15873
  */
15594
- fnFunction: (p1: sap.ui.base.Event) => void,
15874
+ fnFunction: (p1: ThingInspector$FacetSelectedEvent) => void,
15595
15875
  /**
15596
15876
  * Context object on which the given function had to be called
15597
15877
  */
@@ -15608,14 +15888,14 @@ declare namespace sap {
15608
15888
  /**
15609
15889
  * The function to be called, when the event occurs
15610
15890
  */
15611
- fnFunction: (p1: sap.ui.base.Event) => void,
15891
+ fnFunction: (p1: ThingInspector$FeedSubmitEvent) => void,
15612
15892
  /**
15613
15893
  * Context object on which the given function had to be called
15614
15894
  */
15615
15895
  oListener?: object
15616
15896
  ): this;
15617
15897
  /**
15618
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15898
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
15619
15899
  *
15620
15900
  * Fires event {@link #event:actionSelected actionSelected} to attached listeners.
15621
15901
  *
@@ -15625,19 +15905,10 @@ declare namespace sap {
15625
15905
  /**
15626
15906
  * Parameters to pass along with the event
15627
15907
  */
15628
- mParameters?: {
15629
- /**
15630
- * Id of selected ThingAction
15631
- */
15632
- id?: string;
15633
- /**
15634
- * Selected ThingAction
15635
- */
15636
- action?: sap.ui.ux3.ThingAction;
15637
- }
15908
+ mParameters?: sap.ui.ux3.ThingInspector$ActionSelectedEventParameters
15638
15909
  ): this;
15639
15910
  /**
15640
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15911
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
15641
15912
  *
15642
15913
  * Fires event {@link #event:facetSelected facetSelected} to attached listeners.
15643
15914
  *
@@ -15650,23 +15921,10 @@ declare namespace sap {
15650
15921
  /**
15651
15922
  * Parameters to pass along with the event
15652
15923
  */
15653
- mParameters?: {
15654
- /**
15655
- * Id of selected NavigationItem
15656
- */
15657
- id?: string;
15658
- /**
15659
- * The selected NavigationItem
15660
- */
15661
- item?: sap.ui.ux3.NavigationItem;
15662
- /**
15663
- * Key of selected NavigationItem
15664
- */
15665
- key?: string;
15666
- }
15924
+ mParameters?: sap.ui.ux3.ThingInspector$FacetSelectedEventParameters
15667
15925
  ): boolean;
15668
15926
  /**
15669
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15927
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
15670
15928
  *
15671
15929
  * Fires event {@link #event:feedSubmit feedSubmit} to attached listeners.
15672
15930
  *
@@ -15676,12 +15934,7 @@ declare namespace sap {
15676
15934
  /**
15677
15935
  * Parameters to pass along with the event
15678
15936
  */
15679
- mParameters?: {
15680
- /**
15681
- * Feed text
15682
- */
15683
- text?: string;
15684
- }
15937
+ mParameters?: sap.ui.ux3.ThingInspector$FeedSubmitEventParameters
15685
15938
  ): this;
15686
15939
  /**
15687
15940
  * Gets content of aggregation {@link #getActionBar actionBar}.
@@ -15782,7 +16035,7 @@ declare namespace sap {
15782
16035
  */
15783
16036
  getHeaderContent(): sap.ui.ux3.ThingGroup[];
15784
16037
  /**
15785
- * @SINCE 1.16.3
16038
+ * @since 1.16.3
15786
16039
  *
15787
16040
  * Gets current value of property {@link #getHeaderType headerType}.
15788
16041
  *
@@ -16157,7 +16410,7 @@ declare namespace sap {
16157
16410
  sFollowState?: sap.ui.ux3.FollowActionState
16158
16411
  ): this;
16159
16412
  /**
16160
- * @SINCE 1.16.3
16413
+ * @since 1.16.3
16161
16414
  *
16162
16415
  * Sets a new value for property {@link #getHeaderType headerType}.
16163
16416
  *
@@ -16251,7 +16504,7 @@ declare namespace sap {
16251
16504
  ): this;
16252
16505
  }
16253
16506
  /**
16254
- * @SINCE 1.9.1
16507
+ * @since 1.9.1
16255
16508
  * @deprecated (since 1.38) - There is not an exact replacement.
16256
16509
  *
16257
16510
  * ThingViewer: Same as ThingInspector but decoupled from the Overlay and the ActionBar. The control can
@@ -16372,7 +16625,7 @@ declare namespace sap {
16372
16625
  /**
16373
16626
  * The function to be called when the event occurs
16374
16627
  */
16375
- fnFunction: (p1: sap.ui.base.Event) => void,
16628
+ fnFunction: (p1: ThingViewer$FacetSelectedEvent) => void,
16376
16629
  /**
16377
16630
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingViewer` itself
16378
16631
  */
@@ -16393,7 +16646,7 @@ declare namespace sap {
16393
16646
  /**
16394
16647
  * The function to be called when the event occurs
16395
16648
  */
16396
- fnFunction: (p1: sap.ui.base.Event) => void,
16649
+ fnFunction: (p1: ThingViewer$FacetSelectedEvent) => void,
16397
16650
  /**
16398
16651
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingViewer` itself
16399
16652
  */
@@ -16435,14 +16688,14 @@ declare namespace sap {
16435
16688
  /**
16436
16689
  * The function to be called, when the event occurs
16437
16690
  */
16438
- fnFunction: (p1: sap.ui.base.Event) => void,
16691
+ fnFunction: (p1: ThingViewer$FacetSelectedEvent) => void,
16439
16692
  /**
16440
16693
  * Context object on which the given function had to be called
16441
16694
  */
16442
16695
  oListener?: object
16443
16696
  ): this;
16444
16697
  /**
16445
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
16698
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
16446
16699
  *
16447
16700
  * Fires event {@link #event:facetSelected facetSelected} to attached listeners.
16448
16701
  *
@@ -16455,20 +16708,7 @@ declare namespace sap {
16455
16708
  /**
16456
16709
  * Parameters to pass along with the event
16457
16710
  */
16458
- mParameters?: {
16459
- /**
16460
- * Id of selected NavigationItem
16461
- */
16462
- id?: string;
16463
- /**
16464
- * The selected NavigationItem
16465
- */
16466
- item?: sap.ui.ux3.NavigationItem;
16467
- /**
16468
- * Key of selected NavigationItem
16469
- */
16470
- key?: string;
16471
- }
16711
+ mParameters?: sap.ui.ux3.ThingViewer$FacetSelectedEventParameters
16472
16712
  ): boolean;
16473
16713
  /**
16474
16714
  * Gets content of aggregation {@link #getActionBar actionBar}.
@@ -16495,7 +16735,7 @@ declare namespace sap {
16495
16735
  */
16496
16736
  getHeaderContent(): sap.ui.ux3.ThingGroup[];
16497
16737
  /**
16498
- * @SINCE 1.16.3
16738
+ * @since 1.16.3
16499
16739
  *
16500
16740
  * Gets current value of property {@link #getHeaderType headerType}.
16501
16741
  *
@@ -16719,7 +16959,7 @@ declare namespace sap {
16719
16959
  oActionBar: sap.ui.ux3.ActionBar
16720
16960
  ): this;
16721
16961
  /**
16722
- * @SINCE 1.16.3
16962
+ * @since 1.16.3
16723
16963
  *
16724
16964
  * Sets a new value for property {@link #getHeaderType headerType}.
16725
16965
  *
@@ -16939,7 +17179,7 @@ declare namespace sap {
16939
17179
  oContent: sap.ui.core.Control
16940
17180
  ): this;
16941
17181
  /**
16942
- * @SINCE 1.19.0
17182
+ * @since 1.19.0
16943
17183
  *
16944
17184
  * Adds an ID to the Popup that should be focusable as well when using `autoclose`. Chaining is only possible
16945
17185
  * if a valid type (string) is given.
@@ -17063,7 +17303,7 @@ declare namespace sap {
17063
17303
  /**
17064
17304
  * The function to be called when the event occurs
17065
17305
  */
17066
- fnFunction: (p1: sap.ui.base.Event) => void,
17306
+ fnFunction: (p1: ToolPopup$EnterEvent) => void,
17067
17307
  /**
17068
17308
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ToolPopup` itself
17069
17309
  */
@@ -17083,7 +17323,7 @@ declare namespace sap {
17083
17323
  /**
17084
17324
  * The function to be called when the event occurs
17085
17325
  */
17086
- fnFunction: (p1: sap.ui.base.Event) => void,
17326
+ fnFunction: (p1: ToolPopup$EnterEvent) => void,
17087
17327
  /**
17088
17328
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ToolPopup` itself
17089
17329
  */
@@ -17182,7 +17422,7 @@ declare namespace sap {
17182
17422
  oListener?: object
17183
17423
  ): this;
17184
17424
  /**
17185
- * @SINCE 1.19.0
17425
+ * @since 1.19.0
17186
17426
  *
17187
17427
  * Attaches event handler `fnFunction` to the {@link #event:opened opened} event of this `sap.ui.ux3.ToolPopup`.
17188
17428
  *
@@ -17209,7 +17449,7 @@ declare namespace sap {
17209
17449
  oListener?: object
17210
17450
  ): this;
17211
17451
  /**
17212
- * @SINCE 1.19.0
17452
+ * @since 1.19.0
17213
17453
  *
17214
17454
  * Attaches event handler `fnFunction` to the {@link #event:opened opened} event of this `sap.ui.ux3.ToolPopup`.
17215
17455
  *
@@ -17299,7 +17539,7 @@ declare namespace sap {
17299
17539
  /**
17300
17540
  * The function to be called, when the event occurs
17301
17541
  */
17302
- fnFunction: (p1: sap.ui.base.Event) => void,
17542
+ fnFunction: (p1: ToolPopup$EnterEvent) => void,
17303
17543
  /**
17304
17544
  * Context object on which the given function had to be called
17305
17545
  */
@@ -17340,7 +17580,7 @@ declare namespace sap {
17340
17580
  oListener?: object
17341
17581
  ): this;
17342
17582
  /**
17343
- * @SINCE 1.19.0
17583
+ * @since 1.19.0
17344
17584
  *
17345
17585
  * Detaches event handler `fnFunction` from the {@link #event:opened opened} event of this `sap.ui.ux3.ToolPopup`.
17346
17586
  *
@@ -17359,7 +17599,7 @@ declare namespace sap {
17359
17599
  oListener?: object
17360
17600
  ): this;
17361
17601
  /**
17362
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17602
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17363
17603
  *
17364
17604
  * Fires event {@link #event:close close} to attached listeners.
17365
17605
  *
@@ -17375,7 +17615,7 @@ declare namespace sap {
17375
17615
  mParameters?: object
17376
17616
  ): boolean;
17377
17617
  /**
17378
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17618
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17379
17619
  *
17380
17620
  * Fires event {@link #event:closed closed} to attached listeners.
17381
17621
  *
@@ -17388,7 +17628,7 @@ declare namespace sap {
17388
17628
  mParameters?: object
17389
17629
  ): this;
17390
17630
  /**
17391
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17631
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17392
17632
  *
17393
17633
  * Fires event {@link #event:enter enter} to attached listeners.
17394
17634
  *
@@ -17398,19 +17638,10 @@ declare namespace sap {
17398
17638
  /**
17399
17639
  * Parameters to pass along with the event
17400
17640
  */
17401
- mParameters?: {
17402
- /**
17403
- * The onsapenter event, received by the pop up
17404
- */
17405
- originalEvent?: object;
17406
- /**
17407
- * The control that was focused when the user pressed the Enter key (may be null)
17408
- */
17409
- originalSrcControl?: sap.ui.core.Control;
17410
- }
17641
+ mParameters?: sap.ui.ux3.ToolPopup$EnterEventParameters
17411
17642
  ): this;
17412
17643
  /**
17413
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17644
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17414
17645
  *
17415
17646
  * Fires event {@link #event:iconChanged iconChanged} to attached listeners.
17416
17647
  *
@@ -17423,7 +17654,7 @@ declare namespace sap {
17423
17654
  mParameters?: object
17424
17655
  ): this;
17425
17656
  /**
17426
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17657
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17427
17658
  *
17428
17659
  * Fires event {@link #event:open open} to attached listeners.
17429
17660
  *
@@ -17436,8 +17667,8 @@ declare namespace sap {
17436
17667
  mParameters?: object
17437
17668
  ): this;
17438
17669
  /**
17439
- * @SINCE 1.19.0
17440
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17670
+ * @since 1.19.0
17671
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
17441
17672
  *
17442
17673
  * Fires event {@link #event:opened opened} to attached listeners.
17443
17674
  *
@@ -17450,7 +17681,7 @@ declare namespace sap {
17450
17681
  mParameters?: object
17451
17682
  ): this;
17452
17683
  /**
17453
- * @SINCE 1.13.2
17684
+ * @since 1.13.2
17454
17685
  *
17455
17686
  * Gets current value of property {@link #getAutoClose autoClose}.
17456
17687
  *
@@ -17470,7 +17701,7 @@ declare namespace sap {
17470
17701
  */
17471
17702
  getButtons(): sap.ui.core.Control[];
17472
17703
  /**
17473
- * @SINCE 1.19.0
17704
+ * @since 1.19.0
17474
17705
  *
17475
17706
  * Gets current value of property {@link #getCloseDuration closeDuration}.
17476
17707
  *
@@ -17488,14 +17719,14 @@ declare namespace sap {
17488
17719
  */
17489
17720
  getContent(): sap.ui.core.Control[];
17490
17721
  /**
17491
- * @SINCE 1.20.1
17722
+ * @since 1.20.1
17492
17723
  *
17493
17724
  * ID of the element which is the current target of the association {@link #getDefaultButton defaultButton},
17494
17725
  * or `null`.
17495
17726
  */
17496
17727
  getDefaultButton(): sap.ui.core.ID;
17497
17728
  /**
17498
- * @SINCE 1.13.1
17729
+ * @since 1.13.1
17499
17730
  *
17500
17731
  * Indicates whether the ToolPopup is currently enabled or not.
17501
17732
  *
@@ -17541,7 +17772,7 @@ declare namespace sap {
17541
17772
  */
17542
17773
  getInitialFocus(): sap.ui.core.ID;
17543
17774
  /**
17544
- * @SINCE 1.11.1
17775
+ * @since 1.11.1
17545
17776
  *
17546
17777
  * Gets current value of property {@link #getInverted inverted}.
17547
17778
  *
@@ -17554,7 +17785,7 @@ declare namespace sap {
17554
17785
  */
17555
17786
  getInverted(): boolean;
17556
17787
  /**
17557
- * @SINCE 1.13.2
17788
+ * @since 1.13.2
17558
17789
  *
17559
17790
  * Gets current value of property {@link #getMaxHeight maxHeight}.
17560
17791
  *
@@ -17565,7 +17796,7 @@ declare namespace sap {
17565
17796
  */
17566
17797
  getMaxHeight(): sap.ui.core.CSSSize;
17567
17798
  /**
17568
- * @SINCE 1.15.0
17799
+ * @since 1.15.0
17569
17800
  *
17570
17801
  * Gets current value of property {@link #getMaxWidth maxWidth}.
17571
17802
  *
@@ -17588,7 +17819,7 @@ declare namespace sap {
17588
17819
  */
17589
17820
  getModal(): boolean;
17590
17821
  /**
17591
- * @SINCE 1.19.0
17822
+ * @since 1.19.0
17592
17823
  *
17593
17824
  * Gets current value of property {@link #getOpenDuration openDuration}.
17594
17825
  *
@@ -17730,7 +17961,7 @@ declare namespace sap {
17730
17961
  vContent: int | string | sap.ui.core.Control
17731
17962
  ): sap.ui.core.Control | null;
17732
17963
  /**
17733
- * @SINCE 1.19.0
17964
+ * @since 1.19.0
17734
17965
  *
17735
17966
  * Removes an ID to the Popup that should be focusable as well when using `autoclose`. Chaining is only
17736
17967
  * possible if a valid type (string) is given.
@@ -17742,7 +17973,7 @@ declare namespace sap {
17742
17973
  sID?: string
17743
17974
  ): void;
17744
17975
  /**
17745
- * @SINCE 1.13.2
17976
+ * @since 1.13.2
17746
17977
  *
17747
17978
  * Sets a new value for property {@link #getAutoClose autoClose}.
17748
17979
  *
@@ -17763,13 +17994,13 @@ declare namespace sap {
17763
17994
  bAutoClose?: boolean
17764
17995
  ): this;
17765
17996
  /**
17766
- * @SINCE 1.19.0
17997
+ * @since 1.19.0
17767
17998
  *
17768
17999
  * This is just a forward to the Popup's function (sap.ui.core.Popup.setAutoCloseAreas) with the same functionality.
17769
18000
  */
17770
18001
  setAutoCloseAreas(aAutoCloseAreas: Element[]): void;
17771
18002
  /**
17772
- * @SINCE 1.19.0
18003
+ * @since 1.19.0
17773
18004
  *
17774
18005
  * Sets a new value for property {@link #getCloseDuration closeDuration}.
17775
18006
  *
@@ -17788,7 +18019,7 @@ declare namespace sap {
17788
18019
  iCloseDuration?: int
17789
18020
  ): this;
17790
18021
  /**
17791
- * @SINCE 1.20.1
18022
+ * @since 1.20.1
17792
18023
  *
17793
18024
  * Sets the associated {@link #getDefaultButton defaultButton}.
17794
18025
  *
@@ -17814,7 +18045,7 @@ declare namespace sap {
17814
18045
  oInitialFocus: sap.ui.core.ID | sap.ui.core.Control
17815
18046
  ): this;
17816
18047
  /**
17817
- * @SINCE 1.11.1
18048
+ * @since 1.11.1
17818
18049
  *
17819
18050
  * Sets a new value for property {@link #getInverted inverted}.
17820
18051
  *
@@ -17834,7 +18065,7 @@ declare namespace sap {
17834
18065
  bInverted?: boolean
17835
18066
  ): this;
17836
18067
  /**
17837
- * @SINCE 1.13.2
18068
+ * @since 1.13.2
17838
18069
  *
17839
18070
  * Sets a new value for property {@link #getMaxHeight maxHeight}.
17840
18071
  *
@@ -17872,7 +18103,7 @@ declare namespace sap {
17872
18103
  bModal?: boolean
17873
18104
  ): this;
17874
18105
  /**
17875
- * @SINCE 1.19.0
18106
+ * @since 1.19.0
17876
18107
  *
17877
18108
  * Sets a new value for property {@link #getOpenDuration openDuration}.
17878
18109
  *
@@ -17924,7 +18155,7 @@ declare namespace sap {
17924
18155
  }
17925
18156
  /**
17926
18157
  * @deprecated (since 1.38)
17927
- * @EXPERIMENTAL (since 1.2) - API is not yet finished and might change completely
18158
+ * @experimental (since 1.2) - API is not yet finished and might change completely
17928
18159
  *
17929
18160
  * Enumeration of available standard actions for 'sap.ui.ux3.ActionBar'. To be used as parameters for function
17930
18161
  * 'sap.ui.ux3.ActionBar.getSocialAction'.
@@ -17952,7 +18183,7 @@ declare namespace sap {
17952
18183
  Update = "Update",
17953
18184
  }
17954
18185
  /**
17955
- * @SINCE 1.7.1
18186
+ * @since 1.7.1
17956
18187
  * @deprecated (since 1.38)
17957
18188
  *
17958
18189
  * Defines the order of the sub lists of a list in the ExactBrowser.
@@ -17969,7 +18200,7 @@ declare namespace sap {
17969
18200
  }
17970
18201
  /**
17971
18202
  * @deprecated (since 1.38)
17972
- * @EXPERIMENTAL (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
18203
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
17973
18204
  * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
17974
18205
  * Feed model topic is still open.
17975
18206
  *
@@ -18032,7 +18263,7 @@ declare namespace sap {
18032
18263
  None = "None",
18033
18264
  }
18034
18265
  /**
18035
- * @SINCE 1.12.0
18266
+ * @since 1.12.0
18036
18267
  * @deprecated (since 1.38)
18037
18268
  *
18038
18269
  * Available shell design types.
@@ -18076,7 +18307,7 @@ declare namespace sap {
18076
18307
  Standard = "Standard",
18077
18308
  }
18078
18309
  /**
18079
- * @SINCE 1.16.3
18310
+ * @since 1.16.3
18080
18311
  * @deprecated (since 1.38)
18081
18312
  *
18082
18313
  * Available ThingViewer header display types.
@@ -18108,6 +18339,485 @@ declare namespace sap {
18108
18339
  */
18109
18340
  Fixed = "Fixed",
18110
18341
  }
18342
+ /**
18343
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionBar$ActionSelectedEventParameters'
18344
+ * in 1.115.1 and any later releases.
18345
+ */
18346
+ type $ActionBarActionSelectedEventParameters = sap.ui.ux3.ActionBar$ActionSelectedEventParameters;
18347
+
18348
+ type ActionBar$ActionSelectedEvent = sap.ui.base.Event<ActionBar$ActionSelectedEventParameters>;
18349
+
18350
+ /**
18351
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionBar$FeedSubmitEventParameters'
18352
+ * in 1.115.1 and any later releases.
18353
+ */
18354
+ type $ActionBarFeedSubmitEventParameters = sap.ui.ux3.ActionBar$FeedSubmitEventParameters;
18355
+
18356
+ type ActionBar$FeedSubmitEvent = sap.ui.base.Event<ActionBar$FeedSubmitEventParameters>;
18357
+
18358
+ /**
18359
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Collection$PropertyChangedEventParameters'
18360
+ * in 1.115.1 and any later releases.
18361
+ */
18362
+ type $CollectionPropertyChangedEventParameters = sap.ui.ux3.Collection$PropertyChangedEventParameters;
18363
+
18364
+ type Collection$PropertyChangedEvent = sap.ui.base.Event<Collection$PropertyChangedEventParameters>;
18365
+
18366
+ /**
18367
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Collection$SelectionChangedEventParameters'
18368
+ * in 1.115.1 and any later releases.
18369
+ */
18370
+ type $CollectionSelectionChangedEventParameters = sap.ui.ux3.Collection$SelectionChangedEventParameters;
18371
+
18372
+ type Collection$SelectionChangedEvent = sap.ui.base.Event<Collection$SelectionChangedEventParameters>;
18373
+
18374
+ /**
18375
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CollectionInspector$CollectionSelectedEventParameters'
18376
+ * in 1.115.1 and any later releases.
18377
+ */
18378
+ type $CollectionInspectorCollectionSelectedEventParameters = sap.ui.ux3.CollectionInspector$CollectionSelectedEventParameters;
18379
+
18380
+ type CollectionInspector$CollectionSelectedEvent = sap.ui.base.Event<CollectionInspector$CollectionSelectedEventParameters>;
18381
+
18382
+ /**
18383
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CollectionInspector$EditCollectionEventParameters'
18384
+ * in 1.115.1 and any later releases.
18385
+ */
18386
+ type $CollectionInspectorEditCollectionEventParameters = sap.ui.ux3.CollectionInspector$EditCollectionEventParameters;
18387
+
18388
+ type CollectionInspector$EditCollectionEvent = sap.ui.base.Event<CollectionInspector$EditCollectionEventParameters>;
18389
+
18390
+ /**
18391
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CollectionInspector$ItemSelectionChangedEventParameters'
18392
+ * in 1.115.1 and any later releases.
18393
+ */
18394
+ type $CollectionInspectorItemSelectionChangedEventParameters = sap.ui.ux3.CollectionInspector$ItemSelectionChangedEventParameters;
18395
+
18396
+ type CollectionInspector$ItemSelectionChangedEvent = sap.ui.base.Event<CollectionInspector$ItemSelectionChangedEventParameters>;
18397
+
18398
+ /**
18399
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DataSet$SearchEventParameters'
18400
+ * in 1.115.1 and any later releases.
18401
+ */
18402
+ type $DataSetSearchEventParameters = sap.ui.ux3.DataSet$SearchEventParameters;
18403
+
18404
+ type DataSet$SearchEvent = sap.ui.base.Event<DataSet$SearchEventParameters>;
18405
+
18406
+ /**
18407
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DataSet$SelectionChangedEventParameters'
18408
+ * in 1.115.1 and any later releases.
18409
+ */
18410
+ type $DataSetSelectionChangedEventParameters = sap.ui.ux3.DataSet$SelectionChangedEventParameters;
18411
+
18412
+ type DataSet$SelectionChangedEvent = sap.ui.base.Event<DataSet$SelectionChangedEventParameters>;
18413
+
18414
+ /**
18415
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DataSetItem$SelectedEventParameters'
18416
+ * in 1.115.1 and any later releases.
18417
+ */
18418
+ type $DataSetItemSelectedEventParameters = sap.ui.ux3.DataSetItem$SelectedEventParameters;
18419
+
18420
+ type DataSetItem$SelectedEvent = sap.ui.base.Event<DataSetItem$SelectedEventParameters>;
18421
+
18422
+ /**
18423
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Exact$RefineSearchEventParameters'
18424
+ * in 1.115.1 and any later releases.
18425
+ */
18426
+ type $ExactRefineSearchEventParameters = sap.ui.ux3.Exact$RefineSearchEventParameters;
18427
+
18428
+ type Exact$RefineSearchEvent = sap.ui.base.Event<Exact$RefineSearchEventParameters>;
18429
+
18430
+ /**
18431
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Exact$SearchEventParameters'
18432
+ * in 1.115.1 and any later releases.
18433
+ */
18434
+ type $ExactSearchEventParameters = sap.ui.ux3.Exact$SearchEventParameters;
18435
+
18436
+ type Exact$SearchEvent = sap.ui.base.Event<Exact$SearchEventParameters>;
18437
+
18438
+ /**
18439
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactAttribute$SupplyAttributesEventParameters'
18440
+ * in 1.115.1 and any later releases.
18441
+ */
18442
+ type $ExactAttributeSupplyAttributesEventParameters = sap.ui.ux3.ExactAttribute$SupplyAttributesEventParameters;
18443
+
18444
+ type ExactAttribute$SupplyAttributesEvent = sap.ui.base.Event<ExactAttribute$SupplyAttributesEventParameters>;
18445
+
18446
+ /**
18447
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactBrowser$AttributeSelectedEventParameters'
18448
+ * in 1.115.1 and any later releases.
18449
+ */
18450
+ type $ExactBrowserAttributeSelectedEventParameters = sap.ui.ux3.ExactBrowser$AttributeSelectedEventParameters;
18451
+
18452
+ type ExactBrowser$AttributeSelectedEvent = sap.ui.base.Event<ExactBrowser$AttributeSelectedEventParameters>;
18453
+
18454
+ /**
18455
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactBrowser$SaveEventParameters'
18456
+ * in 1.115.1 and any later releases.
18457
+ */
18458
+ type $ExactBrowserSaveEventParameters = sap.ui.ux3.ExactBrowser$SaveEventParameters;
18459
+
18460
+ type ExactBrowser$SaveEvent = sap.ui.base.Event<ExactBrowser$SaveEventParameters>;
18461
+
18462
+ /**
18463
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactList$AttributeSelectedEventParameters'
18464
+ * in 1.115.1 and any later releases.
18465
+ */
18466
+ type $ExactListAttributeSelectedEventParameters = sap.ui.ux3.ExactList$AttributeSelectedEventParameters;
18467
+
18468
+ type ExactList$AttributeSelectedEvent = sap.ui.base.Event<ExactList$AttributeSelectedEventParameters>;
18469
+
18470
+ /**
18471
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FacetFilterList$SelectEventParameters'
18472
+ * in 1.115.1 and any later releases.
18473
+ */
18474
+ type $FacetFilterListSelectEventParameters = sap.ui.ux3.FacetFilterList$SelectEventParameters;
18475
+
18476
+ type FacetFilterList$SelectEvent = sap.ui.base.Event<FacetFilterList$SelectEventParameters>;
18477
+
18478
+ /**
18479
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$ChunkAddedEventParameters'
18480
+ * in 1.115.1 and any later releases.
18481
+ */
18482
+ type $FeedChunkAddedEventParameters = sap.ui.ux3.Feed$ChunkAddedEventParameters;
18483
+
18484
+ type Feed$ChunkAddedEvent = sap.ui.base.Event<Feed$ChunkAddedEventParameters>;
18485
+
18486
+ /**
18487
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$FilterChangeEventParameters'
18488
+ * in 1.115.1 and any later releases.
18489
+ */
18490
+ type $FeedFilterChangeEventParameters = sap.ui.ux3.Feed$FilterChangeEventParameters;
18491
+
18492
+ type Feed$FilterChangeEvent = sap.ui.base.Event<Feed$FilterChangeEventParameters>;
18493
+
18494
+ /**
18495
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$SearchEventParameters'
18496
+ * in 1.115.1 and any later releases.
18497
+ */
18498
+ type $FeedSearchEventParameters = sap.ui.ux3.Feed$SearchEventParameters;
18499
+
18500
+ type Feed$SearchEvent = sap.ui.base.Event<Feed$SearchEventParameters>;
18501
+
18502
+ /**
18503
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$ToggleLiveEventParameters'
18504
+ * in 1.115.1 and any later releases.
18505
+ */
18506
+ type $FeedToggleLiveEventParameters = sap.ui.ux3.Feed$ToggleLiveEventParameters;
18507
+
18508
+ type Feed$ToggleLiveEvent = sap.ui.base.Event<Feed$ToggleLiveEventParameters>;
18509
+
18510
+ /**
18511
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$ToolsItemSelectedEventParameters'
18512
+ * in 1.115.1 and any later releases.
18513
+ */
18514
+ type $FeedToolsItemSelectedEventParameters = sap.ui.ux3.Feed$ToolsItemSelectedEventParameters;
18515
+
18516
+ type Feed$ToolsItemSelectedEvent = sap.ui.base.Event<Feed$ToolsItemSelectedEventParameters>;
18517
+
18518
+ /**
18519
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ActionItemSelectedEventParameters'
18520
+ * in 1.115.1 and any later releases.
18521
+ */
18522
+ type $FeedChunkActionItemSelectedEventParameters = sap.ui.ux3.FeedChunk$ActionItemSelectedEventParameters;
18523
+
18524
+ type FeedChunk$ActionItemSelectedEvent = sap.ui.base.Event<FeedChunk$ActionItemSelectedEventParameters>;
18525
+
18526
+ /**
18527
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$CommentAddedEventParameters'
18528
+ * in 1.115.1 and any later releases.
18529
+ */
18530
+ type $FeedChunkCommentAddedEventParameters = sap.ui.ux3.FeedChunk$CommentAddedEventParameters;
18531
+
18532
+ type FeedChunk$CommentAddedEvent = sap.ui.base.Event<FeedChunk$CommentAddedEventParameters>;
18533
+
18534
+ /**
18535
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$DeletedEventParameters'
18536
+ * in 1.115.1 and any later releases.
18537
+ */
18538
+ type $FeedChunkDeletedEventParameters = sap.ui.ux3.FeedChunk$DeletedEventParameters;
18539
+
18540
+ type FeedChunk$DeletedEvent = sap.ui.base.Event<FeedChunk$DeletedEventParameters>;
18541
+
18542
+ /**
18543
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$InspectEventParameters'
18544
+ * in 1.115.1 and any later releases.
18545
+ */
18546
+ type $FeedChunkInspectEventParameters = sap.ui.ux3.FeedChunk$InspectEventParameters;
18547
+
18548
+ type FeedChunk$InspectEvent = sap.ui.base.Event<FeedChunk$InspectEventParameters>;
18549
+
18550
+ /**
18551
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ReferenceClickedEventParameters'
18552
+ * in 1.115.1 and any later releases.
18553
+ */
18554
+ type $FeedChunkReferenceClickedEventParameters = sap.ui.ux3.FeedChunk$ReferenceClickedEventParameters;
18555
+
18556
+ type FeedChunk$ReferenceClickedEvent = sap.ui.base.Event<FeedChunk$ReferenceClickedEventParameters>;
18557
+
18558
+ /**
18559
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$SenderClickedEventParameters'
18560
+ * in 1.115.1 and any later releases.
18561
+ */
18562
+ type $FeedChunkSenderClickedEventParameters = sap.ui.ux3.FeedChunk$SenderClickedEventParameters;
18563
+
18564
+ type FeedChunk$SenderClickedEvent = sap.ui.base.Event<FeedChunk$SenderClickedEventParameters>;
18565
+
18566
+ /**
18567
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ToggleFavoriteEventParameters'
18568
+ * in 1.115.1 and any later releases.
18569
+ */
18570
+ type $FeedChunkToggleFavoriteEventParameters = sap.ui.ux3.FeedChunk$ToggleFavoriteEventParameters;
18571
+
18572
+ type FeedChunk$ToggleFavoriteEvent = sap.ui.base.Event<FeedChunk$ToggleFavoriteEventParameters>;
18573
+
18574
+ /**
18575
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ToggleFlaggedEventParameters'
18576
+ * in 1.115.1 and any later releases.
18577
+ */
18578
+ type $FeedChunkToggleFlaggedEventParameters = sap.ui.ux3.FeedChunk$ToggleFlaggedEventParameters;
18579
+
18580
+ type FeedChunk$ToggleFlaggedEvent = sap.ui.base.Event<FeedChunk$ToggleFlaggedEventParameters>;
18581
+
18582
+ /**
18583
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ToggleSharedEventParameters'
18584
+ * in 1.115.1 and any later releases.
18585
+ */
18586
+ type $FeedChunkToggleSharedEventParameters = sap.ui.ux3.FeedChunk$ToggleSharedEventParameters;
18587
+
18588
+ type FeedChunk$ToggleSharedEvent = sap.ui.base.Event<FeedChunk$ToggleSharedEventParameters>;
18589
+
18590
+ /**
18591
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feeder$SubmitEventParameters'
18592
+ * in 1.115.1 and any later releases.
18593
+ */
18594
+ type $FeederSubmitEventParameters = sap.ui.ux3.Feeder$SubmitEventParameters;
18595
+
18596
+ type Feeder$SubmitEvent = sap.ui.base.Event<Feeder$SubmitEventParameters>;
18597
+
18598
+ /**
18599
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NavigationBar$SelectEventParameters'
18600
+ * in 1.115.1 and any later releases.
18601
+ */
18602
+ type $NavigationBarSelectEventParameters = sap.ui.ux3.NavigationBar$SelectEventParameters;
18603
+
18604
+ type NavigationBar$SelectEvent = sap.ui.base.Event<NavigationBar$SelectEventParameters>;
18605
+
18606
+ /**
18607
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationBar$DisplayEventParameters'
18608
+ * in 1.115.1 and any later releases.
18609
+ */
18610
+ type $NotificationBarDisplayEventParameters = sap.ui.ux3.NotificationBar$DisplayEventParameters;
18611
+
18612
+ type NotificationBar$DisplayEvent = sap.ui.base.Event<NotificationBar$DisplayEventParameters>;
18613
+
18614
+ /**
18615
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationBar$ResizeEventParameters'
18616
+ * in 1.115.1 and any later releases.
18617
+ */
18618
+ type $NotificationBarResizeEventParameters = sap.ui.ux3.NotificationBar$ResizeEventParameters;
18619
+
18620
+ type NotificationBar$ResizeEvent = sap.ui.base.Event<NotificationBar$ResizeEventParameters>;
18621
+
18622
+ /**
18623
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Notifier$MessageSelectedEventParameters'
18624
+ * in 1.115.1 and any later releases.
18625
+ */
18626
+ type $NotifierMessageSelectedEventParameters = sap.ui.ux3.Notifier$MessageSelectedEventParameters;
18627
+
18628
+ type Notifier$MessageSelectedEvent = sap.ui.base.Event<Notifier$MessageSelectedEventParameters>;
18629
+
18630
+ /**
18631
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$CloseEventParameters'
18632
+ * in 1.115.1 and any later releases.
18633
+ */
18634
+ type $OverlayCloseEventParameters = sap.ui.ux3.Overlay$CloseEventParameters;
18635
+
18636
+ type Overlay$CloseEvent = sap.ui.base.Event<Overlay$CloseEventParameters>;
18637
+
18638
+ /**
18639
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$ClosedEventParameters'
18640
+ * in 1.115.1 and any later releases.
18641
+ */
18642
+ type $OverlayClosedEventParameters = sap.ui.ux3.Overlay$ClosedEventParameters;
18643
+
18644
+ type Overlay$ClosedEvent = sap.ui.base.Event<Overlay$ClosedEventParameters>;
18645
+
18646
+ /**
18647
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$OpenEventParameters'
18648
+ * in 1.115.1 and any later releases.
18649
+ */
18650
+ type $OverlayOpenEventParameters = sap.ui.ux3.Overlay$OpenEventParameters;
18651
+
18652
+ type Overlay$OpenEvent = sap.ui.base.Event<Overlay$OpenEventParameters>;
18653
+
18654
+ /**
18655
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$OpenNewEventParameters'
18656
+ * in 1.115.1 and any later releases.
18657
+ */
18658
+ type $OverlayOpenNewEventParameters = sap.ui.ux3.Overlay$OpenNewEventParameters;
18659
+
18660
+ type Overlay$OpenNewEvent = sap.ui.base.Event<Overlay$OpenNewEventParameters>;
18661
+
18662
+ /**
18663
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'QuickView$ActionSelectedEventParameters'
18664
+ * in 1.115.1 and any later releases.
18665
+ */
18666
+ type $QuickViewActionSelectedEventParameters = sap.ui.ux3.QuickView$ActionSelectedEventParameters;
18667
+
18668
+ type QuickView$ActionSelectedEvent = sap.ui.base.Event<QuickView$ActionSelectedEventParameters>;
18669
+
18670
+ /**
18671
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'QuickView$FeedSubmitEventParameters'
18672
+ * in 1.115.1 and any later releases.
18673
+ */
18674
+ type $QuickViewFeedSubmitEventParameters = sap.ui.ux3.QuickView$FeedSubmitEventParameters;
18675
+
18676
+ type QuickView$FeedSubmitEvent = sap.ui.base.Event<QuickView$FeedSubmitEventParameters>;
18677
+
18678
+ /**
18679
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'QuickView$NavigateEventParameters'
18680
+ * in 1.115.1 and any later releases.
18681
+ */
18682
+ type $QuickViewNavigateEventParameters = sap.ui.ux3.QuickView$NavigateEventParameters;
18683
+
18684
+ type QuickView$NavigateEvent = sap.ui.base.Event<QuickView$NavigateEventParameters>;
18685
+
18686
+ /**
18687
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$FeedSubmitEventParameters'
18688
+ * in 1.115.1 and any later releases.
18689
+ */
18690
+ type $ShellFeedSubmitEventParameters = sap.ui.ux3.Shell$FeedSubmitEventParameters;
18691
+
18692
+ type Shell$FeedSubmitEvent = sap.ui.base.Event<Shell$FeedSubmitEventParameters>;
18693
+
18694
+ /**
18695
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$LogoutEventParameters'
18696
+ * in 1.115.1 and any later releases.
18697
+ */
18698
+ type $ShellLogoutEventParameters = sap.ui.ux3.Shell$LogoutEventParameters;
18699
+
18700
+ type Shell$LogoutEvent = sap.ui.base.Event<Shell$LogoutEventParameters>;
18701
+
18702
+ /**
18703
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$PaneBarItemSelectedEventParameters'
18704
+ * in 1.115.1 and any later releases.
18705
+ */
18706
+ type $ShellPaneBarItemSelectedEventParameters = sap.ui.ux3.Shell$PaneBarItemSelectedEventParameters;
18707
+
18708
+ type Shell$PaneBarItemSelectedEvent = sap.ui.base.Event<Shell$PaneBarItemSelectedEventParameters>;
18709
+
18710
+ /**
18711
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$PaneClosedEventParameters'
18712
+ * in 1.115.1 and any later releases.
18713
+ */
18714
+ type $ShellPaneClosedEventParameters = sap.ui.ux3.Shell$PaneClosedEventParameters;
18715
+
18716
+ type Shell$PaneClosedEvent = sap.ui.base.Event<Shell$PaneClosedEventParameters>;
18717
+
18718
+ /**
18719
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$SearchEventParameters'
18720
+ * in 1.115.1 and any later releases.
18721
+ */
18722
+ type $ShellSearchEventParameters = sap.ui.ux3.Shell$SearchEventParameters;
18723
+
18724
+ type Shell$SearchEvent = sap.ui.base.Event<Shell$SearchEventParameters>;
18725
+
18726
+ /**
18727
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$WorksetItemSelectedEventParameters'
18728
+ * in 1.115.1 and any later releases.
18729
+ */
18730
+ type $ShellWorksetItemSelectedEventParameters = sap.ui.ux3.Shell$WorksetItemSelectedEventParameters;
18731
+
18732
+ type Shell$WorksetItemSelectedEvent = sap.ui.base.Event<Shell$WorksetItemSelectedEventParameters>;
18733
+
18734
+ /**
18735
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingAction$SelectEventParameters'
18736
+ * in 1.115.1 and any later releases.
18737
+ */
18738
+ type $ThingActionSelectEventParameters = sap.ui.ux3.ThingAction$SelectEventParameters;
18739
+
18740
+ type ThingAction$SelectEvent = sap.ui.base.Event<ThingAction$SelectEventParameters>;
18741
+
18742
+ /**
18743
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingInspector$ActionSelectedEventParameters'
18744
+ * in 1.115.1 and any later releases.
18745
+ */
18746
+ type $ThingInspectorActionSelectedEventParameters = sap.ui.ux3.ThingInspector$ActionSelectedEventParameters;
18747
+
18748
+ type ThingInspector$ActionSelectedEvent = sap.ui.base.Event<ThingInspector$ActionSelectedEventParameters>;
18749
+
18750
+ /**
18751
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingInspector$FacetSelectedEventParameters'
18752
+ * in 1.115.1 and any later releases.
18753
+ */
18754
+ type $ThingInspectorFacetSelectedEventParameters = sap.ui.ux3.ThingInspector$FacetSelectedEventParameters;
18755
+
18756
+ type ThingInspector$FacetSelectedEvent = sap.ui.base.Event<ThingInspector$FacetSelectedEventParameters>;
18757
+
18758
+ /**
18759
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingInspector$FeedSubmitEventParameters'
18760
+ * in 1.115.1 and any later releases.
18761
+ */
18762
+ type $ThingInspectorFeedSubmitEventParameters = sap.ui.ux3.ThingInspector$FeedSubmitEventParameters;
18763
+
18764
+ type ThingInspector$FeedSubmitEvent = sap.ui.base.Event<ThingInspector$FeedSubmitEventParameters>;
18765
+
18766
+ /**
18767
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingViewer$FacetSelectedEventParameters'
18768
+ * in 1.115.1 and any later releases.
18769
+ */
18770
+ type $ThingViewerFacetSelectedEventParameters = sap.ui.ux3.ThingViewer$FacetSelectedEventParameters;
18771
+
18772
+ type ThingViewer$FacetSelectedEvent = sap.ui.base.Event<ThingViewer$FacetSelectedEventParameters>;
18773
+
18774
+ /**
18775
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$CloseEventParameters'
18776
+ * in 1.115.1 and any later releases.
18777
+ */
18778
+ type $ToolPopupCloseEventParameters = sap.ui.ux3.ToolPopup$CloseEventParameters;
18779
+
18780
+ type ToolPopup$CloseEvent = sap.ui.base.Event<ToolPopup$CloseEventParameters>;
18781
+
18782
+ /**
18783
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$ClosedEventParameters'
18784
+ * in 1.115.1 and any later releases.
18785
+ */
18786
+ type $ToolPopupClosedEventParameters = sap.ui.ux3.ToolPopup$ClosedEventParameters;
18787
+
18788
+ type ToolPopup$ClosedEvent = sap.ui.base.Event<ToolPopup$ClosedEventParameters>;
18789
+
18790
+ /**
18791
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$EnterEventParameters'
18792
+ * in 1.115.1 and any later releases.
18793
+ */
18794
+ type $ToolPopupEnterEventParameters = sap.ui.ux3.ToolPopup$EnterEventParameters;
18795
+
18796
+ type ToolPopup$EnterEvent = sap.ui.base.Event<ToolPopup$EnterEventParameters>;
18797
+
18798
+ /**
18799
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$IconChangedEventParameters'
18800
+ * in 1.115.1 and any later releases.
18801
+ */
18802
+ type $ToolPopupIconChangedEventParameters = sap.ui.ux3.ToolPopup$IconChangedEventParameters;
18803
+
18804
+ type ToolPopup$IconChangedEvent = sap.ui.base.Event<ToolPopup$IconChangedEventParameters>;
18805
+
18806
+ /**
18807
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$OpenEventParameters'
18808
+ * in 1.115.1 and any later releases.
18809
+ */
18810
+ type $ToolPopupOpenEventParameters = sap.ui.ux3.ToolPopup$OpenEventParameters;
18811
+
18812
+ type ToolPopup$OpenEvent = sap.ui.base.Event<ToolPopup$OpenEventParameters>;
18813
+
18814
+ /**
18815
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$OpenedEventParameters'
18816
+ * in 1.115.1 and any later releases.
18817
+ */
18818
+ type $ToolPopupOpenedEventParameters = sap.ui.ux3.ToolPopup$OpenedEventParameters;
18819
+
18820
+ type ToolPopup$OpenedEvent = sap.ui.base.Event<ToolPopup$OpenedEventParameters>;
18111
18821
  }
18112
18822
  }
18113
18823