@openui5/types 1.115.1 → 1.117.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -846,9 +846,7 @@ declare module "sap/ui/unified/Calendar" {
846
846
  *
847
847
  * @returns Value of property `calendarWeekNumbering`
848
848
  */
849
- getCalendarWeekNumbering():
850
- | CalendarWeekNumbering
851
- | keyof typeof CalendarWeekNumbering;
849
+ getCalendarWeekNumbering(): CalendarWeekNumbering;
852
850
  /**
853
851
  * @since 1.38.0
854
852
  *
@@ -976,7 +974,7 @@ declare module "sap/ui/unified/Calendar" {
976
974
  *
977
975
  * @returns Value of property `primaryCalendarType`
978
976
  */
979
- getPrimaryCalendarType(): CalendarType | keyof typeof CalendarType;
977
+ getPrimaryCalendarType(): CalendarType;
980
978
  /**
981
979
  * @since 1.34.0
982
980
  *
@@ -987,7 +985,7 @@ declare module "sap/ui/unified/Calendar" {
987
985
  *
988
986
  * @returns Value of property `secondaryCalendarType`
989
987
  */
990
- getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
988
+ getSecondaryCalendarType(): CalendarType;
991
989
  /**
992
990
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
993
991
  *
@@ -1254,9 +1252,7 @@ declare module "sap/ui/unified/Calendar" {
1254
1252
  /**
1255
1253
  * New value for property `calendarWeekNumbering`
1256
1254
  */
1257
- sCalendarWeekNumbering?:
1258
- | CalendarWeekNumbering
1259
- | keyof typeof CalendarWeekNumbering
1255
+ sCalendarWeekNumbering?: CalendarWeekNumbering
1260
1256
  ): this;
1261
1257
  /**
1262
1258
  * @since 1.28.9
@@ -1411,7 +1407,7 @@ declare module "sap/ui/unified/Calendar" {
1411
1407
  /**
1412
1408
  * New value for property `primaryCalendarType`
1413
1409
  */
1414
- sPrimaryCalendarType: CalendarType | keyof typeof CalendarType
1410
+ sPrimaryCalendarType: CalendarType
1415
1411
  ): this;
1416
1412
  /**
1417
1413
  * @since 1.34.0
@@ -1429,7 +1425,7 @@ declare module "sap/ui/unified/Calendar" {
1429
1425
  /**
1430
1426
  * New value for property `secondaryCalendarType`
1431
1427
  */
1432
- sSecondaryCalendarType: CalendarType | keyof typeof CalendarType
1428
+ sSecondaryCalendarType: CalendarType
1433
1429
  ): this;
1434
1430
  /**
1435
1431
  * Sets the visibility of the Current date button in the calendar.
@@ -1551,10 +1547,7 @@ declare module "sap/ui/unified/Calendar" {
1551
1547
  * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
1552
1548
  * is used.
1553
1549
  */
1554
- primaryCalendarType?:
1555
- | (CalendarType | keyof typeof CalendarType)
1556
- | PropertyBindingInfo
1557
- | `{${string}}`;
1550
+ primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
1558
1551
 
1559
1552
  /**
1560
1553
  * @since 1.34.0
@@ -1562,10 +1555,7 @@ declare module "sap/ui/unified/Calendar" {
1562
1555
  * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
1563
1556
  * the primary calendar type
1564
1557
  */
1565
- secondaryCalendarType?:
1566
- | (CalendarType | keyof typeof CalendarType)
1567
- | PropertyBindingInfo
1568
- | `{${string}}`;
1558
+ secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
1569
1559
 
1570
1560
  /**
1571
1561
  * @since 1.38.0
@@ -1629,7 +1619,7 @@ declare module "sap/ui/unified/Calendar" {
1629
1619
  * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
1630
1620
  */
1631
1621
  calendarWeekNumbering?:
1632
- | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
1622
+ | CalendarWeekNumbering
1633
1623
  | PropertyBindingInfo
1634
1624
  | `{${string}}`;
1635
1625
 
@@ -1731,40 +1721,29 @@ declare module "sap/ui/unified/Calendar" {
1731
1721
  *
1732
1722
  * **Note** Works for Gregorian calendars only and when `intervalSelection` is set to 'true'.
1733
1723
  */
1734
- weekNumberSelect?: (
1735
- oEvent: Event<Calendar$WeekNumberSelectEventParameters>
1736
- ) => void;
1724
+ weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
1737
1725
  }
1738
1726
 
1739
1727
  export interface Calendar$CancelEventParameters {}
1740
1728
 
1741
- /**
1742
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$CancelEventParameters'
1743
- * in 1.115.1 and any later releases.
1744
- */
1745
- export type $CalendarCancelEventParameters = Calendar$CancelEventParameters;
1746
-
1747
- export type Calendar$CancelEvent = Event<Calendar$CancelEventParameters>;
1729
+ export type Calendar$CancelEvent = Event<
1730
+ Calendar$CancelEventParameters,
1731
+ Calendar
1732
+ >;
1748
1733
 
1749
1734
  export interface Calendar$SelectEventParameters {}
1750
1735
 
1751
- /**
1752
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$SelectEventParameters'
1753
- * in 1.115.1 and any later releases.
1754
- */
1755
- export type $CalendarSelectEventParameters = Calendar$SelectEventParameters;
1756
-
1757
- export type Calendar$SelectEvent = Event<Calendar$SelectEventParameters>;
1736
+ export type Calendar$SelectEvent = Event<
1737
+ Calendar$SelectEventParameters,
1738
+ Calendar
1739
+ >;
1758
1740
 
1759
1741
  export interface Calendar$StartDateChangeEventParameters {}
1760
1742
 
1761
- /**
1762
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$StartDateChangeEventParameters'
1763
- * in 1.115.1 and any later releases.
1764
- */
1765
- export type $CalendarStartDateChangeEventParameters = Calendar$StartDateChangeEventParameters;
1766
-
1767
- export type Calendar$StartDateChangeEvent = Event<Calendar$StartDateChangeEventParameters>;
1743
+ export type Calendar$StartDateChangeEvent = Event<
1744
+ Calendar$StartDateChangeEventParameters,
1745
+ Calendar
1746
+ >;
1768
1747
 
1769
1748
  export interface Calendar$WeekNumberSelectEventParameters {
1770
1749
  /**
@@ -1778,13 +1757,10 @@ declare module "sap/ui/unified/Calendar" {
1778
1757
  weekDays?: DateRange;
1779
1758
  }
1780
1759
 
1781
- /**
1782
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$WeekNumberSelectEventParameters'
1783
- * in 1.115.1 and any later releases.
1784
- */
1785
- export type $CalendarWeekNumberSelectEventParameters = Calendar$WeekNumberSelectEventParameters;
1786
-
1787
- export type Calendar$WeekNumberSelectEvent = Event<Calendar$WeekNumberSelectEventParameters>;
1760
+ export type Calendar$WeekNumberSelectEvent = Event<
1761
+ Calendar$WeekNumberSelectEventParameters,
1762
+ Calendar
1763
+ >;
1788
1764
  }
1789
1765
 
1790
1766
  declare module "sap/ui/unified/calendar/DatesRow" {
@@ -1894,9 +1870,7 @@ declare module "sap/ui/unified/calendar/DatesRow" {
1894
1870
  *
1895
1871
  * @returns Value of property `calendarWeekNumbering`
1896
1872
  */
1897
- getCalendarWeekNumbering():
1898
- | CalendarWeekNumbering
1899
- | keyof typeof CalendarWeekNumbering;
1873
+ getCalendarWeekNumbering(): CalendarWeekNumbering;
1900
1874
  /**
1901
1875
  * Gets current value of property {@link #getDays days}.
1902
1876
  *
@@ -1947,9 +1921,7 @@ declare module "sap/ui/unified/calendar/DatesRow" {
1947
1921
  /**
1948
1922
  * New value for property `calendarWeekNumbering`
1949
1923
  */
1950
- sCalendarWeekNumbering?:
1951
- | CalendarWeekNumbering
1952
- | keyof typeof CalendarWeekNumbering
1924
+ sCalendarWeekNumbering?: CalendarWeekNumbering
1953
1925
  ): this;
1954
1926
  /**
1955
1927
  * Setter for property `date`.
@@ -2044,7 +2016,7 @@ declare module "sap/ui/unified/calendar/DatesRow" {
2044
2016
  * property.
2045
2017
  */
2046
2018
  calendarWeekNumbering?:
2047
- | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
2019
+ | CalendarWeekNumbering
2048
2020
  | PropertyBindingInfo
2049
2021
  | `{${string}}`;
2050
2022
  }
