@openui5/ts-types-esm 1.92.0 → 1.93.3

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.92.0
1
+ // For Library Version: 1.93.3
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -377,6 +377,31 @@ declare module "sap/ui/unified/Calendar" {
377
377
  mSettings?: $CalendarSettings
378
378
  );
379
379
 
380
+ /**
381
+ * Creates a new subclass of class sap.ui.unified.Calendar with name `sClassName` and enriches it with the
382
+ * information contained in `oClassInfo`.
383
+ *
384
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
385
+ */
386
+ static extend<T extends Record<string, unknown>>(
387
+ /**
388
+ * Name of the class being created
389
+ */
390
+ sClassName: string,
391
+ /**
392
+ * Object literal with information about the class
393
+ */
394
+ oClassInfo?: sap.ClassInfo<T, Calendar>,
395
+ /**
396
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
397
+ * used by this class
398
+ */
399
+ FNMetaImpl?: Function
400
+ ): Function;
401
+ /**
402
+ * Returns a metadata object for class sap.ui.unified.Calendar.
403
+ */
404
+ static getMetadata(): ElementMetadata;
380
405
  /**
381
406
  * @SINCE 1.28.0
382
407
  *
@@ -702,27 +727,6 @@ declare module "sap/ui/unified/Calendar" {
702
727
  */
703
728
  oDate: Object
704
729
  ): this;
705
- /**
706
- * Creates a new subclass of class sap.ui.unified.Calendar with name `sClassName` and enriches it with the
707
- * information contained in `oClassInfo`.
708
- *
709
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
710
- */
711
- static extend<T extends Record<string, unknown>>(
712
- /**
713
- * Name of the class being created
714
- */
715
- sClassName: string,
716
- /**
717
- * Object literal with information about the class
718
- */
719
- oClassInfo?: sap.ClassInfo<T, Calendar>,
720
- /**
721
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
722
- * used by this class
723
- */
724
- FNMetaImpl?: Function
725
- ): Function;
726
730
  /**
727
731
  * Fires event {@link #event:cancel cancel} to attached listeners.
728
732
  */
@@ -841,10 +845,6 @@ declare module "sap/ui/unified/Calendar" {
841
845
  * month of the `maxDate`.
842
846
  */
843
847
  getMaxDate(): object;
844
- /**
845
- * Returns a metadata object for class sap.ui.unified.Calendar.
846
- */
847
- static getMetadata(): ElementMetadata;
848
848
  /**
849
849
  * @SINCE 1.38.0
850
850
  *
@@ -1470,12 +1470,12 @@ declare module "sap/ui/unified/Calendar" {
1470
1470
  /**
1471
1471
  * Date selection changed
1472
1472
  */
1473
- select?: Function;
1473
+ select?: (oEvent: Event) => void;
1474
1474
 
1475
1475
  /**
1476
1476
  * Date selection was cancelled
1477
1477
  */
1478
- cancel?: Function;
1478
+ cancel?: (oEvent: Event) => void;
1479
1479
 
1480
1480
  /**
1481
1481
  * @SINCE 1.34.0
@@ -1484,7 +1484,7 @@ declare module "sap/ui/unified/Calendar" {
1484
1484
  *
1485
1485
  * Use `getStartDate` function to determine the current start date
1486
1486
  */
1487
- startDateChange?: Function;
1487
+ startDateChange?: (oEvent: Event) => void;
1488
1488
 
1489
1489
  /**
1490
1490
  * @SINCE 1.56
@@ -1496,7 +1496,7 @@ declare module "sap/ui/unified/Calendar" {
1496
1496
  *
1497
1497
  * **Note** Works for Gregorian calendars only and when `intervalSelection` is set to 'true'.
1498
1498
  */
1499
- weekNumberSelect?: Function;
1499
+ weekNumberSelect?: (oEvent: Event) => void;
1500
1500
  }
1501
1501
  }
1502
1502
 
@@ -1549,18 +1549,6 @@ declare module "sap/ui/unified/calendar/DatesRow" {
1549
1549
  mSettings?: $DatesRowSettings
1550
1550
  );
1551
1551
 
1552
- /**
1553
- * displays the a given date without setting the focus
1554
- *
1555
- * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
1556
- * `startDate` and `days` days So set this properties before setting the date.
1557
- */
1558
- displayDate(
1559
- /**
1560
- * JavaScript date object for focused date.
1561
- */
1562
- oDate: object
1563
- ): this;
1564
1552
  /**
1565
1553
  * Creates a new subclass of class sap.ui.unified.calendar.DatesRow with name `sClassName` and enriches
1566
1554
  * it with the information contained in `oClassInfo`.
@@ -1582,6 +1570,22 @@ declare module "sap/ui/unified/calendar/DatesRow" {
1582
1570
  */
1583
1571
  FNMetaImpl?: Function
1584
1572
  ): Function;
1573
+ /**
1574
+ * Returns a metadata object for class sap.ui.unified.calendar.DatesRow.
1575
+ */
1576
+ static getMetadata(): ElementMetadata;
1577
+ /**
1578
+ * displays the a given date without setting the focus
1579
+ *
1580
+ * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
1581
+ * `startDate` and `days` days So set this properties before setting the date.
1582
+ */
1583
+ displayDate(
1584
+ /**
1585
+ * JavaScript date object for focused date.
1586
+ */
1587
+ oDate: object
1588
+ ): this;
1585
1589
  /**
1586
1590
  * Gets current value of property {@link #getDays days}.
1587
1591
  *
@@ -1590,10 +1594,6 @@ declare module "sap/ui/unified/calendar/DatesRow" {
1590
1594
  * Default value is `7`.
1591
1595
  */
1592
1596
  getDays(): int;
1593
- /**
1594
- * Returns a metadata object for class sap.ui.unified.calendar.DatesRow.
1595
- */
1596
- static getMetadata(): ElementMetadata;
1597
1597
  /**
1598
1598
  * @SINCE 1.34.0
1599
1599
  *
@@ -1761,6 +1761,31 @@ declare module "sap/ui/unified/calendar/Header" {
1761
1761
  mSettings?: $HeaderSettings
1762
1762
  );
1763
1763
 
1764
+ /**
1765
+ * Creates a new subclass of class sap.ui.unified.calendar.Header with name `sClassName` and enriches it
1766
+ * with the information contained in `oClassInfo`.
1767
+ *
1768
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1769
+ */
1770
+ static extend<T extends Record<string, unknown>>(
1771
+ /**
1772
+ * Name of the class being created
1773
+ */
1774
+ sClassName: string,
1775
+ /**
1776
+ * Object literal with information about the class
1777
+ */
1778
+ oClassInfo?: sap.ClassInfo<T, Header>,
1779
+ /**
1780
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1781
+ * used by this class
1782
+ */
1783
+ FNMetaImpl?: Function
1784
+ ): Function;
1785
+ /**
1786
+ * Returns a metadata object for class sap.ui.unified.calendar.Header.
1787
+ */
1788
+ static getMetadata(): ElementMetadata;
1764
1789
  /**
1765
1790
  * @SINCE 1.32.0
1766
1791
  *
@@ -2048,27 +2073,6 @@ declare module "sap/ui/unified/calendar/Header" {
2048
2073
  */
2049
2074
  oListener?: object
2050
2075
  ): this;
2051
- /**
2052
- * Creates a new subclass of class sap.ui.unified.calendar.Header with name `sClassName` and enriches it
2053
- * with the information contained in `oClassInfo`.
2054
- *
2055
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2056
- */
2057
- static extend<T extends Record<string, unknown>>(
2058
- /**
2059
- * Name of the class being created
2060
- */
2061
- sClassName: string,
2062
- /**
2063
- * Object literal with information about the class
2064
- */
2065
- oClassInfo?: sap.ClassInfo<T, Header>,
2066
- /**
2067
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2068
- * used by this class
2069
- */
2070
- FNMetaImpl?: Function
2071
- ): Function;
2072
2076
  /**
2073
2077
  * @SINCE 1.32.0
2074
2078
  *
@@ -2176,10 +2180,6 @@ declare module "sap/ui/unified/calendar/Header" {
2176
2180
  * Default value is `true`.
2177
2181
  */
2178
2182
  getEnabledPrevious(): boolean;
2179
- /**
2180
- * Returns a metadata object for class sap.ui.unified.calendar.Header.
2181
- */
2182
- static getMetadata(): ElementMetadata;
2183
2183
  /**
2184
2184
  * @SINCE 1.32.0
2185
2185
  *
@@ -2536,29 +2536,29 @@ declare module "sap/ui/unified/calendar/Header" {
2536
2536
  /**
2537
2537
  * Previous button pressed
2538
2538
  */
2539
- pressPrevious?: Function;
2539
+ pressPrevious?: (oEvent: Event) => void;
2540
2540
 
2541
2541
  /**
2542
2542
  * Next button pressed
2543
2543
  */
2544
- pressNext?: Function;
2544
+ pressNext?: (oEvent: Event) => void;
2545
2545
 
2546
2546
  /**
2547
2547
  * @SINCE 1.32.0
2548
2548
  *
2549
2549
  * First button pressed (normally day)
2550
2550
  */
2551
- pressButton0?: Function;
2551
+ pressButton0?: (oEvent: Event) => void;
2552
2552
 
2553
2553
  /**
2554
2554
  * Second button pressed (normally month)
2555
2555
  */
2556
- pressButton1?: Function;
2556
+ pressButton1?: (oEvent: Event) => void;
2557
2557
 
2558
2558
  /**
2559
2559
  * Third button pressed (normally year)
2560
2560
  */
2561
- pressButton2?: Function;
2561
+ pressButton2?: (oEvent: Event) => void;
2562
2562
  }
2563
2563
  }
2564
2564
 
@@ -2623,6 +2623,31 @@ declare module "sap/ui/unified/calendar/Month" {
2623
2623
  mSettings?: $MonthSettings
2624
2624
  );
2625
2625
 
2626
+ /**
2627
+ * Creates a new subclass of class sap.ui.unified.calendar.Month with name `sClassName` and enriches it
2628
+ * with the information contained in `oClassInfo`.
2629
+ *
2630
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2631
+ */
2632
+ static extend<T extends Record<string, unknown>>(
2633
+ /**
2634
+ * Name of the class being created
2635
+ */
2636
+ sClassName: string,
2637
+ /**
2638
+ * Object literal with information about the class
2639
+ */
2640
+ oClassInfo?: sap.ClassInfo<T, Month>,
2641
+ /**
2642
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2643
+ * used by this class
2644
+ */
2645
+ FNMetaImpl?: Function
2646
+ ): Function;
2647
+ /**
2648
+ * Returns a metadata object for class sap.ui.unified.calendar.Month.
2649
+ */
2650
+ static getMetadata(): ElementMetadata;
2626
2651
  /**
2627
2652
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
2628
2653
  */
@@ -2881,27 +2906,6 @@ declare module "sap/ui/unified/calendar/Month" {
2881
2906
  */
2882
2907
  oDate: object
2883
2908
  ): this;
2884
- /**
2885
- * Creates a new subclass of class sap.ui.unified.calendar.Month with name `sClassName` and enriches it
2886
- * with the information contained in `oClassInfo`.
2887
- *
2888
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2889
- */
2890
- static extend<T extends Record<string, unknown>>(
2891
- /**
2892
- * Name of the class being created
2893
- */
2894
- sClassName: string,
2895
- /**
2896
- * Object literal with information about the class
2897
- */
2898
- oClassInfo?: sap.ClassInfo<T, Month>,
2899
- /**
2900
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2901
- * used by this class
2902
- */
2903
- FNMetaImpl?: Function
2904
- ): Function;
2905
2909
  /**
2906
2910
  * Fires event {@link #event:focus focus} to attached listeners.
2907
2911
  */
