@openui5/types 1.120.11 → 1.120.13

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.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1519,7 +1519,9 @@ declare module "sap/ui/unified/Calendar" {
1519
1519
  sWidth?: CSSSize
1520
1520
  ): this;
1521
1521
  }
1522
-
1522
+ /**
1523
+ * Describes the settings that can be provided to the Calendar constructor.
1524
+ */
1523
1525
  export interface $CalendarSettings extends $ControlSettings {
1524
1526
  /**
1525
1527
  * If set, interval selection is allowed
@@ -1746,27 +1748,48 @@ declare module "sap/ui/unified/Calendar" {
1746
1748
  weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
1747
1749
  }
1748
1750
 
1751
+ /**
1752
+ * Parameters of the Calendar#cancel event.
1753
+ */
1749
1754
  export interface Calendar$CancelEventParameters {}
1750
1755
 
1756
+ /**
1757
+ * Event object of the Calendar#cancel event.
1758
+ */
1751
1759
  export type Calendar$CancelEvent = Event<
1752
1760
  Calendar$CancelEventParameters,
1753
1761
  Calendar
1754
1762
  >;
1755
1763
 
1764
+ /**
1765
+ * Parameters of the Calendar#select event.
1766
+ */
1756
1767
  export interface Calendar$SelectEventParameters {}
1757
1768
 
1769
+ /**
1770
+ * Event object of the Calendar#select event.
1771
+ */
1758
1772
  export type Calendar$SelectEvent = Event<
1759
1773
  Calendar$SelectEventParameters,
1760
1774
  Calendar
1761
1775
  >;
1762
1776
 
1777
+ /**
1778
+ * Parameters of the Calendar#startDateChange event.
1779
+ */
1763
1780
  export interface Calendar$StartDateChangeEventParameters {}
1764
1781
 
1782
+ /**
1783
+ * Event object of the Calendar#startDateChange event.
1784
+ */
1765
1785
  export type Calendar$StartDateChangeEvent = Event<
1766
1786
  Calendar$StartDateChangeEventParameters,
1767
1787
  Calendar
1768
1788
  >;
1769
1789
 
1790
+ /**
1791
+ * Parameters of the Calendar#weekNumberSelect event.
1792
+ */
1770
1793
  export interface Calendar$WeekNumberSelectEventParameters {
1771
1794
  /**
1772
1795
  * The selected week number.
@@ -1779,6 +1802,9 @@ declare module "sap/ui/unified/Calendar" {
1779
1802
  weekDays?: DateRange;
1780
1803
  }
1781
1804
 
1805
+ /**
1806
+ * Event object of the Calendar#weekNumberSelect event.
1807
+ */
1782
1808
  export type Calendar$WeekNumberSelectEvent = Event<
1783
1809
  Calendar$WeekNumberSelectEventParameters,
1784
1810
  Calendar
@@ -2016,7 +2042,9 @@ declare module "sap/ui/unified/calendar/DatesRow" {
2016
2042
  oStartDate: Date | UI5Date
2017
2043
  ): this;
2018
2044
  }
2019
-
2045
+ /**
2046
+ * Describes the settings that can be provided to the DatesRow constructor.
2047
+ */
2020
2048
  export interface $DatesRowSettings extends $MonthSettings {
2021
2049
  /**
2022
2050
  * Start date of the row If in rendering phase the date property is not in the range startDate + days, it
@@ -3033,7 +3061,9 @@ declare module "sap/ui/unified/calendar/Header" {
3033
3061
  bVisibleCurrentDateButton?: boolean
3034
3062
  ): this;
3035
3063
  }
3036
-
3064
+ /**
3065
+ * Describes the settings that can be provided to the Header constructor.
3066
+ */
3037
3067
  export interface $HeaderSettings extends $ControlSettings {
3038
3068
  /**
3039
3069
  * Text of the first button (normally day)
@@ -3163,43 +3193,79 @@ declare module "sap/ui/unified/calendar/Header" {
3163
3193
  pressButton2?: (oEvent: Event) => void;
3164
3194
  }
3165
3195
 
3196
+ /**
3197
+ * Parameters of the Header#pressButton0 event.
3198
+ */
3166
3199
  export interface Header$PressButton0EventParameters {}
3167
3200
 
3201
+ /**
3202
+ * Event object of the Header#pressButton0 event.
3203
+ */
3168
3204
  export type Header$PressButton0Event = Event<
3169
3205
  Header$PressButton0EventParameters,
3170
3206
  Header
3171
3207
  >;
3172
3208
 
3209
+ /**
3210
+ * Parameters of the Header#pressButton1 event.
3211
+ */
3173
3212
  export interface Header$PressButton1EventParameters {}
3174
3213
 
3214
+ /**
3215
+ * Event object of the Header#pressButton1 event.
3216
+ */
3175
3217
  export type Header$PressButton1Event = Event<
3176
3218
  Header$PressButton1EventParameters,
3177
3219
  Header
3178
3220
  >;
3179
3221
 
3222
+ /**
3223
+ * Parameters of the Header#pressButton2 event.
3224
+ */
3180
3225
  export interface Header$PressButton2EventParameters {}
3181
3226
 
3227
+ /**
3228
+ * Event object of the Header#pressButton2 event.
3229
+ */
3182
3230
  export type Header$PressButton2Event = Event<
3183
3231
  Header$PressButton2EventParameters,
3184
3232
  Header
3185
3233
  >;
3186
3234
 
3235
+ /**
3236
+ * Parameters of the Header#pressCurrentDate event.
3237
+ */
3187
3238
  export interface Header$PressCurrentDateEventParameters {}
3188
3239
 
3240
+ /**
3241
+ * Event object of the Header#pressCurrentDate event.
3242
+ */
3189
3243
  export type Header$PressCurrentDateEvent = Event<
3190
3244
  Header$PressCurrentDateEventParameters,
3191
3245
  Header
3192
3246
  >;
3193
3247
 
3248
+ /**
3249
+ * Parameters of the Header#pressNext event.
3250
+ */
3194
3251
  export interface Header$PressNextEventParameters {}
3195
3252
 
3253
+ /**
3254
+ * Event object of the Header#pressNext event.
3255
+ */
3196
3256
  export type Header$PressNextEvent = Event<
3197
3257
  Header$PressNextEventParameters,
3198
3258
  Header
3199
3259
  >;
3200
3260
 
3261
+ /**
3262
+ * Parameters of the Header#pressPrevious event.
3263
+ */
3201
3264
  export interface Header$PressPreviousEventParameters {}
3202
3265
 
3266
+ /**
3267
+ * Event object of the Header#pressPrevious event.
3268
+ */
3203
3269
  export type Header$PressPreviousEvent = Event<
3204
3270
  Header$PressPreviousEventParameters,
3205
3271
  Header
@@ -4204,7 +4270,9 @@ declare module "sap/ui/unified/calendar/Month" {
4204
4270
  sWidth?: CSSSize
4205
4271
  ): this;
4206
4272
  }
4207
-
4273
+ /**
4274
+ * Describes the settings that can be provided to the Month constructor.
4275
+ */
4208
4276
  export interface $MonthSettings extends $ControlSettings {
4209
4277
  /**
4210
4278
  * A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
@@ -4358,6 +4426,9 @@ declare module "sap/ui/unified/calendar/Month" {
4358
4426
  weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
4359
4427
  }
4360
4428
 
4429
+ /**
4430
+ * Parameters of the Month#focus event.
4431
+ */
4361
4432
  export interface Month$FocusEventParameters {
4362
4433
  /**
4363
4434
  * focused date
@@ -4375,12 +4446,24 @@ declare module "sap/ui/unified/calendar/Month" {
4375
4446
  restoreOldDate?: boolean;
4376
4447
  }
4377
4448
 
4449
+ /**
4450
+ * Event object of the Month#focus event.
4451
+ */
4378
4452
  export type Month$FocusEvent = Event<Month$FocusEventParameters, Month>;
4379
4453
 
4454
+ /**
4455
+ * Parameters of the Month#select event.
4456
+ */
4380
4457
  export interface Month$SelectEventParameters {}
4381
4458
 
4459
+ /**
4460
+ * Event object of the Month#select event.
4461
+ */
4382
4462
  export type Month$SelectEvent = Event<Month$SelectEventParameters, Month>;
4383
4463
 
4464
+ /**
4465
+ * Parameters of the Month#weekNumberSelect event.
4466
+ */
4384
4467
  export interface Month$WeekNumberSelectEventParameters {
4385
4468
  /**
4386
4469
  * The selected week number.
@@ -4395,6 +4478,9 @@ declare module "sap/ui/unified/calendar/Month" {
4395
4478
  weekDays?: DateRange;
4396
4479
  }
4397
4480
 
4481
+ /**
4482
+ * Event object of the Month#weekNumberSelect event.
4483
+ */
4398
4484
  export type Month$WeekNumberSelectEvent = Event<
4399
4485
  Month$WeekNumberSelectEventParameters,
4400
4486
  Month
@@ -4991,7 +5077,9 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4991
5077
  sSecondaryCalendarType: CalendarType
4992
5078
  ): this;
4993
5079
  }
4994
-
5080
+ /**
5081
+ * Describes the settings that can be provided to the MonthPicker constructor.
5082
+ */
4995
5083
  export interface $MonthPickerSettings extends $ControlSettings {
4996
5084
  /**
4997
5085
  * The month is initial focused and selected The value must be between 0 and 11
@@ -5068,15 +5156,27 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
5068
5156
  pageChange?: (oEvent: Event) => void;
5069
5157
  }
5070
5158
 
5159
+ /**
5160
+ * Parameters of the MonthPicker#pageChange event.
5161
+ */
5071
5162
  export interface MonthPicker$PageChangeEventParameters {}
5072
5163
 
5164
+ /**
5165
+ * Event object of the MonthPicker#pageChange event.
5166
+ */
5073
5167
  export type MonthPicker$PageChangeEvent = Event<
5074
5168
  MonthPicker$PageChangeEventParameters,
5075
5169
  MonthPicker
5076
5170
  >;
5077
5171
 
5172
+ /**
5173
+ * Parameters of the MonthPicker#select event.
5174
+ */
5078
5175
  export interface MonthPicker$SelectEventParameters {}
5079
5176
 
5177
+ /**
5178
+ * Event object of the MonthPicker#select event.
5179
+ */
5080
5180
  export type MonthPicker$SelectEvent = Event<
5081
5181
  MonthPicker$SelectEventParameters,
5082
5182
  MonthPicker
@@ -5807,7 +5907,9 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5807
5907
  oStartDate: Date | UI5Date
5808
5908
  ): this;
5809
5909
  }
5810
-
5910
+ /**
5911
+ * Describes the settings that can be provided to the MonthsRow constructor.
5912
+ */
5811
5913
  export interface $MonthsRowSettings extends $ControlSettings {
5812
5914
  /**
5813
5915
  * A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
@@ -5910,6 +6012,9 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5910
6012
  focus?: (oEvent: MonthsRow$FocusEvent) => void;
5911
6013
  }
5912
6014
 
6015
+ /**
6016
+ * Parameters of the MonthsRow#focus event.
6017
+ */
5913
6018
  export interface MonthsRow$FocusEventParameters {
5914
6019
  /**
5915
6020
  * First date, as UI5Date or JavaScript Date object, of the month that is focused.
@@ -5922,13 +6027,22 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
5922
6027
  notVisible?: boolean;
5923
6028
  }
5924
6029
 
6030
+ /**
6031
+ * Event object of the MonthsRow#focus event.
6032
+ */
5925
6033
  export type MonthsRow$FocusEvent = Event<
5926
6034
  MonthsRow$FocusEventParameters,
5927
6035
  MonthsRow
5928
6036
  >;
5929
6037
 
6038
+ /**
6039
+ * Parameters of the MonthsRow#select event.
6040
+ */
5930
6041
  export interface MonthsRow$SelectEventParameters {}
5931
6042
 
6043
+ /**
6044
+ * Event object of the MonthsRow#select event.
6045
+ */
5932
6046
  export type MonthsRow$SelectEvent = Event<
5933
6047
  MonthsRow$SelectEventParameters,
5934
6048
  MonthsRow
@@ -6692,7 +6806,9 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6692
6806
  oStartDate: Date | UI5Date
6693
6807
  ): this;
6694
6808
  }
6695
-
6809
+ /**
6810
+ * Describes the settings that can be provided to the TimesRow constructor.
6811
+ */
6696
6812
  export interface $TimesRowSettings extends $ControlSettings {
6697
6813
  /**
6698
6814
  * A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
@@ -6800,6 +6916,9 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6800
6916
  focus?: (oEvent: TimesRow$FocusEvent) => void;
6801
6917
  }
6802
6918
 
6919
+ /**
6920
+ * Parameters of the TimesRow#focus event.
6921
+ */
6803
6922
  export interface TimesRow$FocusEventParameters {
6804
6923
  /**
6805
6924
  * date, as UI5Date or JavaScript Date object, of the focused time.
@@ -6812,13 +6931,22 @@ declare module "sap/ui/unified/calendar/TimesRow" {
6812
6931
  notVisible?: boolean;
6813
6932
  }
6814
6933
 
6934
+ /**
6935
+ * Event object of the TimesRow#focus event.
6936
+ */
6815
6937
  export type TimesRow$FocusEvent = Event<
6816
6938
  TimesRow$FocusEventParameters,
6817
6939
  TimesRow
6818
6940
  >;
6819
6941
 
6942
+ /**
6943
+ * Parameters of the TimesRow#select event.
6944
+ */
6820
6945
  export interface TimesRow$SelectEventParameters {}
6821
6946
 
6947
+ /**
6948
+ * Event object of the TimesRow#select event.
6949
+ */
6822
6950
  export type TimesRow$SelectEvent = Event<
6823
6951
  TimesRow$SelectEventParameters,
6824
6952
  TimesRow
@@ -7372,7 +7500,9 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7372
7500
  iYears?: int
7373
7501
  ): this;
7374
7502
  }
7375
-
7503
+ /**
7504
+ * Describes the settings that can be provided to the YearPicker constructor.
7505
+ */
7376
7506
  export interface $YearPickerSettings extends $ControlSettings {
7377
7507
  /**
7378
7508
  * The year is initial focused and selected The value must be between 0 and 9999
@@ -7450,15 +7580,27 @@ declare module "sap/ui/unified/calendar/YearPicker" {
7450
7580
  pageChange?: (oEvent: Event) => void;
7451
7581
  }
7452
7582
 
7583
+ /**
7584
+ * Parameters of the YearPicker#pageChange event.
7585
+ */
7453
7586
  export interface YearPicker$PageChangeEventParameters {}
7454
7587
 
7588
+ /**
7589
+ * Event object of the YearPicker#pageChange event.
7590
+ */
7455
7591
  export type YearPicker$PageChangeEvent = Event<
7456
7592
  YearPicker$PageChangeEventParameters,
7457
7593
  YearPicker
7458
7594
  >;
7459
7595
 
7596
+ /**
7597
+ * Parameters of the YearPicker#select event.
7598
+ */
7460
7599
  export interface YearPicker$SelectEventParameters {}
7461
7600
 
7601
+ /**
7602
+ * Event object of the YearPicker#select event.
7603
+ */
7462
7604
  export type YearPicker$SelectEvent = Event<
7463
7605
  YearPicker$SelectEventParameters,
7464
7606
  YearPicker
@@ -7880,7 +8022,9 @@ declare module "sap/ui/unified/CalendarAppointment" {
7880
8022
  sTitle: string
7881
8023
  ): this;
7882
8024
  }
7883
-
8025
+ /**
8026
+ * Describes the settings that can be provided to the CalendarAppointment constructor.
8027
+ */
7884
8028
  export interface $CalendarAppointmentSettings extends $DateTypeRangeSettings {
7885
8029
  /**
7886
8030
  * Title of the appointment.
@@ -8187,7 +8331,9 @@ declare module "sap/ui/unified/CalendarDateInterval" {
8187
8331
  oStartDate: Date | UI5Date
8188
8332
  ): this;
8189
8333
  }
8190
-
8334
+ /**
8335
+ * Describes the settings that can be provided to the CalendarDateInterval constructor.
8336
+ */
8191
8337
  export interface $CalendarDateIntervalSettings extends $CalendarSettings {
8192
8338
  /**
8193
8339
  * Start date of the Interval
@@ -8457,7 +8603,9 @@ declare module "sap/ui/unified/CalendarLegend" {
8457
8603
  sStandardItems?: string[]
8458
8604
  ): this;
8459
8605
  }
8460
-
8606
+ /**
8607
+ * Describes the settings that can be provided to the CalendarLegend constructor.
8608
+ */
8461
8609
  export interface $CalendarLegendSettings extends $ControlSettings {
8462
8610
  /**
8463
8611
  * Determines the standard items related to the calendar days, such as, today, selected, working and non-working.
@@ -8649,7 +8797,9 @@ declare module "sap/ui/unified/CalendarLegendItem" {
8649
8797
  sType?: CalendarDayType | keyof typeof CalendarDayType
8650
8798
  ): this;
8651
8799
  }
8652
-
8800
+ /**
8801
+ * Describes the settings that can be provided to the CalendarLegendItem constructor.
8802
+ */
8653
8803
  export interface $CalendarLegendItemSettings extends $ElementSettings {
8654
8804
  /**
8655
8805
  * Text to be displayed for the item.
@@ -9486,7 +9636,9 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
9486
9636
  sWidth?: CSSSize
9487
9637
  ): this;
9488
9638
  }
9489
-
9639
+ /**
9640
+ * Describes the settings that can be provided to the CalendarMonthInterval constructor.
9641
+ */
9490
9642
  export interface $CalendarMonthIntervalSettings extends $ControlSettings {
9491
9643
  /**
9492
9644
  * Width of the `CalendarMonthInterval`. The width of the single months depends on this width.
@@ -9605,22 +9757,40 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
9605
9757
  startDateChange?: (oEvent: Event) => void;
9606
9758
  }
9607
9759
 
9760
+ /**
9761
+ * Parameters of the CalendarMonthInterval#cancel event.
9762
+ */
9608
9763
  export interface CalendarMonthInterval$CancelEventParameters {}
9609
9764
 
9765
+ /**
9766
+ * Event object of the CalendarMonthInterval#cancel event.
9767
+ */
9610
9768
  export type CalendarMonthInterval$CancelEvent = Event<
9611
9769
  CalendarMonthInterval$CancelEventParameters,
9612
9770
  CalendarMonthInterval
9613
9771
  >;
9614
9772
 
9773
+ /**
9774
+ * Parameters of the CalendarMonthInterval#select event.
9775
+ */
9615
9776
  export interface CalendarMonthInterval$SelectEventParameters {}
9616
9777
 
9778
+ /**
9779
+ * Event object of the CalendarMonthInterval#select event.
9780
+ */
9617
9781
  export type CalendarMonthInterval$SelectEvent = Event<
9618
9782
  CalendarMonthInterval$SelectEventParameters,
9619
9783
  CalendarMonthInterval
9620
9784
  >;
9621
9785
 
9786
+ /**
9787
+ * Parameters of the CalendarMonthInterval#startDateChange event.
9788
+ */
9622
9789
  export interface CalendarMonthInterval$StartDateChangeEventParameters {}
9623
9790
 
9791
+ /**
9792
+ * Event object of the CalendarMonthInterval#startDateChange event.
9793
+ */
9624
9794
  export type CalendarMonthInterval$StartDateChangeEvent = Event<
9625
9795
  CalendarMonthInterval$StartDateChangeEventParameters,
9626
9796
  CalendarMonthInterval
@@ -10970,7 +11140,9 @@ declare module "sap/ui/unified/CalendarRow" {
10970
11140
  */
10971
11141
  updateCurrentTimeVisualization(): this;
10972
11142
  }
10973
-
11143
+ /**
11144
+ * Describes the settings that can be provided to the CalendarRow constructor.
11145
+ */
10974
11146
  export interface $CalendarRowSettings extends $ControlSettings {
10975
11147
  /**
10976
11148
  * Start date, as UI5Date or JavaScript Date object, of the row. As default, the current date is used.
@@ -11211,6 +11383,9 @@ declare module "sap/ui/unified/CalendarRow" {
11211
11383
  intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
11212
11384
  }
11213
11385
 
11386
+ /**
11387
+ * Parameters of the CalendarRow#intervalSelect event.
11388
+ */
11214
11389
  export interface CalendarRow$IntervalSelectEventParameters {
11215
11390
  /**
11216
11391
  * Interval start date as UI5Date or JavaScript Date object
@@ -11228,11 +11403,17 @@ declare module "sap/ui/unified/CalendarRow" {
11228
11403
  subInterval?: boolean;
11229
11404
  }
11230
11405
 
11406
+ /**
11407
+ * Event object of the CalendarRow#intervalSelect event.
11408
+ */
11231
11409
  export type CalendarRow$IntervalSelectEvent = Event<
11232
11410
  CalendarRow$IntervalSelectEventParameters,
11233
11411
  CalendarRow
11234
11412
  >;
11235
11413
 
11414
+ /**
11415
+ * Parameters of the CalendarRow#leaveRow event.
11416
+ */
11236
11417
  export interface CalendarRow$LeaveRowEventParameters {
11237
11418
  /**
11238
11419
  * The type of the event that triggers this `leaveRow`
@@ -11240,11 +11421,17 @@ declare module "sap/ui/unified/CalendarRow" {
11240
11421
  type?: string;
11241
11422
  }
11242
11423
 
11424
+ /**
11425
+ * Event object of the CalendarRow#leaveRow event.
11426
+ */
11243
11427
  export type CalendarRow$LeaveRowEvent = Event<
11244
11428
  CalendarRow$LeaveRowEventParameters,
11245
11429
  CalendarRow
11246
11430
  >;
11247
11431
 
11432
+ /**
11433
+ * Parameters of the CalendarRow#select event.
11434
+ */
11248
11435
  export interface CalendarRow$SelectEventParameters {
11249
11436
  /**
11250
11437
  * selected appointment
@@ -11268,13 +11455,22 @@ declare module "sap/ui/unified/CalendarRow" {
11268
11455
  domRefId?: string;
11269
11456
  }
11270
11457
 
11458
+ /**
11459
+ * Event object of the CalendarRow#select event.
11460
+ */
11271
11461
  export type CalendarRow$SelectEvent = Event<
11272
11462
  CalendarRow$SelectEventParameters,
11273
11463
  CalendarRow
11274
11464
  >;
11275
11465
 
11466
+ /**
11467
+ * Parameters of the CalendarRow#startDateChange event.
11468
+ */
11276
11469
  export interface CalendarRow$StartDateChangeEventParameters {}
11277
11470
 
11471
+ /**
11472
+ * Event object of the CalendarRow#startDateChange event.
11473
+ */
11278
11474
  export type CalendarRow$StartDateChangeEvent = Event<
11279
11475
  CalendarRow$StartDateChangeEventParameters,
11280
11476
  CalendarRow
@@ -12121,7 +12317,9 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
12121
12317
  sWidth?: CSSSize
12122
12318
  ): this;
12123
12319
  }
12124
-
12320
+ /**
12321
+ * Describes the settings that can be provided to the CalendarTimeInterval constructor.
12322
+ */
12125
12323
  export interface $CalendarTimeIntervalSettings extends $ControlSettings {
12126
12324
  /**
12127
12325
  * Width of the `CalendarTimeInterval`. The width of the single months depends on this width.
@@ -12246,22 +12444,40 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
12246
12444
  startDateChange?: (oEvent: Event) => void;
12247
12445
  }
12248
12446
 
12447
+ /**
12448
+ * Parameters of the CalendarTimeInterval#cancel event.
12449
+ */
12249
12450
  export interface CalendarTimeInterval$CancelEventParameters {}
12250
12451
 
12452
+ /**
12453
+ * Event object of the CalendarTimeInterval#cancel event.
12454
+ */
12251
12455
  export type CalendarTimeInterval$CancelEvent = Event<
12252
12456
  CalendarTimeInterval$CancelEventParameters,
12253
12457
  CalendarTimeInterval
12254
12458
  >;
12255
12459
 
12460
+ /**
12461
+ * Parameters of the CalendarTimeInterval#select event.
12462
+ */
12256
12463
  export interface CalendarTimeInterval$SelectEventParameters {}
12257
12464
 
12465
+ /**
12466
+ * Event object of the CalendarTimeInterval#select event.
12467
+ */
12258
12468
  export type CalendarTimeInterval$SelectEvent = Event<
12259
12469
  CalendarTimeInterval$SelectEventParameters,
12260
12470
  CalendarTimeInterval
12261
12471
  >;
12262
12472
 
12473
+ /**
12474
+ * Parameters of the CalendarTimeInterval#startDateChange event.
12475
+ */
12263
12476
  export interface CalendarTimeInterval$StartDateChangeEventParameters {}
12264
12477
 
12478
+ /**
12479
+ * Event object of the CalendarTimeInterval#startDateChange event.
12480
+ */
12265
12481
  export type CalendarTimeInterval$StartDateChangeEvent = Event<
12266
12482
  CalendarTimeInterval$StartDateChangeEventParameters,
12267
12483
  CalendarTimeInterval
@@ -12642,7 +12858,9 @@ declare module "sap/ui/unified/ColorPicker" {
12642
12858
  bSuppressInvalidate: boolean
12643
12859
  ): void;
12644
12860
  }
12645
-
12861
+ /**
12862
+ * Describes the settings that can be provided to the ColorPicker constructor.
12863
+ */
12646
12864
  export interface $ColorPickerSettings extends $ControlSettings {
12647
12865
  /**
12648
12866
  * Determines the input parameter that can be a string of type HEX, RGB, HSV, or a CSS color name:
@@ -12699,6 +12917,9 @@ declare module "sap/ui/unified/ColorPicker" {
12699
12917
  liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
12700
12918
  }
12701
12919
 
12920
+ /**
12921
+ * Parameters of the ColorPicker#change event.
12922
+ */
12702
12923
  export interface ColorPicker$ChangeEventParameters {
12703
12924
  /**
12704
12925
  * Parameter containing the RED value (0-255).
@@ -12746,11 +12967,17 @@ declare module "sap/ui/unified/ColorPicker" {
12746
12967
  alpha?: string;
12747
12968
  }
12748
12969
 
12970
+ /**
12971
+ * Event object of the ColorPicker#change event.
12972
+ */
12749
12973
  export type ColorPicker$ChangeEvent = Event<
12750
12974
  ColorPicker$ChangeEventParameters,
12751
12975
  ColorPicker
12752
12976
  >;
12753
12977
 
12978
+ /**
12979
+ * Parameters of the ColorPicker#liveChange event.
12980
+ */
12754
12981
  export interface ColorPicker$LiveChangeEventParameters {
12755
12982
  /**
12756
12983
  * Parameter containing the RED value (0-255).
@@ -12798,6 +13025,9 @@ declare module "sap/ui/unified/ColorPicker" {
12798
13025
  alpha?: string;
12799
13026
  }
12800
13027
 
13028
+ /**
13029
+ * Event object of the ColorPicker#liveChange event.
13030
+ */
12801
13031
  export type ColorPicker$LiveChangeEvent = Event<
12802
13032
  ColorPicker$LiveChangeEventParameters,
12803
13033
  ColorPicker
@@ -13195,7 +13425,9 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13195
13425
  sMode?: ColorPickerMode | keyof typeof ColorPickerMode
13196
13426
  ): this;
13197
13427
  }
13198
-
13428
+ /**
13429
+ * Describes the settings that can be provided to the ColorPickerPopover constructor.
13430
+ */
13199
13431
  export interface $ColorPickerPopoverSettings extends $ControlSettings {
13200
13432
  /**
13201
13433
  * Determines the input parameter that can be a string of type HEX, RGB, HSV, or a CSS color name:
@@ -13244,6 +13476,9 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13244
13476
  liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
13245
13477
  }
13246
13478
 
13479
+ /**
13480
+ * Parameters of the ColorPickerPopover#change event.
13481
+ */
13247
13482
  export interface ColorPickerPopover$ChangeEventParameters {
13248
13483
  /**
13249
13484
  * Parameter containing the RED value (0-255).
@@ -13291,11 +13526,17 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13291
13526
  alpha?: string;
13292
13527
  }
13293
13528
 
13529
+ /**
13530
+ * Event object of the ColorPickerPopover#change event.
13531
+ */
13294
13532
  export type ColorPickerPopover$ChangeEvent = Event<
13295
13533
  ColorPickerPopover$ChangeEventParameters,
13296
13534
  ColorPickerPopover
13297
13535
  >;
13298
13536
 
13537
+ /**
13538
+ * Parameters of the ColorPickerPopover#liveChange event.
13539
+ */
13299
13540
  export interface ColorPickerPopover$LiveChangeEventParameters {
13300
13541
  /**
13301
13542
  * Parameter containing the RED value (0-255).
@@ -13343,6 +13584,9 @@ declare module "sap/ui/unified/ColorPickerPopover" {
13343
13584
  alpha?: string;
13344
13585
  }
13345
13586
 
13587
+ /**
13588
+ * Event object of the ColorPickerPopover#liveChange event.
13589
+ */
13346
13590
  export type ColorPickerPopover$LiveChangeEvent = Event<
13347
13591
  ColorPickerPopover$LiveChangeEventParameters,
13348
13592
  ColorPickerPopover
@@ -13653,7 +13897,12 @@ declare module "sap/ui/unified/ContentSwitcher" {
13653
13897
  */
13654
13898
  switchContent(): void;
13655
13899
  }
13656
-
13900
+ /**
13901
+ * Describes the settings that can be provided to the ContentSwitcher constructor.
13902
+ *
13903
+ * @deprecated (since 1.44.0)
13904
+ * @experimental (since 1.16.0) - API is not yet finished and might change completely
13905
+ */
13657
13906
  export interface $ContentSwitcherSettings extends $ControlSettings {
13658
13907
  /**
13659
13908
  * Set the used animation when changing content. This just sets a CSS-class named "sapUiUnifiedACSwitcherAnimation"
@@ -13922,7 +14171,9 @@ declare module "sap/ui/unified/Currency" {
13922
14171
  sStringValue?: string
13923
14172
  ): this;
13924
14173
  }
13925
-
14174
+ /**
14175
+ * Describes the settings that can be provided to the Currency constructor.
14176
+ */
13926
14177
  export interface $CurrencySettings extends $ControlSettings {
13927
14178
  /**
13928
14179
  * Determines the currency value.
@@ -14101,7 +14352,9 @@ declare module "sap/ui/unified/DateRange" {
14101
14352
  bInvalidate?: boolean
14102
14353
  ): this;
14103
14354
  }
14104
-
14355
+ /**
14356
+ * Describes the settings that can be provided to the DateRange constructor.
14357
+ */
14105
14358
  export interface $DateRangeSettings extends $ElementSettings {
14106
14359
  /**
14107
14360
  * Start date for a date range. This must be a UI5Date or JavaScript Date object.
@@ -14292,7 +14545,9 @@ declare module "sap/ui/unified/DateTypeRange" {
14292
14545
  sType?: CalendarDayType | keyof typeof CalendarDayType
14293
14546
  ): this;
14294
14547
  }
14295
-
14548
+ /**
14549
+ * Describes the settings that can be provided to the DateTypeRange constructor.
14550
+ */
14296
14551
  export interface $DateTypeRangeSettings extends $DateRangeSettings {
14297
14552
  /**
14298
14553
  * Type of the date range.
@@ -16674,7 +16929,9 @@ declare module "sap/ui/unified/FileUploader" {
16674
16929
  bPreProcessFiles?: boolean
16675
16930
  ): void;
16676
16931
  }
16677
-
16932
+ /**
16933
+ * Describes the settings that can be provided to the FileUploader constructor.
16934
+ */
16678
16935
  export interface $FileUploaderSettings extends $ControlSettings {
16679
16936
  /**
16680
16937
  * Value of the path for file upload.
@@ -17025,20 +17282,35 @@ declare module "sap/ui/unified/FileUploader" {
17025
17282
  afterDialogClose?: (oEvent: Event) => void;
17026
17283
  }
17027
17284
 
17285
+ /**
17286
+ * Parameters of the FileUploader#afterDialogClose event.
17287
+ */
17028
17288
  export interface FileUploader$AfterDialogCloseEventParameters {}
17029
17289
 
17290
+ /**
17291
+ * Event object of the FileUploader#afterDialogClose event.
17292
+ */
17030
17293
  export type FileUploader$AfterDialogCloseEvent = Event<
17031
17294
  FileUploader$AfterDialogCloseEventParameters,
17032
17295
  FileUploader
17033
17296
  >;
17034
17297
 
17298
+ /**
17299
+ * Parameters of the FileUploader#beforeDialogOpen event.
17300
+ */
17035
17301
  export interface FileUploader$BeforeDialogOpenEventParameters {}
17036
17302
 
17303
+ /**
17304
+ * Event object of the FileUploader#beforeDialogOpen event.
17305
+ */
17037
17306
  export type FileUploader$BeforeDialogOpenEvent = Event<
17038
17307
  FileUploader$BeforeDialogOpenEventParameters,
17039
17308
  FileUploader
17040
17309
  >;
17041
17310
 
17311
+ /**
17312
+ * Parameters of the FileUploader#change event.
17313
+ */
17042
17314
  export interface FileUploader$ChangeEventParameters {
17043
17315
  /**
17044
17316
  * New file path value.
@@ -17051,18 +17323,30 @@ declare module "sap/ui/unified/FileUploader" {
17051
17323
  files?: object[];
17052
17324
  }
17053
17325
 
17326
+ /**
17327
+ * Event object of the FileUploader#change event.
17328
+ */
17054
17329
  export type FileUploader$ChangeEvent = Event<
17055
17330
  FileUploader$ChangeEventParameters,
17056
17331
  FileUploader
17057
17332
  >;
17058
17333
 
17334
+ /**
17335
+ * Parameters of the FileUploader#fileAllowed event.
17336
+ */
17059
17337
  export interface FileUploader$FileAllowedEventParameters {}
17060
17338
 
17339
+ /**
17340
+ * Event object of the FileUploader#fileAllowed event.
17341
+ */
17061
17342
  export type FileUploader$FileAllowedEvent = Event<
17062
17343
  FileUploader$FileAllowedEventParameters,
17063
17344
  FileUploader
17064
17345
  >;
17065
17346
 
17347
+ /**
17348
+ * Parameters of the FileUploader#fileEmpty event.
17349
+ */
17066
17350
  export interface FileUploader$FileEmptyEventParameters {
17067
17351
  /**
17068
17352
  * The name of the file to be uploaded.
@@ -17070,11 +17354,17 @@ declare module "sap/ui/unified/FileUploader" {
17070
17354
  fileName?: string;
17071
17355
  }
17072
17356
 
17357
+ /**
17358
+ * Event object of the FileUploader#fileEmpty event.
17359
+ */
17073
17360
  export type FileUploader$FileEmptyEvent = Event<
17074
17361
  FileUploader$FileEmptyEventParameters,
17075
17362
  FileUploader
17076
17363
  >;
17077
17364
 
17365
+ /**
17366
+ * Parameters of the FileUploader#filenameLengthExceed event.
17367
+ */
17078
17368
  export interface FileUploader$FilenameLengthExceedEventParameters {
17079
17369
  /**
17080
17370
  * The filename, which is longer than specified by the value of the property `maximumFilenameLength`.
@@ -17082,11 +17372,17 @@ declare module "sap/ui/unified/FileUploader" {
17082
17372
  fileName?: string;
17083
17373
  }
17084
17374
 
17375
+ /**
17376
+ * Event object of the FileUploader#filenameLengthExceed event.
17377
+ */
17085
17378
  export type FileUploader$FilenameLengthExceedEvent = Event<
17086
17379
  FileUploader$FilenameLengthExceedEventParameters,
17087
17380
  FileUploader
17088
17381
  >;
17089
17382
 
17383
+ /**
17384
+ * Parameters of the FileUploader#fileSizeExceed event.
17385
+ */
17090
17386
  export interface FileUploader$FileSizeExceedEventParameters {
17091
17387
  /**
17092
17388
  * The name of a file to be uploaded.
@@ -17099,11 +17395,17 @@ declare module "sap/ui/unified/FileUploader" {
17099
17395
  fileSize?: string;
17100
17396
  }
17101
17397
 
17398
+ /**
17399
+ * Event object of the FileUploader#fileSizeExceed event.
17400
+ */
17102
17401
  export type FileUploader$FileSizeExceedEvent = Event<
17103
17402
  FileUploader$FileSizeExceedEventParameters,
17104
17403
  FileUploader
17105
17404
  >;
17106
17405
 
17406
+ /**
17407
+ * Parameters of the FileUploader#typeMissmatch event.
17408
+ */
17107
17409
  export interface FileUploader$TypeMissmatchEventParameters {
17108
17410
  /**
17109
17411
  * The name of a file to be uploaded.
@@ -17121,11 +17423,17 @@ declare module "sap/ui/unified/FileUploader" {
17121
17423
  mimeType?: string;
17122
17424
  }
17123
17425
 
17426
+ /**
17427
+ * Event object of the FileUploader#typeMissmatch event.
17428
+ */
17124
17429
  export type FileUploader$TypeMissmatchEvent = Event<
17125
17430
  FileUploader$TypeMissmatchEventParameters,
17126
17431
  FileUploader
17127
17432
  >;
17128
17433
 
17434
+ /**
17435
+ * Parameters of the FileUploader#uploadAborted event.
17436
+ */
17129
17437
  export interface FileUploader$UploadAbortedEventParameters {
17130
17438
  /**
17131
17439
  * The name of a file to be uploaded.
@@ -17141,11 +17449,17 @@ declare module "sap/ui/unified/FileUploader" {
17141
17449
  requestHeaders?: object[];
17142
17450
  }
17143
17451
 
17452
+ /**
17453
+ * Event object of the FileUploader#uploadAborted event.
17454
+ */
17144
17455
  export type FileUploader$UploadAbortedEvent = Event<
17145
17456
  FileUploader$UploadAbortedEventParameters,
17146
17457
  FileUploader
17147
17458
  >;
17148
17459
 
17460
+ /**
17461
+ * Parameters of the FileUploader#uploadComplete event.
17462
+ */
17149
17463
  export interface FileUploader$UploadCompleteEventParameters {
17150
17464
  /**
17151
17465
  * The name of a file to be uploaded.
@@ -17206,11 +17520,17 @@ declare module "sap/ui/unified/FileUploader" {
17206
17520
  requestHeaders?: object[];
17207
17521
  }
17208
17522
 
17523
+ /**
17524
+ * Event object of the FileUploader#uploadComplete event.
17525
+ */
17209
17526
  export type FileUploader$UploadCompleteEvent = Event<
17210
17527
  FileUploader$UploadCompleteEventParameters,
17211
17528
  FileUploader
17212
17529
  >;
17213
17530
 
17531
+ /**
17532
+ * Parameters of the FileUploader#uploadProgress event.
17533
+ */
17214
17534
  export interface FileUploader$UploadProgressEventParameters {
17215
17535
  /**
17216
17536
  * Indicates whether or not the relative upload progress can be calculated out of loaded and total.
@@ -17241,11 +17561,17 @@ declare module "sap/ui/unified/FileUploader" {
17241
17561
  requestHeaders?: object[];
17242
17562
  }
17243
17563
 
17564
+ /**
17565
+ * Event object of the FileUploader#uploadProgress event.
17566
+ */
17244
17567
  export type FileUploader$UploadProgressEvent = Event<
17245
17568
  FileUploader$UploadProgressEventParameters,
17246
17569
  FileUploader
17247
17570
  >;
17248
17571
 
17572
+ /**
17573
+ * Parameters of the FileUploader#uploadStart event.
17574
+ */
17249
17575
  export interface FileUploader$UploadStartEventParameters {
17250
17576
  /**
17251
17577
  * The name of a file to be uploaded.
@@ -17261,6 +17587,9 @@ declare module "sap/ui/unified/FileUploader" {
17261
17587
  requestHeaders?: object[];
17262
17588
  }
17263
17589
 
17590
+ /**
17591
+ * Event object of the FileUploader#uploadStart event.
17592
+ */
17264
17593
  export type FileUploader$UploadStartEvent = Event<
17265
17594
  FileUploader$UploadStartEventParameters,
17266
17595
  FileUploader
@@ -17414,7 +17743,9 @@ declare module "sap/ui/unified/FileUploaderParameter" {
17414
17743
  sValue?: string
17415
17744
  ): this;
17416
17745
  }
17417
-
17746
+ /**
17747
+ * Describes the settings that can be provided to the FileUploaderParameter constructor.
17748
+ */
17418
17749
  export interface $FileUploaderParameterSettings extends $ElementSettings {
17419
17750
  /**
17420
17751
  * The name of the hidden inputfield.
@@ -17539,7 +17870,9 @@ declare module "sap/ui/unified/FileUploaderXHRSettings" {
17539
17870
  bWithCredentials?: boolean
17540
17871
  ): this;
17541
17872
  }
17542
-
17873
+ /**
17874
+ * Describes the settings that can be provided to the FileUploaderXHRSettings constructor.
17875
+ */
17543
17876
  export interface $FileUploaderXHRSettingsSettings extends $ElementSettings {
17544
17877
  /**
17545
17878
  * Determines the value of the `XMLHttpRequest.withCredentials` property
@@ -18038,7 +18371,9 @@ declare module "sap/ui/unified/Menu" {
18038
18371
  iPageSize?: int
18039
18372
  ): this;
18040
18373
  }
18041
-
18374
+ /**
18375
+ * Describes the settings that can be provided to the Menu constructor.
18376
+ */
18042
18377
  export interface $MenuSettings extends $ControlSettings {
18043
18378
  /**
18044
18379
  * When a menu is disabled none of its items can be selected by the user. The enabled property of an item
@@ -18098,6 +18433,9 @@ declare module "sap/ui/unified/Menu" {
18098
18433
  itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
18099
18434
  }
18100
18435
 
18436
+ /**
18437
+ * Parameters of the Menu#itemSelect event.
18438
+ */
18101
18439
  export interface Menu$ItemSelectEventParameters {
18102
18440
  /**
18103
18441
  * The action (item) which was selected by the user.
@@ -18105,6 +18443,9 @@ declare module "sap/ui/unified/Menu" {
18105
18443
  item?: MenuItemBase;
18106
18444
  }
18107
18445
 
18446
+ /**
18447
+ * Event object of the Menu#itemSelect event.
18448
+ */
18108
18449
  export type Menu$ItemSelectEvent = Event<
18109
18450
  Menu$ItemSelectEventParameters,
18110
18451
  Menu
@@ -18290,7 +18631,9 @@ declare module "sap/ui/unified/MenuItem" {
18290
18631
  sText?: string
18291
18632
  ): this;
18292
18633
  }
18293
-
18634
+ /**
18635
+ * Describes the settings that can be provided to the MenuItem constructor.
18636
+ */
18294
18637
  export interface $MenuItemSettings extends $MenuItemBaseSettings {
18295
18638
  /**
18296
18639
  * Defines the text which should be displayed on the item.
@@ -18650,7 +18993,9 @@ declare module "sap/ui/unified/MenuItemBase" {
18650
18993
  bVisible?: boolean
18651
18994
  ): this;
18652
18995
  }
18653
-
18996
+ /**
18997
+ * Describes the settings that can be provided to the MenuItemBase constructor.
18998
+ */
18654
18999
  export interface $MenuItemBaseSettings extends $ElementSettings {
18655
19000
  /**
18656
19001
  * When an item is disabled the item can not be selected by the user. The enabled property of the item has
@@ -18682,6 +19027,9 @@ declare module "sap/ui/unified/MenuItemBase" {
18682
19027
  select?: (oEvent: MenuItemBase$SelectEvent) => void;
18683
19028
  }
18684
19029
 
19030
+ /**
19031
+ * Parameters of the MenuItemBase#select event.
19032
+ */
18685
19033
  export interface MenuItemBase$SelectEventParameters {
18686
19034
  /**
18687
19035
  * The current item
@@ -18689,6 +19037,9 @@ declare module "sap/ui/unified/MenuItemBase" {
18689
19037
  item?: MenuItemBase;
18690
19038
  }
18691
19039
 
19040
+ /**
19041
+ * Event object of the MenuItemBase#select event.
19042
+ */
18692
19043
  export type MenuItemBase$SelectEvent = Event<
18693
19044
  MenuItemBase$SelectEventParameters,
18694
19045
  MenuItemBase
@@ -18918,7 +19269,9 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
18918
19269
  sValueState?: ValueState | keyof typeof ValueState
18919
19270
  ): this;
18920
19271
  }
18921
-
19272
+ /**
19273
+ * Describes the settings that can be provided to the MenuTextFieldItem constructor.
19274
+ */
18922
19275
  export interface $MenuTextFieldItemSettings extends $MenuItemBaseSettings {
18923
19276
  /**
18924
19277
  * Defines the label of the text field of the item.
@@ -19539,7 +19892,11 @@ declare module "sap/ui/unified/Shell" {
19539
19892
  oUser: ShellHeadUserItem
19540
19893
  ): this;
19541
19894
  }
19542
-
19895
+ /**
19896
+ * Describes the settings that can be provided to the Shell constructor.
19897
+ *
19898
+ * @deprecated (since 1.44.0)
19899
+ */
19543
19900
  export interface $ShellSettings extends $ShellLayoutSettings {
19544
19901
  /**
19545
19902
  * The application icon. If a custom header is set this property has no effect.
@@ -20033,7 +20390,11 @@ declare module "sap/ui/unified/ShellHeadItem" {
20033
20390
  bVisible?: boolean
20034
20391
  ): this;
20035
20392
  }
20036
-
20393
+ /**
20394
+ * Describes the settings that can be provided to the ShellHeadItem constructor.
20395
+ *
20396
+ * @deprecated (since 1.44.0)
20397
+ */
20037
20398
  export interface $ShellHeadItemSettings extends $ElementSettings {
20038
20399
  /**
20039
20400
  * If set to true, a divider is displayed before the item.
@@ -20094,8 +20455,14 @@ declare module "sap/ui/unified/ShellHeadItem" {
20094
20455
  press?: (oEvent: Event) => void;
20095
20456
  }
20096
20457
 
20458
+ /**
20459
+ * Parameters of the ShellHeadItem#press event.
20460
+ */
20097
20461
  export interface ShellHeadItem$PressEventParameters {}
20098
20462
 
20463
+ /**
20464
+ * Event object of the ShellHeadItem#press event.
20465
+ */
20099
20466
  export type ShellHeadItem$PressEvent = Event<
20100
20467
  ShellHeadItem$PressEventParameters,
20101
20468
  ShellHeadItem
@@ -20385,7 +20752,11 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
20385
20752
  sUsername?: string
20386
20753
  ): this;
20387
20754
  }
20388
-
20755
+ /**
20756
+ * Describes the settings that can be provided to the ShellHeadUserItem constructor.
20757
+ *
20758
+ * @deprecated (since 1.44.0)
20759
+ */
20389
20760
  export interface $ShellHeadUserItemSettings extends $ElementSettings {
20390
20761
  /**
20391
20762
  * The name of the user.
@@ -20416,8 +20787,14 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
20416
20787
  press?: (oEvent: Event) => void;
20417
20788
  }
20418
20789
 
20790
+ /**
20791
+ * Parameters of the ShellHeadUserItem#press event.
20792
+ */
20419
20793
  export interface ShellHeadUserItem$PressEventParameters {}
20420
20794
 
20795
+ /**
20796
+ * Event object of the ShellHeadUserItem#press event.
20797
+ */
20421
20798
  export type ShellHeadUserItem$PressEvent = Event<
20422
20799
  ShellHeadUserItem$PressEventParameters,
20423
20800
  ShellHeadUserItem
@@ -20775,7 +21152,11 @@ declare module "sap/ui/unified/ShellLayout" {
20775
21152
  bShowPane?: boolean
20776
21153
  ): this;
20777
21154
  }
20778
-
21155
+ /**
21156
+ * Describes the settings that can be provided to the ShellLayout constructor.
21157
+ *
21158
+ * @deprecated (since 1.44.0)
21159
+ */
20779
21160
  export interface $ShellLayoutSettings extends $ControlSettings {
20780
21161
  /**
20781
21162
  * Shows / Hides the side pane.
@@ -21134,7 +21515,11 @@ declare module "sap/ui/unified/ShellOverlay" {
21134
21515
  oShell: ID | ShellLayout
21135
21516
  ): this;
21136
21517
  }
21137
-
21518
+ /**
21519
+ * Describes the settings that can be provided to the ShellOverlay constructor.
21520
+ *
21521
+ * @deprecated (since 1.44.0)
21522
+ */
21138
21523
  export interface $ShellOverlaySettings extends $ControlSettings {
21139
21524
  /**
21140
21525
  * The content to appear in the overlay.
@@ -21163,8 +21548,14 @@ declare module "sap/ui/unified/ShellOverlay" {
21163
21548
  closed?: (oEvent: Event) => void;
21164
21549
  }
21165
21550
 
21551
+ /**
21552
+ * Parameters of the ShellOverlay#closed event.
21553
+ */
21166
21554
  export interface ShellOverlay$ClosedEventParameters {}
21167
21555
 
21556
+ /**
21557
+ * Event object of the ShellOverlay#closed event.
21558
+ */
21168
21559
  export type ShellOverlay$ClosedEvent = Event<
21169
21560
  ShellOverlay$ClosedEventParameters,
21170
21561
  ShellOverlay
@@ -21524,7 +21915,12 @@ declare module "sap/ui/unified/SplitContainer" {
21524
21915
  bShowSecondaryContent?: boolean
21525
21916
  ): this;
21526
21917
  }
21527
-
21918
+ /**
21919
+ * Describes the settings that can be provided to the SplitContainer constructor.
21920
+ *
21921
+ * @deprecated (since 1.44.0)
21922
+ * @experimental (since 1.15.0) - API is not yet finished and might change completely
21923
+ */
21528
21924
  export interface $SplitContainerSettings extends $ControlSettings {
21529
21925
  /**
21530
21926
  * Shows / Hides the secondary area.