@sapui5/ts-types 1.122.2 → 1.123.1
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.
- package/package.json +1 -1
- package/types/index.d.ts +5 -5
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +404 -3
- package/types/sap.chart.d.ts +58 -3
- package/types/sap.collaboration.d.ts +52 -3
- package/types/sap.esh.search.ui.d.ts +2152 -2
- package/types/sap.f.d.ts +432 -46
- package/types/sap.fe.core.d.ts +20 -15
- package/types/sap.fe.macros.d.ts +1048 -21
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +8 -6
- package/types/sap.fe.test.d.ts +288 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1067 -15
- package/types/sap.insights.d.ts +4 -1
- package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
- package/types/sap.makit.d.ts +115 -2
- package/types/sap.me.d.ts +84 -2
- package/types/sap.ndc.d.ts +22 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -8
- package/types/sap.sac.df.d.ts +111 -60
- package/types/sap.suite.ui.commons.d.ts +1148 -2174
- package/types/sap.suite.ui.generic.template.d.ts +10 -1
- package/types/sap.suite.ui.microchart.d.ts +190 -2
- package/types/sap.tnt.d.ts +46 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
- package/types/sap.ui.comp.d.ts +964 -86
- package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +22 -4
- package/types/sap.ui.fl.d.ts +40 -1
- package/types/sap.ui.generic.app.d.ts +217 -203
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -5
- package/types/sap.ui.layout.d.ts +171 -8
- package/types/sap.ui.mdc.d.ts +554 -33
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -57
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -9
- package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
- package/types/sap.ui.vbm.d.ts +544 -2
- package/types/sap.ui.vk.d.ts +1580 -39
- package/types/sap.ui.vtm.d.ts +373 -2
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uiext.inbox.d.ts +124 -2
- package/types/sap.ushell.d.ts +1001 -322
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -6
- package/types/sap.viz.d.ts +2619 -5
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -10
- package/types/sap.zen.crosstab.d.ts +22 -7
- package/types/sap.zen.dsh.d.ts +64 -8
- package/types/dt-1.122.0-d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
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
|
|
@@ -428,6 +437,9 @@ declare namespace sap {
|
|
|
428
437
|
weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
|
|
429
438
|
}
|
|
430
439
|
|
|
440
|
+
/**
|
|
441
|
+
* Describes the settings that can be provided to the MonthPicker constructor.
|
|
442
|
+
*/
|
|
431
443
|
interface $MonthPickerSettings extends sap.ui.core.$ControlSettings {
|
|
432
444
|
/**
|
|
433
445
|
* The month is initial focused and selected The value must be between 0 and 11
|
|
@@ -522,6 +534,9 @@ declare namespace sap {
|
|
|
522
534
|
pageChange?: (oEvent: sap.ui.base.Event) => void;
|
|
523
535
|
}
|
|
524
536
|
|
|
537
|
+
/**
|
|
538
|
+
* Describes the settings that can be provided to the MonthsRow constructor.
|
|
539
|
+
*/
|
|
525
540
|
interface $MonthsRowSettings extends sap.ui.core.$ControlSettings {
|
|
526
541
|
/**
|
|
527
542
|
* A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
|
|
@@ -648,6 +663,9 @@ declare namespace sap {
|
|
|
648
663
|
focus?: (oEvent: MonthsRow$FocusEvent) => void;
|
|
649
664
|
}
|
|
650
665
|
|
|
666
|
+
/**
|
|
667
|
+
* Describes the settings that can be provided to the TimesRow constructor.
|
|
668
|
+
*/
|
|
651
669
|
interface $TimesRowSettings extends sap.ui.core.$ControlSettings {
|
|
652
670
|
/**
|
|
653
671
|
* A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
|
|
@@ -782,6 +800,9 @@ declare namespace sap {
|
|
|
782
800
|
focus?: (oEvent: TimesRow$FocusEvent) => void;
|
|
783
801
|
}
|
|
784
802
|
|
|
803
|
+
/**
|
|
804
|
+
* Describes the settings that can be provided to the YearPicker constructor.
|
|
805
|
+
*/
|
|
785
806
|
interface $YearPickerSettings extends sap.ui.core.$ControlSettings {
|
|
786
807
|
/**
|
|
787
808
|
* The year is initial focused and selected The value must be between 0 and 9999
|
|
@@ -880,18 +901,39 @@ declare namespace sap {
|
|
|
880
901
|
pageChange?: (oEvent: sap.ui.base.Event) => void;
|
|
881
902
|
}
|
|
882
903
|
|
|
904
|
+
/**
|
|
905
|
+
* Parameters of the Header#pressButton0 event.
|
|
906
|
+
*/
|
|
883
907
|
interface Header$PressButton0EventParameters {}
|
|
884
908
|
|
|
909
|
+
/**
|
|
910
|
+
* Parameters of the Header#pressButton1 event.
|
|
911
|
+
*/
|
|
885
912
|
interface Header$PressButton1EventParameters {}
|
|
886
913
|
|
|
914
|
+
/**
|
|
915
|
+
* Parameters of the Header#pressButton2 event.
|
|
916
|
+
*/
|
|
887
917
|
interface Header$PressButton2EventParameters {}
|
|
888
918
|
|
|
919
|
+
/**
|
|
920
|
+
* Parameters of the Header#pressCurrentDate event.
|
|
921
|
+
*/
|
|
889
922
|
interface Header$PressCurrentDateEventParameters {}
|
|
890
923
|
|
|
924
|
+
/**
|
|
925
|
+
* Parameters of the Header#pressNext event.
|
|
926
|
+
*/
|
|
891
927
|
interface Header$PressNextEventParameters {}
|
|
892
928
|
|
|
929
|
+
/**
|
|
930
|
+
* Parameters of the Header#pressPrevious event.
|
|
931
|
+
*/
|
|
893
932
|
interface Header$PressPreviousEventParameters {}
|
|
894
933
|
|
|
934
|
+
/**
|
|
935
|
+
* Parameters of the Month#focus event.
|
|
936
|
+
*/
|
|
895
937
|
interface Month$FocusEventParameters {
|
|
896
938
|
/**
|
|
897
939
|
* focused date
|
|
@@ -909,8 +951,14 @@ declare namespace sap {
|
|
|
909
951
|
restoreOldDate?: boolean;
|
|
910
952
|
}
|
|
911
953
|
|
|
954
|
+
/**
|
|
955
|
+
* Parameters of the Month#select event.
|
|
956
|
+
*/
|
|
912
957
|
interface Month$SelectEventParameters {}
|
|
913
958
|
|
|
959
|
+
/**
|
|
960
|
+
* Parameters of the Month#weekNumberSelect event.
|
|
961
|
+
*/
|
|
914
962
|
interface Month$WeekNumberSelectEventParameters {
|
|
915
963
|
/**
|
|
916
964
|
* The selected week number.
|
|
@@ -925,10 +973,19 @@ declare namespace sap {
|
|
|
925
973
|
weekDays?: sap.ui.unified.DateRange;
|
|
926
974
|
}
|
|
927
975
|
|
|
976
|
+
/**
|
|
977
|
+
* Parameters of the MonthPicker#pageChange event.
|
|
978
|
+
*/
|
|
928
979
|
interface MonthPicker$PageChangeEventParameters {}
|
|
929
980
|
|
|
981
|
+
/**
|
|
982
|
+
* Parameters of the MonthPicker#select event.
|
|
983
|
+
*/
|
|
930
984
|
interface MonthPicker$SelectEventParameters {}
|
|
931
985
|
|
|
986
|
+
/**
|
|
987
|
+
* Parameters of the MonthsRow#focus event.
|
|
988
|
+
*/
|
|
932
989
|
interface MonthsRow$FocusEventParameters {
|
|
933
990
|
/**
|
|
934
991
|
* First date, as UI5Date or JavaScript Date object, of the month that is focused.
|
|
@@ -941,8 +998,14 @@ declare namespace sap {
|
|
|
941
998
|
notVisible?: boolean;
|
|
942
999
|
}
|
|
943
1000
|
|
|
1001
|
+
/**
|
|
1002
|
+
* Parameters of the MonthsRow#select event.
|
|
1003
|
+
*/
|
|
944
1004
|
interface MonthsRow$SelectEventParameters {}
|
|
945
1005
|
|
|
1006
|
+
/**
|
|
1007
|
+
* Parameters of the TimesRow#focus event.
|
|
1008
|
+
*/
|
|
946
1009
|
interface TimesRow$FocusEventParameters {
|
|
947
1010
|
/**
|
|
948
1011
|
* date, as UI5Date or JavaScript Date object, of the focused time.
|
|
@@ -955,10 +1018,19 @@ declare namespace sap {
|
|
|
955
1018
|
notVisible?: boolean;
|
|
956
1019
|
}
|
|
957
1020
|
|
|
1021
|
+
/**
|
|
1022
|
+
* Parameters of the TimesRow#select event.
|
|
1023
|
+
*/
|
|
958
1024
|
interface TimesRow$SelectEventParameters {}
|
|
959
1025
|
|
|
1026
|
+
/**
|
|
1027
|
+
* Parameters of the YearPicker#pageChange event.
|
|
1028
|
+
*/
|
|
960
1029
|
interface YearPicker$PageChangeEventParameters {}
|
|
961
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* Parameters of the YearPicker#select event.
|
|
1033
|
+
*/
|
|
962
1034
|
interface YearPicker$SelectEventParameters {}
|
|
963
1035
|
|
|
964
1036
|
/**
|
|
@@ -5689,86 +5761,137 @@ declare namespace sap {
|
|
|
5689
5761
|
): this;
|
|
5690
5762
|
}
|
|
5691
5763
|
|
|
5764
|
+
/**
|
|
5765
|
+
* Event object of the Header#pressButton0 event.
|
|
5766
|
+
*/
|
|
5692
5767
|
type Header$PressButton0Event = sap.ui.base.Event<
|
|
5693
5768
|
Header$PressButton0EventParameters,
|
|
5694
5769
|
Header
|
|
5695
5770
|
>;
|
|
5696
5771
|
|
|
5772
|
+
/**
|
|
5773
|
+
* Event object of the Header#pressButton1 event.
|
|
5774
|
+
*/
|
|
5697
5775
|
type Header$PressButton1Event = sap.ui.base.Event<
|
|
5698
5776
|
Header$PressButton1EventParameters,
|
|
5699
5777
|
Header
|
|
5700
5778
|
>;
|
|
5701
5779
|
|
|
5780
|
+
/**
|
|
5781
|
+
* Event object of the Header#pressButton2 event.
|
|
5782
|
+
*/
|
|
5702
5783
|
type Header$PressButton2Event = sap.ui.base.Event<
|
|
5703
5784
|
Header$PressButton2EventParameters,
|
|
5704
5785
|
Header
|
|
5705
5786
|
>;
|
|
5706
5787
|
|
|
5788
|
+
/**
|
|
5789
|
+
* Event object of the Header#pressCurrentDate event.
|
|
5790
|
+
*/
|
|
5707
5791
|
type Header$PressCurrentDateEvent = sap.ui.base.Event<
|
|
5708
5792
|
Header$PressCurrentDateEventParameters,
|
|
5709
5793
|
Header
|
|
5710
5794
|
>;
|
|
5711
5795
|
|
|
5796
|
+
/**
|
|
5797
|
+
* Event object of the Header#pressNext event.
|
|
5798
|
+
*/
|
|
5712
5799
|
type Header$PressNextEvent = sap.ui.base.Event<
|
|
5713
5800
|
Header$PressNextEventParameters,
|
|
5714
5801
|
Header
|
|
5715
5802
|
>;
|
|
5716
5803
|
|
|
5804
|
+
/**
|
|
5805
|
+
* Event object of the Header#pressPrevious event.
|
|
5806
|
+
*/
|
|
5717
5807
|
type Header$PressPreviousEvent = sap.ui.base.Event<
|
|
5718
5808
|
Header$PressPreviousEventParameters,
|
|
5719
5809
|
Header
|
|
5720
5810
|
>;
|
|
5721
5811
|
|
|
5812
|
+
/**
|
|
5813
|
+
* Event object of the Month#focus event.
|
|
5814
|
+
*/
|
|
5722
5815
|
type Month$FocusEvent = sap.ui.base.Event<
|
|
5723
5816
|
Month$FocusEventParameters,
|
|
5724
5817
|
Month
|
|
5725
5818
|
>;
|
|
5726
5819
|
|
|
5820
|
+
/**
|
|
5821
|
+
* Event object of the Month#select event.
|
|
5822
|
+
*/
|
|
5727
5823
|
type Month$SelectEvent = sap.ui.base.Event<
|
|
5728
5824
|
Month$SelectEventParameters,
|
|
5729
5825
|
Month
|
|
5730
5826
|
>;
|
|
5731
5827
|
|
|
5828
|
+
/**
|
|
5829
|
+
* Event object of the Month#weekNumberSelect event.
|
|
5830
|
+
*/
|
|
5732
5831
|
type Month$WeekNumberSelectEvent = sap.ui.base.Event<
|
|
5733
5832
|
Month$WeekNumberSelectEventParameters,
|
|
5734
5833
|
Month
|
|
5735
5834
|
>;
|
|
5736
5835
|
|
|
5836
|
+
/**
|
|
5837
|
+
* Event object of the MonthPicker#pageChange event.
|
|
5838
|
+
*/
|
|
5737
5839
|
type MonthPicker$PageChangeEvent = sap.ui.base.Event<
|
|
5738
5840
|
MonthPicker$PageChangeEventParameters,
|
|
5739
5841
|
MonthPicker
|
|
5740
5842
|
>;
|
|
5741
5843
|
|
|
5844
|
+
/**
|
|
5845
|
+
* Event object of the MonthPicker#select event.
|
|
5846
|
+
*/
|
|
5742
5847
|
type MonthPicker$SelectEvent = sap.ui.base.Event<
|
|
5743
5848
|
MonthPicker$SelectEventParameters,
|
|
5744
5849
|
MonthPicker
|
|
5745
5850
|
>;
|
|
5746
5851
|
|
|
5852
|
+
/**
|
|
5853
|
+
* Event object of the MonthsRow#focus event.
|
|
5854
|
+
*/
|
|
5747
5855
|
type MonthsRow$FocusEvent = sap.ui.base.Event<
|
|
5748
5856
|
MonthsRow$FocusEventParameters,
|
|
5749
5857
|
MonthsRow
|
|
5750
5858
|
>;
|
|
5751
5859
|
|
|
5860
|
+
/**
|
|
5861
|
+
* Event object of the MonthsRow#select event.
|
|
5862
|
+
*/
|
|
5752
5863
|
type MonthsRow$SelectEvent = sap.ui.base.Event<
|
|
5753
5864
|
MonthsRow$SelectEventParameters,
|
|
5754
5865
|
MonthsRow
|
|
5755
5866
|
>;
|
|
5756
5867
|
|
|
5868
|
+
/**
|
|
5869
|
+
* Event object of the TimesRow#focus event.
|
|
5870
|
+
*/
|
|
5757
5871
|
type TimesRow$FocusEvent = sap.ui.base.Event<
|
|
5758
5872
|
TimesRow$FocusEventParameters,
|
|
5759
5873
|
TimesRow
|
|
5760
5874
|
>;
|
|
5761
5875
|
|
|
5876
|
+
/**
|
|
5877
|
+
* Event object of the TimesRow#select event.
|
|
5878
|
+
*/
|
|
5762
5879
|
type TimesRow$SelectEvent = sap.ui.base.Event<
|
|
5763
5880
|
TimesRow$SelectEventParameters,
|
|
5764
5881
|
TimesRow
|
|
5765
5882
|
>;
|
|
5766
5883
|
|
|
5884
|
+
/**
|
|
5885
|
+
* Event object of the YearPicker#pageChange event.
|
|
5886
|
+
*/
|
|
5767
5887
|
type YearPicker$PageChangeEvent = sap.ui.base.Event<
|
|
5768
5888
|
YearPicker$PageChangeEventParameters,
|
|
5769
5889
|
YearPicker
|
|
5770
5890
|
>;
|
|
5771
5891
|
|
|
5892
|
+
/**
|
|
5893
|
+
* Event object of the YearPicker#select event.
|
|
5894
|
+
*/
|
|
5772
5895
|
type YearPicker$SelectEvent = sap.ui.base.Event<
|
|
5773
5896
|
YearPicker$SelectEventParameters,
|
|
5774
5897
|
YearPicker
|
|
@@ -5800,6 +5923,9 @@ declare namespace sap {
|
|
|
5800
5923
|
): Promise<Blob[]>;
|
|
5801
5924
|
}
|
|
5802
5925
|
|
|
5926
|
+
/**
|
|
5927
|
+
* Describes the settings that can be provided to the Calendar constructor.
|
|
5928
|
+
*/
|
|
5803
5929
|
interface $CalendarSettings extends sap.ui.core.$ControlSettings {
|
|
5804
5930
|
/**
|
|
5805
5931
|
* If set, interval selection is allowed
|
|
@@ -6097,6 +6223,9 @@ declare namespace sap {
|
|
|
6097
6223
|
weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
|
|
6098
6224
|
}
|
|
6099
6225
|
|
|
6226
|
+
/**
|
|
6227
|
+
* Describes the settings that can be provided to the CalendarAppointment constructor.
|
|
6228
|
+
*/
|
|
6100
6229
|
interface $CalendarAppointmentSettings
|
|
6101
6230
|
extends sap.ui.unified.$DateTypeRangeSettings {
|
|
6102
6231
|
/**
|
|
@@ -6179,6 +6308,9 @@ declare namespace sap {
|
|
|
6179
6308
|
| `{${string}}`;
|
|
6180
6309
|
}
|
|
6181
6310
|
|
|
6311
|
+
/**
|
|
6312
|
+
* Describes the settings that can be provided to the CalendarDateInterval constructor.
|
|
6313
|
+
*/
|
|
6182
6314
|
interface $CalendarDateIntervalSettings
|
|
6183
6315
|
extends sap.ui.unified.$CalendarSettings {
|
|
6184
6316
|
/**
|
|
@@ -6219,6 +6351,9 @@ declare namespace sap {
|
|
|
6219
6351
|
| `{${string}}`;
|
|
6220
6352
|
}
|
|
6221
6353
|
|
|
6354
|
+
/**
|
|
6355
|
+
* Describes the settings that can be provided to the CalendarLegend constructor.
|
|
6356
|
+
*/
|
|
6222
6357
|
interface $CalendarLegendSettings extends sap.ui.core.$ControlSettings {
|
|
6223
6358
|
/**
|
|
6224
6359
|
* Determines the standard items related to the calendar days, such as, today, selected, working and non-working.
|
|
@@ -6250,6 +6385,9 @@ declare namespace sap {
|
|
|
6250
6385
|
| `{${string}}`;
|
|
6251
6386
|
}
|
|
6252
6387
|
|
|
6388
|
+
/**
|
|
6389
|
+
* Describes the settings that can be provided to the CalendarLegendItem constructor.
|
|
6390
|
+
*/
|
|
6253
6391
|
interface $CalendarLegendItemSettings
|
|
6254
6392
|
extends sap.ui.core.$ElementSettings {
|
|
6255
6393
|
/**
|
|
@@ -6279,6 +6417,9 @@ declare namespace sap {
|
|
|
6279
6417
|
| `{${string}}`;
|
|
6280
6418
|
}
|
|
6281
6419
|
|
|
6420
|
+
/**
|
|
6421
|
+
* Describes the settings that can be provided to the CalendarMonthInterval constructor.
|
|
6422
|
+
*/
|
|
6282
6423
|
interface $CalendarMonthIntervalSettings
|
|
6283
6424
|
extends sap.ui.core.$ControlSettings {
|
|
6284
6425
|
/**
|
|
@@ -6422,6 +6563,9 @@ declare namespace sap {
|
|
|
6422
6563
|
startDateChange?: (oEvent: sap.ui.base.Event) => void;
|
|
6423
6564
|
}
|
|
6424
6565
|
|
|
6566
|
+
/**
|
|
6567
|
+
* Describes the settings that can be provided to the CalendarRow constructor.
|
|
6568
|
+
*/
|
|
6425
6569
|
interface $CalendarRowSettings extends sap.ui.core.$ControlSettings {
|
|
6426
6570
|
/**
|
|
6427
6571
|
* Start date, as UI5Date or JavaScript Date object, of the row. As default, the current date is used.
|
|
@@ -6697,6 +6841,9 @@ declare namespace sap {
|
|
|
6697
6841
|
intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
|
|
6698
6842
|
}
|
|
6699
6843
|
|
|
6844
|
+
/**
|
|
6845
|
+
* Describes the settings that can be provided to the CalendarTimeInterval constructor.
|
|
6846
|
+
*/
|
|
6700
6847
|
interface $CalendarTimeIntervalSettings
|
|
6701
6848
|
extends sap.ui.core.$ControlSettings {
|
|
6702
6849
|
/**
|
|
@@ -6849,6 +6996,9 @@ declare namespace sap {
|
|
|
6849
6996
|
startDateChange?: (oEvent: sap.ui.base.Event) => void;
|
|
6850
6997
|
}
|
|
6851
6998
|
|
|
6999
|
+
/**
|
|
7000
|
+
* Describes the settings that can be provided to the ColorPicker constructor.
|
|
7001
|
+
*/
|
|
6852
7002
|
interface $ColorPickerSettings extends sap.ui.core.$ControlSettings {
|
|
6853
7003
|
/**
|
|
6854
7004
|
* Determines the input parameter that can be a string of type HEX, RGB, HSV, or a CSS color name:
|
|
@@ -6905,6 +7055,9 @@ declare namespace sap {
|
|
|
6905
7055
|
liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
|
|
6906
7056
|
}
|
|
6907
7057
|
|
|
7058
|
+
/**
|
|
7059
|
+
* Describes the settings that can be provided to the ColorPickerPopover constructor.
|
|
7060
|
+
*/
|
|
6908
7061
|
interface $ColorPickerPopoverSettings
|
|
6909
7062
|
extends sap.ui.core.$ControlSettings {
|
|
6910
7063
|
/**
|
|
@@ -6954,6 +7107,12 @@ declare namespace sap {
|
|
|
6954
7107
|
liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
|
|
6955
7108
|
}
|
|
6956
7109
|
|
|
7110
|
+
/**
|
|
7111
|
+
* Describes the settings that can be provided to the ContentSwitcher constructor.
|
|
7112
|
+
*
|
|
7113
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
7114
|
+
* @experimental (since 1.16.0) - API is not yet finished and might change completely
|
|
7115
|
+
*/
|
|
6957
7116
|
interface $ContentSwitcherSettings extends sap.ui.core.$ControlSettings {
|
|
6958
7117
|
/**
|
|
6959
7118
|
* Set the used animation when changing content. This just sets a CSS-class named "sapUiUnifiedACSwitcherAnimation"
|
|
@@ -6990,6 +7149,9 @@ declare namespace sap {
|
|
|
6990
7149
|
| `{${string}}`;
|
|
6991
7150
|
}
|
|
6992
7151
|
|
|
7152
|
+
/**
|
|
7153
|
+
* Describes the settings that can be provided to the Currency constructor.
|
|
7154
|
+
*/
|
|
6993
7155
|
interface $CurrencySettings extends sap.ui.core.$ControlSettings {
|
|
6994
7156
|
/**
|
|
6995
7157
|
* Determines the currency value.
|
|
@@ -7047,6 +7209,9 @@ declare namespace sap {
|
|
|
7047
7209
|
| `{${string}}`;
|
|
7048
7210
|
}
|
|
7049
7211
|
|
|
7212
|
+
/**
|
|
7213
|
+
* Describes the settings that can be provided to the DateRange constructor.
|
|
7214
|
+
*/
|
|
7050
7215
|
interface $DateRangeSettings extends sap.ui.core.$ElementSettings {
|
|
7051
7216
|
/**
|
|
7052
7217
|
* Start date for a date range. This must be a UI5Date or JavaScript Date object.
|
|
@@ -7066,6 +7231,9 @@ declare namespace sap {
|
|
|
7066
7231
|
| `{${string}}`;
|
|
7067
7232
|
}
|
|
7068
7233
|
|
|
7234
|
+
/**
|
|
7235
|
+
* Describes the settings that can be provided to the DateTypeRange constructor.
|
|
7236
|
+
*/
|
|
7069
7237
|
interface $DateTypeRangeSettings
|
|
7070
7238
|
extends sap.ui.unified.$DateRangeSettings {
|
|
7071
7239
|
/**
|
|
@@ -7099,6 +7267,9 @@ declare namespace sap {
|
|
|
7099
7267
|
| `{${string}}`;
|
|
7100
7268
|
}
|
|
7101
7269
|
|
|
7270
|
+
/**
|
|
7271
|
+
* Describes the settings that can be provided to the FileUploader constructor.
|
|
7272
|
+
*/
|
|
7102
7273
|
interface $FileUploaderSettings extends sap.ui.core.$ControlSettings {
|
|
7103
7274
|
/**
|
|
7104
7275
|
* Value of the path for file upload.
|
|
@@ -7506,6 +7677,9 @@ declare namespace sap {
|
|
|
7506
7677
|
afterDialogClose?: (oEvent: sap.ui.base.Event) => void;
|
|
7507
7678
|
}
|
|
7508
7679
|
|
|
7680
|
+
/**
|
|
7681
|
+
* Describes the settings that can be provided to the FileUploaderParameter constructor.
|
|
7682
|
+
*/
|
|
7509
7683
|
interface $FileUploaderParameterSettings
|
|
7510
7684
|
extends sap.ui.core.$ElementSettings {
|
|
7511
7685
|
/**
|
|
@@ -7523,6 +7697,9 @@ declare namespace sap {
|
|
|
7523
7697
|
value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7524
7698
|
}
|
|
7525
7699
|
|
|
7700
|
+
/**
|
|
7701
|
+
* Describes the settings that can be provided to the FileUploaderXHRSettings constructor.
|
|
7702
|
+
*/
|
|
7526
7703
|
interface $FileUploaderXHRSettingsSettings
|
|
7527
7704
|
extends sap.ui.core.$ElementSettings {
|
|
7528
7705
|
/**
|
|
@@ -7536,6 +7713,9 @@ declare namespace sap {
|
|
|
7536
7713
|
| `{${string}}`;
|
|
7537
7714
|
}
|
|
7538
7715
|
|
|
7716
|
+
/**
|
|
7717
|
+
* Describes the settings that can be provided to the Menu constructor.
|
|
7718
|
+
*/
|
|
7539
7719
|
interface $MenuSettings extends sap.ui.core.$ControlSettings {
|
|
7540
7720
|
/**
|
|
7541
7721
|
* When a menu is disabled none of its items can be selected by the user. The enabled property of an item
|
|
@@ -7606,6 +7786,9 @@ declare namespace sap {
|
|
|
7606
7786
|
itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
|
|
7607
7787
|
}
|
|
7608
7788
|
|
|
7789
|
+
/**
|
|
7790
|
+
* Describes the settings that can be provided to the MenuItem constructor.
|
|
7791
|
+
*/
|
|
7609
7792
|
interface $MenuItemSettings extends sap.ui.unified.$MenuItemBaseSettings {
|
|
7610
7793
|
/**
|
|
7611
7794
|
* Defines the text which should be displayed on the item.
|
|
@@ -7621,12 +7804,23 @@ declare namespace sap {
|
|
|
7621
7804
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7622
7805
|
| `{${string}}`;
|
|
7623
7806
|
|
|
7807
|
+
/**
|
|
7808
|
+
* Defines the shortcut text that should be displayed on the menu item on non-mobile devices. **Note:**
|
|
7809
|
+
* The text is only displayed and set as а value of the `aria-keyshortcuts` attribute. There is no built-in
|
|
7810
|
+
* functionality that selects the item when the corresponding shortcut is pressed. This should be implemented
|
|
7811
|
+
* by the application developer.
|
|
7812
|
+
*/
|
|
7813
|
+
shortcutText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7814
|
+
|
|
7624
7815
|
/**
|
|
7625
7816
|
* Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
|
|
7626
7817
|
*/
|
|
7627
7818
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
7628
7819
|
}
|
|
7629
7820
|
|
|
7821
|
+
/**
|
|
7822
|
+
* Describes the settings that can be provided to the MenuItemBase constructor.
|
|
7823
|
+
*/
|
|
7630
7824
|
interface $MenuItemBaseSettings extends sap.ui.core.$ElementSettings {
|
|
7631
7825
|
/**
|
|
7632
7826
|
* When an item is disabled the item can not be selected by the user. The enabled property of the item has
|
|
@@ -7667,6 +7861,9 @@ declare namespace sap {
|
|
|
7667
7861
|
select?: (oEvent: MenuItemBase$SelectEvent) => void;
|
|
7668
7862
|
}
|
|
7669
7863
|
|
|
7864
|
+
/**
|
|
7865
|
+
* Describes the settings that can be provided to the MenuTextFieldItem constructor.
|
|
7866
|
+
*/
|
|
7670
7867
|
interface $MenuTextFieldItemSettings
|
|
7671
7868
|
extends sap.ui.unified.$MenuItemBaseSettings {
|
|
7672
7869
|
/**
|
|
@@ -7698,6 +7895,11 @@ declare namespace sap {
|
|
|
7698
7895
|
| `{${string}}`;
|
|
7699
7896
|
}
|
|
7700
7897
|
|
|
7898
|
+
/**
|
|
7899
|
+
* Describes the settings that can be provided to the Shell constructor.
|
|
7900
|
+
*
|
|
7901
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
7902
|
+
*/
|
|
7701
7903
|
interface $ShellSettings extends sap.ui.unified.$ShellLayoutSettings {
|
|
7702
7904
|
/**
|
|
7703
7905
|
* The application icon. If a custom header is set this property has no effect.
|
|
@@ -7791,6 +7993,11 @@ declare namespace sap {
|
|
|
7791
7993
|
user?: sap.ui.unified.ShellHeadUserItem;
|
|
7792
7994
|
}
|
|
7793
7995
|
|
|
7996
|
+
/**
|
|
7997
|
+
* Describes the settings that can be provided to the ShellHeadItem constructor.
|
|
7998
|
+
*
|
|
7999
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
8000
|
+
*/
|
|
7794
8001
|
interface $ShellHeadItemSettings extends sap.ui.core.$ElementSettings {
|
|
7795
8002
|
/**
|
|
7796
8003
|
* If set to true, a divider is displayed before the item.
|
|
@@ -7872,6 +8079,11 @@ declare namespace sap {
|
|
|
7872
8079
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
7873
8080
|
}
|
|
7874
8081
|
|
|
8082
|
+
/**
|
|
8083
|
+
* Describes the settings that can be provided to the ShellHeadUserItem constructor.
|
|
8084
|
+
*
|
|
8085
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
8086
|
+
*/
|
|
7875
8087
|
interface $ShellHeadUserItemSettings
|
|
7876
8088
|
extends sap.ui.core.$ElementSettings {
|
|
7877
8089
|
/**
|
|
@@ -7909,6 +8121,11 @@ declare namespace sap {
|
|
|
7909
8121
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
7910
8122
|
}
|
|
7911
8123
|
|
|
8124
|
+
/**
|
|
8125
|
+
* Describes the settings that can be provided to the ShellLayout constructor.
|
|
8126
|
+
*
|
|
8127
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
8128
|
+
*/
|
|
7912
8129
|
interface $ShellLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
7913
8130
|
/**
|
|
7914
8131
|
* Shows / Hides the side pane.
|
|
@@ -7959,6 +8176,11 @@ declare namespace sap {
|
|
|
7959
8176
|
header?: sap.ui.core.Control;
|
|
7960
8177
|
}
|
|
7961
8178
|
|
|
8179
|
+
/**
|
|
8180
|
+
* Describes the settings that can be provided to the ShellOverlay constructor.
|
|
8181
|
+
*
|
|
8182
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
8183
|
+
*/
|
|
7962
8184
|
interface $ShellOverlaySettings extends sap.ui.core.$ControlSettings {
|
|
7963
8185
|
/**
|
|
7964
8186
|
* The content to appear in the overlay.
|
|
@@ -7991,6 +8213,12 @@ declare namespace sap {
|
|
|
7991
8213
|
closed?: (oEvent: sap.ui.base.Event) => void;
|
|
7992
8214
|
}
|
|
7993
8215
|
|
|
8216
|
+
/**
|
|
8217
|
+
* Describes the settings that can be provided to the SplitContainer constructor.
|
|
8218
|
+
*
|
|
8219
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
8220
|
+
* @experimental (since 1.15.0) - API is not yet finished and might change completely
|
|
8221
|
+
*/
|
|
7994
8222
|
interface $SplitContainerSettings extends sap.ui.core.$ControlSettings {
|
|
7995
8223
|
/**
|
|
7996
8224
|
* Shows / Hides the secondary area.
|
|
@@ -8047,12 +8275,24 @@ declare namespace sap {
|
|
|
8047
8275
|
| `{${string}}`;
|
|
8048
8276
|
}
|
|
8049
8277
|
|
|
8278
|
+
/**
|
|
8279
|
+
* Parameters of the Calendar#cancel event.
|
|
8280
|
+
*/
|
|
8050
8281
|
interface Calendar$CancelEventParameters {}
|
|
8051
8282
|
|
|
8283
|
+
/**
|
|
8284
|
+
* Parameters of the Calendar#select event.
|
|
8285
|
+
*/
|
|
8052
8286
|
interface Calendar$SelectEventParameters {}
|
|
8053
8287
|
|
|
8288
|
+
/**
|
|
8289
|
+
* Parameters of the Calendar#startDateChange event.
|
|
8290
|
+
*/
|
|
8054
8291
|
interface Calendar$StartDateChangeEventParameters {}
|
|
8055
8292
|
|
|
8293
|
+
/**
|
|
8294
|
+
* Parameters of the Calendar#weekNumberSelect event.
|
|
8295
|
+
*/
|
|
8056
8296
|
interface Calendar$WeekNumberSelectEventParameters {
|
|
8057
8297
|
/**
|
|
8058
8298
|
* The selected week number.
|
|
@@ -8065,12 +8305,24 @@ declare namespace sap {
|
|
|
8065
8305
|
weekDays?: sap.ui.unified.DateRange;
|
|
8066
8306
|
}
|
|
8067
8307
|
|
|
8308
|
+
/**
|
|
8309
|
+
* Parameters of the CalendarMonthInterval#cancel event.
|
|
8310
|
+
*/
|
|
8068
8311
|
interface CalendarMonthInterval$CancelEventParameters {}
|
|
8069
8312
|
|
|
8313
|
+
/**
|
|
8314
|
+
* Parameters of the CalendarMonthInterval#select event.
|
|
8315
|
+
*/
|
|
8070
8316
|
interface CalendarMonthInterval$SelectEventParameters {}
|
|
8071
8317
|
|
|
8318
|
+
/**
|
|
8319
|
+
* Parameters of the CalendarMonthInterval#startDateChange event.
|
|
8320
|
+
*/
|
|
8072
8321
|
interface CalendarMonthInterval$StartDateChangeEventParameters {}
|
|
8073
8322
|
|
|
8323
|
+
/**
|
|
8324
|
+
* Parameters of the CalendarRow#intervalSelect event.
|
|
8325
|
+
*/
|
|
8074
8326
|
interface CalendarRow$IntervalSelectEventParameters {
|
|
8075
8327
|
/**
|
|
8076
8328
|
* Interval start date as UI5Date or JavaScript Date object
|
|
@@ -8088,6 +8340,9 @@ declare namespace sap {
|
|
|
8088
8340
|
subInterval?: boolean;
|
|
8089
8341
|
}
|
|
8090
8342
|
|
|
8343
|
+
/**
|
|
8344
|
+
* Parameters of the CalendarRow#leaveRow event.
|
|
8345
|
+
*/
|
|
8091
8346
|
interface CalendarRow$LeaveRowEventParameters {
|
|
8092
8347
|
/**
|
|
8093
8348
|
* The type of the event that triggers this `leaveRow`
|
|
@@ -8095,6 +8350,9 @@ declare namespace sap {
|
|
|
8095
8350
|
type?: string;
|
|
8096
8351
|
}
|
|
8097
8352
|
|
|
8353
|
+
/**
|
|
8354
|
+
* Parameters of the CalendarRow#select event.
|
|
8355
|
+
*/
|
|
8098
8356
|
interface CalendarRow$SelectEventParameters {
|
|
8099
8357
|
/**
|
|
8100
8358
|
* selected appointment
|
|
@@ -8118,14 +8376,29 @@ declare namespace sap {
|
|
|
8118
8376
|
domRefId?: string;
|
|
8119
8377
|
}
|
|
8120
8378
|
|
|
8379
|
+
/**
|
|
8380
|
+
* Parameters of the CalendarRow#startDateChange event.
|
|
8381
|
+
*/
|
|
8121
8382
|
interface CalendarRow$StartDateChangeEventParameters {}
|
|
8122
8383
|
|
|
8384
|
+
/**
|
|
8385
|
+
* Parameters of the CalendarTimeInterval#cancel event.
|
|
8386
|
+
*/
|
|
8123
8387
|
interface CalendarTimeInterval$CancelEventParameters {}
|
|
8124
8388
|
|
|
8389
|
+
/**
|
|
8390
|
+
* Parameters of the CalendarTimeInterval#select event.
|
|
8391
|
+
*/
|
|
8125
8392
|
interface CalendarTimeInterval$SelectEventParameters {}
|
|
8126
8393
|
|
|
8394
|
+
/**
|
|
8395
|
+
* Parameters of the CalendarTimeInterval#startDateChange event.
|
|
8396
|
+
*/
|
|
8127
8397
|
interface CalendarTimeInterval$StartDateChangeEventParameters {}
|
|
8128
8398
|
|
|
8399
|
+
/**
|
|
8400
|
+
* Parameters of the ColorPicker#change event.
|
|
8401
|
+
*/
|
|
8129
8402
|
interface ColorPicker$ChangeEventParameters {
|
|
8130
8403
|
/**
|
|
8131
8404
|
* Parameter containing the RED value (0-255).
|
|
@@ -8173,6 +8446,9 @@ declare namespace sap {
|
|
|
8173
8446
|
alpha?: string;
|
|
8174
8447
|
}
|
|
8175
8448
|
|
|
8449
|
+
/**
|
|
8450
|
+
* Parameters of the ColorPicker#liveChange event.
|
|
8451
|
+
*/
|
|
8176
8452
|
interface ColorPicker$LiveChangeEventParameters {
|
|
8177
8453
|
/**
|
|
8178
8454
|
* Parameter containing the RED value (0-255).
|
|
@@ -8220,6 +8496,9 @@ declare namespace sap {
|
|
|
8220
8496
|
alpha?: string;
|
|
8221
8497
|
}
|
|
8222
8498
|
|
|
8499
|
+
/**
|
|
8500
|
+
* Parameters of the ColorPickerPopover#change event.
|
|
8501
|
+
*/
|
|
8223
8502
|
interface ColorPickerPopover$ChangeEventParameters {
|
|
8224
8503
|
/**
|
|
8225
8504
|
* Parameter containing the RED value (0-255).
|
|
@@ -8267,6 +8546,9 @@ declare namespace sap {
|
|
|
8267
8546
|
alpha?: string;
|
|
8268
8547
|
}
|
|
8269
8548
|
|
|
8549
|
+
/**
|
|
8550
|
+
* Parameters of the ColorPickerPopover#liveChange event.
|
|
8551
|
+
*/
|
|
8270
8552
|
interface ColorPickerPopover$LiveChangeEventParameters {
|
|
8271
8553
|
/**
|
|
8272
8554
|
* Parameter containing the RED value (0-255).
|
|
@@ -8314,10 +8596,19 @@ declare namespace sap {
|
|
|
8314
8596
|
alpha?: string;
|
|
8315
8597
|
}
|
|
8316
8598
|
|
|
8599
|
+
/**
|
|
8600
|
+
* Parameters of the FileUploader#afterDialogClose event.
|
|
8601
|
+
*/
|
|
8317
8602
|
interface FileUploader$AfterDialogCloseEventParameters {}
|
|
8318
8603
|
|
|
8604
|
+
/**
|
|
8605
|
+
* Parameters of the FileUploader#beforeDialogOpen event.
|
|
8606
|
+
*/
|
|
8319
8607
|
interface FileUploader$BeforeDialogOpenEventParameters {}
|
|
8320
8608
|
|
|
8609
|
+
/**
|
|
8610
|
+
* Parameters of the FileUploader#change event.
|
|
8611
|
+
*/
|
|
8321
8612
|
interface FileUploader$ChangeEventParameters {
|
|
8322
8613
|
/**
|
|
8323
8614
|
* New file path value.
|
|
@@ -8330,8 +8621,14 @@ declare namespace sap {
|
|
|
8330
8621
|
files?: object[];
|
|
8331
8622
|
}
|
|
8332
8623
|
|
|
8624
|
+
/**
|
|
8625
|
+
* Parameters of the FileUploader#fileAllowed event.
|
|
8626
|
+
*/
|
|
8333
8627
|
interface FileUploader$FileAllowedEventParameters {}
|
|
8334
8628
|
|
|
8629
|
+
/**
|
|
8630
|
+
* Parameters of the FileUploader#fileEmpty event.
|
|
8631
|
+
*/
|
|
8335
8632
|
interface FileUploader$FileEmptyEventParameters {
|
|
8336
8633
|
/**
|
|
8337
8634
|
* The name of the file to be uploaded.
|
|
@@ -8339,6 +8636,9 @@ declare namespace sap {
|
|
|
8339
8636
|
fileName?: string;
|
|
8340
8637
|
}
|
|
8341
8638
|
|
|
8639
|
+
/**
|
|
8640
|
+
* Parameters of the FileUploader#filenameLengthExceed event.
|
|
8641
|
+
*/
|
|
8342
8642
|
interface FileUploader$FilenameLengthExceedEventParameters {
|
|
8343
8643
|
/**
|
|
8344
8644
|
* The filename, which is longer than specified by the value of the property `maximumFilenameLength`.
|
|
@@ -8346,6 +8646,9 @@ declare namespace sap {
|
|
|
8346
8646
|
fileName?: string;
|
|
8347
8647
|
}
|
|
8348
8648
|
|
|
8649
|
+
/**
|
|
8650
|
+
* Parameters of the FileUploader#fileSizeExceed event.
|
|
8651
|
+
*/
|
|
8349
8652
|
interface FileUploader$FileSizeExceedEventParameters {
|
|
8350
8653
|
/**
|
|
8351
8654
|
* The name of a file to be uploaded.
|
|
@@ -8358,6 +8661,9 @@ declare namespace sap {
|
|
|
8358
8661
|
fileSize?: string;
|
|
8359
8662
|
}
|
|
8360
8663
|
|
|
8664
|
+
/**
|
|
8665
|
+
* Parameters of the FileUploader#typeMissmatch event.
|
|
8666
|
+
*/
|
|
8361
8667
|
interface FileUploader$TypeMissmatchEventParameters {
|
|
8362
8668
|
/**
|
|
8363
8669
|
* The name of a file to be uploaded.
|
|
@@ -8375,6 +8681,9 @@ declare namespace sap {
|
|
|
8375
8681
|
mimeType?: string;
|
|
8376
8682
|
}
|
|
8377
8683
|
|
|
8684
|
+
/**
|
|
8685
|
+
* Parameters of the FileUploader#uploadAborted event.
|
|
8686
|
+
*/
|
|
8378
8687
|
interface FileUploader$UploadAbortedEventParameters {
|
|
8379
8688
|
/**
|
|
8380
8689
|
* The name of a file to be uploaded.
|
|
@@ -8390,6 +8699,9 @@ declare namespace sap {
|
|
|
8390
8699
|
requestHeaders?: object[];
|
|
8391
8700
|
}
|
|
8392
8701
|
|
|
8702
|
+
/**
|
|
8703
|
+
* Parameters of the FileUploader#uploadComplete event.
|
|
8704
|
+
*/
|
|
8393
8705
|
interface FileUploader$UploadCompleteEventParameters {
|
|
8394
8706
|
/**
|
|
8395
8707
|
* The name of a file to be uploaded.
|
|
@@ -8450,6 +8762,9 @@ declare namespace sap {
|
|
|
8450
8762
|
requestHeaders?: object[];
|
|
8451
8763
|
}
|
|
8452
8764
|
|
|
8765
|
+
/**
|
|
8766
|
+
* Parameters of the FileUploader#uploadProgress event.
|
|
8767
|
+
*/
|
|
8453
8768
|
interface FileUploader$UploadProgressEventParameters {
|
|
8454
8769
|
/**
|
|
8455
8770
|
* Indicates whether or not the relative upload progress can be calculated out of loaded and total.
|
|
@@ -8480,6 +8795,9 @@ declare namespace sap {
|
|
|
8480
8795
|
requestHeaders?: object[];
|
|
8481
8796
|
}
|
|
8482
8797
|
|
|
8798
|
+
/**
|
|
8799
|
+
* Parameters of the FileUploader#uploadStart event.
|
|
8800
|
+
*/
|
|
8483
8801
|
interface FileUploader$UploadStartEventParameters {
|
|
8484
8802
|
/**
|
|
8485
8803
|
* The name of a file to be uploaded.
|
|
@@ -8495,6 +8813,9 @@ declare namespace sap {
|
|
|
8495
8813
|
requestHeaders?: object[];
|
|
8496
8814
|
}
|
|
8497
8815
|
|
|
8816
|
+
/**
|
|
8817
|
+
* Parameters of the Menu#itemSelect event.
|
|
8818
|
+
*/
|
|
8498
8819
|
interface Menu$ItemSelectEventParameters {
|
|
8499
8820
|
/**
|
|
8500
8821
|
* The action (item) which was selected by the user.
|
|
@@ -8502,6 +8823,9 @@ declare namespace sap {
|
|
|
8502
8823
|
item?: sap.ui.unified.MenuItemBase;
|
|
8503
8824
|
}
|
|
8504
8825
|
|
|
8826
|
+
/**
|
|
8827
|
+
* Parameters of the MenuItemBase#select event.
|
|
8828
|
+
*/
|
|
8505
8829
|
interface MenuItemBase$SelectEventParameters {
|
|
8506
8830
|
/**
|
|
8507
8831
|
* The current item
|
|
@@ -8509,10 +8833,19 @@ declare namespace sap {
|
|
|
8509
8833
|
item?: sap.ui.unified.MenuItemBase;
|
|
8510
8834
|
}
|
|
8511
8835
|
|
|
8836
|
+
/**
|
|
8837
|
+
* Parameters of the ShellHeadItem#press event.
|
|
8838
|
+
*/
|
|
8512
8839
|
interface ShellHeadItem$PressEventParameters {}
|
|
8513
8840
|
|
|
8841
|
+
/**
|
|
8842
|
+
* Parameters of the ShellHeadUserItem#press event.
|
|
8843
|
+
*/
|
|
8514
8844
|
interface ShellHeadUserItem$PressEventParameters {}
|
|
8515
8845
|
|
|
8846
|
+
/**
|
|
8847
|
+
* Parameters of the ShellOverlay#closed event.
|
|
8848
|
+
*/
|
|
8516
8849
|
interface ShellOverlay$ClosedEventParameters {}
|
|
8517
8850
|
|
|
8518
8851
|
/**
|
|
@@ -14305,7 +14638,7 @@ declare namespace sap {
|
|
|
14305
14638
|
* Switches between two control areas and animates it via CSS transitions
|
|
14306
14639
|
*
|
|
14307
14640
|
* @since 1.16.0
|
|
14308
|
-
* @deprecated (since 1.44.0)
|
|
14641
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
14309
14642
|
* @experimental (since 1.16.0) - API is not yet finished and might change completely
|
|
14310
14643
|
*/
|
|
14311
14644
|
class ContentSwitcher extends sap.ui.core.Control {
|
|
@@ -18220,6 +18553,20 @@ declare namespace sap {
|
|
|
18220
18553
|
* @returns Value of property `icon`
|
|
18221
18554
|
*/
|
|
18222
18555
|
getIcon(): sap.ui.core.URI;
|
|
18556
|
+
/**
|
|
18557
|
+
* Gets current value of property {@link #getShortcutText shortcutText}.
|
|
18558
|
+
*
|
|
18559
|
+
* Defines the shortcut text that should be displayed on the menu item on non-mobile devices. **Note:**
|
|
18560
|
+
* The text is only displayed and set as а value of the `aria-keyshortcuts` attribute. There is no built-in
|
|
18561
|
+
* functionality that selects the item when the corresponding shortcut is pressed. This should be implemented
|
|
18562
|
+
* by the application developer.
|
|
18563
|
+
*
|
|
18564
|
+
* Default value is `empty string`.
|
|
18565
|
+
*
|
|
18566
|
+
*
|
|
18567
|
+
* @returns Value of property `shortcutText`
|
|
18568
|
+
*/
|
|
18569
|
+
getShortcutText(): string;
|
|
18223
18570
|
/**
|
|
18224
18571
|
* Gets current value of property {@link #getText text}.
|
|
18225
18572
|
*
|
|
@@ -18269,6 +18616,27 @@ declare namespace sap {
|
|
|
18269
18616
|
*/
|
|
18270
18617
|
sIcon?: sap.ui.core.URI
|
|
18271
18618
|
): this;
|
|
18619
|
+
/**
|
|
18620
|
+
* Sets a new value for property {@link #getShortcutText shortcutText}.
|
|
18621
|
+
*
|
|
18622
|
+
* Defines the shortcut text that should be displayed on the menu item on non-mobile devices. **Note:**
|
|
18623
|
+
* The text is only displayed and set as а value of the `aria-keyshortcuts` attribute. There is no built-in
|
|
18624
|
+
* functionality that selects the item when the corresponding shortcut is pressed. This should be implemented
|
|
18625
|
+
* by the application developer.
|
|
18626
|
+
*
|
|
18627
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18628
|
+
*
|
|
18629
|
+
* Default value is `empty string`.
|
|
18630
|
+
*
|
|
18631
|
+
*
|
|
18632
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18633
|
+
*/
|
|
18634
|
+
setShortcutText(
|
|
18635
|
+
/**
|
|
18636
|
+
* New value for property `shortcutText`
|
|
18637
|
+
*/
|
|
18638
|
+
sShortcutText?: string
|
|
18639
|
+
): this;
|
|
18272
18640
|
/**
|
|
18273
18641
|
* Sets a new value for property {@link #getText text}.
|
|
18274
18642
|
*
|
|
@@ -18831,7 +19199,7 @@ declare namespace sap {
|
|
|
18831
19199
|
* than the root control usecase.
|
|
18832
19200
|
*
|
|
18833
19201
|
* @since 1.15.1
|
|
18834
|
-
* @deprecated (since 1.44.0)
|
|
19202
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
18835
19203
|
*/
|
|
18836
19204
|
class Shell extends sap.ui.unified.ShellLayout {
|
|
18837
19205
|
/**
|
|
@@ -19399,7 +19767,7 @@ declare namespace sap {
|
|
|
19399
19767
|
* Header Action item of the Shell.
|
|
19400
19768
|
*
|
|
19401
19769
|
* @since 1.15.1
|
|
19402
|
-
* @deprecated (since 1.44.0)
|
|
19770
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
19403
19771
|
*/
|
|
19404
19772
|
class ShellHeadItem extends sap.ui.core.Element {
|
|
19405
19773
|
/**
|
|
@@ -19797,7 +20165,7 @@ declare namespace sap {
|
|
|
19797
20165
|
* User Header Action Item of the Shell.
|
|
19798
20166
|
*
|
|
19799
20167
|
* @since 1.22.0
|
|
19800
|
-
* @deprecated (since 1.44.0)
|
|
20168
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
19801
20169
|
*/
|
|
19802
20170
|
class ShellHeadUserItem extends sap.ui.core.Element {
|
|
19803
20171
|
/**
|
|
@@ -20070,7 +20438,7 @@ declare namespace sap {
|
|
|
20070
20438
|
* do not use it for other scenarios than the root control usecase.
|
|
20071
20439
|
*
|
|
20072
20440
|
* @since 1.25.0
|
|
20073
|
-
* @deprecated (since 1.44.0)
|
|
20441
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20074
20442
|
*/
|
|
20075
20443
|
class ShellLayout extends sap.ui.core.Control {
|
|
20076
20444
|
/**
|
|
@@ -20408,7 +20776,7 @@ declare namespace sap {
|
|
|
20408
20776
|
* ShellOverlay to be opened in front of an sap.ui.unified.Shell
|
|
20409
20777
|
*
|
|
20410
20778
|
* @since 1.16.3
|
|
20411
|
-
* @deprecated (since 1.44.0)
|
|
20779
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20412
20780
|
*/
|
|
20413
20781
|
class ShellOverlay extends sap.ui.core.Control {
|
|
20414
20782
|
/**
|
|
@@ -20719,7 +21087,7 @@ declare namespace sap {
|
|
|
20719
21087
|
* Provides a main content and a secondary content area
|
|
20720
21088
|
*
|
|
20721
21089
|
* @since 1.15.0
|
|
20722
|
-
* @deprecated (since 1.44.0)
|
|
21090
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20723
21091
|
* @experimental (since 1.15.0) - API is not yet finished and might change completely
|
|
20724
21092
|
*/
|
|
20725
21093
|
class SplitContainer extends sap.ui.core.Control {
|
|
@@ -21399,177 +21767,281 @@ declare namespace sap {
|
|
|
21399
21767
|
*/
|
|
21400
21768
|
WorkingDay = "WorkingDay",
|
|
21401
21769
|
}
|
|
21402
|
-
|
|
21770
|
+
/**
|
|
21771
|
+
* Event object of the Calendar#cancel event.
|
|
21772
|
+
*/
|
|
21403
21773
|
type Calendar$CancelEvent = sap.ui.base.Event<
|
|
21404
21774
|
Calendar$CancelEventParameters,
|
|
21405
21775
|
Calendar
|
|
21406
21776
|
>;
|
|
21407
21777
|
|
|
21778
|
+
/**
|
|
21779
|
+
* Event object of the Calendar#select event.
|
|
21780
|
+
*/
|
|
21408
21781
|
type Calendar$SelectEvent = sap.ui.base.Event<
|
|
21409
21782
|
Calendar$SelectEventParameters,
|
|
21410
21783
|
Calendar
|
|
21411
21784
|
>;
|
|
21412
21785
|
|
|
21786
|
+
/**
|
|
21787
|
+
* Event object of the Calendar#startDateChange event.
|
|
21788
|
+
*/
|
|
21413
21789
|
type Calendar$StartDateChangeEvent = sap.ui.base.Event<
|
|
21414
21790
|
Calendar$StartDateChangeEventParameters,
|
|
21415
21791
|
Calendar
|
|
21416
21792
|
>;
|
|
21417
21793
|
|
|
21794
|
+
/**
|
|
21795
|
+
* Event object of the Calendar#weekNumberSelect event.
|
|
21796
|
+
*/
|
|
21418
21797
|
type Calendar$WeekNumberSelectEvent = sap.ui.base.Event<
|
|
21419
21798
|
Calendar$WeekNumberSelectEventParameters,
|
|
21420
21799
|
Calendar
|
|
21421
21800
|
>;
|
|
21422
21801
|
|
|
21802
|
+
/**
|
|
21803
|
+
* Event object of the CalendarMonthInterval#cancel event.
|
|
21804
|
+
*/
|
|
21423
21805
|
type CalendarMonthInterval$CancelEvent = sap.ui.base.Event<
|
|
21424
21806
|
CalendarMonthInterval$CancelEventParameters,
|
|
21425
21807
|
CalendarMonthInterval
|
|
21426
21808
|
>;
|
|
21427
21809
|
|
|
21810
|
+
/**
|
|
21811
|
+
* Event object of the CalendarMonthInterval#select event.
|
|
21812
|
+
*/
|
|
21428
21813
|
type CalendarMonthInterval$SelectEvent = sap.ui.base.Event<
|
|
21429
21814
|
CalendarMonthInterval$SelectEventParameters,
|
|
21430
21815
|
CalendarMonthInterval
|
|
21431
21816
|
>;
|
|
21432
21817
|
|
|
21818
|
+
/**
|
|
21819
|
+
* Event object of the CalendarMonthInterval#startDateChange event.
|
|
21820
|
+
*/
|
|
21433
21821
|
type CalendarMonthInterval$StartDateChangeEvent = sap.ui.base.Event<
|
|
21434
21822
|
CalendarMonthInterval$StartDateChangeEventParameters,
|
|
21435
21823
|
CalendarMonthInterval
|
|
21436
21824
|
>;
|
|
21437
21825
|
|
|
21826
|
+
/**
|
|
21827
|
+
* Event object of the CalendarRow#intervalSelect event.
|
|
21828
|
+
*/
|
|
21438
21829
|
type CalendarRow$IntervalSelectEvent = sap.ui.base.Event<
|
|
21439
21830
|
CalendarRow$IntervalSelectEventParameters,
|
|
21440
21831
|
CalendarRow
|
|
21441
21832
|
>;
|
|
21442
21833
|
|
|
21834
|
+
/**
|
|
21835
|
+
* Event object of the CalendarRow#leaveRow event.
|
|
21836
|
+
*/
|
|
21443
21837
|
type CalendarRow$LeaveRowEvent = sap.ui.base.Event<
|
|
21444
21838
|
CalendarRow$LeaveRowEventParameters,
|
|
21445
21839
|
CalendarRow
|
|
21446
21840
|
>;
|
|
21447
21841
|
|
|
21842
|
+
/**
|
|
21843
|
+
* Event object of the CalendarRow#select event.
|
|
21844
|
+
*/
|
|
21448
21845
|
type CalendarRow$SelectEvent = sap.ui.base.Event<
|
|
21449
21846
|
CalendarRow$SelectEventParameters,
|
|
21450
21847
|
CalendarRow
|
|
21451
21848
|
>;
|
|
21452
21849
|
|
|
21850
|
+
/**
|
|
21851
|
+
* Event object of the CalendarRow#startDateChange event.
|
|
21852
|
+
*/
|
|
21453
21853
|
type CalendarRow$StartDateChangeEvent = sap.ui.base.Event<
|
|
21454
21854
|
CalendarRow$StartDateChangeEventParameters,
|
|
21455
21855
|
CalendarRow
|
|
21456
21856
|
>;
|
|
21457
21857
|
|
|
21858
|
+
/**
|
|
21859
|
+
* Event object of the CalendarTimeInterval#cancel event.
|
|
21860
|
+
*/
|
|
21458
21861
|
type CalendarTimeInterval$CancelEvent = sap.ui.base.Event<
|
|
21459
21862
|
CalendarTimeInterval$CancelEventParameters,
|
|
21460
21863
|
CalendarTimeInterval
|
|
21461
21864
|
>;
|
|
21462
21865
|
|
|
21866
|
+
/**
|
|
21867
|
+
* Event object of the CalendarTimeInterval#select event.
|
|
21868
|
+
*/
|
|
21463
21869
|
type CalendarTimeInterval$SelectEvent = sap.ui.base.Event<
|
|
21464
21870
|
CalendarTimeInterval$SelectEventParameters,
|
|
21465
21871
|
CalendarTimeInterval
|
|
21466
21872
|
>;
|
|
21467
21873
|
|
|
21874
|
+
/**
|
|
21875
|
+
* Event object of the CalendarTimeInterval#startDateChange event.
|
|
21876
|
+
*/
|
|
21468
21877
|
type CalendarTimeInterval$StartDateChangeEvent = sap.ui.base.Event<
|
|
21469
21878
|
CalendarTimeInterval$StartDateChangeEventParameters,
|
|
21470
21879
|
CalendarTimeInterval
|
|
21471
21880
|
>;
|
|
21472
21881
|
|
|
21882
|
+
/**
|
|
21883
|
+
* Event object of the ColorPicker#change event.
|
|
21884
|
+
*/
|
|
21473
21885
|
type ColorPicker$ChangeEvent = sap.ui.base.Event<
|
|
21474
21886
|
ColorPicker$ChangeEventParameters,
|
|
21475
21887
|
ColorPicker
|
|
21476
21888
|
>;
|
|
21477
21889
|
|
|
21890
|
+
/**
|
|
21891
|
+
* Event object of the ColorPicker#liveChange event.
|
|
21892
|
+
*/
|
|
21478
21893
|
type ColorPicker$LiveChangeEvent = sap.ui.base.Event<
|
|
21479
21894
|
ColorPicker$LiveChangeEventParameters,
|
|
21480
21895
|
ColorPicker
|
|
21481
21896
|
>;
|
|
21482
21897
|
|
|
21898
|
+
/**
|
|
21899
|
+
* Event object of the ColorPickerPopover#change event.
|
|
21900
|
+
*/
|
|
21483
21901
|
type ColorPickerPopover$ChangeEvent = sap.ui.base.Event<
|
|
21484
21902
|
ColorPickerPopover$ChangeEventParameters,
|
|
21485
21903
|
ColorPickerPopover
|
|
21486
21904
|
>;
|
|
21487
21905
|
|
|
21906
|
+
/**
|
|
21907
|
+
* Event object of the ColorPickerPopover#liveChange event.
|
|
21908
|
+
*/
|
|
21488
21909
|
type ColorPickerPopover$LiveChangeEvent = sap.ui.base.Event<
|
|
21489
21910
|
ColorPickerPopover$LiveChangeEventParameters,
|
|
21490
21911
|
ColorPickerPopover
|
|
21491
21912
|
>;
|
|
21492
21913
|
|
|
21914
|
+
/**
|
|
21915
|
+
* Event object of the FileUploader#afterDialogClose event.
|
|
21916
|
+
*/
|
|
21493
21917
|
type FileUploader$AfterDialogCloseEvent = sap.ui.base.Event<
|
|
21494
21918
|
FileUploader$AfterDialogCloseEventParameters,
|
|
21495
21919
|
FileUploader
|
|
21496
21920
|
>;
|
|
21497
21921
|
|
|
21922
|
+
/**
|
|
21923
|
+
* Event object of the FileUploader#beforeDialogOpen event.
|
|
21924
|
+
*/
|
|
21498
21925
|
type FileUploader$BeforeDialogOpenEvent = sap.ui.base.Event<
|
|
21499
21926
|
FileUploader$BeforeDialogOpenEventParameters,
|
|
21500
21927
|
FileUploader
|
|
21501
21928
|
>;
|
|
21502
21929
|
|
|
21930
|
+
/**
|
|
21931
|
+
* Event object of the FileUploader#change event.
|
|
21932
|
+
*/
|
|
21503
21933
|
type FileUploader$ChangeEvent = sap.ui.base.Event<
|
|
21504
21934
|
FileUploader$ChangeEventParameters,
|
|
21505
21935
|
FileUploader
|
|
21506
21936
|
>;
|
|
21507
21937
|
|
|
21938
|
+
/**
|
|
21939
|
+
* Event object of the FileUploader#fileAllowed event.
|
|
21940
|
+
*/
|
|
21508
21941
|
type FileUploader$FileAllowedEvent = sap.ui.base.Event<
|
|
21509
21942
|
FileUploader$FileAllowedEventParameters,
|
|
21510
21943
|
FileUploader
|
|
21511
21944
|
>;
|
|
21512
21945
|
|
|
21946
|
+
/**
|
|
21947
|
+
* Event object of the FileUploader#fileEmpty event.
|
|
21948
|
+
*/
|
|
21513
21949
|
type FileUploader$FileEmptyEvent = sap.ui.base.Event<
|
|
21514
21950
|
FileUploader$FileEmptyEventParameters,
|
|
21515
21951
|
FileUploader
|
|
21516
21952
|
>;
|
|
21517
21953
|
|
|
21954
|
+
/**
|
|
21955
|
+
* Event object of the FileUploader#filenameLengthExceed event.
|
|
21956
|
+
*/
|
|
21518
21957
|
type FileUploader$FilenameLengthExceedEvent = sap.ui.base.Event<
|
|
21519
21958
|
FileUploader$FilenameLengthExceedEventParameters,
|
|
21520
21959
|
FileUploader
|
|
21521
21960
|
>;
|
|
21522
21961
|
|
|
21962
|
+
/**
|
|
21963
|
+
* Event object of the FileUploader#fileSizeExceed event.
|
|
21964
|
+
*/
|
|
21523
21965
|
type FileUploader$FileSizeExceedEvent = sap.ui.base.Event<
|
|
21524
21966
|
FileUploader$FileSizeExceedEventParameters,
|
|
21525
21967
|
FileUploader
|
|
21526
21968
|
>;
|
|
21527
21969
|
|
|
21970
|
+
/**
|
|
21971
|
+
* Event object of the FileUploader#typeMissmatch event.
|
|
21972
|
+
*/
|
|
21528
21973
|
type FileUploader$TypeMissmatchEvent = sap.ui.base.Event<
|
|
21529
21974
|
FileUploader$TypeMissmatchEventParameters,
|
|
21530
21975
|
FileUploader
|
|
21531
21976
|
>;
|
|
21532
21977
|
|
|
21978
|
+
/**
|
|
21979
|
+
* Event object of the FileUploader#uploadAborted event.
|
|
21980
|
+
*/
|
|
21533
21981
|
type FileUploader$UploadAbortedEvent = sap.ui.base.Event<
|
|
21534
21982
|
FileUploader$UploadAbortedEventParameters,
|
|
21535
21983
|
FileUploader
|
|
21536
21984
|
>;
|
|
21537
21985
|
|
|
21986
|
+
/**
|
|
21987
|
+
* Event object of the FileUploader#uploadComplete event.
|
|
21988
|
+
*/
|
|
21538
21989
|
type FileUploader$UploadCompleteEvent = sap.ui.base.Event<
|
|
21539
21990
|
FileUploader$UploadCompleteEventParameters,
|
|
21540
21991
|
FileUploader
|
|
21541
21992
|
>;
|
|
21542
21993
|
|
|
21994
|
+
/**
|
|
21995
|
+
* Event object of the FileUploader#uploadProgress event.
|
|
21996
|
+
*/
|
|
21543
21997
|
type FileUploader$UploadProgressEvent = sap.ui.base.Event<
|
|
21544
21998
|
FileUploader$UploadProgressEventParameters,
|
|
21545
21999
|
FileUploader
|
|
21546
22000
|
>;
|
|
21547
22001
|
|
|
22002
|
+
/**
|
|
22003
|
+
* Event object of the FileUploader#uploadStart event.
|
|
22004
|
+
*/
|
|
21548
22005
|
type FileUploader$UploadStartEvent = sap.ui.base.Event<
|
|
21549
22006
|
FileUploader$UploadStartEventParameters,
|
|
21550
22007
|
FileUploader
|
|
21551
22008
|
>;
|
|
21552
22009
|
|
|
22010
|
+
/**
|
|
22011
|
+
* Event object of the Menu#itemSelect event.
|
|
22012
|
+
*/
|
|
21553
22013
|
type Menu$ItemSelectEvent = sap.ui.base.Event<
|
|
21554
22014
|
Menu$ItemSelectEventParameters,
|
|
21555
22015
|
Menu
|
|
21556
22016
|
>;
|
|
21557
22017
|
|
|
22018
|
+
/**
|
|
22019
|
+
* Event object of the MenuItemBase#select event.
|
|
22020
|
+
*/
|
|
21558
22021
|
type MenuItemBase$SelectEvent = sap.ui.base.Event<
|
|
21559
22022
|
MenuItemBase$SelectEventParameters,
|
|
21560
22023
|
MenuItemBase
|
|
21561
22024
|
>;
|
|
21562
22025
|
|
|
22026
|
+
/**
|
|
22027
|
+
* Event object of the ShellHeadItem#press event.
|
|
22028
|
+
*/
|
|
21563
22029
|
type ShellHeadItem$PressEvent = sap.ui.base.Event<
|
|
21564
22030
|
ShellHeadItem$PressEventParameters,
|
|
21565
22031
|
ShellHeadItem
|
|
21566
22032
|
>;
|
|
21567
22033
|
|
|
22034
|
+
/**
|
|
22035
|
+
* Event object of the ShellHeadUserItem#press event.
|
|
22036
|
+
*/
|
|
21568
22037
|
type ShellHeadUserItem$PressEvent = sap.ui.base.Event<
|
|
21569
22038
|
ShellHeadUserItem$PressEventParameters,
|
|
21570
22039
|
ShellHeadUserItem
|
|
21571
22040
|
>;
|
|
21572
22041
|
|
|
22042
|
+
/**
|
|
22043
|
+
* Event object of the ShellOverlay#closed event.
|
|
22044
|
+
*/
|
|
21573
22045
|
type ShellOverlay$ClosedEvent = sap.ui.base.Event<
|
|
21574
22046
|
ShellOverlay$ClosedEventParameters,
|
|
21575
22047
|
ShellOverlay
|