@openui5/types 1.113.0 → 1.115.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -247,7 +247,7 @@ declare module "sap/ui/ux3/ActionBar" {
247
247
  * When using this control, please be aware that it fulfills rather specific requirements: it has been designed
248
248
  * for and is used within composite controls QuickView and ThingInspector.
249
249
  */
250
- export default class ActionBar extends Control {
250
+ class ActionBar extends Control {
251
251
  /**
252
252
  * Constructor for a new ActionBar.
253
253
  *
@@ -334,7 +334,7 @@ declare module "sap/ui/ux3/ActionBar" {
334
334
  /**
335
335
  * The function to be called when the event occurs
336
336
  */
337
- fnFunction: (p1: Event) => void,
337
+ fnFunction: (p1: Event<$ActionBarActionSelectedEventParameters>) => void,
338
338
  /**
339
339
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
340
340
  */
@@ -361,7 +361,7 @@ declare module "sap/ui/ux3/ActionBar" {
361
361
  /**
362
362
  * The function to be called when the event occurs
363
363
  */
364
- fnFunction: (p1: Event) => void,
364
+ fnFunction: (p1: Event<$ActionBarActionSelectedEventParameters>) => void,
365
365
  /**
366
366
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
367
367
  */
@@ -386,7 +386,7 @@ declare module "sap/ui/ux3/ActionBar" {
386
386
  /**
387
387
  * The function to be called when the event occurs
388
388
  */
389
- fnFunction: (p1: Event) => void,
389
+ fnFunction: (p1: Event<$ActionBarFeedSubmitEventParameters>) => void,
390
390
  /**
391
391
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
392
392
  */
@@ -406,7 +406,7 @@ declare module "sap/ui/ux3/ActionBar" {
406
406
  /**
407
407
  * The function to be called when the event occurs
408
408
  */
409
- fnFunction: (p1: Event) => void,
409
+ fnFunction: (p1: Event<$ActionBarFeedSubmitEventParameters>) => void,
410
410
  /**
411
411
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ActionBar` itself
412
412
  */
@@ -429,7 +429,7 @@ declare module "sap/ui/ux3/ActionBar" {
429
429
  /**
430
430
  * The function to be called, when the event occurs
431
431
  */
432
- fnFunction: (p1: Event) => void,
432
+ fnFunction: (p1: Event<$ActionBarActionSelectedEventParameters>) => void,
433
433
  /**
434
434
  * Context object on which the given function had to be called
435
435
  */
@@ -446,7 +446,7 @@ declare module "sap/ui/ux3/ActionBar" {
446
446
  /**
447
447
  * The function to be called, when the event occurs
448
448
  */
449
- fnFunction: (p1: Event) => void,
449
+ fnFunction: (p1: Event<$ActionBarFeedSubmitEventParameters>) => void,
450
450
  /**
451
451
  * Context object on which the given function had to be called
452
452
  */
@@ -463,21 +463,7 @@ declare module "sap/ui/ux3/ActionBar" {
463
463
  /**
464
464
  * Parameters to pass along with the event
465
465
  */
466
- mParameters?: {
467
- /**
468
- * Id of selected ThingAction
469
- */
470
- id?: string;
471
- /**
472
- * Selected ThingAction
473
- */
474
- action?: ThingAction;
475
- /**
476
- * New State of the selected action.Only filled if the respective action maintains a state property, for
477
- * example 'FollowUp' or 'Favorite'
478
- */
479
- newState?: string;
480
- }
466
+ mParameters?: $ActionBarActionSelectedEventParameters
481
467
  ): this;
482
468
  /**
483
469
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -490,12 +476,7 @@ declare module "sap/ui/ux3/ActionBar" {
490
476
  /**
491
477
  * Parameters to pass along with the event
492
478
  */
493
- mParameters?: {
494
- /**
495
- * Feed text
496
- */
497
- text?: string;
498
- }
479
+ mParameters?: $ActionBarFeedSubmitEventParameters
499
480
  ): this;
500
481
  /**
501
482
  * Gets current value of property {@link #getAlwaysShowMoreMenu alwaysShowMoreMenu}.
@@ -835,6 +816,7 @@ declare module "sap/ui/ux3/ActionBar" {
835
816
  bUpdateState?: boolean
836
817
  ): this;
837
818
  }
819
+ export default ActionBar;
838
820
 
839
821
  export interface $ActionBarSettings extends $ControlSettings {
840
822
  /**
@@ -921,12 +903,39 @@ declare module "sap/ui/ux3/ActionBar" {
921
903
  *
922
904
  * For ‘Update’, please refer to event ‘feedSubmit’
923
905
  */
924
- actionSelected?: (oEvent: Event) => void;
906
+ actionSelected?: (
907
+ oEvent: Event<$ActionBarActionSelectedEventParameters>
908
+ ) => void;
925
909
 
926
910
  /**
927
911
  * Fired when a new feed entry is submitted.
928
912
  */
929
- feedSubmit?: (oEvent: Event) => void;
913
+ feedSubmit?: (oEvent: Event<$ActionBarFeedSubmitEventParameters>) => void;
914
+ }
915
+
916
+ export interface $ActionBarActionSelectedEventParameters {
917
+ /**
918
+ * Id of selected ThingAction
919
+ */
920
+ id?: string;
921
+
922
+ /**
923
+ * Selected ThingAction
924
+ */
925
+ action?: ThingAction;
926
+
927
+ /**
928
+ * New State of the selected action.Only filled if the respective action maintains a state property, for
929
+ * example 'FollowUp' or 'Favorite'
930
+ */
931
+ newState?: string;
932
+ }
933
+
934
+ export interface $ActionBarFeedSubmitEventParameters {
935
+ /**
936
+ * Feed text
937
+ */
938
+ text?: string;
930
939
  }
931
940
  }
932
941
 
@@ -952,7 +961,7 @@ declare module "sap/ui/ux3/Collection" {
952
961
  *
953
962
  * Collection
954
963
  */
955
- export default class Collection extends UI5Element {
964
+ class Collection extends UI5Element {
956
965
  /**
957
966
  * Constructor for a new Collection.
958
967
  *
@@ -1224,8 +1233,7 @@ declare module "sap/ui/ux3/Collection" {
1224
1233
  */
1225
1234
  getMultiSelection(): boolean;
1226
1235
  /**
1227
- * Returns array of IDs of the elements which are the current targets of the association {@link #getSelectedItems
1228
- * selectedItems}.
1236
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getSelectedItems selectedItems}.
1229
1237
  */
1230
1238
  getSelectedItems(): ID[];
1231
1239
  /**
@@ -1349,6 +1357,7 @@ declare module "sap/ui/ux3/Collection" {
1349
1357
  sTitle?: string
1350
1358
  ): this;
1351
1359
  }
1360
+ export default Collection;
1352
1361
 
1353
1362
  export interface $CollectionSettings extends $ElementSettings {
1354
1363
  /**
@@ -1386,6 +1395,10 @@ declare module "sap/ui/ux3/Collection" {
1386
1395
  */
1387
1396
  propertyChanged?: (oEvent: Event) => void;
1388
1397
  }
1398
+
1399
+ export interface $CollectionPropertyChangedEventParameters {}
1400
+
1401
+ export interface $CollectionSelectionChangedEventParameters {}
1389
1402
  }
1390
1403
 
1391
1404
  declare module "sap/ui/ux3/CollectionInspector" {
@@ -1410,7 +1423,7 @@ declare module "sap/ui/ux3/CollectionInspector" {
1410
1423
  *
1411
1424
  * CollectionInspector
1412
1425
  */
1413
- export default class CollectionInspector extends Control {
1426
+ class CollectionInspector extends Control {
1414
1427
  /**
1415
1428
  * Constructor for a new CollectionInspector.
1416
1429
  *
@@ -1687,7 +1700,7 @@ declare module "sap/ui/ux3/CollectionInspector" {
1687
1700
  oListener?: object
1688
1701
  ): this;
1689
1702
  /**
1690
- * Detaches event handler `fnFunction` from the {@link #event:itemSelectionChanged itemSelectionChanged}
1703
+ * Detaches event handler `fnFunction` from the {@link #event:itemSelectionChanged itemSelectionChanged }
1691
1704
  * event of this `sap.ui.ux3.CollectionInspector`.
1692
1705
  *
1693
1706
  * The passed function and listener object must match the ones used for event registration.
@@ -1929,6 +1942,7 @@ declare module "sap/ui/ux3/CollectionInspector" {
1929
1942
  bSidebarVisible?: boolean
1930
1943
  ): this;
1931
1944
  }
1945
+ export default CollectionInspector;
1932
1946
 
1933
1947
  export interface $CollectionInspectorSettings extends $ControlSettings {
1934
1948
  /**
@@ -1975,6 +1989,12 @@ declare module "sap/ui/ux3/CollectionInspector" {
1975
1989
  */
1976
1990
  editCollection?: (oEvent: Event) => void;
1977
1991
  }
1992
+
1993
+ export interface $CollectionInspectorCollectionSelectedEventParameters {}
1994
+
1995
+ export interface $CollectionInspectorEditCollectionEventParameters {}
1996
+
1997
+ export interface $CollectionInspectorItemSelectionChangedEventParameters {}
1978
1998
  }
1979
1999
 
1980
2000
  declare module "sap/ui/ux3/DataSet" {
@@ -2002,7 +2022,7 @@ declare module "sap/ui/ux3/DataSet" {
2002
2022
  *
2003
2023
  * DataSet
2004
2024
  */
2005
- export default class DataSet extends Control {
2025
+ class DataSet extends Control {
2006
2026
  /**
2007
2027
  * Constructor for a new DataSet.
2008
2028
  *
@@ -2136,7 +2156,7 @@ declare module "sap/ui/ux3/DataSet" {
2136
2156
  /**
2137
2157
  * The function to be called when the event occurs
2138
2158
  */
2139
- fnFunction: (p1: Event) => void,
2159
+ fnFunction: (p1: Event<$DataSetSearchEventParameters>) => void,
2140
2160
  /**
2141
2161
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
2142
2162
  */
@@ -2156,7 +2176,7 @@ declare module "sap/ui/ux3/DataSet" {
2156
2176
  /**
2157
2177
  * The function to be called when the event occurs
2158
2178
  */
2159
- fnFunction: (p1: Event) => void,
2179
+ fnFunction: (p1: Event<$DataSetSearchEventParameters>) => void,
2160
2180
  /**
2161
2181
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
2162
2182
  */
@@ -2182,7 +2202,7 @@ declare module "sap/ui/ux3/DataSet" {
2182
2202
  /**
2183
2203
  * The function to be called when the event occurs
2184
2204
  */
2185
- fnFunction: (p1: Event) => void,
2205
+ fnFunction: (p1: Event<$DataSetSelectionChangedEventParameters>) => void,
2186
2206
  /**
2187
2207
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
2188
2208
  */
@@ -2203,7 +2223,7 @@ declare module "sap/ui/ux3/DataSet" {
2203
2223
  /**
2204
2224
  * The function to be called when the event occurs
2205
2225
  */
2206
- fnFunction: (p1: Event) => void,
2226
+ fnFunction: (p1: Event<$DataSetSelectionChangedEventParameters>) => void,
2207
2227
  /**
2208
2228
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSet` itself
2209
2229
  */
@@ -2273,7 +2293,7 @@ declare module "sap/ui/ux3/DataSet" {
2273
2293
  /**
2274
2294
  * The function to be called, when the event occurs
2275
2295
  */
2276
- fnFunction: (p1: Event) => void,
2296
+ fnFunction: (p1: Event<$DataSetSearchEventParameters>) => void,
2277
2297
  /**
2278
2298
  * Context object on which the given function had to be called
2279
2299
  */
@@ -2291,7 +2311,7 @@ declare module "sap/ui/ux3/DataSet" {
2291
2311
  /**
2292
2312
  * The function to be called, when the event occurs
2293
2313
  */
2294
- fnFunction: (p1: Event) => void,
2314
+ fnFunction: (p1: Event<$DataSetSelectionChangedEventParameters>) => void,
2295
2315
  /**
2296
2316
  * Context object on which the given function had to be called
2297
2317
  */
@@ -2308,12 +2328,7 @@ declare module "sap/ui/ux3/DataSet" {
2308
2328
  /**
2309
2329
  * Parameters to pass along with the event
2310
2330
  */
2311
- mParameters?: {
2312
- /**
2313
- * The search query
2314
- */
2315
- query?: string;
2316
- }
2331
+ mParameters?: $DataSetSearchEventParameters
2317
2332
  ): this;
2318
2333
  /**
2319
2334
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -2326,16 +2341,7 @@ declare module "sap/ui/ux3/DataSet" {
2326
2341
  /**
2327
2342
  * Parameters to pass along with the event
2328
2343
  */
2329
- mParameters?: {
2330
- /**
2331
- * Old lead selected index
2332
- */
2333
- oldLeadSelectedIndex?: int;
2334
- /**
2335
- * New lead selected index
2336
- */
2337
- newLeadSelectedIndex?: int;
2338
- }
2344
+ mParameters?: $DataSetSelectionChangedEventParameters
2339
2345
  ): this;
2340
2346
  /**
2341
2347
  * Gets content of aggregation {@link #getFilter filter}.
@@ -2680,6 +2686,7 @@ declare module "sap/ui/ux3/DataSet" {
2680
2686
  */
2681
2687
  unbindItems(): this;
2682
2688
  }
2689
+ export default DataSet;
2683
2690
 
2684
2691
  export interface $DataSetSettings extends $ControlSettings {
2685
2692
  /**
@@ -2733,12 +2740,33 @@ declare module "sap/ui/ux3/DataSet" {
2733
2740
  /**
2734
2741
  * selection Changed
2735
2742
  */
2736
- selectionChanged?: (oEvent: Event) => void;
2743
+ selectionChanged?: (
2744
+ oEvent: Event<$DataSetSelectionChangedEventParameters>
2745
+ ) => void;
2737
2746
 
2738
2747
  /**
2739
2748
  * Event which is fired when the user triggers a search
2740
2749
  */
2741
- search?: (oEvent: Event) => void;
2750
+ search?: (oEvent: Event<$DataSetSearchEventParameters>) => void;
2751
+ }
2752
+
2753
+ export interface $DataSetSearchEventParameters {
2754
+ /**
2755
+ * The search query
2756
+ */
2757
+ query?: string;
2758
+ }
2759
+
2760
+ export interface $DataSetSelectionChangedEventParameters {
2761
+ /**
2762
+ * Old lead selected index
2763
+ */
2764
+ oldLeadSelectedIndex?: int;
2765
+
2766
+ /**
2767
+ * New lead selected index
2768
+ */
2769
+ newLeadSelectedIndex?: int;
2742
2770
  }
2743
2771
  }
2744
2772
 
@@ -2758,7 +2786,7 @@ declare module "sap/ui/ux3/DataSetItem" {
2758
2786
  *
2759
2787
  * DataSet Item
2760
2788
  */
2761
- export default class DataSetItem extends UI5Element {
2789
+ class DataSetItem extends UI5Element {
2762
2790
  /**
2763
2791
  * Constructor for a new DataSetItem.
2764
2792
  *
@@ -2838,7 +2866,7 @@ declare module "sap/ui/ux3/DataSetItem" {
2838
2866
  /**
2839
2867
  * The function to be called when the event occurs
2840
2868
  */
2841
- fnFunction: (p1: Event) => void,
2869
+ fnFunction: (p1: Event<$DataSetItemSelectedEventParameters>) => void,
2842
2870
  /**
2843
2871
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSetItem` itself
2844
2872
  */
@@ -2858,7 +2886,7 @@ declare module "sap/ui/ux3/DataSetItem" {
2858
2886
  /**
2859
2887
  * The function to be called when the event occurs
2860
2888
  */
2861
- fnFunction: (p1: Event) => void,
2889
+ fnFunction: (p1: Event<$DataSetItemSelectedEventParameters>) => void,
2862
2890
  /**
2863
2891
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.DataSetItem` itself
2864
2892
  */
@@ -2875,7 +2903,7 @@ declare module "sap/ui/ux3/DataSetItem" {
2875
2903
  /**
2876
2904
  * The function to be called, when the event occurs
2877
2905
  */
2878
- fnFunction: (p1: Event) => void,
2906
+ fnFunction: (p1: Event<$DataSetItemSelectedEventParameters>) => void,
2879
2907
  /**
2880
2908
  * Context object on which the given function had to be called
2881
2909
  */
@@ -2892,12 +2920,7 @@ declare module "sap/ui/ux3/DataSetItem" {
2892
2920
  /**
2893
2921
  * Parameters to pass along with the event
2894
2922
  */
2895
- mParameters?: {
2896
- /**
2897
- * Id of the selected Datset item
2898
- */
2899
- itemId?: string;
2900
- }
2923
+ mParameters?: $DataSetItemSelectedEventParameters
2901
2924
  ): this;
2902
2925
  /**
2903
2926
  * Gets current value of property {@link #getCheckable checkable}.
@@ -3004,6 +3027,7 @@ declare module "sap/ui/ux3/DataSetItem" {
3004
3027
  sTitle?: string
3005
3028
  ): this;
3006
3029
  }
3030
+ export default DataSetItem;
3007
3031
 
3008
3032
  export interface $DataSetItemSettings extends $ElementSettings {
3009
3033
  /**
@@ -3029,7 +3053,14 @@ declare module "sap/ui/ux3/DataSetItem" {
3029
3053
  /**
3030
3054
  * Event Fired when Datset item is selected.
3031
3055
  */
3032
- selected?: (oEvent: Event) => void;
3056
+ selected?: (oEvent: Event<$DataSetItemSelectedEventParameters>) => void;
3057
+ }
3058
+
3059
+ export interface $DataSetItemSelectedEventParameters {
3060
+ /**
3061
+ * Id of the selected Datset item
3062
+ */
3063
+ itemId?: string;
3033
3064
  }
3034
3065
  }
3035
3066
 
@@ -3053,9 +3084,7 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
3053
3084
  *
3054
3085
  * DataSetSimpleView provides a simple view example for DataSet usage.
3055
3086
  */
3056
- export default class DataSetSimpleView
3057
- extends Control
3058
- implements DataSetView {
3087
+ class DataSetSimpleView extends Control implements DataSetView {
3059
3088
  __implements__sap_ui_ux3_DataSetView: boolean;
3060
3089
  /**
3061
3090
  * Constructor for a new DataSetSimpleView.
@@ -3493,6 +3522,7 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
3493
3522
  aDiff: DataSetItem[]
3494
3523
  ): void;
3495
3524
  }
3525
+ export default DataSetSimpleView;
3496
3526
 
3497
3527
  export interface $DataSetSimpleViewSettings extends $ControlSettings {
3498
3528
  /**
@@ -3602,7 +3632,7 @@ declare module "sap/ui/ux3/Exact" {
3602
3632
  * A comprehensive UI design approach with graphical and functional elements for searching data, exploring
3603
3633
  * data, and acting on the data ("Explore and Act (Exact) Pattern").
3604
3634
  */
3605
- export default class Exact extends Control {
3635
+ class Exact extends Control {
3606
3636
  /**
3607
3637
  * Constructor for a new Exact.
3608
3638
  *
@@ -3693,7 +3723,7 @@ declare module "sap/ui/ux3/Exact" {
3693
3723
  /**
3694
3724
  * The function to be called when the event occurs
3695
3725
  */
3696
- fnFunction: (p1: Event) => void,
3726
+ fnFunction: (p1: Event<$ExactRefineSearchEventParameters>) => void,
3697
3727
  /**
3698
3728
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
3699
3729
  */
@@ -3713,7 +3743,7 @@ declare module "sap/ui/ux3/Exact" {
3713
3743
  /**
3714
3744
  * The function to be called when the event occurs
3715
3745
  */
3716
- fnFunction: (p1: Event) => void,
3746
+ fnFunction: (p1: Event<$ExactRefineSearchEventParameters>) => void,
3717
3747
  /**
3718
3748
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
3719
3749
  */
@@ -3738,7 +3768,7 @@ declare module "sap/ui/ux3/Exact" {
3738
3768
  /**
3739
3769
  * The function to be called when the event occurs
3740
3770
  */
3741
- fnFunction: (p1: Event) => void,
3771
+ fnFunction: (p1: Event<$ExactSearchEventParameters>) => void,
3742
3772
  /**
3743
3773
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
3744
3774
  */
@@ -3758,7 +3788,7 @@ declare module "sap/ui/ux3/Exact" {
3758
3788
  /**
3759
3789
  * The function to be called when the event occurs
3760
3790
  */
3761
- fnFunction: (p1: Event) => void,
3791
+ fnFunction: (p1: Event<$ExactSearchEventParameters>) => void,
3762
3792
  /**
3763
3793
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Exact` itself
3764
3794
  */
@@ -3787,7 +3817,7 @@ declare module "sap/ui/ux3/Exact" {
3787
3817
  /**
3788
3818
  * The function to be called, when the event occurs
3789
3819
  */
3790
- fnFunction: (p1: Event) => void,
3820
+ fnFunction: (p1: Event<$ExactRefineSearchEventParameters>) => void,
3791
3821
  /**
3792
3822
  * Context object on which the given function had to be called
3793
3823
  */
@@ -3804,7 +3834,7 @@ declare module "sap/ui/ux3/Exact" {
3804
3834
  /**
3805
3835
  * The function to be called, when the event occurs
3806
3836
  */
3807
- fnFunction: (p1: Event) => void,
3837
+ fnFunction: (p1: Event<$ExactSearchEventParameters>) => void,
3808
3838
  /**
3809
3839
  * Context object on which the given function had to be called
3810
3840
  */
@@ -3821,20 +3851,7 @@ declare module "sap/ui/ux3/Exact" {
3821
3851
  /**
3822
3852
  * Parameters to pass along with the event
3823
3853
  */
3824
- mParameters?: {
3825
- /**
3826
- * The query string which was entered in the search field
3827
- */
3828
- query?: string;
3829
- /**
3830
- * The attribute which was selected or unselected recently
3831
- */
3832
- changedAttribute?: ExactAttribute;
3833
- /**
3834
- * Array of all selected ExcatAttribute.
3835
- */
3836
- allSelectedAttributes?: object;
3837
- }
3854
+ mParameters?: $ExactRefineSearchEventParameters
3838
3855
  ): this;
3839
3856
  /**
3840
3857
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -3847,12 +3864,7 @@ declare module "sap/ui/ux3/Exact" {
3847
3864
  /**
3848
3865
  * Parameters to pass along with the event
3849
3866
  */
3850
- mParameters?: {
3851
- /**
3852
- * The query string which was entered in the search field.
3853
- */
3854
- query?: string;
3855
- }
3867
+ mParameters?: $ExactSearchEventParameters
3856
3868
  ): this;
3857
3869
  /**
3858
3870
  * Gets content of aggregation {@link #getAttributes attributes}.
@@ -3957,6 +3969,7 @@ declare module "sap/ui/ux3/Exact" {
3957
3969
  oSettingsMenu: Menu
3958
3970
  ): this;
3959
3971
  }
3972
+ export default Exact;
3960
3973
 
3961
3974
  export interface $ExactSettings extends $ControlSettings {
3962
3975
  /**
@@ -3981,12 +3994,36 @@ declare module "sap/ui/ux3/Exact" {
3981
3994
  /**
3982
3995
  * Event is fired when the search button is clicked
3983
3996
  */
3984
- search?: (oEvent: Event) => void;
3997
+ search?: (oEvent: Event<$ExactSearchEventParameters>) => void;
3985
3998
 
3986
3999
  /**
3987
4000
  * Event which is fired when an attribute is selected or unselected.
3988
4001
  */
3989
- refineSearch?: (oEvent: Event) => void;
4002
+ refineSearch?: (oEvent: Event<$ExactRefineSearchEventParameters>) => void;
4003
+ }
4004
+
4005
+ export interface $ExactRefineSearchEventParameters {
4006
+ /**
4007
+ * The query string which was entered in the search field
4008
+ */
4009
+ query?: string;
4010
+
4011
+ /**
4012
+ * The attribute which was selected or unselected recently
4013
+ */
4014
+ changedAttribute?: ExactAttribute;
4015
+
4016
+ /**
4017
+ * Array of all selected ExcatAttribute.
4018
+ */
4019
+ allSelectedAttributes?: object;
4020
+ }
4021
+
4022
+ export interface $ExactSearchEventParameters {
4023
+ /**
4024
+ * The query string which was entered in the search field.
4025
+ */
4026
+ query?: string;
3990
4027
  }
3991
4028
  }
3992
4029
 
@@ -4009,7 +4046,7 @@ declare module "sap/ui/ux3/ExactArea" {
4009
4046
  * Consists of two sections: A tool bar and a content area where arbitrary controls can be added. The ExactArea
4010
4047
  * is intended to be used for the Exact design approach but alternatively also in a stand alone version.
4011
4048
  */
4012
- export default class ExactArea extends Control {
4049
+ class ExactArea extends Control {
4013
4050
  /**
4014
4051
  * Constructor for a new ExactArea.
4015
4052
  *
@@ -4240,6 +4277,7 @@ declare module "sap/ui/ux3/ExactArea" {
4240
4277
  bToolbarVisible?: boolean
4241
4278
  ): this;
4242
4279
  }
4280
+ export default ExactArea;
4243
4281
 
4244
4282
  export interface $ExactAreaSettings extends $ControlSettings {
4245
4283
  /**
@@ -4284,7 +4322,7 @@ declare module "sap/ui/ux3/ExactAttribute" {
4284
4322
  *
4285
4323
  * An element for defining attributes and sub-attributes used within the Exact pattern.
4286
4324
  */
4287
- export default class ExactAttribute extends UI5Element {
4325
+ class ExactAttribute extends UI5Element {
4288
4326
  /**
4289
4327
  * Constructor for a new ExactAttribute.
4290
4328
  *
@@ -4378,7 +4416,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
4378
4416
  /**
4379
4417
  * The function to be called when the event occurs
4380
4418
  */
4381
- fnFunction: (p1: Event) => void,
4419
+ fnFunction: (
4420
+ p1: Event<$ExactAttributeSupplyAttributesEventParameters>
4421
+ ) => void,
4382
4422
  /**
4383
4423
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactAttribute` itself
4384
4424
  */
@@ -4401,7 +4441,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
4401
4441
  /**
4402
4442
  * The function to be called when the event occurs
4403
4443
  */
4404
- fnFunction: (p1: Event) => void,
4444
+ fnFunction: (
4445
+ p1: Event<$ExactAttributeSupplyAttributesEventParameters>
4446
+ ) => void,
4405
4447
  /**
4406
4448
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactAttribute` itself
4407
4449
  */
@@ -4425,7 +4467,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
4425
4467
  /**
4426
4468
  * The function to be called, when the event occurs
4427
4469
  */
4428
- fnFunction: (p1: Event) => void,
4470
+ fnFunction: (
4471
+ p1: Event<$ExactAttributeSupplyAttributesEventParameters>
4472
+ ) => void,
4429
4473
  /**
4430
4474
  * Context object on which the given function had to be called
4431
4475
  */
@@ -4442,12 +4486,7 @@ declare module "sap/ui/ux3/ExactAttribute" {
4442
4486
  /**
4443
4487
  * Parameters to pass along with the event
4444
4488
  */
4445
- mParameters?: {
4446
- /**
4447
- * The ExactAttribute
4448
- */
4449
- attribute?: ExactAttribute;
4450
- }
4489
+ mParameters?: $ExactAttributeSupplyAttributesEventParameters
4451
4490
  ): this;
4452
4491
  /**
4453
4492
  * Gets current value of property {@link #getAdditionalData additionalData}.
@@ -4770,6 +4809,7 @@ declare module "sap/ui/ux3/ExactAttribute" {
4770
4809
  iWidth?: int
4771
4810
  ): this;
4772
4811
  }
4812
+ export default ExactAttribute;
4773
4813
 
4774
4814
  export interface $ExactAttributeSettings extends $ElementSettings {
4775
4815
  /**
@@ -4842,7 +4882,16 @@ declare module "sap/ui/ux3/ExactAttribute" {
4842
4882
  * the corresponding ExactAttribute is selected, it was already selected when a handler is attached or function
4843
4883
  * getAttributes() is called.
4844
4884
  */
4845
- supplyAttributes?: (oEvent: Event) => void;
4885
+ supplyAttributes?: (
4886
+ oEvent: Event<$ExactAttributeSupplyAttributesEventParameters>
4887
+ ) => void;
4888
+ }
4889
+
4890
+ export interface $ExactAttributeSupplyAttributesEventParameters {
4891
+ /**
4892
+ * The ExactAttribute
4893
+ */
4894
+ attribute?: ExactAttribute;
4846
4895
  }
4847
4896
  }
4848
4897
 
@@ -4875,7 +4924,7 @@ declare module "sap/ui/ux3/ExactBrowser" {
4875
4924
  * and thereby trigger the display of further information, depending on the chosen entry/entries (multiple
4876
4925
  * selection supported).
4877
4926
  */
4878
- export default class ExactBrowser extends Control {
4927
+ class ExactBrowser extends Control {
4879
4928
  /**
4880
4929
  * Constructor for a new ExactBrowser.
4881
4930
  *
@@ -4967,7 +5016,9 @@ declare module "sap/ui/ux3/ExactBrowser" {
4967
5016
  /**
4968
5017
  * The function to be called when the event occurs
4969
5018
  */
4970
- fnFunction: (p1: Event) => void,
5019
+ fnFunction: (
5020
+ p1: Event<$ExactBrowserAttributeSelectedEventParameters>
5021
+ ) => void,
4971
5022
  /**
4972
5023
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactBrowser` itself
4973
5024
  */
@@ -4988,7 +5039,9 @@ declare module "sap/ui/ux3/ExactBrowser" {
4988
5039
  /**
4989
5040
  * The function to be called when the event occurs
4990
5041
  */
4991
- fnFunction: (p1: Event) => void,
5042
+ fnFunction: (
5043
+ p1: Event<$ExactBrowserAttributeSelectedEventParameters>
5044
+ ) => void,
4992
5045
  /**
4993
5046
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactBrowser` itself
4994
5047
  */
@@ -5063,7 +5116,9 @@ declare module "sap/ui/ux3/ExactBrowser" {
5063
5116
  /**
5064
5117
  * The function to be called, when the event occurs
5065
5118
  */
5066
- fnFunction: (p1: Event) => void,
5119
+ fnFunction: (
5120
+ p1: Event<$ExactBrowserAttributeSelectedEventParameters>
5121
+ ) => void,
5067
5122
  /**
5068
5123
  * Context object on which the given function had to be called
5069
5124
  */
@@ -5097,16 +5152,7 @@ declare module "sap/ui/ux3/ExactBrowser" {
5097
5152
  /**
5098
5153
  * Parameters to pass along with the event
5099
5154
  */
5100
- mParameters?: {
5101
- /**
5102
- * The attribute which was selected or unselected recently
5103
- */
5104
- attribute?: ExactAttribute;
5105
- /**
5106
- * Array of all selected ExactAttributes
5107
- */
5108
- allAttributes?: object;
5109
- }
5155
+ mParameters?: $ExactBrowserAttributeSelectedEventParameters
5110
5156
  ): this;
5111
5157
  /**
5112
5158
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -5496,6 +5542,7 @@ declare module "sap/ui/ux3/ExactBrowser" {
5496
5542
  iTopListWidth?: int
5497
5543
  ): this;
5498
5544
  }
5545
+ export default ExactBrowser;
5499
5546
 
5500
5547
  export interface $ExactBrowserSettings extends $ControlSettings {
5501
5548
  /**
@@ -5584,13 +5631,29 @@ declare module "sap/ui/ux3/ExactBrowser" {
5584
5631
  /**
5585
5632
  * Event is fired when an attribute is selected or unselected.
5586
5633
  */
5587
- attributeSelected?: (oEvent: Event) => void;
5634
+ attributeSelected?: (
5635
+ oEvent: Event<$ExactBrowserAttributeSelectedEventParameters>
5636
+ ) => void;
5588
5637
 
5589
5638
  /**
5590
5639
  * Event is fired when an attribute is selected or unselected.
5591
5640
  */
5592
5641
  save?: (oEvent: Event) => void;
5593
5642
  }
5643
+
5644
+ export interface $ExactBrowserAttributeSelectedEventParameters {
5645
+ /**
5646
+ * The attribute which was selected or unselected recently
5647
+ */
5648
+ attribute?: ExactAttribute;
5649
+
5650
+ /**
5651
+ * Array of all selected ExactAttributes
5652
+ */
5653
+ allAttributes?: object;
5654
+ }
5655
+
5656
+ export interface $ExactBrowserSaveEventParameters {}
5594
5657
  }
5595
5658
 
5596
5659
  declare module "sap/ui/ux3/ExactList" {
@@ -5598,12 +5661,12 @@ declare module "sap/ui/ux3/ExactList" {
5598
5661
 
5599
5662
  import Event from "sap/ui/base/Event";
5600
5663
 
5601
- import ExactAttribute from "sap/ui/ux3/ExactAttribute";
5602
-
5603
5664
  import { ID } from "sap/ui/core/library";
5604
5665
 
5605
5666
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5606
5667
 
5668
+ import ExactAttribute from "sap/ui/ux3/ExactAttribute";
5669
+
5607
5670
  import {
5608
5671
  PropertyBindingInfo,
5609
5672
  AggregationBindingInfo,
@@ -5615,7 +5678,7 @@ declare module "sap/ui/ux3/ExactList" {
5615
5678
  * Internal sub-control of the ExactBrowser. The control is not intended to be used stand alone. For this
5616
5679
  * purpose, the ExactBrowser control can be used.
5617
5680
  */
5618
- export default class ExactList extends Control {
5681
+ class ExactList extends Control {
5619
5682
  /**
5620
5683
  * Constructor for a new ExactList.
5621
5684
  *
@@ -5707,7 +5770,9 @@ declare module "sap/ui/ux3/ExactList" {
5707
5770
  /**
5708
5771
  * The function to be called when the event occurs
5709
5772
  */
5710
- fnFunction: (p1: Event) => void,
5773
+ fnFunction: (
5774
+ p1: Event<$ExactListAttributeSelectedEventParameters>
5775
+ ) => void,
5711
5776
  /**
5712
5777
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactList` itself
5713
5778
  */
@@ -5728,7 +5793,9 @@ declare module "sap/ui/ux3/ExactList" {
5728
5793
  /**
5729
5794
  * The function to be called when the event occurs
5730
5795
  */
5731
- fnFunction: (p1: Event) => void,
5796
+ fnFunction: (
5797
+ p1: Event<$ExactListAttributeSelectedEventParameters>
5798
+ ) => void,
5732
5799
  /**
5733
5800
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ExactList` itself
5734
5801
  */
@@ -5752,7 +5819,9 @@ declare module "sap/ui/ux3/ExactList" {
5752
5819
  /**
5753
5820
  * The function to be called, when the event occurs
5754
5821
  */
5755
- fnFunction: (p1: Event) => void,
5822
+ fnFunction: (
5823
+ p1: Event<$ExactListAttributeSelectedEventParameters>
5824
+ ) => void,
5756
5825
  /**
5757
5826
  * Context object on which the given function had to be called
5758
5827
  */
@@ -5769,16 +5838,7 @@ declare module "sap/ui/ux3/ExactList" {
5769
5838
  /**
5770
5839
  * Parameters to pass along with the event
5771
5840
  */
5772
- mParameters?: {
5773
- /**
5774
- * The attribute which was selected/unselected recently
5775
- */
5776
- attribute?: ExactAttribute;
5777
- /**
5778
- * Array of all ExactAttributes
5779
- */
5780
- allAttributes?: object;
5781
- }
5841
+ mParameters?: $ExactListAttributeSelectedEventParameters
5782
5842
  ): this;
5783
5843
  /**
5784
5844
  * ID of the element which is the current target of the association {@link #getData data}, or `null`.
@@ -5929,6 +5989,7 @@ declare module "sap/ui/ux3/ExactList" {
5929
5989
  sTopTitle?: string
5930
5990
  ): this;
5931
5991
  }
5992
+ export default ExactList;
5932
5993
 
5933
5994
  export interface $ExactListSettings extends $ControlSettings {
5934
5995
  /**
@@ -5960,7 +6021,21 @@ declare module "sap/ui/ux3/ExactList" {
5960
6021
  /**
5961
6022
  * Event which is fired when an attribute is selected/unselected
5962
6023
  */
5963
- attributeSelected?: (oEvent: Event) => void;
6024
+ attributeSelected?: (
6025
+ oEvent: Event<$ExactListAttributeSelectedEventParameters>
6026
+ ) => void;
6027
+ }
6028
+
6029
+ export interface $ExactListAttributeSelectedEventParameters {
6030
+ /**
6031
+ * The attribute which was selected/unselected recently
6032
+ */
6033
+ attribute?: ExactAttribute;
6034
+
6035
+ /**
6036
+ * Array of all ExactAttributes
6037
+ */
6038
+ allAttributes?: object;
5964
6039
  }
5965
6040
  }
5966
6041
 
@@ -5983,7 +6058,7 @@ declare module "sap/ui/ux3/FacetFilter" {
5983
6058
  *
5984
6059
  * FacetFilter Control.
5985
6060
  */
5986
- export default class FacetFilter extends Control {
6061
+ class FacetFilter extends Control {
5987
6062
  /**
5988
6063
  * Constructor for a new FacetFilter.
5989
6064
  *
@@ -6149,6 +6224,7 @@ declare module "sap/ui/ux3/FacetFilter" {
6149
6224
  | keyof typeof VisibleItemCountMode
6150
6225
  ): this;
6151
6226
  }
6227
+ export default FacetFilter;
6152
6228
 
6153
6229
  export interface $FacetFilterSettings extends $ControlSettings {
6154
6230
  /**
@@ -6190,7 +6266,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6190
6266
  *
6191
6267
  * List to be used with the FacetFilter control. The control is not intended to be used stand alone.
6192
6268
  */
6193
- export default class FacetFilterList extends Control {
6269
+ class FacetFilterList extends Control {
6194
6270
  /**
6195
6271
  * Constructor for a new FacetFilterList.
6196
6272
  *
@@ -6281,7 +6357,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6281
6357
  /**
6282
6358
  * The function to be called when the event occurs
6283
6359
  */
6284
- fnFunction: (p1: Event) => void,
6360
+ fnFunction: (p1: Event<$FacetFilterListSelectEventParameters>) => void,
6285
6361
  /**
6286
6362
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FacetFilterList` itself
6287
6363
  */
@@ -6301,7 +6377,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6301
6377
  /**
6302
6378
  * The function to be called when the event occurs
6303
6379
  */
6304
- fnFunction: (p1: Event) => void,
6380
+ fnFunction: (p1: Event<$FacetFilterListSelectEventParameters>) => void,
6305
6381
  /**
6306
6382
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FacetFilterList` itself
6307
6383
  */
@@ -6324,7 +6400,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6324
6400
  /**
6325
6401
  * The function to be called, when the event occurs
6326
6402
  */
6327
- fnFunction: (p1: Event) => void,
6403
+ fnFunction: (p1: Event<$FacetFilterListSelectEventParameters>) => void,
6328
6404
  /**
6329
6405
  * Context object on which the given function had to be called
6330
6406
  */
@@ -6341,25 +6417,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6341
6417
  /**
6342
6418
  * Parameters to pass along with the event
6343
6419
  */
6344
- mParameters?: {
6345
- /**
6346
- * Id of the FacetFilterList taht fires the event.
6347
- */
6348
- id?: string;
6349
- /**
6350
- * Array of selected Indices.
6351
- */
6352
- selectedIndices?: int[];
6353
- /**
6354
- * Array of selected Items.
6355
- */
6356
- selectedItems?: ListItem[];
6357
- /**
6358
- * If it is true, then Item All is selected. That means all items in the list are selected - no filter is
6359
- * set.
6360
- */
6361
- all?: boolean;
6362
- }
6420
+ mParameters?: $FacetFilterListSelectEventParameters
6363
6421
  ): this;
6364
6422
  /**
6365
6423
  * @SINCE 1.9.0
@@ -6549,6 +6607,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6549
6607
  sTitle?: string
6550
6608
  ): this;
6551
6609
  }
6610
+ export default FacetFilterList;
6552
6611
 
6553
6612
  export interface $FacetFilterListSettings extends $ControlSettings {
6554
6613
  /**
@@ -6587,7 +6646,30 @@ declare module "sap/ui/ux3/FacetFilterList" {
6587
6646
  /**
6588
6647
  * On Select event.
6589
6648
  */
6590
- select?: (oEvent: Event) => void;
6649
+ select?: (oEvent: Event<$FacetFilterListSelectEventParameters>) => void;
6650
+ }
6651
+
6652
+ export interface $FacetFilterListSelectEventParameters {
6653
+ /**
6654
+ * Id of the FacetFilterList taht fires the event.
6655
+ */
6656
+ id?: string;
6657
+
6658
+ /**
6659
+ * Array of selected Indices.
6660
+ */
6661
+ selectedIndices?: int[];
6662
+
6663
+ /**
6664
+ * Array of selected Items.
6665
+ */
6666
+ selectedItems?: ListItem[];
6667
+
6668
+ /**
6669
+ * If it is true, then Item All is selected. That means all items in the list are selected - no filter is
6670
+ * set.
6671
+ */
6672
+ all?: boolean;
6591
6673
  }
6592
6674
  }
6593
6675
 
@@ -6607,12 +6689,12 @@ declare module "sap/ui/ux3/Feed" {
6607
6689
  PropertyBindingInfo,
6608
6690
  } from "sap/ui/base/ManagedObject";
6609
6691
 
6610
- import MenuItemBase from "sap/ui/unified/MenuItemBase";
6611
-
6612
6692
  import { URI } from "sap/ui/core/library";
6613
6693
 
6614
6694
  import ElementMetadata from "sap/ui/core/ElementMetadata";
6615
6695
 
6696
+ import MenuItemBase from "sap/ui/unified/MenuItemBase";
6697
+
6616
6698
  /**
6617
6699
  * @deprecated (since 1.38) - Instead, use **any** `sap.ui.layout` container control.
6618
6700
  * @EXPERIMENTAL (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
@@ -6621,7 +6703,7 @@ declare module "sap/ui/ux3/Feed" {
6621
6703
  *
6622
6704
  * A container control representing a full feed page, including feeder and updates.
6623
6705
  */
6624
- export default class Feed extends Control {
6706
+ class Feed extends Control {
6625
6707
  /**
6626
6708
  * Constructor for a new Feed.
6627
6709
  *
@@ -6734,7 +6816,7 @@ declare module "sap/ui/ux3/Feed" {
6734
6816
  /**
6735
6817
  * The function to be called when the event occurs
6736
6818
  */
6737
- fnFunction: (p1: Event) => void,
6819
+ fnFunction: (p1: Event<$FeedChunkAddedEventParameters>) => void,
6738
6820
  /**
6739
6821
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6740
6822
  */
@@ -6754,7 +6836,7 @@ declare module "sap/ui/ux3/Feed" {
6754
6836
  /**
6755
6837
  * The function to be called when the event occurs
6756
6838
  */
6757
- fnFunction: (p1: Event) => void,
6839
+ fnFunction: (p1: Event<$FeedChunkAddedEventParameters>) => void,
6758
6840
  /**
6759
6841
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6760
6842
  */
@@ -6779,7 +6861,7 @@ declare module "sap/ui/ux3/Feed" {
6779
6861
  /**
6780
6862
  * The function to be called when the event occurs
6781
6863
  */
6782
- fnFunction: (p1: Event) => void,
6864
+ fnFunction: (p1: Event<$FeedFilterChangeEventParameters>) => void,
6783
6865
  /**
6784
6866
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6785
6867
  */
@@ -6799,7 +6881,7 @@ declare module "sap/ui/ux3/Feed" {
6799
6881
  /**
6800
6882
  * The function to be called when the event occurs
6801
6883
  */
6802
- fnFunction: (p1: Event) => void,
6884
+ fnFunction: (p1: Event<$FeedFilterChangeEventParameters>) => void,
6803
6885
  /**
6804
6886
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6805
6887
  */
@@ -6824,7 +6906,7 @@ declare module "sap/ui/ux3/Feed" {
6824
6906
  /**
6825
6907
  * The function to be called when the event occurs
6826
6908
  */
6827
- fnFunction: (p1: Event) => void,
6909
+ fnFunction: (p1: Event<$FeedSearchEventParameters>) => void,
6828
6910
  /**
6829
6911
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6830
6912
  */
@@ -6844,7 +6926,7 @@ declare module "sap/ui/ux3/Feed" {
6844
6926
  /**
6845
6927
  * The function to be called when the event occurs
6846
6928
  */
6847
- fnFunction: (p1: Event) => void,
6929
+ fnFunction: (p1: Event<$FeedSearchEventParameters>) => void,
6848
6930
  /**
6849
6931
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6850
6932
  */
@@ -6869,7 +6951,7 @@ declare module "sap/ui/ux3/Feed" {
6869
6951
  /**
6870
6952
  * The function to be called when the event occurs
6871
6953
  */
6872
- fnFunction: (p1: Event) => void,
6954
+ fnFunction: (p1: Event<$FeedToggleLiveEventParameters>) => void,
6873
6955
  /**
6874
6956
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6875
6957
  */
@@ -6889,7 +6971,7 @@ declare module "sap/ui/ux3/Feed" {
6889
6971
  /**
6890
6972
  * The function to be called when the event occurs
6891
6973
  */
6892
- fnFunction: (p1: Event) => void,
6974
+ fnFunction: (p1: Event<$FeedToggleLiveEventParameters>) => void,
6893
6975
  /**
6894
6976
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6895
6977
  */
@@ -6915,7 +6997,7 @@ declare module "sap/ui/ux3/Feed" {
6915
6997
  /**
6916
6998
  * The function to be called when the event occurs
6917
6999
  */
6918
- fnFunction: (p1: Event) => void,
7000
+ fnFunction: (p1: Event<$FeedToolsItemSelectedEventParameters>) => void,
6919
7001
  /**
6920
7002
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6921
7003
  */
@@ -6936,7 +7018,7 @@ declare module "sap/ui/ux3/Feed" {
6936
7018
  /**
6937
7019
  * The function to be called when the event occurs
6938
7020
  */
6939
- fnFunction: (p1: Event) => void,
7021
+ fnFunction: (p1: Event<$FeedToolsItemSelectedEventParameters>) => void,
6940
7022
  /**
6941
7023
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feed` itself
6942
7024
  */
@@ -7013,7 +7095,7 @@ declare module "sap/ui/ux3/Feed" {
7013
7095
  /**
7014
7096
  * The function to be called, when the event occurs
7015
7097
  */
7016
- fnFunction: (p1: Event) => void,
7098
+ fnFunction: (p1: Event<$FeedChunkAddedEventParameters>) => void,
7017
7099
  /**
7018
7100
  * Context object on which the given function had to be called
7019
7101
  */
@@ -7030,7 +7112,7 @@ declare module "sap/ui/ux3/Feed" {
7030
7112
  /**
7031
7113
  * The function to be called, when the event occurs
7032
7114
  */
7033
- fnFunction: (p1: Event) => void,
7115
+ fnFunction: (p1: Event<$FeedFilterChangeEventParameters>) => void,
7034
7116
  /**
7035
7117
  * Context object on which the given function had to be called
7036
7118
  */
@@ -7047,7 +7129,7 @@ declare module "sap/ui/ux3/Feed" {
7047
7129
  /**
7048
7130
  * The function to be called, when the event occurs
7049
7131
  */
7050
- fnFunction: (p1: Event) => void,
7132
+ fnFunction: (p1: Event<$FeedSearchEventParameters>) => void,
7051
7133
  /**
7052
7134
  * Context object on which the given function had to be called
7053
7135
  */
@@ -7064,7 +7146,7 @@ declare module "sap/ui/ux3/Feed" {
7064
7146
  /**
7065
7147
  * The function to be called, when the event occurs
7066
7148
  */
7067
- fnFunction: (p1: Event) => void,
7149
+ fnFunction: (p1: Event<$FeedToggleLiveEventParameters>) => void,
7068
7150
  /**
7069
7151
  * Context object on which the given function had to be called
7070
7152
  */
@@ -7082,7 +7164,7 @@ declare module "sap/ui/ux3/Feed" {
7082
7164
  /**
7083
7165
  * The function to be called, when the event occurs
7084
7166
  */
7085
- fnFunction: (p1: Event) => void,
7167
+ fnFunction: (p1: Event<$FeedToolsItemSelectedEventParameters>) => void,
7086
7168
  /**
7087
7169
  * Context object on which the given function had to be called
7088
7170
  */
@@ -7099,12 +7181,7 @@ declare module "sap/ui/ux3/Feed" {
7099
7181
  /**
7100
7182
  * Parameters to pass along with the event
7101
7183
  */
7102
- mParameters?: {
7103
- /**
7104
- * New chunk
7105
- */
7106
- chunk?: FeedChunk;
7107
- }
7184
+ mParameters?: $FeedChunkAddedEventParameters
7108
7185
  ): this;
7109
7186
  /**
7110
7187
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7117,12 +7194,7 @@ declare module "sap/ui/ux3/Feed" {
7117
7194
  /**
7118
7195
  * Parameters to pass along with the event
7119
7196
  */
7120
- mParameters?: {
7121
- /**
7122
- * The new/changed value of the filter
7123
- */
7124
- newValue?: string;
7125
- }
7197
+ mParameters?: $FeedFilterChangeEventParameters
7126
7198
  ): this;
7127
7199
  /**
7128
7200
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7135,12 +7207,7 @@ declare module "sap/ui/ux3/Feed" {
7135
7207
  /**
7136
7208
  * Parameters to pass along with the event
7137
7209
  */
7138
- mParameters?: {
7139
- /**
7140
- * The search query
7141
- */
7142
- query?: string;
7143
- }
7210
+ mParameters?: $FeedSearchEventParameters
7144
7211
  ): this;
7145
7212
  /**
7146
7213
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7153,12 +7220,7 @@ declare module "sap/ui/ux3/Feed" {
7153
7220
  /**
7154
7221
  * Parameters to pass along with the event
7155
7222
  */
7156
- mParameters?: {
7157
- /**
7158
- * Current live indicator
7159
- */
7160
- live?: boolean;
7161
- }
7223
+ mParameters?: $FeedToggleLiveEventParameters
7162
7224
  ): this;
7163
7225
  /**
7164
7226
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7171,16 +7233,7 @@ declare module "sap/ui/ux3/Feed" {
7171
7233
  /**
7172
7234
  * Parameters to pass along with the event
7173
7235
  */
7174
- mParameters?: {
7175
- /**
7176
- * The Id of the selected item
7177
- */
7178
- itemId?: string;
7179
- /**
7180
- * The selected item
7181
- */
7182
- item?: MenuItemBase;
7183
- }
7236
+ mParameters?: $FeedToolsItemSelectedEventParameters
7184
7237
  ): this;
7185
7238
  /**
7186
7239
  * Gets content of aggregation {@link #getChunks chunks}.
@@ -7459,6 +7512,7 @@ declare module "sap/ui/ux3/Feed" {
7459
7512
  */
7460
7513
  unbindToolsMenuItems(): this;
7461
7514
  }
7515
+ export default Feed;
7462
7516
 
7463
7517
  export interface $FeedSettings extends $ControlSettings {
7464
7518
  /**
@@ -7507,27 +7561,69 @@ declare module "sap/ui/ux3/Feed" {
7507
7561
  /**
7508
7562
  * Event is fired when the filter is changed
7509
7563
  */
7510
- filterChange?: (oEvent: Event) => void;
7564
+ filterChange?: (oEvent: Event<$FeedFilterChangeEventParameters>) => void;
7511
7565
 
7512
7566
  /**
7513
7567
  * Event is fired when the search function on SearchField is triggered
7514
7568
  */
7515
- search?: (oEvent: Event) => void;
7569
+ search?: (oEvent: Event<$FeedSearchEventParameters>) => void;
7516
7570
 
7517
7571
  /**
7518
7572
  * Event is fired when a new chunk is added
7519
7573
  */
7520
- chunkAdded?: (oEvent: Event) => void;
7574
+ chunkAdded?: (oEvent: Event<$FeedChunkAddedEventParameters>) => void;
7521
7575
 
7522
7576
  /**
7523
7577
  * Event is fired when an item from the tools MenuButton was selected
7524
7578
  */
7525
- toolsItemSelected?: (oEvent: Event) => void;
7579
+ toolsItemSelected?: (
7580
+ oEvent: Event<$FeedToolsItemSelectedEventParameters>
7581
+ ) => void;
7526
7582
 
7527
7583
  /**
7528
7584
  * Event is fired when the live mode has changed
7529
7585
  */
7530
- toggleLive?: (oEvent: Event) => void;
7586
+ toggleLive?: (oEvent: Event<$FeedToggleLiveEventParameters>) => void;
7587
+ }
7588
+
7589
+ export interface $FeedChunkAddedEventParameters {
7590
+ /**
7591
+ * New chunk
7592
+ */
7593
+ chunk?: FeedChunk;
7594
+ }
7595
+
7596
+ export interface $FeedFilterChangeEventParameters {
7597
+ /**
7598
+ * The new/changed value of the filter
7599
+ */
7600
+ newValue?: string;
7601
+ }
7602
+
7603
+ export interface $FeedSearchEventParameters {
7604
+ /**
7605
+ * The search query
7606
+ */
7607
+ query?: string;
7608
+ }
7609
+
7610
+ export interface $FeedToggleLiveEventParameters {
7611
+ /**
7612
+ * Current live indicator
7613
+ */
7614
+ live?: boolean;
7615
+ }
7616
+
7617
+ export interface $FeedToolsItemSelectedEventParameters {
7618
+ /**
7619
+ * The Id of the selected item
7620
+ */
7621
+ itemId?: string;
7622
+
7623
+ /**
7624
+ * The selected item
7625
+ */
7626
+ item?: MenuItemBase;
7531
7627
  }
7532
7628
  }
7533
7629
 
@@ -7543,12 +7639,12 @@ declare module "sap/ui/ux3/FeedChunk" {
7543
7639
  PropertyBindingInfo,
7544
7640
  } from "sap/ui/base/ManagedObject";
7545
7641
 
7546
- import MenuItemBase from "sap/ui/unified/MenuItemBase";
7547
-
7548
7642
  import { URI } from "sap/ui/core/library";
7549
7643
 
7550
7644
  import ElementMetadata from "sap/ui/core/ElementMetadata";
7551
7645
 
7646
+ import MenuItemBase from "sap/ui/unified/MenuItemBase";
7647
+
7552
7648
  /**
7553
7649
  * @deprecated (since 1.38) - Instead, use the `sap.m.FeedListItem` control.
7554
7650
  * @EXPERIMENTAL (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
@@ -7559,7 +7655,7 @@ declare module "sap/ui/ux3/FeedChunk" {
7559
7655
  * a set of properties for text, sender information, time stamp, comments, and functions such as flagging
7560
7656
  * the entry to be favorite, shared, or flagged.
7561
7657
  */
7562
- export default class FeedChunk extends Control {
7658
+ class FeedChunk extends Control {
7563
7659
  /**
7564
7660
  * Constructor for a new FeedChunk.
7565
7661
  *
@@ -7662,7 +7758,9 @@ declare module "sap/ui/ux3/FeedChunk" {
7662
7758
  /**
7663
7759
  * The function to be called when the event occurs
7664
7760
  */
7665
- fnFunction: (p1: Event) => void,
7761
+ fnFunction: (
7762
+ p1: Event<$FeedChunkActionItemSelectedEventParameters>
7763
+ ) => void,
7666
7764
  /**
7667
7765
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7668
7766
  */
@@ -7683,7 +7781,9 @@ declare module "sap/ui/ux3/FeedChunk" {
7683
7781
  /**
7684
7782
  * The function to be called when the event occurs
7685
7783
  */
7686
- fnFunction: (p1: Event) => void,
7784
+ fnFunction: (
7785
+ p1: Event<$FeedChunkActionItemSelectedEventParameters>
7786
+ ) => void,
7687
7787
  /**
7688
7788
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7689
7789
  */
@@ -7708,7 +7808,7 @@ declare module "sap/ui/ux3/FeedChunk" {
7708
7808
  /**
7709
7809
  * The function to be called when the event occurs
7710
7810
  */
7711
- fnFunction: (p1: Event) => void,
7811
+ fnFunction: (p1: Event<$FeedChunkCommentAddedEventParameters>) => void,
7712
7812
  /**
7713
7813
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7714
7814
  */
@@ -7728,7 +7828,7 @@ declare module "sap/ui/ux3/FeedChunk" {
7728
7828
  /**
7729
7829
  * The function to be called when the event occurs
7730
7830
  */
7731
- fnFunction: (p1: Event) => void,
7831
+ fnFunction: (p1: Event<$FeedChunkCommentAddedEventParameters>) => void,
7732
7832
  /**
7733
7833
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7734
7834
  */
@@ -7844,7 +7944,9 @@ declare module "sap/ui/ux3/FeedChunk" {
7844
7944
  /**
7845
7945
  * The function to be called when the event occurs
7846
7946
  */
7847
- fnFunction: (p1: Event) => void,
7947
+ fnFunction: (
7948
+ p1: Event<$FeedChunkReferenceClickedEventParameters>
7949
+ ) => void,
7848
7950
  /**
7849
7951
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7850
7952
  */
@@ -7865,7 +7967,9 @@ declare module "sap/ui/ux3/FeedChunk" {
7865
7967
  /**
7866
7968
  * The function to be called when the event occurs
7867
7969
  */
7868
- fnFunction: (p1: Event) => void,
7970
+ fnFunction: (
7971
+ p1: Event<$FeedChunkReferenceClickedEventParameters>
7972
+ ) => void,
7869
7973
  /**
7870
7974
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7871
7975
  */
@@ -7937,7 +8041,7 @@ declare module "sap/ui/ux3/FeedChunk" {
7937
8041
  /**
7938
8042
  * The function to be called when the event occurs
7939
8043
  */
7940
- fnFunction: (p1: Event) => void,
8044
+ fnFunction: (p1: Event<$FeedChunkToggleFavoriteEventParameters>) => void,
7941
8045
  /**
7942
8046
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7943
8047
  */
@@ -7959,7 +8063,7 @@ declare module "sap/ui/ux3/FeedChunk" {
7959
8063
  /**
7960
8064
  * The function to be called when the event occurs
7961
8065
  */
7962
- fnFunction: (p1: Event) => void,
8066
+ fnFunction: (p1: Event<$FeedChunkToggleFavoriteEventParameters>) => void,
7963
8067
  /**
7964
8068
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7965
8069
  */
@@ -7984,7 +8088,7 @@ declare module "sap/ui/ux3/FeedChunk" {
7984
8088
  /**
7985
8089
  * The function to be called when the event occurs
7986
8090
  */
7987
- fnFunction: (p1: Event) => void,
8091
+ fnFunction: (p1: Event<$FeedChunkToggleFlaggedEventParameters>) => void,
7988
8092
  /**
7989
8093
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
7990
8094
  */
@@ -8004,7 +8108,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8004
8108
  /**
8005
8109
  * The function to be called when the event occurs
8006
8110
  */
8007
- fnFunction: (p1: Event) => void,
8111
+ fnFunction: (p1: Event<$FeedChunkToggleFlaggedEventParameters>) => void,
8008
8112
  /**
8009
8113
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8010
8114
  */
@@ -8029,7 +8133,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8029
8133
  /**
8030
8134
  * The function to be called when the event occurs
8031
8135
  */
8032
- fnFunction: (p1: Event) => void,
8136
+ fnFunction: (p1: Event<$FeedChunkToggleSharedEventParameters>) => void,
8033
8137
  /**
8034
8138
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8035
8139
  */
@@ -8049,7 +8153,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8049
8153
  /**
8050
8154
  * The function to be called when the event occurs
8051
8155
  */
8052
- fnFunction: (p1: Event) => void,
8156
+ fnFunction: (p1: Event<$FeedChunkToggleSharedEventParameters>) => void,
8053
8157
  /**
8054
8158
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.FeedChunk` itself
8055
8159
  */
@@ -8107,7 +8211,9 @@ declare module "sap/ui/ux3/FeedChunk" {
8107
8211
  /**
8108
8212
  * The function to be called, when the event occurs
8109
8213
  */
8110
- fnFunction: (p1: Event) => void,
8214
+ fnFunction: (
8215
+ p1: Event<$FeedChunkActionItemSelectedEventParameters>
8216
+ ) => void,
8111
8217
  /**
8112
8218
  * Context object on which the given function had to be called
8113
8219
  */
@@ -8124,7 +8230,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8124
8230
  /**
8125
8231
  * The function to be called, when the event occurs
8126
8232
  */
8127
- fnFunction: (p1: Event) => void,
8233
+ fnFunction: (p1: Event<$FeedChunkCommentAddedEventParameters>) => void,
8128
8234
  /**
8129
8235
  * Context object on which the given function had to be called
8130
8236
  */
@@ -8176,7 +8282,9 @@ declare module "sap/ui/ux3/FeedChunk" {
8176
8282
  /**
8177
8283
  * The function to be called, when the event occurs
8178
8284
  */
8179
- fnFunction: (p1: Event) => void,
8285
+ fnFunction: (
8286
+ p1: Event<$FeedChunkReferenceClickedEventParameters>
8287
+ ) => void,
8180
8288
  /**
8181
8289
  * Context object on which the given function had to be called
8182
8290
  */
@@ -8212,7 +8320,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8212
8320
  /**
8213
8321
  * The function to be called, when the event occurs
8214
8322
  */
8215
- fnFunction: (p1: Event) => void,
8323
+ fnFunction: (p1: Event<$FeedChunkToggleFavoriteEventParameters>) => void,
8216
8324
  /**
8217
8325
  * Context object on which the given function had to be called
8218
8326
  */
@@ -8230,7 +8338,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8230
8338
  /**
8231
8339
  * The function to be called, when the event occurs
8232
8340
  */
8233
- fnFunction: (p1: Event) => void,
8341
+ fnFunction: (p1: Event<$FeedChunkToggleFlaggedEventParameters>) => void,
8234
8342
  /**
8235
8343
  * Context object on which the given function had to be called
8236
8344
  */
@@ -8247,7 +8355,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8247
8355
  /**
8248
8356
  * The function to be called, when the event occurs
8249
8357
  */
8250
- fnFunction: (p1: Event) => void,
8358
+ fnFunction: (p1: Event<$FeedChunkToggleSharedEventParameters>) => void,
8251
8359
  /**
8252
8360
  * Context object on which the given function had to be called
8253
8361
  */
@@ -8264,16 +8372,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8264
8372
  /**
8265
8373
  * Parameters to pass along with the event
8266
8374
  */
8267
- mParameters?: {
8268
- /**
8269
- * The Id of the selected item
8270
- */
8271
- itemId?: string;
8272
- /**
8273
- * The selected item
8274
- */
8275
- item?: MenuItemBase;
8276
- }
8375
+ mParameters?: $FeedChunkActionItemSelectedEventParameters
8277
8376
  ): this;
8278
8377
  /**
8279
8378
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -8286,12 +8385,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8286
8385
  /**
8287
8386
  * Parameters to pass along with the event
8288
8387
  */
8289
- mParameters?: {
8290
- /**
8291
- * New comment chunk
8292
- */
8293
- comment?: FeedChunk;
8294
- }
8388
+ mParameters?: $FeedChunkCommentAddedEventParameters
8295
8389
  ): this;
8296
8390
  /**
8297
8391
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -8330,12 +8424,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8330
8424
  /**
8331
8425
  * Parameters to pass along with the event
8332
8426
  */
8333
- mParameters?: {
8334
- /**
8335
- * Text of the @-reference
8336
- */
8337
- text?: string;
8338
- }
8427
+ mParameters?: $FeedChunkReferenceClickedEventParameters
8339
8428
  ): this;
8340
8429
  /**
8341
8430
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -8361,12 +8450,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8361
8450
  /**
8362
8451
  * Parameters to pass along with the event
8363
8452
  */
8364
- mParameters?: {
8365
- /**
8366
- * Current favorite state
8367
- */
8368
- favorite?: boolean;
8369
- }
8453
+ mParameters?: $FeedChunkToggleFavoriteEventParameters
8370
8454
  ): this;
8371
8455
  /**
8372
8456
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -8379,12 +8463,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8379
8463
  /**
8380
8464
  * Parameters to pass along with the event
8381
8465
  */
8382
- mParameters?: {
8383
- /**
8384
- * Current flagged state
8385
- */
8386
- flagged?: boolean;
8387
- }
8466
+ mParameters?: $FeedChunkToggleFlaggedEventParameters
8388
8467
  ): this;
8389
8468
  /**
8390
8469
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -8397,12 +8476,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8397
8476
  /**
8398
8477
  * Parameters to pass along with the event
8399
8478
  */
8400
- mParameters?: {
8401
- /**
8402
- * Current shared state
8403
- */
8404
- shareed?: boolean;
8405
- }
8479
+ mParameters?: $FeedChunkToggleSharedEventParameters
8406
8480
  ): this;
8407
8481
  /**
8408
8482
  * Gets content of aggregation {@link #getActionMenuItems actionMenuItems}.
@@ -8947,6 +9021,7 @@ declare module "sap/ui/ux3/FeedChunk" {
8947
9021
  */
8948
9022
  unbindComments(): this;
8949
9023
  }
9024
+ export default FeedChunk;
8950
9025
 
8951
9026
  export interface $FeedChunkSettings extends $ControlSettings {
8952
9027
  /**
@@ -9060,12 +9135,16 @@ declare module "sap/ui/ux3/FeedChunk" {
9060
9135
  /**
9061
9136
  * Event is raised when a comment is added to the entry. This event is not supported for comment chunks.
9062
9137
  */
9063
- commentAdded?: (oEvent: Event) => void;
9138
+ commentAdded?: (
9139
+ oEvent: Event<$FeedChunkCommentAddedEventParameters>
9140
+ ) => void;
9064
9141
 
9065
9142
  /**
9066
9143
  * Event is raised when the user clicks to flag the entry. This event is not supported for comment chunks.
9067
9144
  */
9068
- toggleFlagged?: (oEvent: Event) => void;
9145
+ toggleFlagged?: (
9146
+ oEvent: Event<$FeedChunkToggleFlaggedEventParameters>
9147
+ ) => void;
9069
9148
 
9070
9149
  /**
9071
9150
  * Event is fired when the thumbnail or the name of the sender is clicked.
@@ -9075,13 +9154,17 @@ declare module "sap/ui/ux3/FeedChunk" {
9075
9154
  /**
9076
9155
  * Click on a @-reference
9077
9156
  */
9078
- referenceClicked?: (oEvent: Event) => void;
9157
+ referenceClicked?: (
9158
+ oEvent: Event<$FeedChunkReferenceClickedEventParameters>
9159
+ ) => void;
9079
9160
 
9080
9161
  /**
9081
9162
  * Event is raised when the user clicks to set the entry as favorite. This event is not supported for comment
9082
9163
  * chunks.
9083
9164
  */
9084
- toggleFavorite?: (oEvent: Event) => void;
9165
+ toggleFavorite?: (
9166
+ oEvent: Event<$FeedChunkToggleFavoriteEventParameters>
9167
+ ) => void;
9085
9168
 
9086
9169
  /**
9087
9170
  * Event is fired when the inspect button was pressed
@@ -9091,12 +9174,69 @@ declare module "sap/ui/ux3/FeedChunk" {
9091
9174
  /**
9092
9175
  * Event is raised when the user clicks to share the entry. This event is not supported for comment chunks.
9093
9176
  */
9094
- toggleShared?: (oEvent: Event) => void;
9177
+ toggleShared?: (
9178
+ oEvent: Event<$FeedChunkToggleSharedEventParameters>
9179
+ ) => void;
9095
9180
 
9096
9181
  /**
9097
9182
  * Event is fired when an item from the action menu button was selected.
9098
9183
  */
9099
- actionItemSelected?: (oEvent: Event) => void;
9184
+ actionItemSelected?: (
9185
+ oEvent: Event<$FeedChunkActionItemSelectedEventParameters>
9186
+ ) => void;
9187
+ }
9188
+
9189
+ export interface $FeedChunkActionItemSelectedEventParameters {
9190
+ /**
9191
+ * The Id of the selected item
9192
+ */
9193
+ itemId?: string;
9194
+
9195
+ /**
9196
+ * The selected item
9197
+ */
9198
+ item?: MenuItemBase;
9199
+ }
9200
+
9201
+ export interface $FeedChunkCommentAddedEventParameters {
9202
+ /**
9203
+ * New comment chunk
9204
+ */
9205
+ comment?: FeedChunk;
9206
+ }
9207
+
9208
+ export interface $FeedChunkDeletedEventParameters {}
9209
+
9210
+ export interface $FeedChunkInspectEventParameters {}
9211
+
9212
+ export interface $FeedChunkReferenceClickedEventParameters {
9213
+ /**
9214
+ * Text of the @-reference
9215
+ */
9216
+ text?: string;
9217
+ }
9218
+
9219
+ export interface $FeedChunkSenderClickedEventParameters {}
9220
+
9221
+ export interface $FeedChunkToggleFavoriteEventParameters {
9222
+ /**
9223
+ * Current favorite state
9224
+ */
9225
+ favorite?: boolean;
9226
+ }
9227
+
9228
+ export interface $FeedChunkToggleFlaggedEventParameters {
9229
+ /**
9230
+ * Current flagged state
9231
+ */
9232
+ flagged?: boolean;
9233
+ }
9234
+
9235
+ export interface $FeedChunkToggleSharedEventParameters {
9236
+ /**
9237
+ * Current shared state
9238
+ */
9239
+ shareed?: boolean;
9100
9240
  }
9101
9241
  }
9102
9242
 
@@ -9123,7 +9263,7 @@ declare module "sap/ui/ux3/Feeder" {
9123
9263
  * The control can be used stand alone or in a multiple way, and generally would be integrated directly
9124
9264
  * into a UIArea.
9125
9265
  */
9126
- export default class Feeder extends Control {
9266
+ class Feeder extends Control {
9127
9267
  /**
9128
9268
  * Constructor for a new Feeder.
9129
9269
  *
@@ -9203,7 +9343,7 @@ declare module "sap/ui/ux3/Feeder" {
9203
9343
  /**
9204
9344
  * The function to be called when the event occurs
9205
9345
  */
9206
- fnFunction: (p1: Event) => void,
9346
+ fnFunction: (p1: Event<$FeederSubmitEventParameters>) => void,
9207
9347
  /**
9208
9348
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feeder` itself
9209
9349
  */
@@ -9223,7 +9363,7 @@ declare module "sap/ui/ux3/Feeder" {
9223
9363
  /**
9224
9364
  * The function to be called when the event occurs
9225
9365
  */
9226
- fnFunction: (p1: Event) => void,
9366
+ fnFunction: (p1: Event<$FeederSubmitEventParameters>) => void,
9227
9367
  /**
9228
9368
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Feeder` itself
9229
9369
  */
@@ -9240,7 +9380,7 @@ declare module "sap/ui/ux3/Feeder" {
9240
9380
  /**
9241
9381
  * The function to be called, when the event occurs
9242
9382
  */
9243
- fnFunction: (p1: Event) => void,
9383
+ fnFunction: (p1: Event<$FeederSubmitEventParameters>) => void,
9244
9384
  /**
9245
9385
  * Context object on which the given function had to be called
9246
9386
  */
@@ -9257,12 +9397,7 @@ declare module "sap/ui/ux3/Feeder" {
9257
9397
  /**
9258
9398
  * Parameters to pass along with the event
9259
9399
  */
9260
- mParameters?: {
9261
- /**
9262
- * The text that is submitted
9263
- */
9264
- text?: string;
9265
- }
9400
+ mParameters?: $FeederSubmitEventParameters
9266
9401
  ): this;
9267
9402
  /**
9268
9403
  * Gets current value of property {@link #getPlaceholderText placeholderText}.
@@ -9365,6 +9500,7 @@ declare module "sap/ui/ux3/Feeder" {
9365
9500
  sType?: FeederType | keyof typeof FeederType
9366
9501
  ): this;
9367
9502
  }
9503
+ export default Feeder;
9368
9504
 
9369
9505
  export interface $FeederSettings extends $ControlSettings {
9370
9506
  /**
@@ -9395,7 +9531,14 @@ declare module "sap/ui/ux3/Feeder" {
9395
9531
  /**
9396
9532
  * Event is fired when the entered text is submitted
9397
9533
  */
9398
- submit?: (oEvent: Event) => void;
9534
+ submit?: (oEvent: Event<$FeederSubmitEventParameters>) => void;
9535
+ }
9536
+
9537
+ export interface $FeederSubmitEventParameters {
9538
+ /**
9539
+ * The text that is submitted
9540
+ */
9541
+ text?: string;
9399
9542
  }
9400
9543
  }
9401
9544
 
@@ -9425,7 +9568,7 @@ declare module "sap/ui/ux3/NavigationBar" {
9425
9568
  * items are defined for the bar, this is made transparent to the user by showing symbols for scrolling
9426
9569
  * options (forwards and backwards) to see the next or previous items.
9427
9570
  */
9428
- export default class NavigationBar extends Control {
9571
+ class NavigationBar extends Control {
9429
9572
  /**
9430
9573
  * Constructor for a new NavigationBar.
9431
9574
  *
@@ -9527,7 +9670,7 @@ declare module "sap/ui/ux3/NavigationBar" {
9527
9670
  /**
9528
9671
  * The function to be called when the event occurs
9529
9672
  */
9530
- fnFunction: (p1: Event) => void,
9673
+ fnFunction: (p1: Event<$NavigationBarSelectEventParameters>) => void,
9531
9674
  /**
9532
9675
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NavigationBar` itself
9533
9676
  */
@@ -9547,7 +9690,7 @@ declare module "sap/ui/ux3/NavigationBar" {
9547
9690
  /**
9548
9691
  * The function to be called when the event occurs
9549
9692
  */
9550
- fnFunction: (p1: Event) => void,
9693
+ fnFunction: (p1: Event<$NavigationBarSelectEventParameters>) => void,
9551
9694
  /**
9552
9695
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NavigationBar` itself
9553
9696
  */
@@ -9570,7 +9713,7 @@ declare module "sap/ui/ux3/NavigationBar" {
9570
9713
  /**
9571
9714
  * The function to be called, when the event occurs
9572
9715
  */
9573
- fnFunction: (p1: Event) => void,
9716
+ fnFunction: (p1: Event<$NavigationBarSelectEventParameters>) => void,
9574
9717
  /**
9575
9718
  * Context object on which the given function had to be called
9576
9719
  */
@@ -9590,20 +9733,10 @@ declare module "sap/ui/ux3/NavigationBar" {
9590
9733
  /**
9591
9734
  * Parameters to pass along with the event
9592
9735
  */
9593
- mParameters?: {
9594
- /**
9595
- * The ID of the newly selected NavigationItem.
9596
- */
9597
- itemId?: string;
9598
- /**
9599
- * The newly selected NavigationItem.
9600
- */
9601
- item?: NavigationItem;
9602
- }
9736
+ mParameters?: $NavigationBarSelectEventParameters
9603
9737
  ): boolean;
9604
9738
  /**
9605
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAssociatedItems
9606
- * associatedItems}.
9739
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAssociatedItems associatedItems}.
9607
9740
  */
9608
9741
  getAssociatedItems(): ID[];
9609
9742
  /**
@@ -9769,6 +9902,7 @@ declare module "sap/ui/ux3/NavigationBar" {
9769
9902
  bToplevelVariant?: boolean
9770
9903
  ): this;
9771
9904
  }
9905
+ export default NavigationBar;
9772
9906
 
9773
9907
  export interface $NavigationBarSettings extends $ControlSettings {
9774
9908
  /**
@@ -9808,7 +9942,19 @@ declare module "sap/ui/ux3/NavigationBar" {
9808
9942
  /**
9809
9943
  * Event is fired when an item is selected by the user
9810
9944
  */
9811
- select?: (oEvent: Event) => void;
9945
+ select?: (oEvent: Event<$NavigationBarSelectEventParameters>) => void;
9946
+ }
9947
+
9948
+ export interface $NavigationBarSelectEventParameters {
9949
+ /**
9950
+ * The ID of the newly selected NavigationItem.
9951
+ */
9952
+ itemId?: string;
9953
+
9954
+ /**
9955
+ * The newly selected NavigationItem.
9956
+ */
9957
+ item?: NavigationItem;
9812
9958
  }
9813
9959
  }
9814
9960
 
@@ -9830,7 +9976,7 @@ declare module "sap/ui/ux3/NavigationItem" {
9830
9976
  *
9831
9977
  * Is the item to be used within the NavigationBar
9832
9978
  */
9833
- export default class NavigationItem extends Item {
9979
+ class NavigationItem extends Item {
9834
9980
  /**
9835
9981
  * Constructor for a new NavigationItem.
9836
9982
  *
@@ -10031,6 +10177,7 @@ declare module "sap/ui/ux3/NavigationItem" {
10031
10177
  bVisible?: boolean
10032
10178
  ): this;
10033
10179
  }
10180
+ export default NavigationItem;
10034
10181
 
10035
10182
  export interface $NavigationItemSettings extends $ItemSettings {
10036
10183
  /**
@@ -10070,10 +10217,10 @@ declare module "sap/ui/ux3/NotificationBar" {
10070
10217
 
10071
10218
  import Event from "sap/ui/base/Event";
10072
10219
 
10073
- import { NotificationBarStatus } from "sap/ui/ux3/library";
10074
-
10075
10220
  import ElementMetadata from "sap/ui/core/ElementMetadata";
10076
10221
 
10222
+ import { NotificationBarStatus } from "sap/ui/ux3/library";
10223
+
10077
10224
  import {
10078
10225
  PropertyBindingInfo,
10079
10226
  AggregationBindingInfo,
@@ -10089,7 +10236,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10089
10236
  * CSS may sometimes cause issues when nested deeply inside other controls. To have a proper behavior of
10090
10237
  * the NotificationBar use it as high in the control hierarchy as possible.
10091
10238
  */
10092
- export default class NotificationBar extends Control {
10239
+ class NotificationBar extends Control {
10093
10240
  /**
10094
10241
  * Constructor for a new NotificationBar.
10095
10242
  *
@@ -10181,7 +10328,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10181
10328
  /**
10182
10329
  * The function to be called when the event occurs
10183
10330
  */
10184
- fnFunction: (p1: Event) => void,
10331
+ fnFunction: (p1: Event<$NotificationBarDisplayEventParameters>) => void,
10185
10332
  /**
10186
10333
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
10187
10334
  */
@@ -10202,7 +10349,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10202
10349
  /**
10203
10350
  * The function to be called when the event occurs
10204
10351
  */
10205
- fnFunction: (p1: Event) => void,
10352
+ fnFunction: (p1: Event<$NotificationBarDisplayEventParameters>) => void,
10206
10353
  /**
10207
10354
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
10208
10355
  */
@@ -10231,7 +10378,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10231
10378
  /**
10232
10379
  * The function to be called when the event occurs
10233
10380
  */
10234
- fnFunction: (p1: Event) => void,
10381
+ fnFunction: (p1: Event<$NotificationBarResizeEventParameters>) => void,
10235
10382
  /**
10236
10383
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
10237
10384
  */
@@ -10255,7 +10402,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10255
10402
  /**
10256
10403
  * The function to be called when the event occurs
10257
10404
  */
10258
- fnFunction: (p1: Event) => void,
10405
+ fnFunction: (p1: Event<$NotificationBarResizeEventParameters>) => void,
10259
10406
  /**
10260
10407
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.NotificationBar` itself
10261
10408
  */
@@ -10284,7 +10431,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10284
10431
  /**
10285
10432
  * The function to be called, when the event occurs
10286
10433
  */
10287
- fnFunction: (p1: Event) => void,
10434
+ fnFunction: (p1: Event<$NotificationBarDisplayEventParameters>) => void,
10288
10435
  /**
10289
10436
  * Context object on which the given function had to be called
10290
10437
  */
@@ -10303,7 +10450,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10303
10450
  /**
10304
10451
  * The function to be called, when the event occurs
10305
10452
  */
10306
- fnFunction: (p1: Event) => void,
10453
+ fnFunction: (p1: Event<$NotificationBarResizeEventParameters>) => void,
10307
10454
  /**
10308
10455
  * Context object on which the given function had to be called
10309
10456
  */
@@ -10320,12 +10467,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10320
10467
  /**
10321
10468
  * Parameters to pass along with the event
10322
10469
  */
10323
- mParameters?: {
10324
- /**
10325
- * Indicates if the bar wants to be shown or hidden
10326
- */
10327
- show?: boolean;
10328
- }
10470
+ mParameters?: $NotificationBarDisplayEventParameters
10329
10471
  ): this;
10330
10472
  /**
10331
10473
  * @SINCE 1.12.2
@@ -10339,13 +10481,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10339
10481
  /**
10340
10482
  * Parameters to pass along with the event
10341
10483
  */
10342
- mParameters?: {
10343
- /**
10344
- * The corresponding status to which the bar was resized. The corresponding heights can be taken for the
10345
- * bar's CSS file.
10346
- */
10347
- status?: NotificationBarStatus | keyof typeof NotificationBarStatus;
10348
- }
10484
+ mParameters?: $NotificationBarResizeEventParameters
10349
10485
  ): this;
10350
10486
  /**
10351
10487
  * @SINCE 1.24.5
@@ -10503,6 +10639,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10503
10639
  | keyof typeof NotificationBarStatus
10504
10640
  ): this;
10505
10641
  }
10642
+ export default NotificationBar;
10506
10643
 
10507
10644
  export interface $NotificationBarSettings extends $ControlSettings {
10508
10645
  /**
@@ -10543,7 +10680,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10543
10680
  * Event is fired when the bar wants to be displayed depending on given flag. This allows the application
10544
10681
  * to decide what to do.
10545
10682
  */
10546
- display?: (oEvent: Event) => void;
10683
+ display?: (oEvent: Event<$NotificationBarDisplayEventParameters>) => void;
10547
10684
 
10548
10685
  /**
10549
10686
  * @SINCE 1.12.2
@@ -10552,7 +10689,22 @@ declare module "sap/ui/ux3/NotificationBar" {
10552
10689
  * The event itself can be used from SAPUI5-version 1.12.2 since there was a bug in the previous versions
10553
10690
  * firing this event.
10554
10691
  */
10555
- resize?: (oEvent: Event) => void;
10692
+ resize?: (oEvent: Event<$NotificationBarResizeEventParameters>) => void;
10693
+ }
10694
+
10695
+ export interface $NotificationBarDisplayEventParameters {
10696
+ /**
10697
+ * Indicates if the bar wants to be shown or hidden
10698
+ */
10699
+ show?: boolean;
10700
+ }
10701
+
10702
+ export interface $NotificationBarResizeEventParameters {
10703
+ /**
10704
+ * The corresponding status to which the bar was resized. The corresponding heights can be taken for the
10705
+ * bar's CSS file.
10706
+ */
10707
+ status?: NotificationBarStatus | keyof typeof NotificationBarStatus;
10556
10708
  }
10557
10709
  }
10558
10710
 
@@ -10577,7 +10729,7 @@ declare module "sap/ui/ux3/Notifier" {
10577
10729
  *
10578
10730
  * This element can be docked to a notification bar to show notification items
10579
10731
  */
10580
- export default class Notifier extends UI5Element {
10732
+ class Notifier extends UI5Element {
10581
10733
  /**
10582
10734
  * Constructor for a new Notifier.
10583
10735
  *
@@ -10669,7 +10821,7 @@ declare module "sap/ui/ux3/Notifier" {
10669
10821
  /**
10670
10822
  * The function to be called when the event occurs
10671
10823
  */
10672
- fnFunction: (p1: Event) => void,
10824
+ fnFunction: (p1: Event<$NotifierMessageSelectedEventParameters>) => void,
10673
10825
  /**
10674
10826
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Notifier` itself
10675
10827
  */
@@ -10690,7 +10842,7 @@ declare module "sap/ui/ux3/Notifier" {
10690
10842
  /**
10691
10843
  * The function to be called when the event occurs
10692
10844
  */
10693
- fnFunction: (p1: Event) => void,
10845
+ fnFunction: (p1: Event<$NotifierMessageSelectedEventParameters>) => void,
10694
10846
  /**
10695
10847
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Notifier` itself
10696
10848
  */
@@ -10714,7 +10866,7 @@ declare module "sap/ui/ux3/Notifier" {
10714
10866
  /**
10715
10867
  * The function to be called, when the event occurs
10716
10868
  */
10717
- fnFunction: (p1: Event) => void,
10869
+ fnFunction: (p1: Event<$NotifierMessageSelectedEventParameters>) => void,
10718
10870
  /**
10719
10871
  * Context object on which the given function had to be called
10720
10872
  */
@@ -10731,16 +10883,7 @@ declare module "sap/ui/ux3/Notifier" {
10731
10883
  /**
10732
10884
  * Parameters to pass along with the event
10733
10885
  */
10734
- mParameters?: {
10735
- /**
10736
- * The message that was selected
10737
- */
10738
- message?: Message;
10739
- /**
10740
- * The notifier that contains the selected message
10741
- */
10742
- notifier?: Notifier;
10743
- }
10886
+ mParameters?: $NotifierMessageSelectedEventParameters
10744
10887
  ): this;
10745
10888
  /**
10746
10889
  * Gets current value of property {@link #getIcon icon}.
@@ -10847,6 +10990,7 @@ declare module "sap/ui/ux3/Notifier" {
10847
10990
  sTitle?: string
10848
10991
  ): this;
10849
10992
  }
10993
+ export default Notifier;
10850
10994
 
10851
10995
  export interface $NotifierSettings extends $ElementSettings {
10852
10996
  /**
@@ -10867,7 +11011,21 @@ declare module "sap/ui/ux3/Notifier" {
10867
11011
  /**
10868
11012
  * Event is fired when a message of the notifiers was selected.
10869
11013
  */
10870
- messageSelected?: (oEvent: Event) => void;
11014
+ messageSelected?: (
11015
+ oEvent: Event<$NotifierMessageSelectedEventParameters>
11016
+ ) => void;
11017
+ }
11018
+
11019
+ export interface $NotifierMessageSelectedEventParameters {
11020
+ /**
11021
+ * The message that was selected
11022
+ */
11023
+ message?: Message;
11024
+
11025
+ /**
11026
+ * The notifier that contains the selected message
11027
+ */
11028
+ notifier?: Notifier;
10871
11029
  }
10872
11030
  }
10873
11031
 
@@ -10887,7 +11045,7 @@ declare module "sap/ui/ux3/Overlay" {
10887
11045
  *
10888
11046
  * Overlay Control
10889
11047
  */
10890
- export default class Overlay extends Control implements PopupInterface {
11048
+ class Overlay extends Control implements PopupInterface {
10891
11049
  __implements__sap_ui_core_PopupInterface: boolean;
10892
11050
  /**
10893
11051
  * Constructor for a new Overlay.
@@ -10968,7 +11126,7 @@ declare module "sap/ui/ux3/Overlay" {
10968
11126
  /**
10969
11127
  * The function to be called when the event occurs
10970
11128
  */
10971
- fnFunction: (p1: Event) => void,
11129
+ fnFunction: (p1: Event<$OverlayCloseEventParameters>) => void,
10972
11130
  /**
10973
11131
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
10974
11132
  */
@@ -10988,7 +11146,7 @@ declare module "sap/ui/ux3/Overlay" {
10988
11146
  /**
10989
11147
  * The function to be called when the event occurs
10990
11148
  */
10991
- fnFunction: (p1: Event) => void,
11149
+ fnFunction: (p1: Event<$OverlayCloseEventParameters>) => void,
10992
11150
  /**
10993
11151
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
10994
11152
  */
@@ -11013,7 +11171,7 @@ declare module "sap/ui/ux3/Overlay" {
11013
11171
  /**
11014
11172
  * The function to be called when the event occurs
11015
11173
  */
11016
- fnFunction: (p1: Event) => void,
11174
+ fnFunction: (p1: Event<$OverlayClosedEventParameters>) => void,
11017
11175
  /**
11018
11176
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11019
11177
  */
@@ -11033,7 +11191,7 @@ declare module "sap/ui/ux3/Overlay" {
11033
11191
  /**
11034
11192
  * The function to be called when the event occurs
11035
11193
  */
11036
- fnFunction: (p1: Event) => void,
11194
+ fnFunction: (p1: Event<$OverlayClosedEventParameters>) => void,
11037
11195
  /**
11038
11196
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11039
11197
  */
@@ -11058,7 +11216,7 @@ declare module "sap/ui/ux3/Overlay" {
11058
11216
  /**
11059
11217
  * The function to be called when the event occurs
11060
11218
  */
11061
- fnFunction: (p1: Event) => void,
11219
+ fnFunction: (p1: Event<$OverlayOpenEventParameters>) => void,
11062
11220
  /**
11063
11221
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11064
11222
  */
@@ -11078,7 +11236,7 @@ declare module "sap/ui/ux3/Overlay" {
11078
11236
  /**
11079
11237
  * The function to be called when the event occurs
11080
11238
  */
11081
- fnFunction: (p1: Event) => void,
11239
+ fnFunction: (p1: Event<$OverlayOpenEventParameters>) => void,
11082
11240
  /**
11083
11241
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11084
11242
  */
@@ -11103,7 +11261,7 @@ declare module "sap/ui/ux3/Overlay" {
11103
11261
  /**
11104
11262
  * The function to be called when the event occurs
11105
11263
  */
11106
- fnFunction: (p1: Event) => void,
11264
+ fnFunction: (p1: Event<$OverlayOpenNewEventParameters>) => void,
11107
11265
  /**
11108
11266
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11109
11267
  */
@@ -11123,7 +11281,7 @@ declare module "sap/ui/ux3/Overlay" {
11123
11281
  /**
11124
11282
  * The function to be called when the event occurs
11125
11283
  */
11126
- fnFunction: (p1: Event) => void,
11284
+ fnFunction: (p1: Event<$OverlayOpenNewEventParameters>) => void,
11127
11285
  /**
11128
11286
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Overlay` itself
11129
11287
  */
@@ -11144,7 +11302,7 @@ declare module "sap/ui/ux3/Overlay" {
11144
11302
  /**
11145
11303
  * The function to be called, when the event occurs
11146
11304
  */
11147
- fnFunction: (p1: Event) => void,
11305
+ fnFunction: (p1: Event<$OverlayCloseEventParameters>) => void,
11148
11306
  /**
11149
11307
  * Context object on which the given function had to be called
11150
11308
  */
@@ -11161,7 +11319,7 @@ declare module "sap/ui/ux3/Overlay" {
11161
11319
  /**
11162
11320
  * The function to be called, when the event occurs
11163
11321
  */
11164
- fnFunction: (p1: Event) => void,
11322
+ fnFunction: (p1: Event<$OverlayClosedEventParameters>) => void,
11165
11323
  /**
11166
11324
  * Context object on which the given function had to be called
11167
11325
  */
@@ -11178,7 +11336,7 @@ declare module "sap/ui/ux3/Overlay" {
11178
11336
  /**
11179
11337
  * The function to be called, when the event occurs
11180
11338
  */
11181
- fnFunction: (p1: Event) => void,
11339
+ fnFunction: (p1: Event<$OverlayOpenEventParameters>) => void,
11182
11340
  /**
11183
11341
  * Context object on which the given function had to be called
11184
11342
  */
@@ -11195,7 +11353,7 @@ declare module "sap/ui/ux3/Overlay" {
11195
11353
  /**
11196
11354
  * The function to be called, when the event occurs
11197
11355
  */
11198
- fnFunction: (p1: Event) => void,
11356
+ fnFunction: (p1: Event<$OverlayOpenNewEventParameters>) => void,
11199
11357
  /**
11200
11358
  * Context object on which the given function had to be called
11201
11359
  */
@@ -11215,12 +11373,7 @@ declare module "sap/ui/ux3/Overlay" {
11215
11373
  /**
11216
11374
  * Parameters to pass along with the event
11217
11375
  */
11218
- mParameters?: {
11219
- /**
11220
- * The ID of the Overlay instance.
11221
- */
11222
- id?: string;
11223
- }
11376
+ mParameters?: $OverlayCloseEventParameters
11224
11377
  ): boolean;
11225
11378
  /**
11226
11379
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -11236,12 +11389,7 @@ declare module "sap/ui/ux3/Overlay" {
11236
11389
  /**
11237
11390
  * Parameters to pass along with the event
11238
11391
  */
11239
- mParameters?: {
11240
- /**
11241
- * The ID of the Overlay instance.
11242
- */
11243
- id?: string;
11244
- }
11392
+ mParameters?: $OverlayClosedEventParameters
11245
11393
  ): boolean;
11246
11394
  /**
11247
11395
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -11254,12 +11402,7 @@ declare module "sap/ui/ux3/Overlay" {
11254
11402
  /**
11255
11403
  * Parameters to pass along with the event
11256
11404
  */
11257
- mParameters?: {
11258
- /**
11259
- * The ID of the Overlay instance
11260
- */
11261
- id?: string;
11262
- }
11405
+ mParameters?: $OverlayOpenEventParameters
11263
11406
  ): this;
11264
11407
  /**
11265
11408
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -11272,12 +11415,7 @@ declare module "sap/ui/ux3/Overlay" {
11272
11415
  /**
11273
11416
  * Parameters to pass along with the event
11274
11417
  */
11275
- mParameters?: {
11276
- /**
11277
- * The ID of the Overlay instance.
11278
- */
11279
- id?: string;
11280
- }
11418
+ mParameters?: $OverlayOpenNewEventParameters
11281
11419
  ): this;
11282
11420
  /**
11283
11421
  * Gets current value of property {@link #getCloseButtonVisible closeButtonVisible}.
@@ -11347,6 +11485,7 @@ declare module "sap/ui/ux3/Overlay" {
11347
11485
  bOpenButtonVisible?: boolean
11348
11486
  ): this;
11349
11487
  }
11488
+ export default Overlay;
11350
11489
 
11351
11490
  export interface $OverlaySettings extends $ControlSettings {
11352
11491
  /**
@@ -11362,22 +11501,50 @@ declare module "sap/ui/ux3/Overlay" {
11362
11501
  /**
11363
11502
  * Event is fired when the Overlay starts closing.
11364
11503
  */
11365
- close?: (oEvent: Event) => void;
11504
+ close?: (oEvent: Event<$OverlayCloseEventParameters>) => void;
11366
11505
 
11367
11506
  /**
11368
11507
  * Event is fired when the Overlay is closed.
11369
11508
  */
11370
- closed?: (oEvent: Event) => void;
11509
+ closed?: (oEvent: Event<$OverlayClosedEventParameters>) => void;
11371
11510
 
11372
11511
  /**
11373
11512
  * Event is fired when the 'Open' button of the Overlay is clicked.
11374
11513
  */
11375
- openNew?: (oEvent: Event) => void;
11514
+ openNew?: (oEvent: Event<$OverlayOpenNewEventParameters>) => void;
11376
11515
 
11377
11516
  /**
11378
11517
  * Event is fired when the Overlay is opened.
11379
11518
  */
11380
- open?: (oEvent: Event) => void;
11519
+ open?: (oEvent: Event<$OverlayOpenEventParameters>) => void;
11520
+ }
11521
+
11522
+ export interface $OverlayCloseEventParameters {
11523
+ /**
11524
+ * The ID of the Overlay instance.
11525
+ */
11526
+ id?: string;
11527
+ }
11528
+
11529
+ export interface $OverlayClosedEventParameters {
11530
+ /**
11531
+ * The ID of the Overlay instance.
11532
+ */
11533
+ id?: string;
11534
+ }
11535
+
11536
+ export interface $OverlayOpenEventParameters {
11537
+ /**
11538
+ * The ID of the Overlay instance
11539
+ */
11540
+ id?: string;
11541
+ }
11542
+
11543
+ export interface $OverlayOpenNewEventParameters {
11544
+ /**
11545
+ * The ID of the Overlay instance.
11546
+ */
11547
+ id?: string;
11381
11548
  }
11382
11549
  }
11383
11550
 
@@ -11395,7 +11562,7 @@ declare module "sap/ui/ux3/OverlayContainer" {
11395
11562
  *
11396
11563
  * Is to be embedded into the Overlay control as content container
11397
11564
  */
11398
- export default class OverlayContainer extends Overlay {
11565
+ class OverlayContainer extends Overlay {
11399
11566
  /**
11400
11567
  * Constructor for a new OverlayContainer.
11401
11568
  *
@@ -11528,6 +11695,7 @@ declare module "sap/ui/ux3/OverlayContainer" {
11528
11695
  vContent: int | string | Control
11529
11696
  ): Control | null;
11530
11697
  }
11698
+ export default OverlayContainer;
11531
11699
 
11532
11700
  export interface $OverlayContainerSettings extends $OverlaySettings {
11533
11701
  /**
@@ -11557,7 +11725,7 @@ declare module "sap/ui/ux3/OverlayDialog" {
11557
11725
  * Dialog implementation based on the Overlay. If used in a Shell it leaves the Tool-Palette, Pane-Bar and
11558
11726
  * Header-Items accessible.
11559
11727
  */
11560
- export default class OverlayDialog extends Overlay {
11728
+ class OverlayDialog extends Overlay {
11561
11729
  /**
11562
11730
  * Constructor for a new OverlayDialog.
11563
11731
  *
@@ -11726,6 +11894,7 @@ declare module "sap/ui/ux3/OverlayDialog" {
11726
11894
  */
11727
11895
  setWidth(sWidth: CSSSize): void;
11728
11896
  }
11897
+ export default OverlayDialog;
11729
11898
 
11730
11899
  export interface $OverlayDialogSettings extends $OverlaySettings {
11731
11900
  /**
@@ -11778,7 +11947,7 @@ declare module "sap/ui/ux3/QuickView" {
11778
11947
  * QuickView is a small popup with a short overview of a Thing. QuickView is shown when a user holds the
11779
11948
  * mouse pointer over a related screen element.
11780
11949
  */
11781
- export default class QuickView extends CalloutBase {
11950
+ class QuickView extends CalloutBase {
11782
11951
  /**
11783
11952
  * Constructor for a new QuickView.
11784
11953
  *
@@ -11881,7 +12050,7 @@ declare module "sap/ui/ux3/QuickView" {
11881
12050
  /**
11882
12051
  * The function to be called when the event occurs
11883
12052
  */
11884
- fnFunction: (p1: Event) => void,
12053
+ fnFunction: (p1: Event<$QuickViewActionSelectedEventParameters>) => void,
11885
12054
  /**
11886
12055
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
11887
12056
  */
@@ -11902,7 +12071,7 @@ declare module "sap/ui/ux3/QuickView" {
11902
12071
  /**
11903
12072
  * The function to be called when the event occurs
11904
12073
  */
11905
- fnFunction: (p1: Event) => void,
12074
+ fnFunction: (p1: Event<$QuickViewActionSelectedEventParameters>) => void,
11906
12075
  /**
11907
12076
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
11908
12077
  */
@@ -11927,7 +12096,7 @@ declare module "sap/ui/ux3/QuickView" {
11927
12096
  /**
11928
12097
  * The function to be called when the event occurs
11929
12098
  */
11930
- fnFunction: (p1: Event) => void,
12099
+ fnFunction: (p1: Event<$QuickViewFeedSubmitEventParameters>) => void,
11931
12100
  /**
11932
12101
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
11933
12102
  */
@@ -11947,7 +12116,7 @@ declare module "sap/ui/ux3/QuickView" {
11947
12116
  /**
11948
12117
  * The function to be called when the event occurs
11949
12118
  */
11950
- fnFunction: (p1: Event) => void,
12119
+ fnFunction: (p1: Event<$QuickViewFeedSubmitEventParameters>) => void,
11951
12120
  /**
11952
12121
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
11953
12122
  */
@@ -11973,7 +12142,7 @@ declare module "sap/ui/ux3/QuickView" {
11973
12142
  /**
11974
12143
  * The function to be called when the event occurs
11975
12144
  */
11976
- fnFunction: (p1: Event) => void,
12145
+ fnFunction: (p1: Event<$QuickViewNavigateEventParameters>) => void,
11977
12146
  /**
11978
12147
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
11979
12148
  */
@@ -11994,7 +12163,7 @@ declare module "sap/ui/ux3/QuickView" {
11994
12163
  /**
11995
12164
  * The function to be called when the event occurs
11996
12165
  */
11997
- fnFunction: (p1: Event) => void,
12166
+ fnFunction: (p1: Event<$QuickViewNavigateEventParameters>) => void,
11998
12167
  /**
11999
12168
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.QuickView` itself
12000
12169
  */
@@ -12030,7 +12199,7 @@ declare module "sap/ui/ux3/QuickView" {
12030
12199
  /**
12031
12200
  * The function to be called, when the event occurs
12032
12201
  */
12033
- fnFunction: (p1: Event) => void,
12202
+ fnFunction: (p1: Event<$QuickViewActionSelectedEventParameters>) => void,
12034
12203
  /**
12035
12204
  * Context object on which the given function had to be called
12036
12205
  */
@@ -12047,7 +12216,7 @@ declare module "sap/ui/ux3/QuickView" {
12047
12216
  /**
12048
12217
  * The function to be called, when the event occurs
12049
12218
  */
12050
- fnFunction: (p1: Event) => void,
12219
+ fnFunction: (p1: Event<$QuickViewFeedSubmitEventParameters>) => void,
12051
12220
  /**
12052
12221
  * Context object on which the given function had to be called
12053
12222
  */
@@ -12064,7 +12233,7 @@ declare module "sap/ui/ux3/QuickView" {
12064
12233
  /**
12065
12234
  * The function to be called, when the event occurs
12066
12235
  */
12067
- fnFunction: (p1: Event) => void,
12236
+ fnFunction: (p1: Event<$QuickViewNavigateEventParameters>) => void,
12068
12237
  /**
12069
12238
  * Context object on which the given function had to be called
12070
12239
  */
@@ -12081,21 +12250,7 @@ declare module "sap/ui/ux3/QuickView" {
12081
12250
  /**
12082
12251
  * Parameters to pass along with the event
12083
12252
  */
12084
- mParameters?: {
12085
- /**
12086
- * Id of selected ThingAction
12087
- */
12088
- id?: string;
12089
- /**
12090
- * Selected ThingAction
12091
- */
12092
- action?: ThingAction;
12093
- /**
12094
- * New State of the selected action. Only filled if the respective action maintains a state property, for
12095
- * example 'FollowUp' or 'Favorite'
12096
- */
12097
- newState?: string;
12098
- }
12253
+ mParameters?: $QuickViewActionSelectedEventParameters
12099
12254
  ): this;
12100
12255
  /**
12101
12256
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12108,12 +12263,7 @@ declare module "sap/ui/ux3/QuickView" {
12108
12263
  /**
12109
12264
  * Parameters to pass along with the event
12110
12265
  */
12111
- mParameters?: {
12112
- /**
12113
- * Feed text
12114
- */
12115
- text?: string;
12116
- }
12266
+ mParameters?: $QuickViewFeedSubmitEventParameters
12117
12267
  ): this;
12118
12268
  /**
12119
12269
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12129,12 +12279,7 @@ declare module "sap/ui/ux3/QuickView" {
12129
12279
  /**
12130
12280
  * Parameters to pass along with the event
12131
12281
  */
12132
- mParameters?: {
12133
- /**
12134
- * URI of the Thing Inspector application.
12135
- */
12136
- href?: string;
12137
- }
12282
+ mParameters?: $QuickViewNavigateEventParameters
12138
12283
  ): boolean;
12139
12284
  /**
12140
12285
  * Gets content of aggregation {@link #getActionBar actionBar}.
@@ -12648,6 +12793,7 @@ declare module "sap/ui/ux3/QuickView" {
12648
12793
  sWidth?: CSSSize
12649
12794
  ): this;
12650
12795
  }
12796
+ export default QuickView;
12651
12797
 
12652
12798
  export interface $QuickViewSettings extends $CalloutBaseSettings {
12653
12799
  /**
@@ -12757,18 +12903,52 @@ declare module "sap/ui/ux3/QuickView" {
12757
12903
  /**
12758
12904
  * Action is selected in Action Bar
12759
12905
  */
12760
- actionSelected?: (oEvent: Event) => void;
12906
+ actionSelected?: (
12907
+ oEvent: Event<$QuickViewActionSelectedEventParameters>
12908
+ ) => void;
12761
12909
 
12762
12910
  /**
12763
12911
  * Fired when a new feed entry is submitted.
12764
12912
  */
12765
- feedSubmit?: (oEvent: Event) => void;
12913
+ feedSubmit?: (oEvent: Event<$QuickViewFeedSubmitEventParameters>) => void;
12766
12914
 
12767
12915
  /**
12768
12916
  * Event is fired when a user clicks on the firstTitle link. Call the preventDefault method of the event
12769
12917
  * object to cancel browser navigation.
12770
12918
  */
12771
- navigate?: (oEvent: Event) => void;
12919
+ navigate?: (oEvent: Event<$QuickViewNavigateEventParameters>) => void;
12920
+ }
12921
+
12922
+ export interface $QuickViewActionSelectedEventParameters {
12923
+ /**
12924
+ * Id of selected ThingAction
12925
+ */
12926
+ id?: string;
12927
+
12928
+ /**
12929
+ * Selected ThingAction
12930
+ */
12931
+ action?: ThingAction;
12932
+
12933
+ /**
12934
+ * New State of the selected action. Only filled if the respective action maintains a state property, for
12935
+ * example 'FollowUp' or 'Favorite'
12936
+ */
12937
+ newState?: string;
12938
+ }
12939
+
12940
+ export interface $QuickViewFeedSubmitEventParameters {
12941
+ /**
12942
+ * Feed text
12943
+ */
12944
+ text?: string;
12945
+ }
12946
+
12947
+ export interface $QuickViewNavigateEventParameters {
12948
+ /**
12949
+ * URI of the Thing Inspector application.
12950
+ */
12951
+ href?: string;
12772
12952
  }
12773
12953
  }
12774
12954
 
@@ -12805,7 +12985,7 @@ declare module "sap/ui/ux3/Shell" {
12805
12985
  * to be added to a direct child of the BODY tag of a page and there should be no other parts of the page
12806
12986
  * consuming space outside the Shell.
12807
12987
  */
12808
- export default class Shell extends Control {
12988
+ class Shell extends Control {
12809
12989
  /**
12810
12990
  * Constructor for a new Shell.
12811
12991
  *
@@ -13043,7 +13223,7 @@ declare module "sap/ui/ux3/Shell" {
13043
13223
  /**
13044
13224
  * The function to be called when the event occurs
13045
13225
  */
13046
- fnFunction: (p1: Event) => void,
13226
+ fnFunction: (p1: Event<$ShellPaneBarItemSelectedEventParameters>) => void,
13047
13227
  /**
13048
13228
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13049
13229
  */
@@ -13065,7 +13245,7 @@ declare module "sap/ui/ux3/Shell" {
13065
13245
  /**
13066
13246
  * The function to be called when the event occurs
13067
13247
  */
13068
- fnFunction: (p1: Event) => void,
13248
+ fnFunction: (p1: Event<$ShellPaneBarItemSelectedEventParameters>) => void,
13069
13249
  /**
13070
13250
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13071
13251
  */
@@ -13093,7 +13273,7 @@ declare module "sap/ui/ux3/Shell" {
13093
13273
  /**
13094
13274
  * The function to be called when the event occurs
13095
13275
  */
13096
- fnFunction: (p1: Event) => void,
13276
+ fnFunction: (p1: Event<$ShellPaneClosedEventParameters>) => void,
13097
13277
  /**
13098
13278
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13099
13279
  */
@@ -13116,7 +13296,7 @@ declare module "sap/ui/ux3/Shell" {
13116
13296
  /**
13117
13297
  * The function to be called when the event occurs
13118
13298
  */
13119
- fnFunction: (p1: Event) => void,
13299
+ fnFunction: (p1: Event<$ShellPaneClosedEventParameters>) => void,
13120
13300
  /**
13121
13301
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13122
13302
  */
@@ -13190,7 +13370,7 @@ declare module "sap/ui/ux3/Shell" {
13190
13370
  /**
13191
13371
  * The function to be called when the event occurs
13192
13372
  */
13193
- fnFunction: (p1: Event) => void,
13373
+ fnFunction: (p1: Event<$ShellWorksetItemSelectedEventParameters>) => void,
13194
13374
  /**
13195
13375
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13196
13376
  */
@@ -13214,7 +13394,7 @@ declare module "sap/ui/ux3/Shell" {
13214
13394
  /**
13215
13395
  * The function to be called when the event occurs
13216
13396
  */
13217
- fnFunction: (p1: Event) => void,
13397
+ fnFunction: (p1: Event<$ShellWorksetItemSelectedEventParameters>) => void,
13218
13398
  /**
13219
13399
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.Shell` itself
13220
13400
  */
@@ -13316,7 +13496,7 @@ declare module "sap/ui/ux3/Shell" {
13316
13496
  /**
13317
13497
  * The function to be called, when the event occurs
13318
13498
  */
13319
- fnFunction: (p1: Event) => void,
13499
+ fnFunction: (p1: Event<$ShellPaneBarItemSelectedEventParameters>) => void,
13320
13500
  /**
13321
13501
  * Context object on which the given function had to be called
13322
13502
  */
@@ -13335,7 +13515,7 @@ declare module "sap/ui/ux3/Shell" {
13335
13515
  /**
13336
13516
  * The function to be called, when the event occurs
13337
13517
  */
13338
- fnFunction: (p1: Event) => void,
13518
+ fnFunction: (p1: Event<$ShellPaneClosedEventParameters>) => void,
13339
13519
  /**
13340
13520
  * Context object on which the given function had to be called
13341
13521
  */
@@ -13370,7 +13550,7 @@ declare module "sap/ui/ux3/Shell" {
13370
13550
  /**
13371
13551
  * The function to be called, when the event occurs
13372
13552
  */
13373
- fnFunction: (p1: Event) => void,
13553
+ fnFunction: (p1: Event<$ShellWorksetItemSelectedEventParameters>) => void,
13374
13554
  /**
13375
13555
  * Context object on which the given function had to be called
13376
13556
  */
@@ -13413,20 +13593,7 @@ declare module "sap/ui/ux3/Shell" {
13413
13593
  /**
13414
13594
  * Parameters to pass along with the event
13415
13595
  */
13416
- mParameters?: {
13417
- /**
13418
- * The ID of the selected PaneBarItem.
13419
- */
13420
- id?: string;
13421
- /**
13422
- * The selected Item
13423
- */
13424
- item?: Item;
13425
- /**
13426
- * The key of the selected Item (or null if there is no key)
13427
- */
13428
- key?: string;
13429
- }
13596
+ mParameters?: $ShellPaneBarItemSelectedEventParameters
13430
13597
  ): this;
13431
13598
  /**
13432
13599
  * @SINCE 1.12.0
@@ -13440,12 +13607,7 @@ declare module "sap/ui/ux3/Shell" {
13440
13607
  /**
13441
13608
  * Parameters to pass along with the event
13442
13609
  */
13443
- mParameters?: {
13444
- /**
13445
- * The id of the PaneBarItem to which the closed pane belonged.
13446
- */
13447
- id?: string;
13448
- }
13610
+ mParameters?: $ShellPaneClosedEventParameters
13449
13611
  ): this;
13450
13612
  /**
13451
13613
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -13474,21 +13636,7 @@ declare module "sap/ui/ux3/Shell" {
13474
13636
  /**
13475
13637
  * Parameters to pass along with the event
13476
13638
  */
13477
- mParameters?: {
13478
- /**
13479
- * The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
13480
- * which has sub-items, the ID of the currently active sub-item (/leaf) is given.
13481
- */
13482
- id?: string;
13483
- /**
13484
- * The selected NavigationItem
13485
- */
13486
- item?: NavigationItem;
13487
- /**
13488
- * The key of the selected NavigationItem (or null if there is no key)
13489
- */
13490
- key?: string;
13491
- }
13639
+ mParameters?: $ShellWorksetItemSelectedEventParameters
13492
13640
  ): boolean;
13493
13641
  /**
13494
13642
  * @SINCE 1.14.0
@@ -14416,6 +14564,7 @@ declare module "sap/ui/ux3/Shell" {
14416
14564
  bShowTools?: boolean
14417
14565
  ): this;
14418
14566
  }
14567
+ export default Shell;
14419
14568
 
14420
14569
  export interface $ShellSettings extends $ControlSettings {
14421
14570
  /**
@@ -14590,13 +14739,17 @@ declare module "sap/ui/ux3/Shell" {
14590
14739
  * is responsible for displaying the correct content for the selected one of the newly created sub-items.
14591
14740
  * The Shell will currently always mark the first sub-item as selected.
14592
14741
  */
14593
- worksetItemSelected?: (oEvent: Event) => void;
14742
+ worksetItemSelected?: (
14743
+ oEvent: Event<$ShellWorksetItemSelectedEventParameters>
14744
+ ) => void;
14594
14745
 
14595
14746
  /**
14596
14747
  * An item in the right-hand-side pane bar has been selected, the pane is now visible and can be filled
14597
14748
  * with UI elements.
14598
14749
  */
14599
- paneBarItemSelected?: (oEvent: Event) => void;
14750
+ paneBarItemSelected?: (
14751
+ oEvent: Event<$ShellPaneBarItemSelectedEventParameters>
14752
+ ) => void;
14600
14753
 
14601
14754
  /**
14602
14755
  * Fired when the user clicks the "Log-off" button
@@ -14619,7 +14772,55 @@ declare module "sap/ui/ux3/Shell" {
14619
14772
  * Fired after a side pane of the shell is closed. It is also fired, when an open pane is closed by calling
14620
14773
  * setShowPane(false), if and only if the pane was opened before.
14621
14774
  */
14622
- paneClosed?: (oEvent: Event) => void;
14775
+ paneClosed?: (oEvent: Event<$ShellPaneClosedEventParameters>) => void;
14776
+ }
14777
+
14778
+ export interface $ShellFeedSubmitEventParameters {}
14779
+
14780
+ export interface $ShellLogoutEventParameters {}
14781
+
14782
+ export interface $ShellPaneBarItemSelectedEventParameters {
14783
+ /**
14784
+ * The ID of the selected PaneBarItem.
14785
+ */
14786
+ id?: string;
14787
+
14788
+ /**
14789
+ * The selected Item
14790
+ */
14791
+ item?: Item;
14792
+
14793
+ /**
14794
+ * The key of the selected Item (or null if there is no key)
14795
+ */
14796
+ key?: string;
14797
+ }
14798
+
14799
+ export interface $ShellPaneClosedEventParameters {
14800
+ /**
14801
+ * The id of the PaneBarItem to which the closed pane belonged.
14802
+ */
14803
+ id?: string;
14804
+ }
14805
+
14806
+ export interface $ShellSearchEventParameters {}
14807
+
14808
+ export interface $ShellWorksetItemSelectedEventParameters {
14809
+ /**
14810
+ * The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
14811
+ * which has sub-items, the ID of the currently active sub-item (/leaf) is given.
14812
+ */
14813
+ id?: string;
14814
+
14815
+ /**
14816
+ * The selected NavigationItem
14817
+ */
14818
+ item?: NavigationItem;
14819
+
14820
+ /**
14821
+ * The key of the selected NavigationItem (or null if there is no key)
14822
+ */
14823
+ key?: string;
14623
14824
  }
14624
14825
  }
14625
14826
 
@@ -14637,7 +14838,7 @@ declare module "sap/ui/ux3/ThingAction" {
14637
14838
  *
14638
14839
  * Thing Action for Swatch, QuickView, Thinginspector
14639
14840
  */
14640
- export default class ThingAction extends UI5Element {
14841
+ class ThingAction extends UI5Element {
14641
14842
  /**
14642
14843
  * Constructor for a new ThingAction.
14643
14844
  *
@@ -14717,7 +14918,7 @@ declare module "sap/ui/ux3/ThingAction" {
14717
14918
  /**
14718
14919
  * The function to be called when the event occurs
14719
14920
  */
14720
- fnFunction: (p1: Event) => void,
14921
+ fnFunction: (p1: Event<$ThingActionSelectEventParameters>) => void,
14721
14922
  /**
14722
14923
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingAction` itself
14723
14924
  */
@@ -14737,7 +14938,7 @@ declare module "sap/ui/ux3/ThingAction" {
14737
14938
  /**
14738
14939
  * The function to be called when the event occurs
14739
14940
  */
14740
- fnFunction: (p1: Event) => void,
14941
+ fnFunction: (p1: Event<$ThingActionSelectEventParameters>) => void,
14741
14942
  /**
14742
14943
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingAction` itself
14743
14944
  */
@@ -14754,7 +14955,7 @@ declare module "sap/ui/ux3/ThingAction" {
14754
14955
  /**
14755
14956
  * The function to be called, when the event occurs
14756
14957
  */
14757
- fnFunction: (p1: Event) => void,
14958
+ fnFunction: (p1: Event<$ThingActionSelectEventParameters>) => void,
14758
14959
  /**
14759
14960
  * Context object on which the given function had to be called
14760
14961
  */
@@ -14771,16 +14972,7 @@ declare module "sap/ui/ux3/ThingAction" {
14771
14972
  /**
14772
14973
  * Parameters to pass along with the event
14773
14974
  */
14774
- mParameters?: {
14775
- /**
14776
- * Id of selected action
14777
- */
14778
- id?: string;
14779
- /**
14780
- * Selected Thing Action
14781
- */
14782
- action?: ThingAction;
14783
- }
14975
+ mParameters?: $ThingActionSelectEventParameters
14784
14976
  ): this;
14785
14977
  /**
14786
14978
  * Gets current value of property {@link #getEnabled enabled}.
@@ -14833,6 +15025,7 @@ declare module "sap/ui/ux3/ThingAction" {
14833
15025
  sText?: string
14834
15026
  ): this;
14835
15027
  }
15028
+ export default ThingAction;
14836
15029
 
14837
15030
  export interface $ThingActionSettings extends $ElementSettings {
14838
15031
  /**
@@ -14848,7 +15041,19 @@ declare module "sap/ui/ux3/ThingAction" {
14848
15041
  /**
14849
15042
  * Event will be fired when the action was triggered.
14850
15043
  */
14851
- select?: (oEvent: Event) => void;
15044
+ select?: (oEvent: Event<$ThingActionSelectEventParameters>) => void;
15045
+ }
15046
+
15047
+ export interface $ThingActionSelectEventParameters {
15048
+ /**
15049
+ * Id of selected action
15050
+ */
15051
+ id?: string;
15052
+
15053
+ /**
15054
+ * Selected Thing Action
15055
+ */
15056
+ action?: ThingAction;
14852
15057
  }
14853
15058
  }
14854
15059
 
@@ -14869,7 +15074,7 @@ declare module "sap/ui/ux3/ThingGroup" {
14869
15074
  *
14870
15075
  * Thing Group Area
14871
15076
  */
14872
- export default class ThingGroup extends UI5Element {
15077
+ class ThingGroup extends UI5Element {
14873
15078
  /**
14874
15079
  * Constructor for a new ThingGroup.
14875
15080
  *
@@ -15123,6 +15328,7 @@ declare module "sap/ui/ux3/ThingGroup" {
15123
15328
  sTitle?: string
15124
15329
  ): this;
15125
15330
  }
15331
+ export default ThingGroup;
15126
15332
 
15127
15333
  export interface $ThingGroupSettings extends $ElementSettings {
15128
15334
  /**
@@ -15180,7 +15386,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15180
15386
  *
15181
15387
  * Thing Inspector
15182
15388
  */
15183
- export default class ThingInspector extends Overlay {
15389
+ class ThingInspector extends Overlay {
15184
15390
  /**
15185
15391
  * Constructor for a new ThingInspector.
15186
15392
  *
@@ -15305,7 +15511,9 @@ declare module "sap/ui/ux3/ThingInspector" {
15305
15511
  /**
15306
15512
  * The function to be called when the event occurs
15307
15513
  */
15308
- fnFunction: (p1: Event) => void,
15514
+ fnFunction: (
15515
+ p1: Event<$ThingInspectorActionSelectedEventParameters>
15516
+ ) => void,
15309
15517
  /**
15310
15518
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15311
15519
  */
@@ -15326,7 +15534,9 @@ declare module "sap/ui/ux3/ThingInspector" {
15326
15534
  /**
15327
15535
  * The function to be called when the event occurs
15328
15536
  */
15329
- fnFunction: (p1: Event) => void,
15537
+ fnFunction: (
15538
+ p1: Event<$ThingInspectorActionSelectedEventParameters>
15539
+ ) => void,
15330
15540
  /**
15331
15541
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15332
15542
  */
@@ -15352,7 +15562,9 @@ declare module "sap/ui/ux3/ThingInspector" {
15352
15562
  /**
15353
15563
  * The function to be called when the event occurs
15354
15564
  */
15355
- fnFunction: (p1: Event) => void,
15565
+ fnFunction: (
15566
+ p1: Event<$ThingInspectorFacetSelectedEventParameters>
15567
+ ) => void,
15356
15568
  /**
15357
15569
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15358
15570
  */
@@ -15373,7 +15585,9 @@ declare module "sap/ui/ux3/ThingInspector" {
15373
15585
  /**
15374
15586
  * The function to be called when the event occurs
15375
15587
  */
15376
- fnFunction: (p1: Event) => void,
15588
+ fnFunction: (
15589
+ p1: Event<$ThingInspectorFacetSelectedEventParameters>
15590
+ ) => void,
15377
15591
  /**
15378
15592
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15379
15593
  */
@@ -15398,7 +15612,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15398
15612
  /**
15399
15613
  * The function to be called when the event occurs
15400
15614
  */
15401
- fnFunction: (p1: Event) => void,
15615
+ fnFunction: (p1: Event<$ThingInspectorFeedSubmitEventParameters>) => void,
15402
15616
  /**
15403
15617
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15404
15618
  */
@@ -15418,7 +15632,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15418
15632
  /**
15419
15633
  * The function to be called when the event occurs
15420
15634
  */
15421
- fnFunction: (p1: Event) => void,
15635
+ fnFunction: (p1: Event<$ThingInspectorFeedSubmitEventParameters>) => void,
15422
15636
  /**
15423
15637
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingInspector` itself
15424
15638
  */
@@ -15466,7 +15680,9 @@ declare module "sap/ui/ux3/ThingInspector" {
15466
15680
  /**
15467
15681
  * The function to be called, when the event occurs
15468
15682
  */
15469
- fnFunction: (p1: Event) => void,
15683
+ fnFunction: (
15684
+ p1: Event<$ThingInspectorActionSelectedEventParameters>
15685
+ ) => void,
15470
15686
  /**
15471
15687
  * Context object on which the given function had to be called
15472
15688
  */
@@ -15484,7 +15700,9 @@ declare module "sap/ui/ux3/ThingInspector" {
15484
15700
  /**
15485
15701
  * The function to be called, when the event occurs
15486
15702
  */
15487
- fnFunction: (p1: Event) => void,
15703
+ fnFunction: (
15704
+ p1: Event<$ThingInspectorFacetSelectedEventParameters>
15705
+ ) => void,
15488
15706
  /**
15489
15707
  * Context object on which the given function had to be called
15490
15708
  */
@@ -15501,7 +15719,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15501
15719
  /**
15502
15720
  * The function to be called, when the event occurs
15503
15721
  */
15504
- fnFunction: (p1: Event) => void,
15722
+ fnFunction: (p1: Event<$ThingInspectorFeedSubmitEventParameters>) => void,
15505
15723
  /**
15506
15724
  * Context object on which the given function had to be called
15507
15725
  */
@@ -15518,16 +15736,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15518
15736
  /**
15519
15737
  * Parameters to pass along with the event
15520
15738
  */
15521
- mParameters?: {
15522
- /**
15523
- * Id of selected ThingAction
15524
- */
15525
- id?: string;
15526
- /**
15527
- * Selected ThingAction
15528
- */
15529
- action?: ThingAction;
15530
- }
15739
+ mParameters?: $ThingInspectorActionSelectedEventParameters
15531
15740
  ): this;
15532
15741
  /**
15533
15742
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -15543,20 +15752,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15543
15752
  /**
15544
15753
  * Parameters to pass along with the event
15545
15754
  */
15546
- mParameters?: {
15547
- /**
15548
- * Id of selected NavigationItem
15549
- */
15550
- id?: string;
15551
- /**
15552
- * The selected NavigationItem
15553
- */
15554
- item?: NavigationItem;
15555
- /**
15556
- * Key of selected NavigationItem
15557
- */
15558
- key?: string;
15559
- }
15755
+ mParameters?: $ThingInspectorFacetSelectedEventParameters
15560
15756
  ): boolean;
15561
15757
  /**
15562
15758
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -15569,12 +15765,7 @@ declare module "sap/ui/ux3/ThingInspector" {
15569
15765
  /**
15570
15766
  * Parameters to pass along with the event
15571
15767
  */
15572
- mParameters?: {
15573
- /**
15574
- * Feed text
15575
- */
15576
- text?: string;
15577
- }
15768
+ mParameters?: $ThingInspectorFeedSubmitEventParameters
15578
15769
  ): this;
15579
15770
  /**
15580
15771
  * Gets content of aggregation {@link #getActionBar actionBar}.
@@ -16143,6 +16334,7 @@ declare module "sap/ui/ux3/ThingInspector" {
16143
16334
  bUpdateActionEnabled?: boolean
16144
16335
  ): this;
16145
16336
  }
16337
+ export default ThingInspector;
16146
16338
 
16147
16339
  export interface $ThingInspectorSettings extends $OverlaySettings {
16148
16340
  /**
@@ -16262,18 +16454,60 @@ declare module "sap/ui/ux3/ThingInspector" {
16262
16454
  /**
16263
16455
  * Further thing related Action selected
16264
16456
  */
16265
- actionSelected?: (oEvent: Event) => void;
16457
+ actionSelected?: (
16458
+ oEvent: Event<$ThingInspectorActionSelectedEventParameters>
16459
+ ) => void;
16266
16460
 
16267
16461
  /**
16268
16462
  * Event for facet selection. The application is responsible for displaying the correct content for the
16269
16463
  * selected one. The ThingInspector will currently always mark the first facet as selected.
16270
16464
  */
16271
- facetSelected?: (oEvent: Event) => void;
16465
+ facetSelected?: (
16466
+ oEvent: Event<$ThingInspectorFacetSelectedEventParameters>
16467
+ ) => void;
16272
16468
 
16273
16469
  /**
16274
16470
  * Fired when a new feed entry is submitted.
16275
16471
  */
16276
- feedSubmit?: (oEvent: Event) => void;
16472
+ feedSubmit?: (
16473
+ oEvent: Event<$ThingInspectorFeedSubmitEventParameters>
16474
+ ) => void;
16475
+ }
16476
+
16477
+ export interface $ThingInspectorActionSelectedEventParameters {
16478
+ /**
16479
+ * Id of selected ThingAction
16480
+ */
16481
+ id?: string;
16482
+
16483
+ /**
16484
+ * Selected ThingAction
16485
+ */
16486
+ action?: ThingAction;
16487
+ }
16488
+
16489
+ export interface $ThingInspectorFacetSelectedEventParameters {
16490
+ /**
16491
+ * Id of selected NavigationItem
16492
+ */
16493
+ id?: string;
16494
+
16495
+ /**
16496
+ * The selected NavigationItem
16497
+ */
16498
+ item?: NavigationItem;
16499
+
16500
+ /**
16501
+ * Key of selected NavigationItem
16502
+ */
16503
+ key?: string;
16504
+ }
16505
+
16506
+ export interface $ThingInspectorFeedSubmitEventParameters {
16507
+ /**
16508
+ * Feed text
16509
+ */
16510
+ text?: string;
16277
16511
  }
16278
16512
  }
16279
16513
 
@@ -16307,7 +16541,7 @@ declare module "sap/ui/ux3/ThingViewer" {
16307
16541
  * be added to a Parent container that has a defined width. The ThingViewer fill the whole container. If
16308
16542
  * the parent container has no width defined the control will not work properly.
16309
16543
  */
16310
- export default class ThingViewer extends Control {
16544
+ class ThingViewer extends Control {
16311
16545
  /**
16312
16546
  * Constructor for a new ThingViewer.
16313
16547
  *
@@ -16421,7 +16655,7 @@ declare module "sap/ui/ux3/ThingViewer" {
16421
16655
  /**
16422
16656
  * The function to be called when the event occurs
16423
16657
  */
16424
- fnFunction: (p1: Event) => void,
16658
+ fnFunction: (p1: Event<$ThingViewerFacetSelectedEventParameters>) => void,
16425
16659
  /**
16426
16660
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingViewer` itself
16427
16661
  */
@@ -16442,7 +16676,7 @@ declare module "sap/ui/ux3/ThingViewer" {
16442
16676
  /**
16443
16677
  * The function to be called when the event occurs
16444
16678
  */
16445
- fnFunction: (p1: Event) => void,
16679
+ fnFunction: (p1: Event<$ThingViewerFacetSelectedEventParameters>) => void,
16446
16680
  /**
16447
16681
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ThingViewer` itself
16448
16682
  */
@@ -16484,7 +16718,7 @@ declare module "sap/ui/ux3/ThingViewer" {
16484
16718
  /**
16485
16719
  * The function to be called, when the event occurs
16486
16720
  */
16487
- fnFunction: (p1: Event) => void,
16721
+ fnFunction: (p1: Event<$ThingViewerFacetSelectedEventParameters>) => void,
16488
16722
  /**
16489
16723
  * Context object on which the given function had to be called
16490
16724
  */
@@ -16504,20 +16738,7 @@ declare module "sap/ui/ux3/ThingViewer" {
16504
16738
  /**
16505
16739
  * Parameters to pass along with the event
16506
16740
  */
16507
- mParameters?: {
16508
- /**
16509
- * Id of selected NavigationItem
16510
- */
16511
- id?: string;
16512
- /**
16513
- * The selected NavigationItem
16514
- */
16515
- item?: NavigationItem;
16516
- /**
16517
- * Key of selected NavigationItem
16518
- */
16519
- key?: string;
16520
- }
16741
+ mParameters?: $ThingViewerFacetSelectedEventParameters
16521
16742
  ): boolean;
16522
16743
  /**
16523
16744
  * Gets content of aggregation {@link #getActionBar actionBar}.
@@ -16893,6 +17114,7 @@ declare module "sap/ui/ux3/ThingViewer" {
16893
17114
  sWidth?: CSSSize
16894
17115
  ): this;
16895
17116
  }
17117
+ export default ThingViewer;
16896
17118
 
16897
17119
  export interface $ThingViewerSettings extends $ControlSettings {
16898
17120
  /**
@@ -16976,7 +17198,26 @@ declare module "sap/ui/ux3/ThingViewer" {
16976
17198
  * Event for facet selection. The application is responsible for displaying the correct content for the
16977
17199
  * selected one. The ThingInspector will currently always mark the first facet as selected.
16978
17200
  */
16979
- facetSelected?: (oEvent: Event) => void;
17201
+ facetSelected?: (
17202
+ oEvent: Event<$ThingViewerFacetSelectedEventParameters>
17203
+ ) => void;
17204
+ }
17205
+
17206
+ export interface $ThingViewerFacetSelectedEventParameters {
17207
+ /**
17208
+ * Id of selected NavigationItem
17209
+ */
17210
+ id?: string;
17211
+
17212
+ /**
17213
+ * The selected NavigationItem
17214
+ */
17215
+ item?: NavigationItem;
17216
+
17217
+ /**
17218
+ * Key of selected NavigationItem
17219
+ */
17220
+ key?: string;
16980
17221
  }
16981
17222
  }
16982
17223
 
@@ -16989,7 +17230,7 @@ declare module "sap/ui/ux3/ToolPopup" {
16989
17230
 
16990
17231
  import ElementMetadata from "sap/ui/core/ElementMetadata";
16991
17232
 
16992
- import { Dock } from "sap/ui/core/Popup";
17233
+ import Popup from "sap/ui/core/Popup";
16993
17234
 
16994
17235
  import {
16995
17236
  PropertyBindingInfo,
@@ -17004,7 +17245,7 @@ declare module "sap/ui/ux3/ToolPopup" {
17004
17245
  * look like any common dialog box. A ToolPopup can have any content. Depending on the application type
17005
17246
  * and design, the structure of the texts and input fields can be for example form-like.
17006
17247
  */
17007
- export default class ToolPopup extends Control implements PopupInterface {
17248
+ class ToolPopup extends Control implements PopupInterface {
17008
17249
  __implements__sap_ui_core_PopupInterface: boolean;
17009
17250
  /**
17010
17251
  * Constructor for a new ToolPopup.
@@ -17213,7 +17454,7 @@ declare module "sap/ui/ux3/ToolPopup" {
17213
17454
  /**
17214
17455
  * The function to be called when the event occurs
17215
17456
  */
17216
- fnFunction: (p1: Event) => void,
17457
+ fnFunction: (p1: Event<$ToolPopupEnterEventParameters>) => void,
17217
17458
  /**
17218
17459
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ToolPopup` itself
17219
17460
  */
@@ -17233,7 +17474,7 @@ declare module "sap/ui/ux3/ToolPopup" {
17233
17474
  /**
17234
17475
  * The function to be called when the event occurs
17235
17476
  */
17236
- fnFunction: (p1: Event) => void,
17477
+ fnFunction: (p1: Event<$ToolPopupEnterEventParameters>) => void,
17237
17478
  /**
17238
17479
  * Context object to call the event handler with. Defaults to this `sap.ui.ux3.ToolPopup` itself
17239
17480
  */
@@ -17449,7 +17690,7 @@ declare module "sap/ui/ux3/ToolPopup" {
17449
17690
  /**
17450
17691
  * The function to be called, when the event occurs
17451
17692
  */
17452
- fnFunction: (p1: Event) => void,
17693
+ fnFunction: (p1: Event<$ToolPopupEnterEventParameters>) => void,
17453
17694
  /**
17454
17695
  * Context object on which the given function had to be called
17455
17696
  */
@@ -17548,16 +17789,7 @@ declare module "sap/ui/ux3/ToolPopup" {
17548
17789
  /**
17549
17790
  * Parameters to pass along with the event
17550
17791
  */
17551
- mParameters?: {
17552
- /**
17553
- * The onsapenter event, received by the pop up
17554
- */
17555
- originalEvent?: object;
17556
- /**
17557
- * The control that was focused when the user pressed the Enter key (may be null)
17558
- */
17559
- originalSrcControl?: Control;
17560
- }
17792
+ mParameters?: $ToolPopupEnterEventParameters
17561
17793
  ): this;
17562
17794
  /**
17563
17795
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17835,11 +18067,11 @@ declare module "sap/ui/ux3/ToolPopup" {
17835
18067
  /**
17836
18068
  * The ToolPopup's content reference position for docking
17837
18069
  */
17838
- my?: Dock,
18070
+ my?: typeof Popup.Dock,
17839
18071
  /**
17840
18072
  * The "of" element's reference point for docking to
17841
18073
  */
17842
- at?: Dock
18074
+ at?: typeof Popup.Dock
17843
18075
  ): this;
17844
18076
  /**
17845
18077
  * Removes all the controls from the aggregation {@link #getButtons buttons}.
@@ -18072,6 +18304,7 @@ declare module "sap/ui/ux3/ToolPopup" {
18072
18304
  sTitle?: string
18073
18305
  ): this;
18074
18306
  }
18307
+ export default ToolPopup;
18075
18308
 
18076
18309
  export interface $ToolPopupSettings extends $ControlSettings {
18077
18310
  /**
@@ -18198,7 +18431,7 @@ declare module "sap/ui/ux3/ToolPopup" {
18198
18431
  /**
18199
18432
  * Event is fired whenever the user clicks the Enter or the Enter key inside the pop up
18200
18433
  */
18201
- enter?: (oEvent: Event) => void;
18434
+ enter?: (oEvent: Event<$ToolPopupEnterEventParameters>) => void;
18202
18435
 
18203
18436
  /**
18204
18437
  * Event is fired when one of the icon properties is modified (Note: The icon is not rendered by the ToolPopup).
@@ -18219,6 +18452,28 @@ declare module "sap/ui/ux3/ToolPopup" {
18219
18452
  */
18220
18453
  opened?: (oEvent: Event) => void;
18221
18454
  }
18455
+
18456
+ export interface $ToolPopupCloseEventParameters {}
18457
+
18458
+ export interface $ToolPopupClosedEventParameters {}
18459
+
18460
+ export interface $ToolPopupEnterEventParameters {
18461
+ /**
18462
+ * The onsapenter event, received by the pop up
18463
+ */
18464
+ originalEvent?: object;
18465
+
18466
+ /**
18467
+ * The control that was focused when the user pressed the Enter key (may be null)
18468
+ */
18469
+ originalSrcControl?: Control;
18470
+ }
18471
+
18472
+ export interface $ToolPopupIconChangedEventParameters {}
18473
+
18474
+ export interface $ToolPopupOpenEventParameters {}
18475
+
18476
+ export interface $ToolPopupOpenedEventParameters {}
18222
18477
  }
18223
18478
 
18224
18479
  declare namespace sap {