@@ -3003,10 +3007,6 @@ declare module "sap/ui/unified/calendar/Month" {
3003
3007
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
3004
3008
  */
3005
3009
  getLegend(): ID;
3006
- /**
3007
- * Returns a metadata object for class sap.ui.unified.calendar.Month.
3008
- */
3009
- static getMetadata(): ElementMetadata;
3010
3010
  /**
3011
3011
  * @SINCE 1.28.9
3012
3012
  *
@@ -3515,12 +3515,12 @@ declare module "sap/ui/unified/calendar/Month" {
3515
3515
  /**
3516
3516
  * Date selection changed
3517
3517
  */
3518
- select?: Function;
3518
+ select?: (oEvent: Event) => void;
3519
3519
 
3520
3520
  /**
3521
3521
  * Date focus changed
3522
3522
  */
3523
- focus?: Function;
3523
+ focus?: (oEvent: Event) => void;
3524
3524
 
3525
3525
  /**
3526
3526
  * @SINCE 1.60
@@ -3532,7 +3532,7 @@ declare module "sap/ui/unified/calendar/Month" {
3532
3532
  *
3533
3533
  * **Note:** Works for Gregorian calendars only and when `intervalSelection` is set to `true`.
3534
3534
  */
3535
- weekNumberSelect?: Function;
3535
+ weekNumberSelect?: (oEvent: Event) => void;
3536
3536
  }
3537
3537
  }
3538
3538
 
@@ -3591,6 +3591,31 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
3591
3591
  mSettings?: $MonthPickerSettings
3592
3592
  );
3593
3593
 
3594
+ /**
3595
+ * Creates a new subclass of class sap.ui.unified.calendar.MonthPicker with name `sClassName` and enriches
3596
+ * it with the information contained in `oClassInfo`.
3597
+ *
3598
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3599
+ */
3600
+ static extend<T extends Record<string, unknown>>(
3601
+ /**
3602
+ * Name of the class being created
3603
+ */
3604
+ sClassName: string,
3605
+ /**
3606
+ * Object literal with information about the class
3607
+ */
3608
+ oClassInfo?: sap.ClassInfo<T, MonthPicker>,
3609
+ /**
3610
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3611
+ * used by this class
3612
+ */
3613
+ FNMetaImpl?: Function
3614
+ ): Function;
3615
+ /**
3616
+ * Returns a metadata object for class sap.ui.unified.calendar.MonthPicker.
3617
+ */
3618
+ static getMetadata(): ElementMetadata;
3594
3619
  /**
3595
3620
  * @SINCE 1.92
3596
3621
  *
@@ -3743,27 +3768,6 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
3743
3768
  */
3744
3769
  oListener?: object
3745
3770
  ): this;
3746
- /**
3747
- * Creates a new subclass of class sap.ui.unified.calendar.MonthPicker with name `sClassName` and enriches
3748
- * it with the information contained in `oClassInfo`.
3749
- *
3750
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3751
- */
3752
- static extend<T extends Record<string, unknown>>(
3753
- /**
3754
- * Name of the class being created
3755
- */
3756
- sClassName: string,
3757
- /**
3758
- * Object literal with information about the class
3759
- */
3760
- oClassInfo?: sap.ClassInfo<T, MonthPicker>,
3761
- /**
3762
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3763
- * used by this class
3764
- */
3765
- FNMetaImpl?: Function
3766
- ): Function;
3767
3771
  /**
3768
3772
  * @SINCE 1.38.0
3769
3773
  *
@@ -3812,10 +3816,6 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
3812
3816
  * Default value is `false`.
3813
3817
  */
3814
3818
  getIntervalSelection(): boolean;
3815
- /**
3816
- * Returns a metadata object for class sap.ui.unified.calendar.MonthPicker.
3817
- */
3818
- static getMetadata(): ElementMetadata;
3819
3819
  /**
3820
3820
  * Gets current value of property {@link #getMonth month}.
3821
3821
  *
@@ -4077,7 +4077,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4077
4077
  /**
4078
4078
  * Month selection changed
4079
4079
  */
4080
- select?: Function;
4080
+ select?: (oEvent: Event) => void;
4081
4081
 
4082
4082
  /**
4083
4083
  * @SINCE 1.38.0
@@ -4085,7 +4085,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
4085
4085
  * If less than 12 months are displayed the `pageChange` event is fired if the displayed months are changed
4086
4086
  * by user navigation.
4087
4087
  */
4088
- pageChange?: Function;
4088
+ pageChange?: (oEvent: Event) => void;
4089
4089
  }
4090
4090
  }
4091
4091
 
@@ -4157,27 +4157,52 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
4157
4157
  );
4158
4158
 
4159
4159
  /**
4160
- * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4160
+ * Creates a new subclass of class sap.ui.unified.calendar.MonthsRow with name `sClassName` and enriches
4161
+ * it with the information contained in `oClassInfo`.
4162
+ *
4163
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4161
4164
  */
4162
- addAriaLabelledBy(
4165
+ static extend<T extends Record<string, unknown>>(
4163
4166
  /**
4164
- * The ariaLabelledBy to add; if empty, nothing is inserted
4167
+ * Name of the class being created
4165
4168
  */
4166
- vAriaLabelledBy: ID | Control
4167
- ): this;
4168
- /**
4169
- * Adds some selectedDate to the aggregation {@link #getSelectedDates selectedDates}.
4170
- */
4171
- addSelectedDate(
4169
+ sClassName: string,
4172
4170
  /**
4173
- * The selectedDate to add; if empty, nothing is inserted
4171
+ * Object literal with information about the class
4174
4172
  */
4175
- oSelectedDate: DateRange
4176
- ): this;
4177
- /**
4178
- * Adds some specialDate to the aggregation {@link #getSpecialDates specialDates}.
4179
- */
4180
- addSpecialDate(
4173
+ oClassInfo?: sap.ClassInfo<T, MonthsRow>,
4174
+ /**
4175
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4176
+ * used by this class
4177
+ */
4178
+ FNMetaImpl?: Function
4179
+ ): Function;
4180
+ /**
4181
+ * Returns a metadata object for class sap.ui.unified.calendar.MonthsRow.
4182
+ */
4183
+ static getMetadata(): ElementMetadata;
4184
+ /**
4185
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4186
+ */
4187
+ addAriaLabelledBy(
4188
+ /**
4189
+ * The ariaLabelledBy to add; if empty, nothing is inserted
4190
+ */
4191
+ vAriaLabelledBy: ID | Control
4192
+ ): this;
4193
+ /**
4194
+ * Adds some selectedDate to the aggregation {@link #getSelectedDates selectedDates}.
4195
+ */
4196
+ addSelectedDate(
4197
+ /**
4198
+ * The selectedDate to add; if empty, nothing is inserted
4199
+ */
4200
+ oSelectedDate: DateRange
4201
+ ): this;
4202
+ /**
4203
+ * Adds some specialDate to the aggregation {@link #getSpecialDates specialDates}.
4204
+ */
4205
+ addSpecialDate(
4181
4206
  /**
4182
4207
  * The specialDate to add; if empty, nothing is inserted
4183
4208
  */
@@ -4322,27 +4347,6 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
4322
4347
  */
4323
4348
  oDate: object
4324
4349
  ): this;
4325
- /**
4326
- * Creates a new subclass of class sap.ui.unified.calendar.MonthsRow with name `sClassName` and enriches
4327
- * it with the information contained in `oClassInfo`.
4328
- *
4329
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4330
- */
4331
- static extend<T extends Record<string, unknown>>(
4332
- /**
4333
- * Name of the class being created
4334
- */
4335
- sClassName: string,
4336
- /**
4337
- * Object literal with information about the class
4338
- */
4339
- oClassInfo?: sap.ClassInfo<T, MonthsRow>,
4340
- /**
4341
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4342
- * used by this class
4343
- */
4344
- FNMetaImpl?: Function
4345
- ): Function;
4346
4350
  /**
4347
4351
  * Fires event {@link #event:focus focus} to attached listeners.
4348
4352
  */
@@ -4398,10 +4402,6 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
4398
4402
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
4399
4403
  */
4400
4404
  getLegend(): ID;
4401
- /**
4402
- * Returns a metadata object for class sap.ui.unified.calendar.MonthsRow.
4403
- */
4404
- static getMetadata(): ElementMetadata;
4405
4405
  /**
4406
4406
  * Gets current value of property {@link #getMonths months}.
4407
4407
  *
@@ -4706,12 +4706,12 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
4706
4706
  /**
4707
4707
  * Month selection changed
4708
4708
  */
4709
- select?: Function;
4709
+ select?: (oEvent: Event) => void;
4710
4710
 
4711
4711
  /**
4712
4712
  * Month focus changed
4713
4713
  */
4714
- focus?: Function;
4714
+ focus?: (oEvent: Event) => void;
4715
4715
  }
4716
4716
  }
4717
4717
 
@@ -4781,6 +4781,31 @@ declare module "sap/ui/unified/calendar/TimesRow" {
4781
4781
  mSettings?: $TimesRowSettings
4782
4782
  );
4783
4783
 
4784
+ /**
4785
+ * Creates a new subclass of class sap.ui.unified.calendar.TimesRow with name `sClassName` and enriches
4786
+ * it with the information contained in `oClassInfo`.
4787
+ *
4788
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4789
+ */
4790
+ static extend<T extends Record<string, unknown>>(
4791
+ /**
4792
+ * Name of the class being created
4793
+ */
4794
+ sClassName: string,
4795
+ /**
4796
+ * Object literal with information about the class
4797
+ */
4798
+ oClassInfo?: sap.ClassInfo<T, TimesRow>,
4799
+ /**
4800
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4801
+ * used by this class
4802
+ */
4803
+ FNMetaImpl?: Function
4804
+ ): Function;
4805
+ /**
4806
+ * Returns a metadata object for class sap.ui.unified.calendar.TimesRow.
4807
+ */
4808
+ static getMetadata(): ElementMetadata;
4784
4809
  /**
4785
4810
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4786
4811
  */
@@ -4947,27 +4972,6 @@ declare module "sap/ui/unified/calendar/TimesRow" {
4947
4972
  */
4948
4973
  oDate: object
4949
4974
  ): this;
4950
- /**
4951
- * Creates a new subclass of class sap.ui.unified.calendar.TimesRow with name `sClassName` and enriches
4952
- * it with the information contained in `oClassInfo`.
4953
- *
4954
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4955
- */
4956
- static extend<T extends Record<string, unknown>>(
4957
- /**
4958
- * Name of the class being created
4959
- */
4960
- sClassName: string,
4961
- /**
4962
- * Object literal with information about the class
4963
- */
4964
- oClassInfo?: sap.ClassInfo<T, TimesRow>,
4965
- /**
4966
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4967
- * used by this class
4968
- */
4969
- FNMetaImpl?: Function
4970
- ): Function;
4971
4975
  /**
4972
4976
  * Fires event {@link #event:focus focus} to attached listeners.
4973
4977
  */
@@ -5045,10 +5049,6 @@ declare module "sap/ui/unified/calendar/TimesRow" {
5045
5049
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
5046
5050
  */
5047
5051
  getLegend(): ID;
5048
- /**
5049
- * Returns a metadata object for class sap.ui.unified.calendar.TimesRow.
5050
- */
5051
- static getMetadata(): ElementMetadata;
5052
5052
  /**
5053
5053
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
5054
5054
  *
@@ -5380,12 +5380,12 @@ declare module "sap/ui/unified/calendar/TimesRow" {
5380
5380
  /**
5381
5381
  * Time selection changed
5382
5382
  */
5383
- select?: Function;
5383
+ select?: (oEvent: Event) => void;
5384
5384
 
5385
5385
  /**
5386
5386
  * Time focus changed
5387
5387
  */
5388
- focus?: Function;
5388
+ focus?: (oEvent: Event) => void;
5389
5389
  }
5390
5390
  }
5391
5391
 
@@ -5444,6 +5444,31 @@ declare module "sap/ui/unified/calendar/YearPicker" {
5444
5444
  mSettings?: $YearPickerSettings
5445
5445
  );
5446
5446
 