@@ -3134,63 +3106,45 @@ declare module "sap/ui/unified/calendar/Header" {
3134
3106
 
3135
3107
  export interface Header$PressButton0EventParameters {}
3136
3108
 
3137
- /**
3138
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressButton0EventParameters'
3139
- * in 1.115.1 and any later releases.
3140
- */
3141
- export type $HeaderPressButton0EventParameters = Header$PressButton0EventParameters;
3142
-
3143
- export type Header$PressButton0Event = Event<Header$PressButton0EventParameters>;
3109
+ export type Header$PressButton0Event = Event<
3110
+ Header$PressButton0EventParameters,
3111
+ Header
3112
+ >;
3144
3113
 
3145
3114
  export interface Header$PressButton1EventParameters {}
3146
3115
 
3147
- /**
3148
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressButton1EventParameters'
3149
- * in 1.115.1 and any later releases.
3150
- */
3151
- export type $HeaderPressButton1EventParameters = Header$PressButton1EventParameters;
3152
-
3153
- export type Header$PressButton1Event = Event<Header$PressButton1EventParameters>;
3116
+ export type Header$PressButton1Event = Event<
3117
+ Header$PressButton1EventParameters,
3118
+ Header
3119
+ >;
3154
3120
 
3155
3121
  export interface Header$PressButton2EventParameters {}
3156
3122
 
3157
- /**
3158
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressButton2EventParameters'
3159
- * in 1.115.1 and any later releases.
3160
- */
3161
- export type $HeaderPressButton2EventParameters = Header$PressButton2EventParameters;
3162
-
3163
- export type Header$PressButton2Event = Event<Header$PressButton2EventParameters>;
3123
+ export type Header$PressButton2Event = Event<
3124
+ Header$PressButton2EventParameters,
3125
+ Header
3126
+ >;
3164
3127
 
3165
3128
  export interface Header$PressCurrentDateEventParameters {}
3166
3129
 
3167
- /**
3168
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressCurrentDateEventParameters'
3169
- * in 1.115.1 and any later releases.
3170
- */
3171
- export type $HeaderPressCurrentDateEventParameters = Header$PressCurrentDateEventParameters;
3172
-
3173
- export type Header$PressCurrentDateEvent = Event<Header$PressCurrentDateEventParameters>;
3130
+ export type Header$PressCurrentDateEvent = Event<
3131
+ Header$PressCurrentDateEventParameters,
3132
+ Header
3133
+ >;
3174
3134
 
3175
3135
  export interface Header$PressNextEventParameters {}
3176
3136
 
3177
- /**
3178
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressNextEventParameters'
3179
- * in 1.115.1 and any later releases.
3180
- */
3181
- export type $HeaderPressNextEventParameters = Header$PressNextEventParameters;
3182
-
3183
- export type Header$PressNextEvent = Event<Header$PressNextEventParameters>;
3137
+ export type Header$PressNextEvent = Event<
3138
+ Header$PressNextEventParameters,
3139
+ Header
3140
+ >;
3184
3141
 
3185
3142
  export interface Header$PressPreviousEventParameters {}
3186
3143
 
3187
- /**
3188
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressPreviousEventParameters'
3189
- * in 1.115.1 and any later releases.
3190
- */
3191
- export type $HeaderPressPreviousEventParameters = Header$PressPreviousEventParameters;
3192
-
3193
- export type Header$PressPreviousEvent = Event<Header$PressPreviousEventParameters>;
3144
+ export type Header$PressPreviousEvent = Event<
3145
+ Header$PressPreviousEventParameters,
3146
+ Header
3147
+ >;
3194
3148
  }
3195
3149
 
3196
3150
  declare module "sap/ui/unified/calendar/Month" {
@@ -3638,9 +3592,7 @@ declare module "sap/ui/unified/calendar/Month" {
3638
3592
  *
3639
3593
  * @returns Value of property `calendarWeekNumbering`
3640
3594
  */
3641
- getCalendarWeekNumbering():
3642
- | CalendarWeekNumbering
3643
- | keyof typeof CalendarWeekNumbering;
3595
+ getCalendarWeekNumbering(): CalendarWeekNumbering;
3644
3596
  /**
3645
3597
  * Gets current value of property {@link #getDate date}.
3646
3598
  *
@@ -3709,7 +3661,7 @@ declare module "sap/ui/unified/calendar/Month" {
3709
3661
  *
3710
3662
  * @returns Value of property `primaryCalendarType`
3711
3663
  */
3712
- getPrimaryCalendarType(): CalendarType | keyof typeof CalendarType;
3664
+ getPrimaryCalendarType(): CalendarType;
3713
3665
  /**
3714
3666
  * @since 1.34.0
3715
3667
  *
@@ -3720,7 +3672,7 @@ declare module "sap/ui/unified/calendar/Month" {
3720
3672
  *
3721
3673
  * @returns Value of property `secondaryCalendarType`
3722
3674
  */
3723
- getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
3675
+ getSecondaryCalendarType(): CalendarType;
3724
3676
  /**
3725
3677
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
3726
3678
  *
@@ -3967,9 +3919,7 @@ declare module "sap/ui/unified/calendar/Month" {
3967
3919
  /**
3968
3920
  * New value for property `calendarWeekNumbering`
3969
3921
  */
3970
- sCalendarWeekNumbering?:
3971
- | CalendarWeekNumbering
3972
- | keyof typeof CalendarWeekNumbering
3922
+ sCalendarWeekNumbering?: CalendarWeekNumbering
3973
3923
  ): this;
3974
3924
  /**
3975
3925
  * Sets a date for the month.
@@ -4068,7 +4018,7 @@ declare module "sap/ui/unified/calendar/Month" {
4068
4018
  /**
4069
4019
  * New value for property `primaryCalendarType`
4070
4020
  */
4071
- sPrimaryCalendarType: CalendarType | keyof typeof CalendarType
4021
+ sPrimaryCalendarType: CalendarType
4072
4022
  ): this;
4073
4023
  /**
4074
4024
  * @since 1.34.0
@@ -4086,7 +4036,7 @@ declare module "sap/ui/unified/calendar/Month" {
4086
4036
  /**
4087
4037
  * New value for property `secondaryCalendarType`
4088
4038
  */
4089
- sSecondaryCalendarType: CalendarType | keyof typeof CalendarType
4039
+ sSecondaryCalendarType: CalendarType
4090
4040
  ): this;
4091
4041
  /**
4092
4042
  * Sets a new value for property {@link #getShowHeader showHeader}.
@@ -4208,10 +4158,7 @@ declare module "sap/ui/unified/calendar/Month" {
4208
4158
  * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
4209
4159
  * is used.
4210
4160
  */
4211
- primaryCalendarType?:
4212
- | (CalendarType | keyof typeof CalendarType)
4213
- | PropertyBindingInfo
4214
- | `{${string}}`;
4161
+ primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
4215
4162
 
4216
4163
  /**
4217
4164
  * @since 1.34.0
@@ -4219,10 +4166,7 @@ declare module "sap/ui/unified/calendar/Month" {
4219
4166
  * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
4220
4167
  * the primary calendar type
4221
4168
  */
4222
- secondaryCalendarType?:
4223
- | (CalendarType | keyof typeof CalendarType)
4224
- | PropertyBindingInfo
4225
- | `{${string}}`;
4169
+ secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
4226
4170
 
4227
4171
  /**
4228
4172
  * @since 1.38.0
@@ -4248,7 +4192,7 @@ declare module "sap/ui/unified/calendar/Month" {
4248
4192
  * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
4249
4193
  */
4250
4194
  calendarWeekNumbering?:
4251
- | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
4195
+ | CalendarWeekNumbering
4252
4196
  | PropertyBindingInfo
4253
4197
  | `{${string}}`;
4254
4198
 
@@ -4307,7 +4251,7 @@ declare module "sap/ui/unified/calendar/Month" {
4307
4251
  /**
4308
4252
  * Date focus changed
4309
4253
  */
4310
- focus?: (oEvent: Event<Month$FocusEventParameters>) => void;
4254
+ focus?: (oEvent: Month$FocusEvent) => void;
4311
4255
 
4312
4256
  /**
4313
4257
  * @since 1.60
@@ -4319,9 +4263,7 @@ declare module "sap/ui/unified/calendar/Month" {
4319
4263
  *
4320
4264
  * **Note:** Works for Gregorian calendars only and when `intervalSelection` is set to `true`.
4321
4265
  */
4322
- weekNumberSelect?: (
4323
- oEvent: Event<Month$WeekNumberSelectEventParameters>
4324
- ) => void;
4266
+ weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
4325
4267
  }
4326
4268
 
