@openui5/types 1.116.0 → 1.117.0
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/sap.f.d.ts +130 -36
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.core.d.ts +934 -264
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uxap.d.ts +42 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -1726,15 +1726,24 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1726
1726
|
|
|
1727
1727
|
export interface Calendar$CancelEventParameters {}
|
|
1728
1728
|
|
|
1729
|
-
export type Calendar$CancelEvent = Event<
|
|
1729
|
+
export type Calendar$CancelEvent = Event<
|
|
1730
|
+
Calendar$CancelEventParameters,
|
|
1731
|
+
Calendar
|
|
1732
|
+
>;
|
|
1730
1733
|
|
|
1731
1734
|
export interface Calendar$SelectEventParameters {}
|
|
1732
1735
|
|
|
1733
|
-
export type Calendar$SelectEvent = Event<
|
|
1736
|
+
export type Calendar$SelectEvent = Event<
|
|
1737
|
+
Calendar$SelectEventParameters,
|
|
1738
|
+
Calendar
|
|
1739
|
+
>;
|
|
1734
1740
|
|
|
1735
1741
|
export interface Calendar$StartDateChangeEventParameters {}
|
|
1736
1742
|
|
|
1737
|
-
export type Calendar$StartDateChangeEvent = Event<
|
|
1743
|
+
export type Calendar$StartDateChangeEvent = Event<
|
|
1744
|
+
Calendar$StartDateChangeEventParameters,
|
|
1745
|
+
Calendar
|
|
1746
|
+
>;
|
|
1738
1747
|
|
|
1739
1748
|
export interface Calendar$WeekNumberSelectEventParameters {
|
|
1740
1749
|
/**
|
|
@@ -1748,7 +1757,10 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1748
1757
|
weekDays?: DateRange;
|
|
1749
1758
|
}
|
|
1750
1759
|
|
|
1751
|
-
export type Calendar$WeekNumberSelectEvent = Event<
|
|
1760
|
+
export type Calendar$WeekNumberSelectEvent = Event<
|
|
1761
|
+
Calendar$WeekNumberSelectEventParameters,
|
|
1762
|
+
Calendar
|
|
1763
|
+
>;
|
|
1752
1764
|
}
|
|
1753
1765
|
|
|
1754
1766
|
declare module "sap/ui/unified/calendar/DatesRow" {
|
|
@@ -3094,27 +3106,45 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
3094
3106
|
|
|
3095
3107
|
export interface Header$PressButton0EventParameters {}
|
|
3096
3108
|
|
|
3097
|
-
export type Header$PressButton0Event = Event<
|
|
3109
|
+
export type Header$PressButton0Event = Event<
|
|
3110
|
+
Header$PressButton0EventParameters,
|
|
3111
|
+
Header
|
|
3112
|
+
>;
|
|
3098
3113
|
|
|
3099
3114
|
export interface Header$PressButton1EventParameters {}
|
|
3100
3115
|
|
|
3101
|
-
export type Header$PressButton1Event = Event<
|
|
3116
|
+
export type Header$PressButton1Event = Event<
|
|
3117
|
+
Header$PressButton1EventParameters,
|
|
3118
|
+
Header
|
|
3119
|
+
>;
|
|
3102
3120
|
|
|
3103
3121
|
export interface Header$PressButton2EventParameters {}
|
|
3104
3122
|
|
|
3105
|
-
export type Header$PressButton2Event = Event<
|
|
3123
|
+
export type Header$PressButton2Event = Event<
|
|
3124
|
+
Header$PressButton2EventParameters,
|
|
3125
|
+
Header
|
|
3126
|
+
>;
|
|
3106
3127
|
|
|
3107
3128
|
export interface Header$PressCurrentDateEventParameters {}
|
|
3108
3129
|
|
|
3109
|
-
export type Header$PressCurrentDateEvent = Event<
|
|
3130
|
+
export type Header$PressCurrentDateEvent = Event<
|
|
3131
|
+
Header$PressCurrentDateEventParameters,
|
|
3132
|
+
Header
|
|
3133
|
+
>;
|
|
3110
3134
|
|
|
3111
3135
|
export interface Header$PressNextEventParameters {}
|
|
3112
3136
|
|
|
3113
|
-
export type Header$PressNextEvent = Event<
|
|
3137
|
+
export type Header$PressNextEvent = Event<
|
|
3138
|
+
Header$PressNextEventParameters,
|
|
3139
|
+
Header
|
|
3140
|
+
>;
|
|
3114
3141
|
|
|
3115
3142
|
export interface Header$PressPreviousEventParameters {}
|
|
3116
3143
|
|
|
3117
|
-
export type Header$PressPreviousEvent = Event<
|
|
3144
|
+
export type Header$PressPreviousEvent = Event<
|
|
3145
|
+
Header$PressPreviousEventParameters,
|
|
3146
|
+
Header
|
|
3147
|
+
>;
|
|
3118
3148
|
}
|
|
3119
3149
|
|
|
3120
3150
|
declare module "sap/ui/unified/calendar/Month" {
|
|
@@ -4253,11 +4283,11 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4253
4283
|
restoreOldDate?: boolean;
|
|
4254
4284
|
}
|
|
4255
4285
|
|
|
4256
|
-
export type Month$FocusEvent = Event<Month$FocusEventParameters>;
|
|
4286
|
+
export type Month$FocusEvent = Event<Month$FocusEventParameters, Month>;
|
|
4257
4287
|
|
|
4258
4288
|
export interface Month$SelectEventParameters {}
|
|
4259
4289
|
|
|
4260
|
-
export type Month$SelectEvent = Event<Month$SelectEventParameters>;
|
|
4290
|
+
export type Month$SelectEvent = Event<Month$SelectEventParameters, Month>;
|
|
4261
4291
|
|
|
4262
4292
|
export interface Month$WeekNumberSelectEventParameters {
|
|
4263
4293
|
/**
|
|
@@ -4273,7 +4303,10 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4273
4303
|
weekDays?: DateRange;
|
|
4274
4304
|
}
|
|
4275
4305
|
|
|
4276
|
-
export type Month$WeekNumberSelectEvent = Event<
|
|
4306
|
+
export type Month$WeekNumberSelectEvent = Event<
|
|
4307
|
+
Month$WeekNumberSelectEventParameters,
|
|
4308
|
+
Month
|
|
4309
|
+
>;
|
|
4277
4310
|
}
|
|
4278
4311
|
|
|
4279
4312
|
declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
@@ -4935,11 +4968,17 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4935
4968
|
|
|
4936
4969
|
export interface MonthPicker$PageChangeEventParameters {}
|
|
4937
4970
|
|
|
4938
|
-
export type MonthPicker$PageChangeEvent = Event<
|
|
4971
|
+
export type MonthPicker$PageChangeEvent = Event<
|
|
4972
|
+
MonthPicker$PageChangeEventParameters,
|
|
4973
|
+
MonthPicker
|
|
4974
|
+
>;
|
|
4939
4975
|
|
|
4940
4976
|
export interface MonthPicker$SelectEventParameters {}
|
|
4941
4977
|
|
|
4942
|
-
export type MonthPicker$SelectEvent = Event<
|
|
4978
|
+
export type MonthPicker$SelectEvent = Event<
|
|
4979
|
+
MonthPicker$SelectEventParameters,
|
|
4980
|
+
MonthPicker
|
|
4981
|
+
>;
|
|
4943
4982
|
}
|
|
4944
4983
|
|
|
4945
4984
|
declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
@@ -5744,11 +5783,17 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5744
5783
|
notVisible?: boolean;
|
|
5745
5784
|
}
|
|
5746
5785
|
|
|
5747
|
-
export type MonthsRow$FocusEvent = Event<
|
|
5786
|
+
export type MonthsRow$FocusEvent = Event<
|
|
5787
|
+
MonthsRow$FocusEventParameters,
|
|
5788
|
+
MonthsRow
|
|
5789
|
+
>;
|
|
5748
5790
|
|
|
5749
5791
|
export interface MonthsRow$SelectEventParameters {}
|
|
5750
5792
|
|
|
5751
|
-
export type MonthsRow$SelectEvent = Event<
|
|
5793
|
+
export type MonthsRow$SelectEvent = Event<
|
|
5794
|
+
MonthsRow$SelectEventParameters,
|
|
5795
|
+
MonthsRow
|
|
5796
|
+
>;
|
|
5752
5797
|
}
|
|
5753
5798
|
|
|
5754
5799
|
declare module "sap/ui/unified/calendar/TimesRow" {
|
|
@@ -6589,11 +6634,17 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6589
6634
|
notVisible?: boolean;
|
|
6590
6635
|
}
|
|
6591
6636
|
|
|
6592
|
-
export type TimesRow$FocusEvent = Event<
|
|
6637
|
+
export type TimesRow$FocusEvent = Event<
|
|
6638
|
+
TimesRow$FocusEventParameters,
|
|
6639
|
+
TimesRow
|
|
6640
|
+
>;
|
|
6593
6641
|
|
|
6594
6642
|
export interface TimesRow$SelectEventParameters {}
|
|
6595
6643
|
|
|
6596
|
-
export type TimesRow$SelectEvent = Event<
|
|
6644
|
+
export type TimesRow$SelectEvent = Event<
|
|
6645
|
+
TimesRow$SelectEventParameters,
|
|
6646
|
+
TimesRow
|
|
6647
|
+
>;
|
|
6597
6648
|
}
|
|
6598
6649
|
|
|
6599
6650
|
declare module "sap/ui/unified/calendar/YearPicker" {
|
|
@@ -7234,11 +7285,17 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7234
7285
|
|
|
7235
7286
|
export interface YearPicker$PageChangeEventParameters {}
|
|
7236
7287
|
|
|
7237
|
-
export type YearPicker$PageChangeEvent = Event<
|
|
7288
|
+
export type YearPicker$PageChangeEvent = Event<
|
|
7289
|
+
YearPicker$PageChangeEventParameters,
|
|
7290
|
+
YearPicker
|
|
7291
|
+
>;
|
|
7238
7292
|
|
|
7239
7293
|
export interface YearPicker$SelectEventParameters {}
|
|
7240
7294
|
|
|
7241
|
-
export type YearPicker$SelectEvent = Event<
|
|
7295
|
+
export type YearPicker$SelectEvent = Event<
|
|
7296
|
+
YearPicker$SelectEventParameters,
|
|
7297
|
+
YearPicker
|
|
7298
|
+
>;
|
|
7242
7299
|
}
|
|
7243
7300
|
|
|
7244
7301
|
declare module "sap/ui/unified/CalendarAppointment" {
|
|
@@ -9312,15 +9369,24 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
9312
9369
|
|
|
9313
9370
|
export interface CalendarMonthInterval$CancelEventParameters {}
|
|
9314
9371
|
|
|
9315
|
-
export type CalendarMonthInterval$CancelEvent = Event<
|
|
9372
|
+
export type CalendarMonthInterval$CancelEvent = Event<
|
|
9373
|
+
CalendarMonthInterval$CancelEventParameters,
|
|
9374
|
+
CalendarMonthInterval
|
|
9375
|
+
>;
|
|
9316
9376
|
|
|
9317
9377
|
export interface CalendarMonthInterval$SelectEventParameters {}
|
|
9318
9378
|
|
|
9319
|
-
export type CalendarMonthInterval$SelectEvent = Event<
|
|
9379
|
+
export type CalendarMonthInterval$SelectEvent = Event<
|
|
9380
|
+
CalendarMonthInterval$SelectEventParameters,
|
|
9381
|
+
CalendarMonthInterval
|
|
9382
|
+
>;
|
|
9320
9383
|
|
|
9321
9384
|
export interface CalendarMonthInterval$StartDateChangeEventParameters {}
|
|
9322
9385
|
|
|
9323
|
-
export type CalendarMonthInterval$StartDateChangeEvent = Event<
|
|
9386
|
+
export type CalendarMonthInterval$StartDateChangeEvent = Event<
|
|
9387
|
+
CalendarMonthInterval$StartDateChangeEventParameters,
|
|
9388
|
+
CalendarMonthInterval
|
|
9389
|
+
>;
|
|
9324
9390
|
}
|
|
9325
9391
|
|
|
9326
9392
|
declare module "sap/ui/unified/CalendarRow" {
|
|
@@ -10867,7 +10933,10 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
10867
10933
|
subInterval?: boolean;
|
|
10868
10934
|
}
|
|
10869
10935
|
|
|
10870
|
-
export type CalendarRow$IntervalSelectEvent = Event<
|
|
10936
|
+
export type CalendarRow$IntervalSelectEvent = Event<
|
|
10937
|
+
CalendarRow$IntervalSelectEventParameters,
|
|
10938
|
+
CalendarRow
|
|
10939
|
+
>;
|
|
10871
10940
|
|
|
10872
10941
|
export interface CalendarRow$LeaveRowEventParameters {
|
|
10873
10942
|
/**
|
|
@@ -10876,7 +10945,10 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
10876
10945
|
type?: string;
|
|
10877
10946
|
}
|
|
10878
10947
|
|
|
10879
|
-
export type CalendarRow$LeaveRowEvent = Event<
|
|
10948
|
+
export type CalendarRow$LeaveRowEvent = Event<
|
|
10949
|
+
CalendarRow$LeaveRowEventParameters,
|
|
10950
|
+
CalendarRow
|
|
10951
|
+
>;
|
|
10880
10952
|
|
|
10881
10953
|
export interface CalendarRow$SelectEventParameters {
|
|
10882
10954
|
/**
|
|
@@ -10901,11 +10973,17 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
10901
10973
|
domRefId?: string;
|
|
10902
10974
|
}
|
|
10903
10975
|
|
|
10904
|
-
export type CalendarRow$SelectEvent = Event<
|
|
10976
|
+
export type CalendarRow$SelectEvent = Event<
|
|
10977
|
+
CalendarRow$SelectEventParameters,
|
|
10978
|
+
CalendarRow
|
|
10979
|
+
>;
|
|
10905
10980
|
|
|
10906
10981
|
export interface CalendarRow$StartDateChangeEventParameters {}
|
|
10907
10982
|
|
|
10908
|
-
export type CalendarRow$StartDateChangeEvent = Event<
|
|
10983
|
+
export type CalendarRow$StartDateChangeEvent = Event<
|
|
10984
|
+
CalendarRow$StartDateChangeEventParameters,
|
|
10985
|
+
CalendarRow
|
|
10986
|
+
>;
|
|
10909
10987
|
}
|
|
10910
10988
|
|
|
10911
10989
|
declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
@@ -11836,15 +11914,24 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
11836
11914
|
|
|
11837
11915
|
export interface CalendarTimeInterval$CancelEventParameters {}
|
|
11838
11916
|
|
|
11839
|
-
export type CalendarTimeInterval$CancelEvent = Event<
|
|
11917
|
+
export type CalendarTimeInterval$CancelEvent = Event<
|
|
11918
|
+
CalendarTimeInterval$CancelEventParameters,
|
|
11919
|
+
CalendarTimeInterval
|
|
11920
|
+
>;
|
|
11840
11921
|
|
|
11841
11922
|
export interface CalendarTimeInterval$SelectEventParameters {}
|
|
11842
11923
|
|
|
11843
|
-
export type CalendarTimeInterval$SelectEvent = Event<
|
|
11924
|
+
export type CalendarTimeInterval$SelectEvent = Event<
|
|
11925
|
+
CalendarTimeInterval$SelectEventParameters,
|
|
11926
|
+
CalendarTimeInterval
|
|
11927
|
+
>;
|
|
11844
11928
|
|
|
11845
11929
|
export interface CalendarTimeInterval$StartDateChangeEventParameters {}
|
|
11846
11930
|
|
|
11847
|
-
export type CalendarTimeInterval$StartDateChangeEvent = Event<
|
|
11931
|
+
export type CalendarTimeInterval$StartDateChangeEvent = Event<
|
|
11932
|
+
CalendarTimeInterval$StartDateChangeEventParameters,
|
|
11933
|
+
CalendarTimeInterval
|
|
11934
|
+
>;
|
|
11848
11935
|
}
|
|
11849
11936
|
|
|
11850
11937
|
declare module "sap/ui/unified/ColorPicker" {
|
|
@@ -12323,7 +12410,10 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12323
12410
|
alpha?: string;
|
|
12324
12411
|
}
|
|
12325
12412
|
|
|
12326
|
-
export type ColorPicker$ChangeEvent = Event<
|
|
12413
|
+
export type ColorPicker$ChangeEvent = Event<
|
|
12414
|
+
ColorPicker$ChangeEventParameters,
|
|
12415
|
+
ColorPicker
|
|
12416
|
+
>;
|
|
12327
12417
|
|
|
12328
12418
|
export interface ColorPicker$LiveChangeEventParameters {
|
|
12329
12419
|
/**
|
|
@@ -12372,7 +12462,10 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12372
12462
|
alpha?: string;
|
|
12373
12463
|
}
|
|
12374
12464
|
|
|
12375
|
-
export type ColorPicker$LiveChangeEvent = Event<
|
|
12465
|
+
export type ColorPicker$LiveChangeEvent = Event<
|
|
12466
|
+
ColorPicker$LiveChangeEventParameters,
|
|
12467
|
+
ColorPicker
|
|
12468
|
+
>;
|
|
12376
12469
|
}
|
|
12377
12470
|
|
|
12378
12471
|
declare module "sap/ui/unified/ColorPickerDisplayMode" {
|
|
@@ -12859,7 +12952,10 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
12859
12952
|
alpha?: string;
|
|
12860
12953
|
}
|
|
12861
12954
|
|
|
12862
|
-
export type ColorPickerPopover$ChangeEvent = Event<
|
|
12955
|
+
export type ColorPickerPopover$ChangeEvent = Event<
|
|
12956
|
+
ColorPickerPopover$ChangeEventParameters,
|
|
12957
|
+
ColorPickerPopover
|
|
12958
|
+
>;
|
|
12863
12959
|
|
|
12864
12960
|
export interface ColorPickerPopover$LiveChangeEventParameters {
|
|
12865
12961
|
/**
|
|
@@ -12908,7 +13004,10 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
12908
13004
|
alpha?: string;
|
|
12909
13005
|
}
|
|
12910
13006
|
|
|
12911
|
-
export type ColorPickerPopover$LiveChangeEvent = Event<
|
|
13007
|
+
export type ColorPickerPopover$LiveChangeEvent = Event<
|
|
13008
|
+
ColorPickerPopover$LiveChangeEventParameters,
|
|
13009
|
+
ColorPickerPopover
|
|
13010
|
+
>;
|
|
12912
13011
|
}
|
|
12913
13012
|
|
|
12914
13013
|
declare module "sap/ui/unified/ContentSwitcher" {
|
|
@@ -16485,11 +16584,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16485
16584
|
|
|
16486
16585
|
export interface FileUploader$AfterDialogCloseEventParameters {}
|
|
16487
16586
|
|
|
16488
|
-
export type FileUploader$AfterDialogCloseEvent = Event<
|
|
16587
|
+
export type FileUploader$AfterDialogCloseEvent = Event<
|
|
16588
|
+
FileUploader$AfterDialogCloseEventParameters,
|
|
16589
|
+
FileUploader
|
|
16590
|
+
>;
|
|
16489
16591
|
|
|
16490
16592
|
export interface FileUploader$BeforeDialogOpenEventParameters {}
|
|
16491
16593
|
|
|
16492
|
-
export type FileUploader$BeforeDialogOpenEvent = Event<
|
|
16594
|
+
export type FileUploader$BeforeDialogOpenEvent = Event<
|
|
16595
|
+
FileUploader$BeforeDialogOpenEventParameters,
|
|
16596
|
+
FileUploader
|
|
16597
|
+
>;
|
|
16493
16598
|
|
|
16494
16599
|
export interface FileUploader$ChangeEventParameters {
|
|
16495
16600
|
/**
|
|
@@ -16503,11 +16608,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16503
16608
|
files?: object[];
|
|
16504
16609
|
}
|
|
16505
16610
|
|
|
16506
|
-
export type FileUploader$ChangeEvent = Event<
|
|
16611
|
+
export type FileUploader$ChangeEvent = Event<
|
|
16612
|
+
FileUploader$ChangeEventParameters,
|
|
16613
|
+
FileUploader
|
|
16614
|
+
>;
|
|
16507
16615
|
|
|
16508
16616
|
export interface FileUploader$FileAllowedEventParameters {}
|
|
16509
16617
|
|
|
16510
|
-
export type FileUploader$FileAllowedEvent = Event<
|
|
16618
|
+
export type FileUploader$FileAllowedEvent = Event<
|
|
16619
|
+
FileUploader$FileAllowedEventParameters,
|
|
16620
|
+
FileUploader
|
|
16621
|
+
>;
|
|
16511
16622
|
|
|
16512
16623
|
export interface FileUploader$FileEmptyEventParameters {
|
|
16513
16624
|
/**
|
|
@@ -16516,7 +16627,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16516
16627
|
fileName?: string;
|
|
16517
16628
|
}
|
|
16518
16629
|
|
|
16519
|
-
export type FileUploader$FileEmptyEvent = Event<
|
|
16630
|
+
export type FileUploader$FileEmptyEvent = Event<
|
|
16631
|
+
FileUploader$FileEmptyEventParameters,
|
|
16632
|
+
FileUploader
|
|
16633
|
+
>;
|
|
16520
16634
|
|
|
16521
16635
|
export interface FileUploader$FilenameLengthExceedEventParameters {
|
|
16522
16636
|
/**
|
|
@@ -16525,7 +16639,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16525
16639
|
fileName?: string;
|
|
16526
16640
|
}
|
|
16527
16641
|
|
|
16528
|
-
export type FileUploader$FilenameLengthExceedEvent = Event<
|
|
16642
|
+
export type FileUploader$FilenameLengthExceedEvent = Event<
|
|
16643
|
+
FileUploader$FilenameLengthExceedEventParameters,
|
|
16644
|
+
FileUploader
|
|
16645
|
+
>;
|
|
16529
16646
|
|
|
16530
16647
|
export interface FileUploader$FileSizeExceedEventParameters {
|
|
16531
16648
|
/**
|
|
@@ -16539,7 +16656,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16539
16656
|
fileSize?: string;
|
|
16540
16657
|
}
|
|
16541
16658
|
|
|
16542
|
-
export type FileUploader$FileSizeExceedEvent = Event<
|
|
16659
|
+
export type FileUploader$FileSizeExceedEvent = Event<
|
|
16660
|
+
FileUploader$FileSizeExceedEventParameters,
|
|
16661
|
+
FileUploader
|
|
16662
|
+
>;
|
|
16543
16663
|
|
|
16544
16664
|
export interface FileUploader$TypeMissmatchEventParameters {
|
|
16545
16665
|
/**
|
|
@@ -16558,7 +16678,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16558
16678
|
mimeType?: string;
|
|
16559
16679
|
}
|
|
16560
16680
|
|
|
16561
|
-
export type FileUploader$TypeMissmatchEvent = Event<
|
|
16681
|
+
export type FileUploader$TypeMissmatchEvent = Event<
|
|
16682
|
+
FileUploader$TypeMissmatchEventParameters,
|
|
16683
|
+
FileUploader
|
|
16684
|
+
>;
|
|
16562
16685
|
|
|
16563
16686
|
export interface FileUploader$UploadAbortedEventParameters {
|
|
16564
16687
|
/**
|
|
@@ -16575,7 +16698,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16575
16698
|
requestHeaders?: object[];
|
|
16576
16699
|
}
|
|
16577
16700
|
|
|
16578
|
-
export type FileUploader$UploadAbortedEvent = Event<
|
|
16701
|
+
export type FileUploader$UploadAbortedEvent = Event<
|
|
16702
|
+
FileUploader$UploadAbortedEventParameters,
|
|
16703
|
+
FileUploader
|
|
16704
|
+
>;
|
|
16579
16705
|
|
|
16580
16706
|
export interface FileUploader$UploadCompleteEventParameters {
|
|
16581
16707
|
/**
|
|
@@ -16637,7 +16763,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16637
16763
|
requestHeaders?: object[];
|
|
16638
16764
|
}
|
|
16639
16765
|
|
|
16640
|
-
export type FileUploader$UploadCompleteEvent = Event<
|
|
16766
|
+
export type FileUploader$UploadCompleteEvent = Event<
|
|
16767
|
+
FileUploader$UploadCompleteEventParameters,
|
|
16768
|
+
FileUploader
|
|
16769
|
+
>;
|
|
16641
16770
|
|
|
16642
16771
|
export interface FileUploader$UploadProgressEventParameters {
|
|
16643
16772
|
/**
|
|
@@ -16669,7 +16798,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16669
16798
|
requestHeaders?: object[];
|
|
16670
16799
|
}
|
|
16671
16800
|
|
|
16672
|
-
export type FileUploader$UploadProgressEvent = Event<
|
|
16801
|
+
export type FileUploader$UploadProgressEvent = Event<
|
|
16802
|
+
FileUploader$UploadProgressEventParameters,
|
|
16803
|
+
FileUploader
|
|
16804
|
+
>;
|
|
16673
16805
|
|
|
16674
16806
|
export interface FileUploader$UploadStartEventParameters {
|
|
16675
16807
|
/**
|
|
@@ -16686,7 +16818,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16686
16818
|
requestHeaders?: object[];
|
|
16687
16819
|
}
|
|
16688
16820
|
|
|
16689
|
-
export type FileUploader$UploadStartEvent = Event<
|
|
16821
|
+
export type FileUploader$UploadStartEvent = Event<
|
|
16822
|
+
FileUploader$UploadStartEventParameters,
|
|
16823
|
+
FileUploader
|
|
16824
|
+
>;
|
|
16690
16825
|
}
|
|
16691
16826
|
|
|
16692
16827
|
declare module "sap/ui/unified/FileUploaderHttpRequestMethod" {
|
|
@@ -17260,6 +17395,12 @@ declare module "sap/ui/unified/Menu" {
|
|
|
17260
17395
|
*/
|
|
17261
17396
|
iIndex: int
|
|
17262
17397
|
): this;
|
|
17398
|
+
/**
|
|
17399
|
+
* Returns whether the `Menu` is currently open.
|
|
17400
|
+
*
|
|
17401
|
+
* @returns true if menu is open
|
|
17402
|
+
*/
|
|
17403
|
+
isOpen(): boolean;
|
|
17263
17404
|
/**
|
|
17264
17405
|
* Opens the menu at the specified position.
|
|
17265
17406
|
*
|
|
@@ -17501,7 +17642,10 @@ declare module "sap/ui/unified/Menu" {
|
|
|
17501
17642
|
item?: MenuItemBase;
|
|
17502
17643
|
}
|
|
17503
17644
|
|
|
17504
|
-
export type Menu$ItemSelectEvent = Event<
|
|
17645
|
+
export type Menu$ItemSelectEvent = Event<
|
|
17646
|
+
Menu$ItemSelectEventParameters,
|
|
17647
|
+
Menu
|
|
17648
|
+
>;
|
|
17505
17649
|
}
|
|
17506
17650
|
|
|
17507
17651
|
declare module "sap/ui/unified/MenuItem" {
|
|
@@ -18060,7 +18204,10 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
18060
18204
|
item?: MenuItemBase;
|
|
18061
18205
|
}
|
|
18062
18206
|
|
|
18063
|
-
export type MenuItemBase$SelectEvent = Event<
|
|
18207
|
+
export type MenuItemBase$SelectEvent = Event<
|
|
18208
|
+
MenuItemBase$SelectEventParameters,
|
|
18209
|
+
MenuItemBase
|
|
18210
|
+
>;
|
|
18064
18211
|
}
|
|
18065
18212
|
|
|
18066
18213
|
declare module "sap/ui/unified/MenuTextFieldItem" {
|
|
@@ -19410,7 +19557,10 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
19410
19557
|
|
|
19411
19558
|
export interface ShellHeadItem$PressEventParameters {}
|
|
19412
19559
|
|
|
19413
|
-
export type ShellHeadItem$PressEvent = Event<
|
|
19560
|
+
export type ShellHeadItem$PressEvent = Event<
|
|
19561
|
+
ShellHeadItem$PressEventParameters,
|
|
19562
|
+
ShellHeadItem
|
|
19563
|
+
>;
|
|
19414
19564
|
}
|
|
19415
19565
|
|
|
19416
19566
|
declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
@@ -19717,7 +19867,10 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
19717
19867
|
|
|
19718
19868
|
export interface ShellHeadUserItem$PressEventParameters {}
|
|
19719
19869
|
|
|
19720
|
-
export type ShellHeadUserItem$PressEvent = Event<
|
|
19870
|
+
export type ShellHeadUserItem$PressEvent = Event<
|
|
19871
|
+
ShellHeadUserItem$PressEventParameters,
|
|
19872
|
+
ShellHeadUserItem
|
|
19873
|
+
>;
|
|
19721
19874
|
}
|
|
19722
19875
|
|
|
19723
19876
|
declare module "sap/ui/unified/ShellLayout" {
|
|
@@ -20422,7 +20575,10 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
20422
20575
|
|
|
20423
20576
|
export interface ShellOverlay$ClosedEventParameters {}
|
|
20424
20577
|
|
|
20425
|
-
export type ShellOverlay$ClosedEvent = Event<
|
|
20578
|
+
export type ShellOverlay$ClosedEvent = Event<
|
|
20579
|
+
ShellOverlay$ClosedEventParameters,
|
|
20580
|
+
ShellOverlay
|
|
20581
|
+
>;
|
|
20426
20582
|
}
|
|
20427
20583
|
|
|
20428
20584
|
declare module "sap/ui/unified/SplitContainer" {
|