5447
+ /**
5448
+ * Creates a new subclass of class sap.ui.unified.calendar.YearPicker with name `sClassName` and enriches
5449
+ * it with the information contained in `oClassInfo`.
5450
+ *
5451
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5452
+ */
5453
+ static extend<T extends Record<string, unknown>>(
5454
+ /**
5455
+ * Name of the class being created
5456
+ */
5457
+ sClassName: string,
5458
+ /**
5459
+ * Object literal with information about the class
5460
+ */
5461
+ oClassInfo?: sap.ClassInfo<T, YearPicker>,
5462
+ /**
5463
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5464
+ * used by this class
5465
+ */
5466
+ FNMetaImpl?: Function
5467
+ ): Function;
5468
+ /**
5469
+ * Returns a metadata object for class sap.ui.unified.calendar.YearPicker.
5470
+ */
5471
+ static getMetadata(): ElementMetadata;
5447
5472
  /**
5448
5473
  * @SINCE 1.74
5449
5474
  *
@@ -5583,27 +5608,6 @@ declare module "sap/ui/unified/calendar/YearPicker" {
5583
5608
  */
5584
5609
  oListener?: object
5585
5610
  ): this;
5586
- /**
5587
- * Creates a new subclass of class sap.ui.unified.calendar.YearPicker with name `sClassName` and enriches
5588
- * it with the information contained in `oClassInfo`.
5589
- *
5590
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5591
- */
5592
- static extend<T extends Record<string, unknown>>(
5593
- /**
5594
- * Name of the class being created
5595
- */
5596
- sClassName: string,
5597
- /**
5598
- * Object literal with information about the class
5599
- */
5600
- oClassInfo?: sap.ClassInfo<T, YearPicker>,
5601
- /**
5602
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5603
- * used by this class
5604
- */
5605
- FNMetaImpl?: Function
5606
- ): Function;
5607
5611
  /**
5608
5612
  * @SINCE 1.38.0
5609
5613
  *
@@ -5660,10 +5664,6 @@ declare module "sap/ui/unified/calendar/YearPicker" {
5660
5664
  * Default value is `false`.
5661
5665
  */
5662
5666
  getIntervalSelection(): boolean;
5663
- /**
5664
- * Returns a metadata object for class sap.ui.unified.calendar.YearPicker.
5665
- */
5666
- static getMetadata(): ElementMetadata;
5667
5667
  /**
5668
5668
  * @SINCE 1.34.0
5669
5669
  *
@@ -5900,14 +5900,14 @@ declare module "sap/ui/unified/calendar/YearPicker" {
5900
5900
  /**
5901
5901
  * Year selection changed
5902
5902
  */
5903
- select?: Function;
5903
+ select?: (oEvent: Event) => void;
5904
5904
 
5905
5905
  /**
5906
5906
  * @SINCE 1.38.0
5907
5907
  *
5908
5908
  * The `pageChange` event is fired if the displayed years are changed by user navigation.
5909
5909
  */
5910
- pageChange?: Function;
5910
+ pageChange?: (oEvent: Event) => void;
5911
5911
  }
5912
5912
  }
5913
5913
 
@@ -5917,11 +5917,16 @@ declare module "sap/ui/unified/CalendarAppointment" {
5917
5917
  $DateTypeRangeSettings,
5918
5918
  } from "sap/ui/unified/DateTypeRange";
5919
5919
 
5920
+ import Control from "sap/ui/core/Control";
5921
+
5920
5922
  import { CSSColor, URI } from "sap/ui/core/library";
5921
5923
 
5922
5924
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5923
5925
 
5924
- import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
5926
+ import {
5927
+ PropertyBindingInfo,
5928
+ AggregationBindingInfo,
5929
+ } from "sap/ui/base/ManagedObject";
5925
5930
 
5926
5931
  /**
5927
5932
  * @SINCE 1.34.0
@@ -5984,6 +5989,29 @@ declare module "sap/ui/unified/CalendarAppointment" {
5984
5989
  */
5985
5990
  FNMetaImpl?: Function
5986
5991
  ): Function;
5992
+ /**
5993
+ * Returns a metadata object for class sap.ui.unified.CalendarAppointment.
5994
+ */
5995
+ static getMetadata(): ElementMetadata;
5996
+ /**
5997
+ * @SINCE 1.93.0
5998
+ * @EXPERIMENTAL (since 1.93)
5999
+ *
6000
+ * Adds some customContent to the aggregation {@link #getCustomContent customContent}.
6001
+ */
6002
+ addCustomContent(
6003
+ /**
6004
+ * The customContent to add; if empty, nothing is inserted
6005
+ */
6006
+ oCustomContent: Control
6007
+ ): this;
6008
+ /**
6009
+ * @SINCE 1.93.0
6010
+ * @EXPERIMENTAL (since 1.93)
6011
+ *
6012
+ * Destroys all the customContent in the aggregation {@link #getCustomContent customContent}.
6013
+ */
6014
+ destroyCustomContent(): this;
5987
6015
  /**
5988
6016
  * @SINCE 1.46.0
5989
6017
  *
@@ -5993,6 +6021,24 @@ declare module "sap/ui/unified/CalendarAppointment" {
5993
6021
  * with pound symbol, e.g.: #FF0000.
5994
6022
  */
5995
6023
  getColor(): CSSColor;
6024
+ /**
6025
+ * @SINCE 1.93.0
6026
+ * @EXPERIMENTAL (since 1.93)
6027
+ *
6028
+ * Gets content of aggregation {@link #getCustomContent customContent}.
6029
+ *
6030
+ * Holds the content of the appointment.
6031
+ *
6032
+ * **Note **, If the `customContent` aggregation is added then:
6033
+ *
6034
+ *
6035
+ * - The `title`, `text`, `description`, and `icon` properties are ignored.
6036
+ * - The application developer has to ensure, that all the accessibility requirements are met, and that
6037
+ * the height of the content conforms with the height provided by the appointment.
6038
+ * - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
6039
+ * and may lead to unpredictable results.
6040
+ */
6041
+ getCustomContent(): Control[];
5996
6042
  /**
5997
6043
  * @SINCE 1.81.0
5998
6044
  *
@@ -6015,10 +6061,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
6015
6061
  * Can be used as identifier of the appointment
6016
6062
  */
6017
6063
  getKey(): string;
6018
- /**
6019
- * Returns a metadata object for class sap.ui.unified.CalendarAppointment.
6020
- */
6021
- static getMetadata(): ElementMetadata;
6022
6064
  /**
6023
6065
  * Gets current value of property {@link #getSelected selected}.
6024
6066
  *
@@ -6047,6 +6089,58 @@ declare module "sap/ui/unified/CalendarAppointment" {
6047
6089
  * Title of the appointment.
6048
6090
  */
6049
6091
  getTitle(): string;
6092
+ /**
6093
+ * @SINCE 1.93.0
6094
+ * @EXPERIMENTAL (since 1.93)
6095
+ *
6096
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCustomContent customContent}.
6097
+ * and returns its index if found or -1 otherwise.
6098
+ */
6099
+ indexOfCustomContent(
6100
+ /**
6101
+ * The customContent whose index is looked for
6102
+ */
6103
+ oCustomContent: Control
6104
+ ): int;
6105
+ /**
6106
+ * @SINCE 1.93.0
6107
+ * @EXPERIMENTAL (since 1.93)
6108
+ *
6109
+ * Inserts a customContent into the aggregation {@link #getCustomContent customContent}.
6110
+ */
6111
+ insertCustomContent(
6112
+ /**
6113
+ * The customContent to insert; if empty, nothing is inserted
6114
+ */
6115
+ oCustomContent: Control,
6116
+ /**
6117
+ * The `0`-based index the customContent should be inserted at; for a negative value of `iIndex`, the customContent
6118
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the customContent
6119
+ * is inserted at the last position
6120
+ */
6121
+ iIndex: int
6122
+ ): this;
6123
+ /**
6124
+ * @SINCE 1.93.0
6125
+ * @EXPERIMENTAL (since 1.93)
6126
+ *
6127
+ * Removes all the controls from the aggregation {@link #getCustomContent customContent}.
6128
+ *
6129
+ * Additionally, it unregisters them from the hosting UIArea.
6130
+ */
6131
+ removeAllCustomContent(): Control[];
6132
+ /**
6133
+ * @SINCE 1.93.0
6134
+ * @EXPERIMENTAL (since 1.93)
6135
+ *
6136
+ * Removes a customContent from the aggregation {@link #getCustomContent customContent}.
6137
+ */
6138
+ removeCustomContent(
6139
+ /**
6140
+ * The customContent to remove or its index or id
6141
+ */
6142
+ vCustomContent: int | string | Control
6143
+ ): Control;
6050
6144
  /**
6051
6145
  * @SINCE 1.46.0
6052
6146
  *
@@ -6211,6 +6305,23 @@ declare module "sap/ui/unified/CalendarAppointment" {
6211
6305
  * with pound symbol, e.g.: #FF0000.
6212
6306
  */
6213
6307
  color?: CSSColor | PropertyBindingInfo;
6308
+
6309
+ /**
6310
+ * @SINCE 1.93.0
6311
+ * @EXPERIMENTAL (since 1.93)
6312
+ *
6313
+ * Holds the content of the appointment.
6314
+ *
6315
+ * **Note **, If the `customContent` aggregation is added then:
6316
+ *
6317
+ *
6318
+ * - The `title`, `text`, `description`, and `icon` properties are ignored.
6319
+ * - The application developer has to ensure, that all the accessibility requirements are met, and that
6320
+ * the height of the content conforms with the height provided by the appointment.
6321
+ * - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
6322
+ * and may lead to unpredictable results.
6323
+ */
6324
+ customContent?: Control[] | Control | AggregationBindingInfo;
6214
6325
  }
6215
6326
  }
6216
6327
 
@@ -6262,10 +6373,6 @@ declare module "sap/ui/unified/CalendarDateInterval" {
6262
6373
  mSettings?: $CalendarDateIntervalSettings
6263
6374
  );
6264
6375
 
6265
- /**
6266
- * If more than this number of days are displayed, start and end month are displayed on the button.
6267
- */
6268
- _getDaysLarge(): int;
6269
6376
  /**
6270
6377
  * Creates a new subclass of class sap.ui.unified.CalendarDateInterval with name `sClassName` and enriches
6271
6378
  * it with the information contained in `oClassInfo`.
@@ -6287,6 +6394,14 @@ declare module "sap/ui/unified/CalendarDateInterval" {
6287
6394
  */
6288
6395
  FNMetaImpl?: Function
6289
6396
  ): Function;
6397
+ /**
6398
+ * Returns a metadata object for class sap.ui.unified.CalendarDateInterval.
6399
+ */
6400
+ static getMetadata(): ElementMetadata;
6401
+ /**
6402
+ * If more than this number of days are displayed, start and end month are displayed on the button.
6403
+ */
6404
+ _getDaysLarge(): int;
6290
6405
  /**
6291
6406
  * Gets current value of property {@link #getDays days}.
6292
6407
  *
@@ -6295,10 +6410,6 @@ declare module "sap/ui/unified/CalendarDateInterval" {
6295
6410
  * Default value is `7`.
6296
6411
  */
6297
6412
  getDays(): int;
6298
- /**
6299
- * Returns a metadata object for class sap.ui.unified.CalendarDateInterval.
6300
- */
6301
- static getMetadata(): ElementMetadata;
6302
6413
  /**
6303
6414
  * @SINCE 1.34.0
6304
6415
  *
@@ -6493,19 +6604,6 @@ declare module "sap/ui/unified/CalendarLegend" {
6493
6604
  mSettings?: $CalendarLegendSettings
6494
6605
  );
6495
6606
 
6496
- /**
6497
- * Adds some item to the aggregation {@link #getItems items}.
6498
- */
6499
- addItem(
6500
- /**
6501
- * The item to add; if empty, nothing is inserted
6502
- */
6503
- oItem: CalendarLegendItem
6504
- ): this;
6505
- /**
6506
- * Destroys all the items in the aggregation {@link #getItems items}.
6507
- */
6508
- destroyItems(): this;
6509
6607
  /**
6510
6608
  * Creates a new subclass of class sap.ui.unified.CalendarLegend with name `sClassName` and enriches it
6511
6609
  * with the information contained in `oClassInfo`.
@@ -6528,9 +6626,26 @@ declare module "sap/ui/unified/CalendarLegend" {
6528
6626
  FNMetaImpl?: Function
6529
6627
  ): Function;
6530
6628
  /**
6531
- * Gets current value of property {@link #getColumnWidth columnWidth}.
6532
- *
6533
- * Defines the width of the created columns in which the items are arranged.
6629
+ * Returns a metadata object for class sap.ui.unified.CalendarLegend.
6630
+ */
6631
+ static getMetadata(): ElementMetadata;
6632
+ /**
6633
+ * Adds some item to the aggregation {@link #getItems items}.
6634
+ */
6635
+ addItem(
6636
+ /**
6637
+ * The item to add; if empty, nothing is inserted
6638
+ */
6639
+ oItem: CalendarLegendItem
6640
+ ): this;
6641
+ /**
6642
+ * Destroys all the items in the aggregation {@link #getItems items}.
6643
+ */
6644
+ destroyItems(): this;
6645
+ /**
6646
+ * Gets current value of property {@link #getColumnWidth columnWidth}.
6647
+ *
6648
+ * Defines the width of the created columns in which the items are arranged.
6534
6649
  *
6535
6650
  * Default value is `'120px'`.
6536
6651
  */
