@openui5/types 1.116.0 → 1.117.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.1
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1628,17 +1628,20 @@ declare module "sap/m/library" {
1628
1628
  */
1629
1629
  export enum MultiSelectMode {
1630
1630
  /**
1631
- * Renders the `clearAll` icon.
1631
+ * The Select All functionality is not available. Instead, it is only possible to remove the selection of
1632
+ * all items. For a `sap.m.Table`, a Deselect All icon is rendered.
1632
1633
  */
1633
1634
  ClearAll = "ClearAll",
1634
1635
  /**
1635
- * Renders the `selectAll` checkbox (default behavior).
1636
+ * The Select All functionality is available (default behavior). For a `sap.m.Table`, a Select All checkbox
1637
+ * is rendered.
1636
1638
  */
1637
1639
  Default = "Default",
1638
1640
  /**
1639
1641
  * @since 1.109
1640
1642
  *
1641
- * Renders the `selectAll` checkbox with warning popover. Available only for sap.m.Table control
1643
+ * The Select All functionality is available. For a `sap.m.Table`, a Select All checkbox with a warning
1644
+ * popover is rendered if not all items could be selected (for example, because of growing).
1642
1645
  */
1643
1646
  SelectAll = "SelectAll",
1644
1647
  }
@@ -2361,6 +2364,21 @@ declare module "sap/m/library" {
2361
2364
  */
2362
2365
  export type SelectColumnRatio = string;
2363
2366
 
2367
+ /**
2368
+ * @since 1.117.0
2369
+ *
2370
+ * Defines the control that will receive the initial focus in the `sap.m.SelectDialog` or `sap.m.TableSelectDialog`.
2371
+ */
2372
+ export enum SelectDialogInitialFocus {
2373
+ /**
2374
+ * Content list.
2375
+ */
2376
+ List = "List",
2377
+ /**
2378
+ * SearchField control
2379
+ */
2380
+ SearchField = "SearchField",
2381
+ }
2364
2382
  /**
2365
2383
  * @since 1.48
2366
2384
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -3028,6 +3046,19 @@ declare module "sap/m/library" {
3028
3046
  */
3029
3047
  Uploading = "Uploading",
3030
3048
  }
3049
+ /**
3050
+ * Type of the upload {@link sap.m.UploadSetItem}.
3051
+ */
3052
+ export enum UploadType {
3053
+ /**
3054
+ * The file has been uploaded from cloud.
3055
+ */
3056
+ Cloud = "Cloud",
3057
+ /**
3058
+ * The file has been uploaded from your system.
3059
+ */
3060
+ Native = "Native",
3061
+ }
3031
3062
  /**
3032
3063
  * @since 1.10
3033
3064
  *
@@ -4604,11 +4635,17 @@ declare module "sap/m/ActionSheet" {
4604
4635
  origin?: Button;
4605
4636
  }
4606
4637
 
4607
- export type ActionSheet$AfterCloseEvent = Event<ActionSheet$AfterCloseEventParameters>;
4638
+ export type ActionSheet$AfterCloseEvent = Event<
4639
+ ActionSheet$AfterCloseEventParameters,
4640
+ ActionSheet
4641
+ >;
4608
4642
 
4609
4643
  export interface ActionSheet$AfterOpenEventParameters {}
4610
4644
 
4611
- export type ActionSheet$AfterOpenEvent = Event<ActionSheet$AfterOpenEventParameters>;
4645
+ export type ActionSheet$AfterOpenEvent = Event<
4646
+ ActionSheet$AfterOpenEventParameters,
4647
+ ActionSheet
4648
+ >;
4612
4649
 
4613
4650
  export interface ActionSheet$BeforeCloseEventParameters {
4614
4651
  /**
@@ -4619,19 +4656,31 @@ declare module "sap/m/ActionSheet" {
4619
4656
  origin?: Button;
4620
4657
  }
4621
4658
 
4622
- export type ActionSheet$BeforeCloseEvent = Event<ActionSheet$BeforeCloseEventParameters>;
4659
+ export type ActionSheet$BeforeCloseEvent = Event<
4660
+ ActionSheet$BeforeCloseEventParameters,
4661
+ ActionSheet
4662
+ >;
4623
4663
 
4624
4664
  export interface ActionSheet$BeforeOpenEventParameters {}
4625
4665
 
4626
- export type ActionSheet$BeforeOpenEvent = Event<ActionSheet$BeforeOpenEventParameters>;
4666
+ export type ActionSheet$BeforeOpenEvent = Event<
4667
+ ActionSheet$BeforeOpenEventParameters,
4668
+ ActionSheet
4669
+ >;
4627
4670
 
4628
4671
  export interface ActionSheet$CancelButtonPressEventParameters {}
4629
4672
 
4630
- export type ActionSheet$CancelButtonPressEvent = Event<ActionSheet$CancelButtonPressEventParameters>;
4673
+ export type ActionSheet$CancelButtonPressEvent = Event<
4674
+ ActionSheet$CancelButtonPressEventParameters,
4675
+ ActionSheet
4676
+ >;
4631
4677
 
4632
4678
  export interface ActionSheet$CancelButtonTapEventParameters {}
4633
4679
 
4634
- export type ActionSheet$CancelButtonTapEvent = Event<ActionSheet$CancelButtonTapEventParameters>;
4680
+ export type ActionSheet$CancelButtonTapEvent = Event<
4681
+ ActionSheet$CancelButtonTapEventParameters,
4682
+ ActionSheet
4683
+ >;
4635
4684
  }
4636
4685
 
4637
4686
  declare module "sap/m/App" {
@@ -5220,7 +5269,10 @@ declare module "sap/m/App" {
5220
5269
  landscape?: boolean;
5221
5270
  }
5222
5271
 
5223
- export type App$OrientationChangeEvent = Event<App$OrientationChangeEventParameters>;
5272
+ export type App$OrientationChangeEvent = Event<
5273
+ App$OrientationChangeEventParameters,
5274
+ App
5275
+ >;
5224
5276
  }
5225
5277
 
5226
5278
  declare module "sap/m/Avatar" {
@@ -5602,6 +5654,19 @@ declare module "sap/m/Avatar" {
5602
5654
  * @returns Value of property `displaySize`
5603
5655
  */
5604
5656
  getDisplaySize(): AvatarSize | keyof typeof AvatarSize;
5657
+ /**
5658
+ * @since 1.117.0
5659
+ *
5660
+ * Gets current value of property {@link #getEnabled enabled}.
5661
+ *
5662
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
5663
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
5664
+ *
5665
+ * Default value is `true`.
5666
+ *
5667
+ * @returns Value of property `enabled`
5668
+ */
5669
+ getEnabled(): boolean;
5605
5670
  /**
5606
5671
  * Gets current value of property {@link #getFallbackIcon fallbackIcon}.
5607
5672
  *
@@ -5897,6 +5962,26 @@ declare module "sap/m/Avatar" {
5897
5962
  */
5898
5963
  sDisplaySize?: AvatarSize | keyof typeof AvatarSize
5899
5964
  ): this;
5965
+ /**
5966
+ * @since 1.117.0
5967
+ *
5968
+ * Sets a new value for property {@link #getEnabled enabled}.
5969
+ *
5970
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
5971
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
5972
+ *
5973
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5974
+ *
5975
+ * Default value is `true`.
5976
+ *
5977
+ * @returns Reference to `this` in order to allow method chaining
5978
+ */
5979
+ setEnabled(
5980
+ /**
5981
+ * New value for property `enabled`
5982
+ */
5983
+ bEnabled?: boolean
5984
+ ): this;
5900
5985
  /**
5901
5986
  * Sets a new value for property {@link #getFallbackIcon fallbackIcon}.
5902
5987
  *
@@ -6120,6 +6205,14 @@ declare module "sap/m/Avatar" {
6120
6205
  | PropertyBindingInfo
6121
6206
  | `{${string}}`;
6122
6207
 
6208
+ /**
6209
+ * @since 1.117.0
6210
+ *
6211
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
6212
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
6213
+ */
6214
+ enabled?: boolean | PropertyBindingInfo | `{${string}}`;
6215
+
6123
6216
  /**
6124
6217
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
6125
6218
  * control.
@@ -6146,7 +6239,7 @@ declare module "sap/m/Avatar" {
6146
6239
 
6147
6240
  export interface Avatar$PressEventParameters {}
6148
6241
 
6149
- export type Avatar$PressEvent = Event<Avatar$PressEventParameters>;
6242
+ export type Avatar$PressEvent = Event<Avatar$PressEventParameters, Avatar>;
6150
6243
  }
6151
6244
 
6152
6245
  declare module "sap/m/AvatarColor" {
@@ -8184,7 +8277,10 @@ declare module "sap/m/BusyDialog" {
8184
8277
  cancelPressed?: boolean;
8185
8278
  }
8186
8279
 
8187
- export type BusyDialog$CloseEvent = Event<BusyDialog$CloseEventParameters>;
8280
+ export type BusyDialog$CloseEvent = Event<
8281
+ BusyDialog$CloseEventParameters,
8282
+ BusyDialog
8283
+ >;
8188
8284
  }
8189
8285
 
8190
8286
  declare module "sap/m/BusyIndicator" {
@@ -9501,11 +9597,11 @@ declare module "sap/m/Button" {
9501
9597
 
9502
9598
  export interface Button$PressEventParameters {}
9503
9599
 
9504
- export type Button$PressEvent = Event<Button$PressEventParameters>;
9600
+ export type Button$PressEvent = Event<Button$PressEventParameters, Button>;
9505
9601
 
9506
9602
  export interface Button$TapEventParameters {}
9507
9603
 
9508
- export type Button$TapEvent = Event<Button$TapEventParameters>;
9604
+ export type Button$TapEvent = Event<Button$TapEventParameters, Button>;
9509
9605
  }
9510
9606
 
9511
9607
  declare module "sap/m/Carousel" {
@@ -10525,7 +10621,10 @@ declare module "sap/m/Carousel" {
10525
10621
  activePages?: any[];
10526
10622
  }
10527
10623
 
10528
- export type Carousel$BeforePageChangedEvent = Event<Carousel$BeforePageChangedEventParameters>;
10624
+ export type Carousel$BeforePageChangedEvent = Event<
10625
+ Carousel$BeforePageChangedEventParameters,
10626
+ Carousel
10627
+ >;
10529
10628
 
10530
10629
  export interface Carousel$LoadPageEventParameters {
10531
10630
  /**
@@ -10534,7 +10633,10 @@ declare module "sap/m/Carousel" {
10534
10633
  pageId?: string;
10535
10634
  }
10536
10635
 
10537
- export type Carousel$LoadPageEvent = Event<Carousel$LoadPageEventParameters>;
10636
+ export type Carousel$LoadPageEvent = Event<
10637
+ Carousel$LoadPageEventParameters,
10638
+ Carousel
10639
+ >;
10538
10640
 
10539
10641
  export interface Carousel$PageChangedEventParameters {
10540
10642
  /**
@@ -10553,7 +10655,10 @@ declare module "sap/m/Carousel" {
10553
10655
  activePages?: any[];
10554
10656
  }
10555
10657
 
10556
- export type Carousel$PageChangedEvent = Event<Carousel$PageChangedEventParameters>;
10658
+ export type Carousel$PageChangedEvent = Event<
10659
+ Carousel$PageChangedEventParameters,
10660
+ Carousel
10661
+ >;
10557
10662
 
10558
10663
  export interface Carousel$UnloadPageEventParameters {
10559
10664
  /**
@@ -10562,7 +10667,10 @@ declare module "sap/m/Carousel" {
10562
10667
  pageId?: string;
10563
10668
  }
10564
10669
 
10565
- export type Carousel$UnloadPageEvent = Event<Carousel$UnloadPageEventParameters>;
10670
+ export type Carousel$UnloadPageEvent = Event<
10671
+ Carousel$UnloadPageEventParameters,
10672
+ Carousel
10673
+ >;
10566
10674
  }
10567
10675
 
10568
10676
  declare module "sap/m/CarouselLayout" {
@@ -11586,7 +11694,10 @@ declare module "sap/m/CheckBox" {
11586
11694
  selected?: boolean;
11587
11695
  }
11588
11696
 
11589
- export type CheckBox$SelectEvent = Event<CheckBox$SelectEventParameters>;
11697
+ export type CheckBox$SelectEvent = Event<
11698
+ CheckBox$SelectEventParameters,
11699
+ CheckBox
11700
+ >;
11590
11701
  }
11591
11702
 
11592
11703
  declare module "sap/m/ColorPalette" {
@@ -11930,7 +12041,10 @@ declare module "sap/m/ColorPalette" {
11930
12041
  defaultAction?: boolean;
11931
12042
  }
11932
12043
 
11933
- export type ColorPalette$ColorSelectEvent = Event<ColorPalette$ColorSelectEventParameters>;
12044
+ export type ColorPalette$ColorSelectEvent = Event<
12045
+ ColorPalette$ColorSelectEventParameters,
12046
+ ColorPalette
12047
+ >;
11934
12048
 
11935
12049
  export interface ColorPalette$LiveChangeEventParameters {
11936
12050
  /**
@@ -11979,7 +12093,10 @@ declare module "sap/m/ColorPalette" {
11979
12093
  alpha?: string;
11980
12094
  }
11981
12095
 
11982
- export type ColorPalette$LiveChangeEvent = Event<ColorPalette$LiveChangeEventParameters>;
12096
+ export type ColorPalette$LiveChangeEvent = Event<
12097
+ ColorPalette$LiveChangeEventParameters,
12098
+ ColorPalette
12099
+ >;
11983
12100
  }
11984
12101
 
11985
12102
  declare module "sap/m/ColorPalettePopover" {
@@ -12493,7 +12610,10 @@ declare module "sap/m/ColorPalettePopover" {
12493
12610
  defaultAction?: boolean;
12494
12611
  }
12495
12612
 
12496
- export type ColorPalettePopover$ColorSelectEvent = Event<ColorPalettePopover$ColorSelectEventParameters>;
12613
+ export type ColorPalettePopover$ColorSelectEvent = Event<
12614
+ ColorPalettePopover$ColorSelectEventParameters,
12615
+ ColorPalettePopover
12616
+ >;
12497
12617
 
12498
12618
  export interface ColorPalettePopover$LiveChangeEventParameters {
12499
12619
  /**
@@ -12542,7 +12662,10 @@ declare module "sap/m/ColorPalettePopover" {
12542
12662
  alpha?: string;
12543
12663
  }
12544
12664
 
12545
- export type ColorPalettePopover$LiveChangeEvent = Event<ColorPalettePopover$LiveChangeEventParameters>;
12665
+ export type ColorPalettePopover$LiveChangeEvent = Event<
12666
+ ColorPalettePopover$LiveChangeEventParameters,
12667
+ ColorPalettePopover
12668
+ >;
12546
12669
  }
12547
12670
 
12548
12671
  declare module "sap/m/Column" {
@@ -14357,7 +14480,10 @@ declare module "sap/m/ComboBox" {
14357
14480
  itemPressed?: boolean;
14358
14481
  }
14359
14482
 
14360
- export type ComboBox$ChangeEvent = Event<ComboBox$ChangeEventParameters>;
14483
+ export type ComboBox$ChangeEvent = Event<
14484
+ ComboBox$ChangeEventParameters,
14485
+ ComboBox
14486
+ >;
14361
14487
 
14362
14488
  export interface ComboBox$SelectionChangeEventParameters {
14363
14489
  /**
@@ -14366,7 +14492,10 @@ declare module "sap/m/ComboBox" {
14366
14492
  selectedItem?: Item;
14367
14493
  }
14368
14494
 
14369
- export type ComboBox$SelectionChangeEvent = Event<ComboBox$SelectionChangeEventParameters>;
14495
+ export type ComboBox$SelectionChangeEvent = Event<
14496
+ ComboBox$SelectionChangeEventParameters,
14497
+ ComboBox
14498
+ >;
14370
14499
  }
14371
14500
 
14372
14501
  declare module "sap/m/ComboBoxBase" {
@@ -15149,7 +15278,10 @@ declare module "sap/m/ComboBoxBase" {
15149
15278
 
15150
15279
  export interface ComboBoxBase$LoadItemsEventParameters {}
15151
15280
 
15152
- export type ComboBoxBase$LoadItemsEvent = Event<ComboBoxBase$LoadItemsEventParameters>;
15281
+ export type ComboBoxBase$LoadItemsEvent = Event<
15282
+ ComboBoxBase$LoadItemsEventParameters,
15283
+ ComboBoxBase
15284
+ >;
15153
15285
  }
15154
15286
 
15155
15287
  declare module "sap/m/ComboBoxTextField" {
@@ -16876,11 +17008,17 @@ declare module "sap/m/DatePicker" {
16876
17008
 
16877
17009
  export interface DatePicker$AfterValueHelpCloseEventParameters {}
16878
17010
 
16879
- export type DatePicker$AfterValueHelpCloseEvent = Event<DatePicker$AfterValueHelpCloseEventParameters>;
17011
+ export type DatePicker$AfterValueHelpCloseEvent = Event<
17012
+ DatePicker$AfterValueHelpCloseEventParameters,
17013
+ DatePicker
17014
+ >;
16880
17015
 
16881
17016
  export interface DatePicker$AfterValueHelpOpenEventParameters {}
16882
17017
 
16883
- export type DatePicker$AfterValueHelpOpenEvent = Event<DatePicker$AfterValueHelpOpenEventParameters>;
17018
+ export type DatePicker$AfterValueHelpOpenEvent = Event<
17019
+ DatePicker$AfterValueHelpOpenEventParameters,
17020
+ DatePicker
17021
+ >;
16884
17022
 
16885
17023
  export interface DatePicker$ChangeEventParameters
16886
17024
  extends InputBase$ChangeEventParameters {
@@ -16890,7 +17028,10 @@ declare module "sap/m/DatePicker" {
16890
17028
  valid?: boolean;
16891
17029
  }
16892
17030
 
16893
- export type DatePicker$ChangeEvent = Event<DatePicker$ChangeEventParameters>;
17031
+ export type DatePicker$ChangeEvent = Event<
17032
+ DatePicker$ChangeEventParameters,
17033
+ DatePicker
17034
+ >;
16894
17035
 
16895
17036
  export interface DatePicker$NavigateEventParameters {
16896
17037
  /**
@@ -16904,7 +17045,10 @@ declare module "sap/m/DatePicker" {
16904
17045
  afterPopupOpened?: boolean;
16905
17046
  }
16906
17047
 
16907
- export type DatePicker$NavigateEvent = Event<DatePicker$NavigateEventParameters>;
17048
+ export type DatePicker$NavigateEvent = Event<
17049
+ DatePicker$NavigateEventParameters,
17050
+ DatePicker
17051
+ >;
16908
17052
  }
16909
17053
 
16910
17054
  declare module "sap/m/DateRangeSelection" {
@@ -17311,7 +17455,10 @@ declare module "sap/m/DateRangeSelection" {
17311
17455
  to?: object;
17312
17456
  }
17313
17457
 
17314
- export type DateRangeSelection$ChangeEvent = Event<DateRangeSelection$ChangeEventParameters>;
17458
+ export type DateRangeSelection$ChangeEvent = Event<
17459
+ DateRangeSelection$ChangeEventParameters,
17460
+ DateRangeSelection
17461
+ >;
17315
17462
  }
17316
17463
 
17317
17464
  declare module "sap/m/DateTimeField" {
@@ -17669,7 +17816,10 @@ declare module "sap/m/DateTimeField" {
17669
17816
  previousValue?: string;
17670
17817
  }
17671
17818
 
17672
- export type DateTimeField$LiveChangeEvent = Event<DateTimeField$LiveChangeEventParameters>;
17819
+ export type DateTimeField$LiveChangeEvent = Event<
17820
+ DateTimeField$LiveChangeEventParameters,
17821
+ DateTimeField
17822
+ >;
17673
17823
  }
17674
17824
 
17675
17825
  declare module "sap/m/DateTimeInput" {
@@ -18469,7 +18619,10 @@ declare module "sap/m/DateTimeInput" {
18469
18619
  valid?: boolean;
18470
18620
  }
18471
18621
 
18472
- export type DateTimeInput$ChangeEvent = Event<DateTimeInput$ChangeEventParameters>;
18622
+ export type DateTimeInput$ChangeEvent = Event<
18623
+ DateTimeInput$ChangeEventParameters,
18624
+ DateTimeInput
18625
+ >;
18473
18626
  }
18474
18627
 
18475
18628
  declare module "sap/m/DateTimePicker" {
@@ -20615,11 +20768,17 @@ declare module "sap/m/Dialog" {
20615
20768
  origin?: Button;
20616
20769
  }
20617
20770
 
20618
- export type Dialog$AfterCloseEvent = Event<Dialog$AfterCloseEventParameters>;
20771
+ export type Dialog$AfterCloseEvent = Event<
20772
+ Dialog$AfterCloseEventParameters,
20773
+ Dialog
20774
+ >;
20619
20775
 
20620
20776
  export interface Dialog$AfterOpenEventParameters {}
20621
20777
 
20622
- export type Dialog$AfterOpenEvent = Event<Dialog$AfterOpenEventParameters>;
20778
+ export type Dialog$AfterOpenEvent = Event<
20779
+ Dialog$AfterOpenEventParameters,
20780
+ Dialog
20781
+ >;
20623
20782
 
20624
20783
  export interface Dialog$BeforeCloseEventParameters {
20625
20784
  /**
@@ -20630,11 +20789,17 @@ declare module "sap/m/Dialog" {
20630
20789
  origin?: Button;
20631
20790
  }
20632
20791
 
20633
- export type Dialog$BeforeCloseEvent = Event<Dialog$BeforeCloseEventParameters>;
20792
+ export type Dialog$BeforeCloseEvent = Event<
20793
+ Dialog$BeforeCloseEventParameters,
20794
+ Dialog
20795
+ >;
20634
20796
 
20635
20797
  export interface Dialog$BeforeOpenEventParameters {}
20636
20798
 
20637
- export type Dialog$BeforeOpenEvent = Event<Dialog$BeforeOpenEventParameters>;
20799
+ export type Dialog$BeforeOpenEvent = Event<
20800
+ Dialog$BeforeOpenEventParameters,
20801
+ Dialog
20802
+ >;
20638
20803
  }
20639
20804
 
20640
20805
  declare module "sap/m/DisplayListItem" {
@@ -21468,6 +21633,8 @@ declare module "sap/m/DynamicDateRange" {
21468
21633
 
21469
21634
  import ElementMetadata from "sap/ui/core/ElementMetadata";
21470
21635
 
21636
+ import TooltipBase from "sap/ui/core/TooltipBase";
21637
+
21471
21638
  import { DynamicDateRangeValue } from "sap/m/library";
21472
21639
 
21473
21640
  import {
@@ -21854,6 +22021,19 @@ declare module "sap/m/DynamicDateRange" {
21854
22021
  * @returns Value of property `required`
21855
22022
  */
21856
22023
  getRequired(): boolean;
22024
+ /**
22025
+ * @since 1.117
22026
+ *
22027
+ * Gets current value of property {@link #getShowClearIcon showClearIcon}.
22028
+ *
22029
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the liveChange
22030
+ * event.
22031
+ *
22032
+ * Default value is `false`.
22033
+ *
22034
+ * @returns Value of property `showClearIcon`
22035
+ */
22036
+ getShowClearIcon(): boolean;
21857
22037
  /**
21858
22038
  * @since 1.92
21859
22039
  *
@@ -22187,6 +22367,17 @@ declare module "sap/m/DynamicDateRange" {
22187
22367
  */
22188
22368
  bRequired?: boolean
22189
22369
  ): this;
22370
+ /**
22371
+ * Sets the showClearIcon for the `DynamicDateRange`.
22372
+ *
22373
+ * @returns Reference to `this` for method chaining
22374
+ */
22375
+ setShowClearIcon(
22376
+ /**
22377
+ * Whether to show clear icon.
22378
+ */
22379
+ bShowClearIcon: boolean
22380
+ ): this;
22190
22381
  /**
22191
22382
  * @since 1.92
22192
22383
  *
@@ -22212,6 +22403,17 @@ declare module "sap/m/DynamicDateRange" {
22212
22403
  */
22213
22404
  sStandardOptions?: string[]
22214
22405
  ): this;
22406
+ /**
22407
+ * Sets the tooltip for the `DynamicDateRange`.
22408
+ *
22409
+ * @returns Reference to `this` for method chaining
22410
+ */
22411
+ setTooltip(
22412
+ /**
22413
+ * The tooltip that should be shown.
22414
+ */
22415
+ vTooltip: TooltipBase | string
22416
+ ): this;
22215
22417
  /**
22216
22418
  * @since 1.92
22217
22419
  *
@@ -22401,6 +22603,14 @@ declare module "sap/m/DynamicDateRange" {
22401
22603
  | PropertyBindingInfo
22402
22604
  | `{${string}}`;
22403
22605
 
22606
+ /**
22607
+ * @since 1.117
22608
+ *
22609
+ * Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the liveChange
22610
+ * event.
22611
+ */
22612
+ showClearIcon?: boolean | PropertyBindingInfo | `{${string}}`;
22613
+
22404
22614
  /**
22405
22615
  * Custom options for the `DynamicDateRange`.
22406
22616
  */
@@ -22443,7 +22653,10 @@ declare module "sap/m/DynamicDateRange" {
22443
22653
  valid?: boolean;
22444
22654
  }
22445
22655
 
22446
- export type DynamicDateRange$ChangeEvent = Event<DynamicDateRange$ChangeEventParameters>;
22656
+ export type DynamicDateRange$ChangeEvent = Event<
22657
+ DynamicDateRange$ChangeEventParameters,
22658
+ DynamicDateRange
22659
+ >;
22447
22660
  }
22448
22661
 