4327
4269
  export interface Month$FocusEventParameters {
@@ -4341,23 +4283,11 @@ declare module "sap/ui/unified/calendar/Month" {
4341
4283
  restoreOldDate?: boolean;
4342
4284
  }
4343
4285
 
4344
- /**
4345
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Month$FocusEventParameters'
4346
- * in 1.115.1 and any later releases.
4347
- */
4348
- export type $MonthFocusEventParameters = Month$FocusEventParameters;
4349
-
4350
- export type Month$FocusEvent = Event<Month$FocusEventParameters>;
4286
+ export type Month$FocusEvent = Event<Month$FocusEventParameters, Month>;
4351
4287
 
4352
4288
  export interface Month$SelectEventParameters {}
4353
4289
 
4354
- /**
4355
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Month$SelectEventParameters'
4356
- * in 1.115.1 and any later releases.
4357
- */
4358
- export type $MonthSelectEventParameters = Month$SelectEventParameters;
4359
-
4360
- export type Month$SelectEvent = Event<Month$SelectEventParameters>;
4290
+ export type Month$SelectEvent = Event<Month$SelectEventParameters, Month>;
4361
4291
 
4362
4292
  export interface Month$WeekNumberSelectEventParameters {
4363
4293
  /**
@@ -4373,13 +4303,10 @@ declare module "sap/ui/unified/calendar/Month" {
4373
4303
  weekDays?: DateRange;
4374
4304
  }
4375
4305
 
4376
- /**
4377
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Month$WeekNumberSelectEventParameters'
4378
- * in 1.115.1 and any later releases.
4379
- */
4380
- export type $MonthWeekNumberSelectEventParameters = Month$WeekNumberSelectEventParameters;
4381
-
4382
- export type Month$WeekNumberSelectEvent = Event<Month$WeekNumberSelectEventParameters>;
4306
+ export type Month$WeekNumberSelectEvent = Event<
4307
+ Month$WeekNumberSelectEventParameters,
4308
+ Month
4309
+ >;
4383
4310
  }
4384
4311
 
4385
4312
  declare module "sap/ui/unified/calendar/MonthPicker" {
@@ -4726,7 +4653,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4726
4653
  *
4727
4654
  * @returns Value of property `primaryCalendarType`
4728
4655
  */
4729
- getPrimaryCalendarType(): CalendarType | keyof typeof CalendarType;
4656
+ getPrimaryCalendarType(): CalendarType;
4730
4657
  /**
4731
4658
  * @since 1.104.0
4732
4659
  *
@@ -4737,7 +4664,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4737
4664
  *
4738
4665
  * @returns Value of property `secondaryCalendarType`
4739
4666
  */
4740
- getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
4667
+ getSecondaryCalendarType(): CalendarType;
4741
4668
  /**
4742
4669
  * @since 1.74
4743
4670
  *
@@ -4941,7 +4868,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4941
4868
  /**
4942
4869
  * New value for property `primaryCalendarType`
4943
4870
  */
4944
- sPrimaryCalendarType: CalendarType | keyof typeof CalendarType
4871
+ sPrimaryCalendarType: CalendarType
4945
4872
  ): this;
4946
4873
  /**
4947
4874
  * @since 1.104.0
@@ -4959,7 +4886,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4959
4886
  /**
4960
4887
  * New value for property `secondaryCalendarType`
4961
4888
  */
4962
- sSecondaryCalendarType: CalendarType | keyof typeof CalendarType
4889
+ sSecondaryCalendarType: CalendarType
4963
4890
  ): this;
4964
4891
  }
4965
4892
 
@@ -4997,10 +4924,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4997
4924
  * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
4998
4925
  * is used.
4999
4926
  */
5000
- primaryCalendarType?:
5001
- | (CalendarType | keyof typeof CalendarType)
5002
- | PropertyBindingInfo
5003
- | `{${string}}`;
4927
+ primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
5004
4928
 
5005
4929
  /**
5006
4930
  * @since 1.104.0
@@ -5008,10 +4932,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
5008
4932
  * If set, the months are also displayed in this calendar type If not set, the months are only displayed
5009
4933
  * in the primary calendar type
5010
4934
  */
5011
- secondaryCalendarType?:
5012
- | (CalendarType | keyof typeof CalendarType)
5013
- | PropertyBindingInfo
5014
- | `{${string}}`;
4935
+ secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
5015
4936
 
5016
4937
  /**
5017
4938
  * @since 1.74
@@ -5047,23 +4968,17 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
5047
4968
 
5048
4969
  export interface MonthPicker$PageChangeEventParameters {}
5049
4970
 
5050
- /**
5051
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthPicker$PageChangeEventParameters'
5052
- * in 1.115.1 and any later releases.
5053
- */
5054
- export type $MonthPickerPageChangeEventParameters = MonthPicker$PageChangeEventParameters;
5055
-
5056
- export type MonthPicker$PageChangeEvent = Event<MonthPicker$PageChangeEventParameters>;
4971
+ export type MonthPicker$PageChangeEvent = Event<
4972
+ MonthPicker$PageChangeEventParameters,
4973
+ MonthPicker
4974
+ >;
5057
4975
 
5058
4976
  export interface MonthPicker$SelectEventParameters {}
5059
4977
 
5060
- /**
5061
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthPicker$SelectEventParameters'
5062
- * in 1.115.1 and any later releases.
5063
- */
5064
- export type $MonthPickerSelectEventParameters = MonthPicker$SelectEventParameters;
5065
-
5066
- export type MonthPicker$SelectEvent = Event<MonthPicker$SelectEventParameters>;
4978
+ export type MonthPicker$SelectEvent = Event<
4979
+ MonthPicker$SelectEventParameters,
4980
+ MonthPicker
4981
+ >;
5067
4982
  }
5068
4983
 
5069
4984
  declare module "sap/ui/unified/calendar/MonthsRow" {
@@ -5436,7 +5351,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5436
5351
  *
5437
5352
  * @returns Value of property `primaryCalendarType`
5438
5353
  */
5439
- getPrimaryCalendarType(): CalendarType | keyof typeof CalendarType;
5354
+ getPrimaryCalendarType(): CalendarType;
5440
5355
  /**
5441
5356
  * @since 1.109.0
5442
5357
  *
@@ -5447,7 +5362,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5447
5362
  *
5448
5363
  * @returns Value of property `secondaryCalendarType`
5449
5364
  */
5450
- getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
5365
+ getSecondaryCalendarType(): CalendarType;
5451
5366
  /**
5452
5367
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
5453
5368
  *
@@ -5685,7 +5600,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5685
5600
  /**
5686
5601
  * New value for property `primaryCalendarType`
5687
5602
  */
5688
- sPrimaryCalendarType: CalendarType | keyof typeof CalendarType
5603
+ sPrimaryCalendarType: CalendarType
5689
5604
  ): this;
5690
5605
  /**
5691
5606
  * @since 1.109.0
@@ -5703,7 +5618,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5703
5618
  /**
5704
5619
  * New value for property `secondaryCalendarType`
5705
5620
  */
5706
- sSecondaryCalendarType: CalendarType | keyof typeof CalendarType
5621
+ sSecondaryCalendarType: CalendarType
5707
5622
  ): this;
5708
5623
  /**
5709
5624
  * Sets a new value for property {@link #getShowHeader showHeader}.
@@ -5797,10 +5712,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5797
5712
  * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
5798
5713
  * is used.
5799
5714
  */
5800
- primaryCalendarType?:
5801
- | (CalendarType | keyof typeof CalendarType)
5802
- | PropertyBindingInfo
5803
- | `{${string}}`;
5715
+ primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
5804
5716
 
5805
5717
  /**
5806
5718
  * @since 1.109.0
@@ -5808,10 +5720,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5808
5720
  * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
5809
5721
  * the primary calendar type
5810
5722
  */
5811
- secondaryCalendarType?:
5812
- | (CalendarType | keyof typeof CalendarType)
5813
- | PropertyBindingInfo
5814
- | `{${string}}`;
5723
+ secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
5815
5724
 
5816
5725
  /**
5817
5726
  * Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
@@ -5859,7 +5768,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5859
5768
  /**
5860
5769
  * Month focus changed
5861
5770
  */
5862
- focus?: (oEvent: Event<MonthsRow$FocusEventParameters>) => void;
5771
+ focus?: (oEvent: MonthsRow$FocusEvent) => void;
5863
5772
  }
5864
5773
 
5865
5774
  export interface MonthsRow$FocusEventParameters {
@@ -5874,23 +5783,17 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5874
5783
  notVisible?: boolean;
5875
5784
  }
5876
5785
 