@@ -6541,10 +6656,6 @@ declare module "sap/ui/unified/CalendarLegend" {
6541
6656
  * Items to be displayed.
6542
6657
  */
6543
6658
  getItems(): CalendarLegendItem[];
6544
- /**
6545
- * Returns a metadata object for class sap.ui.unified.CalendarLegend.
6546
- */
6547
- static getMetadata(): ElementMetadata;
6548
6659
  /**
6549
6660
  * @SINCE 1.54
6550
6661
  *
@@ -6724,6 +6835,10 @@ declare module "sap/ui/unified/CalendarLegendItem" {
6724
6835
  */
6725
6836
  FNMetaImpl?: Function
6726
6837
  ): Function;
6838
+ /**
6839
+ * Returns a metadata object for class sap.ui.unified.CalendarLegendItem.
6840
+ */
6841
+ static getMetadata(): ElementMetadata;
6727
6842
  /**
6728
6843
  * @SINCE 1.46.0
6729
6844
  *
@@ -6732,10 +6847,6 @@ declare module "sap/ui/unified/CalendarLegendItem" {
6732
6847
  * Overrides the color derived from the `type` property.
6733
6848
  */
6734
6849
  getColor(): CSSColor;
6735
- /**
6736
- * Returns a metadata object for class sap.ui.unified.CalendarLegendItem.
6737
- */
6738
- static getMetadata(): ElementMetadata;
6739
6850
  /**
6740
6851
  * Gets current value of property {@link #getText text}.
6741
6852
  *
@@ -6889,6 +7000,31 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
6889
7000
  mSettings?: $CalendarMonthIntervalSettings
6890
7001
  );
6891
7002
 
7003
+ /**
7004
+ * Creates a new subclass of class sap.ui.unified.CalendarMonthInterval with name `sClassName` and enriches
7005
+ * it with the information contained in `oClassInfo`.
7006
+ *
7007
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7008
+ */
7009
+ static extend<T extends Record<string, unknown>>(
7010
+ /**
7011
+ * Name of the class being created
7012
+ */
7013
+ sClassName: string,
7014
+ /**
7015
+ * Object literal with information about the class
7016
+ */
7017
+ oClassInfo?: sap.ClassInfo<T, CalendarMonthInterval>,
7018
+ /**
7019
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7020
+ * used by this class
7021
+ */
7022
+ FNMetaImpl?: Function
7023
+ ): Function;
7024
+ /**
7025
+ * Returns a metadata object for class sap.ui.unified.CalendarMonthInterval.
7026
+ */
7027
+ static getMetadata(): ElementMetadata;
6892
7028
  /**
6893
7029
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
6894
7030
  */
@@ -7116,27 +7252,6 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
7116
7252
  */
7117
7253
  oDatetime: Object
7118
7254
  ): this;
7119
- /**
7120
- * Creates a new subclass of class sap.ui.unified.CalendarMonthInterval with name `sClassName` and enriches
7121
- * it with the information contained in `oClassInfo`.
7122
- *
7123
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7124
- */
7125
- static extend<T extends Record<string, unknown>>(
7126
- /**
7127
- * Name of the class being created
7128
- */
7129
- sClassName: string,
7130
- /**
7131
- * Object literal with information about the class
7132
- */
7133
- oClassInfo?: sap.ClassInfo<T, CalendarMonthInterval>,
7134
- /**
7135
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7136
- * used by this class
7137
- */
7138
- FNMetaImpl?: Function
7139
- ): Function;
7140
7255
  /**
7141
7256
  * Fires event {@link #event:cancel cancel} to attached listeners.
7142
7257
  */
@@ -7205,10 +7320,6 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
7205
7320
  * month of the `maxDate`.
7206
7321
  */
7207
7322
  getMaxDate(): object;
7208
- /**
7209
- * Returns a metadata object for class sap.ui.unified.CalendarMonthInterval.
7210
- */
7211
- static getMetadata(): ElementMetadata;
7212
7323
  /**
7213
7324
  * @SINCE 1.38.0
7214
7325
  *
@@ -7598,19 +7709,19 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
7598
7709
  /**
7599
7710
  * Month selection changed
7600
7711
  */
7601
- select?: Function;
7712
+ select?: (oEvent: Event) => void;
7602
7713
 
7603
7714
  /**
7604
7715
  * Month selection was cancelled
7605
7716
  */
7606
- cancel?: Function;
7717
+ cancel?: (oEvent: Event) => void;
7607
7718
 
7608
7719
  /**
7609
7720
  * @SINCE 1.34.0
7610
7721
  *
7611
7722
  * `startDate` was changed while navigation in `CalendarMonthInterval`
7612
7723
  */
7613
- startDateChange?: Function;
7724
+ startDateChange?: (oEvent: Event) => void;
7614
7725
  }
7615
7726
  }
7616
7727
 
@@ -7677,6 +7788,31 @@ declare module "sap/ui/unified/CalendarRow" {
7677
7788
  mSettings?: $CalendarRowSettings
7678
7789
  );
7679
7790
 
7791
+ /**
7792
+ * Creates a new subclass of class sap.ui.unified.CalendarRow with name `sClassName` and enriches it with
7793
+ * the information contained in `oClassInfo`.
7794
+ *
7795
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7796
+ */
7797
+ static extend<T extends Record<string, unknown>>(
7798
+ /**
7799
+ * Name of the class being created
7800
+ */
7801
+ sClassName: string,
7802
+ /**
7803
+ * Object literal with information about the class
7804
+ */
7805
+ oClassInfo?: sap.ClassInfo<T, CalendarRow>,
7806
+ /**
7807
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7808
+ * used by this class
7809
+ */
7810
+ FNMetaImpl?: Function
7811
+ ): Function;
7812
+ /**
7813
+ * Returns a metadata object for class sap.ui.unified.CalendarRow.
7814
+ */
7815
+ static getMetadata(): ElementMetadata;
7680
7816
  /**
7681
7817
  * Adds some appointment to the aggregation {@link #getAppointments appointments}.
7682
7818
  */
@@ -7950,27 +8086,6 @@ declare module "sap/ui/unified/CalendarRow" {
7950
8086
  */
7951
8087
  oListener?: object
7952
8088
  ): this;
7953
- /**
7954
- * Creates a new subclass of class sap.ui.unified.CalendarRow with name `sClassName` and enriches it with
7955
- * the information contained in `oClassInfo`.
7956
- *
7957
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7958
- */
7959
- static extend<T extends Record<string, unknown>>(
7960
- /**
7961
- * Name of the class being created
7962
- */
7963
- sClassName: string,
7964
- /**
7965
- * Object literal with information about the class
7966
- */
7967
- oClassInfo?: sap.ClassInfo<T, CalendarRow>,
7968
- /**
7969
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7970
- * used by this class
7971
- */
7972
- FNMetaImpl?: Function
7973
- ): Function;
7974
8089
  /**
7975
8090
  * @SINCE 1.38.0
7976
8091
  *
@@ -8191,6 +8306,15 @@ declare module "sap/ui/unified/CalendarRow" {
8191
8306
  * Default value is `12`.
8192
8307
  */
8193
8308
  getIntervals(): int;
8309
+ /**
8310
+ * Gets current value of property {@link #getIntervalSize intervalSize}.
8311
+ *
8312
+ * Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
8313
+ * Note: If the value is more than 1, the NonWorkingDays type is not presented.
8314
+ *
8315
+ * Default value is `1`.
8316
+ */
8317
+ getIntervalSize(): int;
8194
8318
  /**
8195
8319
  * Gets current value of property {@link #getIntervalType intervalType}.
8196
8320
  *
@@ -8205,10 +8329,6 @@ declare module "sap/ui/unified/CalendarRow" {
8205
8329
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
8206
8330
  */
8207
8331
  getLegend(): ID;
8208
- /**
8209
- * Returns a metadata object for class sap.ui.unified.CalendarRow.
8210
- */
8211
- static getMetadata(): ElementMetadata;
8212
8332
  /**
8213
8333
  * Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
8214
8334
  *
@@ -8547,6 +8667,22 @@ declare module "sap/ui/unified/CalendarRow" {
8547
8667
  */
8548
8668
  iIntervals?: int
8549
8669
  ): this;
8670
+ /**
8671
+ * Sets a new value for property {@link #getIntervalSize intervalSize}.
8672
+ *
8673
+ * Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
8674
+ * Note: If the value is more than 1, the NonWorkingDays type is not presented.
8675
+ *
8676
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8677
+ *
8678
+ * Default value is `1`.
8679
+ */
8680
+ setIntervalSize(
8681
+ /**
8682
+ * New value for property `intervalSize`
8683
+ */
8684
+ iIntervalSize?: int
8685
+ ): this;
8550
8686
  /**
8551
8687
  * Sets a new value for property {@link #getIntervalType intervalType}.
8552
8688
  *
@@ -8734,6 +8870,12 @@ declare module "sap/ui/unified/CalendarRow" {
8734
8870
  */
8735
8871
  intervals?: int | PropertyBindingInfo;
8736
8872
 
8873
+ /**
8874
+ * Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
8875
+ * Note: If the value is more than 1, the NonWorkingDays type is not presented.
8876
+ */
8877
+ intervalSize?: int | PropertyBindingInfo;
8878
+
8737
8879
  /**
8738
8880
  * Type of the intervals of the row. The default is one hour.
8739
8881
  */
@@ -8918,25 +9060,25 @@ declare module "sap/ui/unified/CalendarRow" {
8918
9060
  /**
8919
9061
  * Fired if an appointment was selected
8920
9062
  */
8921
- select?: Function;
9063
+ select?: (oEvent: Event) => void;
8922
9064
 
8923
9065
  /**
8924
9066
  * `startDate` was changed while navigating in `CalendarRow`
8925
9067
  */
8926
- startDateChange?: Function;
9068
+ startDateChange?: (oEvent: Event) => void;
8927
9069
 
8928
9070
  /**
8929
9071
  * The `CalendarRow` should be left while navigating. (Arrow up or arrow down.) The caller should determine
8930
9072
  * the next control to be focused
8931
9073
  */
8932
- leaveRow?: Function;
9074
+ leaveRow?: (oEvent: Event) => void;
8933
9075
 
8934
9076
  /**
8935
9077
  * @SINCE 1.38.0
8936
9078
  *
8937
9079
  * Fired if an interval was selected
8938
9080
  */
8939
- intervalSelect?: Function;
9081
+ intervalSelect?: (oEvent: Event) => void;
8940
9082
  }
8941
9083
  }
8942
9084
 
@@ -8999,6 +9141,31 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
8999
9141
  mSettings?: $CalendarTimeIntervalSettings
9000
9142
  );
9001
9143
 
