@openui5/ts-types 1.120.10 → 1.120.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.10
1
+ // For Library Version: 1.120.12
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -12,6 +12,9 @@ declare namespace sap {
12
12
  * Controls and helper classes around the calendar control.
13
13
  */
14
14
  namespace calendar {
15
+ /**
16
+ * Describes the settings that can be provided to the DatesRow constructor.
17
+ */
15
18
  interface $DatesRowSettings
16
19
  extends sap.ui.unified.calendar.$MonthSettings {
17
20
  /**
@@ -56,6 +59,9 @@ declare namespace sap {
56
59
  | `{${string}}`;
57
60
  }
58
61
 
62
+ /**
63
+ * Describes the settings that can be provided to the Header constructor.
64
+ */
59
65
  interface $HeaderSettings extends sap.ui.core.$ControlSettings {
60
66
  /**
61
67
  * Text of the first button (normally day)
@@ -215,6 +221,9 @@ declare namespace sap {
215
221
  pressButton2?: (oEvent: sap.ui.base.Event) => void;
216
222
  }
217
223
 
224
+ /**
225
+ * Describes the settings that can be provided to the Month constructor.
226
+ */
218
227
  interface $MonthSettings extends sap.ui.core.$ControlSettings {
219
228
  /**
220
229
  * A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
@@ -398,6 +407,9 @@ declare namespace sap {
398
407
  weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
399
408
  }
400
409
 
410
+ /**
411
+ * Describes the settings that can be provided to the MonthPicker constructor.
412
+ */
401
413
  interface $MonthPickerSettings extends sap.ui.core.$ControlSettings {
402
414
  /**
403
415
  * The month is initial focused and selected The value must be between 0 and 11
@@ -492,6 +504,9 @@ declare namespace sap {
492
504
  pageChange?: (oEvent: sap.ui.base.Event) => void;
493
505
  }
494
506
 
507
+ /**
508
+ * Describes the settings that can be provided to the MonthsRow constructor.
509
+ */
495
510
  interface $MonthsRowSettings extends sap.ui.core.$ControlSettings {
496
511
  /**
497
512
  * A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
@@ -618,6 +633,9 @@ declare namespace sap {
618
633
  focus?: (oEvent: MonthsRow$FocusEvent) => void;
619
634
  }
620
635
 
636
+ /**
637
+ * Describes the settings that can be provided to the TimesRow constructor.
638
+ */
621
639
  interface $TimesRowSettings extends sap.ui.core.$ControlSettings {
622
640
  /**
623
641
  * A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
@@ -752,6 +770,9 @@ declare namespace sap {
752
770
  focus?: (oEvent: TimesRow$FocusEvent) => void;
753
771
  }
754
772
 
773
+ /**
774
+ * Describes the settings that can be provided to the YearPicker constructor.
775
+ */
755
776
  interface $YearPickerSettings extends sap.ui.core.$ControlSettings {
756
777
  /**
757
778
  * The year is initial focused and selected The value must be between 0 and 9999
@@ -850,18 +871,39 @@ declare namespace sap {
850
871
  pageChange?: (oEvent: sap.ui.base.Event) => void;
851
872
  }
852
873
 
874
+ /**
875
+ * Parameters of the Header#pressButton0 event.
876
+ */
853
877
  interface Header$PressButton0EventParameters {}
854
878
 
879
+ /**
880
+ * Parameters of the Header#pressButton1 event.
881
+ */
855
882
  interface Header$PressButton1EventParameters {}
856
883
 
884
+ /**
885
+ * Parameters of the Header#pressButton2 event.
886
+ */
857
887
  interface Header$PressButton2EventParameters {}
858
888
 
889
+ /**
890
+ * Parameters of the Header#pressCurrentDate event.
891
+ */
859
892
  interface Header$PressCurrentDateEventParameters {}
860
893
 
894
+ /**
895
+ * Parameters of the Header#pressNext event.
896
+ */
861
897
  interface Header$PressNextEventParameters {}
862
898
 
899
+ /**
900
+ * Parameters of the Header#pressPrevious event.
901
+ */
863
902
  interface Header$PressPreviousEventParameters {}
864
903
 
904
+ /**
905
+ * Parameters of the Month#focus event.
906
+ */
865
907
  interface Month$FocusEventParameters {
866
908
  /**
867
909
  * focused date
@@ -879,8 +921,14 @@ declare namespace sap {
879
921
  restoreOldDate?: boolean;
880
922
  }
881
923
 
924
+ /**
925
+ * Parameters of the Month#select event.
926
+ */
882
927
  interface Month$SelectEventParameters {}
883
928
 
929
+ /**
930
+ * Parameters of the Month#weekNumberSelect event.
931
+ */
884
932
  interface Month$WeekNumberSelectEventParameters {
885
933
  /**
886
934
  * The selected week number.
@@ -895,10 +943,19 @@ declare namespace sap {
895
943
  weekDays?: sap.ui.unified.DateRange;
896
944
  }
897
945
 
946
+ /**
947
+ * Parameters of the MonthPicker#pageChange event.
948
+ */
898
949
  interface MonthPicker$PageChangeEventParameters {}
899
950
 
951
+ /**
952
+ * Parameters of the MonthPicker#select event.
953
+ */
900
954
  interface MonthPicker$SelectEventParameters {}
901
955
 
956
+ /**
957
+ * Parameters of the MonthsRow#focus event.
958
+ */
902
959
  interface MonthsRow$FocusEventParameters {
903
960
  /**
904
961
  * First date, as UI5Date or JavaScript Date object, of the month that is focused.
@@ -911,8 +968,14 @@ declare namespace sap {
911
968
  notVisible?: boolean;
912
969
  }
913
970
 
971
+ /**
972
+ * Parameters of the MonthsRow#select event.
973
+ */
914
974
  interface MonthsRow$SelectEventParameters {}
915
975
 
976
+ /**
977
+ * Parameters of the TimesRow#focus event.
978
+ */
916
979
  interface TimesRow$FocusEventParameters {
917
980
  /**
918
981
  * date, as UI5Date or JavaScript Date object, of the focused time.
@@ -925,10 +988,19 @@ declare namespace sap {
925
988
  notVisible?: boolean;
926
989
  }
927
990
 
991
+ /**
992
+ * Parameters of the TimesRow#select event.
993
+ */
928
994
  interface TimesRow$SelectEventParameters {}
929
995
 
996
+ /**
997
+ * Parameters of the YearPicker#pageChange event.
998
+ */
930
999
  interface YearPicker$PageChangeEventParameters {}
931
1000
 
1001
+ /**
1002
+ * Parameters of the YearPicker#select event.
1003
+ */
932
1004
  interface YearPicker$SelectEventParameters {}
933
1005
 
934
1006
  /**
@@ -5629,86 +5701,137 @@ declare namespace sap {
5629
5701
  ): this;
5630
5702
  }
5631
5703
 
5704
+ /**
5705
+ * Event object of the Header#pressButton0 event.
5706
+ */
5632
5707
  type Header$PressButton0Event = sap.ui.base.Event<
5633
5708
  Header$PressButton0EventParameters,
5634
5709
  Header
5635
5710
  >;
5636
5711
 
5712
+ /**
5713
+ * Event object of the Header#pressButton1 event.
5714
+ */
5637
5715
  type Header$PressButton1Event = sap.ui.base.Event<
5638
5716
  Header$PressButton1EventParameters,
5639
5717
  Header
5640
5718
  >;
5641
5719
 
5720
+ /**
5721
+ * Event object of the Header#pressButton2 event.
5722
+ */
5642
5723
  type Header$PressButton2Event = sap.ui.base.Event<
5643
5724
  Header$PressButton2EventParameters,
5644
5725
  Header
5645
5726
  >;
5646
5727
 
5728
+ /**
5729
+ * Event object of the Header#pressCurrentDate event.
5730
+ */
5647
5731
  type Header$PressCurrentDateEvent = sap.ui.base.Event<
5648
5732
  Header$PressCurrentDateEventParameters,
5649
5733
  Header
5650
5734
  >;
5651
5735
 
5736
+ /**
5737
+ * Event object of the Header#pressNext event.
5738
+ */
5652
5739
  type Header$PressNextEvent = sap.ui.base.Event<
5653
5740
  Header$PressNextEventParameters,
5654
5741
  Header
5655
5742
  >;
5656
5743
 
5744
+ /**
5745
+ * Event object of the Header#pressPrevious event.
5746
+ */
5657
5747
  type Header$PressPreviousEvent = sap.ui.base.Event<
5658
5748
  Header$PressPreviousEventParameters,
5659
5749
  Header
5660
5750
  >;
5661
5751
 
5752
+ /**
5753
+ * Event object of the Month#focus event.
5754
+ */
5662
5755
  type Month$FocusEvent = sap.ui.base.Event<
5663
5756
  Month$FocusEventParameters,
5664
5757
  Month
5665
5758
  >;
5666
5759
 
5760
+ /**
5761
+ * Event object of the Month#select event.
5762
+ */
5667
5763
  type Month$SelectEvent = sap.ui.base.Event<
5668
5764
  Month$SelectEventParameters,
5669
5765
  Month
5670
5766
  >;
5671
5767
 
5768
+ /**
5769
+ * Event object of the Month#weekNumberSelect event.
5770
+ */
5672
5771
  type Month$WeekNumberSelectEvent = sap.ui.base.Event<
5673
5772
  Month$WeekNumberSelectEventParameters,
5674
5773
  Month
5675
5774
  >;
5676
5775
 
5776
+ /**
5777
+ * Event object of the MonthPicker#pageChange event.
5778
+ */
5677
5779
  type MonthPicker$PageChangeEvent = sap.ui.base.Event<
5678
5780
  MonthPicker$PageChangeEventParameters,
5679
5781
  MonthPicker
5680
5782
  >;
5681
5783
 
5784
+ /**
5785
+ * Event object of the MonthPicker#select event.
5786
+ */
5682
5787
  type MonthPicker$SelectEvent = sap.ui.base.Event<
5683
5788
  MonthPicker$SelectEventParameters,
5684
5789
  MonthPicker
5685
5790
  >;
5686
5791
 
5792
+ /**
5793
+ * Event object of the MonthsRow#focus event.
5794
+ */
5687
5795
  type MonthsRow$FocusEvent = sap.ui.base.Event<
5688
5796
  MonthsRow$FocusEventParameters,
5689
5797
  MonthsRow
5690
5798
  >;
5691
5799
 
5800
+ /**
5801
+ * Event object of the MonthsRow#select event.
5802
+ */
5692
5803
  type MonthsRow$SelectEvent = sap.ui.base.Event<
5693
5804
  MonthsRow$SelectEventParameters,
5694
5805
  MonthsRow
5695
5806
  >;
5696
5807
 
5808
+ /**
5809
+ * Event object of the TimesRow#focus event.
5810
+ */
5697
5811
  type TimesRow$FocusEvent = sap.ui.base.Event<
5698
5812
  TimesRow$FocusEventParameters,
5699
5813
  TimesRow
5700
5814
  >;
5701
5815
 
5816
+ /**
5817
+ * Event object of the TimesRow#select event.
5818
+ */
5702
5819
  type TimesRow$SelectEvent = sap.ui.base.Event<
5703
5820
  TimesRow$SelectEventParameters,
5704
5821
  TimesRow
5705
5822
  >;
5706
5823
 
5824
+ /**
5825
+ * Event object of the YearPicker#pageChange event.
5826
+ */
5707
5827
  type YearPicker$PageChangeEvent = sap.ui.base.Event<
5708
5828
  YearPicker$PageChangeEventParameters,
5709
5829
  YearPicker
5710
5830
  >;
5711
5831
 
5832
+ /**
5833
+ * Event object of the YearPicker#select event.
5834
+ */
5712
5835
  type YearPicker$SelectEvent = sap.ui.base.Event<
5713
5836
  YearPicker$SelectEventParameters,
5714
5837
  YearPicker
@@ -5740,6 +5863,9 @@ declare namespace sap {
5740
5863
  ): Promise<Blob[]>;
5741
5864
  }
5742
5865
 
5866
+ /**
5867
+ * Describes the settings that can be provided to the Calendar constructor.
5868
+ */
5743
5869
  interface $CalendarSettings extends sap.ui.core.$ControlSettings {
5744
5870
  /**
5745
5871
  * If set, interval selection is allowed
@@ -6005,6 +6131,9 @@ declare namespace sap {
6005
6131
  weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
6006
6132
  }
6007
6133
 
6134
+ /**
6135
+ * Describes the settings that can be provided to the CalendarAppointment constructor.
6136
+ */
6008
6137
  interface $CalendarAppointmentSettings
6009
6138
  extends sap.ui.unified.$DateTypeRangeSettings {
6010
6139
  /**
@@ -6089,6 +6218,9 @@ declare namespace sap {
6089
6218
  | `{${string}}`;
6090
6219
  }
6091
6220
 
6221
+ /**
6222
+ * Describes the settings that can be provided to the CalendarDateInterval constructor.
6223
+ */
6092
6224
  interface $CalendarDateIntervalSettings
6093
6225
  extends sap.ui.unified.$CalendarSettings {
6094
6226
  /**
@@ -6129,6 +6261,9 @@ declare namespace sap {
6129
6261
  | `{${string}}`;
6130
6262
  }
6131
6263
 
6264
+ /**
6265
+ * Describes the settings that can be provided to the CalendarLegend constructor.
6266
+ */
6132
6267
  interface $CalendarLegendSettings extends sap.ui.core.$ControlSettings {
6133
6268
  /**
6134
6269
  * Determines the standard items related to the calendar days, such as, today, selected, working and non-working.
@@ -6160,6 +6295,9 @@ declare namespace sap {
6160
6295
  | `{${string}}`;
6161
6296
  }
6162
6297
 
6298
+ /**
6299
+ * Describes the settings that can be provided to the CalendarLegendItem constructor.
6300
+ */
6163
6301
  interface $CalendarLegendItemSettings
6164
6302
  extends sap.ui.core.$ElementSettings {
6165
6303
  /**
@@ -6189,6 +6327,9 @@ declare namespace sap {
6189
6327
  | `{${string}}`;
6190
6328
  }
6191
6329
 
6330
+ /**
6331
+ * Describes the settings that can be provided to the CalendarMonthInterval constructor.
6332
+ */
6192
6333
  interface $CalendarMonthIntervalSettings
6193
6334
  extends sap.ui.core.$ControlSettings {
6194
6335
  /**
@@ -6332,6 +6473,9 @@ declare namespace sap {
6332
6473
  startDateChange?: (oEvent: sap.ui.base.Event) => void;
6333
6474
  }
6334
6475
 
6476
+ /**
6477
+ * Describes the settings that can be provided to the CalendarRow constructor.
6478
+ */
6335
6479
  interface $CalendarRowSettings extends sap.ui.core.$ControlSettings {
6336
6480
  /**
6337
6481
  * Start date, as UI5Date or JavaScript Date object, of the row. As default, the current date is used.
@@ -6608,6 +6752,9 @@ declare namespace sap {
6608
6752
  intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
6609
6753
  }
6610
6754
 
6755
+ /**
6756
+ * Describes the settings that can be provided to the CalendarTimeInterval constructor.
6757
+ */
6611
6758
  interface $CalendarTimeIntervalSettings
6612
6759
  extends sap.ui.core.$ControlSettings {
6613
6760
  /**
@@ -6760,6 +6907,9 @@ declare namespace sap {
6760
6907
  startDateChange?: (oEvent: sap.ui.base.Event) => void;
6761
6908
  }
6762
6909
 
6910
+ /**
6911
+ * Describes the settings that can be provided to the ColorPicker constructor.
6912
+ */
6763
6913
  interface $ColorPickerSettings extends sap.ui.core.$ControlSettings {
6764
6914
  /**
6765
6915
  * Determines the input parameter that can be a string of type HEX, RGB, HSV, or a CSS color name:
@@ -6816,6 +6966,9 @@ declare namespace sap {
6816
6966
  liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
6817
6967
  }
6818
6968
 
6969
+ /**
6970
+ * Describes the settings that can be provided to the ColorPickerPopover constructor.
6971
+ */
6819
6972
  interface $ColorPickerPopoverSettings
6820
6973
  extends sap.ui.core.$ControlSettings {
6821
6974
  /**
@@ -6865,6 +7018,12 @@ declare namespace sap {
6865
7018
  liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
6866
7019
  }
6867
7020
 
7021
+ /**
7022
+ * Describes the settings that can be provided to the ContentSwitcher constructor.
7023
+ *
7024
+ * @deprecated (since 1.44.0)
7025
+ * @experimental (since 1.16.0) - API is not yet finished and might change completely
7026
+ */
6868
7027
  interface $ContentSwitcherSettings extends sap.ui.core.$ControlSettings {
6869
7028
  /**
6870
7029
  * Set the used animation when changing content. This just sets a CSS-class named "sapUiUnifiedACSwitcherAnimation"
@@ -6901,6 +7060,9 @@ declare namespace sap {
6901
7060
  | `{${string}}`;
6902
7061
  }
6903
7062
 
7063
+ /**
7064
+ * Describes the settings that can be provided to the Currency constructor.
7065
+ */
6904
7066
  interface $CurrencySettings extends sap.ui.core.$ControlSettings {
6905
7067
  /**
6906
7068
  * Determines the currency value.
@@ -6958,6 +7120,9 @@ declare namespace sap {
6958
7120
  | `{${string}}`;
6959
7121
  }
6960
7122
 
7123
+ /**
7124
+ * Describes the settings that can be provided to the DateRange constructor.
7125
+ */
6961
7126
  interface $DateRangeSettings extends sap.ui.core.$ElementSettings {
6962
7127
  /**
6963
7128
  * Start date for a date range. This must be a UI5Date or JavaScript Date object.
@@ -6977,6 +7142,9 @@ declare namespace sap {
6977
7142
  | `{${string}}`;
6978
7143
  }
6979
7144
 
7145
+ /**
7146
+ * Describes the settings that can be provided to the DateTypeRange constructor.
7147
+ */
6980
7148
  interface $DateTypeRangeSettings
6981
7149
  extends sap.ui.unified.$DateRangeSettings {
6982
7150
  /**
@@ -7011,6 +7179,9 @@ declare namespace sap {
7011
7179
  | `{${string}}`;
7012
7180
  }
7013
7181
 
7182
+ /**
7183
+ * Describes the settings that can be provided to the FileUploader constructor.
7184
+ */
7014
7185
  interface $FileUploaderSettings extends sap.ui.core.$ControlSettings {
7015
7186
  /**
7016
7187
  * Value of the path for file upload.
@@ -7418,6 +7589,9 @@ declare namespace sap {
7418
7589
  afterDialogClose?: (oEvent: sap.ui.base.Event) => void;
7419
7590
  }
7420
7591
 
7592
+ /**
7593
+ * Describes the settings that can be provided to the FileUploaderParameter constructor.
7594
+ */
7421
7595
  interface $FileUploaderParameterSettings
7422
7596
  extends sap.ui.core.$ElementSettings {
7423
7597
  /**
@@ -7435,6 +7609,9 @@ declare namespace sap {
7435
7609
  value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
7436
7610
  }
7437
7611
 
7612
+ /**
7613
+ * Describes the settings that can be provided to the FileUploaderXHRSettings constructor.
7614
+ */
7438
7615
  interface $FileUploaderXHRSettingsSettings
7439
7616
  extends sap.ui.core.$ElementSettings {
7440
7617
  /**
@@ -7448,6 +7625,9 @@ declare namespace sap {
7448
7625
  | `{${string}}`;
7449
7626
  }
7450
7627
 
7628
+ /**
7629
+ * Describes the settings that can be provided to the Menu constructor.
7630
+ */
7451
7631
  interface $MenuSettings extends sap.ui.core.$ControlSettings {
7452
7632
  /**
7453
7633
  * When a menu is disabled none of its items can be selected by the user. The enabled property of an item
@@ -7518,6 +7698,9 @@ declare namespace sap {
7518
7698
  itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
7519
7699
  }
7520
7700
 
7701
+ /**
7702
+ * Describes the settings that can be provided to the MenuItem constructor.
7703
+ */
7521
7704
  interface $MenuItemSettings extends sap.ui.unified.$MenuItemBaseSettings {
7522
7705
  /**
7523
7706
  * Defines the text which should be displayed on the item.
@@ -7539,6 +7722,9 @@ declare namespace sap {
7539
7722
  ariaLabelledBy?: Array<sap.ui.core.Control | string>;
7540
7723
  }
7541
7724
 
7725
+ /**
7726
+ * Describes the settings that can be provided to the MenuItemBase constructor.
7727
+ */
7542
7728
  interface $MenuItemBaseSettings extends sap.ui.core.$ElementSettings {
7543
7729
  /**
7544
7730
  * When an item is disabled the item can not be selected by the user. The enabled property of the item has
@@ -7579,6 +7765,9 @@ declare namespace sap {
7579
7765
  select?: (oEvent: MenuItemBase$SelectEvent) => void;
7580
7766
  }
7581
7767
 
7768
+ /**
7769
+ * Describes the settings that can be provided to the MenuTextFieldItem constructor.
7770
+ */
7582
7771
  interface $MenuTextFieldItemSettings
7583
7772
  extends sap.ui.unified.$MenuItemBaseSettings {
7584
7773
  /**
@@ -7610,6 +7799,11 @@ declare namespace sap {
7610
7799
  | `{${string}}`;
7611
7800
  }
7612
7801
 
7802
+ /**
7803
+ * Describes the settings that can be provided to the Shell constructor.
7804
+ *
7805
+ * @deprecated (since 1.44.0)
7806
+ */
7613
7807
  interface $ShellSettings extends sap.ui.unified.$ShellLayoutSettings {
7614
7808
  /**
7615
7809
  * The application icon. If a custom header is set this property has no effect.
@@ -7703,6 +7897,11 @@ declare namespace sap {
7703
7897
  user?: sap.ui.unified.ShellHeadUserItem;
7704
7898
  }
7705
7899
 
7900
+ /**
7901
+ * Describes the settings that can be provided to the ShellHeadItem constructor.
7902
+ *
7903
+ * @deprecated (since 1.44.0)
7904
+ */
7706
7905
  interface $ShellHeadItemSettings extends sap.ui.core.$ElementSettings {
7707
7906
  /**
7708
7907
  * If set to true, a divider is displayed before the item.
@@ -7784,6 +7983,11 @@ declare namespace sap {
7784
7983
  press?: (oEvent: sap.ui.base.Event) => void;
7785
7984
  }
7786
7985
 
7986
+ /**
7987
+ * Describes the settings that can be provided to the ShellHeadUserItem constructor.
7988
+ *
7989
+ * @deprecated (since 1.44.0)
7990
+ */
7787
7991
  interface $ShellHeadUserItemSettings
7788
7992
  extends sap.ui.core.$ElementSettings {
7789
7993
  /**
@@ -7821,6 +8025,11 @@ declare namespace sap {
7821
8025
  press?: (oEvent: sap.ui.base.Event) => void;
7822
8026
  }
7823
8027
 
8028
+ /**
8029
+ * Describes the settings that can be provided to the ShellLayout constructor.
8030
+ *
8031
+ * @deprecated (since 1.44.0)
8032
+ */
7824
8033
  interface $ShellLayoutSettings extends sap.ui.core.$ControlSettings {
7825
8034
  /**
7826
8035
  * Shows / Hides the side pane.
@@ -7871,6 +8080,11 @@ declare namespace sap {
7871
8080
  header?: sap.ui.core.Control;
7872
8081
  }
7873
8082
 
8083
+ /**
8084
+ * Describes the settings that can be provided to the ShellOverlay constructor.
8085
+ *
8086
+ * @deprecated (since 1.44.0)
8087
+ */
7874
8088
  interface $ShellOverlaySettings extends sap.ui.core.$ControlSettings {
7875
8089
  /**
7876
8090
  * The content to appear in the overlay.
@@ -7903,6 +8117,12 @@ declare namespace sap {
7903
8117
  closed?: (oEvent: sap.ui.base.Event) => void;
7904
8118
  }
7905
8119
 
8120
+ /**
8121
+ * Describes the settings that can be provided to the SplitContainer constructor.
8122
+ *
8123
+ * @deprecated (since 1.44.0)
8124
+ * @experimental (since 1.15.0) - API is not yet finished and might change completely
8125
+ */
7906
8126
  interface $SplitContainerSettings extends sap.ui.core.$ControlSettings {
7907
8127
  /**
7908
8128
  * Shows / Hides the secondary area.
@@ -7959,12 +8179,24 @@ declare namespace sap {
7959
8179
  | `{${string}}`;
7960
8180
  }
7961
8181
 
8182
+ /**
8183
+ * Parameters of the Calendar#cancel event.
8184
+ */
7962
8185
  interface Calendar$CancelEventParameters {}
7963
8186
 
8187
+ /**
8188
+ * Parameters of the Calendar#select event.
8189
+ */
7964
8190
  interface Calendar$SelectEventParameters {}
7965
8191
 
8192
+ /**
8193
+ * Parameters of the Calendar#startDateChange event.
8194
+ */
7966
8195
  interface Calendar$StartDateChangeEventParameters {}
7967
8196
 
8197
+ /**
8198
+ * Parameters of the Calendar#weekNumberSelect event.
8199
+ */
7968
8200
  interface Calendar$WeekNumberSelectEventParameters {
7969
8201
  /**
7970
8202
  * The selected week number.
@@ -7977,12 +8209,24 @@ declare namespace sap {
7977
8209
  weekDays?: sap.ui.unified.DateRange;
7978
8210
  }
7979
8211
 
8212
+ /**
8213
+ * Parameters of the CalendarMonthInterval#cancel event.
8214
+ */
7980
8215
  interface CalendarMonthInterval$CancelEventParameters {}
7981
8216
 
8217
+ /**
8218
+ * Parameters of the CalendarMonthInterval#select event.
8219
+ */
7982
8220
  interface CalendarMonthInterval$SelectEventParameters {}
7983
8221
 
8222
+ /**
8223
+ * Parameters of the CalendarMonthInterval#startDateChange event.
8224
+ */
7984
8225
  interface CalendarMonthInterval$StartDateChangeEventParameters {}
7985
8226
 
8227
+ /**
8228
+ * Parameters of the CalendarRow#intervalSelect event.
8229
+ */
7986
8230
  interface CalendarRow$IntervalSelectEventParameters {
7987
8231
  /**
7988
8232
  * Interval start date as UI5Date or JavaScript Date object
@@ -8000,6 +8244,9 @@ declare namespace sap {
8000
8244
  subInterval?: boolean;
8001
8245
  }
8002
8246
 
8247
+ /**
8248
+ * Parameters of the CalendarRow#leaveRow event.
8249
+ */
8003
8250
  interface CalendarRow$LeaveRowEventParameters {
8004
8251
  /**
8005
8252
  * The type of the event that triggers this `leaveRow`
@@ -8007,6 +8254,9 @@ declare namespace sap {
8007
8254
  type?: string;
8008
8255
  }
8009
8256
 
8257
+ /**
8258
+ * Parameters of the CalendarRow#select event.
8259
+ */
8010
8260
  interface CalendarRow$SelectEventParameters {
8011
8261
  /**
8012
8262
  * selected appointment
@@ -8030,14 +8280,29 @@ declare namespace sap {
8030
8280
  domRefId?: string;
8031
8281
  }
8032
8282
 
8283
+ /**
8284
+ * Parameters of the CalendarRow#startDateChange event.
8285
+ */
8033
8286
  interface CalendarRow$StartDateChangeEventParameters {}
8034
8287
 
8288
+ /**
8289
+ * Parameters of the CalendarTimeInterval#cancel event.
8290
+ */
8035
8291
  interface CalendarTimeInterval$CancelEventParameters {}
8036
8292
 
8293
+ /**
8294
+ * Parameters of the CalendarTimeInterval#select event.
8295
+ */
8037
8296
  interface CalendarTimeInterval$SelectEventParameters {}
8038
8297
 
8298
+ /**
8299
+ * Parameters of the CalendarTimeInterval#startDateChange event.
8300
+ */
8039
8301
  interface CalendarTimeInterval$StartDateChangeEventParameters {}
8040
8302
 
8303
+ /**
8304
+ * Parameters of the ColorPicker#change event.
8305
+ */
8041
8306
  interface ColorPicker$ChangeEventParameters {
8042
8307
  /**
8043
8308
  * Parameter containing the RED value (0-255).
@@ -8085,6 +8350,9 @@ declare namespace sap {
8085
8350
  alpha?: string;
8086
8351
  }
8087
8352
 
8353
+ /**
8354
+ * Parameters of the ColorPicker#liveChange event.
8355
+ */
8088
8356
  interface ColorPicker$LiveChangeEventParameters {
8089
8357
  /**
8090
8358
  * Parameter containing the RED value (0-255).
@@ -8132,6 +8400,9 @@ declare namespace sap {
8132
8400
  alpha?: string;
8133
8401
  }
8134
8402
 
8403
+ /**
8404
+ * Parameters of the ColorPickerPopover#change event.
8405
+ */
8135
8406
  interface ColorPickerPopover$ChangeEventParameters {
8136
8407
  /**
8137
8408
  * Parameter containing the RED value (0-255).
@@ -8179,6 +8450,9 @@ declare namespace sap {
8179
8450
  alpha?: string;
8180
8451
  }
8181
8452
 
8453
+ /**
8454
+ * Parameters of the ColorPickerPopover#liveChange event.
8455
+ */
8182
8456
  interface ColorPickerPopover$LiveChangeEventParameters {
8183
8457
  /**
8184
8458
  * Parameter containing the RED value (0-255).
@@ -8226,10 +8500,19 @@ declare namespace sap {
8226
8500
  alpha?: string;
8227
8501
  }
8228
8502
 
8503
+ /**
8504
+ * Parameters of the FileUploader#afterDialogClose event.
8505
+ */
8229
8506
  interface FileUploader$AfterDialogCloseEventParameters {}
8230
8507
 
8508
+ /**
8509
+ * Parameters of the FileUploader#beforeDialogOpen event.
8510
+ */
8231
8511
  interface FileUploader$BeforeDialogOpenEventParameters {}
8232
8512
 
8513
+ /**
8514
+ * Parameters of the FileUploader#change event.
8515
+ */
8233
8516
  interface FileUploader$ChangeEventParameters {
8234
8517
  /**
8235
8518
  * New file path value.
@@ -8242,8 +8525,14 @@ declare namespace sap {
8242
8525
  files?: object[];
8243
8526
  }
8244
8527
 
8528
+ /**
8529
+ * Parameters of the FileUploader#fileAllowed event.
8530
+ */
8245
8531
  interface FileUploader$FileAllowedEventParameters {}
8246
8532
 
8533
+ /**
8534
+ * Parameters of the FileUploader#fileEmpty event.
8535
+ */
8247
8536
  interface FileUploader$FileEmptyEventParameters {
8248
8537
  /**
8249
8538
  * The name of the file to be uploaded.
@@ -8251,6 +8540,9 @@ declare namespace sap {
8251
8540
  fileName?: string;
8252
8541
  }
8253
8542
 
8543
+ /**
8544
+ * Parameters of the FileUploader#filenameLengthExceed event.
8545
+ */
8254
8546
  interface FileUploader$FilenameLengthExceedEventParameters {
8255
8547
  /**
8256
8548
  * The filename, which is longer than specified by the value of the property `maximumFilenameLength`.
@@ -8258,6 +8550,9 @@ declare namespace sap {
8258
8550
  fileName?: string;
8259
8551
  }
8260
8552
 
8553
+ /**
8554
+ * Parameters of the FileUploader#fileSizeExceed event.
8555
+ */
8261
8556
  interface FileUploader$FileSizeExceedEventParameters {
8262
8557
  /**
8263
8558
  * The name of a file to be uploaded.
@@ -8270,6 +8565,9 @@ declare namespace sap {
8270
8565
  fileSize?: string;
8271
8566
  }
8272
8567
 
8568
+ /**
8569
+ * Parameters of the FileUploader#typeMissmatch event.
8570
+ */
8273
8571
  interface FileUploader$TypeMissmatchEventParameters {
8274
8572
  /**
8275
8573
  * The name of a file to be uploaded.
@@ -8287,6 +8585,9 @@ declare namespace sap {
8287
8585
  mimeType?: string;
8288
8586
  }
8289
8587
 
8588
+ /**
8589
+ * Parameters of the FileUploader#uploadAborted event.
8590
+ */
8290
8591
  interface FileUploader$UploadAbortedEventParameters {
8291
8592
  /**
8292
8593
  * The name of a file to be uploaded.
@@ -8302,6 +8603,9 @@ declare namespace sap {
8302
8603
  requestHeaders?: object[];
8303
8604
  }
8304
8605
 
8606
+ /**
8607
+ * Parameters of the FileUploader#uploadComplete event.
8608
+ */
8305
8609
  interface FileUploader$UploadCompleteEventParameters {
8306
8610
  /**
8307
8611
  * The name of a file to be uploaded.
@@ -8362,6 +8666,9 @@ declare namespace sap {
8362
8666
  requestHeaders?: object[];
8363
8667
  }
8364
8668
 
8669
+ /**
8670
+ * Parameters of the FileUploader#uploadProgress event.
8671
+ */
8365
8672
  interface FileUploader$UploadProgressEventParameters {
8366
8673
  /**
8367
8674
  * Indicates whether or not the relative upload progress can be calculated out of loaded and total.
@@ -8392,6 +8699,9 @@ declare namespace sap {
8392
8699
  requestHeaders?: object[];
8393
8700
  }
8394
8701
 
8702
+ /**
8703
+ * Parameters of the FileUploader#uploadStart event.
8704
+ */
8395
8705
  interface FileUploader$UploadStartEventParameters {
8396
8706
  /**
8397
8707
  * The name of a file to be uploaded.
@@ -8407,6 +8717,9 @@ declare namespace sap {
8407
8717
  requestHeaders?: object[];
8408
8718
  }
8409
8719
 
8720
+ /**
8721
+ * Parameters of the Menu#itemSelect event.
8722
+ */
8410
8723
  interface Menu$ItemSelectEventParameters {
8411
8724
  /**
8412
8725
  * The action (item) which was selected by the user.
@@ -8414,6 +8727,9 @@ declare namespace sap {
8414
8727
  item?: sap.ui.unified.MenuItemBase;
8415
8728
  }
8416
8729
 
8730
+ /**
8731
+ * Parameters of the MenuItemBase#select event.
8732
+ */
8417
8733
  interface MenuItemBase$SelectEventParameters {
8418
8734
  /**
8419
8735
  * The current item
@@ -8421,10 +8737,19 @@ declare namespace sap {
8421
8737
  item?: sap.ui.unified.MenuItemBase;
8422
8738
  }
8423
8739
 
8740
+ /**
8741
+ * Parameters of the ShellHeadItem#press event.
8742
+ */
8424
8743
  interface ShellHeadItem$PressEventParameters {}
8425
8744
 
8745
+ /**
8746
+ * Parameters of the ShellHeadUserItem#press event.
8747
+ */
8426
8748
  interface ShellHeadUserItem$PressEventParameters {}
8427
8749
 
8750
+ /**
8751
+ * Parameters of the ShellOverlay#closed event.
8752
+ */
8428
8753
  interface ShellOverlay$ClosedEventParameters {}
8429
8754
 
8430
8755
  /**
@@ -21296,177 +21621,281 @@ declare namespace sap {
21296
21621
  */
21297
21622
  WorkingDay = "WorkingDay",
21298
21623
  }
21299
-
21624
+ /**
21625
+ * Event object of the Calendar#cancel event.
21626
+ */
21300
21627
  type Calendar$CancelEvent = sap.ui.base.Event<
21301
21628
  Calendar$CancelEventParameters,
21302
21629
  Calendar
21303
21630
  >;
21304
21631
 
21632
+ /**
21633
+ * Event object of the Calendar#select event.
21634
+ */
21305
21635
  type Calendar$SelectEvent = sap.ui.base.Event<
21306
21636
  Calendar$SelectEventParameters,
21307
21637
  Calendar
21308
21638
  >;
21309
21639
 
21640
+ /**
21641
+ * Event object of the Calendar#startDateChange event.
21642
+ */
21310
21643
  type Calendar$StartDateChangeEvent = sap.ui.base.Event<
21311
21644
  Calendar$StartDateChangeEventParameters,
21312
21645
  Calendar
21313
21646
  >;
21314
21647
 
21648
+ /**
21649
+ * Event object of the Calendar#weekNumberSelect event.
21650
+ */
21315
21651
  type Calendar$WeekNumberSelectEvent = sap.ui.base.Event<
21316
21652
  Calendar$WeekNumberSelectEventParameters,
21317
21653
  Calendar
21318
21654
  >;
21319
21655
 
21656
+ /**
21657
+ * Event object of the CalendarMonthInterval#cancel event.
21658
+ */
21320
21659
  type CalendarMonthInterval$CancelEvent = sap.ui.base.Event<
21321
21660
  CalendarMonthInterval$CancelEventParameters,
21322
21661
  CalendarMonthInterval
21323
21662
  >;
21324
21663
 
21664
+ /**
21665
+ * Event object of the CalendarMonthInterval#select event.
21666
+ */
21325
21667
  type CalendarMonthInterval$SelectEvent = sap.ui.base.Event<
21326
21668
  CalendarMonthInterval$SelectEventParameters,
21327
21669
  CalendarMonthInterval
21328
21670
  >;
21329
21671
 
21672
+ /**
21673
+ * Event object of the CalendarMonthInterval#startDateChange event.
21674
+ */
21330
21675
  type CalendarMonthInterval$StartDateChangeEvent = sap.ui.base.Event<
21331
21676
  CalendarMonthInterval$StartDateChangeEventParameters,
21332
21677
  CalendarMonthInterval
21333
21678
  >;
21334
21679
 
21680
+ /**
21681
+ * Event object of the CalendarRow#intervalSelect event.
21682
+ */
21335
21683
  type CalendarRow$IntervalSelectEvent = sap.ui.base.Event<
21336
21684
  CalendarRow$IntervalSelectEventParameters,
21337
21685
  CalendarRow
21338
21686
  >;
21339
21687
 
21688
+ /**
21689
+ * Event object of the CalendarRow#leaveRow event.
21690
+ */
21340
21691
  type CalendarRow$LeaveRowEvent = sap.ui.base.Event<
21341
21692
  CalendarRow$LeaveRowEventParameters,
21342
21693
  CalendarRow
21343
21694
  >;
21344
21695
 
21696
+ /**
21697
+ * Event object of the CalendarRow#select event.
21698
+ */
21345
21699
  type CalendarRow$SelectEvent = sap.ui.base.Event<
21346
21700
  CalendarRow$SelectEventParameters,
21347
21701
  CalendarRow
21348
21702
  >;
21349
21703
 
21704
+ /**
21705
+ * Event object of the CalendarRow#startDateChange event.
21706
+ */
21350
21707
  type CalendarRow$StartDateChangeEvent = sap.ui.base.Event<
21351
21708
  CalendarRow$StartDateChangeEventParameters,
21352
21709
  CalendarRow
21353
21710
  >;
21354
21711
 
21712
+ /**
21713
+ * Event object of the CalendarTimeInterval#cancel event.
21714
+ */
21355
21715
  type CalendarTimeInterval$CancelEvent = sap.ui.base.Event<
21356
21716
  CalendarTimeInterval$CancelEventParameters,
21357
21717
  CalendarTimeInterval
21358
21718
  >;
21359
21719
 
21720
+ /**
21721
+ * Event object of the CalendarTimeInterval#select event.
21722
+ */
21360
21723
  type CalendarTimeInterval$SelectEvent = sap.ui.base.Event<
21361
21724
  CalendarTimeInterval$SelectEventParameters,
21362
21725
  CalendarTimeInterval
21363
21726
  >;
21364
21727
 
21728
+ /**
21729
+ * Event object of the CalendarTimeInterval#startDateChange event.
21730
+ */
21365
21731
  type CalendarTimeInterval$StartDateChangeEvent = sap.ui.base.Event<
21366
21732
  CalendarTimeInterval$StartDateChangeEventParameters,
21367
21733
  CalendarTimeInterval
21368
21734
  >;
21369
21735
 
21736
+ /**
21737
+ * Event object of the ColorPicker#change event.
21738
+ */
21370
21739
  type ColorPicker$ChangeEvent = sap.ui.base.Event<
21371
21740
  ColorPicker$ChangeEventParameters,
21372
21741
  ColorPicker
21373
21742
  >;
21374
21743
 
21744
+ /**
21745
+ * Event object of the ColorPicker#liveChange event.
21746
+ */
21375
21747
  type ColorPicker$LiveChangeEvent = sap.ui.base.Event<
21376
21748
  ColorPicker$LiveChangeEventParameters,
21377
21749
  ColorPicker
21378
21750
  >;
21379
21751
 
21752
+ /**
21753
+ * Event object of the ColorPickerPopover#change event.
21754
+ */
21380
21755
  type ColorPickerPopover$ChangeEvent = sap.ui.base.Event<
21381
21756
  ColorPickerPopover$ChangeEventParameters,
21382
21757
  ColorPickerPopover
21383
21758
  >;
21384
21759
 
21760
+ /**
21761
+ * Event object of the ColorPickerPopover#liveChange event.
21762
+ */
21385
21763
  type ColorPickerPopover$LiveChangeEvent = sap.ui.base.Event<
21386
21764
  ColorPickerPopover$LiveChangeEventParameters,
21387
21765
  ColorPickerPopover
21388
21766
  >;
21389
21767
 
21768
+ /**
21769
+ * Event object of the FileUploader#afterDialogClose event.
21770
+ */
21390
21771
  type FileUploader$AfterDialogCloseEvent = sap.ui.base.Event<
21391
21772
  FileUploader$AfterDialogCloseEventParameters,
21392
21773
  FileUploader
21393
21774
  >;
21394
21775
 
21776
+ /**
21777
+ * Event object of the FileUploader#beforeDialogOpen event.
21778
+ */
21395
21779
  type FileUploader$BeforeDialogOpenEvent = sap.ui.base.Event<
21396
21780
  FileUploader$BeforeDialogOpenEventParameters,
21397
21781
  FileUploader
21398
21782
  >;
21399
21783
 
21784
+ /**
21785
+ * Event object of the FileUploader#change event.
21786
+ */
21400
21787
  type FileUploader$ChangeEvent = sap.ui.base.Event<
21401
21788
  FileUploader$ChangeEventParameters,
21402
21789
  FileUploader
21403
21790
  >;
21404
21791
 
21792
+ /**
21793
+ * Event object of the FileUploader#fileAllowed event.
21794
+ */
21405
21795
  type FileUploader$FileAllowedEvent = sap.ui.base.Event<
21406
21796
  FileUploader$FileAllowedEventParameters,
21407
21797
  FileUploader
21408
21798
  >;
21409
21799
 
21800
+ /**
21801
+ * Event object of the FileUploader#fileEmpty event.
21802
+ */
21410
21803
  type FileUploader$FileEmptyEvent = sap.ui.base.Event<
21411
21804
  FileUploader$FileEmptyEventParameters,
21412
21805
  FileUploader
21413
21806
  >;
21414
21807
 
21808
+ /**
21809
+ * Event object of the FileUploader#filenameLengthExceed event.
21810
+ */
21415
21811
  type FileUploader$FilenameLengthExceedEvent = sap.ui.base.Event<
21416
21812
  FileUploader$FilenameLengthExceedEventParameters,
21417
21813
  FileUploader
21418
21814
  >;
21419
21815
 
21816
+ /**
21817
+ * Event object of the FileUploader#fileSizeExceed event.
21818
+ */
21420
21819
  type FileUploader$FileSizeExceedEvent = sap.ui.base.Event<
21421
21820
  FileUploader$FileSizeExceedEventParameters,
21422
21821
  FileUploader
21423
21822
  >;
21424
21823
 
21824
+ /**
21825
+ * Event object of the FileUploader#typeMissmatch event.
21826
+ */
21425
21827
  type FileUploader$TypeMissmatchEvent = sap.ui.base.Event<
21426
21828
  FileUploader$TypeMissmatchEventParameters,
21427
21829
  FileUploader
21428
21830
  >;
21429
21831
 
21832
+ /**
21833
+ * Event object of the FileUploader#uploadAborted event.
21834
+ */
21430
21835
  type FileUploader$UploadAbortedEvent = sap.ui.base.Event<
21431
21836
  FileUploader$UploadAbortedEventParameters,
21432
21837
  FileUploader
21433
21838
  >;
21434
21839
 
21840
+ /**
21841
+ * Event object of the FileUploader#uploadComplete event.
21842
+ */
21435
21843
  type FileUploader$UploadCompleteEvent = sap.ui.base.Event<
21436
21844
  FileUploader$UploadCompleteEventParameters,
21437
21845
  FileUploader
21438
21846
  >;
21439
21847
 
21848
+ /**
21849
+ * Event object of the FileUploader#uploadProgress event.
21850
+ */
21440
21851
  type FileUploader$UploadProgressEvent = sap.ui.base.Event<
21441
21852
  FileUploader$UploadProgressEventParameters,
21442
21853
  FileUploader
21443
21854
  >;
21444
21855
 
21856
+ /**
21857
+ * Event object of the FileUploader#uploadStart event.
21858
+ */
21445
21859
  type FileUploader$UploadStartEvent = sap.ui.base.Event<
21446
21860
  FileUploader$UploadStartEventParameters,
21447
21861
  FileUploader
21448
21862
  >;
21449
21863
 
21864
+ /**
21865
+ * Event object of the Menu#itemSelect event.
21866
+ */
21450
21867
  type Menu$ItemSelectEvent = sap.ui.base.Event<
21451
21868
  Menu$ItemSelectEventParameters,
21452
21869
  Menu
21453
21870
  >;
21454
21871
 
21872
+ /**
21873
+ * Event object of the MenuItemBase#select event.
21874
+ */
21455
21875
  type MenuItemBase$SelectEvent = sap.ui.base.Event<
21456
21876
  MenuItemBase$SelectEventParameters,
21457
21877
  MenuItemBase
21458
21878
  >;
21459
21879
 
21880
+ /**
21881
+ * Event object of the ShellHeadItem#press event.
21882
+ */
21460
21883
  type ShellHeadItem$PressEvent = sap.ui.base.Event<
21461
21884
  ShellHeadItem$PressEventParameters,
21462
21885
  ShellHeadItem
21463
21886
  >;
21464
21887
 
21888
+ /**
21889
+ * Event object of the ShellHeadUserItem#press event.
21890
+ */
21465
21891
  type ShellHeadUserItem$PressEvent = sap.ui.base.Event<
21466
21892
  ShellHeadUserItem$PressEventParameters,
21467
21893
  ShellHeadUserItem
21468
21894
  >;
21469
21895
 
21896
+ /**
21897
+ * Event object of the ShellOverlay#closed event.
21898
+ */
21470
21899
  type ShellOverlay$ClosedEvent = sap.ui.base.Event<
21471
21900
  ShellOverlay$ClosedEventParameters,
21472
21901
  ShellOverlay