5877
- /**
5878
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthsRow$FocusEventParameters'
5879
- * in 1.115.1 and any later releases.
5880
- */
5881
- export type $MonthsRowFocusEventParameters = MonthsRow$FocusEventParameters;
5882
-
5883
- export type MonthsRow$FocusEvent = Event<MonthsRow$FocusEventParameters>;
5786
+ export type MonthsRow$FocusEvent = Event<
5787
+ MonthsRow$FocusEventParameters,
5788
+ MonthsRow
5789
+ >;
5884
5790
 
5885
5791
  export interface MonthsRow$SelectEventParameters {}
5886
5792
 
5887
- /**
5888
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthsRow$SelectEventParameters'
5889
- * in 1.115.1 and any later releases.
5890
- */
5891
- export type $MonthsRowSelectEventParameters = MonthsRow$SelectEventParameters;
5892
-
5893
- export type MonthsRow$SelectEvent = Event<MonthsRow$SelectEventParameters>;
5793
+ export type MonthsRow$SelectEvent = Event<
5794
+ MonthsRow$SelectEventParameters,
5795
+ MonthsRow
5796
+ >;
5894
5797
  }
5895
5798
 
5896
5799
  declare module "sap/ui/unified/calendar/TimesRow" {
@@ -6277,7 +6180,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6277
6180
  *
6278
6181
  * @returns Value of property `primaryCalendarType`
6279
6182
  */
6280
- getPrimaryCalendarType(): CalendarType | keyof typeof CalendarType;
6183
+ getPrimaryCalendarType(): CalendarType;
6281
6184
  /**
6282
6185
  * @since 1.109.0
6283
6186
  *
@@ -6288,7 +6191,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6288
6191
  *
6289
6192
  * @returns Value of property `secondaryCalendarType`
6290
6193
  */
6291
- getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
6194
+ getSecondaryCalendarType(): CalendarType;
6292
6195
  /**
6293
6196
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
6294
6197
  *
@@ -6543,7 +6446,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6543
6446
  /**
6544
6447
  * New value for property `primaryCalendarType`
6545
6448
  */
6546
- sPrimaryCalendarType: CalendarType | keyof typeof CalendarType
6449
+ sPrimaryCalendarType: CalendarType
6547
6450
  ): this;
6548
6451
  /**
6549
6452
  * @since 1.109.0
@@ -6561,7 +6464,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6561
6464
  /**
6562
6465
  * New value for property `secondaryCalendarType`
6563
6466
  */
6564
- sSecondaryCalendarType: CalendarType | keyof typeof CalendarType
6467
+ sSecondaryCalendarType: CalendarType
6565
6468
  ): this;
6566
6469
  /**
6567
6470
  * Sets a new value for property {@link #getShowHeader showHeader}.
@@ -6665,10 +6568,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6665
6568
  * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
6666
6569
  * is used.
6667
6570
  */
6668
- primaryCalendarType?:
6669
- | (CalendarType | keyof typeof CalendarType)
6670
- | PropertyBindingInfo
6671
- | `{${string}}`;
6571
+ primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
6672
6572
 
6673
6573
  /**
6674
6574
  * @since 1.109.0
@@ -6676,10 +6576,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6676
6576
  * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
6677
6577
  * the primary calendar type
6678
6578
  */
6679
- secondaryCalendarType?:
6680
- | (CalendarType | keyof typeof CalendarType)
6681
- | PropertyBindingInfo
6682
- | `{${string}}`;
6579
+ secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
6683
6580
 
6684
6581
  /**
6685
6582
  * Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
@@ -6722,7 +6619,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6722
6619
  /**
6723
6620
  * Time focus changed
6724
6621
  */
6725
- focus?: (oEvent: Event<TimesRow$FocusEventParameters>) => void;
6622
+ focus?: (oEvent: TimesRow$FocusEvent) => void;
6726
6623
  }
6727
6624
 
6728
6625
  export interface TimesRow$FocusEventParameters {
@@ -6737,23 +6634,17 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6737
6634
  notVisible?: boolean;
6738
6635
  }
6739
6636
 
6740
- /**
6741
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimesRow$FocusEventParameters'
6742
- * in 1.115.1 and any later releases.
6743
- */
6744
- export type $TimesRowFocusEventParameters = TimesRow$FocusEventParameters;
6745
-
6746
- export type TimesRow$FocusEvent = Event<TimesRow$FocusEventParameters>;
6637
+ export type TimesRow$FocusEvent = Event<
6638
+ TimesRow$FocusEventParameters,
6639
+ TimesRow
6640
+ >;
6747
6641
 
6748
6642
  export interface TimesRow$SelectEventParameters {}
6749
6643
 
6750
- /**
6751
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimesRow$SelectEventParameters'
6752
- * in 1.115.1 and any later releases.
6753
- */
6754
- export type $TimesRowSelectEventParameters = TimesRow$SelectEventParameters;
6755
-
6756
- export type TimesRow$SelectEvent = Event<TimesRow$SelectEventParameters>;
6644
+ export type TimesRow$SelectEvent = Event<
6645
+ TimesRow$SelectEventParameters,
6646
+ TimesRow
6647
+ >;
6757
6648
  }
6758
6649
 
6759
6650
  declare module "sap/ui/unified/calendar/YearPicker" {
@@ -7078,7 +6969,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7078
6969
  *
7079
6970
  * @returns Value of property `primaryCalendarType`
7080
6971
  */
7081
- getPrimaryCalendarType(): CalendarType | keyof typeof CalendarType;
6972
+ getPrimaryCalendarType(): CalendarType;
7082
6973
  /**
7083
6974
  * @since 1.104.0
7084
6975
  *
@@ -7089,7 +6980,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7089
6980
  *
7090
6981
  * @returns Value of property `secondaryCalendarType`
7091
6982
  */
7092
- getSecondaryCalendarType(): CalendarType | keyof typeof CalendarType;
6983
+ getSecondaryCalendarType(): CalendarType;
7093
6984
  /**
7094
6985
  * @since 1.74
7095
6986
  *
@@ -7255,7 +7146,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7255
7146
  /**
7256
7147
  * New value for property `primaryCalendarType`
7257
7148
  */
7258
- sPrimaryCalendarType: CalendarType | keyof typeof CalendarType
7149
+ sPrimaryCalendarType: CalendarType
7259
7150
  ): this;
7260
7151
  /**
7261
7152
  * @since 1.104.0
@@ -7273,7 +7164,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7273
7164
  /**
7274
7165
  * New value for property `secondaryCalendarType`
7275
7166
  */
7276
- sSecondaryCalendarType: CalendarType | keyof typeof CalendarType
7167
+ sSecondaryCalendarType: CalendarType
7277
7168
  ): this;
7278
7169
  /**
7279
7170
  * @deprecated (since 1.34.0) - replaced by `date` property
@@ -7358,10 +7249,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7358
7249
  * If set, the calendar type is used for display. If not set, the calendar type of the global configuration
7359
7250
  * is used.
7360
7251
  */
7361
- primaryCalendarType?:
7362
- | (CalendarType | keyof typeof CalendarType)
7363
- | PropertyBindingInfo
7364
- | `{${string}}`;
7252
+ primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
7365
7253
 
7366
7254
  /**
7367
7255
  * @since 1.104.0
@@ -7369,10 +7257,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7369
7257
  * If set, the years are also displayed in this calendar type If not set, the years are only displayed in
7370
7258
  * the primary calendar type
7371
7259
  */
7372
- secondaryCalendarType?:
7373
- | (CalendarType | keyof typeof CalendarType)
7374
- | PropertyBindingInfo
7375
- | `{${string}}`;
7260
+ secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
7376
7261
 
7377
7262
  /**
7378
7263
  * @since 1.74
@@ -7400,23 +7285,17 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7400
7285
 
7401
7286
  export interface YearPicker$PageChangeEventParameters {}
7402
7287
 
7403
- /**
7404
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'YearPicker$PageChangeEventParameters'
7405
- * in 1.115.1 and any later releases.
7406
- */
7407
- export type $YearPickerPageChangeEventParameters = YearPicker$PageChangeEventParameters;
7408
-
7409
- export type YearPicker$PageChangeEvent = Event<YearPicker$PageChangeEventParameters>;
7288
+ export type YearPicker$PageChangeEvent = Event<
7289
+ YearPicker$PageChangeEventParameters,
7290
+ YearPicker
7291
+ >;
7410
7292
 
7411
7293
  export interface YearPicker$SelectEventParameters {}
7412
7294
 
7413
- /**
7414
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'YearPicker$SelectEventParameters'
7415
- * in 1.115.1 and any later releases.
7416
- */
7417
- export type $YearPickerSelectEventParameters = YearPicker$SelectEventParameters;
7418
-
7419
- export type YearPicker$SelectEvent = Event<YearPicker$SelectEventParameters>;
7295
+ export type YearPicker$SelectEvent = Event<
7296
+ YearPicker$SelectEventParameters,
7297
+ YearPicker
7298
+ >;
7420
7299
  }