9144
+ /**
9145
+ * Creates a new subclass of class sap.ui.unified.CalendarTimeInterval with name `sClassName` and enriches
9146
+ * it with the information contained in `oClassInfo`.
9147
+ *
9148
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9149
+ */
9150
+ static extend<T extends Record<string, unknown>>(
9151
+ /**
9152
+ * Name of the class being created
9153
+ */
9154
+ sClassName: string,
9155
+ /**
9156
+ * Object literal with information about the class
9157
+ */
9158
+ oClassInfo?: sap.ClassInfo<T, CalendarTimeInterval>,
9159
+ /**
9160
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9161
+ * used by this class
9162
+ */
9163
+ FNMetaImpl?: Function
9164
+ ): Function;
9165
+ /**
9166
+ * Returns a metadata object for class sap.ui.unified.CalendarTimeInterval.
9167
+ */
9168
+ static getMetadata(): ElementMetadata;
9002
9169
  /**
9003
9170
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
9004
9171
  */
@@ -9226,27 +9393,6 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
9226
9393
  */
9227
9394
  oDate: object
9228
9395
  ): Calendar;
9229
- /**
9230
- * Creates a new subclass of class sap.ui.unified.CalendarTimeInterval with name `sClassName` and enriches
9231
- * it with the information contained in `oClassInfo`.
9232
- *
9233
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9234
- */
9235
- static extend<T extends Record<string, unknown>>(
9236
- /**
9237
- * Name of the class being created
9238
- */
9239
- sClassName: string,
9240
- /**
9241
- * Object literal with information about the class
9242
- */
9243
- oClassInfo?: sap.ClassInfo<T, CalendarTimeInterval>,
9244
- /**
9245
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9246
- * used by this class
9247
- */
9248
- FNMetaImpl?: Function
9249
- ): Function;
9250
9396
  /**
9251
9397
  * Fires event {@link #event:cancel cancel} to attached listeners.
9252
9398
  */
@@ -9339,10 +9485,6 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
9339
9485
  * month of the `maxDate`.
9340
9486
  */
9341
9487
  getMaxDate(): object;
9342
- /**
9343
- * Returns a metadata object for class sap.ui.unified.CalendarTimeInterval.
9344
- */
9345
- static getMetadata(): ElementMetadata;
9346
9488
  /**
9347
9489
  * @SINCE 1.38.0
9348
9490
  *
@@ -9758,19 +9900,19 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
9758
9900
  /**
9759
9901
  * Time selection changed
9760
9902
  */
9761
- select?: Function;
9903
+ select?: (oEvent: Event) => void;
9762
9904
 
9763
9905
  /**
9764
9906
  * Time selection was cancelled
9765
9907
  */
9766
- cancel?: Function;
9908
+ cancel?: (oEvent: Event) => void;
9767
9909
 
9768
9910
  /**
9769
9911
  * @SINCE 1.34.0
9770
9912
  *
9771
9913
  * `startDate` was changed while navigation in `CalendarTimeInterval`
9772
9914
  */
9773
- startDateChange?: Function;
9915
+ startDateChange?: (oEvent: Event) => void;
9774
9916
  }
9775
9917
  }
9776
9918
 
@@ -9828,6 +9970,31 @@ declare module "sap/ui/unified/ColorPicker" {
9828
9970
  mSettings?: $ColorPickerSettings
9829
9971
  );
9830
9972
 
9973
+ /**
9974
+ * Creates a new subclass of class sap.ui.unified.ColorPicker with name `sClassName` and enriches it with
9975
+ * the information contained in `oClassInfo`.
9976
+ *
9977
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9978
+ */
9979
+ static extend<T extends Record<string, unknown>>(
9980
+ /**
9981
+ * Name of the class being created
9982
+ */
9983
+ sClassName: string,
9984
+ /**
9985
+ * Object literal with information about the class
9986
+ */
9987
+ oClassInfo?: sap.ClassInfo<T, ColorPicker>,
9988
+ /**
9989
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9990
+ * used by this class
9991
+ */
9992
+ FNMetaImpl?: Function
9993
+ ): Function;
9994
+ /**
9995
+ * Returns a metadata object for class sap.ui.unified.ColorPicker.
9996
+ */
9997
+ static getMetadata(): ElementMetadata;
9831
9998
  /**
9832
9999
  * @SINCE 1.48.0
9833
10000
  *
@@ -9960,27 +10127,6 @@ declare module "sap/ui/unified/ColorPicker" {
9960
10127
  */
9961
10128
  oListener?: object
9962
10129
  ): this;
9963
- /**
9964
- * Creates a new subclass of class sap.ui.unified.ColorPicker with name `sClassName` and enriches it with
9965
- * the information contained in `oClassInfo`.
9966
- *
9967
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9968
- */
9969
- static extend<T extends Record<string, unknown>>(
9970
- /**
9971
- * Name of the class being created
9972
- */
9973
- sClassName: string,
9974
- /**
9975
- * Object literal with information about the class
9976
- */
9977
- oClassInfo?: sap.ClassInfo<T, ColorPicker>,
9978
- /**
9979
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9980
- * used by this class
9981
- */
9982
- FNMetaImpl?: Function
9983
- ): Function;
9984
10130
  /**
9985
10131
  * @SINCE 1.48.0
9986
10132
  *
@@ -10102,10 +10248,6 @@ declare module "sap/ui/unified/ColorPicker" {
10102
10248
  getDisplayMode():
10103
10249
  | ColorPickerDisplayMode
10104
10250
  | keyof typeof ColorPickerDisplayMode;
10105
- /**
10106
- * Returns a metadata object for class sap.ui.unified.ColorPicker.
10107
- */
10108
- static getMetadata(): ElementMetadata;
10109
10251
  /**
10110
10252
  * @SINCE 1.48.0
10111
10253
  *
@@ -10223,7 +10365,7 @@ declare module "sap/ui/unified/ColorPicker" {
10223
10365
  *
10224
10366
  * **Note:** When the user action is mouse dragging, the `change` event fires on the mouseup event.
10225
10367
  */
10226
- change?: Function;
10368
+ change?: (oEvent: Event) => void;
10227
10369
 
10228
10370
  /**
10229
10371
  * @SINCE 1.48.0
@@ -10232,7 +10374,7 @@ declare module "sap/ui/unified/ColorPicker" {
10232
10374
  *
10233
10375
  * **Note:** When the user action is mouse move, the `liveChange` event is fired during the mousedown event.
10234
10376
  */
10235
- liveChange?: Function;
10377
+ liveChange?: (oEvent: Event) => void;
10236
10378
  }
10237
10379
  }
10238
10380
 
@@ -10310,11 +10452,36 @@ declare module "sap/ui/unified/ColorPickerPopover" {
10310
10452
  );
10311
10453
 
10312
10454
  /**
10313
- * @SINCE 1.60.0
10314
- *
10315
- * Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.unified.ColorPickerPopover`.
10455
+ * Creates a new subclass of class sap.ui.unified.ColorPickerPopover with name `sClassName` and enriches
10456
+ * it with the information contained in `oClassInfo`.
10316
10457
  *
10317
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
10458
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10459
+ */
10460
+ static extend<T extends Record<string, unknown>>(
10461
+ /**
10462
+ * Name of the class being created
10463
+ */
10464
+ sClassName: string,
10465
+ /**
10466
+ * Object literal with information about the class
10467
+ */
10468
+ oClassInfo?: sap.ClassInfo<T, ColorPickerPopover>,
10469
+ /**
10470
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10471
+ * used by this class
10472
+ */
10473
+ FNMetaImpl?: Function
10474
+ ): Function;
10475
+ /**
10476
+ * Returns a metadata object for class sap.ui.unified.ColorPickerPopover.
10477
+ */
10478
+ static getMetadata(): ElementMetadata;
10479
+ /**
10480
+ * @SINCE 1.60.0
10481
+ *
10482
+ * Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.unified.ColorPickerPopover`.
10483
+ *
10484
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
10318
10485
  * otherwise it will be bound to this `sap.ui.unified.ColorPickerPopover` itself.
10319
10486
  *
10320
10487
  * Fired when the submit button of the popover is clicked.
@@ -10437,27 +10604,6 @@ declare module "sap/ui/unified/ColorPickerPopover" {
10437
10604
  */
10438
10605
  oListener?: object
10439
10606
  ): this;
10440
- /**
10441
- * Creates a new subclass of class sap.ui.unified.ColorPickerPopover with name `sClassName` and enriches
10442
- * it with the information contained in `oClassInfo`.
10443
- *
10444
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10445
- */
10446
- static extend<T extends Record<string, unknown>>(
10447
- /**
10448
- * Name of the class being created
10449
- */
10450
- sClassName: string,
10451
- /**
10452
- * Object literal with information about the class
10453
- */
10454
- oClassInfo?: sap.ClassInfo<T, ColorPickerPopover>,
10455
- /**
10456
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10457
- * used by this class
10458
- */
10459
- FNMetaImpl?: Function
10460
- ): Function;
10461
10607
  /**
10462
10608
  * @SINCE 1.60.0
10463
10609
  *
@@ -10579,10 +10725,6 @@ declare module "sap/ui/unified/ColorPickerPopover" {
10579
10725
  getDisplayMode():
10580
10726
  | ColorPickerDisplayMode
10581
10727
  | keyof typeof ColorPickerDisplayMode;
10582
- /**
10583
- * Returns a metadata object for class sap.ui.unified.ColorPickerPopover.
10584
- */
10585
- static getMetadata(): ElementMetadata;
10586
10728
  /**
10587
10729
  * @SINCE 1.60.0
10588
10730
  *
@@ -10699,14 +10841,14 @@ declare module "sap/ui/unified/ColorPickerPopover" {
10699
10841
  *
10700
10842
  * Fired when the submit button of the popover is clicked.
10701
10843
  */
10702
- change?: Function;
10844
+ change?: (oEvent: Event) => void;
10703
10845
 
10704
10846
  /**
10705
10847
  * @SINCE 1.85
10706
10848
  *
10707
10849
  * Fired when the value is changed by user interaction in the internal ColorPicker
10708
10850
  */
10709
- liveChange?: Function;
10851
+ liveChange?: (oEvent: Event) => void;
10710
10852
  }
10711
10853
  }
10712
10854
 
@@ -10759,6 +10901,31 @@ declare module "sap/ui/unified/ContentSwitcher" {
10759
10901
  mSettings?: $ContentSwitcherSettings
10760
10902
  );
10761
10903
 
10904
+ /**
10905
+ * Creates a new subclass of class sap.ui.unified.ContentSwitcher with name `sClassName` and enriches it
10906
+ * with the information contained in `oClassInfo`.
10907
+ *
10908
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10909
+ */
10910
+ static extend<T extends Record<string, unknown>>(
10911
+ /**
10912
+ * Name of the class being created
10913
+ */
10914
+ sClassName: string,
10915
+ /**
10916
+ * Object literal with information about the class
10917
+ */
10918
+ oClassInfo?: sap.ClassInfo<T, ContentSwitcher>,
10919
+ /**
10920
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10921
+ * used by this class
10922
+ */
10923
+ FNMetaImpl?: Function
10924
+ ): Function;
10925
+ /**
10926
+ * Returns a metadata object for class sap.ui.unified.ContentSwitcher.
10927
+ */
10928
+ static getMetadata(): ElementMetadata;
10762
10929
  /**
10763
10930
  * Adds some content1 to the aggregation {@link #getContent1 content1}.
10764
10931
  */
