@openui5/ts-types 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 namespace sap {
4
4
  namespace ui {
@@ -149,29 +149,29 @@ declare namespace sap {
149
149
  /**
150
150
  * Previous button pressed
151
151
  */
152
- pressPrevious?: Function;
152
+ pressPrevious?: (oEvent: sap.ui.base.Event) => void;
153
153
 
154
154
  /**
155
155
  * Next button pressed
156
156
  */
157
- pressNext?: Function;
157
+ pressNext?: (oEvent: sap.ui.base.Event) => void;
158
158
 
159
159
  /**
160
160
  * @SINCE 1.32.0
161
161
  *
162
162
  * First button pressed (normally day)
163
163
  */
164
- pressButton0?: Function;
164
+ pressButton0?: (oEvent: sap.ui.base.Event) => void;
165
165
 
166
166
  /**
167
167
  * Second button pressed (normally month)
168
168
  */
169
- pressButton1?: Function;
169
+ pressButton1?: (oEvent: sap.ui.base.Event) => void;
170
170
 
171
171
  /**
172
172
  * Third button pressed (normally year)
173
173
  */
174
- pressButton2?: Function;
174
+ pressButton2?: (oEvent: sap.ui.base.Event) => void;
175
175
  }
176
176
 
177
177
  interface $MonthSettings extends sap.ui.core.$ControlSettings {
@@ -306,12 +306,12 @@ declare namespace sap {
306
306
  /**
307
307
  * Date selection changed
308
308
  */
309
- select?: Function;
309
+ select?: (oEvent: sap.ui.base.Event) => void;
310
310
 
311
311
  /**
312
312
  * Date focus changed
313
313
  */
314
- focus?: Function;
314
+ focus?: (oEvent: sap.ui.base.Event) => void;
315
315
 
316
316
  /**
317
317
  * @SINCE 1.60
@@ -323,7 +323,7 @@ declare namespace sap {
323
323
  *
324
324
  * **Note:** Works for Gregorian calendars only and when `intervalSelection` is set to `true`.
325
325
  */
326
- weekNumberSelect?: Function;
326
+ weekNumberSelect?: (oEvent: sap.ui.base.Event) => void;
327
327
  }
328
328
 
329
329
  interface $MonthPickerSettings extends sap.ui.core.$ControlSettings {
@@ -386,7 +386,7 @@ declare namespace sap {
386
386
  /**
387
387
  * Month selection changed
388
388
  */
389
- select?: Function;
389
+ select?: (oEvent: sap.ui.base.Event) => void;
390
390
 
391
391
  /**
392
392
  * @SINCE 1.38.0
@@ -394,7 +394,7 @@ declare namespace sap {
394
394
  * If less than 12 months are displayed the `pageChange` event is fired if the displayed months are changed
395
395
  * by user navigation.
396
396
  */
397
- pageChange?: Function;
397
+ pageChange?: (oEvent: sap.ui.base.Event) => void;
398
398
  }
399
399
 
400
400
  interface $MonthsRowSettings extends sap.ui.core.$ControlSettings {
@@ -477,12 +477,12 @@ declare namespace sap {
477
477
  /**
478
478
  * Month selection changed
479
479
  */
480
- select?: Function;
480
+ select?: (oEvent: sap.ui.base.Event) => void;
481
481
 
482
482
  /**
483
483
  * Month focus changed
484
484
  */
485
- focus?: Function;
485
+ focus?: (oEvent: sap.ui.base.Event) => void;
486
486
  }
487
487
 
488
488
  interface $TimesRowSettings extends sap.ui.core.$ControlSettings {
@@ -570,12 +570,12 @@ declare namespace sap {
570
570
  /**
571
571
  * Time selection changed
572
572
  */
573
- select?: Function;
573
+ select?: (oEvent: sap.ui.base.Event) => void;
574
574
 
575
575
  /**
576
576
  * Time focus changed
577
577
  */
578
- focus?: Function;
578
+ focus?: (oEvent: sap.ui.base.Event) => void;
579
579
  }
580
580
 
581
581
  interface $YearPickerSettings extends sap.ui.core.$ControlSettings {
@@ -640,14 +640,14 @@ declare namespace sap {
640
640
  /**
641
641
  * Year selection changed
642
642
  */
643
- select?: Function;
643
+ select?: (oEvent: sap.ui.base.Event) => void;
644
644
 
645
645
  /**
646
646
  * @SINCE 1.38.0
647
647
  *
648
648
  * The `pageChange` event is fired if the displayed years are changed by user navigation.
649
649
  */
650
- pageChange?: Function;
650
+ pageChange?: (oEvent: sap.ui.base.Event) => void;
651
651
  }
652
652
 
653
653
  /**
@@ -689,18 +689,6 @@ declare namespace sap {
689
689
  mSettings?: sap.ui.unified.calendar.$DatesRowSettings
690
690
  );
691
691
 
692
- /**
693
- * displays the a given date without setting the focus
694
- *
695
- * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
696
- * `startDate` and `days` days So set this properties before setting the date.
697
- */
698
- displayDate(
699
- /**
700
- * JavaScript date object for focused date.
701
- */
702
- oDate: object
703
- ): this;
704
692
  /**
705
693
  * Creates a new subclass of class sap.ui.unified.calendar.DatesRow with name `sClassName` and enriches
706
694
  * it with the information contained in `oClassInfo`.
@@ -722,6 +710,22 @@ declare namespace sap {
722
710
  */
723
711
  FNMetaImpl?: Function
724
712
  ): Function;
713
+ /**
714
+ * Returns a metadata object for class sap.ui.unified.calendar.DatesRow.
715
+ */
716
+ static getMetadata(): sap.ui.core.ElementMetadata;
717
+ /**
718
+ * displays the a given date without setting the focus
719
+ *
720
+ * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
721
+ * `startDate` and `days` days So set this properties before setting the date.
722
+ */
723
+ displayDate(
724
+ /**
725
+ * JavaScript date object for focused date.
726
+ */
727
+ oDate: object
728
+ ): this;
725
729
  /**
726
730
  * Gets current value of property {@link #getDays days}.
727
731
  *
@@ -730,10 +734,6 @@ declare namespace sap {
730
734
  * Default value is `7`.
731
735
  */
732
736
  getDays(): int;
733
- /**
734
- * Returns a metadata object for class sap.ui.unified.calendar.DatesRow.
735
- */
736
- static getMetadata(): sap.ui.core.ElementMetadata;
737
737
  /**
738
738
  * @SINCE 1.34.0
739
739
  *
@@ -868,6 +868,31 @@ declare namespace sap {
868
868
  mSettings?: sap.ui.unified.calendar.$HeaderSettings
869
869
  );
870
870
 
871
+ /**
872
+ * Creates a new subclass of class sap.ui.unified.calendar.Header with name `sClassName` and enriches it
873
+ * with the information contained in `oClassInfo`.
874
+ *
875
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
876
+ */
877
+ static extend<T extends Record<string, unknown>>(
878
+ /**
879
+ * Name of the class being created
880
+ */
881
+ sClassName: string,
882
+ /**
883
+ * Object literal with information about the class
884
+ */
885
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.Header>,
886
+ /**
887
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
888
+ * used by this class
889
+ */
890
+ FNMetaImpl?: Function
891
+ ): Function;
892
+ /**
893
+ * Returns a metadata object for class sap.ui.unified.calendar.Header.
894
+ */
895
+ static getMetadata(): sap.ui.core.ElementMetadata;
871
896
  /**
872
897
  * @SINCE 1.32.0
873
898
  *
@@ -1155,27 +1180,6 @@ declare namespace sap {
1155
1180
  */
1156
1181
  oListener?: object
1157
1182
  ): this;
1158
- /**
1159
- * Creates a new subclass of class sap.ui.unified.calendar.Header with name `sClassName` and enriches it
1160
- * with the information contained in `oClassInfo`.
1161
- *
1162
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1163
- */
1164
- static extend<T extends Record<string, unknown>>(
1165
- /**
1166
- * Name of the class being created
1167
- */
1168
- sClassName: string,
1169
- /**
1170
- * Object literal with information about the class
1171
- */
1172
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.Header>,
1173
- /**
1174
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1175
- * used by this class
1176
- */
1177
- FNMetaImpl?: Function
1178
- ): Function;
1179
1183
  /**
1180
1184
  * @SINCE 1.32.0
1181
1185
  *
@@ -1283,10 +1287,6 @@ declare namespace sap {
1283
1287
  * Default value is `true`.
1284
1288
  */
1285
1289
  getEnabledPrevious(): boolean;
1286
- /**
1287
- * Returns a metadata object for class sap.ui.unified.calendar.Header.
1288
- */
1289
- static getMetadata(): sap.ui.core.ElementMetadata;
1290
1290
  /**
1291
1291
  * @SINCE 1.32.0
1292
1292
  *
@@ -1589,6 +1589,31 @@ declare namespace sap {
1589
1589
  mSettings?: sap.ui.unified.calendar.$MonthSettings
1590
1590
  );
1591
1591
 
1592
+ /**
1593
+ * Creates a new subclass of class sap.ui.unified.calendar.Month with name `sClassName` and enriches it
1594
+ * with the information contained in `oClassInfo`.
1595
+ *
1596
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1597
+ */
1598
+ static extend<T extends Record<string, unknown>>(
1599
+ /**
1600
+ * Name of the class being created
1601
+ */
1602
+ sClassName: string,
1603
+ /**
1604
+ * Object literal with information about the class
1605
+ */
1606
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.Month>,
1607
+ /**
1608
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1609
+ * used by this class
1610
+ */
1611
+ FNMetaImpl?: Function
1612
+ ): Function;
1613
+ /**
1614
+ * Returns a metadata object for class sap.ui.unified.calendar.Month.
1615
+ */
1616
+ static getMetadata(): sap.ui.core.ElementMetadata;
1592
1617
  /**
1593
1618
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
1594
1619
  */
@@ -1847,27 +1872,6 @@ declare namespace sap {
1847
1872
  */
1848
1873
  oDate: object
1849
1874
  ): this;
1850
- /**
1851
- * Creates a new subclass of class sap.ui.unified.calendar.Month with name `sClassName` and enriches it
1852
- * with the information contained in `oClassInfo`.
1853
- *
1854
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1855
- */
1856
- static extend<T extends Record<string, unknown>>(
1857
- /**
1858
- * Name of the class being created
1859
- */
1860
- sClassName: string,
1861
- /**
1862
- * Object literal with information about the class
1863
- */
1864
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.Month>,
1865
- /**
1866
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1867
- * used by this class
1868
- */
1869
- FNMetaImpl?: Function
1870
- ): Function;
1871
1875
  /**
1872
1876
  * Fires event {@link #event:focus focus} to attached listeners.
1873
1877
  */
@@ -1969,10 +1973,6 @@ declare namespace sap {
1969
1973
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
1970
1974
  */
1971
1975
  getLegend(): sap.ui.core.ID;
1972
- /**
1973
- * Returns a metadata object for class sap.ui.unified.calendar.Month.
1974
- */
1975
- static getMetadata(): sap.ui.core.ElementMetadata;
1976
1976
  /**
1977
1977
  * @SINCE 1.28.9
1978
1978
  *
@@ -2404,6 +2404,31 @@ declare namespace sap {
2404
2404
  mSettings?: sap.ui.unified.calendar.$MonthPickerSettings
2405
2405
  );
2406
2406
 
2407
+ /**
2408
+ * Creates a new subclass of class sap.ui.unified.calendar.MonthPicker with name `sClassName` and enriches
2409
+ * it with the information contained in `oClassInfo`.
2410
+ *
2411
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2412
+ */
2413
+ static extend<T extends Record<string, unknown>>(
2414
+ /**
2415
+ * Name of the class being created
2416
+ */
2417
+ sClassName: string,
2418
+ /**
2419
+ * Object literal with information about the class
2420
+ */
2421
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.MonthPicker>,
2422
+ /**
2423
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2424
+ * used by this class
2425
+ */
2426
+ FNMetaImpl?: Function
2427
+ ): Function;
2428
+ /**
2429
+ * Returns a metadata object for class sap.ui.unified.calendar.MonthPicker.
2430
+ */
2431
+ static getMetadata(): sap.ui.core.ElementMetadata;
2407
2432
  /**
2408
2433
  * @SINCE 1.92
2409
2434
  *
@@ -2556,27 +2581,6 @@ declare namespace sap {
2556
2581
  */
2557
2582
  oListener?: object
2558
2583
  ): this;
2559
- /**
2560
- * Creates a new subclass of class sap.ui.unified.calendar.MonthPicker with name `sClassName` and enriches
2561
- * it with the information contained in `oClassInfo`.
2562
- *
2563
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2564
- */
2565
- static extend<T extends Record<string, unknown>>(
2566
- /**
2567
- * Name of the class being created
2568
- */
2569
- sClassName: string,
2570
- /**
2571
- * Object literal with information about the class
2572
- */
2573
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.MonthPicker>,
2574
- /**
2575
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2576
- * used by this class
2577
- */
2578
- FNMetaImpl?: Function
2579
- ): Function;
2580
2584
  /**
2581
2585
  * @SINCE 1.38.0
2582
2586
  *
@@ -2625,10 +2629,6 @@ declare namespace sap {
2625
2629
  * Default value is `false`.
2626
2630
  */
2627
2631
  getIntervalSelection(): boolean;
2628
- /**
2629
- * Returns a metadata object for class sap.ui.unified.calendar.MonthPicker.
2630
- */
2631
- static getMetadata(): sap.ui.core.ElementMetadata;
2632
2632
  /**
2633
2633
  * Gets current value of property {@link #getMonth month}.
2634
2634
  *
@@ -2881,6 +2881,31 @@ declare namespace sap {
2881
2881
  mSettings?: sap.ui.unified.calendar.$MonthsRowSettings
2882
2882
  );
2883
2883
 
2884
+ /**
2885
+ * Creates a new subclass of class sap.ui.unified.calendar.MonthsRow with name `sClassName` and enriches
2886
+ * it 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, sap.ui.unified.calendar.MonthsRow>,
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
+ /**
2906
+ * Returns a metadata object for class sap.ui.unified.calendar.MonthsRow.
2907
+ */
2908
+ static getMetadata(): sap.ui.core.ElementMetadata;
2884
2909
  /**
2885
2910
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
2886
2911
  */
@@ -3047,27 +3072,6 @@ declare namespace sap {
3047
3072
  */
3048
3073
  oDate: object
3049
3074
  ): this;
3050
- /**
3051
- * Creates a new subclass of class sap.ui.unified.calendar.MonthsRow with name `sClassName` and enriches
3052
- * it with the information contained in `oClassInfo`.
3053
- *
3054
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3055
- */
3056
- static extend<T extends Record<string, unknown>>(
3057
- /**
3058
- * Name of the class being created
3059
- */
3060
- sClassName: string,
3061
- /**
3062
- * Object literal with information about the class
3063
- */
3064
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.MonthsRow>,
3065
- /**
3066
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3067
- * used by this class
3068
- */
3069
- FNMetaImpl?: Function
3070
- ): Function;
3071
3075
  /**
3072
3076
  * Fires event {@link #event:focus focus} to attached listeners.
3073
3077
  */
@@ -3123,10 +3127,6 @@ declare namespace sap {
3123
3127
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
3124
3128
  */
3125
3129
  getLegend(): sap.ui.core.ID;
3126
- /**
3127
- * Returns a metadata object for class sap.ui.unified.calendar.MonthsRow.
3128
- */
3129
- static getMetadata(): sap.ui.core.ElementMetadata;
3130
3130
  /**
3131
3131
  * Gets current value of property {@link #getMonths months}.
3132
3132
  *
@@ -3407,27 +3407,52 @@ declare namespace sap {
3407
3407
  );
3408
3408
 
3409
3409
  /**
3410
- * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
3410
+ * Creates a new subclass of class sap.ui.unified.calendar.TimesRow with name `sClassName` and enriches
3411
+ * it with the information contained in `oClassInfo`.
3412
+ *
3413
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3411
3414
  */
3412
- addAriaLabelledBy(
3415
+ static extend<T extends Record<string, unknown>>(
3413
3416
  /**
3414
- * The ariaLabelledBy to add; if empty, nothing is inserted
3417
+ * Name of the class being created
3415
3418
  */
3416
- vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
3417
- ): this;
3418
- /**
3419
- * Adds some selectedDate to the aggregation {@link #getSelectedDates selectedDates}.
3420
- */
3421
- addSelectedDate(
3419
+ sClassName: string,
3422
3420
  /**
3423
- * The selectedDate to add; if empty, nothing is inserted
3421
+ * Object literal with information about the class
3424
3422
  */
3425
- oSelectedDate: sap.ui.unified.DateRange
3426
- ): this;
3427
- /**
3428
- * Adds some specialDate to the aggregation {@link #getSpecialDates specialDates}.
3429
- */
3430
- addSpecialDate(
3423
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.TimesRow>,
3424
+ /**
3425
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3426
+ * used by this class
3427
+ */
3428
+ FNMetaImpl?: Function
3429
+ ): Function;
3430
+ /**
3431
+ * Returns a metadata object for class sap.ui.unified.calendar.TimesRow.
3432
+ */
3433
+ static getMetadata(): sap.ui.core.ElementMetadata;
3434
+ /**
3435
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
3436
+ */
3437
+ addAriaLabelledBy(
3438
+ /**
3439
+ * The ariaLabelledBy to add; if empty, nothing is inserted
3440
+ */
3441
+ vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
3442
+ ): this;
3443
+ /**
3444
+ * Adds some selectedDate to the aggregation {@link #getSelectedDates selectedDates}.
3445
+ */
3446
+ addSelectedDate(
3447
+ /**
3448
+ * The selectedDate to add; if empty, nothing is inserted
3449
+ */
3450
+ oSelectedDate: sap.ui.unified.DateRange
3451
+ ): this;
3452
+ /**
3453
+ * Adds some specialDate to the aggregation {@link #getSpecialDates specialDates}.
3454
+ */
3455
+ addSpecialDate(
3431
3456
  /**
3432
3457
  * The specialDate to add; if empty, nothing is inserted
3433
3458
  */
@@ -3572,27 +3597,6 @@ declare namespace sap {
3572
3597
  */
3573
3598
  oDate: object
3574
3599
  ): this;
3575
- /**
3576
- * Creates a new subclass of class sap.ui.unified.calendar.TimesRow with name `sClassName` and enriches
3577
- * it with the information contained in `oClassInfo`.
3578
- *
3579
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3580
- */
3581
- static extend<T extends Record<string, unknown>>(
3582
- /**
3583
- * Name of the class being created
3584
- */
3585
- sClassName: string,
3586
- /**
3587
- * Object literal with information about the class
3588
- */
3589
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.TimesRow>,
3590
- /**
3591
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3592
- * used by this class
3593
- */
3594
- FNMetaImpl?: Function
3595
- ): Function;
3596
3600
  /**
3597
3601
  * Fires event {@link #event:focus focus} to attached listeners.
3598
3602
  */
@@ -3670,10 +3674,6 @@ declare namespace sap {
3670
3674
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
3671
3675
  */
3672
3676
  getLegend(): sap.ui.core.ID;
3673
- /**
3674
- * Returns a metadata object for class sap.ui.unified.calendar.TimesRow.
3675
- */
3676
- static getMetadata(): sap.ui.core.ElementMetadata;
3677
3677
  /**
3678
3678
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
3679
3679
  *
@@ -3968,6 +3968,31 @@ declare namespace sap {
3968
3968
  mSettings?: sap.ui.unified.calendar.$YearPickerSettings
3969
3969
  );
3970
3970
 
3971
+ /**
3972
+ * Creates a new subclass of class sap.ui.unified.calendar.YearPicker with name `sClassName` and enriches
3973
+ * it with the information contained in `oClassInfo`.
3974
+ *
3975
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3976
+ */
3977
+ static extend<T extends Record<string, unknown>>(
3978
+ /**
3979
+ * Name of the class being created
3980
+ */
3981
+ sClassName: string,
3982
+ /**
3983
+ * Object literal with information about the class
3984
+ */
3985
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.YearPicker>,
3986
+ /**
3987
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3988
+ * used by this class
3989
+ */
3990
+ FNMetaImpl?: Function
3991
+ ): Function;
3992
+ /**
3993
+ * Returns a metadata object for class sap.ui.unified.calendar.YearPicker.
3994
+ */
3995
+ static getMetadata(): sap.ui.core.ElementMetadata;
3971
3996
  /**
3972
3997
  * @SINCE 1.74
3973
3998
  *
@@ -4107,27 +4132,6 @@ declare namespace sap {
4107
4132
  */
4108
4133
  oListener?: object
4109
4134
  ): this;
4110
- /**
4111
- * Creates a new subclass of class sap.ui.unified.calendar.YearPicker with name `sClassName` and enriches
4112
- * it with the information contained in `oClassInfo`.
4113
- *
4114
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4115
- */
4116
- static extend<T extends Record<string, unknown>>(
4117
- /**
4118
- * Name of the class being created
4119
- */
4120
- sClassName: string,
4121
- /**
4122
- * Object literal with information about the class
4123
- */
4124
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.calendar.YearPicker>,
4125
- /**
4126
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4127
- * used by this class
4128
- */
4129
- FNMetaImpl?: Function
4130
- ): Function;
4131
4135
  /**
4132
4136
  * @SINCE 1.38.0
4133
4137
  *
@@ -4184,10 +4188,6 @@ declare namespace sap {
4184
4188
  * Default value is `false`.
4185
4189
  */
4186
4190
  getIntervalSelection(): boolean;
4187
- /**
4188
- * Returns a metadata object for class sap.ui.unified.calendar.YearPicker.
4189
- */
4190
- static getMetadata(): sap.ui.core.ElementMetadata;
4191
4191
  /**
4192
4192
  * @SINCE 1.34.0
4193
4193
  *
@@ -4567,12 +4567,12 @@ declare namespace sap {
4567
4567
  /**
4568
4568
  * Date selection changed
4569
4569
  */
4570
- select?: Function;
4570
+ select?: (oEvent: sap.ui.base.Event) => void;
4571
4571
 
4572
4572
  /**
4573
4573
  * Date selection was cancelled
4574
4574
  */
4575
- cancel?: Function;
4575
+ cancel?: (oEvent: sap.ui.base.Event) => void;
4576
4576
 
4577
4577
  /**
4578
4578
  * @SINCE 1.34.0
@@ -4581,7 +4581,7 @@ declare namespace sap {
4581
4581
  *
4582
4582
  * Use `getStartDate` function to determine the current start date
4583
4583
  */
4584
- startDateChange?: Function;
4584
+ startDateChange?: (oEvent: sap.ui.base.Event) => void;
4585
4585
 
4586
4586
  /**
4587
4587
  * @SINCE 1.56
@@ -4593,7 +4593,7 @@ declare namespace sap {
4593
4593
  *
4594
4594
  * **Note** Works for Gregorian calendars only and when `intervalSelection` is set to 'true'.
4595
4595
  */
4596
- weekNumberSelect?: Function;
4596
+ weekNumberSelect?: (oEvent: sap.ui.base.Event) => void;
4597
4597
  }
4598
4598
 
4599
4599
  interface $CalendarAppointmentSettings
@@ -4646,6 +4646,26 @@ declare namespace sap {
4646
4646
  color?:
4647
4647
  | sap.ui.core.CSSColor
4648
4648
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
4649
+
4650
+ /**
4651
+ * @SINCE 1.93.0
4652
+ * @EXPERIMENTAL (since 1.93)
4653
+ *
4654
+ * Holds the content of the appointment.
4655
+ *
4656
+ * **Note **, If the `customContent` aggregation is added then:
4657
+ *
4658
+ *
4659
+ * - The `title`, `text`, `description`, and `icon` properties are ignored.
4660
+ * - The application developer has to ensure, that all the accessibility requirements are met, and that
4661
+ * the height of the content conforms with the height provided by the appointment.
4662
+ * - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
4663
+ * and may lead to unpredictable results.
4664
+ */
4665
+ customContent?:
4666
+ | sap.ui.core.Control[]
4667
+ | sap.ui.core.Control
4668
+ | sap.ui.base.ManagedObject.AggregationBindingInfo;
4649
4669
  }
4650
4670
 
4651
4671
  interface $CalendarDateIntervalSettings
@@ -4839,19 +4859,19 @@ declare namespace sap {
4839
4859
  /**
4840
4860
  * Month selection changed
4841
4861
  */
4842
- select?: Function;
4862
+ select?: (oEvent: sap.ui.base.Event) => void;
4843
4863
 
4844
4864
  /**
4845
4865
  * Month selection was cancelled
4846
4866
  */
4847
- cancel?: Function;
4867
+ cancel?: (oEvent: sap.ui.base.Event) => void;
4848
4868
 
4849
4869
  /**
4850
4870
  * @SINCE 1.34.0
4851
4871
  *
4852
4872
  * `startDate` was changed while navigation in `CalendarMonthInterval`
4853
4873
  */
4854
- startDateChange?: Function;
4874
+ startDateChange?: (oEvent: sap.ui.base.Event) => void;
4855
4875
  }
4856
4876
 
4857
4877
  interface $CalendarRowSettings extends sap.ui.core.$ControlSettings {
@@ -4865,6 +4885,12 @@ declare namespace sap {
4865
4885
  */
4866
4886
  intervals?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
4867
4887
 
4888
+ /**
4889
+ * Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
4890
+ * Note: If the value is more than 1, the NonWorkingDays type is not presented.
4891
+ */
4892
+ intervalSize?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
4893
+
4868
4894
  /**
4869
4895
  * Type of the intervals of the row. The default is one hour.
4870
4896
  */
@@ -5059,25 +5085,25 @@ declare namespace sap {
5059
5085
  /**
5060
5086
  * Fired if an appointment was selected
5061
5087
  */
5062
- select?: Function;
5088
+ select?: (oEvent: sap.ui.base.Event) => void;
5063
5089
 
5064
5090
  /**
5065
5091
  * `startDate` was changed while navigating in `CalendarRow`
5066
5092
  */
5067
- startDateChange?: Function;
5093
+ startDateChange?: (oEvent: sap.ui.base.Event) => void;
5068
5094
 
5069
5095
  /**
5070
5096
  * The `CalendarRow` should be left while navigating. (Arrow up or arrow down.) The caller should determine
5071
5097
  * the next control to be focused
5072
5098
  */
5073
- leaveRow?: Function;
5099
+ leaveRow?: (oEvent: sap.ui.base.Event) => void;
5074
5100
 
5075
5101
  /**
5076
5102
  * @SINCE 1.38.0
5077
5103
  *
5078
5104
  * Fired if an interval was selected
5079
5105
  */
5080
- intervalSelect?: Function;
5106
+ intervalSelect?: (oEvent: sap.ui.base.Event) => void;
5081
5107
  }
5082
5108
 
5083
5109
  interface $CalendarTimeIntervalSettings
@@ -5192,19 +5218,19 @@ declare namespace sap {
5192
5218
  /**
5193
5219
  * Time selection changed
5194
5220
  */
5195
- select?: Function;
5221
+ select?: (oEvent: sap.ui.base.Event) => void;
5196
5222
 
5197
5223
  /**
5198
5224
  * Time selection was cancelled
5199
5225
  */
5200
- cancel?: Function;
5226
+ cancel?: (oEvent: sap.ui.base.Event) => void;
5201
5227
 
5202
5228
  /**
5203
5229
  * @SINCE 1.34.0
5204
5230
  *
5205
5231
  * `startDate` was changed while navigation in `CalendarTimeInterval`
5206
5232
  */
5207
- startDateChange?: Function;
5233
+ startDateChange?: (oEvent: sap.ui.base.Event) => void;
5208
5234
  }
5209
5235
 
5210
5236
  interface $ColorPickerSettings extends sap.ui.core.$ControlSettings {
@@ -5249,7 +5275,7 @@ declare namespace sap {
5249
5275
  *
5250
5276
  * **Note:** When the user action is mouse dragging, the `change` event fires on the mouseup event.
5251
5277
  */
5252
- change?: Function;
5278
+ change?: (oEvent: sap.ui.base.Event) => void;
5253
5279
 
5254
5280
  /**
5255
5281
  * @SINCE 1.48.0
@@ -5258,7 +5284,7 @@ declare namespace sap {
5258
5284
  *
5259
5285
  * **Note:** When the user action is mouse move, the `liveChange` event is fired during the mousedown event.
5260
5286
  */
5261
- liveChange?: Function;
5287
+ liveChange?: (oEvent: sap.ui.base.Event) => void;
5262
5288
  }
5263
5289
 
5264
5290
  interface $ColorPickerPopoverSettings
@@ -5298,14 +5324,14 @@ declare namespace sap {
5298
5324
  *
5299
5325
  * Fired when the submit button of the popover is clicked.
5300
5326
  */
5301
- change?: Function;
5327
+ change?: (oEvent: sap.ui.base.Event) => void;
5302
5328
 
5303
5329
  /**
5304
5330
  * @SINCE 1.85
5305
5331
  *
5306
5332
  * Fired when the value is changed by user interaction in the internal ColorPicker
5307
5333
  */
5308
- liveChange?: Function;
5334
+ liveChange?: (oEvent: sap.ui.base.Event) => void;
5309
5335
  }
5310
5336
 
5311
5337
  interface $ContentSwitcherSettings extends sap.ui.core.$ControlSettings {
@@ -5696,7 +5722,7 @@ declare namespace sap {
5696
5722
  * **Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in
5697
5723
  * Chrome browser when the Cancel button of the uploads window is pressed.
5698
5724
  */
5699
- change?: Function;
5725
+ change?: (oEvent: sap.ui.base.Event) => void;
5700
5726
 
5701
5727
  /**
5702
5728
  * Event is fired as soon as the upload request is completed (either successful or unsuccessful).
@@ -5705,28 +5731,28 @@ declare namespace sap {
5705
5731
  * progress of the upload can be monitored by listening to the `uploadProgress` event. However, this covers
5706
5732
  * only the client side of the upload process and does not give any success status from the server.
5707
5733
  */
5708
- uploadComplete?: Function;
5734
+ uploadComplete?: (oEvent: sap.ui.base.Event) => void;
5709
5735
 
5710
5736
  /**
5711
5737
  * Event is fired when the type of a file does not match the `mimeType` or `fileType` property.
5712
5738
  */
5713
- typeMissmatch?: Function;
5739
+ typeMissmatch?: (oEvent: sap.ui.base.Event) => void;
5714
5740
 
5715
5741
  /**
5716
5742
  * Event is fired when the size of a file is above the `maximumFileSize` property. This event is not supported
5717
5743
  * by Internet Explorer 9 (same restriction as for the property `maximumFileSize`).
5718
5744
  */
5719
- fileSizeExceed?: Function;
5745
+ fileSizeExceed?: (oEvent: sap.ui.base.Event) => void;
5720
5746
 
5721
5747
  /**
5722
5748
  * Event is fired when the size of the file is 0
5723
5749
  */
5724
- fileEmpty?: Function;
5750
+ fileEmpty?: (oEvent: sap.ui.base.Event) => void;
5725
5751
 
5726
5752
  /**
5727
5753
  * Event is fired when the file is allowed for upload on client side.
5728
5754
  */
5729
- fileAllowed?: Function;
5755
+ fileAllowed?: (oEvent: sap.ui.base.Event) => void;
5730
5756
 
5731
5757
  /**
5732
5758
  * @SINCE 1.24.0
@@ -5739,7 +5765,7 @@ declare namespace sap {
5739
5765
  * This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
5740
5766
  * Internet Explorer 9.
5741
5767
  */
5742
- uploadProgress?: Function;
5768
+ uploadProgress?: (oEvent: sap.ui.base.Event) => void;
5743
5769
 
5744
5770
  /**
5745
5771
  * @SINCE 1.24.0
@@ -5749,7 +5775,7 @@ declare namespace sap {
5749
5775
  * This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
5750
5776
  * Internet Explorer 9.
5751
5777
  */
5752
- uploadAborted?: Function;
5778
+ uploadAborted?: (oEvent: sap.ui.base.Event) => void;
5753
5779
 
5754
5780
  /**
5755
5781
  * @SINCE 1.24.0
@@ -5757,14 +5783,14 @@ declare namespace sap {
5757
5783
  * Event is fired, if the filename of a chosen file is longer than the value specified with the `maximumFilenameLength`
5758
5784
  * property.
5759
5785
  */
5760
- filenameLengthExceed?: Function;
5786
+ filenameLengthExceed?: (oEvent: sap.ui.base.Event) => void;
5761
5787
 
5762
5788
  /**
5763
5789
  * @SINCE 1.30.0
5764
5790
  *
5765
5791
  * Event is fired before an upload is started.
5766
5792
  */
5767
- uploadStart?: Function;
5793
+ uploadStart?: (oEvent: sap.ui.base.Event) => void;
5768
5794
  }
5769
5795
 
5770
5796
  interface $FileUploaderParameterSettings
@@ -5853,7 +5879,7 @@ declare namespace sap {
5853
5879
  * one of its direct or indirect submenus. **Note:** There is also a select event available for each single
5854
5880
  * menu item. This event and the event of the menu items are redundant.
5855
5881
  */
5856
- itemSelect?: Function;
5882
+ itemSelect?: (oEvent: sap.ui.base.Event) => void;
5857
5883
  }
5858
5884
 
5859
5885
  interface $MenuItemSettings extends sap.ui.unified.$MenuItemBaseSettings {
@@ -5902,7 +5928,7 @@ declare namespace sap {
5902
5928
  * a submenu. In general, applications must not handle event in this case because the user selection opens
5903
5929
  * the sub menu.
5904
5930
  */
5905
- select?: Function;
5931
+ select?: (oEvent: sap.ui.base.Event) => void;
5906
5932
  }
5907
5933
 
5908
5934
  interface $MenuTextFieldItemSettings
@@ -6068,7 +6094,7 @@ declare namespace sap {
6068
6094
  /**
6069
6095
  * Event is fired when the user presses the item.
6070
6096
  */
6071
- press?: Function;
6097
+ press?: (oEvent: sap.ui.base.Event) => void;
6072
6098
  }
6073
6099
 
6074
6100
  interface $ShellHeadUserItemSettings
@@ -6101,7 +6127,7 @@ declare namespace sap {
6101
6127
  /**
6102
6128
  * Event is fired when the user presses the button.
6103
6129
  */
6104
- press?: Function;
6130
+ press?: (oEvent: sap.ui.base.Event) => void;
6105
6131
  }
6106
6132
 
6107
6133
  interface $ShellLayoutSettings extends sap.ui.core.$ControlSettings {
@@ -6171,7 +6197,7 @@ declare namespace sap {
6171
6197
  /**
6172
6198
  * Fired when the overlay was closed.
6173
6199
  */
6174
- closed?: Function;
6200
+ closed?: (oEvent: sap.ui.base.Event) => void;
6175
6201
  }
6176
6202
 
6177
6203
  interface $SplitContainerSettings extends sap.ui.core.$ControlSettings {
@@ -6261,6 +6287,31 @@ declare namespace sap {
6261
6287
  mSettings?: sap.ui.unified.$CalendarSettings
6262
6288
  );
6263
6289
 
6290
+ /**
6291
+ * Creates a new subclass of class sap.ui.unified.Calendar with name `sClassName` and enriches it with the
6292
+ * information contained in `oClassInfo`.
6293
+ *
6294
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6295
+ */
6296
+ static extend<T extends Record<string, unknown>>(
6297
+ /**
6298
+ * Name of the class being created
6299
+ */
6300
+ sClassName: string,
6301
+ /**
6302
+ * Object literal with information about the class
6303
+ */
6304
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.Calendar>,
6305
+ /**
6306
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6307
+ * used by this class
6308
+ */
6309
+ FNMetaImpl?: Function
6310
+ ): Function;
6311
+ /**
6312
+ * Returns a metadata object for class sap.ui.unified.Calendar.
6313
+ */
6314
+ static getMetadata(): sap.ui.core.ElementMetadata;
6264
6315
  /**
6265
6316
  * @SINCE 1.28.0
6266
6317
  *
@@ -6586,27 +6637,6 @@ declare namespace sap {
6586
6637
  */
6587
6638
  oDate: Object
6588
6639
  ): this;
6589
- /**
6590
- * Creates a new subclass of class sap.ui.unified.Calendar with name `sClassName` and enriches it with the
6591
- * information contained in `oClassInfo`.
6592
- *
6593
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6594
- */
6595
- static extend<T extends Record<string, unknown>>(
6596
- /**
6597
- * Name of the class being created
6598
- */
6599
- sClassName: string,
6600
- /**
6601
- * Object literal with information about the class
6602
- */
6603
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.Calendar>,
6604
- /**
6605
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6606
- * used by this class
6607
- */
6608
- FNMetaImpl?: Function
6609
- ): Function;
6610
6640
  /**
6611
6641
  * Fires event {@link #event:cancel cancel} to attached listeners.
6612
6642
  */
@@ -6725,10 +6755,6 @@ declare namespace sap {
6725
6755
  * month of the `maxDate`.
6726
6756
  */
6727
6757
  getMaxDate(): object;
6728
- /**
6729
- * Returns a metadata object for class sap.ui.unified.Calendar.
6730
- */
6731
- static getMetadata(): sap.ui.core.ElementMetadata;
6732
6758
  /**
6733
6759
  * @SINCE 1.38.0
6734
6760
  *
@@ -7255,6 +7281,29 @@ declare namespace sap {
7255
7281
  */
7256
7282
  FNMetaImpl?: Function
7257
7283
  ): Function;
7284
+ /**
7285
+ * Returns a metadata object for class sap.ui.unified.CalendarAppointment.
7286
+ */
7287
+ static getMetadata(): sap.ui.core.ElementMetadata;
7288
+ /**
7289
+ * @SINCE 1.93.0
7290
+ * @EXPERIMENTAL (since 1.93)
7291
+ *
7292
+ * Adds some customContent to the aggregation {@link #getCustomContent customContent}.
7293
+ */
7294
+ addCustomContent(
7295
+ /**
7296
+ * The customContent to add; if empty, nothing is inserted
7297
+ */
7298
+ oCustomContent: sap.ui.core.Control
7299
+ ): this;
7300
+ /**
7301
+ * @SINCE 1.93.0
7302
+ * @EXPERIMENTAL (since 1.93)
7303
+ *
7304
+ * Destroys all the customContent in the aggregation {@link #getCustomContent customContent}.
7305
+ */
7306
+ destroyCustomContent(): this;
7258
7307
  /**
7259
7308
  * @SINCE 1.46.0
7260
7309
  *
@@ -7264,6 +7313,24 @@ declare namespace sap {
7264
7313
  * with pound symbol, e.g.: #FF0000.
7265
7314
  */
7266
7315
  getColor(): sap.ui.core.CSSColor;
7316
+ /**
7317
+ * @SINCE 1.93.0
7318
+ * @EXPERIMENTAL (since 1.93)
7319
+ *
7320
+ * Gets content of aggregation {@link #getCustomContent customContent}.
7321
+ *
7322
+ * Holds the content of the appointment.
7323
+ *
7324
+ * **Note **, If the `customContent` aggregation is added then:
7325
+ *
7326
+ *
7327
+ * - The `title`, `text`, `description`, and `icon` properties are ignored.
7328
+ * - The application developer has to ensure, that all the accessibility requirements are met, and that
7329
+ * the height of the content conforms with the height provided by the appointment.
7330
+ * - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
7331
+ * and may lead to unpredictable results.
7332
+ */
7333
+ getCustomContent(): sap.ui.core.Control[];
7267
7334
  /**
7268
7335
  * @SINCE 1.81.0
7269
7336
  *
@@ -7286,10 +7353,6 @@ declare namespace sap {
7286
7353
  * Can be used as identifier of the appointment
7287
7354
  */
7288
7355
  getKey(): string;
7289
- /**
7290
- * Returns a metadata object for class sap.ui.unified.CalendarAppointment.
7291
- */
7292
- static getMetadata(): sap.ui.core.ElementMetadata;
7293
7356
  /**
7294
7357
  * Gets current value of property {@link #getSelected selected}.
7295
7358
  *
@@ -7318,6 +7381,58 @@ declare namespace sap {
7318
7381
  * Title of the appointment.
7319
7382
  */
7320
7383
  getTitle(): string;
7384
+ /**
7385
+ * @SINCE 1.93.0
7386
+ * @EXPERIMENTAL (since 1.93)
7387
+ *
7388
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCustomContent customContent}.
7389
+ * and returns its index if found or -1 otherwise.
7390
+ */
7391
+ indexOfCustomContent(
7392
+ /**
7393
+ * The customContent whose index is looked for
7394
+ */
7395
+ oCustomContent: sap.ui.core.Control
7396
+ ): int;
7397
+ /**
7398
+ * @SINCE 1.93.0
7399
+ * @EXPERIMENTAL (since 1.93)
7400
+ *
7401
+ * Inserts a customContent into the aggregation {@link #getCustomContent customContent}.
7402
+ */
7403
+ insertCustomContent(
7404
+ /**
7405
+ * The customContent to insert; if empty, nothing is inserted
7406
+ */
7407
+ oCustomContent: sap.ui.core.Control,
7408
+ /**
7409
+ * The `0`-based index the customContent should be inserted at; for a negative value of `iIndex`, the customContent
7410
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the customContent
7411
+ * is inserted at the last position
7412
+ */
7413
+ iIndex: int
7414
+ ): this;
7415
+ /**
7416
+ * @SINCE 1.93.0
7417
+ * @EXPERIMENTAL (since 1.93)
7418
+ *
7419
+ * Removes all the controls from the aggregation {@link #getCustomContent customContent}.
7420
+ *
7421
+ * Additionally, it unregisters them from the hosting UIArea.
7422
+ */
7423
+ removeAllCustomContent(): sap.ui.core.Control[];
7424
+ /**
7425
+ * @SINCE 1.93.0
7426
+ * @EXPERIMENTAL (since 1.93)
7427
+ *
7428
+ * Removes a customContent from the aggregation {@link #getCustomContent customContent}.
7429
+ */
7430
+ removeCustomContent(
7431
+ /**
7432
+ * The customContent to remove or its index or id
7433
+ */
7434
+ vCustomContent: int | string | sap.ui.core.Control
7435
+ ): sap.ui.core.Control;
7321
7436
  /**
7322
7437
  * @SINCE 1.46.0
7323
7438
  *
@@ -7472,10 +7587,6 @@ declare namespace sap {
7472
7587
  mSettings?: sap.ui.unified.$CalendarDateIntervalSettings
7473
7588
  );
7474
7589
 
7475
- /**
7476
- * If more than this number of days are displayed, start and end month are displayed on the button.
7477
- */
7478
- _getDaysLarge(): int;
7479
7590
  /**
7480
7591
  * Creates a new subclass of class sap.ui.unified.CalendarDateInterval with name `sClassName` and enriches
7481
7592
  * it with the information contained in `oClassInfo`.
@@ -7497,6 +7608,14 @@ declare namespace sap {
7497
7608
  */
7498
7609
  FNMetaImpl?: Function
7499
7610
  ): Function;
7611
+ /**
7612
+ * Returns a metadata object for class sap.ui.unified.CalendarDateInterval.
7613
+ */
7614
+ static getMetadata(): sap.ui.core.ElementMetadata;
7615
+ /**
7616
+ * If more than this number of days are displayed, start and end month are displayed on the button.
7617
+ */
7618
+ _getDaysLarge(): int;
7500
7619
  /**
7501
7620
  * Gets current value of property {@link #getDays days}.
7502
7621
  *
@@ -7505,10 +7624,6 @@ declare namespace sap {
7505
7624
  * Default value is `7`.
7506
7625
  */
7507
7626
  getDays(): int;
7508
- /**
7509
- * Returns a metadata object for class sap.ui.unified.CalendarDateInterval.
7510
- */
7511
- static getMetadata(): sap.ui.core.ElementMetadata;
7512
7627
  /**
7513
7628
  * @SINCE 1.34.0
7514
7629
  *
@@ -7660,19 +7775,6 @@ declare namespace sap {
7660
7775
  mSettings?: sap.ui.unified.$CalendarLegendSettings
7661
7776
  );
7662
7777
 
7663
- /**
7664
- * Adds some item to the aggregation {@link #getItems items}.
7665
- */
7666
- addItem(
7667
- /**
7668
- * The item to add; if empty, nothing is inserted
7669
- */
7670
- oItem: sap.ui.unified.CalendarLegendItem
7671
- ): this;
7672
- /**
7673
- * Destroys all the items in the aggregation {@link #getItems items}.
7674
- */
7675
- destroyItems(): this;
7676
7778
  /**
7677
7779
  * Creates a new subclass of class sap.ui.unified.CalendarLegend with name `sClassName` and enriches it
7678
7780
  * with the information contained in `oClassInfo`.
@@ -7695,10 +7797,27 @@ declare namespace sap {
7695
7797
  FNMetaImpl?: Function
7696
7798
  ): Function;
7697
7799
  /**
7698
- * Gets current value of property {@link #getColumnWidth columnWidth}.
7699
- *
7700
- * Defines the width of the created columns in which the items are arranged.
7701
- *
7800
+ * Returns a metadata object for class sap.ui.unified.CalendarLegend.
7801
+ */
7802
+ static getMetadata(): sap.ui.core.ElementMetadata;
7803
+ /**
7804
+ * Adds some item to the aggregation {@link #getItems items}.
7805
+ */
7806
+ addItem(
7807
+ /**
7808
+ * The item to add; if empty, nothing is inserted
7809
+ */
7810
+ oItem: sap.ui.unified.CalendarLegendItem
7811
+ ): this;
7812
+ /**
7813
+ * Destroys all the items in the aggregation {@link #getItems items}.
7814
+ */
7815
+ destroyItems(): this;
7816
+ /**
7817
+ * Gets current value of property {@link #getColumnWidth columnWidth}.
7818
+ *
7819
+ * Defines the width of the created columns in which the items are arranged.
7820
+ *
7702
7821
  * Default value is `'120px'`.
7703
7822
  */
7704
7823
  getColumnWidth(): sap.ui.core.CSSSize;
@@ -7708,10 +7827,6 @@ declare namespace sap {
7708
7827
  * Items to be displayed.
7709
7828
  */
7710
7829
  getItems(): sap.ui.unified.CalendarLegendItem[];
7711
- /**
7712
- * Returns a metadata object for class sap.ui.unified.CalendarLegend.
7713
- */
7714
- static getMetadata(): sap.ui.core.ElementMetadata;
7715
7830
  /**
7716
7831
  * @SINCE 1.54
7717
7832
  *
@@ -7857,6 +7972,10 @@ declare namespace sap {
7857
7972
  */
7858
7973
  FNMetaImpl?: Function
7859
7974
  ): Function;
7975
+ /**
7976
+ * Returns a metadata object for class sap.ui.unified.CalendarLegendItem.
7977
+ */
7978
+ static getMetadata(): sap.ui.core.ElementMetadata;
7860
7979
  /**
7861
7980
  * @SINCE 1.46.0
7862
7981
  *
@@ -7865,10 +7984,6 @@ declare namespace sap {
7865
7984
  * Overrides the color derived from the `type` property.
7866
7985
  */
7867
7986
  getColor(): sap.ui.core.CSSColor;
7868
- /**
7869
- * Returns a metadata object for class sap.ui.unified.CalendarLegendItem.
7870
- */
7871
- static getMetadata(): sap.ui.core.ElementMetadata;
7872
7987
  /**
7873
7988
  * Gets current value of property {@link #getText text}.
7874
7989
  *
@@ -7974,6 +8089,31 @@ declare namespace sap {
7974
8089
  mSettings?: sap.ui.unified.$CalendarMonthIntervalSettings
7975
8090
  );
7976
8091
 
8092
+ /**
8093
+ * Creates a new subclass of class sap.ui.unified.CalendarMonthInterval with name `sClassName` and enriches
8094
+ * it with the information contained in `oClassInfo`.
8095
+ *
8096
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8097
+ */
8098
+ static extend<T extends Record<string, unknown>>(
8099
+ /**
8100
+ * Name of the class being created
8101
+ */
8102
+ sClassName: string,
8103
+ /**
8104
+ * Object literal with information about the class
8105
+ */
8106
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.CalendarMonthInterval>,
8107
+ /**
8108
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8109
+ * used by this class
8110
+ */
8111
+ FNMetaImpl?: Function
8112
+ ): Function;
8113
+ /**
8114
+ * Returns a metadata object for class sap.ui.unified.CalendarMonthInterval.
8115
+ */
8116
+ static getMetadata(): sap.ui.core.ElementMetadata;
7977
8117
  /**
7978
8118
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
7979
8119
  */
@@ -8201,27 +8341,6 @@ declare namespace sap {
8201
8341
  */
8202
8342
  oDatetime: Object
8203
8343
  ): this;
8204
- /**
8205
- * Creates a new subclass of class sap.ui.unified.CalendarMonthInterval with name `sClassName` and enriches
8206
- * it with the information contained in `oClassInfo`.
8207
- *
8208
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8209
- */
8210
- static extend<T extends Record<string, unknown>>(
8211
- /**
8212
- * Name of the class being created
8213
- */
8214
- sClassName: string,
8215
- /**
8216
- * Object literal with information about the class
8217
- */
8218
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.CalendarMonthInterval>,
8219
- /**
8220
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8221
- * used by this class
8222
- */
8223
- FNMetaImpl?: Function
8224
- ): Function;
8225
8344
  /**
8226
8345
  * Fires event {@link #event:cancel cancel} to attached listeners.
8227
8346
  */
@@ -8290,10 +8409,6 @@ declare namespace sap {
8290
8409
  * month of the `maxDate`.
8291
8410
  */
8292
8411
  getMaxDate(): object;
8293
- /**
8294
- * Returns a metadata object for class sap.ui.unified.CalendarMonthInterval.
8295
- */
8296
- static getMetadata(): sap.ui.core.ElementMetadata;
8297
8412
  /**
8298
8413
  * @SINCE 1.38.0
8299
8414
  *
@@ -8626,6 +8741,31 @@ declare namespace sap {
8626
8741
  mSettings?: sap.ui.unified.$CalendarRowSettings
8627
8742
  );
8628
8743
 
8744
+ /**
8745
+ * Creates a new subclass of class sap.ui.unified.CalendarRow with name `sClassName` and enriches it with
8746
+ * the information contained in `oClassInfo`.
8747
+ *
8748
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8749
+ */
8750
+ static extend<T extends Record<string, unknown>>(
8751
+ /**
8752
+ * Name of the class being created
8753
+ */
8754
+ sClassName: string,
8755
+ /**
8756
+ * Object literal with information about the class
8757
+ */
8758
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.CalendarRow>,
8759
+ /**
8760
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8761
+ * used by this class
8762
+ */
8763
+ FNMetaImpl?: Function
8764
+ ): Function;
8765
+ /**
8766
+ * Returns a metadata object for class sap.ui.unified.CalendarRow.
8767
+ */
8768
+ static getMetadata(): sap.ui.core.ElementMetadata;
8629
8769
  /**
8630
8770
  * Adds some appointment to the aggregation {@link #getAppointments appointments}.
8631
8771
  */
@@ -8899,27 +9039,6 @@ declare namespace sap {
8899
9039
  */
8900
9040
  oListener?: object
8901
9041
  ): this;
8902
- /**
8903
- * Creates a new subclass of class sap.ui.unified.CalendarRow with name `sClassName` and enriches it with
8904
- * the information contained in `oClassInfo`.
8905
- *
8906
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8907
- */
8908
- static extend<T extends Record<string, unknown>>(
8909
- /**
8910
- * Name of the class being created
8911
- */
8912
- sClassName: string,
8913
- /**
8914
- * Object literal with information about the class
8915
- */
8916
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.CalendarRow>,
8917
- /**
8918
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8919
- * used by this class
8920
- */
8921
- FNMetaImpl?: Function
8922
- ): Function;
8923
9042
  /**
8924
9043
  * @SINCE 1.38.0
8925
9044
  *
@@ -9132,6 +9251,15 @@ declare namespace sap {
9132
9251
  * Default value is `12`.
9133
9252
  */
9134
9253
  getIntervals(): int;
9254
+ /**
9255
+ * Gets current value of property {@link #getIntervalSize intervalSize}.
9256
+ *
9257
+ * Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
9258
+ * Note: If the value is more than 1, the NonWorkingDays type is not presented.
9259
+ *
9260
+ * Default value is `1`.
9261
+ */
9262
+ getIntervalSize(): int;
9135
9263
  /**
9136
9264
  * Gets current value of property {@link #getIntervalType intervalType}.
9137
9265
  *
@@ -9146,10 +9274,6 @@ declare namespace sap {
9146
9274
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
9147
9275
  */
9148
9276
  getLegend(): sap.ui.core.ID;
9149
- /**
9150
- * Returns a metadata object for class sap.ui.unified.CalendarRow.
9151
- */
9152
- static getMetadata(): sap.ui.core.ElementMetadata;
9153
9277
  /**
9154
9278
  * Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
9155
9279
  *
@@ -9480,6 +9604,22 @@ declare namespace sap {
9480
9604
  */
9481
9605
  iIntervals?: int
9482
9606
  ): this;
9607
+ /**
9608
+ * Sets a new value for property {@link #getIntervalSize intervalSize}.
9609
+ *
9610
+ * Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
9611
+ * Note: If the value is more than 1, the NonWorkingDays type is not presented.
9612
+ *
9613
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9614
+ *
9615
+ * Default value is `1`.
9616
+ */
9617
+ setIntervalSize(
9618
+ /**
9619
+ * New value for property `intervalSize`
9620
+ */
9621
+ iIntervalSize?: int
9622
+ ): this;
9483
9623
  /**
9484
9624
  * Sets a new value for property {@link #getIntervalType intervalType}.
9485
9625
  *
@@ -9692,6 +9832,31 @@ declare namespace sap {
9692
9832
  mSettings?: sap.ui.unified.$CalendarTimeIntervalSettings
9693
9833
  );
9694
9834
 
9835
+ /**
9836
+ * Creates a new subclass of class sap.ui.unified.CalendarTimeInterval with name `sClassName` and enriches
9837
+ * it with the information contained in `oClassInfo`.
9838
+ *
9839
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9840
+ */
9841
+ static extend<T extends Record<string, unknown>>(
9842
+ /**
9843
+ * Name of the class being created
9844
+ */
9845
+ sClassName: string,
9846
+ /**
9847
+ * Object literal with information about the class
9848
+ */
9849
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.CalendarTimeInterval>,
9850
+ /**
9851
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9852
+ * used by this class
9853
+ */
9854
+ FNMetaImpl?: Function
9855
+ ): Function;
9856
+ /**
9857
+ * Returns a metadata object for class sap.ui.unified.CalendarTimeInterval.
9858
+ */
9859
+ static getMetadata(): sap.ui.core.ElementMetadata;
9695
9860
  /**
9696
9861
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
9697
9862
  */
@@ -9919,27 +10084,6 @@ declare namespace sap {
9919
10084
  */
9920
10085
  oDate: object
9921
10086
  ): sap.ui.unified.Calendar;
9922
- /**
9923
- * Creates a new subclass of class sap.ui.unified.CalendarTimeInterval with name `sClassName` and enriches
9924
- * it with the information contained in `oClassInfo`.
9925
- *
9926
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9927
- */
9928
- static extend<T extends Record<string, unknown>>(
9929
- /**
9930
- * Name of the class being created
9931
- */
9932
- sClassName: string,
9933
- /**
9934
- * Object literal with information about the class
9935
- */
9936
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.CalendarTimeInterval>,
9937
- /**
9938
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9939
- * used by this class
9940
- */
9941
- FNMetaImpl?: Function
9942
- ): Function;
9943
10087
  /**
9944
10088
  * Fires event {@link #event:cancel cancel} to attached listeners.
9945
10089
  */
@@ -10032,10 +10176,6 @@ declare namespace sap {
10032
10176
  * month of the `maxDate`.
10033
10177
  */
10034
10178
  getMaxDate(): object;
10035
- /**
10036
- * Returns a metadata object for class sap.ui.unified.CalendarTimeInterval.
10037
- */
10038
- static getMetadata(): sap.ui.core.ElementMetadata;
10039
10179
  /**
10040
10180
  * @SINCE 1.38.0
10041
10181
  *
@@ -10392,6 +10532,31 @@ declare namespace sap {
10392
10532
  mSettings?: sap.ui.unified.$ColorPickerSettings
10393
10533
  );
10394
10534
 
10535
+ /**
10536
+ * Creates a new subclass of class sap.ui.unified.ColorPicker with name `sClassName` and enriches it with
10537
+ * the information contained in `oClassInfo`.
10538
+ *
10539
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10540
+ */
10541
+ static extend<T extends Record<string, unknown>>(
10542
+ /**
10543
+ * Name of the class being created
10544
+ */
10545
+ sClassName: string,
10546
+ /**
10547
+ * Object literal with information about the class
10548
+ */
10549
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ColorPicker>,
10550
+ /**
10551
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10552
+ * used by this class
10553
+ */
10554
+ FNMetaImpl?: Function
10555
+ ): Function;
10556
+ /**
10557
+ * Returns a metadata object for class sap.ui.unified.ColorPicker.
10558
+ */
10559
+ static getMetadata(): sap.ui.core.ElementMetadata;
10395
10560
  /**
10396
10561
  * @SINCE 1.48.0
10397
10562
  *
@@ -10524,27 +10689,6 @@ declare namespace sap {
10524
10689
  */
10525
10690
  oListener?: object
10526
10691
  ): this;
10527
- /**
10528
- * Creates a new subclass of class sap.ui.unified.ColorPicker with name `sClassName` and enriches it with
10529
- * the information contained in `oClassInfo`.
10530
- *
10531
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10532
- */
10533
- static extend<T extends Record<string, unknown>>(
10534
- /**
10535
- * Name of the class being created
10536
- */
10537
- sClassName: string,
10538
- /**
10539
- * Object literal with information about the class
10540
- */
10541
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ColorPicker>,
10542
- /**
10543
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10544
- * used by this class
10545
- */
10546
- FNMetaImpl?: Function
10547
- ): Function;
10548
10692
  /**
10549
10693
  * @SINCE 1.48.0
10550
10694
  *
@@ -10664,10 +10808,6 @@ declare namespace sap {
10664
10808
  * Default value is `Default`.
10665
10809
  */
10666
10810
  getDisplayMode(): sap.ui.unified.ColorPickerDisplayMode;
10667
- /**
10668
- * Returns a metadata object for class sap.ui.unified.ColorPicker.
10669
- */
10670
- static getMetadata(): sap.ui.core.ElementMetadata;
10671
10811
  /**
10672
10812
  * @SINCE 1.48.0
10673
10813
  *
@@ -10780,12 +10920,37 @@ declare namespace sap {
10780
10920
  );
10781
10921
 
10782
10922
  /**
10783
- * @SINCE 1.60.0
10784
- *
10785
- * Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.unified.ColorPickerPopover`.
10786
- *
10787
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
10788
- * otherwise it will be bound to this `sap.ui.unified.ColorPickerPopover` itself.
10923
+ * Creates a new subclass of class sap.ui.unified.ColorPickerPopover with name `sClassName` and enriches
10924
+ * it with the information contained in `oClassInfo`.
10925
+ *
10926
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10927
+ */
10928
+ static extend<T extends Record<string, unknown>>(
10929
+ /**
10930
+ * Name of the class being created
10931
+ */
10932
+ sClassName: string,
10933
+ /**
10934
+ * Object literal with information about the class
10935
+ */
10936
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ColorPickerPopover>,
10937
+ /**
10938
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10939
+ * used by this class
10940
+ */
10941
+ FNMetaImpl?: Function
10942
+ ): Function;
10943
+ /**
10944
+ * Returns a metadata object for class sap.ui.unified.ColorPickerPopover.
10945
+ */
10946
+ static getMetadata(): sap.ui.core.ElementMetadata;
10947
+ /**
10948
+ * @SINCE 1.60.0
10949
+ *
10950
+ * Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.unified.ColorPickerPopover`.
10951
+ *
10952
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
10953
+ * otherwise it will be bound to this `sap.ui.unified.ColorPickerPopover` itself.
10789
10954
  *
10790
10955
  * Fired when the submit button of the popover is clicked.
10791
10956
  */
@@ -10907,27 +11072,6 @@ declare namespace sap {
10907
11072
  */
10908
11073
  oListener?: object
10909
11074
  ): this;
10910
- /**
10911
- * Creates a new subclass of class sap.ui.unified.ColorPickerPopover with name `sClassName` and enriches
10912
- * it with the information contained in `oClassInfo`.
10913
- *
10914
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10915
- */
10916
- static extend<T extends Record<string, unknown>>(
10917
- /**
10918
- * Name of the class being created
10919
- */
10920
- sClassName: string,
10921
- /**
10922
- * Object literal with information about the class
10923
- */
10924
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ColorPickerPopover>,
10925
- /**
10926
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10927
- * used by this class
10928
- */
10929
- FNMetaImpl?: Function
10930
- ): Function;
10931
11075
  /**
10932
11076
  * @SINCE 1.60.0
10933
11077
  *
@@ -11047,10 +11191,6 @@ declare namespace sap {
11047
11191
  * Default value is `Default`.
11048
11192
  */
11049
11193
  getDisplayMode(): sap.ui.unified.ColorPickerDisplayMode;
11050
- /**
11051
- * Returns a metadata object for class sap.ui.unified.ColorPickerPopover.
11052
- */
11053
- static getMetadata(): sap.ui.core.ElementMetadata;
11054
11194
  /**
11055
11195
  * @SINCE 1.60.0
11056
11196
  *
@@ -11167,6 +11307,31 @@ declare namespace sap {
11167
11307
  mSettings?: sap.ui.unified.$ContentSwitcherSettings
11168
11308
  );
11169
11309
 
11310
+ /**
11311
+ * Creates a new subclass of class sap.ui.unified.ContentSwitcher with name `sClassName` and enriches it
11312
+ * with the information contained in `oClassInfo`.
11313
+ *
11314
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11315
+ */
11316
+ static extend<T extends Record<string, unknown>>(
11317
+ /**
11318
+ * Name of the class being created
11319
+ */
11320
+ sClassName: string,
11321
+ /**
11322
+ * Object literal with information about the class
11323
+ */
11324
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ContentSwitcher>,
11325
+ /**
11326
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11327
+ * used by this class
11328
+ */
11329
+ FNMetaImpl?: Function
11330
+ ): Function;
11331
+ /**
11332
+ * Returns a metadata object for class sap.ui.unified.ContentSwitcher.
11333
+ */
11334
+ static getMetadata(): sap.ui.core.ElementMetadata;
11170
11335
  /**
11171
11336
  * Adds some content1 to the aggregation {@link #getContent1 content1}.
11172
11337
  */
@@ -11193,27 +11358,6 @@ declare namespace sap {
11193
11358
  * Destroys all the content2 in the aggregation {@link #getContent2 content2}.
11194
11359
  */
11195
11360
  destroyContent2(): this;
11196
- /**
11197
- * Creates a new subclass of class sap.ui.unified.ContentSwitcher with name `sClassName` and enriches it
11198
- * with the information contained in `oClassInfo`.
11199
- *
11200
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11201
- */
11202
- static extend<T extends Record<string, unknown>>(
11203
- /**
11204
- * Name of the class being created
11205
- */
11206
- sClassName: string,
11207
- /**
11208
- * Object literal with information about the class
11209
- */
11210
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ContentSwitcher>,
11211
- /**
11212
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11213
- * used by this class
11214
- */
11215
- FNMetaImpl?: Function
11216
- ): Function;
11217
11361
  /**
11218
11362
  * Gets current value of property {@link #getActiveContent activeContent}.
11219
11363
  *
@@ -11245,10 +11389,6 @@ declare namespace sap {
11245
11389
  * The controls that should be shown in the second content
11246
11390
  */
11247
11391
  getContent2(): sap.ui.core.Control[];
11248
- /**
11249
- * Returns a metadata object for class sap.ui.unified.ContentSwitcher.
11250
- */
11251
- static getMetadata(): sap.ui.core.ElementMetadata;
11252
11392
  /**
11253
11393
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent1 content1}. and returns
11254
11394
  * its index if found or -1 otherwise.
@@ -11453,6 +11593,10 @@ declare namespace sap {
11453
11593
  */
11454
11594
  FNMetaImpl?: Function
11455
11595
  ): Function;
11596
+ /**
11597
+ * Returns a metadata object for class sap.ui.unified.Currency.
11598
+ */
11599
+ static getMetadata(): sap.ui.core.ElementMetadata;
11456
11600
  /**
11457
11601
  * See:
11458
11602
  * sap.ui.core.Control#getAccessibilityInfo
@@ -11491,10 +11635,6 @@ declare namespace sap {
11491
11635
  * Defines the space that is available for the precision of the various currencies.
11492
11636
  */
11493
11637
  getMaxPrecision(): int;
11494
- /**
11495
- * Returns a metadata object for class sap.ui.unified.Currency.
11496
- */
11497
- static getMetadata(): sap.ui.core.ElementMetadata;
11498
11638
  /**
11499
11639
  * @SINCE 1.54
11500
11640
  *
@@ -11626,6 +11766,10 @@ declare namespace sap {
11626
11766
  */
11627
11767
  FNMetaImpl?: Function
11628
11768
  ): Function;
11769
+ /**
11770
+ * Returns a metadata object for class sap.ui.unified.DateRange.
11771
+ */
11772
+ static getMetadata(): sap.ui.core.ElementMetadata;
11629
11773
  /**
11630
11774
  * Gets current value of property {@link #getEndDate endDate}.
11631
11775
  *
@@ -11633,10 +11777,6 @@ declare namespace sap {
11633
11777
  * be a JavaScript date object.
11634
11778
  */
11635
11779
  getEndDate(): object;
11636
- /**
11637
- * Returns a metadata object for class sap.ui.unified.DateRange.
11638
- */
11639
- static getMetadata(): sap.ui.core.ElementMetadata;
11640
11780
  /**
11641
11781
  * Gets current value of property {@link #getStartDate startDate}.
11642
11782
  *
@@ -11729,6 +11869,10 @@ declare namespace sap {
11729
11869
  */
11730
11870
  FNMetaImpl?: Function
11731
11871
  ): Function;
11872
+ /**
11873
+ * Returns a metadata object for class sap.ui.unified.DateTypeRange.
11874
+ */
11875
+ static getMetadata(): sap.ui.core.ElementMetadata;
11732
11876
  /**
11733
11877
  * @SINCE 1.76.0
11734
11878
  *
@@ -11738,10 +11882,6 @@ declare namespace sap {
11738
11882
  * background color defined in `Calendar` `specialDates` aggregation
11739
11883
  */
11740
11884
  getColor(): sap.ui.core.CSSColor;
11741
- /**
11742
- * Returns a metadata object for class sap.ui.unified.DateTypeRange.
11743
- */
11744
- static getMetadata(): sap.ui.core.ElementMetadata;
11745
11885
  /**
11746
11886
  * @SINCE 1.81.0
11747
11887
  *
@@ -11859,6 +11999,31 @@ declare namespace sap {
11859
11999
  mSettings?: sap.ui.unified.$FileUploaderSettings
11860
12000
  );
11861
12001
 
12002
+ /**
12003
+ * Creates a new subclass of class sap.ui.unified.FileUploader with name `sClassName` and enriches it with
12004
+ * the information contained in `oClassInfo`.
12005
+ *
12006
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12007
+ */
12008
+ static extend<T extends Record<string, unknown>>(
12009
+ /**
12010
+ * Name of the class being created
12011
+ */
12012
+ sClassName: string,
12013
+ /**
12014
+ * Object literal with information about the class
12015
+ */
12016
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.FileUploader>,
12017
+ /**
12018
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12019
+ * used by this class
12020
+ */
12021
+ FNMetaImpl?: Function
12022
+ ): Function;
12023
+ /**
12024
+ * Returns a metadata object for class sap.ui.unified.FileUploader.
12025
+ */
12026
+ static getMetadata(): sap.ui.core.ElementMetadata;
11862
12027
  /**
11863
12028
  * @SINCE 1.24.0
11864
12029
  *
@@ -12580,27 +12745,6 @@ declare namespace sap {
12580
12745
  */
12581
12746
  oListener?: object
12582
12747
  ): this;
12583
- /**
12584
- * Creates a new subclass of class sap.ui.unified.FileUploader with name `sClassName` and enriches it with
12585
- * the information contained in `oClassInfo`.
12586
- *
12587
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12588
- */
12589
- static extend<T extends Record<string, unknown>>(
12590
- /**
12591
- * Name of the class being created
12592
- */
12593
- sClassName: string,
12594
- /**
12595
- * Object literal with information about the class
12596
- */
12597
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.FileUploader>,
12598
- /**
12599
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12600
- * used by this class
12601
- */
12602
- FNMetaImpl?: Function
12603
- ): Function;
12604
12748
  /**
12605
12749
  * Fires event {@link #event:change change} to attached listeners.
12606
12750
  */
@@ -12985,10 +13129,6 @@ declare namespace sap {
12985
13129
  * This property is not supported by Internet Explorer 9.
12986
13130
  */
12987
13131
  getMaximumFileSize(): float;
12988
- /**
12989
- * Returns a metadata object for class sap.ui.unified.FileUploader.
12990
- */
12991
- static getMetadata(): sap.ui.core.ElementMetadata;
12992
13132
  /**
12993
13133
  * Gets current value of property {@link #getMimeType mimeType}.
12994
13134
  *
@@ -13992,6 +14132,31 @@ declare namespace sap {
13992
14132
  mSettings?: sap.ui.unified.$MenuSettings
13993
14133
  );
13994
14134
 
14135
+ /**
14136
+ * Creates a new subclass of class sap.ui.unified.Menu with name `sClassName` and enriches it with the information
14137
+ * contained in `oClassInfo`.
14138
+ *
14139
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14140
+ */
14141
+ static extend<T extends Record<string, unknown>>(
14142
+ /**
14143
+ * Name of the class being created
14144
+ */
14145
+ sClassName: string,
14146
+ /**
14147
+ * Object literal with information about the class
14148
+ */
14149
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.Menu>,
14150
+ /**
14151
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14152
+ * used by this class
14153
+ */
14154
+ FNMetaImpl?: Function
14155
+ ): Function;
14156
+ /**
14157
+ * Returns a metadata object for class sap.ui.unified.Menu.
14158
+ */
14159
+ static getMetadata(): sap.ui.core.ElementMetadata;
13995
14160
  /**
13996
14161
  * @SINCE 1.26.3
13997
14162
  *
@@ -14080,27 +14245,6 @@ declare namespace sap {
14080
14245
  */
14081
14246
  oListener?: object
14082
14247
  ): this;
14083
- /**
14084
- * Creates a new subclass of class sap.ui.unified.Menu with name `sClassName` and enriches it with the information
14085
- * contained in `oClassInfo`.
14086
- *
14087
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14088
- */
14089
- static extend<T extends Record<string, unknown>>(
14090
- /**
14091
- * Name of the class being created
14092
- */
14093
- sClassName: string,
14094
- /**
14095
- * Object literal with information about the class
14096
- */
14097
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.Menu>,
14098
- /**
14099
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14100
- * used by this class
14101
- */
14102
- FNMetaImpl?: Function
14103
- ): Function;
14104
14248
  /**
14105
14249
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
14106
14250
  */
@@ -14156,10 +14300,6 @@ declare namespace sap {
14156
14300
  * Default value is `0`.
14157
14301
  */
14158
14302
  getMaxVisibleItems(): int;
14159
- /**
14160
- * Returns a metadata object for class sap.ui.unified.Menu.
14161
- */
14162
- static getMetadata(): sap.ui.core.ElementMetadata;
14163
14303
  /**
14164
14304
  * @SINCE 1.25.0
14165
14305
  *
@@ -14396,15 +14536,6 @@ declare namespace sap {
14396
14536
  mSettings?: sap.ui.unified.$MenuItemSettings
14397
14537
  );
14398
14538
 
14399
- /**
14400
- * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
14401
- */
14402
- addAriaLabelledBy(
14403
- /**
14404
- * The ariaLabelledBy to add; if empty, nothing is inserted
14405
- */
14406
- vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
14407
- ): this;
14408
14539
  /**
14409
14540
  * Creates a new subclass of class sap.ui.unified.MenuItem with name `sClassName` and enriches it with the
14410
14541
  * information contained in `oClassInfo`.
@@ -14426,6 +14557,19 @@ declare namespace sap {
14426
14557
  */
14427
14558
  FNMetaImpl?: Function
14428
14559
  ): Function;
14560
+ /**
14561
+ * Returns a metadata object for class sap.ui.unified.MenuItem.
14562
+ */
14563
+ static getMetadata(): sap.ui.core.ElementMetadata;
14564
+ /**
14565
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
14566
+ */
14567
+ addAriaLabelledBy(
14568
+ /**
14569
+ * The ariaLabelledBy to add; if empty, nothing is inserted
14570
+ */
14571
+ vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
14572
+ ): this;
14429
14573
  /**
14430
14574
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
14431
14575
  * ariaLabelledBy}.
@@ -14440,10 +14584,6 @@ declare namespace sap {
14440
14584
  * Default value is `empty string`.
14441
14585
  */
14442
14586
  getIcon(): sap.ui.core.URI;
14443
- /**
14444
- * Returns a metadata object for class sap.ui.unified.MenuItem.
14445
- */
14446
- static getMetadata(): sap.ui.core.ElementMetadata;
14447
14587
  /**
14448
14588
  * Gets current value of property {@link #getText text}.
14449
14589
  *
@@ -14535,8 +14675,33 @@ declare namespace sap {
14535
14675
  );
14536
14676
 
14537
14677
  /**
14538
- * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.unified.MenuItemBase`.
14539
- *
14678
+ * Creates a new subclass of class sap.ui.unified.MenuItemBase with name `sClassName` and enriches it with
14679
+ * the information contained in `oClassInfo`.
14680
+ *
14681
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
14682
+ */
14683
+ static extend<T extends Record<string, unknown>>(
14684
+ /**
14685
+ * Name of the class being created
14686
+ */
14687
+ sClassName: string,
14688
+ /**
14689
+ * Object literal with information about the class
14690
+ */
14691
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.MenuItemBase>,
14692
+ /**
14693
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14694
+ * used by this class
14695
+ */
14696
+ FNMetaImpl?: Function
14697
+ ): Function;
14698
+ /**
14699
+ * Returns a metadata object for class sap.ui.unified.MenuItemBase.
14700
+ */
14701
+ static getMetadata(): sap.ui.core.ElementMetadata;
14702
+ /**
14703
+ * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.unified.MenuItemBase`.
14704
+ *
14540
14705
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
14541
14706
  * otherwise it will be bound to this `sap.ui.unified.MenuItemBase` itself.
14542
14707
  *
@@ -14598,27 +14763,6 @@ declare namespace sap {
14598
14763
  */
14599
14764
  oListener?: object
14600
14765
  ): this;
14601
- /**
14602
- * Creates a new subclass of class sap.ui.unified.MenuItemBase with name `sClassName` and enriches it with
14603
- * the information contained in `oClassInfo`.
14604
- *
14605
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
14606
- */
14607
- static extend<T extends Record<string, unknown>>(
14608
- /**
14609
- * Name of the class being created
14610
- */
14611
- sClassName: string,
14612
- /**
14613
- * Object literal with information about the class
14614
- */
14615
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.MenuItemBase>,
14616
- /**
14617
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14618
- * used by this class
14619
- */
14620
- FNMetaImpl?: Function
14621
- ): Function;
14622
14766
  /**
14623
14767
  * Fires event {@link #event:select select} to attached listeners.
14624
14768
  */
@@ -14642,10 +14786,6 @@ declare namespace sap {
14642
14786
  * Default value is `true`.
14643
14787
  */
14644
14788
  getEnabled(): boolean;
14645
- /**
14646
- * Returns a metadata object for class sap.ui.unified.MenuItemBase.
14647
- */
14648
- static getMetadata(): sap.ui.core.ElementMetadata;
14649
14789
  /**
14650
14790
  * Gets current value of property {@link #getStartsSection startsSection}.
14651
14791
  *
@@ -14817,13 +14957,6 @@ declare namespace sap {
14817
14957
  mSettings?: sap.ui.unified.$MenuTextFieldItemSettings
14818
14958
  );
14819
14959
 
14820
- /**
14821
- * @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
14822
- * this type of menu item.
14823
- *
14824
- * The aggregation `submenu` (inherited from parent class) is not supported for this type of menu item.
14825
- */
14826
- destroySubmenu(): this;
14827
14960
  /**
14828
14961
  * Creates a new subclass of class sap.ui.unified.MenuTextFieldItem with name `sClassName` and enriches
14829
14962
  * it with the information contained in `oClassInfo`.
@@ -14845,6 +14978,17 @@ declare namespace sap {
14845
14978
  */
14846
14979
  FNMetaImpl?: Function
14847
14980
  ): Function;
14981
+ /**
14982
+ * Returns a metadata object for class sap.ui.unified.MenuTextFieldItem.
14983
+ */
14984
+ static getMetadata(): sap.ui.core.ElementMetadata;
14985
+ /**
14986
+ * @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
14987
+ * this type of menu item.
14988
+ *
14989
+ * The aggregation `submenu` (inherited from parent class) is not supported for this type of menu item.
14990
+ */
14991
+ destroySubmenu(): this;
14848
14992
  /**
14849
14993
  * Gets current value of property {@link #getIcon icon}.
14850
14994
  *
@@ -14858,10 +15002,6 @@ declare namespace sap {
14858
15002
  * Defines the label of the text field of the item.
14859
15003
  */
14860
15004
  getLabel(): string;
14861
- /**
14862
- * Returns a metadata object for class sap.ui.unified.MenuTextFieldItem.
14863
- */
14864
- static getMetadata(): sap.ui.core.ElementMetadata;
14865
15005
  /**
14866
15006
  * @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
14867
15007
  * this type of menu item.
@@ -14994,6 +15134,31 @@ declare namespace sap {
14994
15134
  mSettings?: sap.ui.unified.$ShellSettings
14995
15135
  );
14996
15136
 
15137
+ /**
15138
+ * Creates a new subclass of class sap.ui.unified.Shell with name `sClassName` and enriches it with the
15139
+ * information contained in `oClassInfo`.
15140
+ *
15141
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.ShellLayout.extend}.
15142
+ */
15143
+ static extend<T extends Record<string, unknown>>(
15144
+ /**
15145
+ * Name of the class being created
15146
+ */
15147
+ sClassName: string,
15148
+ /**
15149
+ * Object literal with information about the class
15150
+ */
15151
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.Shell>,
15152
+ /**
15153
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15154
+ * used by this class
15155
+ */
15156
+ FNMetaImpl?: Function
15157
+ ): Function;
15158
+ /**
15159
+ * Returns a metadata object for class sap.ui.unified.Shell.
15160
+ */
15161
+ static getMetadata(): sap.ui.core.ElementMetadata;
14997
15162
  /**
14998
15163
  * Adds some curtainContent to the aggregation {@link #getCurtainContent curtainContent}.
14999
15164
  */
@@ -15061,27 +15226,6 @@ declare namespace sap {
15061
15226
  * Destroys the user in the aggregation {@link #getUser user}.
15062
15227
  */
15063
15228
  destroyUser(): this;
15064
- /**
15065
- * Creates a new subclass of class sap.ui.unified.Shell with name `sClassName` and enriches it with the
15066
- * information contained in `oClassInfo`.
15067
- *
15068
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.ShellLayout.extend}.
15069
- */
15070
- static extend<T extends Record<string, unknown>>(
15071
- /**
15072
- * Name of the class being created
15073
- */
15074
- sClassName: string,
15075
- /**
15076
- * Object literal with information about the class
15077
- */
15078
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.Shell>,
15079
- /**
15080
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15081
- * used by this class
15082
- */
15083
- FNMetaImpl?: Function
15084
- ): Function;
15085
15229
  /**
15086
15230
  * Gets content of aggregation {@link #getCurtainContent curtainContent}.
15087
15231
  *
@@ -15114,10 +15258,6 @@ declare namespace sap {
15114
15258
  * The application icon. If a custom header is set this property has no effect.
15115
15259
  */
15116
15260
  getIcon(): sap.ui.core.URI;
15117
- /**
15118
- * Returns a metadata object for class sap.ui.unified.Shell.
15119
- */
15120
- static getMetadata(): sap.ui.core.ElementMetadata;
15121
15261
  /**
15122
15262
  * Gets content of aggregation {@link #getSearch search}.
15123
15263
  *
@@ -15450,6 +15590,31 @@ declare namespace sap {
15450
15590
  mSettings?: sap.ui.unified.$ShellHeadItemSettings
15451
15591
  );
15452
15592
 
15593
+ /**
15594
+ * Creates a new subclass of class sap.ui.unified.ShellHeadItem with name `sClassName` and enriches it with
15595
+ * the information contained in `oClassInfo`.
15596
+ *
15597
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15598
+ */
15599
+ static extend<T extends Record<string, unknown>>(
15600
+ /**
15601
+ * Name of the class being created
15602
+ */
15603
+ sClassName: string,
15604
+ /**
15605
+ * Object literal with information about the class
15606
+ */
15607
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellHeadItem>,
15608
+ /**
15609
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15610
+ * used by this class
15611
+ */
15612
+ FNMetaImpl?: Function
15613
+ ): Function;
15614
+ /**
15615
+ * Returns a metadata object for class sap.ui.unified.ShellHeadItem.
15616
+ */
15617
+ static getMetadata(): sap.ui.core.ElementMetadata;
15453
15618
  /**
15454
15619
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
15455
15620
  */
@@ -15515,27 +15680,6 @@ declare namespace sap {
15515
15680
  */
15516
15681
  oListener?: object
15517
15682
  ): this;
15518
- /**
15519
- * Creates a new subclass of class sap.ui.unified.ShellHeadItem with name `sClassName` and enriches it with
15520
- * the information contained in `oClassInfo`.
15521
- *
15522
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15523
- */
15524
- static extend<T extends Record<string, unknown>>(
15525
- /**
15526
- * Name of the class being created
15527
- */
15528
- sClassName: string,
15529
- /**
15530
- * Object literal with information about the class
15531
- */
15532
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellHeadItem>,
15533
- /**
15534
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15535
- * used by this class
15536
- */
15537
- FNMetaImpl?: Function
15538
- ): Function;
15539
15683
  /**
15540
15684
  * Fires event {@link #event:press press} to attached listeners.
15541
15685
  */
@@ -15557,10 +15701,6 @@ declare namespace sap {
15557
15701
  * must be set.
15558
15702
  */
15559
15703
  getIcon(): sap.ui.core.URI;
15560
- /**
15561
- * Returns a metadata object for class sap.ui.unified.ShellHeadItem.
15562
- */
15563
- static getMetadata(): sap.ui.core.ElementMetadata;
15564
15704
  /**
15565
15705
  * Gets current value of property {@link #getSelected selected}.
15566
15706
  *
@@ -15789,6 +15929,31 @@ declare namespace sap {
15789
15929
  mSettings?: sap.ui.unified.$ShellHeadUserItemSettings
15790
15930
  );
15791
15931
 
15932
+ /**
15933
+ * Creates a new subclass of class sap.ui.unified.ShellHeadUserItem with name `sClassName` and enriches
15934
+ * it with the information contained in `oClassInfo`.
15935
+ *
15936
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15937
+ */
15938
+ static extend<T extends Record<string, unknown>>(
15939
+ /**
15940
+ * Name of the class being created
15941
+ */
15942
+ sClassName: string,
15943
+ /**
15944
+ * Object literal with information about the class
15945
+ */
15946
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellHeadUserItem>,
15947
+ /**
15948
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15949
+ * used by this class
15950
+ */
15951
+ FNMetaImpl?: Function
15952
+ ): Function;
15953
+ /**
15954
+ * Returns a metadata object for class sap.ui.unified.ShellHeadUserItem.
15955
+ */
15956
+ static getMetadata(): sap.ui.core.ElementMetadata;
15792
15957
  /**
15793
15958
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
15794
15959
  */
@@ -15854,27 +16019,6 @@ declare namespace sap {
15854
16019
  */
15855
16020
  oListener?: object
15856
16021
  ): this;
15857
- /**
15858
- * Creates a new subclass of class sap.ui.unified.ShellHeadUserItem with name `sClassName` and enriches
15859
- * it with the information contained in `oClassInfo`.
15860
- *
15861
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15862
- */
15863
- static extend<T extends Record<string, unknown>>(
15864
- /**
15865
- * Name of the class being created
15866
- */
15867
- sClassName: string,
15868
- /**
15869
- * Object literal with information about the class
15870
- */
15871
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellHeadUserItem>,
15872
- /**
15873
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15874
- * used by this class
15875
- */
15876
- FNMetaImpl?: Function
15877
- ): Function;
15878
16022
  /**
15879
16023
  * Fires event {@link #event:press press} to attached listeners.
15880
16024
  */
@@ -15895,10 +16039,6 @@ declare namespace sap {
15895
16039
  * An image of the user, normally a URI to an image but also an icon from the sap.ui.core.IconPool is possible.
15896
16040
  */
15897
16041
  getImage(): sap.ui.core.URI;
15898
- /**
15899
- * Returns a metadata object for class sap.ui.unified.ShellHeadUserItem.
15900
- */
15901
- static getMetadata(): sap.ui.core.ElementMetadata;
15902
16042
  /**
15903
16043
  * @SINCE 1.27.0
15904
16044
  *
@@ -16019,6 +16159,31 @@ declare namespace sap {
16019
16159
  mSettings?: sap.ui.unified.$ShellLayoutSettings
16020
16160
  );
16021
16161
 
16162
+ /**
16163
+ * Creates a new subclass of class sap.ui.unified.ShellLayout with name `sClassName` and enriches it with
16164
+ * the information contained in `oClassInfo`.
16165
+ *
16166
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16167
+ */
16168
+ static extend<T extends Record<string, unknown>>(
16169
+ /**
16170
+ * Name of the class being created
16171
+ */
16172
+ sClassName: string,
16173
+ /**
16174
+ * Object literal with information about the class
16175
+ */
16176
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellLayout>,
16177
+ /**
16178
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16179
+ * used by this class
16180
+ */
16181
+ FNMetaImpl?: Function
16182
+ ): Function;
16183
+ /**
16184
+ * Returns a metadata object for class sap.ui.unified.ShellLayout.
16185
+ */
16186
+ static getMetadata(): sap.ui.core.ElementMetadata;
16022
16187
  /**
16023
16188
  * Adds some content to the aggregation {@link #getContent content}.
16024
16189
  */
@@ -16049,27 +16214,6 @@ declare namespace sap {
16049
16214
  * Destroys all the paneContent in the aggregation {@link #getPaneContent paneContent}.
16050
16215
  */
16051
16216
  destroyPaneContent(): this;
16052
- /**
16053
- * Creates a new subclass of class sap.ui.unified.ShellLayout with name `sClassName` and enriches it with
16054
- * the information contained in `oClassInfo`.
16055
- *
16056
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16057
- */
16058
- static extend<T extends Record<string, unknown>>(
16059
- /**
16060
- * Name of the class being created
16061
- */
16062
- sClassName: string,
16063
- /**
16064
- * Object literal with information about the class
16065
- */
16066
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellLayout>,
16067
- /**
16068
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16069
- * used by this class
16070
- */
16071
- FNMetaImpl?: Function
16072
- ): Function;
16073
16217
  /**
16074
16218
  * Gets content of aggregation {@link #getContent content}.
16075
16219
  *
@@ -16099,10 +16243,6 @@ declare namespace sap {
16099
16243
  * Default value is `true`.
16100
16244
  */
16101
16245
  getHeaderVisible(): boolean;
16102
- /**
16103
- * Returns a metadata object for class sap.ui.unified.ShellLayout.
16104
- */
16105
- static getMetadata(): sap.ui.core.ElementMetadata;
16106
16246
  /**
16107
16247
  * Gets content of aggregation {@link #getPaneContent paneContent}.
16108
16248
  *
@@ -16291,6 +16431,31 @@ declare namespace sap {
16291
16431
  mSettings?: sap.ui.unified.$ShellOverlaySettings
16292
16432
  );
16293
16433
 
16434
+ /**
16435
+ * Creates a new subclass of class sap.ui.unified.ShellOverlay with name `sClassName` and enriches it with
16436
+ * the information contained in `oClassInfo`.
16437
+ *
16438
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16439
+ */
16440
+ static extend<T extends Record<string, unknown>>(
16441
+ /**
16442
+ * Name of the class being created
16443
+ */
16444
+ sClassName: string,
16445
+ /**
16446
+ * Object literal with information about the class
16447
+ */
16448
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellOverlay>,
16449
+ /**
16450
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16451
+ * used by this class
16452
+ */
16453
+ FNMetaImpl?: Function
16454
+ ): Function;
16455
+ /**
16456
+ * Returns a metadata object for class sap.ui.unified.ShellOverlay.
16457
+ */
16458
+ static getMetadata(): sap.ui.core.ElementMetadata;
16294
16459
  /**
16295
16460
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
16296
16461
  */
@@ -16377,27 +16542,6 @@ declare namespace sap {
16377
16542
  */
16378
16543
  oListener?: object
16379
16544
  ): this;
16380
- /**
16381
- * Creates a new subclass of class sap.ui.unified.ShellOverlay with name `sClassName` and enriches it with
16382
- * the information contained in `oClassInfo`.
16383
- *
16384
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16385
- */
16386
- static extend<T extends Record<string, unknown>>(
16387
- /**
16388
- * Name of the class being created
16389
- */
16390
- sClassName: string,
16391
- /**
16392
- * Object literal with information about the class
16393
- */
16394
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.ShellOverlay>,
16395
- /**
16396
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16397
- * used by this class
16398
- */
16399
- FNMetaImpl?: Function
16400
- ): Function;
16401
16545
  /**
16402
16546
  * Fires event {@link #event:closed closed} to attached listeners.
16403
16547
  */
@@ -16418,10 +16562,6 @@ declare namespace sap {
16418
16562
  * The content to appear in the overlay.
16419
16563
  */
16420
16564
  getContent(): sap.ui.core.Control[];
16421
- /**
16422
- * Returns a metadata object for class sap.ui.unified.ShellOverlay.
16423
- */
16424
- static getMetadata(): sap.ui.core.ElementMetadata;
16425
16565
  /**
16426
16566
  * Gets content of aggregation {@link #getSearch search}.
16427
16567
  *
@@ -16549,6 +16689,31 @@ declare namespace sap {
16549
16689
  mSettings?: sap.ui.unified.$SplitContainerSettings
16550
16690
  );
16551
16691
 
16692
+ /**
16693
+ * Creates a new subclass of class sap.ui.unified.SplitContainer with name `sClassName` and enriches it
16694
+ * with the information contained in `oClassInfo`.
16695
+ *
16696
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16697
+ */
16698
+ static extend<T extends Record<string, unknown>>(
16699
+ /**
16700
+ * Name of the class being created
16701
+ */
16702
+ sClassName: string,
16703
+ /**
16704
+ * Object literal with information about the class
16705
+ */
16706
+ oClassInfo?: sap.ClassInfo<T, sap.ui.unified.SplitContainer>,
16707
+ /**
16708
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16709
+ * used by this class
16710
+ */
16711
+ FNMetaImpl?: Function
16712
+ ): Function;
16713
+ /**
16714
+ * Returns a metadata object for class sap.ui.unified.SplitContainer.
16715
+ */
16716
+ static getMetadata(): sap.ui.core.ElementMetadata;
16552
16717
  /**
16553
16718
  * Adds some content to the aggregation {@link #getContent content}.
16554
16719
  */
@@ -16575,37 +16740,12 @@ declare namespace sap {
16575
16740
  * Destroys all the secondaryContent in the aggregation {@link #getSecondaryContent secondaryContent}.
16576
16741
  */
16577
16742
  destroySecondaryContent(): this;
16578
- /**
16579
- * Creates a new subclass of class sap.ui.unified.SplitContainer with name `sClassName` and enriches it
16580
- * with the information contained in `oClassInfo`.
16581
- *
16582
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16583
- */
16584
- static extend<T extends Record<string, unknown>>(
16585
- /**
16586
- * Name of the class being created
16587
- */
16588
- sClassName: string,
16589
- /**
16590
- * Object literal with information about the class
16591
- */
16592
- oClassInfo?: sap.ClassInfo<T, sap.ui.unified.SplitContainer>,
16593
- /**
16594
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16595
- * used by this class
16596
- */
16597
- FNMetaImpl?: Function
16598
- ): Function;
16599
16743
  /**
16600
16744
  * Gets content of aggregation {@link #getContent content}.
16601
16745
  *
16602
16746
  * The content to appear in the main area.
16603
16747
  */
16604
16748
  getContent(): sap.ui.core.Control[];
16605
- /**
16606
- * Returns a metadata object for class sap.ui.unified.SplitContainer.
16607
- */
16608
- static getMetadata(): sap.ui.core.ElementMetadata;
16609
16749
  /**
16610
16750
  * @SINCE 1.22.0
16611
16751
  *