@openui5/types 1.115.1 → 1.116.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.115.1
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -902,14 +902,12 @@ declare module "sap/ui/ux3/ActionBar" {
902
902
  *
903
903
  * For ‘Update’, please refer to event ‘feedSubmit’
904
904
  */
905
- actionSelected?: (
906
- oEvent: Event<ActionBar$ActionSelectedEventParameters>
907
- ) => void;
905
+ actionSelected?: (oEvent: ActionBar$ActionSelectedEvent) => void;
908
906
 
909
907
  /**
910
908
  * Fired when a new feed entry is submitted.
911
909
  */
912
- feedSubmit?: (oEvent: Event<ActionBar$FeedSubmitEventParameters>) => void;
910
+ feedSubmit?: (oEvent: ActionBar$FeedSubmitEvent) => void;
913
911
  }
914
912
 
915
913
  export interface ActionBar$ActionSelectedEventParameters {
@@ -930,12 +928,6 @@ declare module "sap/ui/ux3/ActionBar" {
930
928
  newState?: string;
931
929
  }
932
930
 
933
- /**
934
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionBar$ActionSelectedEventParameters'
935
- * in 1.115.1 and any later releases.
936
- */
937
- export type $ActionBarActionSelectedEventParameters = ActionBar$ActionSelectedEventParameters;
938
-
939
931
  export type ActionBar$ActionSelectedEvent = Event<ActionBar$ActionSelectedEventParameters>;
940
932
 
941
933
  export interface ActionBar$FeedSubmitEventParameters {
@@ -945,12 +937,6 @@ declare module "sap/ui/ux3/ActionBar" {
945
937
  text?: string;
946
938
  }
947
939
 
948
- /**
949
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionBar$FeedSubmitEventParameters'
950
- * in 1.115.1 and any later releases.
951
- */
952
- export type $ActionBarFeedSubmitEventParameters = ActionBar$FeedSubmitEventParameters;
953
-
954
940
  export type ActionBar$FeedSubmitEvent = Event<ActionBar$FeedSubmitEventParameters>;
955
941
  }
956
942
 
@@ -1412,22 +1398,10 @@ declare module "sap/ui/ux3/Collection" {
1412
1398
 
1413
1399
  export interface Collection$PropertyChangedEventParameters {}
1414
1400
 
1415
- /**
1416
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Collection$PropertyChangedEventParameters'
1417
- * in 1.115.1 and any later releases.
1418
- */
1419
- export type $CollectionPropertyChangedEventParameters = Collection$PropertyChangedEventParameters;
1420
-
1421
1401
  export type Collection$PropertyChangedEvent = Event<Collection$PropertyChangedEventParameters>;
1422
1402
 
1423
1403
  export interface Collection$SelectionChangedEventParameters {}
1424
1404
 
1425
- /**
1426
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Collection$SelectionChangedEventParameters'
1427
- * in 1.115.1 and any later releases.
1428
- */
1429
- export type $CollectionSelectionChangedEventParameters = Collection$SelectionChangedEventParameters;
1430
-
1431
1405
  export type Collection$SelectionChangedEvent = Event<Collection$SelectionChangedEventParameters>;
1432
1406
  }
1433
1407
 
@@ -2021,32 +1995,14 @@ declare module "sap/ui/ux3/CollectionInspector" {
2021
1995
 
2022
1996
  export interface CollectionInspector$CollectionSelectedEventParameters {}
2023
1997
 
2024
- /**
2025
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CollectionInspector$CollectionSelectedEventParameters'
2026
- * in 1.115.1 and any later releases.
2027
- */
2028
- export type $CollectionInspectorCollectionSelectedEventParameters = CollectionInspector$CollectionSelectedEventParameters;
2029
-
2030
1998
  export type CollectionInspector$CollectionSelectedEvent = Event<CollectionInspector$CollectionSelectedEventParameters>;
2031
1999
 
2032
2000
  export interface CollectionInspector$EditCollectionEventParameters {}
2033
2001
 
2034
- /**
2035
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CollectionInspector$EditCollectionEventParameters'
2036
- * in 1.115.1 and any later releases.
2037
- */
2038
- export type $CollectionInspectorEditCollectionEventParameters = CollectionInspector$EditCollectionEventParameters;
2039
-
2040
2002
  export type CollectionInspector$EditCollectionEvent = Event<CollectionInspector$EditCollectionEventParameters>;
2041
2003
 
2042
2004
  export interface CollectionInspector$ItemSelectionChangedEventParameters {}
2043
2005
 
2044
- /**
2045
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CollectionInspector$ItemSelectionChangedEventParameters'
2046
- * in 1.115.1 and any later releases.
2047
- */
2048
- export type $CollectionInspectorItemSelectionChangedEventParameters = CollectionInspector$ItemSelectionChangedEventParameters;
2049
-
2050
2006
  export type CollectionInspector$ItemSelectionChangedEvent = Event<CollectionInspector$ItemSelectionChangedEventParameters>;
2051
2007
  }
2052
2008
 
@@ -2792,14 +2748,12 @@ declare module "sap/ui/ux3/DataSet" {
2792
2748
  /**
2793
2749
  * selection Changed
2794
2750
  */
2795
- selectionChanged?: (
2796
- oEvent: Event<DataSet$SelectionChangedEventParameters>
2797
- ) => void;
2751
+ selectionChanged?: (oEvent: DataSet$SelectionChangedEvent) => void;
2798
2752
 
2799
2753
  /**
2800
2754
  * Event which is fired when the user triggers a search
2801
2755
  */
2802
- search?: (oEvent: Event<DataSet$SearchEventParameters>) => void;
2756
+ search?: (oEvent: DataSet$SearchEvent) => void;
2803
2757
  }
2804
2758
 
2805
2759
  export interface DataSet$SearchEventParameters {
@@ -2809,12 +2763,6 @@ declare module "sap/ui/ux3/DataSet" {
2809
2763
  query?: string;
2810
2764
  }
2811
2765
 
2812
- /**
2813
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DataSet$SearchEventParameters'
2814
- * in 1.115.1 and any later releases.
2815
- */
2816
- export type $DataSetSearchEventParameters = DataSet$SearchEventParameters;
2817
-
2818
2766
  export type DataSet$SearchEvent = Event<DataSet$SearchEventParameters>;
2819
2767
 
2820
2768
  export interface DataSet$SelectionChangedEventParameters {
@@ -2829,12 +2777,6 @@ declare module "sap/ui/ux3/DataSet" {
2829
2777
  newLeadSelectedIndex?: int;
2830
2778
  }
2831
2779
 
2832
- /**
2833
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DataSet$SelectionChangedEventParameters'
2834
- * in 1.115.1 and any later releases.
2835
- */
2836
- export type $DataSetSelectionChangedEventParameters = DataSet$SelectionChangedEventParameters;
2837
-
2838
2780
  export type DataSet$SelectionChangedEvent = Event<DataSet$SelectionChangedEventParameters>;
2839
2781
  }
2840
2782
 
@@ -3120,7 +3062,7 @@ declare module "sap/ui/ux3/DataSetItem" {
3120
3062
  /**
3121
3063
  * Event Fired when Datset item is selected.
3122
3064
  */
3123
- selected?: (oEvent: Event<DataSetItem$SelectedEventParameters>) => void;
3065
+ selected?: (oEvent: DataSetItem$SelectedEvent) => void;
3124
3066
  }
3125
3067
 
3126
3068
  export interface DataSetItem$SelectedEventParameters {
@@ -3130,12 +3072,6 @@ declare module "sap/ui/ux3/DataSetItem" {
3130
3072
  itemId?: string;
3131
3073
  }
3132
3074
 
3133
- /**
3134
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DataSetItem$SelectedEventParameters'
3135
- * in 1.115.1 and any later releases.
3136
- */
3137
- export type $DataSetItemSelectedEventParameters = DataSetItem$SelectedEventParameters;
3138
-
3139
3075
  export type DataSetItem$SelectedEvent = Event<DataSetItem$SelectedEventParameters>;
3140
3076
  }
3141
3077
 
@@ -4069,12 +4005,12 @@ declare module "sap/ui/ux3/Exact" {
4069
4005
  /**
4070
4006
  * Event is fired when the search button is clicked
4071
4007
  */
4072
- search?: (oEvent: Event<Exact$SearchEventParameters>) => void;
4008
+ search?: (oEvent: Exact$SearchEvent) => void;
4073
4009
 
4074
4010
  /**
4075
4011
  * Event which is fired when an attribute is selected or unselected.
4076
4012
  */
4077
- refineSearch?: (oEvent: Event<Exact$RefineSearchEventParameters>) => void;
4013
+ refineSearch?: (oEvent: Exact$RefineSearchEvent) => void;
4078
4014
  }
4079
4015
 
4080
4016
  export interface Exact$RefineSearchEventParameters {
@@ -4094,12 +4030,6 @@ declare module "sap/ui/ux3/Exact" {
4094
4030
  allSelectedAttributes?: object;
4095
4031
  }
4096
4032
 
4097
- /**
4098
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Exact$RefineSearchEventParameters'
4099
- * in 1.115.1 and any later releases.
4100
- */
4101
- export type $ExactRefineSearchEventParameters = Exact$RefineSearchEventParameters;
4102
-
4103
4033
  export type Exact$RefineSearchEvent = Event<Exact$RefineSearchEventParameters>;
4104
4034
 
4105
4035
  export interface Exact$SearchEventParameters {
@@ -4109,12 +4039,6 @@ declare module "sap/ui/ux3/Exact" {
4109
4039
  query?: string;
4110
4040
  }
4111
4041
 
4112
- /**
4113
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Exact$SearchEventParameters'
4114
- * in 1.115.1 and any later releases.
4115
- */
4116
- export type $ExactSearchEventParameters = Exact$SearchEventParameters;
4117
-
4118
4042
  export type Exact$SearchEvent = Event<Exact$SearchEventParameters>;
4119
4043
  }
4120
4044
 
@@ -4965,9 +4889,7 @@ declare module "sap/ui/ux3/ExactAttribute" {
4965
4889
  * the corresponding ExactAttribute is selected, it was already selected when a handler is attached or function
4966
4890
  * getAttributes() is called.
4967
4891
  */
4968
- supplyAttributes?: (
4969
- oEvent: Event<ExactAttribute$SupplyAttributesEventParameters>
4970
- ) => void;
4892
+ supplyAttributes?: (oEvent: ExactAttribute$SupplyAttributesEvent) => void;
4971
4893
  }
4972
4894
 
4973
4895
  export interface ExactAttribute$SupplyAttributesEventParameters {
@@ -4977,12 +4899,6 @@ declare module "sap/ui/ux3/ExactAttribute" {
4977
4899
  attribute?: ExactAttribute;
4978
4900
  }
4979
4901
 
4980
- /**
4981
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactAttribute$SupplyAttributesEventParameters'
4982
- * in 1.115.1 and any later releases.
4983
- */
4984
- export type $ExactAttributeSupplyAttributesEventParameters = ExactAttribute$SupplyAttributesEventParameters;
4985
-
4986
4902
  export type ExactAttribute$SupplyAttributesEvent = Event<ExactAttribute$SupplyAttributesEventParameters>;
4987
4903
  }
4988
4904
 
@@ -5715,9 +5631,7 @@ declare module "sap/ui/ux3/ExactBrowser" {
5715
5631
  /**
5716
5632
  * Event is fired when an attribute is selected or unselected.
5717
5633
  */
5718
- attributeSelected?: (
5719
- oEvent: Event<ExactBrowser$AttributeSelectedEventParameters>
5720
- ) => void;
5634
+ attributeSelected?: (oEvent: ExactBrowser$AttributeSelectedEvent) => void;
5721
5635
 
5722
5636
  /**
5723
5637
  * Event is fired when an attribute is selected or unselected.
@@ -5737,22 +5651,10 @@ declare module "sap/ui/ux3/ExactBrowser" {
5737
5651
  allAttributes?: object;
5738
5652
  }
5739
5653
 
5740
- /**
5741
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactBrowser$AttributeSelectedEventParameters'
5742
- * in 1.115.1 and any later releases.
5743
- */
5744
- export type $ExactBrowserAttributeSelectedEventParameters = ExactBrowser$AttributeSelectedEventParameters;
5745
-
5746
5654
  export type ExactBrowser$AttributeSelectedEvent = Event<ExactBrowser$AttributeSelectedEventParameters>;
5747
5655
 
5748
5656
  export interface ExactBrowser$SaveEventParameters {}
5749
5657
 
5750
- /**
5751
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactBrowser$SaveEventParameters'
5752
- * in 1.115.1 and any later releases.
5753
- */
5754
- export type $ExactBrowserSaveEventParameters = ExactBrowser$SaveEventParameters;
5755
-
5756
5658
  export type ExactBrowser$SaveEvent = Event<ExactBrowser$SaveEventParameters>;
5757
5659
  }
5758
5660
 
@@ -6114,9 +6016,7 @@ declare module "sap/ui/ux3/ExactList" {
6114
6016
  /**
6115
6017
  * Event which is fired when an attribute is selected/unselected
6116
6018
  */
6117
- attributeSelected?: (
6118
- oEvent: Event<ExactList$AttributeSelectedEventParameters>
6119
- ) => void;
6019
+ attributeSelected?: (oEvent: ExactList$AttributeSelectedEvent) => void;
6120
6020
  }
6121
6021
 
6122
6022
  export interface ExactList$AttributeSelectedEventParameters {
@@ -6131,12 +6031,6 @@ declare module "sap/ui/ux3/ExactList" {
6131
6031
  allAttributes?: object;
6132
6032
  }
6133
6033
 
6134
- /**
6135
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExactList$AttributeSelectedEventParameters'
6136
- * in 1.115.1 and any later releases.
6137
- */
6138
- export type $ExactListAttributeSelectedEventParameters = ExactList$AttributeSelectedEventParameters;
6139
-
6140
6034
  export type ExactList$AttributeSelectedEvent = Event<ExactList$AttributeSelectedEventParameters>;
6141
6035
  }
6142
6036
 
@@ -6745,7 +6639,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
6745
6639
  /**
6746
6640
  * On Select event.
6747
6641
  */
6748
- select?: (oEvent: Event<FacetFilterList$SelectEventParameters>) => void;
6642
+ select?: (oEvent: FacetFilterList$SelectEvent) => void;
6749
6643
  }
6750
6644
 
6751
6645
  export interface FacetFilterList$SelectEventParameters {
@@ -6771,12 +6665,6 @@ declare module "sap/ui/ux3/FacetFilterList" {
6771
6665
  all?: boolean;
6772
6666
  }
6773
6667
 
6774
- /**
6775
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FacetFilterList$SelectEventParameters'
6776
- * in 1.115.1 and any later releases.
6777
- */
6778
- export type $FacetFilterListSelectEventParameters = FacetFilterList$SelectEventParameters;
6779
-
6780
6668
  export type FacetFilterList$SelectEvent = Event<FacetFilterList$SelectEventParameters>;
6781
6669
  }
6782
6670
 
@@ -7667,29 +7555,27 @@ declare module "sap/ui/ux3/Feed" {
7667
7555
  /**
7668
7556
  * Event is fired when the filter is changed
7669
7557
  */
7670
- filterChange?: (oEvent: Event<Feed$FilterChangeEventParameters>) => void;
7558
+ filterChange?: (oEvent: Feed$FilterChangeEvent) => void;
7671
7559
 
7672
7560
  /**
7673
7561
  * Event is fired when the search function on SearchField is triggered
7674
7562
  */
7675
- search?: (oEvent: Event<Feed$SearchEventParameters>) => void;
7563
+ search?: (oEvent: Feed$SearchEvent) => void;
7676
7564
 
7677
7565
  /**
7678
7566
  * Event is fired when a new chunk is added
7679
7567
  */
7680
- chunkAdded?: (oEvent: Event<Feed$ChunkAddedEventParameters>) => void;
7568
+ chunkAdded?: (oEvent: Feed$ChunkAddedEvent) => void;
7681
7569
 
7682
7570
  /**
7683
7571
  * Event is fired when an item from the tools MenuButton was selected
7684
7572
  */
7685
- toolsItemSelected?: (
7686
- oEvent: Event<Feed$ToolsItemSelectedEventParameters>
7687
- ) => void;
7573
+ toolsItemSelected?: (oEvent: Feed$ToolsItemSelectedEvent) => void;
7688
7574
 
7689
7575
  /**
7690
7576
  * Event is fired when the live mode has changed
7691
7577
  */
7692
- toggleLive?: (oEvent: Event<Feed$ToggleLiveEventParameters>) => void;
7578
+ toggleLive?: (oEvent: Feed$ToggleLiveEvent) => void;
7693
7579
  }
7694
7580
 
7695
7581
  export interface Feed$ChunkAddedEventParameters {
@@ -7699,12 +7585,6 @@ declare module "sap/ui/ux3/Feed" {
7699
7585
  chunk?: FeedChunk;
7700
7586
  }
7701
7587
 
7702
- /**
7703
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$ChunkAddedEventParameters'
7704
- * in 1.115.1 and any later releases.
7705
- */
7706
- export type $FeedChunkAddedEventParameters = Feed$ChunkAddedEventParameters;
7707
-
7708
7588
  export type Feed$ChunkAddedEvent = Event<Feed$ChunkAddedEventParameters>;
7709
7589
 
7710
7590
  export interface Feed$FilterChangeEventParameters {
@@ -7714,12 +7594,6 @@ declare module "sap/ui/ux3/Feed" {
7714
7594
  newValue?: string;
7715
7595
  }
7716
7596
 
7717
- /**
7718
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$FilterChangeEventParameters'
7719
- * in 1.115.1 and any later releases.
7720
- */
7721
- export type $FeedFilterChangeEventParameters = Feed$FilterChangeEventParameters;
7722
-
7723
7597
  export type Feed$FilterChangeEvent = Event<Feed$FilterChangeEventParameters>;
7724
7598
 
7725
7599
  export interface Feed$SearchEventParameters {
@@ -7729,12 +7603,6 @@ declare module "sap/ui/ux3/Feed" {
7729
7603
  query?: string;
7730
7604
  }
7731
7605
 
7732
- /**
7733
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$SearchEventParameters'
7734
- * in 1.115.1 and any later releases.
7735
- */
7736
- export type $FeedSearchEventParameters = Feed$SearchEventParameters;
7737
-
7738
7606
  export type Feed$SearchEvent = Event<Feed$SearchEventParameters>;
7739
7607
 
7740
7608
  export interface Feed$ToggleLiveEventParameters {
@@ -7744,12 +7612,6 @@ declare module "sap/ui/ux3/Feed" {
7744
7612
  live?: boolean;
7745
7613
  }
7746
7614
 
7747
- /**
7748
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$ToggleLiveEventParameters'
7749
- * in 1.115.1 and any later releases.
7750
- */
7751
- export type $FeedToggleLiveEventParameters = Feed$ToggleLiveEventParameters;
7752
-
7753
7615
  export type Feed$ToggleLiveEvent = Event<Feed$ToggleLiveEventParameters>;
7754
7616
 
7755
7617
  export interface Feed$ToolsItemSelectedEventParameters {
@@ -7764,12 +7626,6 @@ declare module "sap/ui/ux3/Feed" {
7764
7626
  item?: MenuItemBase;
7765
7627
  }
7766
7628
 
7767
- /**
7768
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$ToolsItemSelectedEventParameters'
7769
- * in 1.115.1 and any later releases.
7770
- */
7771
- export type $FeedToolsItemSelectedEventParameters = Feed$ToolsItemSelectedEventParameters;
7772
-
7773
7629
  export type Feed$ToolsItemSelectedEvent = Event<Feed$ToolsItemSelectedEventParameters>;
7774
7630
  }
7775
7631
 
@@ -9268,16 +9124,12 @@ declare module "sap/ui/ux3/FeedChunk" {
9268
9124
  /**
9269
9125
  * Event is raised when a comment is added to the entry. This event is not supported for comment chunks.
9270
9126
  */
9271
- commentAdded?: (
9272
- oEvent: Event<FeedChunk$CommentAddedEventParameters>
9273
- ) => void;
9127
+ commentAdded?: (oEvent: FeedChunk$CommentAddedEvent) => void;
9274
9128
 
9275
9129
  /**
9276
9130
  * Event is raised when the user clicks to flag the entry. This event is not supported for comment chunks.
9277
9131
  */
9278
- toggleFlagged?: (
9279
- oEvent: Event<FeedChunk$ToggleFlaggedEventParameters>
9280
- ) => void;
9132
+ toggleFlagged?: (oEvent: FeedChunk$ToggleFlaggedEvent) => void;
9281
9133
 
9282
9134
  /**
9283
9135
  * Event is fired when the thumbnail or the name of the sender is clicked.
@@ -9287,17 +9139,13 @@ declare module "sap/ui/ux3/FeedChunk" {
9287
9139
  /**
9288
9140
  * Click on a @-reference
9289
9141
  */
9290
- referenceClicked?: (
9291
- oEvent: Event<FeedChunk$ReferenceClickedEventParameters>
9292
- ) => void;
9142
+ referenceClicked?: (oEvent: FeedChunk$ReferenceClickedEvent) => void;
9293
9143
 
9294
9144
  /**
9295
9145
  * Event is raised when the user clicks to set the entry as favorite. This event is not supported for comment
9296
9146
  * chunks.
9297
9147
  */
9298
- toggleFavorite?: (
9299
- oEvent: Event<FeedChunk$ToggleFavoriteEventParameters>
9300
- ) => void;
9148
+ toggleFavorite?: (oEvent: FeedChunk$ToggleFavoriteEvent) => void;
9301
9149
 
9302
9150
  /**
9303
9151
  * Event is fired when the inspect button was pressed
@@ -9307,16 +9155,12 @@ declare module "sap/ui/ux3/FeedChunk" {
9307
9155
  /**
9308
9156
  * Event is raised when the user clicks to share the entry. This event is not supported for comment chunks.
9309
9157
  */
9310
- toggleShared?: (
9311
- oEvent: Event<FeedChunk$ToggleSharedEventParameters>
9312
- ) => void;
9158
+ toggleShared?: (oEvent: FeedChunk$ToggleSharedEvent) => void;
9313
9159
 
9314
9160
  /**
9315
9161
  * Event is fired when an item from the action menu button was selected.
9316
9162
  */
9317
- actionItemSelected?: (
9318
- oEvent: Event<FeedChunk$ActionItemSelectedEventParameters>
9319
- ) => void;
9163
+ actionItemSelected?: (oEvent: FeedChunk$ActionItemSelectedEvent) => void;
9320
9164
  }
9321
9165
 
9322
9166
  export interface FeedChunk$ActionItemSelectedEventParameters {
@@ -9331,12 +9175,6 @@ declare module "sap/ui/ux3/FeedChunk" {
9331
9175
  item?: MenuItemBase;
9332
9176
  }
9333
9177
 
9334
- /**
9335
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ActionItemSelectedEventParameters'
9336
- * in 1.115.1 and any later releases.
9337
- */
9338
- export type $FeedChunkActionItemSelectedEventParameters = FeedChunk$ActionItemSelectedEventParameters;
9339
-
9340
9178
  export type FeedChunk$ActionItemSelectedEvent = Event<FeedChunk$ActionItemSelectedEventParameters>;
9341
9179
 
9342
9180
  export interface FeedChunk$CommentAddedEventParameters {
@@ -9346,32 +9184,14 @@ declare module "sap/ui/ux3/FeedChunk" {
9346
9184
  comment?: FeedChunk;
9347
9185
  }
9348
9186
 
9349
- /**
9350
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$CommentAddedEventParameters'
9351
- * in 1.115.1 and any later releases.
9352
- */
9353
- export type $FeedChunkCommentAddedEventParameters = FeedChunk$CommentAddedEventParameters;
9354
-
9355
9187
  export type FeedChunk$CommentAddedEvent = Event<FeedChunk$CommentAddedEventParameters>;
9356
9188
 
9357
9189
  export interface FeedChunk$DeletedEventParameters {}
9358
9190
 
9359
- /**
9360
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$DeletedEventParameters'
9361
- * in 1.115.1 and any later releases.
9362
- */
9363
- export type $FeedChunkDeletedEventParameters = FeedChunk$DeletedEventParameters;
9364
-
9365
9191
  export type FeedChunk$DeletedEvent = Event<FeedChunk$DeletedEventParameters>;
9366
9192
 
9367
9193
  export interface FeedChunk$InspectEventParameters {}
9368
9194
 
9369
- /**
9370
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$InspectEventParameters'
9371
- * in 1.115.1 and any later releases.
9372
- */
9373
- export type $FeedChunkInspectEventParameters = FeedChunk$InspectEventParameters;
9374
-
9375
9195
  export type FeedChunk$InspectEvent = Event<FeedChunk$InspectEventParameters>;
9376
9196
 
9377
9197
  export interface FeedChunk$ReferenceClickedEventParameters {
@@ -9381,22 +9201,10 @@ declare module "sap/ui/ux3/FeedChunk" {
9381
9201
  text?: string;
9382
9202
  }
9383
9203
 
9384
- /**
9385
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ReferenceClickedEventParameters'
9386
- * in 1.115.1 and any later releases.
9387
- */
9388
- export type $FeedChunkReferenceClickedEventParameters = FeedChunk$ReferenceClickedEventParameters;
9389
-
9390
9204
  export type FeedChunk$ReferenceClickedEvent = Event<FeedChunk$ReferenceClickedEventParameters>;
9391
9205
 
9392
9206
  export interface FeedChunk$SenderClickedEventParameters {}
9393
9207
 
9394
- /**
9395
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$SenderClickedEventParameters'
9396
- * in 1.115.1 and any later releases.
9397
- */
9398
- export type $FeedChunkSenderClickedEventParameters = FeedChunk$SenderClickedEventParameters;
9399
-
9400
9208
  export type FeedChunk$SenderClickedEvent = Event<FeedChunk$SenderClickedEventParameters>;
9401
9209
 
9402
9210
  export interface FeedChunk$ToggleFavoriteEventParameters {
@@ -9406,12 +9214,6 @@ declare module "sap/ui/ux3/FeedChunk" {
9406
9214
  favorite?: boolean;
9407
9215
  }
9408
9216
 
9409
- /**
9410
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ToggleFavoriteEventParameters'
9411
- * in 1.115.1 and any later releases.
9412
- */
9413
- export type $FeedChunkToggleFavoriteEventParameters = FeedChunk$ToggleFavoriteEventParameters;
9414
-
9415
9217
  export type FeedChunk$ToggleFavoriteEvent = Event<FeedChunk$ToggleFavoriteEventParameters>;
9416
9218
 
9417
9219
  export interface FeedChunk$ToggleFlaggedEventParameters {
@@ -9421,12 +9223,6 @@ declare module "sap/ui/ux3/FeedChunk" {
9421
9223
  flagged?: boolean;
9422
9224
  }
9423
9225
 
9424
- /**
9425
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ToggleFlaggedEventParameters'
9426
- * in 1.115.1 and any later releases.
9427
- */
9428
- export type $FeedChunkToggleFlaggedEventParameters = FeedChunk$ToggleFlaggedEventParameters;
9429
-
9430
9226
  export type FeedChunk$ToggleFlaggedEvent = Event<FeedChunk$ToggleFlaggedEventParameters>;
9431
9227
 
9432
9228
  export interface FeedChunk$ToggleSharedEventParameters {
@@ -9436,12 +9232,6 @@ declare module "sap/ui/ux3/FeedChunk" {
9436
9232
  shareed?: boolean;
9437
9233
  }
9438
9234
 
9439
- /**
9440
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FeedChunk$ToggleSharedEventParameters'
9441
- * in 1.115.1 and any later releases.
9442
- */
9443
- export type $FeedChunkToggleSharedEventParameters = FeedChunk$ToggleSharedEventParameters;
9444
-
9445
9235
  export type FeedChunk$ToggleSharedEvent = Event<FeedChunk$ToggleSharedEventParameters>;
9446
9236
  }
9447
9237
 
@@ -9735,7 +9525,7 @@ declare module "sap/ui/ux3/Feeder" {
9735
9525
  /**
9736
9526
  * Event is fired when the entered text is submitted
9737
9527
  */
9738
- submit?: (oEvent: Event<Feeder$SubmitEventParameters>) => void;
9528
+ submit?: (oEvent: Feeder$SubmitEvent) => void;
9739
9529
  }
9740
9530
 
9741
9531
  export interface Feeder$SubmitEventParameters {
@@ -9745,12 +9535,6 @@ declare module "sap/ui/ux3/Feeder" {
9745
9535
  text?: string;
9746
9536
  }
9747
9537
 
9748
- /**
9749
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feeder$SubmitEventParameters'
9750
- * in 1.115.1 and any later releases.
9751
- */
9752
- export type $FeederSubmitEventParameters = Feeder$SubmitEventParameters;
9753
-
9754
9538
  export type Feeder$SubmitEvent = Event<Feeder$SubmitEventParameters>;
9755
9539
  }
9756
9540
 
@@ -10153,7 +9937,7 @@ declare module "sap/ui/ux3/NavigationBar" {
10153
9937
  /**
10154
9938
  * Event is fired when an item is selected by the user
10155
9939
  */
10156
- select?: (oEvent: Event<NavigationBar$SelectEventParameters>) => void;
9940
+ select?: (oEvent: NavigationBar$SelectEvent) => void;
10157
9941
  }
10158
9942
 
10159
9943
  export interface NavigationBar$SelectEventParameters {
@@ -10168,12 +9952,6 @@ declare module "sap/ui/ux3/NavigationBar" {
10168
9952
  item?: NavigationItem;
10169
9953
  }
10170
9954
 
10171
- /**
10172
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NavigationBar$SelectEventParameters'
10173
- * in 1.115.1 and any later releases.
10174
- */
10175
- export type $NavigationBarSelectEventParameters = NavigationBar$SelectEventParameters;
10176
-
10177
9955
  export type NavigationBar$SelectEvent = Event<NavigationBar$SelectEventParameters>;
10178
9956
  }
10179
9957
 
@@ -10897,7 +10675,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10897
10675
  * Event is fired when the bar wants to be displayed depending on given flag. This allows the application
10898
10676
  * to decide what to do.
10899
10677
  */
10900
- display?: (oEvent: Event<NotificationBar$DisplayEventParameters>) => void;
10678
+ display?: (oEvent: NotificationBar$DisplayEvent) => void;
10901
10679
 
10902
10680
  /**
10903
10681
  * @since 1.12.2
@@ -10906,7 +10684,7 @@ declare module "sap/ui/ux3/NotificationBar" {
10906
10684
  * The event itself can be used from SAPUI5-version 1.12.2 since there was a bug in the previous versions
10907
10685
  * firing this event.
10908
10686
  */
10909
- resize?: (oEvent: Event<NotificationBar$ResizeEventParameters>) => void;
10687
+ resize?: (oEvent: NotificationBar$ResizeEvent) => void;
10910
10688
  }
10911
10689
 
10912
10690
  export interface NotificationBar$DisplayEventParameters {
@@ -10916,12 +10694,6 @@ declare module "sap/ui/ux3/NotificationBar" {
10916
10694
  show?: boolean;
10917
10695
  }
10918
10696
 
10919
- /**
10920
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationBar$DisplayEventParameters'
10921
- * in 1.115.1 and any later releases.
10922
- */
10923
- export type $NotificationBarDisplayEventParameters = NotificationBar$DisplayEventParameters;
10924
-
10925
10697
  export type NotificationBar$DisplayEvent = Event<NotificationBar$DisplayEventParameters>;
10926
10698
 
10927
10699
  export interface NotificationBar$ResizeEventParameters {
@@ -10932,12 +10704,6 @@ declare module "sap/ui/ux3/NotificationBar" {
10932
10704
  status?: NotificationBarStatus | keyof typeof NotificationBarStatus;
10933
10705
  }
10934
10706
 
10935
- /**
10936
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationBar$ResizeEventParameters'
10937
- * in 1.115.1 and any later releases.
10938
- */
10939
- export type $NotificationBarResizeEventParameters = NotificationBar$ResizeEventParameters;
10940
-
10941
10707
  export type NotificationBar$ResizeEvent = Event<NotificationBar$ResizeEventParameters>;
10942
10708
  }
10943
10709
 
@@ -11243,9 +11009,7 @@ declare module "sap/ui/ux3/Notifier" {
11243
11009
  /**
11244
11010
  * Event is fired when a message of the notifiers was selected.
11245
11011
  */
11246
- messageSelected?: (
11247
- oEvent: Event<Notifier$MessageSelectedEventParameters>
11248
- ) => void;
11012
+ messageSelected?: (oEvent: Notifier$MessageSelectedEvent) => void;
11249
11013
  }
11250
11014
 
11251
11015
  export interface Notifier$MessageSelectedEventParameters {
@@ -11260,12 +11024,6 @@ declare module "sap/ui/ux3/Notifier" {
11260
11024
  notifier?: Notifier;
11261
11025
  }
11262
11026
 
11263
- /**
11264
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Notifier$MessageSelectedEventParameters'
11265
- * in 1.115.1 and any later releases.
11266
- */
11267
- export type $NotifierMessageSelectedEventParameters = Notifier$MessageSelectedEventParameters;
11268
-
11269
11027
  export type Notifier$MessageSelectedEvent = Event<Notifier$MessageSelectedEventParameters>;
11270
11028
  }
11271
11029
 
@@ -11740,22 +11498,22 @@ declare module "sap/ui/ux3/Overlay" {
11740
11498
  /**
11741
11499
  * Event is fired when the Overlay starts closing.
11742
11500
  */
11743
- close?: (oEvent: Event<Overlay$CloseEventParameters>) => void;
11501
+ close?: (oEvent: Overlay$CloseEvent) => void;
11744
11502
 
11745
11503
  /**
11746
11504
  * Event is fired when the Overlay is closed.
11747
11505
  */
11748
- closed?: (oEvent: Event<Overlay$ClosedEventParameters>) => void;
11506
+ closed?: (oEvent: Overlay$ClosedEvent) => void;
11749
11507
 
11750
11508
  /**
11751
11509
  * Event is fired when the 'Open' button of the Overlay is clicked.
11752
11510
  */
11753
- openNew?: (oEvent: Event<Overlay$OpenNewEventParameters>) => void;
11511
+ openNew?: (oEvent: Overlay$OpenNewEvent) => void;
11754
11512
 
11755
11513
  /**
11756
11514
  * Event is fired when the Overlay is opened.
11757
11515
  */
11758
- open?: (oEvent: Event<Overlay$OpenEventParameters>) => void;
11516
+ open?: (oEvent: Overlay$OpenEvent) => void;
11759
11517
  }
11760
11518
 
11761
11519
  export interface Overlay$CloseEventParameters {
@@ -11765,12 +11523,6 @@ declare module "sap/ui/ux3/Overlay" {
11765
11523
  id?: string;
11766
11524
  }
11767
11525
 
11768
- /**
11769
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$CloseEventParameters'
11770
- * in 1.115.1 and any later releases.
11771
- */
11772
- export type $OverlayCloseEventParameters = Overlay$CloseEventParameters;
11773
-
11774
11526
  export type Overlay$CloseEvent = Event<Overlay$CloseEventParameters>;
11775
11527
 
11776
11528
  export interface Overlay$ClosedEventParameters {
@@ -11780,12 +11532,6 @@ declare module "sap/ui/ux3/Overlay" {
11780
11532
  id?: string;
11781
11533
  }
11782
11534
 
11783
- /**
11784
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$ClosedEventParameters'
11785
- * in 1.115.1 and any later releases.
11786
- */
11787
- export type $OverlayClosedEventParameters = Overlay$ClosedEventParameters;
11788
-
11789
11535
  export type Overlay$ClosedEvent = Event<Overlay$ClosedEventParameters>;
11790
11536
 
11791
11537
  export interface Overlay$OpenEventParameters {
@@ -11795,12 +11541,6 @@ declare module "sap/ui/ux3/Overlay" {
11795
11541
  id?: string;
11796
11542
  }
11797
11543
 
11798
- /**
11799
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$OpenEventParameters'
11800
- * in 1.115.1 and any later releases.
11801
- */
11802
- export type $OverlayOpenEventParameters = Overlay$OpenEventParameters;
11803
-
11804
11544
  export type Overlay$OpenEvent = Event<Overlay$OpenEventParameters>;
11805
11545
 
11806
11546
  export interface Overlay$OpenNewEventParameters {
@@ -11810,12 +11550,6 @@ declare module "sap/ui/ux3/Overlay" {
11810
11550
  id?: string;
11811
11551
  }
11812
11552
 
11813
- /**
11814
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$OpenNewEventParameters'
11815
- * in 1.115.1 and any later releases.
11816
- */
11817
- export type $OverlayOpenNewEventParameters = Overlay$OpenNewEventParameters;
11818
-
11819
11553
  export type Overlay$OpenNewEvent = Event<Overlay$OpenNewEventParameters>;
11820
11554
  }
11821
11555
 
@@ -13171,20 +12905,18 @@ declare module "sap/ui/ux3/QuickView" {
13171
12905
  /**
13172
12906
  * Action is selected in Action Bar
13173
12907
  */
13174
- actionSelected?: (
13175
- oEvent: Event<QuickView$ActionSelectedEventParameters>
13176
- ) => void;
12908
+ actionSelected?: (oEvent: QuickView$ActionSelectedEvent) => void;
13177
12909
 
13178
12910
  /**
13179
12911
  * Fired when a new feed entry is submitted.
13180
12912
  */
13181
- feedSubmit?: (oEvent: Event<QuickView$FeedSubmitEventParameters>) => void;
12913
+ feedSubmit?: (oEvent: QuickView$FeedSubmitEvent) => void;
13182
12914
 
13183
12915
  /**
13184
12916
  * Event is fired when a user clicks on the firstTitle link. Call the preventDefault method of the event
13185
12917
  * object to cancel browser navigation.
13186
12918
  */
13187
- navigate?: (oEvent: Event<QuickView$NavigateEventParameters>) => void;
12919
+ navigate?: (oEvent: QuickView$NavigateEvent) => void;
13188
12920
  }
13189
12921
 
13190
12922
  export interface QuickView$ActionSelectedEventParameters {
@@ -13205,12 +12937,6 @@ declare module "sap/ui/ux3/QuickView" {
13205
12937
  newState?: string;
13206
12938
  }
13207
12939
 
13208
- /**
13209
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'QuickView$ActionSelectedEventParameters'
13210
- * in 1.115.1 and any later releases.
13211
- */
13212
- export type $QuickViewActionSelectedEventParameters = QuickView$ActionSelectedEventParameters;
13213
-
13214
12940
  export type QuickView$ActionSelectedEvent = Event<QuickView$ActionSelectedEventParameters>;
13215
12941
 
13216
12942
  export interface QuickView$FeedSubmitEventParameters {
@@ -13220,12 +12946,6 @@ declare module "sap/ui/ux3/QuickView" {
13220
12946
  text?: string;
13221
12947
  }
13222
12948
 
13223
- /**
13224
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'QuickView$FeedSubmitEventParameters'
13225
- * in 1.115.1 and any later releases.
13226
- */
13227
- export type $QuickViewFeedSubmitEventParameters = QuickView$FeedSubmitEventParameters;
13228
-
13229
12949
  export type QuickView$FeedSubmitEvent = Event<QuickView$FeedSubmitEventParameters>;
13230
12950
 
13231
12951
  export interface QuickView$NavigateEventParameters {
@@ -13235,12 +12955,6 @@ declare module "sap/ui/ux3/QuickView" {
13235
12955
  href?: string;
13236
12956
  }
13237
12957
 
13238
- /**
13239
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'QuickView$NavigateEventParameters'
13240
- * in 1.115.1 and any later releases.
13241
- */
13242
- export type $QuickViewNavigateEventParameters = QuickView$NavigateEventParameters;
13243
-
13244
12958
  export type QuickView$NavigateEvent = Event<QuickView$NavigateEventParameters>;
13245
12959
  }
13246
12960
 
@@ -15030,17 +14744,13 @@ declare module "sap/ui/ux3/Shell" {
15030
14744
  * is responsible for displaying the correct content for the selected one of the newly created sub-items.
15031
14745
  * The Shell will currently always mark the first sub-item as selected.
15032
14746
  */
15033
- worksetItemSelected?: (
15034
- oEvent: Event<Shell$WorksetItemSelectedEventParameters>
15035
- ) => void;
14747
+ worksetItemSelected?: (oEvent: Shell$WorksetItemSelectedEvent) => void;
15036
14748
 
15037
14749
  /**
15038
14750
  * An item in the right-hand-side pane bar has been selected, the pane is now visible and can be filled
15039
14751
  * with UI elements.
15040
14752
  */
15041
- paneBarItemSelected?: (
15042
- oEvent: Event<Shell$PaneBarItemSelectedEventParameters>
15043
- ) => void;
14753
+ paneBarItemSelected?: (oEvent: Shell$PaneBarItemSelectedEvent) => void;
15044
14754
 
15045
14755
  /**
15046
14756
  * Fired when the user clicks the "Log-off" button
@@ -15063,27 +14773,15 @@ declare module "sap/ui/ux3/Shell" {
15063
14773
  * Fired after a side pane of the shell is closed. It is also fired, when an open pane is closed by calling
15064
14774
  * setShowPane(false), if and only if the pane was opened before.
15065
14775
  */
15066
- paneClosed?: (oEvent: Event<Shell$PaneClosedEventParameters>) => void;
14776
+ paneClosed?: (oEvent: Shell$PaneClosedEvent) => void;
15067
14777
  }
15068
14778
 
15069
14779
  export interface Shell$FeedSubmitEventParameters {}
15070
14780
 
15071
- /**
15072
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$FeedSubmitEventParameters'
15073
- * in 1.115.1 and any later releases.
15074
- */
15075
- export type $ShellFeedSubmitEventParameters = Shell$FeedSubmitEventParameters;
15076
-
15077
14781
  export type Shell$FeedSubmitEvent = Event<Shell$FeedSubmitEventParameters>;
15078
14782
 
15079
14783
  export interface Shell$LogoutEventParameters {}
15080
14784
 
15081
- /**
15082
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$LogoutEventParameters'
15083
- * in 1.115.1 and any later releases.
15084
- */
15085
- export type $ShellLogoutEventParameters = Shell$LogoutEventParameters;
15086
-
15087
14785
  export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters>;
15088
14786
 
15089
14787
  export interface Shell$PaneBarItemSelectedEventParameters {
@@ -15103,12 +14801,6 @@ declare module "sap/ui/ux3/Shell" {
15103
14801
  key?: string;
15104
14802
  }
15105
14803
 
15106
- /**
15107
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$PaneBarItemSelectedEventParameters'
15108
- * in 1.115.1 and any later releases.
15109
- */
15110
- export type $ShellPaneBarItemSelectedEventParameters = Shell$PaneBarItemSelectedEventParameters;
15111
-
15112
14804
  export type Shell$PaneBarItemSelectedEvent = Event<Shell$PaneBarItemSelectedEventParameters>;
15113
14805
 
15114
14806
  export interface Shell$PaneClosedEventParameters {
@@ -15118,22 +14810,10 @@ declare module "sap/ui/ux3/Shell" {
15118
14810
  id?: string;
15119
14811
  }
15120
14812
 
15121
- /**
15122
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$PaneClosedEventParameters'
15123
- * in 1.115.1 and any later releases.
15124
- */
15125
- export type $ShellPaneClosedEventParameters = Shell$PaneClosedEventParameters;
15126
-
15127
14813
  export type Shell$PaneClosedEvent = Event<Shell$PaneClosedEventParameters>;
15128
14814
 
15129
14815
  export interface Shell$SearchEventParameters {}
15130
14816
 
15131
- /**
15132
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$SearchEventParameters'
15133
- * in 1.115.1 and any later releases.
15134
- */
15135
- export type $ShellSearchEventParameters = Shell$SearchEventParameters;
15136
-
15137
14817
  export type Shell$SearchEvent = Event<Shell$SearchEventParameters>;
15138
14818
 
15139
14819
  export interface Shell$WorksetItemSelectedEventParameters {
@@ -15154,12 +14834,6 @@ declare module "sap/ui/ux3/Shell" {
15154
14834
  key?: string;
15155
14835
  }
15156
14836
 
15157
- /**
15158
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$WorksetItemSelectedEventParameters'
15159
- * in 1.115.1 and any later releases.
15160
- */
15161
- export type $ShellWorksetItemSelectedEventParameters = Shell$WorksetItemSelectedEventParameters;
15162
-
15163
14837
  export type Shell$WorksetItemSelectedEvent = Event<Shell$WorksetItemSelectedEventParameters>;
15164
14838
  }
15165
14839
 
@@ -15379,7 +15053,7 @@ declare module "sap/ui/ux3/ThingAction" {
15379
15053
  /**
15380
15054
  * Event will be fired when the action was triggered.
15381
15055
  */
15382
- select?: (oEvent: Event<ThingAction$SelectEventParameters>) => void;
15056
+ select?: (oEvent: ThingAction$SelectEvent) => void;
15383
15057
  }
15384
15058
 
15385
15059
  export interface ThingAction$SelectEventParameters {
@@ -15394,12 +15068,6 @@ declare module "sap/ui/ux3/ThingAction" {
15394
15068
  action?: ThingAction;
15395
15069
  }
15396
15070
 
15397
- /**
15398
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingAction$SelectEventParameters'
15399
- * in 1.115.1 and any later releases.
15400
- */
15401
- export type $ThingActionSelectEventParameters = ThingAction$SelectEventParameters;
15402
-
15403
15071
  export type ThingAction$SelectEvent = Event<ThingAction$SelectEventParameters>;
15404
15072
  }
15405
15073
 
@@ -16786,24 +16454,18 @@ declare module "sap/ui/ux3/ThingInspector" {
16786
16454
  /**
16787
16455
  * Further thing related Action selected
16788
16456
  */
16789
- actionSelected?: (
16790
- oEvent: Event<ThingInspector$ActionSelectedEventParameters>
16791
- ) => void;
16457
+ actionSelected?: (oEvent: ThingInspector$ActionSelectedEvent) => void;
16792
16458
 
16793
16459
  /**
16794
16460
  * Event for facet selection. The application is responsible for displaying the correct content for the
16795
16461
  * selected one. The ThingInspector will currently always mark the first facet as selected.
16796
16462
  */
16797
- facetSelected?: (
16798
- oEvent: Event<ThingInspector$FacetSelectedEventParameters>
16799
- ) => void;
16463
+ facetSelected?: (oEvent: ThingInspector$FacetSelectedEvent) => void;
16800
16464
 
16801
16465
  /**
16802
16466
  * Fired when a new feed entry is submitted.
16803
16467
  */
16804
- feedSubmit?: (
16805
- oEvent: Event<ThingInspector$FeedSubmitEventParameters>
16806
- ) => void;
16468
+ feedSubmit?: (oEvent: ThingInspector$FeedSubmitEvent) => void;
16807
16469
  }
16808
16470
 
16809
16471
  export interface ThingInspector$ActionSelectedEventParameters {
@@ -16818,12 +16480,6 @@ declare module "sap/ui/ux3/ThingInspector" {
16818
16480
  action?: ThingAction;
16819
16481
  }
16820
16482
 
16821
- /**
16822
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingInspector$ActionSelectedEventParameters'
16823
- * in 1.115.1 and any later releases.
16824
- */
16825
- export type $ThingInspectorActionSelectedEventParameters = ThingInspector$ActionSelectedEventParameters;
16826
-
16827
16483
  export type ThingInspector$ActionSelectedEvent = Event<ThingInspector$ActionSelectedEventParameters>;
16828
16484
 
16829
16485
  export interface ThingInspector$FacetSelectedEventParameters {
@@ -16843,12 +16499,6 @@ declare module "sap/ui/ux3/ThingInspector" {
16843
16499
  key?: string;
16844
16500
  }
16845
16501
 
16846
- /**
16847
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingInspector$FacetSelectedEventParameters'
16848
- * in 1.115.1 and any later releases.
16849
- */
16850
- export type $ThingInspectorFacetSelectedEventParameters = ThingInspector$FacetSelectedEventParameters;
16851
-
16852
16502
  export type ThingInspector$FacetSelectedEvent = Event<ThingInspector$FacetSelectedEventParameters>;
16853
16503
 
16854
16504
  export interface ThingInspector$FeedSubmitEventParameters {
@@ -16858,12 +16508,6 @@ declare module "sap/ui/ux3/ThingInspector" {
16858
16508
  text?: string;
16859
16509
  }
16860
16510
 
16861
- /**
16862
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingInspector$FeedSubmitEventParameters'
16863
- * in 1.115.1 and any later releases.
16864
- */
16865
- export type $ThingInspectorFeedSubmitEventParameters = ThingInspector$FeedSubmitEventParameters;
16866
-
16867
16511
  export type ThingInspector$FeedSubmitEvent = Event<ThingInspector$FeedSubmitEventParameters>;
16868
16512
  }
16869
16513
 
@@ -17553,9 +17197,7 @@ declare module "sap/ui/ux3/ThingViewer" {
17553
17197
  * Event for facet selection. The application is responsible for displaying the correct content for the
17554
17198
  * selected one. The ThingInspector will currently always mark the first facet as selected.
17555
17199
  */
17556
- facetSelected?: (
17557
- oEvent: Event<ThingViewer$FacetSelectedEventParameters>
17558
- ) => void;
17200
+ facetSelected?: (oEvent: ThingViewer$FacetSelectedEvent) => void;
17559
17201
  }
17560
17202
 
17561
17203
  export interface ThingViewer$FacetSelectedEventParameters {
@@ -17575,12 +17217,6 @@ declare module "sap/ui/ux3/ThingViewer" {
17575
17217
  key?: string;
17576
17218
  }
17577
17219
 
17578
- /**
17579
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ThingViewer$FacetSelectedEventParameters'
17580
- * in 1.115.1 and any later releases.
17581
- */
17582
- export type $ThingViewerFacetSelectedEventParameters = ThingViewer$FacetSelectedEventParameters;
17583
-
17584
17220
  export type ThingViewer$FacetSelectedEvent = Event<ThingViewer$FacetSelectedEventParameters>;
17585
17221
  }
17586
17222
 
@@ -18793,7 +18429,7 @@ declare module "sap/ui/ux3/ToolPopup" {
18793
18429
  /**
18794
18430
  * Event is fired whenever the user clicks the Enter or the Enter key inside the pop up
18795
18431
  */
18796
- enter?: (oEvent: Event<ToolPopup$EnterEventParameters>) => void;
18432
+ enter?: (oEvent: ToolPopup$EnterEvent) => void;
18797
18433
 
18798
18434
  /**
18799
18435
  * Event is fired when one of the icon properties is modified (Note: The icon is not rendered by the ToolPopup).
@@ -18817,22 +18453,10 @@ declare module "sap/ui/ux3/ToolPopup" {
18817
18453
 
18818
18454
  export interface ToolPopup$CloseEventParameters {}
18819
18455
 
18820
- /**
18821
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$CloseEventParameters'
18822
- * in 1.115.1 and any later releases.
18823
- */
18824
- export type $ToolPopupCloseEventParameters = ToolPopup$CloseEventParameters;
18825
-
18826
18456
  export type ToolPopup$CloseEvent = Event<ToolPopup$CloseEventParameters>;
18827
18457
 
18828
18458
  export interface ToolPopup$ClosedEventParameters {}
18829
18459
 
18830
- /**
18831
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$ClosedEventParameters'
18832
- * in 1.115.1 and any later releases.
18833
- */
18834
- export type $ToolPopupClosedEventParameters = ToolPopup$ClosedEventParameters;
18835
-
18836
18460
  export type ToolPopup$ClosedEvent = Event<ToolPopup$ClosedEventParameters>;
18837
18461
 
18838
18462
  export interface ToolPopup$EnterEventParameters {
@@ -18847,42 +18471,18 @@ declare module "sap/ui/ux3/ToolPopup" {
18847
18471
  originalSrcControl?: Control;
18848
18472
  }
18849
18473
 
18850
- /**
18851
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$EnterEventParameters'
18852
- * in 1.115.1 and any later releases.
18853
- */
18854
- export type $ToolPopupEnterEventParameters = ToolPopup$EnterEventParameters;
18855
-
18856
18474
  export type ToolPopup$EnterEvent = Event<ToolPopup$EnterEventParameters>;
18857
18475
 
18858
18476
  export interface ToolPopup$IconChangedEventParameters {}
18859
18477
 
18860
- /**
18861
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$IconChangedEventParameters'
18862
- * in 1.115.1 and any later releases.
18863
- */
18864
- export type $ToolPopupIconChangedEventParameters = ToolPopup$IconChangedEventParameters;
18865
-
18866
18478
  export type ToolPopup$IconChangedEvent = Event<ToolPopup$IconChangedEventParameters>;
18867
18479
 
18868
18480
  export interface ToolPopup$OpenEventParameters {}
18869
18481
 
18870
- /**
18871
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$OpenEventParameters'
18872
- * in 1.115.1 and any later releases.
18873
- */
18874
- export type $ToolPopupOpenEventParameters = ToolPopup$OpenEventParameters;
18875
-
18876
18482
  export type ToolPopup$OpenEvent = Event<ToolPopup$OpenEventParameters>;
18877
18483
 
18878
18484
  export interface ToolPopup$OpenedEventParameters {}
18879
18485
 
18880
- /**
18881
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ToolPopup$OpenedEventParameters'
18882
- * in 1.115.1 and any later releases.
18883
- */
18884
- export type $ToolPopupOpenedEventParameters = ToolPopup$OpenedEventParameters;
18885
-
18886
18486
  export type ToolPopup$OpenedEvent = Event<ToolPopup$OpenedEventParameters>;
18887
18487
  }
18888
18488