@@ -10785,27 +10952,6 @@ declare module "sap/ui/unified/ContentSwitcher" {
10785
10952
  * Destroys all the content2 in the aggregation {@link #getContent2 content2}.
10786
10953
  */
10787
10954
  destroyContent2(): this;
10788
- /**
10789
- * Creates a new subclass of class sap.ui.unified.ContentSwitcher with name `sClassName` and enriches it
10790
- * with the information contained in `oClassInfo`.
10791
- *
10792
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10793
- */
10794
- static extend<T extends Record<string, unknown>>(
10795
- /**
10796
- * Name of the class being created
10797
- */
10798
- sClassName: string,
10799
- /**
10800
- * Object literal with information about the class
10801
- */
10802
- oClassInfo?: sap.ClassInfo<T, ContentSwitcher>,
10803
- /**
10804
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10805
- * used by this class
10806
- */
10807
- FNMetaImpl?: Function
10808
- ): Function;
10809
10955
  /**
10810
10956
  * Gets current value of property {@link #getActiveContent activeContent}.
10811
10957
  *
@@ -10837,10 +10983,6 @@ declare module "sap/ui/unified/ContentSwitcher" {
10837
10983
  * The controls that should be shown in the second content
10838
10984
  */
10839
10985
  getContent2(): Control[];
10840
- /**
10841
- * Returns a metadata object for class sap.ui.unified.ContentSwitcher.
10842
- */
10843
- static getMetadata(): ElementMetadata;
10844
10986
  /**
10845
10987
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent1 content1}. and returns
10846
10988
  * its index if found or -1 otherwise.
@@ -11079,6 +11221,10 @@ declare module "sap/ui/unified/Currency" {
11079
11221
  */
11080
11222
  FNMetaImpl?: Function
11081
11223
  ): Function;
11224
+ /**
11225
+ * Returns a metadata object for class sap.ui.unified.Currency.
11226
+ */
11227
+ static getMetadata(): ElementMetadata;
11082
11228
  /**
11083
11229
  * See:
11084
11230
  * sap.ui.core.Control#getAccessibilityInfo
@@ -11117,10 +11263,6 @@ declare module "sap/ui/unified/Currency" {
11117
11263
  * Defines the space that is available for the precision of the various currencies.
11118
11264
  */
11119
11265
  getMaxPrecision(): int;
11120
- /**
11121
- * Returns a metadata object for class sap.ui.unified.Currency.
11122
- */
11123
- static getMetadata(): ElementMetadata;
11124
11266
  /**
11125
11267
  * @SINCE 1.54
11126
11268
  *
@@ -11308,6 +11450,10 @@ declare module "sap/ui/unified/DateRange" {
11308
11450
  */
11309
11451
  FNMetaImpl?: Function
11310
11452
  ): Function;
11453
+ /**
11454
+ * Returns a metadata object for class sap.ui.unified.DateRange.
11455
+ */
11456
+ static getMetadata(): ElementMetadata;
11311
11457
  /**
11312
11458
  * Gets current value of property {@link #getEndDate endDate}.
11313
11459
  *
@@ -11315,10 +11461,6 @@ declare module "sap/ui/unified/DateRange" {
11315
11461
  * be a JavaScript date object.
11316
11462
  */
11317
11463
  getEndDate(): object;
11318
- /**
11319
- * Returns a metadata object for class sap.ui.unified.DateRange.
11320
- */
11321
- static getMetadata(): ElementMetadata;
11322
11464
  /**
11323
11465
  * Gets current value of property {@link #getStartDate startDate}.
11324
11466
  *
@@ -11440,6 +11582,10 @@ declare module "sap/ui/unified/DateTypeRange" {
11440
11582
  */
11441
11583
  FNMetaImpl?: Function
11442
11584
  ): Function;
11585
+ /**
11586
+ * Returns a metadata object for class sap.ui.unified.DateTypeRange.
11587
+ */
11588
+ static getMetadata(): ElementMetadata;
11443
11589
  /**
11444
11590
  * @SINCE 1.76.0
11445
11591
  *
@@ -11449,10 +11595,6 @@ declare module "sap/ui/unified/DateTypeRange" {
11449
11595
  * background color defined in `Calendar` `specialDates` aggregation
11450
11596
  */
11451
11597
  getColor(): CSSColor;
11452
- /**
11453
- * Returns a metadata object for class sap.ui.unified.DateTypeRange.
11454
- */
11455
- static getMetadata(): ElementMetadata;
11456
11598
  /**
11457
11599
  * @SINCE 1.81.0
11458
11600
  *
@@ -11629,6 +11771,31 @@ declare module "sap/ui/unified/FileUploader" {
11629
11771
  mSettings?: $FileUploaderSettings
11630
11772
  );
11631
11773
 
11774
+ /**
11775
+ * Creates a new subclass of class sap.ui.unified.FileUploader with name `sClassName` and enriches it with
11776
+ * the information contained in `oClassInfo`.
11777
+ *
11778
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11779
+ */
11780
+ static extend<T extends Record<string, unknown>>(
11781
+ /**
11782
+ * Name of the class being created
11783
+ */
11784
+ sClassName: string,
11785
+ /**
11786
+ * Object literal with information about the class
11787
+ */
11788
+ oClassInfo?: sap.ClassInfo<T, FileUploader>,
11789
+ /**
11790
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11791
+ * used by this class
11792
+ */
11793
+ FNMetaImpl?: Function
11794
+ ): Function;
11795
+ /**
11796
+ * Returns a metadata object for class sap.ui.unified.FileUploader.
11797
+ */
11798
+ static getMetadata(): ElementMetadata;
11632
11799
  /**
11633
11800
  * @SINCE 1.24.0
11634
11801
  *
@@ -12350,27 +12517,6 @@ declare module "sap/ui/unified/FileUploader" {
12350
12517
  */
12351
12518
  oListener?: object
12352
12519
  ): this;
12353
- /**
12354
- * Creates a new subclass of class sap.ui.unified.FileUploader with name `sClassName` and enriches it with
12355
- * the information contained in `oClassInfo`.
12356
- *
12357
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12358
- */
12359
- static extend<T extends Record<string, unknown>>(
12360
- /**
12361
- * Name of the class being created
12362
- */
12363
- sClassName: string,
12364
- /**
12365
- * Object literal with information about the class
12366
- */
12367
- oClassInfo?: sap.ClassInfo<T, FileUploader>,
12368
- /**
12369
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12370
- * used by this class
12371
- */
12372
- FNMetaImpl?: Function
12373
- ): Function;
12374
12520
  /**
12375
12521
  * Fires event {@link #event:change change} to attached listeners.
12376
12522
  */
@@ -12755,10 +12901,6 @@ declare module "sap/ui/unified/FileUploader" {
12755
12901
  * This property is not supported by Internet Explorer 9.
12756
12902
  */
12757
12903
  getMaximumFileSize(): float;
12758
- /**
12759
- * Returns a metadata object for class sap.ui.unified.FileUploader.
12760
- */
12761
- static getMetadata(): ElementMetadata;
12762
12904
  /**
12763
12905
  * Gets current value of property {@link #getMimeType mimeType}.
12764
12906
  *
@@ -13772,7 +13914,7 @@ declare module "sap/ui/unified/FileUploader" {
13772
13914
  * **Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in
13773
13915
  * Chrome browser when the Cancel button of the uploads window is pressed.
13774
13916
  */
13775
- change?: Function;
13917
+ change?: (oEvent: Event) => void;
13776
13918
 
13777
13919
  /**
13778
13920
  * Event is fired as soon as the upload request is completed (either successful or unsuccessful).
@@ -13781,28 +13923,28 @@ declare module "sap/ui/unified/FileUploader" {
13781
13923
  * progress of the upload can be monitored by listening to the `uploadProgress` event. However, this covers
13782
13924
  * only the client side of the upload process and does not give any success status from the server.
13783
13925
  */
13784
- uploadComplete?: Function;
13926
+ uploadComplete?: (oEvent: Event) => void;
13785
13927
 
13786
13928
  /**
13787
13929
  * Event is fired when the type of a file does not match the `mimeType` or `fileType` property.
13788
13930
  */
13789
- typeMissmatch?: Function;
13931
+ typeMissmatch?: (oEvent: Event) => void;
13790
13932
 
13791
13933
  /**
13792
13934
  * Event is fired when the size of a file is above the `maximumFileSize` property. This event is not supported
13793
13935
  * by Internet Explorer 9 (same restriction as for the property `maximumFileSize`).
13794
13936
  */
13795
- fileSizeExceed?: Function;
13937
+ fileSizeExceed?: (oEvent: Event) => void;
13796
13938
 
13797
13939
  /**
13798
13940
  * Event is fired when the size of the file is 0
13799
13941
  */
13800
- fileEmpty?: Function;
13942
+ fileEmpty?: (oEvent: Event) => void;
13801
13943
 
13802
13944
  /**
13803
13945
  * Event is fired when the file is allowed for upload on client side.
13804
13946
  */
13805
- fileAllowed?: Function;
13947
+ fileAllowed?: (oEvent: Event) => void;
13806
13948
 
13807
13949
  /**
13808
13950
  * @SINCE 1.24.0
@@ -13815,7 +13957,7 @@ declare module "sap/ui/unified/FileUploader" {
13815
13957
  * This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
13816
13958
  * Internet Explorer 9.
13817
13959
  */
13818
- uploadProgress?: Function;
13960
+ uploadProgress?: (oEvent: Event) => void;
13819
13961
 
13820
13962
  /**
13821
13963
  * @SINCE 1.24.0
@@ -13825,7 +13967,7 @@ declare module "sap/ui/unified/FileUploader" {
13825
13967
  * This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
13826
13968
  * Internet Explorer 9.
13827
13969
  */
13828
- uploadAborted?: Function;
13970
+ uploadAborted?: (oEvent: Event) => void;
13829
13971
 
13830
13972
  /**
13831
13973
  * @SINCE 1.24.0
@@ -13833,14 +13975,14 @@ declare module "sap/ui/unified/FileUploader" {
13833
13975
  * Event is fired, if the filename of a chosen file is longer than the value specified with the `maximumFilenameLength`
13834
13976
  * property.
13835
13977
  */
13836
- filenameLengthExceed?: Function;
13978
+ filenameLengthExceed?: (oEvent: Event) => void;
13837
13979
 
13838
13980
  /**
13839
13981
  * @SINCE 1.30.0
13840
13982
  *
13841
13983
  * Event is fired before an upload is started.
13842
13984
  */
13843
- uploadStart?: Function;
13985
+ uploadStart?: (oEvent: Event) => void;
13844
13986
  }
13845
13987
  }
13846
13988
 
@@ -14142,6 +14284,31 @@ declare module "sap/ui/unified/Menu" {
14142
14284
  mSettings?: $MenuSettings
14143
14285
  );
14144
14286
 
14287
+ /**
14288
+ * Creates a new subclass of class sap.ui.unified.Menu with name `sClassName` and enriches it with the information
14289
+ * contained in `oClassInfo`.
14290
+ *
14291
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14292
+ */
14293
+ static extend<T extends Record<string, unknown>>(
14294
+ /**
14295
+ * Name of the class being created
14296
+ */
14297
+ sClassName: string,
14298
+ /**
14299
+ * Object literal with information about the class
14300
+ */
14301
+ oClassInfo?: sap.ClassInfo<T, Menu>,
14302
+ /**
14303
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14304
+ * used by this class
14305
+ */
14306
+ FNMetaImpl?: Function
14307
+ ): Function;
14308
+ /**
14309
+ * Returns a metadata object for class sap.ui.unified.Menu.
14310
+ */
14311
+ static getMetadata(): ElementMetadata;
14145
14312
  /**
14146
14313
  * @SINCE 1.26.3
14147
14314
  *
@@ -14230,27 +14397,6 @@ declare module "sap/ui/unified/Menu" {
14230
14397
  */
14231
14398
  oListener?: object
14232
14399
  ): this;
14233
- /**
14234
- * Creates a new subclass of class sap.ui.unified.Menu with name `sClassName` and enriches it with the information
14235
- * contained in `oClassInfo`.
14236
- *
14237
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14238
- */
14239
- static extend<T extends Record<string, unknown>>(
14240
- /**
14241
- * Name of the class being created
14242
- */
14243
- sClassName: string,
14244
- /**
14245
- * Object literal with information about the class
14246
- */
14247
- oClassInfo?: sap.ClassInfo<T, Menu>,
14248
- /**
14249
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14250
- * used by this class
14251
- */
14252
- FNMetaImpl?: Function
14253
- ): Function;
14254
14400
  /**
14255
14401
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
14256
14402
  */