22449
22662
  declare module "sap/m/DynamicDateUtil" {
@@ -23786,11 +23999,17 @@ declare module "sap/m/FacetFilter" {
23786
23999
 
23787
24000
  export interface FacetFilter$ConfirmEventParameters {}
23788
24001
 
23789
- export type FacetFilter$ConfirmEvent = Event<FacetFilter$ConfirmEventParameters>;
24002
+ export type FacetFilter$ConfirmEvent = Event<
24003
+ FacetFilter$ConfirmEventParameters,
24004
+ FacetFilter
24005
+ >;
23790
24006
 
23791
24007
  export interface FacetFilter$ResetEventParameters {}
23792
24008
 
23793
- export type FacetFilter$ResetEvent = Event<FacetFilter$ResetEventParameters>;
24009
+ export type FacetFilter$ResetEvent = Event<
24010
+ FacetFilter$ResetEventParameters,
24011
+ FacetFilter
24012
+ >;
23794
24013
  }
23795
24014
 
23796
24015
  declare module "sap/m/FacetFilterItem" {
@@ -24822,11 +25041,17 @@ declare module "sap/m/FacetFilterList" {
24822
25041
  selectedKeys?: object;
24823
25042
  }
24824
25043
 
24825
- export type FacetFilterList$ListCloseEvent = Event<FacetFilterList$ListCloseEventParameters>;
25044
+ export type FacetFilterList$ListCloseEvent = Event<
25045
+ FacetFilterList$ListCloseEventParameters,
25046
+ FacetFilterList
25047
+ >;
24826
25048
 
24827
25049
  export interface FacetFilterList$ListOpenEventParameters {}
24828
25050
 
24829
- export type FacetFilterList$ListOpenEvent = Event<FacetFilterList$ListOpenEventParameters>;
25051
+ export type FacetFilterList$ListOpenEvent = Event<
25052
+ FacetFilterList$ListOpenEventParameters,
25053
+ FacetFilterList
25054
+ >;
24830
25055
 
24831
25056
  export interface FacetFilterList$SearchEventParameters {
24832
25057
  /**
@@ -24835,7 +25060,10 @@ declare module "sap/m/FacetFilterList" {
24835
25060
  term?: string;
24836
25061
  }
24837
25062
 
24838
- export type FacetFilterList$SearchEvent = Event<FacetFilterList$SearchEventParameters>;
25063
+ export type FacetFilterList$SearchEvent = Event<
25064
+ FacetFilterList$SearchEventParameters,
25065
+ FacetFilterList
25066
+ >;
24839
25067
  }
24840
25068
 
24841
25069
  declare module "sap/m/FeedContent" {
@@ -25189,7 +25417,10 @@ declare module "sap/m/FeedContent" {
25189
25417
 
25190
25418
  export interface FeedContent$PressEventParameters {}
25191
25419
 
25192
- export type FeedContent$PressEvent = Event<FeedContent$PressEventParameters>;
25420
+ export type FeedContent$PressEvent = Event<
25421
+ FeedContent$PressEventParameters,
25422
+ FeedContent
25423
+ >;
25193
25424
  }
25194
25425
 
25195
25426
  declare module "sap/m/FeedInput" {
@@ -25974,7 +26205,10 @@ declare module "sap/m/FeedInput" {
25974
26205
  value?: string;
25975
26206
  }
25976
26207
 
25977
- export type FeedInput$PostEvent = Event<FeedInput$PostEventParameters>;
26208
+ export type FeedInput$PostEvent = Event<
26209
+ FeedInput$PostEventParameters,
26210
+ FeedInput
26211
+ >;
25978
26212
  }
25979
26213
 
25980
26214
  declare module "sap/m/FeedListItem" {
@@ -27003,7 +27237,10 @@ declare module "sap/m/FeedListItem" {
27003
27237
  getDomRef?: Function;
27004
27238
  }
27005
27239
 
27006
- export type FeedListItem$IconPressEvent = Event<FeedListItem$IconPressEventParameters>;
27240
+ export type FeedListItem$IconPressEvent = Event<
27241
+ FeedListItem$IconPressEventParameters,
27242
+ FeedListItem
27243
+ >;
27007
27244
 
27008
27245
  export interface FeedListItem$SenderPressEventParameters {
27009
27246
  /**
@@ -27018,7 +27255,10 @@ declare module "sap/m/FeedListItem" {
27018
27255
  getDomRef?: Function;
27019
27256
  }
27020
27257
 
27021
- export type FeedListItem$SenderPressEvent = Event<FeedListItem$SenderPressEventParameters>;
27258
+ export type FeedListItem$SenderPressEvent = Event<
27259
+ FeedListItem$SenderPressEventParameters,
27260
+ FeedListItem
27261
+ >;
27022
27262
  }
27023
27263
 
27024
27264
  declare module "sap/m/FeedListItemAction" {
@@ -27343,7 +27583,10 @@ declare module "sap/m/FeedListItemAction" {
27343
27583
 
27344
27584
  export interface FeedListItemAction$PressEventParameters {}
27345
27585
 
27346
- export type FeedListItemAction$PressEvent = Event<FeedListItemAction$PressEventParameters>;
27586
+ export type FeedListItemAction$PressEvent = Event<
27587
+ FeedListItemAction$PressEventParameters,
27588
+ FeedListItemAction
27589
+ >;
27347
27590
  }
27348
27591
 
27349
27592
  declare module "sap/m/FlexBox" {
@@ -29286,7 +29529,10 @@ declare module "sap/m/GenericTag" {
29286
29529
 
29287
29530
  export interface GenericTag$PressEventParameters {}
29288
29531
 
29289
- export type GenericTag$PressEvent = Event<GenericTag$PressEventParameters>;
29532
+ export type GenericTag$PressEvent = Event<
29533
+ GenericTag$PressEventParameters,
29534
+ GenericTag
29535
+ >;
29290
29536
  }
29291
29537
 
29292
29538
  declare module "sap/m/GenericTile" {
@@ -30847,7 +31093,10 @@ declare module "sap/m/GenericTile" {
30847
31093
  domRef?: any;
30848
31094
  }
30849
31095
 
30850
- export type GenericTile$PressEvent = Event<GenericTile$PressEventParameters>;
31096
+ export type GenericTile$PressEvent = Event<
31097
+ GenericTile$PressEventParameters,
31098
+ GenericTile
31099
+ >;
30851
31100
  }
30852
31101
 
30853
31102
  declare module "sap/m/GroupHeaderListItem" {
@@ -32072,7 +32321,10 @@ declare module "sap/m/HeaderContainer" {
32072
32321
 
32073
32322
  export interface HeaderContainer$ScrollEventParameters {}
32074
32323
 
32075
- export type HeaderContainer$ScrollEvent = Event<HeaderContainer$ScrollEventParameters>;
32324
+ export type HeaderContainer$ScrollEvent = Event<
32325
+ HeaderContainer$ScrollEventParameters,
32326
+ HeaderContainer
32327
+ >;
32076
32328
  }
32077
32329
 
32078
32330
  declare module "sap/m/IconTabBar" {
@@ -32905,6 +33157,8 @@ declare module "sap/m/IconTabBar" {
32905
33157
  bShowOverflowSelectList?: boolean
32906
33158
  ): this;
32907
33159
  /**
33160
+ * @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
33161
+ *
32908
33162
  * Reflector for the internal header's showSelection property.
32909
33163
  *
32910
33164
  * @returns this IconTabBar reference for chaining.
@@ -33186,7 +33440,10 @@ declare module "sap/m/IconTabBar" {
33186
33440
  collapse?: boolean;
33187
33441
  }
33188
33442
 
33189
- export type IconTabBar$ExpandEvent = Event<IconTabBar$ExpandEventParameters>;
33443
+ export type IconTabBar$ExpandEvent = Event<
33444
+ IconTabBar$ExpandEventParameters,
33445
+ IconTabBar
33446
+ >;
33190
33447
 
33191
33448
  export interface IconTabBar$SelectEventParameters {
33192
33449
  /**
@@ -33215,7 +33472,10 @@ declare module "sap/m/IconTabBar" {
33215
33472
  selectedKey?: string;
33216
33473
  }
33217
33474
 
33218
- export type IconTabBar$SelectEvent = Event<IconTabBar$SelectEventParameters>;
33475
+ export type IconTabBar$SelectEvent = Event<
33476
+ IconTabBar$SelectEventParameters,
33477
+ IconTabBar
33478
+ >;
33219
33479
  }
33220
33480
 
33221
33481
  declare module "sap/m/IconTabFilter" {
@@ -34568,7 +34828,10 @@ declare module "sap/m/IconTabHeader" {
34568
34828
  previousKey?: string;
34569
34829
  }
34570
34830
 
34571
- export type IconTabHeader$SelectEvent = Event<IconTabHeader$SelectEventParameters>;
34831
+ export type IconTabHeader$SelectEvent = Event<
34832
+ IconTabHeader$SelectEventParameters,
34833
+ IconTabHeader
34834
+ >;
34572
34835
  }
34573
34836
 
34574
34837
  declare module "sap/m/IconTabSeparator" {
@@ -37336,19 +37599,19 @@ declare module "sap/m/Image" {
37336
37599
 
37337
37600
  export interface Image$ErrorEventParameters {}
37338
37601
 
37339
- export type Image$ErrorEvent = Event<Image$ErrorEventParameters>;
37602
+ export type Image$ErrorEvent = Event<Image$ErrorEventParameters, Image>;
37340
37603
 
37341
37604
  export interface Image$LoadEventParameters {}
37342
37605
 
37343
- export type Image$LoadEvent = Event<Image$LoadEventParameters>;
37606
+ export type Image$LoadEvent = Event<Image$LoadEventParameters, Image>;
37344
37607
 
37345
37608
  export interface Image$PressEventParameters {}
37346
37609
 
37347
- export type Image$PressEvent = Event<Image$PressEventParameters>;
37610
+ export type Image$PressEvent = Event<Image$PressEventParameters, Image>;
37348
37611
 
37349
37612
  export interface Image$TapEventParameters {}
37350
37613
 
37351
- export type Image$TapEvent = Event<Image$TapEventParameters>;
37614
+ export type Image$TapEvent = Event<Image$TapEventParameters, Image>;
37352
37615
  }
37353
37616
 
37354
37617
  declare module "sap/m/ImageContent" {
@@ -37573,7 +37836,10 @@ declare module "sap/m/ImageContent" {
37573
37836
 
37574
37837
  export interface ImageContent$PressEventParameters {}
37575
37838
 
37576
- export type ImageContent$PressEvent = Event<ImageContent$PressEventParameters>;
37839
+ export type ImageContent$PressEvent = Event<
37840
+ ImageContent$PressEventParameters,
37841
+ ImageContent
37842
+ >;
37577
37843
  }
37578
37844
 
37579
37845
  declare module "sap/m/Input" {
@@ -39914,7 +40180,10 @@ declare module "sap/m/Input" {
39914
40180
  previousValue?: string;
39915
40181
  }
39916
40182
 
39917
- export type Input$LiveChangeEvent = Event<Input$LiveChangeEventParameters>;
40183
+ export type Input$LiveChangeEvent = Event<
40184
+ Input$LiveChangeEventParameters,
40185
+ Input
40186
+ >;
39918
40187
 
39919
40188
  export interface Input$SubmitEventParameters {
39920
40189
  /**
@@ -39923,7 +40192,7 @@ declare module "sap/m/Input" {
39923
40192
  value?: string;
39924
40193
  }
39925
40194
 
39926
- export type Input$SubmitEvent = Event<Input$SubmitEventParameters>;
40195
+ export type Input$SubmitEvent = Event<Input$SubmitEventParameters, Input>;
39927
40196
 
39928
40197
  export interface Input$SuggestEventParameters {
39929
40198
  /**
@@ -39939,7 +40208,7 @@ declare module "sap/m/Input" {
39939
40208
  suggestionColumns?: ListBase;
39940
40209
  }
39941
40210
 
39942
- export type Input$SuggestEvent = Event<Input$SuggestEventParameters>;
40211
+ export type Input$SuggestEvent = Event<Input$SuggestEventParameters, Input>;
39943
40212
 
39944
40213
  export interface Input$SuggestionItemSelectedEventParameters {
39945
40214
  /**
@@ -39958,7 +40227,10 @@ declare module "sap/m/Input" {
39958
40227
  selectedRow?: ColumnListItem;
39959
40228
  }
39960
40229
 
39961
- export type Input$SuggestionItemSelectedEvent = Event<Input$SuggestionItemSelectedEventParameters>;
40230
+ export type Input$SuggestionItemSelectedEvent = Event<
40231
+ Input$SuggestionItemSelectedEventParameters,
40232
+ Input
40233
+ >;
39962
40234
 
39963
40235
  export interface Input$ValueHelpRequestEventParameters {
39964
40236
  /**
@@ -39969,7 +40241,10 @@ declare module "sap/m/Input" {
39969
40241
  fromSuggestions?: boolean;
39970
40242
  }
39971
40243
 
39972
- export type Input$ValueHelpRequestEvent = Event<Input$ValueHelpRequestEventParameters>;
40244
+ export type Input$ValueHelpRequestEvent = Event<
40245
+ Input$ValueHelpRequestEventParameters,
40246
+ Input
40247
+ >;
39973
40248
  }
39974
40249
 
39975
40250
  declare module "sap/m/InputBase" {
@@ -41014,7 +41289,10 @@ declare module "sap/m/InputBase" {
41014
41289
  value?: string;
41015
41290
  }
41016
41291
 
41017
- export type InputBase$ChangeEvent = Event<InputBase$ChangeEventParameters>;
41292
+ export type InputBase$ChangeEvent = Event<
41293
+ InputBase$ChangeEventParameters,
41294
+ InputBase
41295
+ >;
41018
41296
  }
41019
41297
 
41020
41298
  declare module "sap/m/InputBaseRenderer" {
@@ -44141,7 +44419,7 @@ declare module "sap/m/Link" {
44141
44419
  metaKey?: boolean;
44142
44420
  }
44143
44421
 
44144
- export type Link$PressEvent = Event<Link$PressEventParameters>;
44422
+ export type Link$PressEvent = Event<Link$PressEventParameters, Link>;
44145
44423
  }
44146
44424
 
44147
44425
  declare module "sap/m/List" {
@@ -44278,7 +44556,7 @@ declare module "sap/m/List" {
44278
44556
  declare module "sap/m/ListBase" {
44279
44557
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
44280
44558
 
44281
- import { ID, IContextMenu, CSSSize } from "sap/ui/core/library";
44559
+ import { ID, IContextMenu, TitleLevel, CSSSize } from "sap/ui/core/library";
44282
44560
 
44283
44561
  import ListItemBase from "sap/m/ListItemBase";
44284
44562
 
@@ -45467,11 +45745,30 @@ declare module "sap/m/ListBase" {
45467
45745
  * @returns Value of property `headerDesign`
45468
45746
  */
45469
45747
  getHeaderDesign(): ListHeaderDesign | keyof typeof ListHeaderDesign;
45748
+ /**
45749
+ * @since 1.117.0
45750
+ *
45751
+ * Gets current value of property {@link #getHeaderLevel headerLevel}.
45752
+ *
45753
+ * Defines the semantic header level of the header text (see {@link #getHeaderText headerText} property}).
45754
+ * This information is, for example, used by assistive technologies, such as screenreaders, to create a
45755
+ * hierarchical site map for faster navigation. Depending on this setting, either the ARIA equivalent of
45756
+ * an HTML h1-h6 element is used or, when using the `Auto` level, no explicit level information is used.
45757
+ *
45758
+ * **Note:** If the `headerToolbar` aggregation is set, then this property is ignored. If this is the case,
45759
+ * use, for example, a `sap.m.Title` control in the toolbar to define a header.
45760
+ *
45761
+ * Default value is `Auto`.
45762
+ *
45763
+ * @returns Value of property `headerLevel`
45764
+ */
45765
+ getHeaderLevel(): TitleLevel | keyof typeof TitleLevel;
45470
45766
  /**
45471
45767
  * Gets current value of property {@link #getHeaderText headerText}.
45472
45768
  *
45473
- * Defines the header text that appears in the control. **Note:** If `headerToolbar` aggregation is set,
45474
- * then this property is ignored.
45769
+ * Defines the header text that appears in the control. **Note:** If the `headerToolbar` aggregation is
45770
+ * set, then this property is ignored. If this is the case, use, for example, a `sap.m.Title` control in
45771
+ * the toolbar to define a header.
45475
45772
  *
45476
45773
  * @returns Value of property `headerText`
45477
45774
  */
@@ -45572,16 +45869,18 @@ declare module "sap/m/ListBase" {
45572
45869
  *
45573
45870
  * Gets current value of property {@link #getMultiSelectMode multiSelectMode}.
45574
45871
  *
45575
- * Defines the multi-selection mode for the control. If this property is set to the `Default` value, the
45576
- * `sap.m.Table` control renders the Select All checkbox in the column header, otherwise the Deselect All
45577
- * icon is rendered. The Select All checkbox allows the user to select all the items in the control, and
45578
- * the Deselect All icon deselects the items. If the property is set to `ClearAll`, then selecting items
45579
- * via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details.
45872
+ * Defines the multi-selection mode for the control.
45873
+ *
45874
+ * If the property is set to `ClearAll`, then selecting items via the keyboard shortcut CTRL + A
45875
+ * and via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details. A
45876
+ * selection of multiple items is still possible using the range selection feature. For more information
45877
+ * about the range selection, see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
45580
45878
  *
45581
- * **Note:** This property must be used with the `MultiSelect` mode. If this property is set to `ClearAll`,
45582
- * then a selection of multiple items is still possible via the range selection feature except CTRL +
45583
- * A. Additionally, the CTRL + SHIFT + A key combination can be used for deselecting all the
45584
- * items. For details on the range selection, please see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
45879
+ * **Only relevant for `sap.m.Table`:** If `ClearAll` is set, the table renders a Deselect All icon in the
45880
+ * column header, otherwise a Select All checkbox is shown. The Select All checkbox allows the user to select
45881
+ * all the items in the control, and the Deselect All icon deselects the items.
45882
+ *
45883
+ * **Note:** This property must be used with the `MultiSelect` mode.
45585
45884
  *
45586
45885
  * Default value is `Default`.
45587
45886
  *
@@ -46032,11 +46331,37 @@ declare module "sap/m/ListBase" {
46032
46331
  */
46033
46332
  sHeaderDesign?: ListHeaderDesign | keyof typeof ListHeaderDesign
46034
46333
  ): this;
46334
+ /**
46335
+ * @since 1.117.0
46336
+ *
46337
+ * Sets a new value for property {@link #getHeaderLevel headerLevel}.
46338
+ *
46339
+ * Defines the semantic header level of the header text (see {@link #getHeaderText headerText} property}).
46340
+ * This information is, for example, used by assistive technologies, such as screenreaders, to create a
46341
+ * hierarchical site map for faster navigation. Depending on this setting, either the ARIA equivalent of
46342
+ * an HTML h1-h6 element is used or, when using the `Auto` level, no explicit level information is used.
46343
+ *
46344
+ * **Note:** If the `headerToolbar` aggregation is set, then this property is ignored. If this is the case,
46345
+ * use, for example, a `sap.m.Title` control in the toolbar to define a header.
46346
+ *
46347
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46348
+ *
46349
+ * Default value is `Auto`.
46350
+ *
46351
+ * @returns Reference to `this` in order to allow method chaining
46352
+ */
46353
+ setHeaderLevel(
46354
+ /**
46355
+ * New value for property `headerLevel`
46356
+ */
46357
+ sHeaderLevel?: TitleLevel | keyof typeof TitleLevel
46358
+ ): this;
46035
46359
  /**
46036
46360
  * Sets a new value for property {@link #getHeaderText headerText}.
46037
46361
  *
46038
- * Defines the header text that appears in the control. **Note:** If `headerToolbar` aggregation is set,
46039
- * then this property is ignored.
46362
+ * Defines the header text that appears in the control. **Note:** If the `headerToolbar` aggregation is
46363
+ * set, then this property is ignored. If this is the case, use, for example, a `sap.m.Title` control in
46364
+ * the toolbar to define a header.
46040
46365
  *
46041
46366
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46042
46367
  *
@@ -46168,16 +46493,18 @@ declare module "sap/m/ListBase" {
46168
46493
  *
46169
46494
  * Sets a new value for property {@link #getMultiSelectMode multiSelectMode}.
46170
46495
  *
46171
- * Defines the multi-selection mode for the control. If this property is set to the `Default` value, the
46172
- * `sap.m.Table` control renders the Select All checkbox in the column header, otherwise the Deselect All
46173
- * icon is rendered. The Select All checkbox allows the user to select all the items in the control, and
46174
- * the Deselect All icon deselects the items. If the property is set to `ClearAll`, then selecting items
46175
- * via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details.
46496
+ * Defines the multi-selection mode for the control.
46497
+ *
46498
+ * If the property is set to `ClearAll`, then selecting items via the keyboard shortcut CTRL + A
46499
+ * and via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details. A
46500
+ * selection of multiple items is still possible using the range selection feature. For more information
46501
+ * about the range selection, see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
46176
46502
  *
46177
- * **Note:** This property must be used with the `MultiSelect` mode. If this property is set to `ClearAll`,
46178
- * then a selection of multiple items is still possible via the range selection feature except CTRL +
46179
- * A. Additionally, the CTRL + SHIFT + A key combination can be used for deselecting all the
46180
- * items. For details on the range selection, please see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
46503
+ * **Only relevant for `sap.m.Table`:** If `ClearAll` is set, the table renders a Deselect All icon in the
46504
+ * column header, otherwise a Select All checkbox is shown. The Select All checkbox allows the user to select
46505
+ * all the items in the control, and the Deselect All icon deselects the items.
46506
+ *
46507
+ * **Note:** This property must be used with the `MultiSelect` mode.
46181
46508
  *
46182
46509
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46183
46510
  *
@@ -46424,11 +46751,28 @@ declare module "sap/m/ListBase" {
46424
46751
  inset?: boolean | PropertyBindingInfo | `{${string}}`;
46425
46752
 
46426
46753
  /**
46427
- * Defines the header text that appears in the control. **Note:** If `headerToolbar` aggregation is set,
46428
- * then this property is ignored.
46754
+ * Defines the header text that appears in the control. **Note:** If the `headerToolbar` aggregation is
46755
+ * set, then this property is ignored. If this is the case, use, for example, a `sap.m.Title` control in
46756
+ * the toolbar to define a header.
46429
46757
  */
46430
46758
  headerText?: string | PropertyBindingInfo;
46431
46759
 
46760
+ /**
46761
+ * @since 1.117.0
46762
+ *
46763
+ * Defines the semantic header level of the header text (see {@link #getHeaderText headerText} property}).
46764
+ * This information is, for example, used by assistive technologies, such as screenreaders, to create a
46765
+ * hierarchical site map for faster navigation. Depending on this setting, either the ARIA equivalent of
46766
+ * an HTML h1-h6 element is used or, when using the `Auto` level, no explicit level information is used.
46767
+ *
46768
+ * **Note:** If the `headerToolbar` aggregation is set, then this property is ignored. If this is the case,
46769
+ * use, for example, a `sap.m.Title` control in the toolbar to define a header.
46770
+ */
46771
+ headerLevel?:
46772
+ | (TitleLevel | keyof typeof TitleLevel)
46773
+ | PropertyBindingInfo
46774
+ | `{${string}}`;
46775
+
46432
46776
  /**
46433
46777
  * @since 1.14
46434
46778
  * @deprecated (since 1.16) - No longer has any functionality.
@@ -46608,16 +46952,18 @@ declare module "sap/m/ListBase" {
46608
46952
  /**
46609
46953
  * @since 1.93
46610
46954
  *
46611
- * Defines the multi-selection mode for the control. If this property is set to the `Default` value, the
46612
- * `sap.m.Table` control renders the Select All checkbox in the column header, otherwise the Deselect All
46613
- * icon is rendered. The Select All checkbox allows the user to select all the items in the control, and
46614
- * the Deselect All icon deselects the items. If the property is set to `ClearAll`, then selecting items
46615
- * via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details.
46955
+ * Defines the multi-selection mode for the control.
46956
+ *
46957
+ * If the property is set to `ClearAll`, then selecting items via the keyboard shortcut CTRL + A
46958
+ * and via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details. A
46959
+ * selection of multiple items is still possible using the range selection feature. For more information
46960
+ * about the range selection, see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
46616
46961
  *
46617
- * **Note:** This property must be used with the `MultiSelect` mode. If this property is set to `ClearAll`,
46618
- * then a selection of multiple items is still possible via the range selection feature except CTRL +
46619
- * A. Additionally, the CTRL + SHIFT + A key combination can be used for deselecting all the
46620
- * items. For details on the range selection, please see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
46962
+ * **Only relevant for `sap.m.Table`:** If `ClearAll` is set, the table renders a Deselect All icon in the
46963
+ * column header, otherwise a Select All checkbox is shown. The Select All checkbox allows the user to select
46964
+ * all the items in the control, and the Deselect All icon deselects the items.
46965
+ *
46966
+ * **Note:** This property must be used with the `MultiSelect` mode.
46621
46967
  */
46622
46968
  multiSelectMode?:
46623
46969
  | (MultiSelectMode | keyof typeof MultiSelectMode)
@@ -46766,7 +47112,10 @@ declare module "sap/m/ListBase" {
46766
47112
  listItem?: ListItemBase;
46767
47113
  }
46768
47114
 
46769
- export type ListBase$BeforeOpenContextMenuEvent = Event<ListBase$BeforeOpenContextMenuEventParameters>;
47115
+ export type ListBase$BeforeOpenContextMenuEvent = Event<
47116
+ ListBase$BeforeOpenContextMenuEventParameters,
47117
+ ListBase
47118
+ >;
46770
47119
 
46771
47120
  export interface ListBase$DeleteEventParameters {
46772
47121
  /**
@@ -46775,7 +47124,10 @@ declare module "sap/m/ListBase" {
46775
47124
  listItem?: ListItemBase;
46776
47125
  }
46777
47126
 
46778
- export type ListBase$DeleteEvent = Event<ListBase$DeleteEventParameters>;
47127
+ export type ListBase$DeleteEvent = Event<
47128
+ ListBase$DeleteEventParameters,
47129
+ ListBase
47130
+ >;
46779
47131
 
46780
47132
  export interface ListBase$GrowingFinishedEventParameters {
46781
47133
  /**
@@ -46789,7 +47141,10 @@ declare module "sap/m/ListBase" {
46789
47141
  total?: int;
46790
47142
  }
46791
47143
 
46792
- export type ListBase$GrowingFinishedEvent = Event<ListBase$GrowingFinishedEventParameters>;
47144
+ export type ListBase$GrowingFinishedEvent = Event<
47145
+ ListBase$GrowingFinishedEventParameters,
47146
+ ListBase
47147
+ >;
46793
47148
 
46794
47149
  export interface ListBase$GrowingStartedEventParameters {
46795
47150
  /**
@@ -46803,7 +47158,10 @@ declare module "sap/m/ListBase" {
46803
47158
  total?: int;
46804
47159
  }
46805
47160
 
46806
- export type ListBase$GrowingStartedEvent = Event<ListBase$GrowingStartedEventParameters>;
47161
+ export type ListBase$GrowingStartedEvent = Event<
47162
+ ListBase$GrowingStartedEventParameters,
47163
+ ListBase
47164
+ >;
46807
47165
 
46808
47166
  export interface ListBase$ItemPressEventParameters {
46809
47167
  /**
@@ -46817,7 +47175,10 @@ declare module "sap/m/ListBase" {
46817
47175
  srcControl?: Control;
46818
47176
  }
46819
47177
 
46820
- export type ListBase$ItemPressEvent = Event<ListBase$ItemPressEventParameters>;
47178
+ export type ListBase$ItemPressEvent = Event<
47179
+ ListBase$ItemPressEventParameters,
47180
+ ListBase
47181
+ >;
46821
47182
 
46822
47183
  export interface ListBase$SelectEventParameters {
46823
47184
  /**
@@ -46826,7 +47187,10 @@ declare module "sap/m/ListBase" {
46826
47187
  listItem?: ListItemBase;
46827
47188
  }
46828
47189
 
46829
- export type ListBase$SelectEvent = Event<ListBase$SelectEventParameters>;
47190
+ export type ListBase$SelectEvent = Event<
47191
+ ListBase$SelectEventParameters,
47192
+ ListBase
47193
+ >;
46830
47194
 
46831
47195
  export interface ListBase$SelectionChangeEventParameters {
46832
47196
  /**
@@ -46851,7 +47215,10 @@ declare module "sap/m/ListBase" {
46851
47215
  selectAll?: boolean;
46852
47216
  }
46853
47217
 
46854
- export type ListBase$SelectionChangeEvent = Event<ListBase$SelectionChangeEventParameters>;
47218
+ export type ListBase$SelectionChangeEvent = Event<
47219
+ ListBase$SelectionChangeEventParameters,
47220
+ ListBase
47221
+ >;
46855
47222
 
46856
47223
  export interface ListBase$SwipeEventParameters {
46857
47224
  /**
@@ -46877,7 +47244,10 @@ declare module "sap/m/ListBase" {
46877
47244
  swipeDirection?: SwipeDirection | keyof typeof SwipeDirection;
46878
47245
  }
46879
47246
 
46880
- export type ListBase$SwipeEvent = Event<ListBase$SwipeEventParameters>;
47247
+ export type ListBase$SwipeEvent = Event<
47248
+ ListBase$SwipeEventParameters,
47249
+ ListBase
47250
+ >;
46881
47251
 
46882
47252
  export interface ListBase$UpdateFinishedEventParameters {
46883
47253
  /**
@@ -46896,7 +47266,10 @@ declare module "sap/m/ListBase" {
46896
47266
  total?: int;
46897
47267
  }
46898
47268
 
46899
- export type ListBase$UpdateFinishedEvent = Event<ListBase$UpdateFinishedEventParameters>;
47269
+ export type ListBase$UpdateFinishedEvent = Event<
47270
+ ListBase$UpdateFinishedEventParameters,
47271
+ ListBase
47272
+ >;
46900
47273
 
46901
47274
  export interface ListBase$UpdateStartedEventParameters {
46902
47275
  /**
@@ -46915,7 +47288,10 @@ declare module "sap/m/ListBase" {
46915
47288
  total?: int;
46916
47289
  }
46917
47290
 
46918
- export type ListBase$UpdateStartedEvent = Event<ListBase$UpdateStartedEventParameters>;
47291
+ export type ListBase$UpdateStartedEvent = Event<
47292
+ ListBase$UpdateStartedEventParameters,
47293
+ ListBase
47294
+ >;
46919
47295
  }
46920
47296
 
46921
47297
  declare module "sap/m/ListItemBase" {
@@ -47739,19 +48115,31 @@ declare module "sap/m/ListItemBase" {
47739
48115
 
47740
48116
  export interface ListItemBase$DetailPressEventParameters {}
47741
48117
 
47742
- export type ListItemBase$DetailPressEvent = Event<ListItemBase$DetailPressEventParameters>;
48118
+ export type ListItemBase$DetailPressEvent = Event<
48119
+ ListItemBase$DetailPressEventParameters,
48120
+ ListItemBase
48121
+ >;
47743
48122
 
47744
48123
  export interface ListItemBase$DetailTapEventParameters {}
47745
48124
 
47746
- export type ListItemBase$DetailTapEvent = Event<ListItemBase$DetailTapEventParameters>;
48125
+ export type ListItemBase$DetailTapEvent = Event<
48126
+ ListItemBase$DetailTapEventParameters,
48127
+ ListItemBase
48128
+ >;
47747
48129
 
47748
48130
  export interface ListItemBase$PressEventParameters {}
47749
48131
 
47750
- export type ListItemBase$PressEvent = Event<ListItemBase$PressEventParameters>;
48132
+ export type ListItemBase$PressEvent = Event<
48133
+ ListItemBase$PressEventParameters,
48134
+ ListItemBase
48135
+ >;
47751
48136
 
47752
48137
  export interface ListItemBase$TapEventParameters {}
47753
48138
 
47754
- export type ListItemBase$TapEvent = Event<ListItemBase$TapEventParameters>;
48139
+ export type ListItemBase$TapEvent = Event<
48140
+ ListItemBase$TapEventParameters,
48141
+ ListItemBase
48142
+ >;
47755
48143
  }
47756
48144
 
47757
48145
  declare module "sap/m/MaskInput" {
@@ -48165,7 +48553,10 @@ declare module "sap/m/MaskInput" {
48165
48553
  previousValue?: string;
48166
48554
  }
48167
48555
 
48168
- export type MaskInput$LiveChangeEvent = Event<MaskInput$LiveChangeEventParameters>;
48556
+ export type MaskInput$LiveChangeEvent = Event<
48557
+ MaskInput$LiveChangeEventParameters,
48558
+ MaskInput
48559
+ >;
48169
48560
  }
48170
48561
 
48171
48562
  declare module "sap/m/MaskInputRule" {
@@ -48632,6 +49023,12 @@ declare module "sap/m/Menu" {
48632
49023
  */
48633
49024
  iIndex: int
48634
49025
  ): this;
49026
+ /**
49027
+ * Returns whether the `Menu` is currently open.
49028
+ *
49029
+ * @returns true if menu is open
49030
+ */
49031
+ isOpen(): boolean;
48635
49032
  /**
48636
49033
  * Opens the menu as a context menu.
48637
49034
  */
@@ -48735,7 +49132,7 @@ declare module "sap/m/Menu" {
48735
49132
 
48736
49133
  export interface Menu$ClosedEventParameters {}
48737
49134
 
48738
- export type Menu$ClosedEvent = Event<Menu$ClosedEventParameters>;
49135
+ export type Menu$ClosedEvent = Event<Menu$ClosedEventParameters, Menu>;
48739
49136
 
48740
49137
  export interface Menu$ItemSelectedEventParameters {
48741
49138
  /**
@@ -48744,7 +49141,10 @@ declare module "sap/m/Menu" {
48744
49141
  item?: MenuItem;
48745
49142
  }
48746
49143
 
48747
- export type Menu$ItemSelectedEvent = Event<Menu$ItemSelectedEventParameters>;
49144
+ export type Menu$ItemSelectedEvent = Event<
49145
+ Menu$ItemSelectedEventParameters,
49146
+ Menu
49147
+ >;
48748
49148
  }
48749
49149
 
48750
49150
  declare module "sap/m/MenuButton" {
@@ -49556,11 +49956,17 @@ declare module "sap/m/MenuButton" {
49556
49956
 
49557
49957
  export interface MenuButton$BeforeMenuOpenEventParameters {}
49558
49958
 
49559
- export type MenuButton$BeforeMenuOpenEvent = Event<MenuButton$BeforeMenuOpenEventParameters>;
49959
+ export type MenuButton$BeforeMenuOpenEvent = Event<
49960
+ MenuButton$BeforeMenuOpenEventParameters,
49961
+ MenuButton
49962
+ >;
49560
49963
 
49561
49964
  export interface MenuButton$DefaultActionEventParameters {}
49562
49965
 
49563
- export type MenuButton$DefaultActionEvent = Event<MenuButton$DefaultActionEventParameters>;
49966
+ export type MenuButton$DefaultActionEvent = Event<
49967
+ MenuButton$DefaultActionEventParameters,
49968
+ MenuButton
49969
+ >;
49564
49970
  }
49565
49971
 
49566
49972
  declare module "sap/m/MenuItem" {
@@ -50102,11 +50508,17 @@ declare module "sap/m/MenuItem" {
50102
50508
  methodParams?: object;
50103
50509
  }
50104
50510
 
50105
- export type MenuItem$AggregationChangedEvent = Event<MenuItem$AggregationChangedEventParameters>;
50511
+ export type MenuItem$AggregationChangedEvent = Event<
50512
+ MenuItem$AggregationChangedEventParameters,
50513
+ MenuItem
50514
+ >;
50106
50515
 
50107
50516
  export interface MenuItem$PressEventParameters {}
50108
50517
 
50109
- export type MenuItem$PressEvent = Event<MenuItem$PressEventParameters>;
50518
+ export type MenuItem$PressEvent = Event<
50519
+ MenuItem$PressEventParameters,
50520
+ MenuItem
50521
+ >;
50110
50522
 
50111
50523
  export interface MenuItem$PropertyChangedEventParameters {
50112
50524
  /**
@@ -50120,7 +50532,10 @@ declare module "sap/m/MenuItem" {
50120
50532
  propertyValue?: any;
50121
50533
  }
50122
50534
 
50123
- export type MenuItem$PropertyChangedEvent = Event<MenuItem$PropertyChangedEventParameters>;
50535
+ export type MenuItem$PropertyChangedEvent = Event<
50536
+ MenuItem$PropertyChangedEventParameters,
50537
+ MenuItem
50538
+ >;
50124
50539
  }
50125
50540
 
50126
50541
  declare module "sap/m/MessageBox" {
@@ -52273,7 +52688,10 @@ declare module "sap/m/MessagePage" {
52273
52688
 
52274
52689
  export interface MessagePage$NavButtonPressEventParameters {}
52275
52690
 
52276
- export type MessagePage$NavButtonPressEvent = Event<MessagePage$NavButtonPressEventParameters>;
52691
+ export type MessagePage$NavButtonPressEvent = Event<
52692
+ MessagePage$NavButtonPressEventParameters,
52693
+ MessagePage
52694
+ >;
52277
52695
  }
52278
52696
 
52279
52697
  declare module "sap/m/MessagePopover" {
@@ -53495,7 +53913,10 @@ declare module "sap/m/MessagePopover" {
53495
53913
  item?: MessageItem;
53496
53914
  }
53497
53915
 
53498
- export type MessagePopover$ActiveTitlePressEvent = Event<MessagePopover$ActiveTitlePressEventParameters>;
53916
+ export type MessagePopover$ActiveTitlePressEvent = Event<
53917
+ MessagePopover$ActiveTitlePressEventParameters,
53918
+ MessagePopover
53919
+ >;
53499
53920
 
53500
53921
  export interface MessagePopover$AfterCloseEventParameters {
53501
53922
  /**
@@ -53504,7 +53925,10 @@ declare module "sap/m/MessagePopover" {
53504
53925
  openBy?: Control;
53505
53926
  }
53506
53927
 
53507
- export type MessagePopover$AfterCloseEvent = Event<MessagePopover$AfterCloseEventParameters>;
53928
+ export type MessagePopover$AfterCloseEvent = Event<
53929
+ MessagePopover$AfterCloseEventParameters,
53930
+ MessagePopover
53931
+ >;
53508
53932
 
53509
53933
  export interface MessagePopover$AfterOpenEventParameters {
53510
53934
  /**
@@ -53513,7 +53937,10 @@ declare module "sap/m/MessagePopover" {
53513
53937
  openBy?: Control;
53514
53938
  }
53515
53939
 
53516
- export type MessagePopover$AfterOpenEvent = Event<MessagePopover$AfterOpenEventParameters>;
53940
+ export type MessagePopover$AfterOpenEvent = Event<
53941
+ MessagePopover$AfterOpenEventParameters,
53942
+ MessagePopover
53943
+ >;
53517
53944
 
53518
53945
  export interface MessagePopover$BeforeCloseEventParameters {
53519
53946
  /**
@@ -53522,7 +53949,10 @@ declare module "sap/m/MessagePopover" {
53522
53949
  openBy?: Control;
53523
53950
  }
53524
53951
 
53525
- export type MessagePopover$BeforeCloseEvent = Event<MessagePopover$BeforeCloseEventParameters>;
53952
+ export type MessagePopover$BeforeCloseEvent = Event<
53953
+ MessagePopover$BeforeCloseEventParameters,
53954
+ MessagePopover
53955
+ >;
53526
53956
 
53527
53957
  export interface MessagePopover$BeforeOpenEventParameters {
53528
53958
  /**
@@ -53531,7 +53961,10 @@ declare module "sap/m/MessagePopover" {
53531
53961
  openBy?: Control;
53532
53962
  }
53533
53963
 
53534
- export type MessagePopover$BeforeOpenEvent = Event<MessagePopover$BeforeOpenEventParameters>;
53964
+ export type MessagePopover$BeforeOpenEvent = Event<
53965
+ MessagePopover$BeforeOpenEventParameters,
53966
+ MessagePopover
53967
+ >;
53535
53968
 
53536
53969
  export interface MessagePopover$ItemSelectEventParameters {
53537
53970
  /**
@@ -53545,7 +53978,10 @@ declare module "sap/m/MessagePopover" {
53545
53978
  messageTypeFilter?: MessageType | keyof typeof MessageType;
53546
53979
  }
53547
53980
 
53548
- export type MessagePopover$ItemSelectEvent = Event<MessagePopover$ItemSelectEventParameters>;
53981
+ export type MessagePopover$ItemSelectEvent = Event<
53982
+ MessagePopover$ItemSelectEventParameters,
53983
+ MessagePopover
53984
+ >;
53549
53985
 
53550
53986
  export interface MessagePopover$ListSelectEventParameters {
53551
53987
  /**
@@ -53554,15 +53990,24 @@ declare module "sap/m/MessagePopover" {
53554
53990
  messageTypeFilter?: MessageType | keyof typeof MessageType;
53555
53991
  }
53556
53992
 
53557
- export type MessagePopover$ListSelectEvent = Event<MessagePopover$ListSelectEventParameters>;
53993
+ export type MessagePopover$ListSelectEvent = Event<
53994
+ MessagePopover$ListSelectEventParameters,
53995
+ MessagePopover
53996
+ >;
53558
53997
 
53559
53998
  export interface MessagePopover$LongtextLoadedEventParameters {}
53560
53999
 
53561
- export type MessagePopover$LongtextLoadedEvent = Event<MessagePopover$LongtextLoadedEventParameters>;
54000
+ export type MessagePopover$LongtextLoadedEvent = Event<
54001
+ MessagePopover$LongtextLoadedEventParameters,
54002
+ MessagePopover
54003
+ >;
53562
54004
 
53563
54005
  export interface MessagePopover$UrlValidatedEventParameters {}
53564
54006
 
53565
- export type MessagePopover$UrlValidatedEvent = Event<MessagePopover$UrlValidatedEventParameters>;
54007
+ export type MessagePopover$UrlValidatedEvent = Event<
54008
+ MessagePopover$UrlValidatedEventParameters,
54009
+ MessagePopover
54010
+ >;
53566
54011
  }
53567
54012
 
53568
54013
  declare module "sap/m/MessagePopoverItem" {
@@ -54093,7 +54538,10 @@ declare module "sap/m/MessageStrip" {
54093
54538
 
54094
54539
  export interface MessageStrip$CloseEventParameters {}
54095
54540
 
54096
- export type MessageStrip$CloseEvent = Event<MessageStrip$CloseEventParameters>;
54541
+ export type MessageStrip$CloseEvent = Event<
54542
+ MessageStrip$CloseEventParameters,
54543
+ MessageStrip
54544
+ >;
54097
54545
  }
54098
54546
 
54099
54547
  declare module "sap/m/MessageToast" {
@@ -55115,7 +55563,10 @@ declare module "sap/m/MessageView" {
55115
55563
  item?: MessageItem;
55116
55564
  }
55117
55565
 
55118
- export type MessageView$ActiveTitlePressEvent = Event<MessageView$ActiveTitlePressEventParameters>;
55566
+ export type MessageView$ActiveTitlePressEvent = Event<
55567
+ MessageView$ActiveTitlePressEventParameters,
55568
+ MessageView
55569
+ >;
55119
55570
 
55120
55571
  export interface MessageView$AfterOpenEventParameters {
55121
55572
  /**
@@ -55124,7 +55575,10 @@ declare module "sap/m/MessageView" {
55124
55575
  openBy?: Control;
55125
55576
  }
55126
55577
 
55127
- export type MessageView$AfterOpenEvent = Event<MessageView$AfterOpenEventParameters>;
55578
+ export type MessageView$AfterOpenEvent = Event<
55579
+ MessageView$AfterOpenEventParameters,
55580
+ MessageView
55581
+ >;
55128
55582
 
55129
55583
  export interface MessageView$ItemSelectEventParameters {
55130
55584
  /**
@@ -55138,7 +55592,10 @@ declare module "sap/m/MessageView" {
55138
55592
  messageTypeFilter?: MessageType | keyof typeof MessageType;
55139
55593
  }
55140
55594
 
55141
- export type MessageView$ItemSelectEvent = Event<MessageView$ItemSelectEventParameters>;
55595
+ export type MessageView$ItemSelectEvent = Event<
55596
+ MessageView$ItemSelectEventParameters,
55597
+ MessageView
55598
+ >;
55142
55599
 
55143
55600
  export interface MessageView$ListSelectEventParameters {
55144
55601
  /**
@@ -55147,15 +55604,24 @@ declare module "sap/m/MessageView" {
55147
55604
  messageTypeFilter?: MessageType | keyof typeof MessageType;
55148
55605
  }
55149
55606
 
55150
- export type MessageView$ListSelectEvent = Event<MessageView$ListSelectEventParameters>;
55607
+ export type MessageView$ListSelectEvent = Event<
55608
+ MessageView$ListSelectEventParameters,
55609
+ MessageView
55610
+ >;
55151
55611
 
55152
55612
  export interface MessageView$LongtextLoadedEventParameters {}
55153
55613
 
55154
- export type MessageView$LongtextLoadedEvent = Event<MessageView$LongtextLoadedEventParameters>;
55614
+ export type MessageView$LongtextLoadedEvent = Event<
55615
+ MessageView$LongtextLoadedEventParameters,
55616
+ MessageView
55617
+ >;
55155
55618
 
55156
55619
  export interface MessageView$UrlValidatedEventParameters {}
55157
55620
 
55158
- export type MessageView$UrlValidatedEvent = Event<MessageView$UrlValidatedEventParameters>;
55621
+ export type MessageView$UrlValidatedEvent = Event<
55622
+ MessageView$UrlValidatedEventParameters,
55623
+ MessageView
55624
+ >;
55159
55625
  }
55160
55626
 
55161
55627
  declare module "sap/m/MultiComboBox" {
@@ -55707,7 +56173,10 @@ declare module "sap/m/MultiComboBox" {
55707
56173
  selectAll?: boolean;
55708
56174
  }
55709
56175
 
55710
- export type MultiComboBox$SelectionChangeEvent = Event<MultiComboBox$SelectionChangeEventParameters>;
56176
+ export type MultiComboBox$SelectionChangeEvent = Event<
56177
+ MultiComboBox$SelectionChangeEventParameters,
56178
+ MultiComboBox
56179
+ >;
55711
56180
 
55712
56181
  export interface MultiComboBox$SelectionFinishEventParameters {
55713
56182
  /**
@@ -55716,7 +56185,10 @@ declare module "sap/m/MultiComboBox" {
55716
56185
  selectedItems?: Item[];
55717
56186
  }
55718
56187
 
55719
- export type MultiComboBox$SelectionFinishEvent = Event<MultiComboBox$SelectionFinishEventParameters>;
56188
+ export type MultiComboBox$SelectionFinishEvent = Event<
56189
+ MultiComboBox$SelectionFinishEventParameters,
56190
+ MultiComboBox
56191
+ >;
55720
56192
  }
55721
56193
 
55722
56194
  declare module "sap/m/MultiInput" {
@@ -56162,6 +56634,11 @@ declare module "sap/m/MultiInput" {
56162
56634
  * @returns An array of token validation callbacks
56163
56635
  */
56164
56636
  getValidators(): Function[];
56637
+ /**
56638
+ *
56639
+ * @returns Indicates should token validator wait for asynchronous validation
56640
+ */
56641
+ getWaitForAsyncValidation(): string;
56165
56642
  /**
56166
56643
  * Checks for the provided `sap.m.Token` in the aggregation {@link #getTokens tokens}. and returns its index
56167
56644
  * if found or -1 otherwise.
@@ -56466,7 +56943,10 @@ declare module "sap/m/MultiInput" {
56466
56943
  removedTokens?: Token[];
56467
56944
  }
56468
56945
 
56469
- export type MultiInput$TokenChangeEvent = Event<MultiInput$TokenChangeEventParameters>;
56946
+ export type MultiInput$TokenChangeEvent = Event<
56947
+ MultiInput$TokenChangeEventParameters,
56948
+ MultiInput
56949
+ >;
56470
56950
 
56471
56951
  export interface MultiInput$TokenUpdateEventParameters {
56472
56952
  /**
@@ -56486,7 +56966,10 @@ declare module "sap/m/MultiInput" {
56486
56966
  removedTokens?: Token[];
56487
56967
  }
56488
56968
 
56489
- export type MultiInput$TokenUpdateEvent = Event<MultiInput$TokenUpdateEventParameters>;
56969
+ export type MultiInput$TokenUpdateEvent = Event<
56970
+ MultiInput$TokenUpdateEventParameters,
56971
+ MultiInput
56972
+ >;
56490
56973
  }
56491
56974
 
56492
56975
  declare module "sap/m/NavContainer" {
@@ -57619,7 +58102,10 @@ declare module "sap/m/NavContainer" {
57619
58102
  direction?: string;
57620
58103
  }
57621
58104
 
57622
- export type NavContainer$AfterNavigateEvent = Event<NavContainer$AfterNavigateEventParameters>;
58105
+ export type NavContainer$AfterNavigateEvent = Event<
58106
+ NavContainer$AfterNavigateEventParameters,
58107
+ NavContainer
58108
+ >;
57623
58109
 
57624
58110
  export interface NavContainer$NavigateEventParameters {
57625
58111
  /**
@@ -57674,7 +58160,10 @@ declare module "sap/m/NavContainer" {
57674
58160
  direction?: string;
57675
58161
  }
57676
58162
 
57677
- export type NavContainer$NavigateEvent = Event<NavContainer$NavigateEventParameters>;
58163
+ export type NavContainer$NavigateEvent = Event<
58164
+ NavContainer$NavigateEventParameters,
58165
+ NavContainer
58166
+ >;
57678
58167
 
57679
58168
  export interface NavContainer$NavigationFinishedEventParameters {
57680
58169
  /**
@@ -57729,7 +58218,10 @@ declare module "sap/m/NavContainer" {
57729
58218
  direction?: string;
57730
58219
  }
57731
58220
 
57732
- export type NavContainer$NavigationFinishedEvent = Event<NavContainer$NavigationFinishedEventParameters>;
58221
+ export type NavContainer$NavigationFinishedEvent = Event<
58222
+ NavContainer$NavigationFinishedEventParameters,
58223
+ NavContainer
58224
+ >;
57733
58225
  }
57734
58226
 
57735
58227
  declare module "sap/m/NewsContent" {
@@ -57992,7 +58484,10 @@ declare module "sap/m/NewsContent" {
57992
58484
 
57993
58485
  export interface NewsContent$PressEventParameters {}
57994
58486
 
57995
- export type NewsContent$PressEvent = Event<NewsContent$PressEventParameters>;
58487
+ export type NewsContent$PressEvent = Event<
58488
+ NewsContent$PressEventParameters,
58489
+ NewsContent
58490
+ >;
57996
58491
  }
57997
58492
 
57998
58493
  declare module "sap/m/NotificationList" {
@@ -58577,7 +59072,10 @@ declare module "sap/m/NotificationListBase" {
58577
59072
 
58578
59073
  export interface NotificationListBase$CloseEventParameters {}
58579
59074
 
58580
- export type NotificationListBase$CloseEvent = Event<NotificationListBase$CloseEventParameters>;
59075
+ export type NotificationListBase$CloseEvent = Event<
59076
+ NotificationListBase$CloseEventParameters,
59077
+ NotificationListBase
59078
+ >;
58581
59079
  }
58582
59080
 
58583
59081
  declare module "sap/m/NotificationListGroup" {
@@ -59136,7 +59634,10 @@ declare module "sap/m/NotificationListGroup" {
59136
59634
  collapsed?: boolean;
59137
59635
  }
59138
59636
 
59139
- export type NotificationListGroup$OnCollapseEvent = Event<NotificationListGroup$OnCollapseEventParameters>;
59637
+ export type NotificationListGroup$OnCollapseEvent = Event<
59638
+ NotificationListGroup$OnCollapseEventParameters,
59639
+ NotificationListGroup
59640
+ >;
59140
59641
  }
59141
59642
 
59142
59643
  declare module "sap/m/NotificationListItem" {
@@ -60112,7 +60613,10 @@ declare module "sap/m/NumericContent" {
60112
60613
 
60113
60614
  export interface NumericContent$PressEventParameters {}
60114
60615
 
60115
- export type NumericContent$PressEvent = Event<NumericContent$PressEventParameters>;
60616
+ export type NumericContent$PressEvent = Event<
60617
+ NumericContent$PressEventParameters,
60618
+ NumericContent
60619
+ >;
60116
60620
  }
60117
60621
 
60118
60622
  declare module "sap/m/ObjectAttribute" {
@@ -60545,7 +61049,10 @@ declare module "sap/m/ObjectAttribute" {
60545
61049
  domRef?: string;
60546
61050
  }
60547
61051
 
60548
- export type ObjectAttribute$PressEvent = Event<ObjectAttribute$PressEventParameters>;
61052
+ export type ObjectAttribute$PressEvent = Event<
61053
+ ObjectAttribute$PressEventParameters,
61054
+ ObjectAttribute
61055
+ >;
60549
61056
  }
60550
61057
 
60551
61058
  declare module "sap/m/ObjectHeader" {
@@ -62066,6 +62573,9 @@ declare module "sap/m/ObjectHeader" {
62066
62573
  sIntroTextDirection?: TextDirection | keyof typeof TextDirection
62067
62574
  ): this;
62068
62575
  /**
62576
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
62577
+ * `sap.m.ObjectMarkerType.Favorite`.
62578
+ *
62069
62579
  * Sets the visibility value of the Favorite marker.
62070
62580
  *
62071
62581
  * @returns this pointer for chaining
@@ -62077,6 +62587,9 @@ declare module "sap/m/ObjectHeader" {
62077
62587
  bMarked: boolean
62078
62588
  ): this;
62079
62589
  /**
62590
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
62591
+ * `sap.m.ObjectMarkerType.Flagged`.
62592
+ *
62080
62593
  * Sets the visibility value of the Flagged marker.
62081
62594
  *
62082
62595
  * @returns this pointer for chaining
@@ -62181,6 +62694,8 @@ declare module "sap/m/ObjectHeader" {
62181
62694
  oSecondStatus: ObjectStatus
62182
62695
  ): this;
62183
62696
  /**
62697
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregationv.
62698
+ *
62184
62699
  * Sets the visibility value of the Flagged and Favorite markers.
62185
62700
  *
62186
62701
  * @returns this pointer for chaining
@@ -62718,7 +63233,10 @@ declare module "sap/m/ObjectHeader" {
62718
63233
  domRef?: object;
62719
63234
  }
62720
63235
 
62721
- export type ObjectHeader$IconPressEvent = Event<ObjectHeader$IconPressEventParameters>;
63236
+ export type ObjectHeader$IconPressEvent = Event<
63237
+ ObjectHeader$IconPressEventParameters,
63238
+ ObjectHeader
63239
+ >;
62722
63240
 
62723
63241
  export interface ObjectHeader$IntroPressEventParameters {
62724
63242
  /**
@@ -62727,7 +63245,10 @@ declare module "sap/m/ObjectHeader" {
62727
63245
  domRef?: object;
62728
63246
  }
62729
63247
 
62730
- export type ObjectHeader$IntroPressEvent = Event<ObjectHeader$IntroPressEventParameters>;
63248
+ export type ObjectHeader$IntroPressEvent = Event<
63249
+ ObjectHeader$IntroPressEventParameters,
63250
+ ObjectHeader
63251
+ >;
62731
63252
 
62732
63253
  export interface ObjectHeader$TitlePressEventParameters {
62733
63254
  /**
@@ -62736,7 +63257,10 @@ declare module "sap/m/ObjectHeader" {
62736
63257
  domRef?: object;
62737
63258
  }
62738
63259
 
62739
- export type ObjectHeader$TitlePressEvent = Event<ObjectHeader$TitlePressEventParameters>;
63260
+ export type ObjectHeader$TitlePressEvent = Event<
63261
+ ObjectHeader$TitlePressEventParameters,
63262
+ ObjectHeader
63263
+ >;
62740
63264
 
62741
63265
  export interface ObjectHeader$TitleSelectorPressEventParameters {
62742
63266
  /**
@@ -62745,7 +63269,10 @@ declare module "sap/m/ObjectHeader" {
62745
63269
  domRef?: object;
62746
63270
  }
62747
63271
 
62748
- export type ObjectHeader$TitleSelectorPressEvent = Event<ObjectHeader$TitleSelectorPressEventParameters>;
63272
+ export type ObjectHeader$TitleSelectorPressEvent = Event<
63273
+ ObjectHeader$TitleSelectorPressEventParameters,
63274
+ ObjectHeader
63275
+ >;
62749
63276
  }
62750
63277
 
62751
63278
  declare module "sap/m/ObjectIdentifier" {
@@ -63280,7 +63807,10 @@ declare module "sap/m/ObjectIdentifier" {
63280
63807
  domRef?: object;
63281
63808
  }
63282
63809
 
63283
- export type ObjectIdentifier$TitlePressEvent = Event<ObjectIdentifier$TitlePressEventParameters>;
63810
+ export type ObjectIdentifier$TitlePressEvent = Event<
63811
+ ObjectIdentifier$TitlePressEventParameters,
63812
+ ObjectIdentifier
63813
+ >;
63284
63814
  }
63285
63815
 
63286
63816
  declare module "sap/m/ObjectListItem" {
@@ -63816,6 +64346,9 @@ declare module "sap/m/ObjectListItem" {
63816
64346
  sIntroTextDirection?: TextDirection | keyof typeof TextDirection
63817
64347
  ): this;
63818
64348
  /**
64349
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
64350
+ * `sap.m.ObjectMarkerType.Favorite`.
64351
+ *
63819
64352
  * Sets the visibility value of the Favorite marker.
63820
64353
  *
63821
64354
  * @returns this pointer for chaining
@@ -63827,6 +64360,9 @@ declare module "sap/m/ObjectListItem" {
63827
64360
  bMarked: boolean
63828
64361
  ): this;
63829
64362
  /**
64363
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
64364
+ * `sap.m.ObjectMarkerType.Flagged`.
64365
+ *
63830
64366
  * Sets the visibility value of the Flagged marker.
63831
64367
  *
63832
64368
  * @returns this pointer for chaining
@@ -63838,7 +64374,10 @@ declare module "sap/m/ObjectListItem" {
63838
64374
  bMarked: boolean
63839
64375
  ): this;
63840
64376
  /**
63841
- * Sets the visibility value of the Favorite marker.
64377
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
64378
+ * `sap.m.ObjectMarkerType.Locked`.
64379
+ *
64380
+ * Sets the visibility value of the Locked marker.
63842
64381
  *
63843
64382
  * @returns this pointer for chaining
63844
64383
  */
@@ -63928,6 +64467,8 @@ declare module "sap/m/ObjectListItem" {
63928
64467
  oSecondStatus: ObjectStatus
63929
64468
  ): this;
63930
64469
  /**
64470
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation.
64471
+ *
63931
64472
  * Sets the visibility value of the Flagged and Favorite markers.
63932
64473
  *
63933
64474
  * @returns this pointer for chaining
@@ -64454,7 +64995,10 @@ declare module "sap/m/ObjectMarker" {
64454
64995
  type?: ObjectMarkerType | keyof typeof ObjectMarkerType;
64455
64996
  }
64456
64997
 
64457
- export type ObjectMarker$PressEvent = Event<ObjectMarker$PressEventParameters>;
64998
+ export type ObjectMarker$PressEvent = Event<
64999
+ ObjectMarker$PressEventParameters,
65000
+ ObjectMarker
65001
+ >;
64458
65002
  }
64459
65003
 
64460
65004
  declare module "sap/m/ObjectNumber" {
@@ -65100,7 +65644,10 @@ declare module "sap/m/ObjectNumber" {
65100
65644
 
65101
65645
  export interface ObjectNumber$PressEventParameters {}
65102
65646
 
65103
- export type ObjectNumber$PressEvent = Event<ObjectNumber$PressEventParameters>;
65647
+ export type ObjectNumber$PressEvent = Event<
65648
+ ObjectNumber$PressEventParameters,
65649
+ ObjectNumber
65650
+ >;
65104
65651
  }
65105
65652
 
65106
65653
  declare module "sap/m/ObjectStatus" {
@@ -65728,7 +66275,10 @@ declare module "sap/m/ObjectStatus" {
65728
66275
 
65729
66276
  export interface ObjectStatus$PressEventParameters {}
65730
66277
 
65731
- export type ObjectStatus$PressEvent = Event<ObjectStatus$PressEventParameters>;
66278
+ export type ObjectStatus$PressEvent = Event<
66279
+ ObjectStatus$PressEventParameters,
66280
+ ObjectStatus
66281
+ >;
65732
66282
  }
65733
66283
 
65734
66284
  declare module "sap/m/OverflowToolbar" {
@@ -66755,7 +67305,10 @@ declare module "sap/m/p13n/BasePanel" {
66755
67305
  item?: Item;
66756
67306
  }
66757
67307
 
66758
- export type BasePanel$ChangeEvent = Event<BasePanel$ChangeEventParameters>;
67308
+ export type BasePanel$ChangeEvent = Event<
67309
+ BasePanel$ChangeEventParameters,
67310
+ BasePanel
67311
+ >;
66759
67312
  }
66760
67313
 
66761
67314
  declare module "sap/m/p13n/Engine" {
@@ -66773,30 +67326,31 @@ declare module "sap/m/p13n/Engine" {
66773
67326
 
66774
67327
  /**
66775
67328
  * @since 1.104
67329
+ *
67330
+ * The `Engine` entity offers personalization capabilities by registering a control instance for modification,
67331
+ * such as:
67332
+ *
67333
+ *
67334
+ * - `sap.m.p13n.Popup` initialization
67335
+ * - Storing personalization states by choosing the desired persistence layer
67336
+ * - State appliance considering the persistence layer
67337
+ *
67338
+ * The Engine must be used whenever personalization should be enabled by taking a certain persistence layer
67339
+ * into account. Available controller implementations for the registration process are:
67340
+ *
67341
+ *
67342
+ * - {@link sap.m.p13n.SelectionController SelectionController}: Used to define a list of selectable entries
67343
+ *
67344
+ * - {@link sap.m.p13n.SortController SortController}: Used to define a list of sortable properties
67345
+ * - {@link sap.m.p13n.GroupController GroupController}: Used to define a list of groupable properties
67346
+ *
67347
+ *
67348
+ * Can be used in combination with `sap.ui.fl.variants.VariantManagement` to persist a state in variants
67349
+ * using `sap.ui.fl` capabilities.
66776
67350
  */
66777
67351
  export default class Engine
66778
67352
  /* was: sap.m.p13n.modules.AdaptationProvider */ extends Object {
66779
67353
  /**
66780
- * The `Engine` entity offers personalization capabilities by registering a control instance for modification,
66781
- * such as:
66782
- *
66783
- *
66784
- * - `sap.m.p13n.Popup` initialization
66785
- * - Storing personalization states by choosing the desired persistence layer
66786
- * - State appliance considering the persistence layer
66787
- *
66788
- * The Engine must be used whenever personalization should be enabled by taking a certain persistence layer
66789
- * into account. Available controller implementations for the registration process are:
66790
- *
66791
- *
66792
- * - {@link sap.m.p13n.SelectionController SelectionController}: Used to define a list of selectable entries
66793
- *
66794
- * - {@link sap.m.p13n.SortController SortController}: Used to define a list of sortable properties
66795
- * - {@link sap.m.p13n.GroupController GroupController}: Used to define a list of groupable properties
66796
- *
66797
- *
66798
- * Can be used in combination with `sap.ui.fl.variants.VariantManagement` to persist a state in variants
66799
- * using `sap.ui.fl` capabilities.
66800
67354
  * See:
66801
67355
  * {@link https://ui5.sap.com/#/topic/75c08fdebf784575947927e052712bab Personalization}
66802
67356
  */
@@ -67203,11 +67757,11 @@ declare module "sap/m/p13n/MetadataHelper" {
67203
67757
 
67204
67758
  import Metadata from "sap/ui/base/Metadata";
67205
67759
 
67760
+ /**
67761
+ * The `MetadataHelper` entity offers utility functionality for providing service metadata during the `Engine#register`
67762
+ * process.
67763
+ */
67206
67764
  export default class MetadataHelper extends BaseObject {
67207
- /**
67208
- * The `MetadataHelper` entity offers utility functionality for providing service metadata during the `Engine#register`
67209
- * process.
67210
- */
67211
67765
  constructor();
67212
67766
 
67213
67767
  /**
@@ -67704,7 +68258,7 @@ declare module "sap/m/p13n/Popup" {
67704
68258
  reason?: string;
67705
68259
  }
67706
68260
 
67707
- export type Popup$CloseEvent = Event<Popup$CloseEventParameters>;
68261
+ export type Popup$CloseEvent = Event<Popup$CloseEventParameters, Popup>;
67708
68262
  }
67709
68263
 
67710
68264
  declare module "sap/m/p13n/SelectionController" {
@@ -69138,7 +69692,10 @@ declare module "sap/m/P13nColumnsPanel" {
69138
69692
  newItem?: P13nColumnsItem;
69139
69693
  }
69140
69694
 
69141
- export type P13nColumnsPanel$AddColumnsItemEvent = Event<P13nColumnsPanel$AddColumnsItemEventParameters>;
69695
+ export type P13nColumnsPanel$AddColumnsItemEvent = Event<
69696
+ P13nColumnsPanel$AddColumnsItemEventParameters,
69697
+ P13nColumnsPanel
69698
+ >;
69142
69699
 
69143
69700
  export interface P13nColumnsPanel$ChangeColumnsItemsEventParameters {
69144
69701
  /**
@@ -69160,11 +69717,17 @@ declare module "sap/m/P13nColumnsPanel" {
69160
69717
  items?: object[];
69161
69718
  }
69162
69719
 
69163
- export type P13nColumnsPanel$ChangeColumnsItemsEvent = Event<P13nColumnsPanel$ChangeColumnsItemsEventParameters>;
69720
+ export type P13nColumnsPanel$ChangeColumnsItemsEvent = Event<
69721
+ P13nColumnsPanel$ChangeColumnsItemsEventParameters,
69722
+ P13nColumnsPanel
69723
+ >;
69164
69724
 
69165
69725
  export interface P13nColumnsPanel$SetDataEventParameters {}
69166
69726
 
69167
- export type P13nColumnsPanel$SetDataEvent = Event<P13nColumnsPanel$SetDataEventParameters>;
69727
+ export type P13nColumnsPanel$SetDataEvent = Event<
69728
+ P13nColumnsPanel$SetDataEventParameters,
69729
+ P13nColumnsPanel
69730
+ >;
69168
69731
  }
69169
69732
 
69170
69733
  declare module "sap/m/P13nConditionPanel" {
@@ -69836,7 +70399,10 @@ declare module "sap/m/P13nConditionPanel" {
69836
70399
 
69837
70400
  export interface P13nConditionPanel$DataChangeEventParameters {}
69838
70401
 
69839
- export type P13nConditionPanel$DataChangeEvent = Event<P13nConditionPanel$DataChangeEventParameters>;
70402
+ export type P13nConditionPanel$DataChangeEvent = Event<
70403
+ P13nConditionPanel$DataChangeEventParameters,
70404
+ P13nConditionPanel
70405
+ >;
69840
70406
  }
69841
70407
 
69842
70408
  declare module "sap/m/P13nDialog" {
@@ -70421,15 +70987,24 @@ declare module "sap/m/P13nDialog" {
70421
70987
 
70422
70988
  export interface P13nDialog$CancelEventParameters {}
70423
70989
 
70424
- export type P13nDialog$CancelEvent = Event<P13nDialog$CancelEventParameters>;
70990
+ export type P13nDialog$CancelEvent = Event<
70991
+ P13nDialog$CancelEventParameters,
70992
+ P13nDialog
70993
+ >;
70425
70994
 
70426
70995
  export interface P13nDialog$OkEventParameters {}
70427
70996
 
70428
- export type P13nDialog$OkEvent = Event<P13nDialog$OkEventParameters>;
70997
+ export type P13nDialog$OkEvent = Event<
70998
+ P13nDialog$OkEventParameters,
70999
+ P13nDialog
71000
+ >;
70429
71001
 
70430
71002
  export interface P13nDialog$ResetEventParameters {}
70431
71003
 
70432
- export type P13nDialog$ResetEvent = Event<P13nDialog$ResetEventParameters>;
71004
+ export type P13nDialog$ResetEvent = Event<
71005
+ P13nDialog$ResetEventParameters,
71006
+ P13nDialog
71007
+ >;
70433
71008
  }
70434
71009
 
70435
71010
  declare module "sap/m/P13nDimMeasureItem" {
@@ -71120,11 +71695,17 @@ declare module "sap/m/P13nDimMeasurePanel" {
71120
71695
 
71121
71696
  export interface P13nDimMeasurePanel$ChangeChartTypeEventParameters {}
71122
71697
 
71123
- export type P13nDimMeasurePanel$ChangeChartTypeEvent = Event<P13nDimMeasurePanel$ChangeChartTypeEventParameters>;
71698
+ export type P13nDimMeasurePanel$ChangeChartTypeEvent = Event<
71699
+ P13nDimMeasurePanel$ChangeChartTypeEventParameters,
71700
+ P13nDimMeasurePanel
71701
+ >;
71124
71702
 
71125
71703
  export interface P13nDimMeasurePanel$ChangeDimMeasureItemsEventParameters {}
71126
71704
 
71127
- export type P13nDimMeasurePanel$ChangeDimMeasureItemsEvent = Event<P13nDimMeasurePanel$ChangeDimMeasureItemsEventParameters>;
71705
+ export type P13nDimMeasurePanel$ChangeDimMeasureItemsEvent = Event<
71706
+ P13nDimMeasurePanel$ChangeDimMeasureItemsEventParameters,
71707
+ P13nDimMeasurePanel
71708
+ >;
71128
71709
  }
71129
71710
 
71130
71711
  declare module "sap/m/P13nFilterItem" {
@@ -72155,7 +72736,10 @@ declare module "sap/m/P13nFilterPanel" {
72155
72736
 
72156
72737
  export interface P13nFilterPanel$AddFilterItemEventParameters {}
72157
72738
 
72158
- export type P13nFilterPanel$AddFilterItemEvent = Event<P13nFilterPanel$AddFilterItemEventParameters>;
72739
+ export type P13nFilterPanel$AddFilterItemEvent = Event<
72740
+ P13nFilterPanel$AddFilterItemEventParameters,
72741
+ P13nFilterPanel
72742
+ >;
72159
72743
 
72160
72744
  export interface P13nFilterPanel$FilterItemChangedEventParameters {
72161
72745
  /**
@@ -72180,15 +72764,24 @@ declare module "sap/m/P13nFilterPanel" {
72180
72764
  itemData?: object;
72181
72765
  }
72182
72766
 
72183
- export type P13nFilterPanel$FilterItemChangedEvent = Event<P13nFilterPanel$FilterItemChangedEventParameters>;
72767
+ export type P13nFilterPanel$FilterItemChangedEvent = Event<
72768
+ P13nFilterPanel$FilterItemChangedEventParameters,
72769
+ P13nFilterPanel
72770
+ >;
72184
72771
 
72185
72772
  export interface P13nFilterPanel$RemoveFilterItemEventParameters {}
72186
72773
 
72187
- export type P13nFilterPanel$RemoveFilterItemEvent = Event<P13nFilterPanel$RemoveFilterItemEventParameters>;
72774
+ export type P13nFilterPanel$RemoveFilterItemEvent = Event<
72775
+ P13nFilterPanel$RemoveFilterItemEventParameters,
72776
+ P13nFilterPanel
72777
+ >;
72188
72778
 
72189
72779
  export interface P13nFilterPanel$UpdateFilterItemEventParameters {}
72190
72780
 
72191
- export type P13nFilterPanel$UpdateFilterItemEvent = Event<P13nFilterPanel$UpdateFilterItemEventParameters>;
72781
+ export type P13nFilterPanel$UpdateFilterItemEvent = Event<
72782
+ P13nFilterPanel$UpdateFilterItemEventParameters,
72783
+ P13nFilterPanel
72784
+ >;
72192
72785
  }
72193
72786
 
72194
72787
  declare module "sap/m/P13nGroupItem" {
@@ -72916,15 +73509,24 @@ declare module "sap/m/P13nGroupPanel" {
72916
73509
 
72917
73510
  export interface P13nGroupPanel$AddGroupItemEventParameters {}
72918
73511
 
72919
- export type P13nGroupPanel$AddGroupItemEvent = Event<P13nGroupPanel$AddGroupItemEventParameters>;
73512
+ export type P13nGroupPanel$AddGroupItemEvent = Event<
73513
+ P13nGroupPanel$AddGroupItemEventParameters,
73514
+ P13nGroupPanel
73515
+ >;
72920
73516
 
72921
73517
  export interface P13nGroupPanel$RemoveGroupItemEventParameters {}
72922
73518
 
72923
- export type P13nGroupPanel$RemoveGroupItemEvent = Event<P13nGroupPanel$RemoveGroupItemEventParameters>;
73519
+ export type P13nGroupPanel$RemoveGroupItemEvent = Event<
73520
+ P13nGroupPanel$RemoveGroupItemEventParameters,
73521
+ P13nGroupPanel
73522
+ >;
72924
73523
 
72925
73524
  export interface P13nGroupPanel$UpdateGroupItemEventParameters {}
72926
73525
 
72927
- export type P13nGroupPanel$UpdateGroupItemEvent = Event<P13nGroupPanel$UpdateGroupItemEventParameters>;
73526
+ export type P13nGroupPanel$UpdateGroupItemEvent = Event<
73527
+ P13nGroupPanel$UpdateGroupItemEventParameters,
73528
+ P13nGroupPanel
73529
+ >;
72928
73530
  }
72929
73531
 
72930
73532
  declare module "sap/m/P13nItem" {
@@ -74175,7 +74777,10 @@ declare module "sap/m/P13nPanel" {
74175
74777
 
74176
74778
  export interface P13nPanel$BeforeNavigationToEventParameters {}
74177
74779
 
74178
- export type P13nPanel$BeforeNavigationToEvent = Event<P13nPanel$BeforeNavigationToEventParameters>;
74780
+ export type P13nPanel$BeforeNavigationToEvent = Event<
74781
+ P13nPanel$BeforeNavigationToEventParameters,
74782
+ P13nPanel
74783
+ >;
74179
74784
  }
74180
74785
 
74181
74786
  declare module "sap/m/P13nSortItem" {
@@ -74841,15 +75446,24 @@ declare module "sap/m/P13nSortPanel" {
74841
75446
 
74842
75447
  export interface P13nSortPanel$AddSortItemEventParameters {}
74843
75448
 
74844
- export type P13nSortPanel$AddSortItemEvent = Event<P13nSortPanel$AddSortItemEventParameters>;
75449
+ export type P13nSortPanel$AddSortItemEvent = Event<
75450
+ P13nSortPanel$AddSortItemEventParameters,
75451
+ P13nSortPanel
75452
+ >;
74845
75453
 
74846
75454
  export interface P13nSortPanel$RemoveSortItemEventParameters {}
74847
75455
 
74848
- export type P13nSortPanel$RemoveSortItemEvent = Event<P13nSortPanel$RemoveSortItemEventParameters>;
75456
+ export type P13nSortPanel$RemoveSortItemEvent = Event<
75457
+ P13nSortPanel$RemoveSortItemEventParameters,
75458
+ P13nSortPanel
75459
+ >;
74849
75460
 
74850
75461
  export interface P13nSortPanel$UpdateSortItemEventParameters {}
74851
75462
 
74852
- export type P13nSortPanel$UpdateSortItemEvent = Event<P13nSortPanel$UpdateSortItemEventParameters>;
75463
+ export type P13nSortPanel$UpdateSortItemEvent = Event<
75464
+ P13nSortPanel$UpdateSortItemEventParameters,
75465
+ P13nSortPanel
75466
+ >;
74853
75467
  }
74854
75468
 
74855
75469
  declare module "sap/m/Page" {
@@ -76070,11 +76684,17 @@ declare module "sap/m/Page" {
76070
76684
 
76071
76685
  export interface Page$NavButtonPressEventParameters {}
76072
76686
 
76073
- export type Page$NavButtonPressEvent = Event<Page$NavButtonPressEventParameters>;
76687
+ export type Page$NavButtonPressEvent = Event<
76688
+ Page$NavButtonPressEventParameters,
76689
+ Page
76690
+ >;
76074
76691
 
76075
76692
  export interface Page$NavButtonTapEventParameters {}
76076
76693
 
76077
- export type Page$NavButtonTapEvent = Event<Page$NavButtonTapEventParameters>;
76694
+ export type Page$NavButtonTapEvent = Event<
76695
+ Page$NavButtonTapEventParameters,
76696
+ Page
76697
+ >;
76078
76698
  }
76079
76699
 
76080
76700
  declare module "sap/m/PageAccessibleLandmarkInfo" {
@@ -76880,7 +77500,10 @@ declare module "sap/m/PagingButton" {
76880
77500
  oldPosition?: int;
76881
77501
  }
76882
77502
 
76883
- export type PagingButton$PositionChangeEvent = Event<PagingButton$PositionChangeEventParameters>;
77503
+ export type PagingButton$PositionChangeEvent = Event<
77504
+ PagingButton$PositionChangeEventParameters,
77505
+ PagingButton
77506
+ >;
76884
77507
  }
76885
77508
 
76886
77509
  declare module "sap/m/Panel" {
@@ -77231,6 +77854,20 @@ declare module "sap/m/Panel" {
77231
77854
  * information to the user.
77232
77855
  */
77233
77856
  getInfoToolbar(): Toolbar;
77857
+ /**
77858
+ * @since 1.117
77859
+ *
77860
+ * Gets current value of property {@link #getStickyHeader stickyHeader}.
77861
+ *
77862
+ * Indicates whether the Panel header is sticky or not. If stickyHeader is set to true, then whenever you
77863
+ * scroll the content or the application, the header of the panel will be always visible and a solid color
77864
+ * will be used for its design.
77865
+ *
77866
+ * Default value is `false`.
77867
+ *
77868
+ * @returns Value of property `stickyHeader`
77869
+ */
77870
+ getStickyHeader(): boolean;
77234
77871
  /**
77235
77872
  * Gets current value of property {@link #getWidth width}.
77236
77873
  *
@@ -77442,6 +78079,27 @@ declare module "sap/m/Panel" {
77442
78079
  */
77443
78080
  oInfoToolbar: Toolbar
77444
78081
  ): this;
78082
+ /**
78083
+ * @since 1.117
78084
+ *
78085
+ * Sets a new value for property {@link #getStickyHeader stickyHeader}.
78086
+ *
78087
+ * Indicates whether the Panel header is sticky or not. If stickyHeader is set to true, then whenever you
78088
+ * scroll the content or the application, the header of the panel will be always visible and a solid color
78089
+ * will be used for its design.
78090
+ *
78091
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
78092
+ *
78093
+ * Default value is `false`.
78094
+ *
78095
+ * @returns Reference to `this` in order to allow method chaining
78096
+ */
78097
+ setStickyHeader(
78098
+ /**
78099
+ * New value for property `stickyHeader`
78100
+ */
78101
+ bStickyHeader?: boolean
78102
+ ): this;
77445
78103
  /**
77446
78104
  * Sets a new value for property {@link #getWidth width}.
77447
78105
  *
@@ -77526,6 +78184,15 @@ declare module "sap/m/Panel" {
77526
78184
  | PropertyBindingInfo
77527
78185
  | `{${string}}`;
77528
78186
 
78187
+ /**
78188
+ * @since 1.117
78189
+ *
78190
+ * Indicates whether the Panel header is sticky or not. If stickyHeader is set to true, then whenever you
78191
+ * scroll the content or the application, the header of the panel will be always visible and a solid color
78192
+ * will be used for its design.
78193
+ */
78194
+ stickyHeader?: boolean | PropertyBindingInfo | `{${string}}`;
78195
+
77529
78196
  /**
77530
78197
  * Determines the content of the Panel. The content will be visible only when the Panel is expanded.
77531
78198
  */
@@ -77569,7 +78236,7 @@ declare module "sap/m/Panel" {
77569
78236
  triggeredByInteraction?: boolean;
77570
78237
  }
77571
78238
 
77572
- export type Panel$ExpandEvent = Event<Panel$ExpandEventParameters>;
78239
+ export type Panel$ExpandEvent = Event<Panel$ExpandEventParameters, Panel>;
77573
78240
  }
77574
78241
 
77575
78242
  declare module "sap/m/PDFViewer" {
@@ -78383,15 +79050,24 @@ declare module "sap/m/PDFViewer" {
78383
79050
  target?: any;
78384
79051
  }
78385
79052
 
78386
- export type PDFViewer$ErrorEvent = Event<PDFViewer$ErrorEventParameters>;
79053
+ export type PDFViewer$ErrorEvent = Event<
79054
+ PDFViewer$ErrorEventParameters,
79055
+ PDFViewer
79056
+ >;
78387
79057
 
78388
79058
  export interface PDFViewer$LoadedEventParameters {}
78389
79059
 
78390
- export type PDFViewer$LoadedEvent = Event<PDFViewer$LoadedEventParameters>;
79060
+ export type PDFViewer$LoadedEvent = Event<
79061
+ PDFViewer$LoadedEventParameters,
79062
+ PDFViewer
79063
+ >;
78391
79064
 
78392
79065
  export interface PDFViewer$SourceValidationFailedEventParameters {}
78393
79066
 
78394
- export type PDFViewer$SourceValidationFailedEvent = Event<PDFViewer$SourceValidationFailedEventParameters>;
79067
+ export type PDFViewer$SourceValidationFailedEvent = Event<
79068
+ PDFViewer$SourceValidationFailedEventParameters,
79069
+ PDFViewer
79070
+ >;
78395
79071
  }
78396
79072
 
78397
79073
  declare module "sap/m/PlanningCalendar" {
@@ -80605,7 +81281,10 @@ declare module "sap/m/PlanningCalendar" {
80605
81281
  domRefId?: string;
80606
81282
  }
80607
81283
 
80608
- export type PlanningCalendar$AppointmentSelectEvent = Event<PlanningCalendar$AppointmentSelectEventParameters>;
81284
+ export type PlanningCalendar$AppointmentSelectEvent = Event<
81285
+ PlanningCalendar$AppointmentSelectEventParameters,
81286
+ PlanningCalendar
81287
+ >;
80609
81288
 
80610
81289
  export interface PlanningCalendar$IntervalSelectEventParameters {
80611
81290
  /**
@@ -80629,7 +81308,10 @@ declare module "sap/m/PlanningCalendar" {
80629
81308
  row?: PlanningCalendarRow;
80630
81309
  }
80631
81310
 
80632
- export type PlanningCalendar$IntervalSelectEvent = Event<PlanningCalendar$IntervalSelectEventParameters>;
81311
+ export type PlanningCalendar$IntervalSelectEvent = Event<
81312
+ PlanningCalendar$IntervalSelectEventParameters,
81313
+ PlanningCalendar
81314
+ >;
80633
81315
 
80634
81316
  export interface PlanningCalendar$RowHeaderClickEventParameters {
80635
81317
  /**
@@ -80646,7 +81328,10 @@ declare module "sap/m/PlanningCalendar" {
80646
81328
  row?: PlanningCalendarRow;
80647
81329
  }
80648
81330
 
80649
- export type PlanningCalendar$RowHeaderClickEvent = Event<PlanningCalendar$RowHeaderClickEventParameters>;
81331
+ export type PlanningCalendar$RowHeaderClickEvent = Event<
81332
+ PlanningCalendar$RowHeaderClickEventParameters,
81333
+ PlanningCalendar
81334
+ >;
80650
81335
 
80651
81336
  export interface PlanningCalendar$RowSelectionChangeEventParameters {
80652
81337
  /**
@@ -80655,15 +81340,24 @@ declare module "sap/m/PlanningCalendar" {
80655
81340
  rows?: PlanningCalendarRow[];
80656
81341
  }
80657
81342
 
80658
- export type PlanningCalendar$RowSelectionChangeEvent = Event<PlanningCalendar$RowSelectionChangeEventParameters>;
81343
+ export type PlanningCalendar$RowSelectionChangeEvent = Event<
81344
+ PlanningCalendar$RowSelectionChangeEventParameters,
81345
+ PlanningCalendar
81346
+ >;
80659
81347
 
80660
81348
  export interface PlanningCalendar$StartDateChangeEventParameters {}
80661
81349
 
80662
- export type PlanningCalendar$StartDateChangeEvent = Event<PlanningCalendar$StartDateChangeEventParameters>;
81350
+ export type PlanningCalendar$StartDateChangeEvent = Event<
81351
+ PlanningCalendar$StartDateChangeEventParameters,
81352
+ PlanningCalendar
81353
+ >;
80663
81354
 
80664
81355
  export interface PlanningCalendar$ViewChangeEventParameters {}
80665
81356
 
80666
- export type PlanningCalendar$ViewChangeEvent = Event<PlanningCalendar$ViewChangeEventParameters>;
81357
+ export type PlanningCalendar$ViewChangeEvent = Event<
81358
+ PlanningCalendar$ViewChangeEventParameters,
81359
+ PlanningCalendar
81360
+ >;
80667
81361
  }
80668
81362
 
80669
81363
  declare module "sap/m/PlanningCalendarLegend" {
@@ -82366,7 +83060,10 @@ declare module "sap/m/PlanningCalendarRow" {
82366
83060
  calendarRow?: PlanningCalendarRow;
82367
83061
  }
82368
83062
 
82369
- export type PlanningCalendarRow$AppointmentCreateEvent = Event<PlanningCalendarRow$AppointmentCreateEventParameters>;
83063
+ export type PlanningCalendarRow$AppointmentCreateEvent = Event<
83064
+ PlanningCalendarRow$AppointmentCreateEventParameters,
83065
+ PlanningCalendarRow
83066
+ >;
82370
83067
 
82371
83068
  export interface PlanningCalendarRow$AppointmentDragEnterEventParameters {
82372
83069
  /**
@@ -82390,7 +83087,10 @@ declare module "sap/m/PlanningCalendarRow" {
82390
83087
  calendarRow?: PlanningCalendarRow;
82391
83088
  }
82392
83089
 
82393
- export type PlanningCalendarRow$AppointmentDragEnterEvent = Event<PlanningCalendarRow$AppointmentDragEnterEventParameters>;
83090
+ export type PlanningCalendarRow$AppointmentDragEnterEvent = Event<
83091
+ PlanningCalendarRow$AppointmentDragEnterEventParameters,
83092
+ PlanningCalendarRow
83093
+ >;
82394
83094
 
82395
83095
  export interface PlanningCalendarRow$AppointmentDropEventParameters {
82396
83096
  /**
@@ -82419,7 +83119,10 @@ declare module "sap/m/PlanningCalendarRow" {
82419
83119
  copy?: boolean;
82420
83120
  }
82421
83121
 
82422
- export type PlanningCalendarRow$AppointmentDropEvent = Event<PlanningCalendarRow$AppointmentDropEventParameters>;
83122
+ export type PlanningCalendarRow$AppointmentDropEvent = Event<
83123
+ PlanningCalendarRow$AppointmentDropEventParameters,
83124
+ PlanningCalendarRow
83125
+ >;
82423
83126
 
82424
83127
  export interface PlanningCalendarRow$AppointmentResizeEventParameters {
82425
83128
  /**
@@ -82438,7 +83141,10 @@ declare module "sap/m/PlanningCalendarRow" {
82438
83141
  endDate?: object;
82439
83142
  }
82440
83143
 
82441
- export type PlanningCalendarRow$AppointmentResizeEvent = Event<PlanningCalendarRow$AppointmentResizeEventParameters>;
83144
+ export type PlanningCalendarRow$AppointmentResizeEvent = Event<
83145
+ PlanningCalendarRow$AppointmentResizeEventParameters,
83146
+ PlanningCalendarRow
83147
+ >;
82442
83148
  }
82443
83149
 
82444
83150
  declare module "sap/m/PlanningCalendarView" {
@@ -83138,7 +83844,10 @@ declare module "sap/m/plugins/ColumnResizer" {
83138
83844
  width?: CSSSize;
83139
83845
  }
83140
83846
 
83141
- export type ColumnResizer$ColumnResizeEvent = Event<ColumnResizer$ColumnResizeEventParameters>;
83847
+ export type ColumnResizer$ColumnResizeEvent = Event<
83848
+ ColumnResizer$ColumnResizeEventParameters,
83849
+ ColumnResizer
83850
+ >;
83142
83851
  }
83143
83852
 
83144
83853
  declare module "sap/m/plugins/CopyProvider" {
@@ -83593,7 +84302,10 @@ declare module "sap/m/plugins/CopyProvider" {
83593
84302
  data?: any[][];
83594
84303
  }
83595
84304
 
83596
- export type CopyProvider$CopyEvent = Event<CopyProvider$CopyEventParameters>;
84305
+ export type CopyProvider$CopyEvent = Event<
84306
+ CopyProvider$CopyEventParameters,
84307
+ CopyProvider
84308
+ >;
83597
84309
  }
83598
84310
 
83599
84311
  declare module "sap/m/plugins/DataStateIndicator" {
@@ -84169,15 +84881,24 @@ declare module "sap/m/plugins/DataStateIndicator" {
84169
84881
  filter?: Filter;
84170
84882
  }
84171
84883
 
84172
- export type DataStateIndicator$ApplyFilterEvent = Event<DataStateIndicator$ApplyFilterEventParameters>;
84884
+ export type DataStateIndicator$ApplyFilterEvent = Event<
84885
+ DataStateIndicator$ApplyFilterEventParameters,
84886
+ DataStateIndicator
84887
+ >;
84173
84888
 
84174
84889
  export interface DataStateIndicator$ClearFilterEventParameters {}
84175
84890
 
84176
- export type DataStateIndicator$ClearFilterEvent = Event<DataStateIndicator$ClearFilterEventParameters>;
84891
+ export type DataStateIndicator$ClearFilterEvent = Event<
84892
+ DataStateIndicator$ClearFilterEventParameters,
84893
+ DataStateIndicator
84894
+ >;
84177
84895
 
84178
84896
  export interface DataStateIndicator$CloseEventParameters {}
84179
84897
 
84180
- export type DataStateIndicator$CloseEvent = Event<DataStateIndicator$CloseEventParameters>;
84898
+ export type DataStateIndicator$CloseEvent = Event<
84899
+ DataStateIndicator$CloseEventParameters,
84900
+ DataStateIndicator
84901
+ >;
84181
84902
 
84182
84903
  export interface DataStateIndicator$DataStateChangeEventParameters {
84183
84904
  /**
@@ -84192,7 +84913,10 @@ declare module "sap/m/plugins/DataStateIndicator" {
84192
84913
  filteredMessages?: object[];
84193
84914
  }
84194
84915
 
84195
- export type DataStateIndicator$DataStateChangeEvent = Event<DataStateIndicator$DataStateChangeEventParameters>;
84916
+ export type DataStateIndicator$DataStateChangeEvent = Event<
84917
+ DataStateIndicator$DataStateChangeEventParameters,
84918
+ DataStateIndicator
84919
+ >;
84196
84920
  }
84197
84921
 
84198
84922
  declare module "sap/m/plugins/PasteProvider" {
@@ -84406,7 +85130,10 @@ declare module "sap/m/plugins/PasteProvider" {
84406
85130
  text?: string;
84407
85131
  }
84408
85132
 
84409
- export type PasteProvider$PasteEvent = Event<PasteProvider$PasteEventParameters>;
85133
+ export type PasteProvider$PasteEvent = Event<
85134
+ PasteProvider$PasteEventParameters,
85135
+ PasteProvider
85136
+ >;
84410
85137
  }
84411
85138
 
84412
85139
  declare module "sap/m/Popover" {
@@ -86020,7 +86747,10 @@ declare module "sap/m/Popover" {
86020
86747
  openBy?: Control;
86021
86748
  }
86022
86749
 
86023
- export type Popover$AfterCloseEvent = Event<Popover$AfterCloseEventParameters>;
86750
+ export type Popover$AfterCloseEvent = Event<
86751
+ Popover$AfterCloseEventParameters,
86752
+ Popover
86753
+ >;
86024
86754
 
86025
86755
  export interface Popover$AfterOpenEventParameters {
86026
86756
  /**
@@ -86029,7 +86759,10 @@ declare module "sap/m/Popover" {
86029
86759
  openBy?: Control;
86030
86760
  }
86031
86761
 
86032
- export type Popover$AfterOpenEvent = Event<Popover$AfterOpenEventParameters>;
86762
+ export type Popover$AfterOpenEvent = Event<
86763
+ Popover$AfterOpenEventParameters,
86764
+ Popover
86765
+ >;
86033
86766
 
86034
86767
  export interface Popover$BeforeCloseEventParameters {
86035
86768
  /**
@@ -86038,7 +86771,10 @@ declare module "sap/m/Popover" {
86038
86771
  openBy?: Control;
86039
86772
  }
86040
86773
 
86041
- export type Popover$BeforeCloseEvent = Event<Popover$BeforeCloseEventParameters>;
86774
+ export type Popover$BeforeCloseEvent = Event<
86775
+ Popover$BeforeCloseEventParameters,
86776
+ Popover
86777
+ >;
86042
86778
 
86043
86779
  export interface Popover$BeforeOpenEventParameters {
86044
86780
  /**
@@ -86047,7 +86783,10 @@ declare module "sap/m/Popover" {
86047
86783
  openBy?: Control;
86048
86784
  }
86049
86785
 
86050
- export type Popover$BeforeOpenEvent = Event<Popover$BeforeOpenEventParameters>;
86786
+ export type Popover$BeforeOpenEvent = Event<
86787
+ Popover$BeforeOpenEventParameters,
86788
+ Popover
86789
+ >;
86051
86790
  }
86052
86791
 
86053
86792
  declare module "sap/m/ProgressIndicator" {
@@ -86925,7 +87664,10 @@ declare module "sap/m/PullToRefresh" {
86925
87664
 
86926
87665
  export interface PullToRefresh$RefreshEventParameters {}
86927
87666
 
86928
- export type PullToRefresh$RefreshEvent = Event<PullToRefresh$RefreshEventParameters>;
87667
+ export type PullToRefresh$RefreshEvent = Event<
87668
+ PullToRefresh$RefreshEventParameters,
87669
+ PullToRefresh
87670
+ >;
86929
87671
  }
86930
87672
 
86931
87673
  declare module "sap/m/QuickView" {
@@ -87439,7 +88181,10 @@ declare module "sap/m/QuickView" {
87439
88181
  origin?: Button;
87440
88182
  }
87441
88183
 
87442
- export type QuickView$AfterCloseEvent = Event<QuickView$AfterCloseEventParameters>;
88184
+ export type QuickView$AfterCloseEvent = Event<
88185
+ QuickView$AfterCloseEventParameters,
88186
+ QuickView
88187
+ >;
87443
88188
 
87444
88189
  export interface QuickView$AfterOpenEventParameters {
87445
88190
  /**
@@ -87448,7 +88193,10 @@ declare module "sap/m/QuickView" {
87448
88193
  openBy?: Control;
87449
88194
  }
87450
88195
 
87451
- export type QuickView$AfterOpenEvent = Event<QuickView$AfterOpenEventParameters>;
88196
+ export type QuickView$AfterOpenEvent = Event<
88197
+ QuickView$AfterOpenEventParameters,
88198
+ QuickView
88199
+ >;
87452
88200
 
87453
88201
  export interface QuickView$BeforeCloseEventParameters {
87454
88202
  /**
@@ -87463,7 +88211,10 @@ declare module "sap/m/QuickView" {
87463
88211
  origin?: Button;
87464
88212
  }
87465
88213
 
87466
- export type QuickView$BeforeCloseEvent = Event<QuickView$BeforeCloseEventParameters>;
88214
+ export type QuickView$BeforeCloseEvent = Event<
88215
+ QuickView$BeforeCloseEventParameters,
88216
+ QuickView
88217
+ >;
87467
88218
 
87468
88219
  export interface QuickView$BeforeOpenEventParameters {
87469
88220
  /**
@@ -87472,7 +88223,10 @@ declare module "sap/m/QuickView" {
87472
88223
  openBy?: Control;
87473
88224
  }
87474
88225
 
87475
- export type QuickView$BeforeOpenEvent = Event<QuickView$BeforeOpenEventParameters>;
88226
+ export type QuickView$BeforeOpenEvent = Event<
88227
+ QuickView$BeforeOpenEventParameters,
88228
+ QuickView
88229
+ >;
87476
88230
  }
87477
88231
 
87478
88232
  declare module "sap/m/QuickViewBase" {
@@ -87895,7 +88649,10 @@ declare module "sap/m/QuickViewBase" {
87895
88649
  navOrigin?: Control;
87896
88650
  }
87897
88651
 
87898
- export type QuickViewBase$AfterNavigateEvent = Event<QuickViewBase$AfterNavigateEventParameters>;
88652
+ export type QuickViewBase$AfterNavigateEvent = Event<
88653
+ QuickViewBase$AfterNavigateEventParameters,
88654
+ QuickViewBase
88655
+ >;
87899
88656
 
87900
88657
  export interface QuickViewBase$NavigateEventParameters {
87901
88658
  /**
@@ -87955,7 +88712,10 @@ declare module "sap/m/QuickViewBase" {
87955
88712
  navOrigin?: Control;
87956
88713
  }
87957
88714
 
87958
- export type QuickViewBase$NavigateEvent = Event<QuickViewBase$NavigateEventParameters>;
88715
+ export type QuickViewBase$NavigateEvent = Event<
88716
+ QuickViewBase$NavigateEventParameters,
88717
+ QuickViewBase
88718
+ >;
87959
88719
  }
87960
88720
 
87961
88721
  declare module "sap/m/QuickViewCard" {
@@ -89946,7 +90706,10 @@ declare module "sap/m/RadioButton" {
89946
90706
  selected?: boolean;
89947
90707
  }
89948
90708
 
89949
- export type RadioButton$SelectEvent = Event<RadioButton$SelectEventParameters>;
90709
+ export type RadioButton$SelectEvent = Event<
90710
+ RadioButton$SelectEventParameters,
90711
+ RadioButton
90712
+ >;
89950
90713
  }
89951
90714
 
89952
90715
  declare module "sap/m/RadioButtonGroup" {
@@ -90583,7 +91346,10 @@ declare module "sap/m/RadioButtonGroup" {
90583
91346
  selectedIndex?: int;
90584
91347
  }
90585
91348
 
90586
- export type RadioButtonGroup$SelectEvent = Event<RadioButtonGroup$SelectEventParameters>;
91349
+ export type RadioButtonGroup$SelectEvent = Event<
91350
+ RadioButtonGroup$SelectEventParameters,
91351
+ RadioButtonGroup
91352
+ >;
90587
91353
  }
90588
91354
 
90589
91355
  declare module "sap/m/RangeSlider" {
@@ -91539,7 +92305,10 @@ declare module "sap/m/RatingIndicator" {
91539
92305
  value?: int;
91540
92306
  }
91541
92307
 
91542
- export type RatingIndicator$ChangeEvent = Event<RatingIndicator$ChangeEventParameters>;
92308
+ export type RatingIndicator$ChangeEvent = Event<
92309
+ RatingIndicator$ChangeEventParameters,
92310
+ RatingIndicator
92311
+ >;
91543
92312
 
91544
92313
  export interface RatingIndicator$LiveChangeEventParameters {
91545
92314
  /**
@@ -91548,7 +92317,10 @@ declare module "sap/m/RatingIndicator" {
91548
92317
  value?: float;
91549
92318
  }
91550
92319
 
91551
- export type RatingIndicator$LiveChangeEvent = Event<RatingIndicator$LiveChangeEventParameters>;
92320
+ export type RatingIndicator$LiveChangeEvent = Event<
92321
+ RatingIndicator$LiveChangeEventParameters,
92322
+ RatingIndicator
92323
+ >;
91552
92324
  }
91553
92325
 
91554
92326
  declare module "sap/m/ResponsivePopover" {
@@ -92803,7 +93575,10 @@ declare module "sap/m/ResponsivePopover" {
92803
93575
  origin?: Button;
92804
93576
  }
92805
93577
 
92806
- export type ResponsivePopover$AfterCloseEvent = Event<ResponsivePopover$AfterCloseEventParameters>;
93578
+ export type ResponsivePopover$AfterCloseEvent = Event<
93579
+ ResponsivePopover$AfterCloseEventParameters,
93580
+ ResponsivePopover
93581
+ >;
92807
93582
 
92808
93583
  export interface ResponsivePopover$AfterOpenEventParameters {
92809
93584
  /**
@@ -92813,7 +93588,10 @@ declare module "sap/m/ResponsivePopover" {
92813
93588
  openBy?: Control;
92814
93589
  }
92815
93590
 
92816
- export type ResponsivePopover$AfterOpenEvent = Event<ResponsivePopover$AfterOpenEventParameters>;
93591
+ export type ResponsivePopover$AfterOpenEvent = Event<
93592
+ ResponsivePopover$AfterOpenEventParameters,
93593
+ ResponsivePopover
93594
+ >;
92817
93595
 
92818
93596
  export interface ResponsivePopover$BeforeCloseEventParameters {
92819
93597
  /**
@@ -92829,7 +93607,10 @@ declare module "sap/m/ResponsivePopover" {
92829
93607
  origin?: Button;
92830
93608
  }
92831
93609
 
92832
- export type ResponsivePopover$BeforeCloseEvent = Event<ResponsivePopover$BeforeCloseEventParameters>;
93610
+ export type ResponsivePopover$BeforeCloseEvent = Event<
93611
+ ResponsivePopover$BeforeCloseEventParameters,
93612
+ ResponsivePopover
93613
+ >;
92833
93614
 
92834
93615
  export interface ResponsivePopover$BeforeOpenEventParameters {
92835
93616
  /**
@@ -92839,7 +93620,10 @@ declare module "sap/m/ResponsivePopover" {
92839
93620
  openBy?: Control;
92840
93621
  }
92841
93622
 
92842
- export type ResponsivePopover$BeforeOpenEvent = Event<ResponsivePopover$BeforeOpenEventParameters>;
93623
+ export type ResponsivePopover$BeforeOpenEvent = Event<
93624
+ ResponsivePopover$BeforeOpenEventParameters,
93625
+ ResponsivePopover
93626
+ >;
92843
93627
  }
92844
93628
 
92845
93629
  declare module "sap/m/ResponsiveScale" {
@@ -95405,7 +96189,10 @@ declare module "sap/m/SearchField" {
95405
96189
  value?: string;
95406
96190
  }
95407
96191
 
95408
- export type SearchField$ChangeEvent = Event<SearchField$ChangeEventParameters>;
96192
+ export type SearchField$ChangeEvent = Event<
96193
+ SearchField$ChangeEventParameters,
96194
+ SearchField
96195
+ >;
95409
96196
 
95410
96197
  export interface SearchField$LiveChangeEventParameters {
95411
96198
  /**
@@ -95414,7 +96201,10 @@ declare module "sap/m/SearchField" {
95414
96201
  newValue?: string;
95415
96202
  }
95416
96203
 
95417
- export type SearchField$LiveChangeEvent = Event<SearchField$LiveChangeEventParameters>;
96204
+ export type SearchField$LiveChangeEvent = Event<
96205
+ SearchField$LiveChangeEventParameters,
96206
+ SearchField
96207
+ >;
95418
96208
 
95419
96209
  export interface SearchField$SearchEventParameters {
95420
96210
  /**
@@ -95449,7 +96239,10 @@ declare module "sap/m/SearchField" {
95449
96239
  escPressed?: boolean;
95450
96240
  }
95451
96241
 
95452
- export type SearchField$SearchEvent = Event<SearchField$SearchEventParameters>;
96242
+ export type SearchField$SearchEvent = Event<
96243
+ SearchField$SearchEventParameters,
96244
+ SearchField
96245
+ >;
95453
96246
 
95454
96247
  export interface SearchField$SuggestEventParameters {
95455
96248
  /**
@@ -95458,7 +96251,10 @@ declare module "sap/m/SearchField" {
95458
96251
  suggestValue?: string;
95459
96252
  }
95460
96253
 
95461
- export type SearchField$SuggestEvent = Event<SearchField$SuggestEventParameters>;
96254
+ export type SearchField$SuggestEvent = Event<
96255
+ SearchField$SuggestEventParameters,
96256
+ SearchField
96257
+ >;
95462
96258
  }
95463
96259
 
95464
96260
  declare module "sap/m/SegmentedButton" {
@@ -96284,7 +97080,10 @@ declare module "sap/m/SegmentedButton" {
96284
97080
  key?: string;
96285
97081
  }
96286
97082
 
96287
- export type SegmentedButton$SelectEvent = Event<SegmentedButton$SelectEventParameters>;
97083
+ export type SegmentedButton$SelectEvent = Event<
97084
+ SegmentedButton$SelectEventParameters,
97085
+ SegmentedButton
97086
+ >;
96288
97087
 
96289
97088
  export interface SegmentedButton$SelectionChangeEventParameters {
96290
97089
  /**
@@ -96293,7 +97092,10 @@ declare module "sap/m/SegmentedButton" {
96293
97092
  item?: SegmentedButtonItem;
96294
97093
  }
96295
97094
 
96296
- export type SegmentedButton$SelectionChangeEvent = Event<SegmentedButton$SelectionChangeEventParameters>;
97095
+ export type SegmentedButton$SelectionChangeEvent = Event<
97096
+ SegmentedButton$SelectionChangeEventParameters,
97097
+ SegmentedButton
97098
+ >;
96297
97099
  }
96298
97100
 
96299
97101
  declare module "sap/m/SegmentedButtonItem" {
@@ -96562,7 +97364,10 @@ declare module "sap/m/SegmentedButtonItem" {
96562
97364
 
96563
97365
  export interface SegmentedButtonItem$PressEventParameters {}
96564
97366
 
96565
- export type SegmentedButtonItem$PressEvent = Event<SegmentedButtonItem$PressEventParameters>;
97367
+ export type SegmentedButtonItem$PressEvent = Event<
97368
+ SegmentedButtonItem$PressEventParameters,
97369
+ SegmentedButtonItem
97370
+ >;
96566
97371
  }
96567
97372
 
96568
97373
  declare module "sap/m/Select" {
@@ -98037,7 +98842,7 @@ declare module "sap/m/Select" {
98037
98842
  previousSelectedItem?: Item;
98038
98843
  }
98039
98844
 
98040
- export type Select$ChangeEvent = Event<Select$ChangeEventParameters>;
98845
+ export type Select$ChangeEvent = Event<Select$ChangeEventParameters, Select>;
98041
98846
 
98042
98847
  export interface Select$LiveChangeEventParameters {
98043
98848
  /**
@@ -98046,7 +98851,10 @@ declare module "sap/m/Select" {
98046
98851
  selectedItem?: Item;
98047
98852
  }
98048
98853
 
98049
- export type Select$LiveChangeEvent = Event<Select$LiveChangeEventParameters>;
98854
+ export type Select$LiveChangeEvent = Event<
98855
+ Select$LiveChangeEventParameters,
98856
+ Select
98857
+ >;
98050
98858
  }
98051
98859
 
98052
98860
  declare module "sap/m/SelectDialog" {
@@ -99177,7 +99985,10 @@ declare module "sap/m/SelectDialog" {
99177
99985
 
99178
99986
  export interface SelectDialog$CancelEventParameters {}
99179
99987
 
99180
- export type SelectDialog$CancelEvent = Event<SelectDialog$CancelEventParameters>;
99988
+ export type SelectDialog$CancelEvent = Event<
99989
+ SelectDialog$CancelEventParameters,
99990
+ SelectDialog
99991
+ >;
99181
99992
 
99182
99993
  export interface SelectDialog$ConfirmEventParameters {
99183
99994
  /**
@@ -99204,7 +100015,10 @@ declare module "sap/m/SelectDialog" {
99204
100015
  selectedContexts?: object[];
99205
100016
  }
99206
100017
 
99207
- export type SelectDialog$ConfirmEvent = Event<SelectDialog$ConfirmEventParameters>;
100018
+ export type SelectDialog$ConfirmEvent = Event<
100019
+ SelectDialog$ConfirmEventParameters,
100020
+ SelectDialog
100021
+ >;
99208
100022
 
99209
100023
  export interface SelectDialog$LiveChangeEventParameters {
99210
100024
  /**
@@ -99219,7 +100033,10 @@ declare module "sap/m/SelectDialog" {
99219
100033
  itemsBinding?: any;
99220
100034
  }
99221
100035
 
99222
- export type SelectDialog$LiveChangeEvent = Event<SelectDialog$LiveChangeEventParameters>;
100036
+ export type SelectDialog$LiveChangeEvent = Event<
100037
+ SelectDialog$LiveChangeEventParameters,
100038
+ SelectDialog
100039
+ >;
99223
100040
 
99224
100041
  export interface SelectDialog$SearchEventParameters {
99225
100042
  /**
@@ -99239,14 +100056,21 @@ declare module "sap/m/SelectDialog" {
99239
100056
  clearButtonPressed?: boolean;
99240
100057
  }
99241
100058
 
99242
- export type SelectDialog$SearchEvent = Event<SelectDialog$SearchEventParameters>;
100059
+ export type SelectDialog$SearchEvent = Event<
100060
+ SelectDialog$SearchEventParameters,
100061
+ SelectDialog
100062
+ >;
99243
100063
  }
99244
100064
 
99245
100065
  declare module "sap/m/SelectDialogBase" {
99246
100066
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
99247
100067
 
100068
+ import { SelectDialogInitialFocus } from "sap/m/library";
100069
+
99248
100070
  import ElementMetadata from "sap/ui/core/ElementMetadata";
99249
100071
 
100072
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
100073
+
99250
100074
  import ListItemBase from "sap/m/ListItemBase";
99251
100075
 
99252
100076
  import Event from "sap/ui/base/Event";
@@ -99430,7 +100254,7 @@ declare module "sap/m/SelectDialogBase" {
99430
100254
  *
99431
100255
  * Fires before `items` binding is updated (e.g. sorting, filtering)
99432
100256
  *
99433
- * **Note:** Event handler should not invalidate the control. *
100257
+ * **Note:** Event handler should not invalidate the control.
99434
100258
  *
99435
100259
  * @returns Reference to `this` in order to allow method chaining
99436
100260
  */
@@ -99459,7 +100283,7 @@ declare module "sap/m/SelectDialogBase" {
99459
100283
  *
99460
100284
  * Fires before `items` binding is updated (e.g. sorting, filtering)
99461
100285
  *
99462
- * **Note:** Event handler should not invalidate the control. *
100286
+ * **Note:** Event handler should not invalidate the control.
99463
100287
  *
99464
100288
  * @returns Reference to `this` in order to allow method chaining
99465
100289
  */
@@ -99575,15 +100399,69 @@ declare module "sap/m/SelectDialogBase" {
99575
100399
  */
99576
100400
  mParameters?: SelectDialogBase$UpdateStartedEventParameters
99577
100401
  ): this;
100402
+ /**
100403
+ * @since 1.117.0
100404
+ *
100405
+ * Gets current value of property {@link #getInitialFocus initialFocus}.
100406
+ *
100407
+ * Specifies the control that will receive the initial focus.
100408
+ *
100409
+ * **Note:** When the `growing` property is set to `true`, you can set the initial focus to `sap.m.SelectDialogInitialFocus.SearchField`.
100410
+ * In this way the user can easily search for items that are not currently visible.
100411
+ *
100412
+ * Default value is `List`.
100413
+ *
100414
+ * @returns Value of property `initialFocus`
100415
+ */
100416
+ getInitialFocus():
100417
+ | SelectDialogInitialFocus
100418
+ | keyof typeof SelectDialogInitialFocus;
100419
+ /**
100420
+ * @since 1.117.0
100421
+ *
100422
+ * Sets a new value for property {@link #getInitialFocus initialFocus}.
100423
+ *
100424
+ * Specifies the control that will receive the initial focus.
100425
+ *
100426
+ * **Note:** When the `growing` property is set to `true`, you can set the initial focus to `sap.m.SelectDialogInitialFocus.SearchField`.
100427
+ * In this way the user can easily search for items that are not currently visible.
100428
+ *
100429
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
100430
+ *
100431
+ * Default value is `List`.
100432
+ *
100433
+ * @returns Reference to `this` in order to allow method chaining
100434
+ */
100435
+ setInitialFocus(
100436
+ /**
100437
+ * New value for property `initialFocus`
100438
+ */
100439
+ sInitialFocus?:
100440
+ | SelectDialogInitialFocus
100441
+ | keyof typeof SelectDialogInitialFocus
100442
+ ): this;
99578
100443
  }
99579
100444
 
99580
100445
  export interface $SelectDialogBaseSettings extends $ControlSettings {
100446
+ /**
100447
+ * @since 1.117.0
100448
+ *
100449
+ * Specifies the control that will receive the initial focus.
100450
+ *
100451
+ * **Note:** When the `growing` property is set to `true`, you can set the initial focus to `sap.m.SelectDialogInitialFocus.SearchField`.
100452
+ * In this way the user can easily search for items that are not currently visible.
100453
+ */
100454
+ initialFocus?:
100455
+ | (SelectDialogInitialFocus | keyof typeof SelectDialogInitialFocus)
100456
+ | PropertyBindingInfo
100457
+ | `{${string}}`;
100458
+
99581
100459
  /**
99582
100460
  * @since 1.93
99583
100461
  *
99584
100462
  * Fires before `items` binding is updated (e.g. sorting, filtering)
99585
100463
  *
99586
- * **Note:** Event handler should not invalidate the control. *
100464
+ * **Note:** Event handler should not invalidate the control.
99587
100465
  */
99588
100466
  updateStarted?: (oEvent: SelectDialogBase$UpdateStartedEvent) => void;
99589
100467
 
@@ -99625,7 +100503,10 @@ declare module "sap/m/SelectDialogBase" {
99625
100503
  selectAll?: boolean;
99626
100504
  }
99627
100505
 
99628
- export type SelectDialogBase$SelectionChangeEvent = Event<SelectDialogBase$SelectionChangeEventParameters>;
100506
+ export type SelectDialogBase$SelectionChangeEvent = Event<
100507
+ SelectDialogBase$SelectionChangeEventParameters,
100508
+ SelectDialogBase
100509
+ >;
99629
100510
 
99630
100511
  export interface SelectDialogBase$UpdateFinishedEventParameters {
99631
100512
  /**
@@ -99644,7 +100525,10 @@ declare module "sap/m/SelectDialogBase" {
99644
100525
  total?: int;
99645
100526
  }
99646
100527
 
99647
- export type SelectDialogBase$UpdateFinishedEvent = Event<SelectDialogBase$UpdateFinishedEventParameters>;
100528
+ export type SelectDialogBase$UpdateFinishedEvent = Event<
100529
+ SelectDialogBase$UpdateFinishedEventParameters,
100530
+ SelectDialogBase
100531
+ >;
99648
100532
 
99649
100533
  export interface SelectDialogBase$UpdateStartedEventParameters {
99650
100534
  /**
@@ -99663,7 +100547,10 @@ declare module "sap/m/SelectDialogBase" {
99663
100547
  total?: int;
99664
100548
  }
99665
100549
 
99666
- export type SelectDialogBase$UpdateStartedEvent = Event<SelectDialogBase$UpdateStartedEventParameters>;
100550
+ export type SelectDialogBase$UpdateStartedEvent = Event<
100551
+ SelectDialogBase$UpdateStartedEventParameters,
100552
+ SelectDialogBase
100553
+ >;
99667
100554
  }
99668
100555
 
99669
100556
  declare module "sap/m/ViewSettingsDialog" {
@@ -101241,7 +102128,10 @@ declare module "sap/m/ViewSettingsDialog" {
101241
102128
 
101242
102129
  export interface ViewSettingsDialog$CancelEventParameters {}
101243
102130
 
101244
- export type ViewSettingsDialog$CancelEvent = Event<ViewSettingsDialog$CancelEventParameters>;
102131
+ export type ViewSettingsDialog$CancelEvent = Event<
102132
+ ViewSettingsDialog$CancelEventParameters,
102133
+ ViewSettingsDialog
102134
+ >;
101245
102135
 
101246
102136
  export interface ViewSettingsDialog$ConfirmEventParameters {
101247
102137
  /**
@@ -101295,7 +102185,10 @@ declare module "sap/m/ViewSettingsDialog" {
101295
102185
  filterString?: string;
101296
102186
  }
101297
102187
 
101298
- export type ViewSettingsDialog$ConfirmEvent = Event<ViewSettingsDialog$ConfirmEventParameters>;
102188
+ export type ViewSettingsDialog$ConfirmEvent = Event<
102189
+ ViewSettingsDialog$ConfirmEventParameters,
102190
+ ViewSettingsDialog
102191
+ >;
101299
102192
 
101300
102193
  export interface ViewSettingsDialog$FilterDetailPageOpenedEventParameters {
101301
102194
  /**
@@ -101304,15 +102197,24 @@ declare module "sap/m/ViewSettingsDialog" {
101304
102197
  parentFilterItem?: ViewSettingsFilterItem;
101305
102198
  }
101306
102199
 
101307
- export type ViewSettingsDialog$FilterDetailPageOpenedEvent = Event<ViewSettingsDialog$FilterDetailPageOpenedEventParameters>;
102200
+ export type ViewSettingsDialog$FilterDetailPageOpenedEvent = Event<
102201
+ ViewSettingsDialog$FilterDetailPageOpenedEventParameters,
102202
+ ViewSettingsDialog
102203
+ >;
101308
102204
 
101309
102205
  export interface ViewSettingsDialog$ResetEventParameters {}
101310
102206
 
101311
- export type ViewSettingsDialog$ResetEvent = Event<ViewSettingsDialog$ResetEventParameters>;
102207
+ export type ViewSettingsDialog$ResetEvent = Event<
102208
+ ViewSettingsDialog$ResetEventParameters,
102209
+ ViewSettingsDialog
102210
+ >;
101312
102211
 
101313
102212
  export interface ViewSettingsDialog$ResetFiltersEventParameters {}
101314
102213
 
101315
- export type ViewSettingsDialog$ResetFiltersEvent = Event<ViewSettingsDialog$ResetFiltersEventParameters>;
102214
+ export type ViewSettingsDialog$ResetFiltersEvent = Event<
102215
+ ViewSettingsDialog$ResetFiltersEventParameters,
102216
+ ViewSettingsDialog
102217
+ >;
101316
102218
  }
101317
102219
 
101318
102220
  declare module "sap/m/SelectionDetails" {
@@ -102149,15 +103051,24 @@ declare module "sap/m/SelectionDetails" {
102149
103051
  | keyof typeof SelectionDetailsActionLevel;
102150
103052
  }
102151
103053
 
102152
- export type SelectionDetails$ActionPressEvent = Event<SelectionDetails$ActionPressEventParameters>;
103054
+ export type SelectionDetails$ActionPressEvent = Event<
103055
+ SelectionDetails$ActionPressEventParameters,
103056
+ SelectionDetails
103057
+ >;
102153
103058
 
102154
103059
  export interface SelectionDetails$BeforeCloseEventParameters {}
102155
103060
 
102156
- export type SelectionDetails$BeforeCloseEvent = Event<SelectionDetails$BeforeCloseEventParameters>;
103061
+ export type SelectionDetails$BeforeCloseEvent = Event<
103062
+ SelectionDetails$BeforeCloseEventParameters,
103063
+ SelectionDetails
103064
+ >;
102157
103065
 
102158
103066
  export interface SelectionDetails$BeforeOpenEventParameters {}
102159
103067
 
102160
- export type SelectionDetails$BeforeOpenEvent = Event<SelectionDetails$BeforeOpenEventParameters>;
103068
+ export type SelectionDetails$BeforeOpenEvent = Event<
103069
+ SelectionDetails$BeforeOpenEventParameters,
103070
+ SelectionDetails
103071
+ >;
102161
103072
 
102162
103073
  export interface SelectionDetails$NavigateEventParameters {
102163
103074
  /**
@@ -102179,7 +103090,10 @@ declare module "sap/m/SelectionDetails" {
102179
103090
  content?: Control;
102180
103091
  }
102181
103092
 
102182
- export type SelectionDetails$NavigateEvent = Event<SelectionDetails$NavigateEventParameters>;
103093
+ export type SelectionDetails$NavigateEvent = Event<
103094
+ SelectionDetails$NavigateEventParameters,
103095
+ SelectionDetails
103096
+ >;
102183
103097
  }
102184
103098
 
102185
103099
  declare module "sap/m/SelectionDetailsFacade" {
@@ -104014,7 +104928,10 @@ declare module "sap/m/SelectList" {
104014
104928
  item?: Item;
104015
104929
  }
104016
104930
 
104017
- export type SelectList$ItemPressEvent = Event<SelectList$ItemPressEventParameters>;
104931
+ export type SelectList$ItemPressEvent = Event<
104932
+ SelectList$ItemPressEventParameters,
104933
+ SelectList
104934
+ >;
104018
104935
 
104019
104936
  export interface SelectList$SelectionChangeEventParameters {
104020
104937
  /**
@@ -104023,7 +104940,10 @@ declare module "sap/m/SelectList" {
104023
104940
  selectedItem?: Item;
104024
104941
  }
104025
104942
 
104026
- export type SelectList$SelectionChangeEvent = Event<SelectList$SelectionChangeEventParameters>;
104943
+ export type SelectList$SelectionChangeEvent = Event<
104944
+ SelectList$SelectionChangeEventParameters,
104945
+ SelectList
104946
+ >;
104027
104947
  }
104028
104948
 
104029
104949
  declare module "sap/m/semantic/AddAction" {
@@ -108089,7 +109009,10 @@ declare module "sap/m/semantic/SemanticButton" {
108089
109009
 
108090
109010
  export interface SemanticButton$PressEventParameters {}
108091
109011
 
108092
- export type SemanticButton$PressEvent = Event<SemanticButton$PressEventParameters>;
109012
+ export type SemanticButton$PressEvent = Event<
109013
+ SemanticButton$PressEventParameters,
109014
+ SemanticButton
109015
+ >;
108093
109016
  }
108094
109017
 
108095
109018
  declare module "sap/m/semantic/SemanticControl" {
@@ -109044,7 +109967,10 @@ declare module "sap/m/semantic/SemanticPage" {
109044
109967
 
109045
109968
  export interface SemanticPage$NavButtonPressEventParameters {}
109046
109969
 
109047
- export type SemanticPage$NavButtonPressEvent = Event<SemanticPage$NavButtonPressEventParameters>;
109970
+ export type SemanticPage$NavButtonPressEvent = Event<
109971
+ SemanticPage$NavButtonPressEventParameters,
109972
+ SemanticPage
109973
+ >;
109048
109974
  }
109049
109975
 
109050
109976
  declare module "sap/m/semantic/SemanticSelect" {
@@ -109405,7 +110331,10 @@ declare module "sap/m/semantic/SemanticSelect" {
109405
110331
  selectedItem?: Item;
109406
110332
  }
109407
110333
 
109408
- export type SemanticSelect$ChangeEvent = Event<SemanticSelect$ChangeEventParameters>;
110334
+ export type SemanticSelect$ChangeEvent = Event<
110335
+ SemanticSelect$ChangeEventParameters,
110336
+ SemanticSelect
110337
+ >;
109409
110338
  }
109410
110339
 
109411
110340
  declare module "sap/m/semantic/SemanticToggleButton" {
@@ -110773,7 +111702,7 @@ declare module "sap/m/Shell" {
110773
111702
 
110774
111703
  export interface Shell$LogoutEventParameters {}
110775
111704
 
110776
- export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters>;
111705
+ export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters, Shell>;
110777
111706
  }
110778
111707
 
110779
111708
  declare module "sap/m/SinglePlanningCalendar" {
@@ -112782,7 +113711,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112782
113711
  endDate?: object;
112783
113712
  }
112784
113713
 
112785
- export type SinglePlanningCalendar$AppointmentCreateEvent = Event<SinglePlanningCalendar$AppointmentCreateEventParameters>;
113714
+ export type SinglePlanningCalendar$AppointmentCreateEvent = Event<
113715
+ SinglePlanningCalendar$AppointmentCreateEventParameters,
113716
+ SinglePlanningCalendar
113717
+ >;
112786
113718
 
112787
113719
  export interface SinglePlanningCalendar$AppointmentDropEventParameters {
112788
113720
  /**
@@ -112806,7 +113738,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112806
113738
  copy?: boolean;
112807
113739
  }
112808
113740
 
112809
- export type SinglePlanningCalendar$AppointmentDropEvent = Event<SinglePlanningCalendar$AppointmentDropEventParameters>;
113741
+ export type SinglePlanningCalendar$AppointmentDropEvent = Event<
113742
+ SinglePlanningCalendar$AppointmentDropEventParameters,
113743
+ SinglePlanningCalendar
113744
+ >;
112810
113745
 
112811
113746
  export interface SinglePlanningCalendar$AppointmentResizeEventParameters {
112812
113747
  /**
@@ -112825,7 +113760,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112825
113760
  endDate?: object;
112826
113761
  }
112827
113762
 
112828
- export type SinglePlanningCalendar$AppointmentResizeEvent = Event<SinglePlanningCalendar$AppointmentResizeEventParameters>;
113763
+ export type SinglePlanningCalendar$AppointmentResizeEvent = Event<
113764
+ SinglePlanningCalendar$AppointmentResizeEventParameters,
113765
+ SinglePlanningCalendar
113766
+ >;
112829
113767
 
112830
113768
  export interface SinglePlanningCalendar$AppointmentSelectEventParameters {
112831
113769
  /**
@@ -112839,7 +113777,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112839
113777
  appointments?: CalendarAppointment[];
112840
113778
  }
112841
113779
 
112842
- export type SinglePlanningCalendar$AppointmentSelectEvent = Event<SinglePlanningCalendar$AppointmentSelectEventParameters>;
113780
+ export type SinglePlanningCalendar$AppointmentSelectEvent = Event<
113781
+ SinglePlanningCalendar$AppointmentSelectEventParameters,
113782
+ SinglePlanningCalendar
113783
+ >;
112843
113784
 
112844
113785
  export interface SinglePlanningCalendar$CellPressEventParameters {
112845
113786
  /**
@@ -112853,7 +113794,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112853
113794
  endDate?: object;
112854
113795
  }
112855
113796
 
112856
- export type SinglePlanningCalendar$CellPressEvent = Event<SinglePlanningCalendar$CellPressEventParameters>;
113797
+ export type SinglePlanningCalendar$CellPressEvent = Event<
113798
+ SinglePlanningCalendar$CellPressEventParameters,
113799
+ SinglePlanningCalendar
113800
+ >;
112857
113801
 
112858
113802
  export interface SinglePlanningCalendar$HeaderDateSelectEventParameters {
112859
113803
  /**
@@ -112862,7 +113806,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112862
113806
  date?: object;
112863
113807
  }
112864
113808
 
112865
- export type SinglePlanningCalendar$HeaderDateSelectEvent = Event<SinglePlanningCalendar$HeaderDateSelectEventParameters>;
113809
+ export type SinglePlanningCalendar$HeaderDateSelectEvent = Event<
113810
+ SinglePlanningCalendar$HeaderDateSelectEventParameters,
113811
+ SinglePlanningCalendar
113812
+ >;
112866
113813
 
112867
113814
  export interface SinglePlanningCalendar$MoreLinkPressEventParameters {
112868
113815
  /**
@@ -112871,7 +113818,10 @@ declare module "sap/m/SinglePlanningCalendar" {
112871
113818
  date?: object;
112872
113819
  }
112873
113820
 
112874
- export type SinglePlanningCalendar$MoreLinkPressEvent = Event<SinglePlanningCalendar$MoreLinkPressEventParameters>;
113821
+ export type SinglePlanningCalendar$MoreLinkPressEvent = Event<
113822
+ SinglePlanningCalendar$MoreLinkPressEventParameters,
113823
+ SinglePlanningCalendar
113824
+ >;
112875
113825
 
112876
113826
  export interface SinglePlanningCalendar$StartDateChangeEventParameters {
112877
113827
  /**
@@ -112880,11 +113830,17 @@ declare module "sap/m/SinglePlanningCalendar" {
112880
113830
  date?: object;
112881
113831
  }
112882
113832
 
112883
- export type SinglePlanningCalendar$StartDateChangeEvent = Event<SinglePlanningCalendar$StartDateChangeEventParameters>;
113833
+ export type SinglePlanningCalendar$StartDateChangeEvent = Event<
113834
+ SinglePlanningCalendar$StartDateChangeEventParameters,
113835
+ SinglePlanningCalendar
113836
+ >;
112884
113837
 
112885
113838
  export interface SinglePlanningCalendar$ViewChangeEventParameters {}
112886
113839
 
112887
- export type SinglePlanningCalendar$ViewChangeEvent = Event<SinglePlanningCalendar$ViewChangeEventParameters>;
113840
+ export type SinglePlanningCalendar$ViewChangeEvent = Event<
113841
+ SinglePlanningCalendar$ViewChangeEventParameters,
113842
+ SinglePlanningCalendar
113843
+ >;
112888
113844
  }
112889
113845
 
112890
113846
  declare module "sap/m/SinglePlanningCalendarDayView" {
@@ -114537,7 +115493,7 @@ declare module "sap/m/Slider" {
114537
115493
  value?: float;
114538
115494
  }
114539
115495
 
114540
- export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters>;
115496
+ export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters, Slider>;
114541
115497
 
114542
115498
  export interface Slider$LiveChangeEventParameters {
114543
115499
  /**
@@ -114546,7 +115502,10 @@ declare module "sap/m/Slider" {
114546
115502
  value?: float;
114547
115503
  }
114548
115504
 
114549
- export type Slider$LiveChangeEvent = Event<Slider$LiveChangeEventParameters>;
115505
+ export type Slider$LiveChangeEvent = Event<
115506
+ Slider$LiveChangeEventParameters,
115507
+ Slider
115508
+ >;
114550
115509
  }
114551
115510
 
114552
115511
  declare module "sap/m/SliderTooltipBase" {
@@ -115165,7 +116124,10 @@ declare module "sap/m/SlideTile" {
115165
116124
  domRef?: any;
115166
116125
  }
115167
116126
 
115168
- export type SlideTile$PressEvent = Event<SlideTile$PressEventParameters>;
116127
+ export type SlideTile$PressEvent = Event<
116128
+ SlideTile$PressEventParameters,
116129
+ SlideTile
116130
+ >;
115169
116131
  }
115170
116132
 
115171
116133
  declare module "sap/m/SplitApp" {
@@ -115445,7 +116407,10 @@ declare module "sap/m/SplitApp" {
115445
116407
  landscape?: boolean;
115446
116408
  }
115447
116409
 
115448
- export type SplitApp$OrientationChangeEvent = Event<SplitApp$OrientationChangeEventParameters>;
116410
+ export type SplitApp$OrientationChangeEvent = Event<
116411
+ SplitApp$OrientationChangeEventParameters,
116412
+ SplitApp
116413
+ >;
115449
116414
  }
115450
116415
 
115451
116416
  declare module "sap/m/SplitContainer" {
@@ -115579,6 +116544,8 @@ declare module "sap/m/SplitContainer" {
115579
116544
  *
115580
116545
  * The method is provided mainly for providing API consistency between sap.m.SplitContainer and sap.m.App.
115581
116546
  * So that the same code line can be reused.
116547
+ *
116548
+ * @returns Reference to `this` in order to allow method chaining
115582
116549
  */
115583
116550
  addPage(
115584
116551
  /**
@@ -116724,6 +117691,8 @@ declare module "sap/m/SplitContainer" {
116724
117691
  ): Control;
116725
117692
  /**
116726
117693
  * Used to hide the master page when in ShowHideMode and the device is in portrait mode.
117694
+ *
117695
+ * @returns Reference to `this` in order to allow method chaining
116727
117696
  */
116728
117697
  hideMaster(): this;
116729
117698
  /**
@@ -116790,13 +117759,15 @@ declare module "sap/m/SplitContainer" {
116790
117759
  * This can be used for deep-linking when the user directly reached a drilldown detail page using a bookmark
116791
117760
  * and then wants to navigate up in the drilldown hierarchy. Normally, such a back navigation would not
116792
117761
  * be possible as there is no previous page in the SplitContainer's history stack.
117762
+ *
117763
+ * @returns Reference to `this` in order to allow method chaining
116793
117764
  */
116794
117765
  insertPreviousPage(
116795
117766
  /**
116796
117767
  * The ID of the control/page/screen, which is inserted into the history stack. The respective control must
116797
117768
  * be aggregated by the SplitContainer, otherwise this will cause an error.
116798
117769
  */
116799
- sPageId: string,
117770
+ pageId: string,
116800
117771
  /**
116801
117772
  * The type of the transition/animation which would have been used to navigate from the (inserted) previous
116802
117773
  * page to the current page. When navigating back, the inverse animation will be applied. Options are "slide"
@@ -116808,7 +117779,7 @@ declare module "sap/m/SplitContainer" {
116808
117779
  * This optional object can carry any payload data which would have been given to the inserted previous
116809
117780
  * page if the user would have done a normal forward navigation to it.
116810
117781
  */
116811
- oData: object
117782
+ data: object
116812
117783
  ): this;
116813
117784
  /**
116814
117785
  * Inserts the page/control with the specified ID into the navigation history stack of the NavContainer.
@@ -116816,18 +117787,20 @@ declare module "sap/m/SplitContainer" {
116816
117787
  * This can be used for deep-linking when the user directly reached a drilldown detail page using a bookmark
116817
117788
  * and then wants to navigate up in the drilldown hierarchy. Normally, such a back navigation would not
116818
117789
  * be possible as there is no previous page in the SplitContainer's history stack.
117790
+ *
117791
+ * @returns Reference to `this` in order to allow method chaining
116819
117792
  */
116820
117793
  insertPreviousPage(
116821
117794
  /**
116822
117795
  * The ID of the control/page/screen, which is inserted into the history stack. The respective control must
116823
117796
  * be aggregated by the SplitContainer, otherwise this will cause an error.
116824
117797
  */
116825
- sPageId: string,
117798
+ pageId: string,
116826
117799
  /**
116827
117800
  * This optional object can carry any payload data which would have been given to the inserted previous
116828
117801
  * page if the user would have done a normal forward navigation to it.
116829
117802
  */
116830
- oData: object
117803
+ data: object
116831
117804
  ): this;
116832
117805
  /**
116833
117806
  * @since 1.16.5
@@ -117081,8 +118054,10 @@ declare module "sap/m/SplitContainer" {
117081
118054
  ): this;
117082
118055
  /**
117083
118056
  * Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
118057
+ *
118058
+ * @returns Reference to `this` in order to allow method chaining
117084
118059
  */
117085
- showMaster(): void;
118060
+ showMaster(): this;
117086
118061
  /**
117087
118062
  * @since 1.10.0
117088
118063
  *
@@ -117426,11 +118401,17 @@ declare module "sap/m/SplitContainer" {
117426
118401
  direction?: string;
117427
118402
  }
117428
118403
 
117429
- export type SplitContainer$AfterDetailNavigateEvent = Event<SplitContainer$AfterDetailNavigateEventParameters>;
118404
+ export type SplitContainer$AfterDetailNavigateEvent = Event<
118405
+ SplitContainer$AfterDetailNavigateEventParameters,
118406
+ SplitContainer
118407
+ >;
117430
118408
 
117431
118409
  export interface SplitContainer$AfterMasterCloseEventParameters {}
117432
118410
 
117433
- export type SplitContainer$AfterMasterCloseEvent = Event<SplitContainer$AfterMasterCloseEventParameters>;
118411
+ export type SplitContainer$AfterMasterCloseEvent = Event<
118412
+ SplitContainer$AfterMasterCloseEventParameters,
118413
+ SplitContainer
118414
+ >;
117434
118415
 
117435
118416
  export interface SplitContainer$AfterMasterNavigateEventParameters {
117436
118417
  /**
@@ -117485,19 +118466,31 @@ declare module "sap/m/SplitContainer" {
117485
118466
  direction?: string;
117486
118467
  }
117487
118468
 
117488
- export type SplitContainer$AfterMasterNavigateEvent = Event<SplitContainer$AfterMasterNavigateEventParameters>;
118469
+ export type SplitContainer$AfterMasterNavigateEvent = Event<
118470
+ SplitContainer$AfterMasterNavigateEventParameters,
118471
+ SplitContainer
118472
+ >;
117489
118473
 
117490
118474
  export interface SplitContainer$AfterMasterOpenEventParameters {}
117491
118475
 
117492
- export type SplitContainer$AfterMasterOpenEvent = Event<SplitContainer$AfterMasterOpenEventParameters>;
118476
+ export type SplitContainer$AfterMasterOpenEvent = Event<
118477
+ SplitContainer$AfterMasterOpenEventParameters,
118478
+ SplitContainer
118479
+ >;
117493
118480
 
117494
118481
  export interface SplitContainer$BeforeMasterCloseEventParameters {}
117495
118482
 
117496
- export type SplitContainer$BeforeMasterCloseEvent = Event<SplitContainer$BeforeMasterCloseEventParameters>;
118483
+ export type SplitContainer$BeforeMasterCloseEvent = Event<
118484
+ SplitContainer$BeforeMasterCloseEventParameters,
118485
+ SplitContainer
118486
+ >;
117497
118487
 
117498
118488
  export interface SplitContainer$BeforeMasterOpenEventParameters {}
117499
118489
 
117500
- export type SplitContainer$BeforeMasterOpenEvent = Event<SplitContainer$BeforeMasterOpenEventParameters>;
118490
+ export type SplitContainer$BeforeMasterOpenEvent = Event<
118491
+ SplitContainer$BeforeMasterOpenEventParameters,
118492
+ SplitContainer
118493
+ >;
117501
118494
 
117502
118495
  export interface SplitContainer$DetailNavigateEventParameters {
117503
118496
  /**
@@ -117552,11 +118545,17 @@ declare module "sap/m/SplitContainer" {
117552
118545
  direction?: string;
117553
118546
  }
117554
118547
 
117555
- export type SplitContainer$DetailNavigateEvent = Event<SplitContainer$DetailNavigateEventParameters>;
118548
+ export type SplitContainer$DetailNavigateEvent = Event<
118549
+ SplitContainer$DetailNavigateEventParameters,
118550
+ SplitContainer
118551
+ >;
117556
118552
 
117557
118553
  export interface SplitContainer$MasterButtonEventParameters {}
117558
118554
 
117559
- export type SplitContainer$MasterButtonEvent = Event<SplitContainer$MasterButtonEventParameters>;
118555
+ export type SplitContainer$MasterButtonEvent = Event<
118556
+ SplitContainer$MasterButtonEventParameters,
118557
+ SplitContainer
118558
+ >;
117560
118559
 
117561
118560
  export interface SplitContainer$MasterNavigateEventParameters {
117562
118561
  /**
@@ -117611,7 +118610,10 @@ declare module "sap/m/SplitContainer" {
117611
118610
  direction?: string;
117612
118611
  }
117613
118612
 
117614
- export type SplitContainer$MasterNavigateEvent = Event<SplitContainer$MasterNavigateEventParameters>;
118613
+ export type SplitContainer$MasterNavigateEvent = Event<
118614
+ SplitContainer$MasterNavigateEventParameters,
118615
+ SplitContainer
118616
+ >;
117615
118617
  }
117616
118618
 
117617
118619
  declare module "sap/m/StandardListItem" {
@@ -119847,7 +120849,10 @@ declare module "sap/m/StepInput" {
119847
120849
  value?: string;
119848
120850
  }
119849
120851
 
119850
- export type StepInput$ChangeEvent = Event<StepInput$ChangeEventParameters>;
120852
+ export type StepInput$ChangeEvent = Event<
120853
+ StepInput$ChangeEventParameters,
120854
+ StepInput
120855
+ >;
119851
120856
  }
119852
120857
 
119853
120858
  declare module "sap/m/SuggestionItem" {
@@ -120476,7 +121481,7 @@ declare module "sap/m/Switch" {
120476
121481
  state?: boolean;
120477
121482
  }
120478
121483
 
120479
- export type Switch$ChangeEvent = Event<Switch$ChangeEventParameters>;
121484
+ export type Switch$ChangeEvent = Event<Switch$ChangeEventParameters, Switch>;
120480
121485
  }
120481
121486
 
120482
121487
  declare module "sap/m/TabContainer" {
@@ -121047,7 +122052,10 @@ declare module "sap/m/TabContainer" {
121047
122052
 
121048
122053
  export interface TabContainer$AddNewButtonPressEventParameters {}
121049
122054
 
121050
- export type TabContainer$AddNewButtonPressEvent = Event<TabContainer$AddNewButtonPressEventParameters>;
122055
+ export type TabContainer$AddNewButtonPressEvent = Event<
122056
+ TabContainer$AddNewButtonPressEventParameters,
122057
+ TabContainer
122058
+ >;
121051
122059
 
121052
122060
  export interface TabContainer$ItemCloseEventParameters {
121053
122061
  /**
@@ -121056,7 +122064,10 @@ declare module "sap/m/TabContainer" {
121056
122064
  item?: TabContainerItem;
121057
122065
  }
121058
122066
 
121059
- export type TabContainer$ItemCloseEvent = Event<TabContainer$ItemCloseEventParameters>;
122067
+ export type TabContainer$ItemCloseEvent = Event<
122068
+ TabContainer$ItemCloseEventParameters,
122069
+ TabContainer
122070
+ >;
121060
122071
 
121061
122072
  export interface TabContainer$ItemSelectEventParameters {
121062
122073
  /**
@@ -121065,7 +122076,10 @@ declare module "sap/m/TabContainer" {
121065
122076
  item?: TabContainerItem;
121066
122077
  }
121067
122078
 
121068
- export type TabContainer$ItemSelectEvent = Event<TabContainer$ItemSelectEventParameters>;
122079
+ export type TabContainer$ItemSelectEvent = Event<
122080
+ TabContainer$ItemSelectEventParameters,
122081
+ TabContainer
122082
+ >;
121069
122083
  }
121070
122084
 
121071
122085
  declare module "sap/m/TabContainerItem" {
@@ -121556,7 +122570,10 @@ declare module "sap/m/TabContainerItem" {
121556
122570
  propertyValue?: any;
121557
122571
  }
121558
122572
 
121559
- export type TabContainerItem$ItemPropertyChangedEvent = Event<TabContainerItem$ItemPropertyChangedEventParameters>;
122573
+ export type TabContainerItem$ItemPropertyChangedEvent = Event<
122574
+ TabContainerItem$ItemPropertyChangedEventParameters,
122575
+ TabContainerItem
122576
+ >;
121560
122577
  }
121561
122578
 
121562
122579
  declare module "sap/m/Table" {
@@ -122586,7 +123603,10 @@ declare module "sap/m/Table" {
122586
123603
  column?: Column;
122587
123604
  }
122588
123605
 
122589
- export type Table$BeforeOpenContextMenuEvent = Event<Table$BeforeOpenContextMenuEventParameters>;
123606
+ export type Table$BeforeOpenContextMenuEvent = Event<
123607
+ Table$BeforeOpenContextMenuEventParameters,
123608
+ Table
123609
+ >;
122590
123610
 
122591
123611
  export interface Table$PasteEventParameters {
122592
123612
  /**
@@ -122596,7 +123616,7 @@ declare module "sap/m/Table" {
122596
123616
  data?: string[][];
122597
123617
  }
122598
123618
 
122599
- export type Table$PasteEvent = Event<Table$PasteEventParameters>;
123619
+ export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
122600
123620
 
122601
123621
  export interface Table$PopinChangedEventParameters {
122602
123622
  /**
@@ -122615,7 +123635,10 @@ declare module "sap/m/Table" {
122615
123635
  hiddenInPopin?: Column[];
122616
123636
  }
122617
123637
 
122618
- export type Table$PopinChangedEvent = Event<Table$PopinChangedEventParameters>;
123638
+ export type Table$PopinChangedEvent = Event<
123639
+ Table$PopinChangedEventParameters,
123640
+ Table
123641
+ >;
122619
123642
  }
122620
123643
 
122621
123644
  declare module "sap/m/table/columnmenu/ActionItem" {
@@ -122847,7 +123870,10 @@ declare module "sap/m/table/columnmenu/ActionItem" {
122847
123870
 
122848
123871
  export interface ActionItem$PressEventParameters {}
122849
123872
 
122850
- export type ActionItem$PressEvent = Event<ActionItem$PressEventParameters>;
123873
+ export type ActionItem$PressEvent = Event<
123874
+ ActionItem$PressEventParameters,
123875
+ ActionItem
123876
+ >;
122851
123877
  }
122852
123878
 
122853
123879
  declare module "sap/m/table/columnmenu/Entry" {
@@ -123446,15 +124472,15 @@ declare module "sap/m/table/columnmenu/Item" {
123446
124472
 
123447
124473
  export interface Item$CancelEventParameters {}
123448
124474
 
123449
- export type Item$CancelEvent = Event<Item$CancelEventParameters>;
124475
+ export type Item$CancelEvent = Event<Item$CancelEventParameters, Item>;
123450
124476
 
123451
124477
  export interface Item$ConfirmEventParameters {}
123452
124478
 
123453
- export type Item$ConfirmEvent = Event<Item$ConfirmEventParameters>;
124479
+ export type Item$ConfirmEvent = Event<Item$ConfirmEventParameters, Item>;
123454
124480
 
123455
124481
  export interface Item$ResetEventParameters {}
123456
124482
 
123457
- export type Item$ResetEvent = Event<Item$ResetEventParameters>;
124483
+ export type Item$ResetEvent = Event<Item$ResetEventParameters, Item>;
123458
124484
  }
123459
124485
 
123460
124486
  declare module "sap/m/table/columnmenu/ItemBase" {
@@ -124089,7 +125115,10 @@ declare module "sap/m/table/columnmenu/Menu" {
124089
125115
 
124090
125116
  export interface Menu$AfterCloseEventParameters {}
124091
125117
 
124092
- export type Menu$AfterCloseEvent = Event<Menu$AfterCloseEventParameters>;
125118
+ export type Menu$AfterCloseEvent = Event<
125119
+ Menu$AfterCloseEventParameters,
125120
+ Menu
125121
+ >;
124093
125122
 
124094
125123
  export interface Menu$BeforeOpenEventParameters {
124095
125124
  /**
@@ -124099,7 +125128,10 @@ declare module "sap/m/table/columnmenu/Menu" {
124099
125128
  openBy?: UI5Element;
124100
125129
  }
124101
125130
 
124102
- export type Menu$BeforeOpenEvent = Event<Menu$BeforeOpenEventParameters>;
125131
+ export type Menu$BeforeOpenEvent = Event<
125132
+ Menu$BeforeOpenEventParameters,
125133
+ Menu
125134
+ >;
124103
125135
  }
124104
125136
 
124105
125137
  declare module "sap/m/table/columnmenu/QuickAction" {
@@ -124853,7 +125885,10 @@ declare module "sap/m/table/columnmenu/QuickGroup" {
124853
125885
  grouped?: boolean;
124854
125886
  }
124855
125887
 
124856
- export type QuickGroup$ChangeEvent = Event<QuickGroup$ChangeEventParameters>;
125888
+ export type QuickGroup$ChangeEvent = Event<
125889
+ QuickGroup$ChangeEventParameters,
125890
+ QuickGroup
125891
+ >;
124857
125892
  }
124858
125893
 
124859
125894
  declare module "sap/m/table/columnmenu/QuickGroupItem" {
@@ -125229,7 +126264,10 @@ declare module "sap/m/table/columnmenu/QuickSort" {
125229
126264
  sortOrder?: SortOrder | keyof typeof SortOrder;
125230
126265
  }
125231
126266
 
125232
- export type QuickSort$ChangeEvent = Event<QuickSort$ChangeEventParameters>;
126267
+ export type QuickSort$ChangeEvent = Event<
126268
+ QuickSort$ChangeEventParameters,
126269
+ QuickSort
126270
+ >;
125233
126271
  }
125234
126272
 
125235
126273
  declare module "sap/m/table/columnmenu/QuickSortItem" {
@@ -125608,7 +126646,10 @@ declare module "sap/m/table/columnmenu/QuickTotal" {
125608
126646
  totaled?: boolean;
125609
126647
  }
125610
126648
 
125611
- export type QuickTotal$ChangeEvent = Event<QuickTotal$ChangeEventParameters>;
126649
+ export type QuickTotal$ChangeEvent = Event<
126650
+ QuickTotal$ChangeEventParameters,
126651
+ QuickTotal
126652
+ >;
125612
126653
  }
125613
126654
 
125614
126655
  declare module "sap/m/table/columnmenu/QuickTotalItem" {
@@ -126247,7 +127288,10 @@ declare module "sap/m/TablePersoController" {
126247
127288
 
126248
127289
  export interface TablePersoController$PersonalizationsDoneEventParameters {}
126249
127290
 
126250
- export type TablePersoController$PersonalizationsDoneEvent = Event<TablePersoController$PersonalizationsDoneEventParameters>;
127291
+ export type TablePersoController$PersonalizationsDoneEvent = Event<
127292
+ TablePersoController$PersonalizationsDoneEventParameters,
127293
+ TablePersoController
127294
+ >;
126251
127295
  }
126252
127296
 
126253
127297
  declare module "sap/m/TablePersoDialog" {
@@ -126744,11 +127788,17 @@ declare module "sap/m/TablePersoDialog" {
126744
127788
 
126745
127789
  export interface TablePersoDialog$CancelEventParameters {}
126746
127790
 
126747
- export type TablePersoDialog$CancelEvent = Event<TablePersoDialog$CancelEventParameters>;
127791
+ export type TablePersoDialog$CancelEvent = Event<
127792
+ TablePersoDialog$CancelEventParameters,
127793
+ TablePersoDialog
127794
+ >;
126748
127795
 
126749
127796
  export interface TablePersoDialog$ConfirmEventParameters {}
126750
127797
 
126751
- export type TablePersoDialog$ConfirmEvent = Event<TablePersoDialog$ConfirmEventParameters>;
127798
+ export type TablePersoDialog$ConfirmEvent = Event<
127799
+ TablePersoDialog$ConfirmEventParameters,
127800
+ TablePersoDialog
127801
+ >;
126752
127802
  }
126753
127803
 
126754
127804
  declare module "sap/m/TablePersoProvider" {
@@ -128138,7 +129188,10 @@ declare module "sap/m/TableSelectDialog" {
128138
129188
 
128139
129189
  export interface TableSelectDialog$CancelEventParameters {}
128140
129190
 
128141
- export type TableSelectDialog$CancelEvent = Event<TableSelectDialog$CancelEventParameters>;
129191
+ export type TableSelectDialog$CancelEvent = Event<
129192
+ TableSelectDialog$CancelEventParameters,
129193
+ TableSelectDialog
129194
+ >;
128142
129195
 
128143
129196
  export interface TableSelectDialog$ConfirmEventParameters {
128144
129197
  /**
@@ -128164,7 +129217,10 @@ declare module "sap/m/TableSelectDialog" {
128164
129217
  selectedContexts?: string;
128165
129218
  }
128166
129219
 
128167
- export type TableSelectDialog$ConfirmEvent = Event<TableSelectDialog$ConfirmEventParameters>;
129220
+ export type TableSelectDialog$ConfirmEvent = Event<
129221
+ TableSelectDialog$ConfirmEventParameters,
129222
+ TableSelectDialog
129223
+ >;
128168
129224
 
128169
129225
  export interface TableSelectDialog$LiveChangeEventParameters {
128170
129226
  /**
@@ -128178,7 +129234,10 @@ declare module "sap/m/TableSelectDialog" {
128178
129234
  itemsBinding?: any;
128179
129235
  }
128180
129236
 
128181
- export type TableSelectDialog$LiveChangeEvent = Event<TableSelectDialog$LiveChangeEventParameters>;
129237
+ export type TableSelectDialog$LiveChangeEvent = Event<
129238
+ TableSelectDialog$LiveChangeEventParameters,
129239
+ TableSelectDialog
129240
+ >;
128182
129241
 
128183
129242
  export interface TableSelectDialog$SearchEventParameters {
128184
129243
  /**
@@ -128198,7 +129257,10 @@ declare module "sap/m/TableSelectDialog" {
128198
129257
  clearButtonPressed?: boolean;
128199
129258
  }
128200
129259
 
128201
- export type TableSelectDialog$SearchEvent = Event<TableSelectDialog$SearchEventParameters>;
129260
+ export type TableSelectDialog$SearchEvent = Event<
129261
+ TableSelectDialog$SearchEventParameters,
129262
+ TableSelectDialog
129263
+ >;
128202
129264
  }
128203
129265
 
128204
129266
  declare module "sap/m/Text" {
@@ -129378,7 +130440,10 @@ declare module "sap/m/TextArea" {
129378
130440
  value?: string;
129379
130441
  }
129380
130442
 
129381
- export type TextArea$LiveChangeEvent = Event<TextArea$LiveChangeEventParameters>;
130443
+ export type TextArea$LiveChangeEvent = Event<
130444
+ TextArea$LiveChangeEventParameters,
130445
+ TextArea
130446
+ >;
129382
130447
  }
129383
130448
 
129384
130449
  declare module "sap/m/Tile" {
@@ -129581,7 +130646,7 @@ declare module "sap/m/Tile" {
129581
130646
 
129582
130647
  export interface Tile$PressEventParameters {}
129583
130648
 
129584
- export type Tile$PressEvent = Event<Tile$PressEventParameters>;
130649
+ export type Tile$PressEvent = Event<Tile$PressEventParameters, Tile>;
129585
130650
  }
129586
130651
 
129587
130652
  declare module "sap/m/TileContainer" {
@@ -130162,7 +131227,10 @@ declare module "sap/m/TileContainer" {
130162
131227
 
130163
131228
  export interface TileContainer$TileAddEventParameters {}
130164
131229
 
130165
- export type TileContainer$TileAddEvent = Event<TileContainer$TileAddEventParameters>;
131230
+ export type TileContainer$TileAddEvent = Event<
131231
+ TileContainer$TileAddEventParameters,
131232
+ TileContainer
131233
+ >;
130166
131234
 
130167
131235
  export interface TileContainer$TileDeleteEventParameters {
130168
131236
  /**
@@ -130171,7 +131239,10 @@ declare module "sap/m/TileContainer" {
130171
131239
  tile?: Tile;
130172
131240
  }
130173
131241
 
130174
- export type TileContainer$TileDeleteEvent = Event<TileContainer$TileDeleteEventParameters>;
131242
+ export type TileContainer$TileDeleteEvent = Event<
131243
+ TileContainer$TileDeleteEventParameters,
131244
+ TileContainer
131245
+ >;
130175
131246
 
130176
131247
  export interface TileContainer$TileMoveEventParameters {
130177
131248
  /**
@@ -130185,7 +131256,10 @@ declare module "sap/m/TileContainer" {
130185
131256
  newIndex?: int;
130186
131257
  }
130187
131258
 
130188
- export type TileContainer$TileMoveEvent = Event<TileContainer$TileMoveEventParameters>;
131259
+ export type TileContainer$TileMoveEvent = Event<
131260
+ TileContainer$TileMoveEventParameters,
131261
+ TileContainer
131262
+ >;
130189
131263
  }
130190
131264
 
130191
131265
  declare module "sap/m/TileContent" {
@@ -131676,11 +132750,17 @@ declare module "sap/m/TimePicker" {
131676
132750
 
131677
132751
  export interface TimePicker$AfterValueHelpCloseEventParameters {}
131678
132752
 
131679
- export type TimePicker$AfterValueHelpCloseEvent = Event<TimePicker$AfterValueHelpCloseEventParameters>;
132753
+ export type TimePicker$AfterValueHelpCloseEvent = Event<
132754
+ TimePicker$AfterValueHelpCloseEventParameters,
132755
+ TimePicker
132756
+ >;
131680
132757
 
131681
132758
  export interface TimePicker$AfterValueHelpOpenEventParameters {}
131682
132759
 
131683
- export type TimePicker$AfterValueHelpOpenEvent = Event<TimePicker$AfterValueHelpOpenEventParameters>;
132760
+ export type TimePicker$AfterValueHelpOpenEvent = Event<
132761
+ TimePicker$AfterValueHelpOpenEventParameters,
132762
+ TimePicker
132763
+ >;
131684
132764
 
131685
132765
  export interface TimePicker$ChangeEventParameters
131686
132766
  extends InputBase$ChangeEventParameters {
@@ -131690,12 +132770,18 @@ declare module "sap/m/TimePicker" {
131690
132770
  valid?: boolean;
131691
132771
  }
131692
132772
 
131693
- export type TimePicker$ChangeEvent = Event<TimePicker$ChangeEventParameters>;
132773
+ export type TimePicker$ChangeEvent = Event<
132774
+ TimePicker$ChangeEventParameters,
132775
+ TimePicker
132776
+ >;
131694
132777
 
131695
132778
  export interface TimePicker$LiveChangeEventParameters
131696
132779
  extends DateTimeField$LiveChangeEventParameters {}
131697
132780
 
131698
- export type TimePicker$LiveChangeEvent = Event<TimePicker$LiveChangeEventParameters>;
132781
+ export type TimePicker$LiveChangeEvent = Event<
132782
+ TimePicker$LiveChangeEventParameters,
132783
+ TimePicker
132784
+ >;
131699
132785
  }
131700
132786
 
131701
132787
  declare module "sap/m/TimePickerClocks" {
@@ -132375,7 +133461,10 @@ declare module "sap/m/TimePickerSliders" {
132375
133461
  value?: string;
132376
133462
  }
132377
133463
 
132378
- export type TimePickerSliders$ChangeEvent = Event<TimePickerSliders$ChangeEventParameters>;
133464
+ export type TimePickerSliders$ChangeEvent = Event<
133465
+ TimePickerSliders$ChangeEventParameters,
133466
+ TimePickerSliders
133467
+ >;
132379
133468
  }
132380
133469
 
132381
133470
  declare module "sap/m/Title" {
@@ -133154,7 +134243,10 @@ declare module "sap/m/ToggleButton" {
133154
134243
  pressed?: boolean;
133155
134244
  }
133156
134245
 
133157
- export type ToggleButton$PressEvent = Event<ToggleButton$PressEventParameters>;
134246
+ export type ToggleButton$PressEvent = Event<
134247
+ ToggleButton$PressEventParameters,
134248
+ ToggleButton
134249
+ >;
133158
134250
  }
133159
134251
 
133160
134252
  declare module "sap/m/Token" {
@@ -133813,19 +134905,19 @@ declare module "sap/m/Token" {
133813
134905
 
133814
134906
  export interface Token$DeleteEventParameters {}
133815
134907
 
133816
- export type Token$DeleteEvent = Event<Token$DeleteEventParameters>;
134908
+ export type Token$DeleteEvent = Event<Token$DeleteEventParameters, Token>;
133817
134909
 
133818
134910
  export interface Token$DeselectEventParameters {}
133819
134911
 
133820
- export type Token$DeselectEvent = Event<Token$DeselectEventParameters>;
134912
+ export type Token$DeselectEvent = Event<Token$DeselectEventParameters, Token>;
133821
134913
 
133822
134914
  export interface Token$PressEventParameters {}
133823
134915
 
133824
- export type Token$PressEvent = Event<Token$PressEventParameters>;
134916
+ export type Token$PressEvent = Event<Token$PressEventParameters, Token>;
133825
134917
 
133826
134918
  export interface Token$SelectEventParameters {}
133827
134919
 
133828
- export type Token$SelectEvent = Event<Token$SelectEventParameters>;
134920
+ export type Token$SelectEvent = Event<Token$SelectEventParameters, Token>;
133829
134921
  }
133830
134922
 
133831
134923
  declare module "sap/m/Tokenizer" {
@@ -134686,7 +135778,10 @@ declare module "sap/m/Tokenizer" {
134686
135778
  removedTokens?: Token[];
134687
135779
  }
134688
135780
 
134689
- export type Tokenizer$TokenChangeEvent = Event<Tokenizer$TokenChangeEventParameters>;
135781
+ export type Tokenizer$TokenChangeEvent = Event<
135782
+ Tokenizer$TokenChangeEventParameters,
135783
+ Tokenizer
135784
+ >;
134690
135785
 
134691
135786
  export interface Tokenizer$TokenDeleteEventParameters {
134692
135787
  /**
@@ -134700,7 +135795,10 @@ declare module "sap/m/Tokenizer" {
134700
135795
  keyCode?: number;
134701
135796
  }
134702
135797
 
134703
- export type Tokenizer$TokenDeleteEvent = Event<Tokenizer$TokenDeleteEventParameters>;
135798
+ export type Tokenizer$TokenDeleteEvent = Event<
135799
+ Tokenizer$TokenDeleteEventParameters,
135800
+ Tokenizer
135801
+ >;
134704
135802
 
134705
135803
  export interface Tokenizer$TokenUpdateEventParameters {
134706
135804
  /**
@@ -134720,7 +135818,10 @@ declare module "sap/m/Tokenizer" {
134720
135818
  removedTokens?: Token[];
134721
135819
  }
134722
135820
 
134723
- export type Tokenizer$TokenUpdateEvent = Event<Tokenizer$TokenUpdateEventParameters>;
135821
+ export type Tokenizer$TokenUpdateEvent = Event<
135822
+ Tokenizer$TokenUpdateEventParameters,
135823
+ Tokenizer
135824
+ >;
134724
135825
  }
134725
135826
 
134726
135827
  declare module "sap/m/Toolbar" {
@@ -135402,7 +136503,7 @@ declare module "sap/m/Toolbar" {
135402
136503
  srcControl?: Control;
135403
136504
  }
135404
136505
 
135405
- export type Toolbar$PressEvent = Event<Toolbar$PressEventParameters>;
136506
+ export type Toolbar$PressEvent = Event<Toolbar$PressEventParameters, Toolbar>;
135406
136507
  }
135407
136508
 
135408
136509
  declare module "sap/m/ToolbarLayoutData" {
@@ -136137,7 +137238,10 @@ declare module "sap/m/Tree" {
136137
137238
  expanded?: boolean;
136138
137239
  }
136139
137240
 
136140
- export type Tree$ToggleOpenStateEvent = Event<Tree$ToggleOpenStateEventParameters>;
137241
+ export type Tree$ToggleOpenStateEvent = Event<
137242
+ Tree$ToggleOpenStateEventParameters,
137243
+ Tree
137244
+ >;
136141
137245
  }
136142
137246
 
136143
137247
  declare module "sap/m/TreeItemBase" {
@@ -136864,7 +137968,10 @@ declare module "sap/m/upload/Uploader" {
136864
137968
  item?: UploadSetItem;
136865
137969
  }
136866
137970
 
136867
- export type Uploader$UploadAbortedEvent = Event<Uploader$UploadAbortedEventParameters>;
137971
+ export type Uploader$UploadAbortedEvent = Event<
137972
+ Uploader$UploadAbortedEventParameters,
137973
+ Uploader
137974
+ >;
136868
137975
 
136869
137976
  export interface Uploader$UploadCompletedEventParameters {
136870
137977
  /**
@@ -136889,7 +137996,10 @@ declare module "sap/m/upload/Uploader" {
136889
137996
  responseXHR?: object;
136890
137997
  }
136891
137998
 
136892
- export type Uploader$UploadCompletedEvent = Event<Uploader$UploadCompletedEventParameters>;
137999
+ export type Uploader$UploadCompletedEvent = Event<
138000
+ Uploader$UploadCompletedEventParameters,
138001
+ Uploader
138002
+ >;
136893
138003
 
136894
138004
  export interface Uploader$UploadProgressedEventParameters {
136895
138005
  /**
@@ -136910,7 +138020,10 @@ declare module "sap/m/upload/Uploader" {
136910
138020
  total?: int;
136911
138021
  }
136912
138022
 
136913
- export type Uploader$UploadProgressedEvent = Event<Uploader$UploadProgressedEventParameters>;
138023
+ export type Uploader$UploadProgressedEvent = Event<
138024
+ Uploader$UploadProgressedEventParameters,
138025
+ Uploader
138026
+ >;
136914
138027
 
136915
138028
  export interface Uploader$UploadStartedEventParameters {
136916
138029
  /**
@@ -136919,7 +138032,10 @@ declare module "sap/m/upload/Uploader" {
136919
138032
  item?: UploadSetItem;
136920
138033
  }
136921
138034
 
136922
- export type Uploader$UploadStartedEvent = Event<Uploader$UploadStartedEventParameters>;
138035
+ export type Uploader$UploadStartedEvent = Event<
138036
+ Uploader$UploadStartedEventParameters,
138037
+ Uploader
138038
+ >;
136923
138039
  }
136924
138040
 
136925
138041
  declare module "sap/m/upload/UploaderHttpRequestMethod" {
@@ -136962,6 +138078,8 @@ declare module "sap/m/upload/UploadSet" {
136962
138078
 
136963
138079
  import { ListMode } from "sap/m/library";
136964
138080
 
138081
+ import IllustratedMessageType from "sap/m/IllustratedMessageType";
138082
+
136965
138083
  import OverflowToolbar from "sap/m/OverflowToolbar";
136966
138084
 
136967
138085
  import Uploader from "sap/m/upload/Uploader";
@@ -138786,6 +139904,18 @@ declare module "sap/m/upload/UploadSet" {
138786
139904
  * @returns Value of property `noDataDescription`
138787
139905
  */
138788
139906
  getNoDataDescription(): string;
139907
+ /**
139908
+ * @since 1.117
139909
+ *
139910
+ * Gets current value of property {@link #getNoDataIllustrationType noDataIllustrationType}.
139911
+ *
139912
+ * Determines which illustration type is displayed when the control holds no data.
139913
+ *
139914
+ * Default value is `NoData`.
139915
+ *
139916
+ * @returns Value of property `noDataIllustrationType`
139917
+ */
139918
+ getNoDataIllustrationType(): IllustratedMessageType;
138789
139919
  /**
138790
139920
  * Gets current value of property {@link #getNoDataText noDataText}.
138791
139921
  *
@@ -139327,6 +140457,25 @@ declare module "sap/m/upload/UploadSet" {
139327
140457
  */
139328
140458
  sNoDataDescription?: string
139329
140459
  ): this;
140460
+ /**
140461
+ * @since 1.117
140462
+ *
140463
+ * Sets a new value for property {@link #getNoDataIllustrationType noDataIllustrationType}.
140464
+ *
140465
+ * Determines which illustration type is displayed when the control holds no data.
140466
+ *
140467
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
140468
+ *
140469
+ * Default value is `NoData`.
140470
+ *
140471
+ * @returns Reference to `this` in order to allow method chaining
140472
+ */
140473
+ setNoDataIllustrationType(
140474
+ /**
140475
+ * New value for property `noDataIllustrationType`
140476
+ */
140477
+ sNoDataIllustrationType?: IllustratedMessageType
140478
+ ): this;
139330
140479
  /**
139331
140480
  * Sets a new value for property {@link #getNoDataText noDataText}.
139332
140481
  *
@@ -139558,6 +140707,16 @@ declare module "sap/m/upload/UploadSet" {
139558
140707
  */
139559
140708
  noDataDescription?: string | PropertyBindingInfo;
139560
140709
 
140710
+ /**
140711
+ * @since 1.117
140712
+ *
140713
+ * Determines which illustration type is displayed when the control holds no data.
140714
+ */
140715
+ noDataIllustrationType?:
140716
+ | IllustratedMessageType
140717
+ | PropertyBindingInfo
140718
+ | `{${string}}`;
140719
+
139561
140720
  /**
139562
140721
  * Defines custom text for the drag and drop text label.
139563
140722
  */
@@ -139833,7 +140992,10 @@ declare module "sap/m/upload/UploadSet" {
139833
140992
  item?: UploadSetItem;
139834
140993
  }
139835
140994
 
139836
- export type UploadSet$AfterItemAddedEvent = Event<UploadSet$AfterItemAddedEventParameters>;
140995
+ export type UploadSet$AfterItemAddedEvent = Event<
140996
+ UploadSet$AfterItemAddedEventParameters,
140997
+ UploadSet
140998
+ >;
139837
140999
 
139838
141000
  export interface UploadSet$AfterItemEditedEventParameters {
139839
141001
  /**
@@ -139842,7 +141004,10 @@ declare module "sap/m/upload/UploadSet" {
139842
141004
  item?: UploadSetItem;
139843
141005
  }
139844
141006
 
139845
- export type UploadSet$AfterItemEditedEvent = Event<UploadSet$AfterItemEditedEventParameters>;
141007
+ export type UploadSet$AfterItemEditedEvent = Event<
141008
+ UploadSet$AfterItemEditedEventParameters,
141009
+ UploadSet
141010
+ >;
139846
141011
 
139847
141012
  export interface UploadSet$AfterItemRemovedEventParameters {
139848
141013
  /**
@@ -139851,7 +141016,10 @@ declare module "sap/m/upload/UploadSet" {
139851
141016
  item?: UploadSetItem;
139852
141017
  }
139853
141018
 
139854
- export type UploadSet$AfterItemRemovedEvent = Event<UploadSet$AfterItemRemovedEventParameters>;
141019
+ export type UploadSet$AfterItemRemovedEvent = Event<
141020
+ UploadSet$AfterItemRemovedEventParameters,
141021
+ UploadSet
141022
+ >;
139855
141023
 
139856
141024
  export interface UploadSet$BeforeItemAddedEventParameters {
139857
141025
  /**
@@ -139860,7 +141028,10 @@ declare module "sap/m/upload/UploadSet" {
139860
141028
  item?: UploadSetItem;
139861
141029
  }
139862
141030
 
139863
- export type UploadSet$BeforeItemAddedEvent = Event<UploadSet$BeforeItemAddedEventParameters>;
141031
+ export type UploadSet$BeforeItemAddedEvent = Event<
141032
+ UploadSet$BeforeItemAddedEventParameters,
141033
+ UploadSet
141034
+ >;
139864
141035
 
139865
141036
  export interface UploadSet$BeforeItemEditedEventParameters {
139866
141037
  /**
@@ -139869,7 +141040,10 @@ declare module "sap/m/upload/UploadSet" {
139869
141040
  item?: UploadSetItem;
139870
141041
  }
139871
141042
 
139872
- export type UploadSet$BeforeItemEditedEvent = Event<UploadSet$BeforeItemEditedEventParameters>;
141043
+ export type UploadSet$BeforeItemEditedEvent = Event<
141044
+ UploadSet$BeforeItemEditedEventParameters,
141045
+ UploadSet
141046
+ >;
139873
141047
 
139874
141048
  export interface UploadSet$BeforeItemRemovedEventParameters {
139875
141049
  /**
@@ -139878,7 +141052,10 @@ declare module "sap/m/upload/UploadSet" {
139878
141052
  item?: UploadSetItem;
139879
141053
  }
139880
141054
 
139881
- export type UploadSet$BeforeItemRemovedEvent = Event<UploadSet$BeforeItemRemovedEventParameters>;
141055
+ export type UploadSet$BeforeItemRemovedEvent = Event<
141056
+ UploadSet$BeforeItemRemovedEventParameters,
141057
+ UploadSet
141058
+ >;
139882
141059
 
139883
141060
  export interface UploadSet$BeforeUploadStartsEventParameters {
139884
141061
  /**
@@ -139887,7 +141064,10 @@ declare module "sap/m/upload/UploadSet" {
139887
141064
  item?: UploadSetItem;
139888
141065
  }
139889
141066
 
139890
- export type UploadSet$BeforeUploadStartsEvent = Event<UploadSet$BeforeUploadStartsEventParameters>;
141067
+ export type UploadSet$BeforeUploadStartsEvent = Event<
141068
+ UploadSet$BeforeUploadStartsEventParameters,
141069
+ UploadSet
141070
+ >;
139891
141071
 
139892
141072
  export interface UploadSet$BeforeUploadTerminationEventParameters {
139893
141073
  /**
@@ -139896,7 +141076,10 @@ declare module "sap/m/upload/UploadSet" {
139896
141076
  item?: UploadSetItem;
139897
141077
  }
139898
141078
 
139899
- export type UploadSet$BeforeUploadTerminationEvent = Event<UploadSet$BeforeUploadTerminationEventParameters>;
141079
+ export type UploadSet$BeforeUploadTerminationEvent = Event<
141080
+ UploadSet$BeforeUploadTerminationEventParameters,
141081
+ UploadSet
141082
+ >;
139900
141083
 
139901
141084
  export interface UploadSet$FileNameLengthExceededEventParameters {
139902
141085
  /**
@@ -139905,7 +141088,10 @@ declare module "sap/m/upload/UploadSet" {
139905
141088
  item?: UploadSetItem;
139906
141089
  }
139907
141090
 
139908
- export type UploadSet$FileNameLengthExceededEvent = Event<UploadSet$FileNameLengthExceededEventParameters>;
141091
+ export type UploadSet$FileNameLengthExceededEvent = Event<
141092
+ UploadSet$FileNameLengthExceededEventParameters,
141093
+ UploadSet
141094
+ >;
139909
141095
 
139910
141096
  export interface UploadSet$FileRenamedEventParameters {
139911
141097
  /**
@@ -139914,7 +141100,10 @@ declare module "sap/m/upload/UploadSet" {
139914
141100
  item?: UploadSetItem;
139915
141101
  }
139916
141102
 
139917
- export type UploadSet$FileRenamedEvent = Event<UploadSet$FileRenamedEventParameters>;
141103
+ export type UploadSet$FileRenamedEvent = Event<
141104
+ UploadSet$FileRenamedEventParameters,
141105
+ UploadSet
141106
+ >;
139918
141107
 
139919
141108
  export interface UploadSet$FileSizeExceededEventParameters {
139920
141109
  /**
@@ -139923,7 +141112,10 @@ declare module "sap/m/upload/UploadSet" {
139923
141112
  item?: UploadSetItem;
139924
141113
  }
139925
141114
 
139926
- export type UploadSet$FileSizeExceededEvent = Event<UploadSet$FileSizeExceededEventParameters>;
141115
+ export type UploadSet$FileSizeExceededEvent = Event<
141116
+ UploadSet$FileSizeExceededEventParameters,
141117
+ UploadSet
141118
+ >;
139927
141119
 
139928
141120
  export interface UploadSet$FileTypeMismatchEventParameters {
139929
141121
  /**
@@ -139932,15 +141124,24 @@ declare module "sap/m/upload/UploadSet" {
139932
141124
  item?: UploadSetItem;
139933
141125
  }
139934
141126
 
139935
- export type UploadSet$FileTypeMismatchEvent = Event<UploadSet$FileTypeMismatchEventParameters>;
141127
+ export type UploadSet$FileTypeMismatchEvent = Event<
141128
+ UploadSet$FileTypeMismatchEventParameters,
141129
+ UploadSet
141130
+ >;
139936
141131
 
139937
141132
  export interface UploadSet$ItemDragStartEventParameters {}
139938
141133
 
139939
- export type UploadSet$ItemDragStartEvent = Event<UploadSet$ItemDragStartEventParameters>;
141134
+ export type UploadSet$ItemDragStartEvent = Event<
141135
+ UploadSet$ItemDragStartEventParameters,
141136
+ UploadSet
141137
+ >;
139940
141138
 
139941
141139
  export interface UploadSet$ItemDropEventParameters {}
139942
141140
 
139943
- export type UploadSet$ItemDropEvent = Event<UploadSet$ItemDropEventParameters>;
141141
+ export type UploadSet$ItemDropEvent = Event<
141142
+ UploadSet$ItemDropEventParameters,
141143
+ UploadSet
141144
+ >;
139944
141145
 
139945
141146
  export interface UploadSet$MediaTypeMismatchEventParameters {
139946
141147
  /**
@@ -139949,7 +141150,10 @@ declare module "sap/m/upload/UploadSet" {
139949
141150
  item?: UploadSetItem;
139950
141151
  }
139951
141152
 
139952
- export type UploadSet$MediaTypeMismatchEvent = Event<UploadSet$MediaTypeMismatchEventParameters>;
141153
+ export type UploadSet$MediaTypeMismatchEvent = Event<
141154
+ UploadSet$MediaTypeMismatchEventParameters,
141155
+ UploadSet
141156
+ >;
139953
141157
 
139954
141158
  export interface UploadSet$SelectionChangedEventParameters {
139955
141159
  /**
@@ -139958,7 +141162,10 @@ declare module "sap/m/upload/UploadSet" {
139958
141162
  items?: UploadSetItem[];
139959
141163
  }
139960
141164
 
139961
- export type UploadSet$SelectionChangedEvent = Event<UploadSet$SelectionChangedEventParameters>;
141165
+ export type UploadSet$SelectionChangedEvent = Event<
141166
+ UploadSet$SelectionChangedEventParameters,
141167
+ UploadSet
141168
+ >;
139962
141169
 
139963
141170
  export interface UploadSet$UploadCompletedEventParameters {
139964
141171
  /**
@@ -140012,7 +141219,10 @@ declare module "sap/m/upload/UploadSet" {
140012
141219
  headers?: object;
140013
141220
  }
140014
141221
 
140015
- export type UploadSet$UploadCompletedEvent = Event<UploadSet$UploadCompletedEventParameters>;
141222
+ export type UploadSet$UploadCompletedEvent = Event<
141223
+ UploadSet$UploadCompletedEventParameters,
141224
+ UploadSet
141225
+ >;
140016
141226
 
140017
141227
  export interface UploadSet$UploadTerminatedEventParameters {
140018
141228
  /**
@@ -140021,7 +141231,10 @@ declare module "sap/m/upload/UploadSet" {
140021
141231
  item?: UploadSetItem;
140022
141232
  }
140023
141233
 
140024
- export type UploadSet$UploadTerminatedEvent = Event<UploadSet$UploadTerminatedEventParameters>;
141234
+ export type UploadSet$UploadTerminatedEvent = Event<
141235
+ UploadSet$UploadTerminatedEventParameters,
141236
+ UploadSet
141237
+ >;
140025
141238
  }
140026
141239
 
140027
141240
  declare module "sap/m/upload/UploadSetItem" {
@@ -140039,7 +141252,7 @@ declare module "sap/m/upload/UploadSetItem" {
140039
141252
 
140040
141253
  import ElementMetadata from "sap/ui/core/ElementMetadata";
140041
141254
 
140042
- import { UploadState } from "sap/m/library";
141255
+ import { UploadState, UploadType } from "sap/m/library";
140043
141256
 
140044
141257
  import {
140045
141258
  PropertyBindingInfo,
@@ -140149,6 +141362,19 @@ declare module "sap/m/upload/UploadSetItem" {
140149
141362
  */
140150
141363
  oMarker: ObjectMarker
140151
141364
  ): this;
141365
+ /**
141366
+ * @since 1.117
141367
+ *
141368
+ * Adds some markerAsStatus to the aggregation {@link #getMarkersAsStatus markersAsStatus}.
141369
+ *
141370
+ * @returns Reference to `this` in order to allow method chaining
141371
+ */
141372
+ addMarkerAsStatus(
141373
+ /**
141374
+ * The markerAsStatus to add; if empty, nothing is inserted
141375
+ */
141376
+ oMarkerAsStatus: ObjectStatus
141377
+ ): this;
140152
141378
  /**
140153
141379
  * Adds some status to the aggregation {@link #getStatuses statuses}.
140154
141380
  *
@@ -140270,6 +141496,14 @@ declare module "sap/m/upload/UploadSetItem" {
140270
141496
  * @returns Reference to `this` in order to allow method chaining
140271
141497
  */
140272
141498
  destroyMarkers(): this;
141499
+ /**
141500
+ * @since 1.117
141501
+ *
141502
+ * Destroys all the markersAsStatus in the aggregation {@link #getMarkersAsStatus markersAsStatus}.
141503
+ *
141504
+ * @returns Reference to `this` in order to allow method chaining
141505
+ */
141506
+ destroyMarkersAsStatus(): this;
140273
141507
  /**
140274
141508
  * Destroys all the statuses in the aggregation {@link #getStatuses statuses}.
140275
141509
  *
@@ -140422,6 +141656,14 @@ declare module "sap/m/upload/UploadSetItem" {
140422
141656
  * Markers of the item.
140423
141657
  */
140424
141658
  getMarkers(): ObjectMarker[];
141659
+ /**
141660
+ * @since 1.117
141661
+ *
141662
+ * Gets content of aggregation {@link #getMarkersAsStatus markersAsStatus}.
141663
+ *
141664
+ * Statuses of the item, but it would be appearing in the markers section
141665
+ */
141666
+ getMarkersAsStatus(): ObjectStatus[];
140425
141667
  /**
140426
141668
  * Gets current value of property {@link #getMediaType mediaType}.
140427
141669
  *
@@ -140464,6 +141706,15 @@ declare module "sap/m/upload/UploadSetItem" {
140464
141706
  * @returns Value of property `uploadState`
140465
141707
  */
140466
141708
  getUploadState(): UploadState | keyof typeof UploadState;
141709
+ /**
141710
+ * @since 1.117.0
141711
+ *
141712
+ * Returns the upload type of the item The method by default returns Native It is recommended to use this
141713
+ * method, when the user has uploded the instance
141714
+ *
141715
+ * @returns edit state of uploadSetItem
141716
+ */
141717
+ getUploadType(): UploadType | keyof typeof UploadType;
140467
141718
  /**
140468
141719
  * @since 1.90
140469
141720
  *
@@ -140542,6 +141793,20 @@ declare module "sap/m/upload/UploadSetItem" {
140542
141793
  */
140543
141794
  oMarker: ObjectMarker
140544
141795
  ): int;
141796
+ /**
141797
+ * @since 1.117
141798
+ *
141799
+ * Checks for the provided `sap.m.ObjectStatus` in the aggregation {@link #getMarkersAsStatus markersAsStatus}.
141800
+ * and returns its index if found or -1 otherwise.
141801
+ *
141802
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
141803
+ */
141804
+ indexOfMarkerAsStatus(
141805
+ /**
141806
+ * The markerAsStatus whose index is looked for
141807
+ */
141808
+ oMarkerAsStatus: ObjectStatus
141809
+ ): int;
140545
141810
  /**
140546
141811
  * Checks for the provided `sap.m.ObjectStatus` in the aggregation {@link #getStatuses statuses}. and returns
140547
141812
  * its index if found or -1 otherwise.
@@ -140607,6 +141872,25 @@ declare module "sap/m/upload/UploadSetItem" {
140607
141872
  */
140608
141873
  iIndex: int
140609
141874
  ): this;
141875
+ /**
141876
+ * @since 1.117
141877
+ *
141878
+ * Inserts a markerAsStatus into the aggregation {@link #getMarkersAsStatus markersAsStatus}.
141879
+ *
141880
+ * @returns Reference to `this` in order to allow method chaining
141881
+ */
141882
+ insertMarkerAsStatus(
141883
+ /**
141884
+ * The markerAsStatus to insert; if empty, nothing is inserted
141885
+ */
141886
+ oMarkerAsStatus: ObjectStatus,
141887
+ /**
141888
+ * The `0`-based index the markerAsStatus should be inserted at; for a negative value of `iIndex`, the markerAsStatus
141889
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the markerAsStatus
141890
+ * is inserted at the last position
141891
+ */
141892
+ iIndex: int
141893
+ ): this;
140610
141894
  /**
140611
141895
  * Inserts a status into the aggregation {@link #getStatuses statuses}.
140612
141896
  *
@@ -140659,6 +141943,16 @@ declare module "sap/m/upload/UploadSetItem" {
140659
141943
  * @returns An array of the removed elements (might be empty)
140660
141944
  */
140661
141945
  removeAllMarkers(): ObjectMarker[];
141946
+ /**
141947
+ * @since 1.117
141948
+ *
141949
+ * Removes all the controls from the aggregation {@link #getMarkersAsStatus markersAsStatus}.
141950
+ *
141951
+ * Additionally, it unregisters them from the hosting UIArea.
141952
+ *
141953
+ * @returns An array of the removed elements (might be empty)
141954
+ */
141955
+ removeAllMarkersAsStatus(): ObjectStatus[];
140662
141956
  /**
140663
141957
  * Removes all the controls from the aggregation {@link #getStatuses statuses}.
140664
141958
  *
@@ -140702,6 +141996,19 @@ declare module "sap/m/upload/UploadSetItem" {
140702
141996
  */
140703
141997
  vMarker: int | string | ObjectMarker
140704
141998
  ): ObjectMarker | null;
141999
+ /**
142000
+ * @since 1.117
142001
+ *
142002
+ * Removes a markerAsStatus from the aggregation {@link #getMarkersAsStatus markersAsStatus}.
142003
+ *
142004
+ * @returns The removed markerAsStatus or `null`
142005
+ */
142006
+ removeMarkerAsStatus(
142007
+ /**
142008
+ * The markerAsStatus to remove or its index or id
142009
+ */
142010
+ vMarkerAsStatus: int | string | ObjectStatus
142011
+ ): ObjectStatus | null;
140705
142012
  /**
140706
142013
  * Removes a status from the aggregation {@link #getStatuses statuses}.
140707
142014
  *
@@ -140999,6 +142306,17 @@ declare module "sap/m/upload/UploadSetItem" {
140999
142306
  | AggregationBindingInfo
141000
142307
  | `{${string}}`;
141001
142308
 
142309
+ /**
142310
+ * @since 1.117
142311
+ *
142312
+ * Statuses of the item, but it would be appearing in the markers section
142313
+ */
142314
+ markersAsStatus?:
142315
+ | ObjectStatus[]
142316
+ | ObjectStatus
142317
+ | AggregationBindingInfo
142318
+ | `{${string}}`;
142319
+
141002
142320
  /**
141003
142321
  * @since 1.90
141004
142322
  *
@@ -141024,7 +142342,10 @@ declare module "sap/m/upload/UploadSetItem" {
141024
142342
  item?: UploadSetItem;
141025
142343
  }
141026
142344
 
141027
- export type UploadSetItem$OpenPressedEvent = Event<UploadSetItem$OpenPressedEventParameters>;
142345
+ export type UploadSetItem$OpenPressedEvent = Event<
142346
+ UploadSetItem$OpenPressedEventParameters,
142347
+ UploadSetItem
142348
+ >;
141028
142349
 
141029
142350
  export interface UploadSetItem$RemovePressedEventParameters {
141030
142351
  /**
@@ -141033,7 +142354,10 @@ declare module "sap/m/upload/UploadSetItem" {
141033
142354
  item?: UploadSetItem;
141034
142355
  }
141035
142356
 
141036
- export type UploadSetItem$RemovePressedEvent = Event<UploadSetItem$RemovePressedEventParameters>;
142357
+ export type UploadSetItem$RemovePressedEvent = Event<
142358
+ UploadSetItem$RemovePressedEventParameters,
142359
+ UploadSetItem
142360
+ >;
141037
142361
  }
141038
142362
 
141039
142363
  declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
@@ -143124,7 +144448,10 @@ declare module "sap/m/UploadCollection" {
143124
144448
  getHeaderParameter?: Function;
143125
144449
  }
143126
144450
 
143127
- export type UploadCollection$BeforeUploadStartsEvent = Event<UploadCollection$BeforeUploadStartsEventParameters>;
144451
+ export type UploadCollection$BeforeUploadStartsEvent = Event<
144452
+ UploadCollection$BeforeUploadStartsEventParameters,
144453
+ UploadCollection
144454
+ >;
143128
144455
 
143129
144456
  export interface UploadCollection$ChangeEventParameters {
143130
144457
  /**
@@ -143141,7 +144468,10 @@ declare module "sap/m/UploadCollection" {
143141
144468
  files?: object[];
143142
144469
  }
143143
144470
 
143144
- export type UploadCollection$ChangeEvent = Event<UploadCollection$ChangeEventParameters>;
144471
+ export type UploadCollection$ChangeEvent = Event<
144472
+ UploadCollection$ChangeEventParameters,
144473
+ UploadCollection
144474
+ >;
143145
144475
 
143146
144476
  export interface UploadCollection$FileDeletedEventParameters {
143147
144477
  /**
@@ -143156,7 +144486,10 @@ declare module "sap/m/UploadCollection" {
143156
144486
  item?: UploadCollectionItem;
143157
144487
  }
143158
144488
 
143159
- export type UploadCollection$FileDeletedEvent = Event<UploadCollection$FileDeletedEventParameters>;
144489
+ export type UploadCollection$FileDeletedEvent = Event<
144490
+ UploadCollection$FileDeletedEventParameters,
144491
+ UploadCollection
144492
+ >;
143160
144493
 
143161
144494
  export interface UploadCollection$FilenameLengthExceedEventParameters {
143162
144495
  /**
@@ -143172,7 +144505,10 @@ declare module "sap/m/UploadCollection" {
143172
144505
  files?: object[];
143173
144506
  }
143174
144507
 
143175
- export type UploadCollection$FilenameLengthExceedEvent = Event<UploadCollection$FilenameLengthExceedEventParameters>;
144508
+ export type UploadCollection$FilenameLengthExceedEvent = Event<
144509
+ UploadCollection$FilenameLengthExceedEventParameters,
144510
+ UploadCollection
144511
+ >;
143176
144512
 
143177
144513
  export interface UploadCollection$FileRenamedEventParameters {
143178
144514
  /**
@@ -143192,7 +144528,10 @@ declare module "sap/m/UploadCollection" {
143192
144528
  item?: UploadCollectionItem;
143193
144529
  }
143194
144530
 
143195
- export type UploadCollection$FileRenamedEvent = Event<UploadCollection$FileRenamedEventParameters>;
144531
+ export type UploadCollection$FileRenamedEvent = Event<
144532
+ UploadCollection$FileRenamedEventParameters,
144533
+ UploadCollection
144534
+ >;
143196
144535
 
143197
144536
  export interface UploadCollection$FileSizeExceedEventParameters {
143198
144537
  /**
@@ -143214,7 +144553,10 @@ declare module "sap/m/UploadCollection" {
143214
144553
  files?: object[];
143215
144554
  }
143216
144555
 
143217
- export type UploadCollection$FileSizeExceedEvent = Event<UploadCollection$FileSizeExceedEventParameters>;
144556
+ export type UploadCollection$FileSizeExceedEvent = Event<
144557
+ UploadCollection$FileSizeExceedEventParameters,
144558
+ UploadCollection
144559
+ >;
143218
144560
 
143219
144561
  export interface UploadCollection$SelectionChangeEventParameters {
143220
144562
  /**
@@ -143234,7 +144576,10 @@ declare module "sap/m/UploadCollection" {
143234
144576
  selected?: boolean;
143235
144577
  }
143236
144578
 
143237
- export type UploadCollection$SelectionChangeEvent = Event<UploadCollection$SelectionChangeEventParameters>;
144579
+ export type UploadCollection$SelectionChangeEvent = Event<
144580
+ UploadCollection$SelectionChangeEventParameters,
144581
+ UploadCollection
144582
+ >;
143238
144583
 
143239
144584
  export interface UploadCollection$TypeMissmatchEventParameters {
143240
144585
  /**
@@ -143260,7 +144605,10 @@ declare module "sap/m/UploadCollection" {
143260
144605
  files?: object[];
143261
144606
  }
143262
144607
 
143263
- export type UploadCollection$TypeMissmatchEvent = Event<UploadCollection$TypeMissmatchEventParameters>;
144608
+ export type UploadCollection$TypeMissmatchEvent = Event<
144609
+ UploadCollection$TypeMissmatchEventParameters,
144610
+ UploadCollection
144611
+ >;
143264
144612
 
143265
144613
  export interface UploadCollection$UploadCompleteEventParameters {
143266
144614
  /**
@@ -143295,7 +144643,10 @@ declare module "sap/m/UploadCollection" {
143295
144643
  files?: object[];
143296
144644
  }
143297
144645
 
143298
- export type UploadCollection$UploadCompleteEvent = Event<UploadCollection$UploadCompleteEventParameters>;
144646
+ export type UploadCollection$UploadCompleteEvent = Event<
144647
+ UploadCollection$UploadCompleteEventParameters,
144648
+ UploadCollection
144649
+ >;
143299
144650
 
143300
144651
  export interface UploadCollection$UploadTerminatedEventParameters {
143301
144652
  /**
@@ -143311,7 +144662,10 @@ declare module "sap/m/UploadCollection" {
143311
144662
  getHeaderParameter?: Function;
143312
144663
  }
143313
144664
 
143314
- export type UploadCollection$UploadTerminatedEvent = Event<UploadCollection$UploadTerminatedEventParameters>;
144665
+ export type UploadCollection$UploadTerminatedEvent = Event<
144666
+ UploadCollection$UploadTerminatedEventParameters,
144667
+ UploadCollection
144668
+ >;
143315
144669
  }
143316
144670
 
143317
144671
  declare module "sap/m/UploadCollectionItem" {
@@ -144477,11 +145831,17 @@ declare module "sap/m/UploadCollectionItem" {
144477
145831
 
144478
145832
  export interface UploadCollectionItem$DeletePressEventParameters {}
144479
145833
 
144480
- export type UploadCollectionItem$DeletePressEvent = Event<UploadCollectionItem$DeletePressEventParameters>;
145834
+ export type UploadCollectionItem$DeletePressEvent = Event<
145835
+ UploadCollectionItem$DeletePressEventParameters,
145836
+ UploadCollectionItem
145837
+ >;
144481
145838
 
144482
145839
  export interface UploadCollectionItem$PressEventParameters {}
144483
145840
 
144484
- export type UploadCollectionItem$PressEvent = Event<UploadCollectionItem$PressEventParameters>;
145841
+ export type UploadCollectionItem$PressEvent = Event<
145842
+ UploadCollectionItem$PressEventParameters,
145843
+ UploadCollectionItem
145844
+ >;
144485
145845
  }
144486
145846
 
144487
145847
  declare module "sap/m/UploadCollectionParameter" {
@@ -146051,7 +147411,10 @@ declare module "sap/m/ViewSettingsFilterItem" {
146051
147411
 
146052
147412
  export interface ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEventParameters {}
146053
147413
 
146054
- export type ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEvent = Event<ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEventParameters>;
147414
+ export type ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEvent = Event<
147415
+ ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEventParameters,
147416
+ ViewSettingsFilterItem
147417
+ >;
146055
147418
  }
146056
147419
 
146057
147420
  declare module "sap/m/ViewSettingsItem" {
@@ -146273,7 +147636,10 @@ declare module "sap/m/ViewSettingsItem" {
146273
147636
  propertyValue?: any;
146274
147637
  }
146275
147638
 
146276
- export type ViewSettingsItem$ItemPropertyChangedEvent = Event<ViewSettingsItem$ItemPropertyChangedEventParameters>;
147639
+ export type ViewSettingsItem$ItemPropertyChangedEvent = Event<
147640
+ ViewSettingsItem$ItemPropertyChangedEventParameters,
147641
+ ViewSettingsItem
147642
+ >;
146277
147643
  }
146278
147644
 
146279
147645
  declare module "sap/m/WheelSlider" {
@@ -146802,11 +148168,17 @@ declare module "sap/m/WheelSlider" {
146802
148168
 
146803
148169
  export interface WheelSlider$CollapsedEventParameters {}
146804
148170
 
146805
- export type WheelSlider$CollapsedEvent = Event<WheelSlider$CollapsedEventParameters>;
148171
+ export type WheelSlider$CollapsedEvent = Event<
148172
+ WheelSlider$CollapsedEventParameters,
148173
+ WheelSlider
148174
+ >;
146806
148175
 
146807
148176
  export interface WheelSlider$ExpandedEventParameters {}
146808
148177
 
146809
- export type WheelSlider$ExpandedEvent = Event<WheelSlider$ExpandedEventParameters>;
148178
+ export type WheelSlider$ExpandedEvent = Event<
148179
+ WheelSlider$ExpandedEventParameters,
148180
+ WheelSlider
148181
+ >;
146810
148182
 
146811
148183
  export interface WheelSlider$SelectedKeyChangeEventParameters {
146812
148184
  /**
@@ -146815,7 +148187,10 @@ declare module "sap/m/WheelSlider" {
146815
148187
  newKey?: string;
146816
148188
  }
146817
148189
 
146818
- export type WheelSlider$SelectedKeyChangeEvent = Event<WheelSlider$SelectedKeyChangeEventParameters>;
148190
+ export type WheelSlider$SelectedKeyChangeEvent = Event<
148191
+ WheelSlider$SelectedKeyChangeEventParameters,
148192
+ WheelSlider
148193
+ >;
146819
148194
  }
146820
148195
 
146821
148196
  declare module "sap/m/WheelSliderContainer" {
@@ -147894,7 +149269,10 @@ declare module "sap/m/Wizard" {
147894
149269
 
147895
149270
  export interface Wizard$CompleteEventParameters {}
147896
149271
 
147897
- export type Wizard$CompleteEvent = Event<Wizard$CompleteEventParameters>;
149272
+ export type Wizard$CompleteEvent = Event<
149273
+ Wizard$CompleteEventParameters,
149274
+ Wizard
149275
+ >;
147898
149276
 
147899
149277
  export interface Wizard$NavigationChangeEventParameters {
147900
149278
  /**
@@ -147903,7 +149281,10 @@ declare module "sap/m/Wizard" {
147903
149281
  step?: WizardStep;
147904
149282
  }
147905
149283
 
147906
- export type Wizard$NavigationChangeEvent = Event<Wizard$NavigationChangeEventParameters>;
149284
+ export type Wizard$NavigationChangeEvent = Event<
149285
+ Wizard$NavigationChangeEventParameters,
149286
+ Wizard
149287
+ >;
147907
149288
 
147908
149289
  export interface Wizard$StepActivateEventParameters {
147909
149290
  /**
@@ -147912,7 +149293,10 @@ declare module "sap/m/Wizard" {
147912
149293
  index?: int;
147913
149294
  }
147914
149295
 
147915
- export type Wizard$StepActivateEvent = Event<Wizard$StepActivateEventParameters>;
149296
+ export type Wizard$StepActivateEvent = Event<
149297
+ Wizard$StepActivateEventParameters,
149298
+ Wizard
149299
+ >;
147916
149300
  }
147917
149301
 
147918
149302
  declare module "sap/m/WizardStep" {
@@ -148471,11 +149855,17 @@ declare module "sap/m/WizardStep" {
148471
149855
 
148472
149856
  export interface WizardStep$ActivateEventParameters {}
148473
149857
 
148474
- export type WizardStep$ActivateEvent = Event<WizardStep$ActivateEventParameters>;
149858
+ export type WizardStep$ActivateEvent = Event<
149859
+ WizardStep$ActivateEventParameters,
149860
+ WizardStep
149861
+ >;
148475
149862
 
148476
149863
  export interface WizardStep$CompleteEventParameters {}
148477
149864
 
148478
- export type WizardStep$CompleteEvent = Event<WizardStep$CompleteEventParameters>;
149865
+ export type WizardStep$CompleteEvent = Event<
149866
+ WizardStep$CompleteEventParameters,
149867
+ WizardStep
149868
+ >;
148479
149869
  }
148480
149870
 
148481
149871
  declare namespace sap {