7421
7300
 
7422
7301
  declare module "sap/ui/unified/CalendarAppointment" {
@@ -9490,33 +9369,24 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
9490
9369
 
9491
9370
  export interface CalendarMonthInterval$CancelEventParameters {}
9492
9371
 
9493
- /**
9494
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$CancelEventParameters'
9495
- * in 1.115.1 and any later releases.
9496
- */
9497
- export type $CalendarMonthIntervalCancelEventParameters = CalendarMonthInterval$CancelEventParameters;
9498
-
9499
- export type CalendarMonthInterval$CancelEvent = Event<CalendarMonthInterval$CancelEventParameters>;
9372
+ export type CalendarMonthInterval$CancelEvent = Event<
9373
+ CalendarMonthInterval$CancelEventParameters,
9374
+ CalendarMonthInterval
9375
+ >;
9500
9376
 
9501
9377
  export interface CalendarMonthInterval$SelectEventParameters {}
9502
9378
 
9503
- /**
9504
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$SelectEventParameters'
9505
- * in 1.115.1 and any later releases.
9506
- */
9507
- export type $CalendarMonthIntervalSelectEventParameters = CalendarMonthInterval$SelectEventParameters;
9508
-
9509
- export type CalendarMonthInterval$SelectEvent = Event<CalendarMonthInterval$SelectEventParameters>;
9379
+ export type CalendarMonthInterval$SelectEvent = Event<
9380
+ CalendarMonthInterval$SelectEventParameters,
9381
+ CalendarMonthInterval
9382
+ >;
9510
9383
 
9511
9384
  export interface CalendarMonthInterval$StartDateChangeEventParameters {}
9512
9385
 
9513
- /**
9514
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$StartDateChangeEventParameters'
9515
- * in 1.115.1 and any later releases.
9516
- */
9517
- export type $CalendarMonthIntervalStartDateChangeEventParameters = CalendarMonthInterval$StartDateChangeEventParameters;
9518
-
9519
- export type CalendarMonthInterval$StartDateChangeEvent = Event<CalendarMonthInterval$StartDateChangeEventParameters>;
9386
+ export type CalendarMonthInterval$StartDateChangeEvent = Event<
9387
+ CalendarMonthInterval$StartDateChangeEventParameters,
9388
+ CalendarMonthInterval
9389
+ >;
9520
9390
  }
9521
9391
 