@@ -14306,10 +14452,6 @@ declare module "sap/ui/unified/Menu" {
14306
14452
  * Default value is `0`.
14307
14453
  */
14308
14454
  getMaxVisibleItems(): int;
14309
- /**
14310
- * Returns a metadata object for class sap.ui.unified.Menu.
14311
- */
14312
- static getMetadata(): ElementMetadata;
14313
14455
  /**
14314
14456
  * @SINCE 1.25.0
14315
14457
  *
@@ -14561,7 +14703,7 @@ declare module "sap/ui/unified/Menu" {
14561
14703
  * one of its direct or indirect submenus. **Note:** There is also a select event available for each single
14562
14704
  * menu item. This event and the event of the menu items are redundant.
14563
14705
  */
14564
- itemSelect?: Function;
14706
+ itemSelect?: (oEvent: Event) => void;
14565
14707
  }
14566
14708
  }
14567
14709
 
@@ -14617,15 +14759,6 @@ declare module "sap/ui/unified/MenuItem" {
14617
14759
  mSettings?: $MenuItemSettings
14618
14760
  );
14619
14761
 
14620
- /**
14621
- * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
14622
- */
14623
- addAriaLabelledBy(
14624
- /**
14625
- * The ariaLabelledBy to add; if empty, nothing is inserted
14626
- */
14627
- vAriaLabelledBy: ID | Control
14628
- ): this;
14629
14762
  /**
14630
14763
  * Creates a new subclass of class sap.ui.unified.MenuItem with name `sClassName` and enriches it with the
14631
14764
  * information contained in `oClassInfo`.
@@ -14647,6 +14780,19 @@ declare module "sap/ui/unified/MenuItem" {
14647
14780
  */
14648
14781
  FNMetaImpl?: Function
14649
14782
  ): Function;
14783
+ /**
14784
+ * Returns a metadata object for class sap.ui.unified.MenuItem.
14785
+ */
14786
+ static getMetadata(): ElementMetadata;
14787
+ /**
14788
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
14789
+ */
14790
+ addAriaLabelledBy(
14791
+ /**
14792
+ * The ariaLabelledBy to add; if empty, nothing is inserted
14793
+ */
14794
+ vAriaLabelledBy: ID | Control
14795
+ ): this;
14650
14796
  /**
14651
14797
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
14652
14798
  * ariaLabelledBy}.
@@ -14661,10 +14807,6 @@ declare module "sap/ui/unified/MenuItem" {
14661
14807
  * Default value is `empty string`.
14662
14808
  */
14663
14809
  getIcon(): URI;
14664
- /**
14665
- * Returns a metadata object for class sap.ui.unified.MenuItem.
14666
- */
14667
- static getMetadata(): ElementMetadata;
14668
14810
  /**
14669
14811
  * Gets current value of property {@link #getText text}.
14670
14812
  *
@@ -14789,9 +14931,34 @@ declare module "sap/ui/unified/MenuItemBase" {
14789
14931
  );
14790
14932
 
14791
14933
  /**
14792
- * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.unified.MenuItemBase`.
14934
+ * Creates a new subclass of class sap.ui.unified.MenuItemBase with name `sClassName` and enriches it with
14935
+ * the information contained in `oClassInfo`.
14793
14936
  *
14794
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
14937
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
14938
+ */
14939
+ static extend<T extends Record<string, unknown>>(
14940
+ /**
14941
+ * Name of the class being created
14942
+ */
14943
+ sClassName: string,
14944
+ /**
14945
+ * Object literal with information about the class
14946
+ */
14947
+ oClassInfo?: sap.ClassInfo<T, MenuItemBase>,
14948
+ /**
14949
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14950
+ * used by this class
14951
+ */
14952
+ FNMetaImpl?: Function
14953
+ ): Function;
14954
+ /**
14955
+ * Returns a metadata object for class sap.ui.unified.MenuItemBase.
14956
+ */
14957
+ static getMetadata(): ElementMetadata;
14958
+ /**
14959
+ * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.unified.MenuItemBase`.
14960
+ *
14961
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
14795
14962
  * otherwise it will be bound to this `sap.ui.unified.MenuItemBase` itself.
14796
14963
  *
14797
14964
  * Fired when the item is selected by the user. **Note:** The event is also available for items which have
@@ -14852,27 +15019,6 @@ declare module "sap/ui/unified/MenuItemBase" {
14852
15019
  */
14853
15020
  oListener?: object
14854
15021
  ): this;
14855
- /**
14856
- * Creates a new subclass of class sap.ui.unified.MenuItemBase with name `sClassName` and enriches it with
14857
- * the information contained in `oClassInfo`.
14858
- *
14859
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
14860
- */
14861
- static extend<T extends Record<string, unknown>>(
14862
- /**
14863
- * Name of the class being created
14864
- */
14865
- sClassName: string,
14866
- /**
14867
- * Object literal with information about the class
14868
- */
14869
- oClassInfo?: sap.ClassInfo<T, MenuItemBase>,
14870
- /**
14871
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14872
- * used by this class
14873
- */
14874
- FNMetaImpl?: Function
14875
- ): Function;
14876
15022
  /**
14877
15023
  * Fires event {@link #event:select select} to attached listeners.
14878
15024
  */
@@ -14896,10 +15042,6 @@ declare module "sap/ui/unified/MenuItemBase" {
14896
15042
  * Default value is `true`.
14897
15043
  */
14898
15044
  getEnabled(): boolean;
14899
- /**
14900
- * Returns a metadata object for class sap.ui.unified.MenuItemBase.
14901
- */
14902
- static getMetadata(): ElementMetadata;
14903
15045
  /**
14904
15046
  * Gets current value of property {@link #getStartsSection startsSection}.
14905
15047
  *
@@ -15061,7 +15203,7 @@ declare module "sap/ui/unified/MenuItemBase" {
15061
15203
  * a submenu. In general, applications must not handle event in this case because the user selection opens
15062
15204
  * the sub menu.
15063
15205
  */
15064
- select?: Function;
15206
+ select?: (oEvent: Event) => void;
15065
15207
  }
15066
15208
  }
15067
15209
 
@@ -15118,13 +15260,6 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
15118
15260
  mSettings?: $MenuTextFieldItemSettings
15119
15261
  );
15120
15262
 
15121
- /**
15122
- * @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
15123
- * this type of menu item.
15124
- *
15125
- * The aggregation `submenu` (inherited from parent class) is not supported for this type of menu item.
15126
- */
15127
- destroySubmenu(): this;
15128
15263
  /**
15129
15264
  * Creates a new subclass of class sap.ui.unified.MenuTextFieldItem with name `sClassName` and enriches
15130
15265
  * it with the information contained in `oClassInfo`.
@@ -15146,6 +15281,17 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
15146
15281
  */
15147
15282
  FNMetaImpl?: Function
15148
15283
  ): Function;
15284
+ /**
15285
+ * Returns a metadata object for class sap.ui.unified.MenuTextFieldItem.
15286
+ */
15287
+ static getMetadata(): ElementMetadata;
15288
+ /**
15289
+ * @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
15290
+ * this type of menu item.
15291
+ *
15292
+ * The aggregation `submenu` (inherited from parent class) is not supported for this type of menu item.
15293
+ */
15294
+ destroySubmenu(): this;
15149
15295
  /**
15150
15296
  * Gets current value of property {@link #getIcon icon}.
15151
15297
  *
@@ -15159,10 +15305,6 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
15159
15305
  * Defines the label of the text field of the item.
15160
15306
  */
15161
15307
  getLabel(): string;
15162
- /**
15163
- * Returns a metadata object for class sap.ui.unified.MenuTextFieldItem.
15164
- */
15165
- static getMetadata(): ElementMetadata;
15166
15308
  /**
15167
15309
  * @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
15168
15310
  * this type of menu item.
@@ -15342,6 +15484,31 @@ declare module "sap/ui/unified/Shell" {
15342
15484
  mSettings?: $ShellSettings
15343
15485
  );
15344
15486
 
15487
+ /**
15488
+ * Creates a new subclass of class sap.ui.unified.Shell with name `sClassName` and enriches it with the
15489
+ * information contained in `oClassInfo`.
15490
+ *
15491
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.ShellLayout.extend}.
15492
+ */
15493
+ static extend<T extends Record<string, unknown>>(
15494
+ /**
15495
+ * Name of the class being created
15496
+ */
15497
+ sClassName: string,
15498
+ /**
15499
+ * Object literal with information about the class
15500
+ */
15501
+ oClassInfo?: sap.ClassInfo<T, Shell>,
15502
+ /**
15503
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15504
+ * used by this class
15505
+ */
15506
+ FNMetaImpl?: Function
15507
+ ): Function;
15508
+ /**
15509
+ * Returns a metadata object for class sap.ui.unified.Shell.
15510
+ */
15511
+ static getMetadata(): ElementMetadata;
15345
15512
  /**
15346
15513
  * Adds some curtainContent to the aggregation {@link #getCurtainContent curtainContent}.
15347
15514
  */
@@ -15409,27 +15576,6 @@ declare module "sap/ui/unified/Shell" {
15409
15576
  * Destroys the user in the aggregation {@link #getUser user}.
15410
15577
  */
15411
15578
  destroyUser(): this;
15412
- /**
15413
- * Creates a new subclass of class sap.ui.unified.Shell with name `sClassName` and enriches it with the
15414
- * information contained in `oClassInfo`.
15415
- *
15416
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.ShellLayout.extend}.
15417
- */
15418
- static extend<T extends Record<string, unknown>>(
15419
- /**
15420
- * Name of the class being created
15421
- */
15422
- sClassName: string,
15423
- /**
15424
- * Object literal with information about the class
15425
- */
15426
- oClassInfo?: sap.ClassInfo<T, Shell>,
15427
- /**
15428
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15429
- * used by this class
15430
- */
15431
- FNMetaImpl?: Function
15432
- ): Function;
15433
15579
  /**
15434
15580
  * Gets content of aggregation {@link #getCurtainContent curtainContent}.
15435
15581
  *
@@ -15462,10 +15608,6 @@ declare module "sap/ui/unified/Shell" {
15462
15608
  * The application icon. If a custom header is set this property has no effect.
15463
15609
  */
15464
15610
  getIcon(): URI;
15465
- /**
15466
- * Returns a metadata object for class sap.ui.unified.Shell.
15467
- */
15468
- static getMetadata(): ElementMetadata;
15469
15611
  /**
15470
15612
  * Gets content of aggregation {@link #getSearch search}.
15471
15613
  *
@@ -15878,6 +16020,31 @@ declare module "sap/ui/unified/ShellHeadItem" {
15878
16020
  mSettings?: $ShellHeadItemSettings
15879
16021
  );
15880
16022
 
16023
+ /**
16024
+ * Creates a new subclass of class sap.ui.unified.ShellHeadItem with name `sClassName` and enriches it with
16025
+ * the information contained in `oClassInfo`.
16026
+ *
16027
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
16028
+ */
16029
+ static extend<T extends Record<string, unknown>>(
16030
+ /**
16031
+ * Name of the class being created
16032
+ */
16033
+ sClassName: string,
16034
+ /**
16035
+ * Object literal with information about the class
16036
+ */
16037
+ oClassInfo?: sap.ClassInfo<T, ShellHeadItem>,
16038
+ /**
16039
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16040
+ * used by this class
16041
+ */
16042
+ FNMetaImpl?: Function
16043
+ ): Function;
16044
+ /**
16045
+ * Returns a metadata object for class sap.ui.unified.ShellHeadItem.
16046
+ */
16047
+ static getMetadata(): ElementMetadata;
15881
16048
  /**
15882
16049
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
15883
16050
  */
@@ -15943,27 +16110,6 @@ declare module "sap/ui/unified/ShellHeadItem" {
15943
16110
  */
15944
16111
  oListener?: object
15945
16112
  ): this;
15946
- /**
15947
- * Creates a new subclass of class sap.ui.unified.ShellHeadItem with name `sClassName` and enriches it with
15948
- * the information contained in `oClassInfo`.
15949
- *
15950
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15951
- */
15952
- static extend<T extends Record<string, unknown>>(
15953
- /**
15954
- * Name of the class being created
15955
- */
15956
- sClassName: string,
15957
- /**
15958
- * Object literal with information about the class
15959
- */
15960
- oClassInfo?: sap.ClassInfo<T, ShellHeadItem>,
15961
- /**
15962
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15963
- * used by this class
15964
- */
15965
- FNMetaImpl?: Function
15966
- ): Function;
15967
16113
  /**
15968
16114
  * Fires event {@link #event:press press} to attached listeners.
15969
16115
  */
@@ -15985,10 +16131,6 @@ declare module "sap/ui/unified/ShellHeadItem" {
15985
16131
  * must be set.
15986
16132
  */
15987
16133
  getIcon(): URI;
15988
- /**
15989
- * Returns a metadata object for class sap.ui.unified.ShellHeadItem.
15990
- */
15991
- static getMetadata(): ElementMetadata;
15992
16134
  /**
15993
16135
  * Gets current value of property {@link #getSelected selected}.
15994
16136
  *
@@ -16237,7 +16379,7 @@ declare module "sap/ui/unified/ShellHeadItem" {
16237
16379
  /**
16238
16380
  * Event is fired when the user presses the item.
16239
16381
  */
16240
- press?: Function;
16382
+ press?: (oEvent: Event) => void;
16241
16383
  }
16242
16384
  }
16243
16385
 
@@ -16292,6 +16434,31 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
16292
16434
  mSettings?: $ShellHeadUserItemSettings
16293
16435
  );
16294
16436
 
16437
+ /**
16438
+ * Creates a new subclass of class sap.ui.unified.ShellHeadUserItem with name `sClassName` and enriches
16439
+ * it with the information contained in `oClassInfo`.
16440
+ *
16441
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
16442
+ */
16443
+ static extend<T extends Record<string, unknown>>(
16444
+ /**
16445
+ * Name of the class being created
16446
+ */
16447
+ sClassName: string,
16448
+ /**
16449
+ * Object literal with information about the class
16450
+ */
16451
+ oClassInfo?: sap.ClassInfo<T, ShellHeadUserItem>,
16452
+ /**
16453
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16454
+ * used by this class
16455
+ */
16456
+ FNMetaImpl?: Function
16457
+ ): Function;
16458
+ /**
16459
+ * Returns a metadata object for class sap.ui.unified.ShellHeadUserItem.
16460
+ */
16461
+ static getMetadata(): ElementMetadata;
16295
16462
  /**
16296
16463
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
16297
16464
  */
@@ -16357,27 +16524,6 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
16357
16524
  */
16358
16525
  oListener?: object
16359
16526
  ): this;
16360
- /**
16361
- * Creates a new subclass of class sap.ui.unified.ShellHeadUserItem with name `sClassName` and enriches
16362
- * it with the information contained in `oClassInfo`.
16363
- *
16364
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
16365
- */
16366
- static extend<T extends Record<string, unknown>>(
16367
- /**
16368
- * Name of the class being created
16369
- */
16370
- sClassName: string,
16371
- /**
16372
- * Object literal with information about the class
16373
- */
16374
- oClassInfo?: sap.ClassInfo<T, ShellHeadUserItem>,
16375
- /**
16376
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16377
- * used by this class
16378
- */
16379
- FNMetaImpl?: Function
16380
- ): Function;
16381
16527
  /**
16382
16528
  * Fires event {@link #event:press press} to attached listeners.
16383
16529
  */
@@ -16398,10 +16544,6 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
16398
16544
  * An image of the user, normally a URI to an image but also an icon from the sap.ui.core.IconPool is possible.
16399
16545
  */
16400
16546
  getImage(): URI;
16401
- /**
16402
- * Returns a metadata object for class sap.ui.unified.ShellHeadUserItem.
16403
- */
16404
- static getMetadata(): ElementMetadata;
16405
16547
  /**
16406
16548
  * @SINCE 1.27.0
16407
16549
  *
@@ -16509,7 +16651,7 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
16509
16651
  /**
16510
16652
  * Event is fired when the user presses the button.
16511
16653
  */
16512
- press?: Function;
16654
+ press?: (oEvent: Event) => void;
16513
16655
  }
16514
16656
  }
16515
16657
 
@@ -16564,6 +16706,31 @@ declare module "sap/ui/unified/ShellLayout" {
16564
16706
  mSettings?: $ShellLayoutSettings
16565
16707
  );
16566
16708
 
16709
+ /**
16710
+ * Creates a new subclass of class sap.ui.unified.ShellLayout with name `sClassName` and enriches it with
16711
+ * the information contained in `oClassInfo`.
16712
+ *
16713
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16714
+ */
16715
+ static extend<T extends Record<string, unknown>>(
16716
+ /**
16717
+ * Name of the class being created
16718
+ */
16719
+ sClassName: string,
16720
+ /**
16721
+ * Object literal with information about the class
16722
+ */
16723
+ oClassInfo?: sap.ClassInfo<T, ShellLayout>,
16724
+ /**
16725
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16726
+ * used by this class
16727
+ */
16728
+ FNMetaImpl?: Function
16729
+ ): Function;
16730
+ /**
16731
+ * Returns a metadata object for class sap.ui.unified.ShellLayout.
16732
+ */
16733
+ static getMetadata(): ElementMetadata;
16567
16734
  /**
16568
16735
  * Adds some content to the aggregation {@link #getContent content}.
16569
16736
  */
@@ -16594,27 +16761,6 @@ declare module "sap/ui/unified/ShellLayout" {
16594
16761
  * Destroys all the paneContent in the aggregation {@link #getPaneContent paneContent}.
16595
16762
  */
16596
16763
  destroyPaneContent(): this;
16597
- /**
16598
- * Creates a new subclass of class sap.ui.unified.ShellLayout with name `sClassName` and enriches it with
16599
- * the information contained in `oClassInfo`.
16600
- *
16601
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16602
- */
16603
- static extend<T extends Record<string, unknown>>(
16604
- /**
16605
- * Name of the class being created
16606
- */
16607
- sClassName: string,
16608
- /**
16609
- * Object literal with information about the class
16610
- */
16611
- oClassInfo?: sap.ClassInfo<T, ShellLayout>,
16612
- /**
16613
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16614
- * used by this class
16615
- */
16616
- FNMetaImpl?: Function
16617
- ): Function;
16618
16764
  /**
16619
16765
  * Gets content of aggregation {@link #getContent content}.
16620
16766
  *
@@ -16644,10 +16790,6 @@ declare module "sap/ui/unified/ShellLayout" {
16644
16790
  * Default value is `true`.
16645
16791
  */
16646
16792
  getHeaderVisible(): boolean;
16647
- /**
16648
- * Returns a metadata object for class sap.ui.unified.ShellLayout.
16649
- */
16650
- static getMetadata(): ElementMetadata;
16651
16793
  /**
16652
16794
  * Gets content of aggregation {@link #getPaneContent paneContent}.
16653
16795
  *
@@ -16884,6 +17026,31 @@ declare module "sap/ui/unified/ShellOverlay" {
16884
17026
  mSettings?: $ShellOverlaySettings
16885
17027
  );
16886
17028
 
17029
+ /**
17030
+ * Creates a new subclass of class sap.ui.unified.ShellOverlay with name `sClassName` and enriches it with
17031
+ * the information contained in `oClassInfo`.
17032
+ *
17033
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
17034
+ */
17035
+ static extend<T extends Record<string, unknown>>(
17036
+ /**
17037
+ * Name of the class being created
17038
+ */
17039
+ sClassName: string,
17040
+ /**
17041
+ * Object literal with information about the class
17042
+ */
17043
+ oClassInfo?: sap.ClassInfo<T, ShellOverlay>,
17044
+ /**
17045
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
17046
+ * used by this class
17047
+ */
17048
+ FNMetaImpl?: Function
17049
+ ): Function;
17050
+ /**
17051
+ * Returns a metadata object for class sap.ui.unified.ShellOverlay.
17052
+ */
17053
+ static getMetadata(): ElementMetadata;
16887
17054
  /**
16888
17055
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
16889
17056
  */
@@ -16970,27 +17137,6 @@ declare module "sap/ui/unified/ShellOverlay" {
16970
17137
  */
16971
17138
  oListener?: object
16972
17139
  ): this;
16973
- /**
16974
- * Creates a new subclass of class sap.ui.unified.ShellOverlay with name `sClassName` and enriches it with
16975
- * the information contained in `oClassInfo`.
16976
- *
16977
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16978
- */
16979
- static extend<T extends Record<string, unknown>>(
16980
- /**
16981
- * Name of the class being created
16982
- */
16983
- sClassName: string,
16984
- /**
16985
- * Object literal with information about the class
16986
- */
16987
- oClassInfo?: sap.ClassInfo<T, ShellOverlay>,
16988
- /**
16989
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16990
- * used by this class
16991
- */
16992
- FNMetaImpl?: Function
16993
- ): Function;
16994
17140
  /**
16995
17141
  * Fires event {@link #event:closed closed} to attached listeners.
16996
17142
  */
@@ -17011,10 +17157,6 @@ declare module "sap/ui/unified/ShellOverlay" {
17011
17157
  * The content to appear in the overlay.
17012
17158
  */
17013
17159
  getContent(): Control[];
17014
- /**
17015
- * Returns a metadata object for class sap.ui.unified.ShellOverlay.
17016
- */
17017
- static getMetadata(): ElementMetadata;
17018
17160
  /**
17019
17161
  * Gets content of aggregation {@link #getSearch search}.
17020
17162
  *
@@ -17129,7 +17271,7 @@ declare module "sap/ui/unified/ShellOverlay" {
17129
17271
  /**
17130
17272
  * Fired when the overlay was closed.
17131
17273
  */
17132
- closed?: Function;
17274
+ closed?: (oEvent: Event) => void;
17133
17275
  }
17134
17276
  }
17135
17277
 
@@ -17184,6 +17326,31 @@ declare module "sap/ui/unified/SplitContainer" {
17184
17326
  mSettings?: $SplitContainerSettings
17185
17327
  );
17186
17328
 
17329
+ /**
17330
+ * Creates a new subclass of class sap.ui.unified.SplitContainer with name `sClassName` and enriches it
17331
+ * with the information contained in `oClassInfo`.
17332
+ *
17333
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
17334
+ */
17335
+ static extend<T extends Record<string, unknown>>(
17336
+ /**
17337
+ * Name of the class being created
17338
+ */
17339
+ sClassName: string,
17340
+ /**
17341
+ * Object literal with information about the class
17342
+ */
17343
+ oClassInfo?: sap.ClassInfo<T, SplitContainer>,
17344
+ /**
17345
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
17346
+ * used by this class
17347
+ */
17348
+ FNMetaImpl?: Function
17349
+ ): Function;
17350
+ /**
17351
+ * Returns a metadata object for class sap.ui.unified.SplitContainer.
17352
+ */
17353
+ static getMetadata(): ElementMetadata;
17187
17354
  /**
17188
17355
  * Adds some content to the aggregation {@link #getContent content}.
17189
17356
  */
@@ -17210,37 +17377,12 @@ declare module "sap/ui/unified/SplitContainer" {
17210
17377
  * Destroys all the secondaryContent in the aggregation {@link #getSecondaryContent secondaryContent}.
17211
17378
  */
17212
17379
  destroySecondaryContent(): this;
17213
- /**
17214
- * Creates a new subclass of class sap.ui.unified.SplitContainer with name `sClassName` and enriches it
17215
- * with the information contained in `oClassInfo`.
17216
- *
17217
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
17218
- */
17219
- static extend<T extends Record<string, unknown>>(
17220
- /**
17221
- * Name of the class being created
17222
- */
17223
- sClassName: string,
17224
- /**
17225
- * Object literal with information about the class
17226
- */
17227
- oClassInfo?: sap.ClassInfo<T, SplitContainer>,
17228
- /**
17229
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
17230
- * used by this class
17231
- */
17232
- FNMetaImpl?: Function
17233
- ): Function;
17234
17380
  /**
17235
17381
  * Gets content of aggregation {@link #getContent content}.
17236
17382
  *
17237
17383
  * The content to appear in the main area.
17238
17384
  */
17239
17385
  getContent(): Control[];
17240
- /**
17241
- * Returns a metadata object for class sap.ui.unified.SplitContainer.
17242
- */
17243
- static getMetadata(): ElementMetadata;
17244
17386
  /**
17245
17387
  * @SINCE 1.22.0
17246
17388
  *