9522
9392
  declare module "sap/ui/unified/CalendarRow" {
@@ -11025,7 +10895,7 @@ declare module "sap/ui/unified/CalendarRow" {
11025
10895
  /**
11026
10896
  * Fired if an appointment was selected
11027
10897
  */
11028
- select?: (oEvent: Event<CalendarRow$SelectEventParameters>) => void;
10898
+ select?: (oEvent: CalendarRow$SelectEvent) => void;
11029
10899
 
11030
10900
  /**
11031
10901
  * `startDate` was changed while navigating in `CalendarRow`
@@ -11036,16 +10906,14 @@ declare module "sap/ui/unified/CalendarRow" {
11036
10906
  * The `CalendarRow` should be left while navigating. (Arrow up or arrow down.) The caller should determine
11037
10907
  * the next control to be focused
11038
10908
  */
11039
- leaveRow?: (oEvent: Event<CalendarRow$LeaveRowEventParameters>) => void;
10909
+ leaveRow?: (oEvent: CalendarRow$LeaveRowEvent) => void;
11040
10910
 
11041
10911
  /**
11042
10912
  * @since 1.38.0
11043
10913
  *
11044
10914
  * Fired if an interval was selected
11045
10915
  */
11046
- intervalSelect?: (
11047
- oEvent: Event<CalendarRow$IntervalSelectEventParameters>
11048
- ) => void;
10916
+ intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
11049
10917
  }
11050
10918
 
11051
10919
  export interface CalendarRow$IntervalSelectEventParameters {
@@ -11065,13 +10933,10 @@ declare module "sap/ui/unified/CalendarRow" {
11065
10933
  subInterval?: boolean;
11066
10934
  }
11067
10935
 
11068
- /**
11069
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$IntervalSelectEventParameters'
11070
- * in 1.115.1 and any later releases.
11071
- */
11072
- export type $CalendarRowIntervalSelectEventParameters = CalendarRow$IntervalSelectEventParameters;
11073
-
11074
- export type CalendarRow$IntervalSelectEvent = Event<CalendarRow$IntervalSelectEventParameters>;
10936
+ export type CalendarRow$IntervalSelectEvent = Event<
10937
+ CalendarRow$IntervalSelectEventParameters,
10938
+ CalendarRow
10939
+ >;
11075
10940
 
11076
10941
  export interface CalendarRow$LeaveRowEventParameters {
11077
10942
  /**
@@ -11080,13 +10945,10 @@ declare module "sap/ui/unified/CalendarRow" {
11080
10945
  type?: string;
11081
10946
  }
11082
10947
 
11083
- /**
11084
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$LeaveRowEventParameters'
11085
- * in 1.115.1 and any later releases.
11086
- */
11087
- export type $CalendarRowLeaveRowEventParameters = CalendarRow$LeaveRowEventParameters;
11088
-
11089
- export type CalendarRow$LeaveRowEvent = Event<CalendarRow$LeaveRowEventParameters>;
10948
+ export type CalendarRow$LeaveRowEvent = Event<
10949
+ CalendarRow$LeaveRowEventParameters,
10950
+ CalendarRow
10951
+ >;
11090
10952
 
11091
10953
  export interface CalendarRow$SelectEventParameters {
11092
10954
  /**
@@ -11111,23 +10973,17 @@ declare module "sap/ui/unified/CalendarRow" {
11111
10973
  domRefId?: string;
11112
10974
  }
11113
10975
 
11114
- /**
11115
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$SelectEventParameters'
11116
- * in 1.115.1 and any later releases.
11117
- */
11118
- export type $CalendarRowSelectEventParameters = CalendarRow$SelectEventParameters;
11119
-
11120
- export type CalendarRow$SelectEvent = Event<CalendarRow$SelectEventParameters>;
10976
+ export type CalendarRow$SelectEvent = Event<
10977
+ CalendarRow$SelectEventParameters,
10978
+ CalendarRow
10979
+ >;
11121
10980
 
11122
10981
  export interface CalendarRow$StartDateChangeEventParameters {}
11123
10982
 
11124
- /**
11125
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$StartDateChangeEventParameters'
11126
- * in 1.115.1 and any later releases.
11127
- */
11128
- export type $CalendarRowStartDateChangeEventParameters = CalendarRow$StartDateChangeEventParameters;
11129
-
11130
- export type CalendarRow$StartDateChangeEvent = Event<CalendarRow$StartDateChangeEventParameters>;
10983
+ export type CalendarRow$StartDateChangeEvent = Event<
10984
+ CalendarRow$StartDateChangeEventParameters,
10985
+ CalendarRow
10986
+ >;
11131
10987
  }
11132
10988
 
11133
10989
  declare module "sap/ui/unified/CalendarTimeInterval" {
@@ -12058,33 +11914,24 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
12058
11914
 
12059
11915
  export interface CalendarTimeInterval$CancelEventParameters {}
12060
11916
 
12061
- /**
12062
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$CancelEventParameters'
12063
- * in 1.115.1 and any later releases.
12064
- */
12065
- export type $CalendarTimeIntervalCancelEventParameters = CalendarTimeInterval$CancelEventParameters;
12066
-
12067
- export type CalendarTimeInterval$CancelEvent = Event<CalendarTimeInterval$CancelEventParameters>;
11917
+ export type CalendarTimeInterval$CancelEvent = Event<
11918
+ CalendarTimeInterval$CancelEventParameters,
11919
+ CalendarTimeInterval
11920
+ >;
12068
11921
 
12069
11922
  export interface CalendarTimeInterval$SelectEventParameters {}
12070
11923
 
12071
- /**
12072
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$SelectEventParameters'
12073
- * in 1.115.1 and any later releases.
12074
- */
12075
- export type $CalendarTimeIntervalSelectEventParameters = CalendarTimeInterval$SelectEventParameters;
12076
-
12077
- export type CalendarTimeInterval$SelectEvent = Event<CalendarTimeInterval$SelectEventParameters>;
11924
+ export type CalendarTimeInterval$SelectEvent = Event<
11925
+ CalendarTimeInterval$SelectEventParameters,
11926
+ CalendarTimeInterval
11927
+ >;
12078
11928
 
12079
11929
  export interface CalendarTimeInterval$StartDateChangeEventParameters {}
12080
11930
 
12081
- /**
12082
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$StartDateChangeEventParameters'
12083
- * in 1.115.1 and any later releases.
12084
- */
12085
- export type $CalendarTimeIntervalStartDateChangeEventParameters = CalendarTimeInterval$StartDateChangeEventParameters;
12086
-
12087
- export type CalendarTimeInterval$StartDateChangeEvent = Event<CalendarTimeInterval$StartDateChangeEventParameters>;
11931
+ export type CalendarTimeInterval$StartDateChangeEvent = Event<
11932
+ CalendarTimeInterval$StartDateChangeEventParameters,
11933
+ CalendarTimeInterval
11934
+ >;
12088
11935
  }
12089
11936
 
12090
11937
  declare module "sap/ui/unified/ColorPicker" {
@@ -12504,7 +12351,7 @@ declare module "sap/ui/unified/ColorPicker" {
12504
12351
  *
12505
12352
  * **Note:** When the user action is mouse dragging, the `change` event fires on the mouseup event.
12506
12353
  */
12507
- change?: (oEvent: Event<ColorPicker$ChangeEventParameters>) => void;
12354
+ change?: (oEvent: ColorPicker$ChangeEvent) => void;
12508
12355
 
12509
12356
  /**
12510
12357
  * @since 1.48.0
@@ -12513,7 +12360,7 @@ declare module "sap/ui/unified/ColorPicker" {
12513
12360
  *
12514
12361
  * **Note:** When the user action is mouse move, the `liveChange` event is fired during the mousedown event.
12515
12362
  */
12516
- liveChange?: (oEvent: Event<ColorPicker$LiveChangeEventParameters>) => void;
12363
+ liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
12517
12364
  }
12518
12365
 
12519
12366
  export interface ColorPicker$ChangeEventParameters {
@@ -12563,13 +12410,10 @@ declare module "sap/ui/unified/ColorPicker" {
12563
12410
  alpha?: string;
12564
12411
  }
12565
12412
 
12566
- /**
12567
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPicker$ChangeEventParameters'
12568
- * in 1.115.1 and any later releases.
12569
- */
12570
- export type $ColorPickerChangeEventParameters = ColorPicker$ChangeEventParameters;
12571
-
12572
- export type ColorPicker$ChangeEvent = Event<ColorPicker$ChangeEventParameters>;
12413
+ export type ColorPicker$ChangeEvent = Event<
12414
+ ColorPicker$ChangeEventParameters,
12415
+ ColorPicker
12416
+ >;
12573
12417
 
12574
12418
  export interface ColorPicker$LiveChangeEventParameters {
12575
12419
  /**
@@ -12618,13 +12462,10 @@ declare module "sap/ui/unified/ColorPicker" {
12618
12462
  alpha?: string;
12619
12463
  }
12620
12464
 
12621
- /**
12622
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPicker$LiveChangeEventParameters'
12623
- * in 1.115.1 and any later releases.
12624
- */
12625
- export type $ColorPickerLiveChangeEventParameters = ColorPicker$LiveChangeEventParameters;
12626
-
12627
- export type ColorPicker$LiveChangeEvent = Event<ColorPicker$LiveChangeEventParameters>;
12465
+ export type ColorPicker$LiveChangeEvent = Event<
12466
+ ColorPicker$LiveChangeEventParameters,
12467
+ ColorPicker
12468
+ >;
12628
12469
  }
12629
12470
 
12630
12471
  declare module "sap/ui/unified/ColorPickerDisplayMode" {
@@ -13054,16 +12895,14 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13054
12895
  *
13055
12896
  * Fired when the submit button of the popover is clicked.
13056
12897
  */
13057
- change?: (oEvent: Event<ColorPickerPopover$ChangeEventParameters>) => void;
12898
+ change?: (oEvent: ColorPickerPopover$ChangeEvent) => void;
13058
12899
 
13059
12900
  /**
13060
12901
  * @since 1.85
13061
12902
  *
13062
12903
  * Fired when the value is changed by user interaction in the internal ColorPicker
13063
12904
  */
13064
- liveChange?: (
13065
- oEvent: Event<ColorPickerPopover$LiveChangeEventParameters>
13066
- ) => void;
12905
+ liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
13067
12906
  }
13068
12907
 
13069
12908
  export interface ColorPickerPopover$ChangeEventParameters {
@@ -13113,13 +12952,10 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13113
12952
  alpha?: string;
13114
12953
  }
13115
12954
 
13116
- /**
13117
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPickerPopover$ChangeEventParameters'
13118
- * in 1.115.1 and any later releases.
13119
- */
13120
- export type $ColorPickerPopoverChangeEventParameters = ColorPickerPopover$ChangeEventParameters;
13121
-
13122
- export type ColorPickerPopover$ChangeEvent = Event<ColorPickerPopover$ChangeEventParameters>;
12955
+ export type ColorPickerPopover$ChangeEvent = Event<
12956
+ ColorPickerPopover$ChangeEventParameters,
12957
+ ColorPickerPopover
12958
+ >;
13123
12959
 
13124
12960
  export interface ColorPickerPopover$LiveChangeEventParameters {
13125
12961
  /**
@@ -13168,13 +13004,10 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13168
13004
  alpha?: string;
13169
13005
  }
13170
13006
 
13171
- /**
13172
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPickerPopover$LiveChangeEventParameters'
13173
- * in 1.115.1 and any later releases.
13174
- */
13175
- export type $ColorPickerPopoverLiveChangeEventParameters = ColorPickerPopover$LiveChangeEventParameters;
13176
-
13177
- export type ColorPickerPopover$LiveChangeEvent = Event<ColorPickerPopover$LiveChangeEventParameters>;
13007
+ export type ColorPickerPopover$LiveChangeEvent = Event<
13008
+ ColorPickerPopover$LiveChangeEventParameters,
13009
+ ColorPickerPopover
13010
+ >;
13178
13011
  }
13179
13012
 
13180
13013
  declare module "sap/ui/unified/ContentSwitcher" {
@@ -16662,7 +16495,7 @@ declare module "sap/ui/unified/FileUploader" {
16662
16495
  * **Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in
16663
16496
  * Chrome browser when the Cancel button of the uploads window is pressed.
16664
16497
  */
16665
- change?: (oEvent: Event<FileUploader$ChangeEventParameters>) => void;
16498
+ change?: (oEvent: FileUploader$ChangeEvent) => void;
16666
16499
 
16667
16500
  /**
16668
16501
  * Event is fired as soon as the upload request is completed (either successful or unsuccessful).
@@ -16671,29 +16504,23 @@ declare module "sap/ui/unified/FileUploader" {
16671
16504
  * progress of the upload can be monitored by listening to the `uploadProgress` event. However, this covers
16672
16505
  * only the client side of the upload process and does not give any success status from the server.
16673
16506
  */
16674
- uploadComplete?: (
16675
- oEvent: Event<FileUploader$UploadCompleteEventParameters>
16676
- ) => void;
16507
+ uploadComplete?: (oEvent: FileUploader$UploadCompleteEvent) => void;
16677
16508
 
16678
16509
  /**
16679
16510
  * Event is fired when the type of a file does not match the `mimeType` or `fileType` property.
16680
16511
  */
16681
- typeMissmatch?: (
16682
- oEvent: Event<FileUploader$TypeMissmatchEventParameters>
16683
- ) => void;
16512
+ typeMissmatch?: (oEvent: FileUploader$TypeMissmatchEvent) => void;
16684
16513
 
16685
16514
  /**
16686
16515
  * Event is fired when the size of a file is above the `maximumFileSize` property. This event is not supported
16687
16516
  * by Internet Explorer 9 (same restriction as for the property `maximumFileSize`).
16688
16517
  */
16689
- fileSizeExceed?: (
16690
- oEvent: Event<FileUploader$FileSizeExceedEventParameters>
16691
- ) => void;
16518
+ fileSizeExceed?: (oEvent: FileUploader$FileSizeExceedEvent) => void;
16692
16519
 
16693
16520
  /**
16694
16521
  * Event is fired when the size of the file is 0
16695
16522
  */
16696
- fileEmpty?: (oEvent: Event<FileUploader$FileEmptyEventParameters>) => void;
16523
+ fileEmpty?: (oEvent: FileUploader$FileEmptyEvent) => void;
16697
16524
 
16698
16525
  /**
16699
16526
  * Event is fired when the file is allowed for upload on client side.
@@ -16711,9 +16538,7 @@ declare module "sap/ui/unified/FileUploader" {
16711
16538
  * This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
16712
16539
  * Internet Explorer 9.
16713
16540
  */
16714
- uploadProgress?: (
16715
- oEvent: Event<FileUploader$UploadProgressEventParameters>
16716
- ) => void;
16541
+ uploadProgress?: (oEvent: FileUploader$UploadProgressEvent) => void;
16717
16542
 
16718
16543
  /**
16719
16544
  * @since 1.24.0
@@ -16723,9 +16548,7 @@ declare module "sap/ui/unified/FileUploader" {
16723
16548
  * This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
16724
16549
  * Internet Explorer 9.
16725
16550
  */
16726
- uploadAborted?: (
16727
- oEvent: Event<FileUploader$UploadAbortedEventParameters>
16728
- ) => void;
16551
+ uploadAborted?: (oEvent: FileUploader$UploadAbortedEvent) => void;
16729
16552
 
16730
16553
  /**
16731
16554
  * @since 1.24.0
@@ -16734,7 +16557,7 @@ declare module "sap/ui/unified/FileUploader" {
16734
16557
  * property.
16735
16558
  */
16736
16559
  filenameLengthExceed?: (
16737
- oEvent: Event<FileUploader$FilenameLengthExceedEventParameters>
16560
+ oEvent: FileUploader$FilenameLengthExceedEvent
16738
16561
  ) => void;
16739
16562
 
16740
16563
  /**
@@ -16742,9 +16565,7 @@ declare module "sap/ui/unified/FileUploader" {
16742
16565
  *
16743
16566
  * Event is fired before an upload is started.
16744
16567
  */
16745
- uploadStart?: (
16746
- oEvent: Event<FileUploader$UploadStartEventParameters>
16747
- ) => void;
16568
+ uploadStart?: (oEvent: FileUploader$UploadStartEvent) => void;
16748
16569
 
16749
16570
  /**
16750
16571
  * @since 1.102.0
@@ -16763,23 +16584,17 @@ declare module "sap/ui/unified/FileUploader" {
16763
16584
 
16764
16585
  export interface FileUploader$AfterDialogCloseEventParameters {}
16765
16586
 
16766
- /**
16767
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$AfterDialogCloseEventParameters'
16768
- * in 1.115.1 and any later releases.
16769
- */
16770
- export type $FileUploaderAfterDialogCloseEventParameters = FileUploader$AfterDialogCloseEventParameters;
16771
-
16772
- export type FileUploader$AfterDialogCloseEvent = Event<FileUploader$AfterDialogCloseEventParameters>;
16587
+ export type FileUploader$AfterDialogCloseEvent = Event<
16588
+ FileUploader$AfterDialogCloseEventParameters,
16589
+ FileUploader
16590
+ >;
16773
16591
 
16774
16592
  export interface FileUploader$BeforeDialogOpenEventParameters {}
16775
16593
 
16776
- /**
16777
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$BeforeDialogOpenEventParameters'
16778
- * in 1.115.1 and any later releases.
16779
- */
16780
- export type $FileUploaderBeforeDialogOpenEventParameters = FileUploader$BeforeDialogOpenEventParameters;
16781
-
16782
- export type FileUploader$BeforeDialogOpenEvent = Event<FileUploader$BeforeDialogOpenEventParameters>;
16594
+ export type FileUploader$BeforeDialogOpenEvent = Event<
16595
+ FileUploader$BeforeDialogOpenEventParameters,
16596
+ FileUploader
16597
+ >;
16783
16598
 
16784
16599
  export interface FileUploader$ChangeEventParameters {
16785
16600
  /**
@@ -16793,23 +16608,17 @@ declare module "sap/ui/unified/FileUploader" {
16793
16608
  files?: object[];
16794
16609
  }
16795
16610
 
16796
- /**
16797
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$ChangeEventParameters'
16798
- * in 1.115.1 and any later releases.
16799
- */
16800
- export type $FileUploaderChangeEventParameters = FileUploader$ChangeEventParameters;
16801
-
16802
- export type FileUploader$ChangeEvent = Event<FileUploader$ChangeEventParameters>;
16611
+ export type FileUploader$ChangeEvent = Event<
16612
+ FileUploader$ChangeEventParameters,
16613
+ FileUploader
16614
+ >;
16803
16615
 
16804
16616
  export interface FileUploader$FileAllowedEventParameters {}
16805
16617
 
16806
- /**
16807
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileAllowedEventParameters'
16808
- * in 1.115.1 and any later releases.
16809
- */
16810
- export type $FileUploaderFileAllowedEventParameters = FileUploader$FileAllowedEventParameters;
16811
-
16812
- export type FileUploader$FileAllowedEvent = Event<FileUploader$FileAllowedEventParameters>;
16618
+ export type FileUploader$FileAllowedEvent = Event<
16619
+ FileUploader$FileAllowedEventParameters,
16620
+ FileUploader
16621
+ >;
16813
16622
 
16814
16623
  export interface FileUploader$FileEmptyEventParameters {
16815
16624
  /**
@@ -16818,13 +16627,10 @@ declare module "sap/ui/unified/FileUploader" {
16818
16627
  fileName?: string;
16819
16628
  }
16820
16629
 
16821
- /**
16822
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileEmptyEventParameters'
16823
- * in 1.115.1 and any later releases.
16824
- */
16825
- export type $FileUploaderFileEmptyEventParameters = FileUploader$FileEmptyEventParameters;
16826
-
16827
- export type FileUploader$FileEmptyEvent = Event<FileUploader$FileEmptyEventParameters>;
16630
+ export type FileUploader$FileEmptyEvent = Event<
16631
+ FileUploader$FileEmptyEventParameters,
16632
+ FileUploader
16633
+ >;
16828
16634
 
16829
16635
  export interface FileUploader$FilenameLengthExceedEventParameters {
16830
16636
  /**
@@ -16833,13 +16639,10 @@ declare module "sap/ui/unified/FileUploader" {
16833
16639
  fileName?: string;
16834
16640
  }
16835
16641
 
16836
- /**
16837
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FilenameLengthExceedEventParameters'
16838
- * in 1.115.1 and any later releases.
16839
- */
16840
- export type $FileUploaderFilenameLengthExceedEventParameters = FileUploader$FilenameLengthExceedEventParameters;
16841
-
16842
- export type FileUploader$FilenameLengthExceedEvent = Event<FileUploader$FilenameLengthExceedEventParameters>;
16642
+ export type FileUploader$FilenameLengthExceedEvent = Event<
16643
+ FileUploader$FilenameLengthExceedEventParameters,
16644
+ FileUploader
16645
+ >;
16843
16646
 
16844
16647
  export interface FileUploader$FileSizeExceedEventParameters {
16845
16648
  /**
@@ -16853,13 +16656,10 @@ declare module "sap/ui/unified/FileUploader" {
16853
16656
  fileSize?: string;
16854
16657
  }
16855
16658
 
16856
- /**
16857
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileSizeExceedEventParameters'
16858
- * in 1.115.1 and any later releases.
16859
- */
16860
- export type $FileUploaderFileSizeExceedEventParameters = FileUploader$FileSizeExceedEventParameters;
16861
-
16862
- export type FileUploader$FileSizeExceedEvent = Event<FileUploader$FileSizeExceedEventParameters>;
16659
+ export type FileUploader$FileSizeExceedEvent = Event<
16660
+ FileUploader$FileSizeExceedEventParameters,
16661
+ FileUploader
16662
+ >;
16863
16663
 
16864
16664
  export interface FileUploader$TypeMissmatchEventParameters {
16865
16665
  /**
@@ -16878,13 +16678,10 @@ declare module "sap/ui/unified/FileUploader" {
16878
16678
  mimeType?: string;
16879
16679
  }
16880
16680
 
16881
- /**
16882
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$TypeMissmatchEventParameters'
16883
- * in 1.115.1 and any later releases.
16884
- */
16885
- export type $FileUploaderTypeMissmatchEventParameters = FileUploader$TypeMissmatchEventParameters;
16886
-
16887
- export type FileUploader$TypeMissmatchEvent = Event<FileUploader$TypeMissmatchEventParameters>;
16681
+ export type FileUploader$TypeMissmatchEvent = Event<
16682
+ FileUploader$TypeMissmatchEventParameters,
16683
+ FileUploader
16684
+ >;
16888
16685
 
16889
16686
  export interface FileUploader$UploadAbortedEventParameters {
16890
16687
  /**
@@ -16901,13 +16698,10 @@ declare module "sap/ui/unified/FileUploader" {
16901
16698
  requestHeaders?: object[];
16902
16699
  }
16903
16700
 
16904
- /**
16905
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadAbortedEventParameters'
16906
- * in 1.115.1 and any later releases.
16907
- */
16908
- export type $FileUploaderUploadAbortedEventParameters = FileUploader$UploadAbortedEventParameters;
16909
-
16910
- export type FileUploader$UploadAbortedEvent = Event<FileUploader$UploadAbortedEventParameters>;
16701
+ export type FileUploader$UploadAbortedEvent = Event<
16702
+ FileUploader$UploadAbortedEventParameters,
16703
+ FileUploader
16704
+ >;
16911
16705
 
16912
16706
  export interface FileUploader$UploadCompleteEventParameters {
16913
16707
  /**
@@ -16969,13 +16763,10 @@ declare module "sap/ui/unified/FileUploader" {
16969
16763
  requestHeaders?: object[];
16970
16764
  }
16971
16765
 
16972
- /**
16973
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadCompleteEventParameters'
16974
- * in 1.115.1 and any later releases.
16975
- */
16976
- export type $FileUploaderUploadCompleteEventParameters = FileUploader$UploadCompleteEventParameters;
16977
-
16978
- export type FileUploader$UploadCompleteEvent = Event<FileUploader$UploadCompleteEventParameters>;
16766
+ export type FileUploader$UploadCompleteEvent = Event<
16767
+ FileUploader$UploadCompleteEventParameters,
16768
+ FileUploader
16769
+ >;
16979
16770
 
16980
16771
  export interface FileUploader$UploadProgressEventParameters {
16981
16772
  /**
@@ -17007,13 +16798,10 @@ declare module "sap/ui/unified/FileUploader" {
17007
16798
  requestHeaders?: object[];
17008
16799
  }
17009
16800
 
17010
- /**
17011
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadProgressEventParameters'
17012
- * in 1.115.1 and any later releases.
17013
- */
17014
- export type $FileUploaderUploadProgressEventParameters = FileUploader$UploadProgressEventParameters;
17015
-
17016
- export type FileUploader$UploadProgressEvent = Event<FileUploader$UploadProgressEventParameters>;
16801
+ export type FileUploader$UploadProgressEvent = Event<
16802
+ FileUploader$UploadProgressEventParameters,
16803
+ FileUploader
16804
+ >;
17017
16805
 
17018
16806
  export interface FileUploader$UploadStartEventParameters {
17019
16807
  /**
@@ -17030,13 +16818,10 @@ declare module "sap/ui/unified/FileUploader" {
17030
16818
  requestHeaders?: object[];
17031
16819
  }
17032
16820
 
17033
- /**
17034
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadStartEventParameters'
17035
- * in 1.115.1 and any later releases.
17036
- */
17037
- export type $FileUploaderUploadStartEventParameters = FileUploader$UploadStartEventParameters;
17038
-
17039
- export type FileUploader$UploadStartEvent = Event<FileUploader$UploadStartEventParameters>;
16821
+ export type FileUploader$UploadStartEvent = Event<
16822
+ FileUploader$UploadStartEventParameters,
16823
+ FileUploader
16824
+ >;
17040
16825
  }
17041
16826
 
17042
16827
  declare module "sap/ui/unified/FileUploaderHttpRequestMethod" {
@@ -17610,6 +17395,12 @@ declare module "sap/ui/unified/Menu" {
17610
17395
  */
17611
17396
  iIndex: int
17612
17397
  ): this;
17398
+ /**
17399
+ * Returns whether the `Menu` is currently open.
17400
+ *
17401
+ * @returns true if menu is open
17402
+ */
17403
+ isOpen(): boolean;
17613
17404
  /**
17614
17405
  * Opens the menu at the specified position.
17615
17406
  *
@@ -17841,7 +17632,7 @@ declare module "sap/ui/unified/Menu" {
17841
17632
  * one of its direct or indirect submenus. **Note:** There is also a select event available for each single
17842
17633
  * menu item. This event and the event of the menu items are redundant.
17843
17634
  */
17844
- itemSelect?: (oEvent: Event<Menu$ItemSelectEventParameters>) => void;
17635
+ itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
17845
17636
  }
17846
17637
 
17847
17638
  export interface Menu$ItemSelectEventParameters {
@@ -17851,13 +17642,10 @@ declare module "sap/ui/unified/Menu" {
17851
17642
  item?: MenuItemBase;
17852
17643
  }
17853
17644
 
17854
- /**
17855
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Menu$ItemSelectEventParameters'
17856
- * in 1.115.1 and any later releases.
17857
- */
17858
- export type $MenuItemSelectEventParameters = Menu$ItemSelectEventParameters;
17859
-
17860
- export type Menu$ItemSelectEvent = Event<Menu$ItemSelectEventParameters>;
17645
+ export type Menu$ItemSelectEvent = Event<
17646
+ Menu$ItemSelectEventParameters,
17647
+ Menu
17648
+ >;
17861
17649
  }
17862
17650
 
17863
17651
  declare module "sap/ui/unified/MenuItem" {
@@ -18406,7 +18194,7 @@ declare module "sap/ui/unified/MenuItemBase" {
18406
18194
  * a submenu. In general, applications must not handle event in this case because the user selection opens
18407
18195
  * the sub menu.
18408
18196
  */
18409
- select?: (oEvent: Event<MenuItemBase$SelectEventParameters>) => void;
18197
+ select?: (oEvent: MenuItemBase$SelectEvent) => void;
18410
18198
  }
18411
18199
 
18412
18200
  export interface MenuItemBase$SelectEventParameters {
@@ -18416,13 +18204,10 @@ declare module "sap/ui/unified/MenuItemBase" {
18416
18204
  item?: MenuItemBase;
18417
18205
  }
18418
18206
 
18419
- /**
18420
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuItemBase$SelectEventParameters'
18421
- * in 1.115.1 and any later releases.
18422
- */
18423
- export type $MenuItemBaseSelectEventParameters = MenuItemBase$SelectEventParameters;
18424
-
18425
- export type MenuItemBase$SelectEvent = Event<MenuItemBase$SelectEventParameters>;
18207
+ export type MenuItemBase$SelectEvent = Event<
18208
+ MenuItemBase$SelectEventParameters,
18209
+ MenuItemBase
18210
+ >;
18426
18211
  }
18427
18212
 
18428
18213
  declare module "sap/ui/unified/MenuTextFieldItem" {
@@ -19772,13 +19557,10 @@ declare module "sap/ui/unified/ShellHeadItem" {
19772
19557
 
19773
19558
  export interface ShellHeadItem$PressEventParameters {}
19774
19559
 
19775
- /**
19776
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellHeadItem$PressEventParameters'
19777
- * in 1.115.1 and any later releases.
19778
- */
19779
- export type $ShellHeadItemPressEventParameters = ShellHeadItem$PressEventParameters;
19780
-
19781
- export type ShellHeadItem$PressEvent = Event<ShellHeadItem$PressEventParameters>;
19560
+ export type ShellHeadItem$PressEvent = Event<
19561
+ ShellHeadItem$PressEventParameters,
19562
+ ShellHeadItem
19563
+ >;
19782
19564
  }
19783
19565
 
19784
19566
  declare module "sap/ui/unified/ShellHeadUserItem" {
@@ -20085,13 +19867,10 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
20085
19867
 
20086
19868
  export interface ShellHeadUserItem$PressEventParameters {}
20087
19869
 
20088
- /**
20089
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellHeadUserItem$PressEventParameters'
20090
- * in 1.115.1 and any later releases.
20091
- */
20092
- export type $ShellHeadUserItemPressEventParameters = ShellHeadUserItem$PressEventParameters;
20093
-
20094
- export type ShellHeadUserItem$PressEvent = Event<ShellHeadUserItem$PressEventParameters>;
19870
+ export type ShellHeadUserItem$PressEvent = Event<
19871
+ ShellHeadUserItem$PressEventParameters,
19872
+ ShellHeadUserItem
19873
+ >;
20095
19874
  }
20096
19875
 
20097
19876
  declare module "sap/ui/unified/ShellLayout" {
@@ -20796,13 +20575,10 @@ declare module "sap/ui/unified/ShellOverlay" {
20796
20575
 
20797
20576
  export interface ShellOverlay$ClosedEventParameters {}
20798
20577
 
20799
- /**
20800
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellOverlay$ClosedEventParameters'
20801
- * in 1.115.1 and any later releases.
20802
- */
20803
- export type $ShellOverlayClosedEventParameters = ShellOverlay$ClosedEventParameters;
20804
-
20805
- export type ShellOverlay$ClosedEvent = Event<ShellOverlay$ClosedEventParameters>;
20578
+ export type ShellOverlay$ClosedEvent = Event<
20579
+ ShellOverlay$ClosedEventParameters,
20580
+ ShellOverlay
20581
+ >;
20806
20582
  }
20807
20583
 
20808
20584
  declare module "sap/ui/unified/SplitContainer" {