@openui5/types 1.122.1 → 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/sap.f.d.ts +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +123 -23
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -1552,7 +1552,9 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1552
1552
|
sWidth?: CSSSize
|
|
1553
1553
|
): this;
|
|
1554
1554
|
}
|
|
1555
|
-
|
|
1555
|
+
/**
|
|
1556
|
+
* Describes the settings that can be provided to the Calendar constructor.
|
|
1557
|
+
*/
|
|
1556
1558
|
export interface $CalendarSettings extends $ControlSettings {
|
|
1557
1559
|
/**
|
|
1558
1560
|
* If set, interval selection is allowed
|
|
@@ -1811,27 +1813,48 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1811
1813
|
weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
|
|
1812
1814
|
}
|
|
1813
1815
|
|
|
1816
|
+
/**
|
|
1817
|
+
* Parameters of the Calendar#cancel event.
|
|
1818
|
+
*/
|
|
1814
1819
|
export interface Calendar$CancelEventParameters {}
|
|
1815
1820
|
|
|
1821
|
+
/**
|
|
1822
|
+
* Event object of the Calendar#cancel event.
|
|
1823
|
+
*/
|
|
1816
1824
|
export type Calendar$CancelEvent = Event<
|
|
1817
1825
|
Calendar$CancelEventParameters,
|
|
1818
1826
|
Calendar
|
|
1819
1827
|
>;
|
|
1820
1828
|
|
|
1829
|
+
/**
|
|
1830
|
+
* Parameters of the Calendar#select event.
|
|
1831
|
+
*/
|
|
1821
1832
|
export interface Calendar$SelectEventParameters {}
|
|
1822
1833
|
|
|
1834
|
+
/**
|
|
1835
|
+
* Event object of the Calendar#select event.
|
|
1836
|
+
*/
|
|
1823
1837
|
export type Calendar$SelectEvent = Event<
|
|
1824
1838
|
Calendar$SelectEventParameters,
|
|
1825
1839
|
Calendar
|
|
1826
1840
|
>;
|
|
1827
1841
|
|
|
1842
|
+
/**
|
|
1843
|
+
* Parameters of the Calendar#startDateChange event.
|
|
1844
|
+
*/
|
|
1828
1845
|
export interface Calendar$StartDateChangeEventParameters {}
|
|
1829
1846
|
|
|
1847
|
+
/**
|
|
1848
|
+
* Event object of the Calendar#startDateChange event.
|
|
1849
|
+
*/
|
|
1830
1850
|
export type Calendar$StartDateChangeEvent = Event<
|
|
1831
1851
|
Calendar$StartDateChangeEventParameters,
|
|
1832
1852
|
Calendar
|
|
1833
1853
|
>;
|
|
1834
1854
|
|
|
1855
|
+
/**
|
|
1856
|
+
* Parameters of the Calendar#weekNumberSelect event.
|
|
1857
|
+
*/
|
|
1835
1858
|
export interface Calendar$WeekNumberSelectEventParameters {
|
|
1836
1859
|
/**
|
|
1837
1860
|
* The selected week number.
|
|
@@ -1844,6 +1867,9 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1844
1867
|
weekDays?: DateRange;
|
|
1845
1868
|
}
|
|
1846
1869
|
|
|
1870
|
+
/**
|
|
1871
|
+
* Event object of the Calendar#weekNumberSelect event.
|
|
1872
|
+
*/
|
|
1847
1873
|
export type Calendar$WeekNumberSelectEvent = Event<
|
|
1848
1874
|
Calendar$WeekNumberSelectEventParameters,
|
|
1849
1875
|
Calendar
|
|
@@ -2081,7 +2107,9 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
2081
2107
|
oStartDate: Date | UI5Date
|
|
2082
2108
|
): this;
|
|
2083
2109
|
}
|
|
2084
|
-
|
|
2110
|
+
/**
|
|
2111
|
+
* Describes the settings that can be provided to the DatesRow constructor.
|
|
2112
|
+
*/
|
|
2085
2113
|
export interface $DatesRowSettings extends $MonthSettings {
|
|
2086
2114
|
/**
|
|
2087
2115
|
* Start date of the row If in rendering phase the date property is not in the range startDate + days, it
|
|
@@ -3098,7 +3126,9 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
3098
3126
|
bVisibleCurrentDateButton?: boolean
|
|
3099
3127
|
): this;
|
|
3100
3128
|
}
|
|
3101
|
-
|
|
3129
|
+
/**
|
|
3130
|
+
* Describes the settings that can be provided to the Header constructor.
|
|
3131
|
+
*/
|
|
3102
3132
|
export interface $HeaderSettings extends $ControlSettings {
|
|
3103
3133
|
/**
|
|
3104
3134
|
* Text of the first button (normally day)
|
|
@@ -3228,43 +3258,79 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
3228
3258
|
pressButton2?: (oEvent: Event) => void;
|
|
3229
3259
|
}
|
|
3230
3260
|
|
|
3261
|
+
/**
|
|
3262
|
+
* Parameters of the Header#pressButton0 event.
|
|
3263
|
+
*/
|
|
3231
3264
|
export interface Header$PressButton0EventParameters {}
|
|
3232
3265
|
|
|
3266
|
+
/**
|
|
3267
|
+
* Event object of the Header#pressButton0 event.
|
|
3268
|
+
*/
|
|
3233
3269
|
export type Header$PressButton0Event = Event<
|
|
3234
3270
|
Header$PressButton0EventParameters,
|
|
3235
3271
|
Header
|
|
3236
3272
|
>;
|
|
3237
3273
|
|
|
3274
|
+
/**
|
|
3275
|
+
* Parameters of the Header#pressButton1 event.
|
|
3276
|
+
*/
|
|
3238
3277
|
export interface Header$PressButton1EventParameters {}
|
|
3239
3278
|
|
|
3279
|
+
/**
|
|
3280
|
+
* Event object of the Header#pressButton1 event.
|
|
3281
|
+
*/
|
|
3240
3282
|
export type Header$PressButton1Event = Event<
|
|
3241
3283
|
Header$PressButton1EventParameters,
|
|
3242
3284
|
Header
|
|
3243
3285
|
>;
|
|
3244
3286
|
|
|
3287
|
+
/**
|
|
3288
|
+
* Parameters of the Header#pressButton2 event.
|
|
3289
|
+
*/
|
|
3245
3290
|
export interface Header$PressButton2EventParameters {}
|
|
3246
3291
|
|
|
3292
|
+
/**
|
|
3293
|
+
* Event object of the Header#pressButton2 event.
|
|
3294
|
+
*/
|
|
3247
3295
|
export type Header$PressButton2Event = Event<
|
|
3248
3296
|
Header$PressButton2EventParameters,
|
|
3249
3297
|
Header
|
|
3250
3298
|
>;
|
|
3251
3299
|
|
|
3300
|
+
/**
|
|
3301
|
+
* Parameters of the Header#pressCurrentDate event.
|
|
3302
|
+
*/
|
|
3252
3303
|
export interface Header$PressCurrentDateEventParameters {}
|
|
3253
3304
|
|
|
3305
|
+
/**
|
|
3306
|
+
* Event object of the Header#pressCurrentDate event.
|
|
3307
|
+
*/
|
|
3254
3308
|
export type Header$PressCurrentDateEvent = Event<
|
|
3255
3309
|
Header$PressCurrentDateEventParameters,
|
|
3256
3310
|
Header
|
|
3257
3311
|
>;
|
|
3258
3312
|
|
|
3313
|
+
/**
|
|
3314
|
+
* Parameters of the Header#pressNext event.
|
|
3315
|
+
*/
|
|
3259
3316
|
export interface Header$PressNextEventParameters {}
|
|
3260
3317
|
|
|
3318
|
+
/**
|
|
3319
|
+
* Event object of the Header#pressNext event.
|
|
3320
|
+
*/
|
|
3261
3321
|
export type Header$PressNextEvent = Event<
|
|
3262
3322
|
Header$PressNextEventParameters,
|
|
3263
3323
|
Header
|
|
3264
3324
|
>;
|
|
3265
3325
|
|
|
3326
|
+
/**
|
|
3327
|
+
* Parameters of the Header#pressPrevious event.
|
|
3328
|
+
*/
|
|
3266
3329
|
export interface Header$PressPreviousEventParameters {}
|
|
3267
3330
|
|
|
3331
|
+
/**
|
|
3332
|
+
* Event object of the Header#pressPrevious event.
|
|
3333
|
+
*/
|
|
3268
3334
|
export type Header$PressPreviousEvent = Event<
|
|
3269
3335
|
Header$PressPreviousEventParameters,
|
|
3270
3336
|
Header
|
|
@@ -4299,7 +4365,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4299
4365
|
sWidth?: CSSSize
|
|
4300
4366
|
): this;
|
|
4301
4367
|
}
|
|
4302
|
-
|
|
4368
|
+
/**
|
|
4369
|
+
* Describes the settings that can be provided to the Month constructor.
|
|
4370
|
+
*/
|
|
4303
4371
|
export interface $MonthSettings extends $ControlSettings {
|
|
4304
4372
|
/**
|
|
4305
4373
|
* A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
|
|
@@ -4483,6 +4551,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4483
4551
|
weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
|
|
4484
4552
|
}
|
|
4485
4553
|
|
|
4554
|
+
/**
|
|
4555
|
+
* Parameters of the Month#focus event.
|
|
4556
|
+
*/
|
|
4486
4557
|
export interface Month$FocusEventParameters {
|
|
4487
4558
|
/**
|
|
4488
4559
|
* focused date
|
|
@@ -4500,12 +4571,24 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4500
4571
|
restoreOldDate?: boolean;
|
|
4501
4572
|
}
|
|
4502
4573
|
|
|
4574
|
+
/**
|
|
4575
|
+
* Event object of the Month#focus event.
|
|
4576
|
+
*/
|
|
4503
4577
|
export type Month$FocusEvent = Event<Month$FocusEventParameters, Month>;
|
|
4504
4578
|
|
|
4579
|
+
/**
|
|
4580
|
+
* Parameters of the Month#select event.
|
|
4581
|
+
*/
|
|
4505
4582
|
export interface Month$SelectEventParameters {}
|
|
4506
4583
|
|
|
4584
|
+
/**
|
|
4585
|
+
* Event object of the Month#select event.
|
|
4586
|
+
*/
|
|
4507
4587
|
export type Month$SelectEvent = Event<Month$SelectEventParameters, Month>;
|
|
4508
4588
|
|
|
4589
|
+
/**
|
|
4590
|
+
* Parameters of the Month#weekNumberSelect event.
|
|
4591
|
+
*/
|
|
4509
4592
|
export interface Month$WeekNumberSelectEventParameters {
|
|
4510
4593
|
/**
|
|
4511
4594
|
* The selected week number.
|
|
@@ -4520,6 +4603,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4520
4603
|
weekDays?: DateRange;
|
|
4521
4604
|
}
|
|
4522
4605
|
|
|
4606
|
+
/**
|
|
4607
|
+
* Event object of the Month#weekNumberSelect event.
|
|
4608
|
+
*/
|
|
4523
4609
|
export type Month$WeekNumberSelectEvent = Event<
|
|
4524
4610
|
Month$WeekNumberSelectEventParameters,
|
|
4525
4611
|
Month
|
|
@@ -5116,7 +5202,9 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
5116
5202
|
sSecondaryCalendarType: CalendarType
|
|
5117
5203
|
): this;
|
|
5118
5204
|
}
|
|
5119
|
-
|
|
5205
|
+
/**
|
|
5206
|
+
* Describes the settings that can be provided to the MonthPicker constructor.
|
|
5207
|
+
*/
|
|
5120
5208
|
export interface $MonthPickerSettings extends $ControlSettings {
|
|
5121
5209
|
/**
|
|
5122
5210
|
* The month is initial focused and selected The value must be between 0 and 11
|
|
@@ -5193,15 +5281,27 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
5193
5281
|
pageChange?: (oEvent: Event) => void;
|
|
5194
5282
|
}
|
|
5195
5283
|
|
|
5284
|
+
/**
|
|
5285
|
+
* Parameters of the MonthPicker#pageChange event.
|
|
5286
|
+
*/
|
|
5196
5287
|
export interface MonthPicker$PageChangeEventParameters {}
|
|
5197
5288
|
|
|
5289
|
+
/**
|
|
5290
|
+
* Event object of the MonthPicker#pageChange event.
|
|
5291
|
+
*/
|
|
5198
5292
|
export type MonthPicker$PageChangeEvent = Event<
|
|
5199
5293
|
MonthPicker$PageChangeEventParameters,
|
|
5200
5294
|
MonthPicker
|
|
5201
5295
|
>;
|
|
5202
5296
|
|
|
5297
|
+
/**
|
|
5298
|
+
* Parameters of the MonthPicker#select event.
|
|
5299
|
+
*/
|
|
5203
5300
|
export interface MonthPicker$SelectEventParameters {}
|
|
5204
5301
|
|
|
5302
|
+
/**
|
|
5303
|
+
* Event object of the MonthPicker#select event.
|
|
5304
|
+
*/
|
|
5205
5305
|
export type MonthPicker$SelectEvent = Event<
|
|
5206
5306
|
MonthPicker$SelectEventParameters,
|
|
5207
5307
|
MonthPicker
|
|
@@ -5932,7 +6032,9 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5932
6032
|
oStartDate: Date | UI5Date
|
|
5933
6033
|
): this;
|
|
5934
6034
|
}
|
|
5935
|
-
|
|
6035
|
+
/**
|
|
6036
|
+
* Describes the settings that can be provided to the MonthsRow constructor.
|
|
6037
|
+
*/
|
|
5936
6038
|
export interface $MonthsRowSettings extends $ControlSettings {
|
|
5937
6039
|
/**
|
|
5938
6040
|
* A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
|
|
@@ -6035,6 +6137,9 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
6035
6137
|
focus?: (oEvent: MonthsRow$FocusEvent) => void;
|
|
6036
6138
|
}
|
|
6037
6139
|
|
|
6140
|
+
/**
|
|
6141
|
+
* Parameters of the MonthsRow#focus event.
|
|
6142
|
+
*/
|
|
6038
6143
|
export interface MonthsRow$FocusEventParameters {
|
|
6039
6144
|
/**
|
|
6040
6145
|
* First date, as UI5Date or JavaScript Date object, of the month that is focused.
|
|
@@ -6047,13 +6152,22 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
6047
6152
|
notVisible?: boolean;
|
|
6048
6153
|
}
|
|
6049
6154
|
|
|
6155
|
+
/**
|
|
6156
|
+
* Event object of the MonthsRow#focus event.
|
|
6157
|
+
*/
|
|
6050
6158
|
export type MonthsRow$FocusEvent = Event<
|
|
6051
6159
|
MonthsRow$FocusEventParameters,
|
|
6052
6160
|
MonthsRow
|
|
6053
6161
|
>;
|
|
6054
6162
|
|
|
6163
|
+
/**
|
|
6164
|
+
* Parameters of the MonthsRow#select event.
|
|
6165
|
+
*/
|
|
6055
6166
|
export interface MonthsRow$SelectEventParameters {}
|
|
6056
6167
|
|
|
6168
|
+
/**
|
|
6169
|
+
* Event object of the MonthsRow#select event.
|
|
6170
|
+
*/
|
|
6057
6171
|
export type MonthsRow$SelectEvent = Event<
|
|
6058
6172
|
MonthsRow$SelectEventParameters,
|
|
6059
6173
|
MonthsRow
|
|
@@ -6817,7 +6931,9 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6817
6931
|
oStartDate: Date | UI5Date
|
|
6818
6932
|
): this;
|
|
6819
6933
|
}
|
|
6820
|
-
|
|
6934
|
+
/**
|
|
6935
|
+
* Describes the settings that can be provided to the TimesRow constructor.
|
|
6936
|
+
*/
|
|
6821
6937
|
export interface $TimesRowSettings extends $ControlSettings {
|
|
6822
6938
|
/**
|
|
6823
6939
|
* A date as UI5Date or JavaScript Date object. The month including this date is rendered and this date
|
|
@@ -6925,6 +7041,9 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6925
7041
|
focus?: (oEvent: TimesRow$FocusEvent) => void;
|
|
6926
7042
|
}
|
|
6927
7043
|
|
|
7044
|
+
/**
|
|
7045
|
+
* Parameters of the TimesRow#focus event.
|
|
7046
|
+
*/
|
|
6928
7047
|
export interface TimesRow$FocusEventParameters {
|
|
6929
7048
|
/**
|
|
6930
7049
|
* date, as UI5Date or JavaScript Date object, of the focused time.
|
|
@@ -6937,13 +7056,22 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6937
7056
|
notVisible?: boolean;
|
|
6938
7057
|
}
|
|
6939
7058
|
|
|
7059
|
+
/**
|
|
7060
|
+
* Event object of the TimesRow#focus event.
|
|
7061
|
+
*/
|
|
6940
7062
|
export type TimesRow$FocusEvent = Event<
|
|
6941
7063
|
TimesRow$FocusEventParameters,
|
|
6942
7064
|
TimesRow
|
|
6943
7065
|
>;
|
|
6944
7066
|
|
|
7067
|
+
/**
|
|
7068
|
+
* Parameters of the TimesRow#select event.
|
|
7069
|
+
*/
|
|
6945
7070
|
export interface TimesRow$SelectEventParameters {}
|
|
6946
7071
|
|
|
7072
|
+
/**
|
|
7073
|
+
* Event object of the TimesRow#select event.
|
|
7074
|
+
*/
|
|
6947
7075
|
export type TimesRow$SelectEvent = Event<
|
|
6948
7076
|
TimesRow$SelectEventParameters,
|
|
6949
7077
|
TimesRow
|
|
@@ -7497,7 +7625,9 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7497
7625
|
iYears?: int
|
|
7498
7626
|
): this;
|
|
7499
7627
|
}
|
|
7500
|
-
|
|
7628
|
+
/**
|
|
7629
|
+
* Describes the settings that can be provided to the YearPicker constructor.
|
|
7630
|
+
*/
|
|
7501
7631
|
export interface $YearPickerSettings extends $ControlSettings {
|
|
7502
7632
|
/**
|
|
7503
7633
|
* The year is initial focused and selected The value must be between 0 and 9999
|
|
@@ -7575,15 +7705,27 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7575
7705
|
pageChange?: (oEvent: Event) => void;
|
|
7576
7706
|
}
|
|
7577
7707
|
|
|
7708
|
+
/**
|
|
7709
|
+
* Parameters of the YearPicker#pageChange event.
|
|
7710
|
+
*/
|
|
7578
7711
|
export interface YearPicker$PageChangeEventParameters {}
|
|
7579
7712
|
|
|
7713
|
+
/**
|
|
7714
|
+
* Event object of the YearPicker#pageChange event.
|
|
7715
|
+
*/
|
|
7580
7716
|
export type YearPicker$PageChangeEvent = Event<
|
|
7581
7717
|
YearPicker$PageChangeEventParameters,
|
|
7582
7718
|
YearPicker
|
|
7583
7719
|
>;
|
|
7584
7720
|
|
|
7721
|
+
/**
|
|
7722
|
+
* Parameters of the YearPicker#select event.
|
|
7723
|
+
*/
|
|
7585
7724
|
export interface YearPicker$SelectEventParameters {}
|
|
7586
7725
|
|
|
7726
|
+
/**
|
|
7727
|
+
* Event object of the YearPicker#select event.
|
|
7728
|
+
*/
|
|
7587
7729
|
export type YearPicker$SelectEvent = Event<
|
|
7588
7730
|
YearPicker$SelectEventParameters,
|
|
7589
7731
|
YearPicker
|
|
@@ -7991,7 +8133,9 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7991
8133
|
sTitle: string
|
|
7992
8134
|
): this;
|
|
7993
8135
|
}
|
|
7994
|
-
|
|
8136
|
+
/**
|
|
8137
|
+
* Describes the settings that can be provided to the CalendarAppointment constructor.
|
|
8138
|
+
*/
|
|
7995
8139
|
export interface $CalendarAppointmentSettings extends $DateTypeRangeSettings {
|
|
7996
8140
|
/**
|
|
7997
8141
|
* Title of the appointment.
|
|
@@ -8296,7 +8440,9 @@ declare module "sap/ui/unified/CalendarDateInterval" {
|
|
|
8296
8440
|
oStartDate: Date | UI5Date
|
|
8297
8441
|
): this;
|
|
8298
8442
|
}
|
|
8299
|
-
|
|
8443
|
+
/**
|
|
8444
|
+
* Describes the settings that can be provided to the CalendarDateInterval constructor.
|
|
8445
|
+
*/
|
|
8300
8446
|
export interface $CalendarDateIntervalSettings extends $CalendarSettings {
|
|
8301
8447
|
/**
|
|
8302
8448
|
* Start date of the Interval
|
|
@@ -8566,7 +8712,9 @@ declare module "sap/ui/unified/CalendarLegend" {
|
|
|
8566
8712
|
sStandardItems?: string[]
|
|
8567
8713
|
): this;
|
|
8568
8714
|
}
|
|
8569
|
-
|
|
8715
|
+
/**
|
|
8716
|
+
* Describes the settings that can be provided to the CalendarLegend constructor.
|
|
8717
|
+
*/
|
|
8570
8718
|
export interface $CalendarLegendSettings extends $ControlSettings {
|
|
8571
8719
|
/**
|
|
8572
8720
|
* Determines the standard items related to the calendar days, such as, today, selected, working and non-working.
|
|
@@ -8758,7 +8906,9 @@ declare module "sap/ui/unified/CalendarLegendItem" {
|
|
|
8758
8906
|
sType?: CalendarDayType | keyof typeof CalendarDayType
|
|
8759
8907
|
): this;
|
|
8760
8908
|
}
|
|
8761
|
-
|
|
8909
|
+
/**
|
|
8910
|
+
* Describes the settings that can be provided to the CalendarLegendItem constructor.
|
|
8911
|
+
*/
|
|
8762
8912
|
export interface $CalendarLegendItemSettings extends $ElementSettings {
|
|
8763
8913
|
/**
|
|
8764
8914
|
* Text to be displayed for the item.
|
|
@@ -9595,7 +9745,9 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
9595
9745
|
sWidth?: CSSSize
|
|
9596
9746
|
): this;
|
|
9597
9747
|
}
|
|
9598
|
-
|
|
9748
|
+
/**
|
|
9749
|
+
* Describes the settings that can be provided to the CalendarMonthInterval constructor.
|
|
9750
|
+
*/
|
|
9599
9751
|
export interface $CalendarMonthIntervalSettings extends $ControlSettings {
|
|
9600
9752
|
/**
|
|
9601
9753
|
* Width of the `CalendarMonthInterval`. The width of the single months depends on this width.
|
|
@@ -9714,22 +9866,40 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
9714
9866
|
startDateChange?: (oEvent: Event) => void;
|
|
9715
9867
|
}
|
|
9716
9868
|
|
|
9869
|
+
/**
|
|
9870
|
+
* Parameters of the CalendarMonthInterval#cancel event.
|
|
9871
|
+
*/
|
|
9717
9872
|
export interface CalendarMonthInterval$CancelEventParameters {}
|
|
9718
9873
|
|
|
9874
|
+
/**
|
|
9875
|
+
* Event object of the CalendarMonthInterval#cancel event.
|
|
9876
|
+
*/
|
|
9719
9877
|
export type CalendarMonthInterval$CancelEvent = Event<
|
|
9720
9878
|
CalendarMonthInterval$CancelEventParameters,
|
|
9721
9879
|
CalendarMonthInterval
|
|
9722
9880
|
>;
|
|
9723
9881
|
|
|
9882
|
+
/**
|
|
9883
|
+
* Parameters of the CalendarMonthInterval#select event.
|
|
9884
|
+
*/
|
|
9724
9885
|
export interface CalendarMonthInterval$SelectEventParameters {}
|
|
9725
9886
|
|
|
9887
|
+
/**
|
|
9888
|
+
* Event object of the CalendarMonthInterval#select event.
|
|
9889
|
+
*/
|
|
9726
9890
|
export type CalendarMonthInterval$SelectEvent = Event<
|
|
9727
9891
|
CalendarMonthInterval$SelectEventParameters,
|
|
9728
9892
|
CalendarMonthInterval
|
|
9729
9893
|
>;
|
|
9730
9894
|
|
|
9895
|
+
/**
|
|
9896
|
+
* Parameters of the CalendarMonthInterval#startDateChange event.
|
|
9897
|
+
*/
|
|
9731
9898
|
export interface CalendarMonthInterval$StartDateChangeEventParameters {}
|
|
9732
9899
|
|
|
9900
|
+
/**
|
|
9901
|
+
* Event object of the CalendarMonthInterval#startDateChange event.
|
|
9902
|
+
*/
|
|
9733
9903
|
export type CalendarMonthInterval$StartDateChangeEvent = Event<
|
|
9734
9904
|
CalendarMonthInterval$StartDateChangeEventParameters,
|
|
9735
9905
|
CalendarMonthInterval
|
|
@@ -11077,7 +11247,9 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11077
11247
|
*/
|
|
11078
11248
|
updateCurrentTimeVisualization(): this;
|
|
11079
11249
|
}
|
|
11080
|
-
|
|
11250
|
+
/**
|
|
11251
|
+
* Describes the settings that can be provided to the CalendarRow constructor.
|
|
11252
|
+
*/
|
|
11081
11253
|
export interface $CalendarRowSettings extends $ControlSettings {
|
|
11082
11254
|
/**
|
|
11083
11255
|
* Start date, as UI5Date or JavaScript Date object, of the row. As default, the current date is used.
|
|
@@ -11317,6 +11489,9 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11317
11489
|
intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
|
|
11318
11490
|
}
|
|
11319
11491
|
|
|
11492
|
+
/**
|
|
11493
|
+
* Parameters of the CalendarRow#intervalSelect event.
|
|
11494
|
+
*/
|
|
11320
11495
|
export interface CalendarRow$IntervalSelectEventParameters {
|
|
11321
11496
|
/**
|
|
11322
11497
|
* Interval start date as UI5Date or JavaScript Date object
|
|
@@ -11334,11 +11509,17 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11334
11509
|
subInterval?: boolean;
|
|
11335
11510
|
}
|
|
11336
11511
|
|
|
11512
|
+
/**
|
|
11513
|
+
* Event object of the CalendarRow#intervalSelect event.
|
|
11514
|
+
*/
|
|
11337
11515
|
export type CalendarRow$IntervalSelectEvent = Event<
|
|
11338
11516
|
CalendarRow$IntervalSelectEventParameters,
|
|
11339
11517
|
CalendarRow
|
|
11340
11518
|
>;
|
|
11341
11519
|
|
|
11520
|
+
/**
|
|
11521
|
+
* Parameters of the CalendarRow#leaveRow event.
|
|
11522
|
+
*/
|
|
11342
11523
|
export interface CalendarRow$LeaveRowEventParameters {
|
|
11343
11524
|
/**
|
|
11344
11525
|
* The type of the event that triggers this `leaveRow`
|
|
@@ -11346,11 +11527,17 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11346
11527
|
type?: string;
|
|
11347
11528
|
}
|
|
11348
11529
|
|
|
11530
|
+
/**
|
|
11531
|
+
* Event object of the CalendarRow#leaveRow event.
|
|
11532
|
+
*/
|
|
11349
11533
|
export type CalendarRow$LeaveRowEvent = Event<
|
|
11350
11534
|
CalendarRow$LeaveRowEventParameters,
|
|
11351
11535
|
CalendarRow
|
|
11352
11536
|
>;
|
|
11353
11537
|
|
|
11538
|
+
/**
|
|
11539
|
+
* Parameters of the CalendarRow#select event.
|
|
11540
|
+
*/
|
|
11354
11541
|
export interface CalendarRow$SelectEventParameters {
|
|
11355
11542
|
/**
|
|
11356
11543
|
* selected appointment
|
|
@@ -11374,13 +11561,22 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11374
11561
|
domRefId?: string;
|
|
11375
11562
|
}
|
|
11376
11563
|
|
|
11564
|
+
/**
|
|
11565
|
+
* Event object of the CalendarRow#select event.
|
|
11566
|
+
*/
|
|
11377
11567
|
export type CalendarRow$SelectEvent = Event<
|
|
11378
11568
|
CalendarRow$SelectEventParameters,
|
|
11379
11569
|
CalendarRow
|
|
11380
11570
|
>;
|
|
11381
11571
|
|
|
11572
|
+
/**
|
|
11573
|
+
* Parameters of the CalendarRow#startDateChange event.
|
|
11574
|
+
*/
|
|
11382
11575
|
export interface CalendarRow$StartDateChangeEventParameters {}
|
|
11383
11576
|
|
|
11577
|
+
/**
|
|
11578
|
+
* Event object of the CalendarRow#startDateChange event.
|
|
11579
|
+
*/
|
|
11384
11580
|
export type CalendarRow$StartDateChangeEvent = Event<
|
|
11385
11581
|
CalendarRow$StartDateChangeEventParameters,
|
|
11386
11582
|
CalendarRow
|
|
@@ -12227,7 +12423,9 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
12227
12423
|
sWidth?: CSSSize
|
|
12228
12424
|
): this;
|
|
12229
12425
|
}
|
|
12230
|
-
|
|
12426
|
+
/**
|
|
12427
|
+
* Describes the settings that can be provided to the CalendarTimeInterval constructor.
|
|
12428
|
+
*/
|
|
12231
12429
|
export interface $CalendarTimeIntervalSettings extends $ControlSettings {
|
|
12232
12430
|
/**
|
|
12233
12431
|
* Width of the `CalendarTimeInterval`. The width of the single months depends on this width.
|
|
@@ -12352,22 +12550,40 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
12352
12550
|
startDateChange?: (oEvent: Event) => void;
|
|
12353
12551
|
}
|
|
12354
12552
|
|
|
12553
|
+
/**
|
|
12554
|
+
* Parameters of the CalendarTimeInterval#cancel event.
|
|
12555
|
+
*/
|
|
12355
12556
|
export interface CalendarTimeInterval$CancelEventParameters {}
|
|
12356
12557
|
|
|
12558
|
+
/**
|
|
12559
|
+
* Event object of the CalendarTimeInterval#cancel event.
|
|
12560
|
+
*/
|
|
12357
12561
|
export type CalendarTimeInterval$CancelEvent = Event<
|
|
12358
12562
|
CalendarTimeInterval$CancelEventParameters,
|
|
12359
12563
|
CalendarTimeInterval
|
|
12360
12564
|
>;
|
|
12361
12565
|
|
|
12566
|
+
/**
|
|
12567
|
+
* Parameters of the CalendarTimeInterval#select event.
|
|
12568
|
+
*/
|
|
12362
12569
|
export interface CalendarTimeInterval$SelectEventParameters {}
|
|
12363
12570
|
|
|
12571
|
+
/**
|
|
12572
|
+
* Event object of the CalendarTimeInterval#select event.
|
|
12573
|
+
*/
|
|
12364
12574
|
export type CalendarTimeInterval$SelectEvent = Event<
|
|
12365
12575
|
CalendarTimeInterval$SelectEventParameters,
|
|
12366
12576
|
CalendarTimeInterval
|
|
12367
12577
|
>;
|
|
12368
12578
|
|
|
12579
|
+
/**
|
|
12580
|
+
* Parameters of the CalendarTimeInterval#startDateChange event.
|
|
12581
|
+
*/
|
|
12369
12582
|
export interface CalendarTimeInterval$StartDateChangeEventParameters {}
|
|
12370
12583
|
|
|
12584
|
+
/**
|
|
12585
|
+
* Event object of the CalendarTimeInterval#startDateChange event.
|
|
12586
|
+
*/
|
|
12371
12587
|
export type CalendarTimeInterval$StartDateChangeEvent = Event<
|
|
12372
12588
|
CalendarTimeInterval$StartDateChangeEventParameters,
|
|
12373
12589
|
CalendarTimeInterval
|
|
@@ -12748,7 +12964,9 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12748
12964
|
bSuppressInvalidate: boolean
|
|
12749
12965
|
): void;
|
|
12750
12966
|
}
|
|
12751
|
-
|
|
12967
|
+
/**
|
|
12968
|
+
* Describes the settings that can be provided to the ColorPicker constructor.
|
|
12969
|
+
*/
|
|
12752
12970
|
export interface $ColorPickerSettings extends $ControlSettings {
|
|
12753
12971
|
/**
|
|
12754
12972
|
* Determines the input parameter that can be a string of type HEX, RGB, HSV, or a CSS color name:
|
|
@@ -12805,6 +13023,9 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12805
13023
|
liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
|
|
12806
13024
|
}
|
|
12807
13025
|
|
|
13026
|
+
/**
|
|
13027
|
+
* Parameters of the ColorPicker#change event.
|
|
13028
|
+
*/
|
|
12808
13029
|
export interface ColorPicker$ChangeEventParameters {
|
|
12809
13030
|
/**
|
|
12810
13031
|
* Parameter containing the RED value (0-255).
|
|
@@ -12852,11 +13073,17 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12852
13073
|
alpha?: string;
|
|
12853
13074
|
}
|
|
12854
13075
|
|
|
13076
|
+
/**
|
|
13077
|
+
* Event object of the ColorPicker#change event.
|
|
13078
|
+
*/
|
|
12855
13079
|
export type ColorPicker$ChangeEvent = Event<
|
|
12856
13080
|
ColorPicker$ChangeEventParameters,
|
|
12857
13081
|
ColorPicker
|
|
12858
13082
|
>;
|
|
12859
13083
|
|
|
13084
|
+
/**
|
|
13085
|
+
* Parameters of the ColorPicker#liveChange event.
|
|
13086
|
+
*/
|
|
12860
13087
|
export interface ColorPicker$LiveChangeEventParameters {
|
|
12861
13088
|
/**
|
|
12862
13089
|
* Parameter containing the RED value (0-255).
|
|
@@ -12904,6 +13131,9 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12904
13131
|
alpha?: string;
|
|
12905
13132
|
}
|
|
12906
13133
|
|
|
13134
|
+
/**
|
|
13135
|
+
* Event object of the ColorPicker#liveChange event.
|
|
13136
|
+
*/
|
|
12907
13137
|
export type ColorPicker$LiveChangeEvent = Event<
|
|
12908
13138
|
ColorPicker$LiveChangeEventParameters,
|
|
12909
13139
|
ColorPicker
|
|
@@ -13301,7 +13531,9 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13301
13531
|
sMode?: ColorPickerMode | keyof typeof ColorPickerMode
|
|
13302
13532
|
): this;
|
|
13303
13533
|
}
|
|
13304
|
-
|
|
13534
|
+
/**
|
|
13535
|
+
* Describes the settings that can be provided to the ColorPickerPopover constructor.
|
|
13536
|
+
*/
|
|
13305
13537
|
export interface $ColorPickerPopoverSettings extends $ControlSettings {
|
|
13306
13538
|
/**
|
|
13307
13539
|
* Determines the input parameter that can be a string of type HEX, RGB, HSV, or a CSS color name:
|
|
@@ -13350,6 +13582,9 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13350
13582
|
liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
|
|
13351
13583
|
}
|
|
13352
13584
|
|
|
13585
|
+
/**
|
|
13586
|
+
* Parameters of the ColorPickerPopover#change event.
|
|
13587
|
+
*/
|
|
13353
13588
|
export interface ColorPickerPopover$ChangeEventParameters {
|
|
13354
13589
|
/**
|
|
13355
13590
|
* Parameter containing the RED value (0-255).
|
|
@@ -13397,11 +13632,17 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13397
13632
|
alpha?: string;
|
|
13398
13633
|
}
|
|
13399
13634
|
|
|
13635
|
+
/**
|
|
13636
|
+
* Event object of the ColorPickerPopover#change event.
|
|
13637
|
+
*/
|
|
13400
13638
|
export type ColorPickerPopover$ChangeEvent = Event<
|
|
13401
13639
|
ColorPickerPopover$ChangeEventParameters,
|
|
13402
13640
|
ColorPickerPopover
|
|
13403
13641
|
>;
|
|
13404
13642
|
|
|
13643
|
+
/**
|
|
13644
|
+
* Parameters of the ColorPickerPopover#liveChange event.
|
|
13645
|
+
*/
|
|
13405
13646
|
export interface ColorPickerPopover$LiveChangeEventParameters {
|
|
13406
13647
|
/**
|
|
13407
13648
|
* Parameter containing the RED value (0-255).
|
|
@@ -13449,6 +13690,9 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13449
13690
|
alpha?: string;
|
|
13450
13691
|
}
|
|
13451
13692
|
|
|
13693
|
+
/**
|
|
13694
|
+
* Event object of the ColorPickerPopover#liveChange event.
|
|
13695
|
+
*/
|
|
13452
13696
|
export type ColorPickerPopover$LiveChangeEvent = Event<
|
|
13453
13697
|
ColorPickerPopover$LiveChangeEventParameters,
|
|
13454
13698
|
ColorPickerPopover
|
|
@@ -13469,7 +13713,7 @@ declare module "sap/ui/unified/ContentSwitcher" {
|
|
|
13469
13713
|
* Switches between two control areas and animates it via CSS transitions
|
|
13470
13714
|
*
|
|
13471
13715
|
* @since 1.16.0
|
|
13472
|
-
* @deprecated (since 1.44.0)
|
|
13716
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
13473
13717
|
* @experimental (since 1.16.0) - API is not yet finished and might change completely
|
|
13474
13718
|
*/
|
|
13475
13719
|
export default class ContentSwitcher extends Control {
|
|
@@ -13759,7 +14003,12 @@ declare module "sap/ui/unified/ContentSwitcher" {
|
|
|
13759
14003
|
*/
|
|
13760
14004
|
switchContent(): void;
|
|
13761
14005
|
}
|
|
13762
|
-
|
|
14006
|
+
/**
|
|
14007
|
+
* Describes the settings that can be provided to the ContentSwitcher constructor.
|
|
14008
|
+
*
|
|
14009
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
14010
|
+
* @experimental (since 1.16.0) - API is not yet finished and might change completely
|
|
14011
|
+
*/
|
|
13763
14012
|
export interface $ContentSwitcherSettings extends $ControlSettings {
|
|
13764
14013
|
/**
|
|
13765
14014
|
* Set the used animation when changing content. This just sets a CSS-class named "sapUiUnifiedACSwitcherAnimation"
|
|
@@ -14028,7 +14277,9 @@ declare module "sap/ui/unified/Currency" {
|
|
|
14028
14277
|
sStringValue?: string
|
|
14029
14278
|
): this;
|
|
14030
14279
|
}
|
|
14031
|
-
|
|
14280
|
+
/**
|
|
14281
|
+
* Describes the settings that can be provided to the Currency constructor.
|
|
14282
|
+
*/
|
|
14032
14283
|
export interface $CurrencySettings extends $ControlSettings {
|
|
14033
14284
|
/**
|
|
14034
14285
|
* Determines the currency value.
|
|
@@ -14207,7 +14458,9 @@ declare module "sap/ui/unified/DateRange" {
|
|
|
14207
14458
|
bInvalidate?: boolean
|
|
14208
14459
|
): this;
|
|
14209
14460
|
}
|
|
14210
|
-
|
|
14461
|
+
/**
|
|
14462
|
+
* Describes the settings that can be provided to the DateRange constructor.
|
|
14463
|
+
*/
|
|
14211
14464
|
export interface $DateRangeSettings extends $ElementSettings {
|
|
14212
14465
|
/**
|
|
14213
14466
|
* Start date for a date range. This must be a UI5Date or JavaScript Date object.
|
|
@@ -14396,7 +14649,9 @@ declare module "sap/ui/unified/DateTypeRange" {
|
|
|
14396
14649
|
sType?: CalendarDayType | keyof typeof CalendarDayType
|
|
14397
14650
|
): this;
|
|
14398
14651
|
}
|
|
14399
|
-
|
|
14652
|
+
/**
|
|
14653
|
+
* Describes the settings that can be provided to the DateTypeRange constructor.
|
|
14654
|
+
*/
|
|
14400
14655
|
export interface $DateTypeRangeSettings extends $DateRangeSettings {
|
|
14401
14656
|
/**
|
|
14402
14657
|
* Type of the date range.
|
|
@@ -16777,7 +17032,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16777
17032
|
bPreProcessFiles?: boolean
|
|
16778
17033
|
): void;
|
|
16779
17034
|
}
|
|
16780
|
-
|
|
17035
|
+
/**
|
|
17036
|
+
* Describes the settings that can be provided to the FileUploader constructor.
|
|
17037
|
+
*/
|
|
16781
17038
|
export interface $FileUploaderSettings extends $ControlSettings {
|
|
16782
17039
|
/**
|
|
16783
17040
|
* Value of the path for file upload.
|
|
@@ -17128,20 +17385,35 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17128
17385
|
afterDialogClose?: (oEvent: Event) => void;
|
|
17129
17386
|
}
|
|
17130
17387
|
|
|
17388
|
+
/**
|
|
17389
|
+
* Parameters of the FileUploader#afterDialogClose event.
|
|
17390
|
+
*/
|
|
17131
17391
|
export interface FileUploader$AfterDialogCloseEventParameters {}
|
|
17132
17392
|
|
|
17393
|
+
/**
|
|
17394
|
+
* Event object of the FileUploader#afterDialogClose event.
|
|
17395
|
+
*/
|
|
17133
17396
|
export type FileUploader$AfterDialogCloseEvent = Event<
|
|
17134
17397
|
FileUploader$AfterDialogCloseEventParameters,
|
|
17135
17398
|
FileUploader
|
|
17136
17399
|
>;
|
|
17137
17400
|
|
|
17401
|
+
/**
|
|
17402
|
+
* Parameters of the FileUploader#beforeDialogOpen event.
|
|
17403
|
+
*/
|
|
17138
17404
|
export interface FileUploader$BeforeDialogOpenEventParameters {}
|
|
17139
17405
|
|
|
17406
|
+
/**
|
|
17407
|
+
* Event object of the FileUploader#beforeDialogOpen event.
|
|
17408
|
+
*/
|
|
17140
17409
|
export type FileUploader$BeforeDialogOpenEvent = Event<
|
|
17141
17410
|
FileUploader$BeforeDialogOpenEventParameters,
|
|
17142
17411
|
FileUploader
|
|
17143
17412
|
>;
|
|
17144
17413
|
|
|
17414
|
+
/**
|
|
17415
|
+
* Parameters of the FileUploader#change event.
|
|
17416
|
+
*/
|
|
17145
17417
|
export interface FileUploader$ChangeEventParameters {
|
|
17146
17418
|
/**
|
|
17147
17419
|
* New file path value.
|
|
@@ -17154,18 +17426,30 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17154
17426
|
files?: object[];
|
|
17155
17427
|
}
|
|
17156
17428
|
|
|
17429
|
+
/**
|
|
17430
|
+
* Event object of the FileUploader#change event.
|
|
17431
|
+
*/
|
|
17157
17432
|
export type FileUploader$ChangeEvent = Event<
|
|
17158
17433
|
FileUploader$ChangeEventParameters,
|
|
17159
17434
|
FileUploader
|
|
17160
17435
|
>;
|
|
17161
17436
|
|
|
17437
|
+
/**
|
|
17438
|
+
* Parameters of the FileUploader#fileAllowed event.
|
|
17439
|
+
*/
|
|
17162
17440
|
export interface FileUploader$FileAllowedEventParameters {}
|
|
17163
17441
|
|
|
17442
|
+
/**
|
|
17443
|
+
* Event object of the FileUploader#fileAllowed event.
|
|
17444
|
+
*/
|
|
17164
17445
|
export type FileUploader$FileAllowedEvent = Event<
|
|
17165
17446
|
FileUploader$FileAllowedEventParameters,
|
|
17166
17447
|
FileUploader
|
|
17167
17448
|
>;
|
|
17168
17449
|
|
|
17450
|
+
/**
|
|
17451
|
+
* Parameters of the FileUploader#fileEmpty event.
|
|
17452
|
+
*/
|
|
17169
17453
|
export interface FileUploader$FileEmptyEventParameters {
|
|
17170
17454
|
/**
|
|
17171
17455
|
* The name of the file to be uploaded.
|
|
@@ -17173,11 +17457,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17173
17457
|
fileName?: string;
|
|
17174
17458
|
}
|
|
17175
17459
|
|
|
17460
|
+
/**
|
|
17461
|
+
* Event object of the FileUploader#fileEmpty event.
|
|
17462
|
+
*/
|
|
17176
17463
|
export type FileUploader$FileEmptyEvent = Event<
|
|
17177
17464
|
FileUploader$FileEmptyEventParameters,
|
|
17178
17465
|
FileUploader
|
|
17179
17466
|
>;
|
|
17180
17467
|
|
|
17468
|
+
/**
|
|
17469
|
+
* Parameters of the FileUploader#filenameLengthExceed event.
|
|
17470
|
+
*/
|
|
17181
17471
|
export interface FileUploader$FilenameLengthExceedEventParameters {
|
|
17182
17472
|
/**
|
|
17183
17473
|
* The filename, which is longer than specified by the value of the property `maximumFilenameLength`.
|
|
@@ -17185,11 +17475,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17185
17475
|
fileName?: string;
|
|
17186
17476
|
}
|
|
17187
17477
|
|
|
17478
|
+
/**
|
|
17479
|
+
* Event object of the FileUploader#filenameLengthExceed event.
|
|
17480
|
+
*/
|
|
17188
17481
|
export type FileUploader$FilenameLengthExceedEvent = Event<
|
|
17189
17482
|
FileUploader$FilenameLengthExceedEventParameters,
|
|
17190
17483
|
FileUploader
|
|
17191
17484
|
>;
|
|
17192
17485
|
|
|
17486
|
+
/**
|
|
17487
|
+
* Parameters of the FileUploader#fileSizeExceed event.
|
|
17488
|
+
*/
|
|
17193
17489
|
export interface FileUploader$FileSizeExceedEventParameters {
|
|
17194
17490
|
/**
|
|
17195
17491
|
* The name of a file to be uploaded.
|
|
@@ -17202,11 +17498,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17202
17498
|
fileSize?: string;
|
|
17203
17499
|
}
|
|
17204
17500
|
|
|
17501
|
+
/**
|
|
17502
|
+
* Event object of the FileUploader#fileSizeExceed event.
|
|
17503
|
+
*/
|
|
17205
17504
|
export type FileUploader$FileSizeExceedEvent = Event<
|
|
17206
17505
|
FileUploader$FileSizeExceedEventParameters,
|
|
17207
17506
|
FileUploader
|
|
17208
17507
|
>;
|
|
17209
17508
|
|
|
17509
|
+
/**
|
|
17510
|
+
* Parameters of the FileUploader#typeMissmatch event.
|
|
17511
|
+
*/
|
|
17210
17512
|
export interface FileUploader$TypeMissmatchEventParameters {
|
|
17211
17513
|
/**
|
|
17212
17514
|
* The name of a file to be uploaded.
|
|
@@ -17224,11 +17526,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17224
17526
|
mimeType?: string;
|
|
17225
17527
|
}
|
|
17226
17528
|
|
|
17529
|
+
/**
|
|
17530
|
+
* Event object of the FileUploader#typeMissmatch event.
|
|
17531
|
+
*/
|
|
17227
17532
|
export type FileUploader$TypeMissmatchEvent = Event<
|
|
17228
17533
|
FileUploader$TypeMissmatchEventParameters,
|
|
17229
17534
|
FileUploader
|
|
17230
17535
|
>;
|
|
17231
17536
|
|
|
17537
|
+
/**
|
|
17538
|
+
* Parameters of the FileUploader#uploadAborted event.
|
|
17539
|
+
*/
|
|
17232
17540
|
export interface FileUploader$UploadAbortedEventParameters {
|
|
17233
17541
|
/**
|
|
17234
17542
|
* The name of a file to be uploaded.
|
|
@@ -17244,11 +17552,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17244
17552
|
requestHeaders?: object[];
|
|
17245
17553
|
}
|
|
17246
17554
|
|
|
17555
|
+
/**
|
|
17556
|
+
* Event object of the FileUploader#uploadAborted event.
|
|
17557
|
+
*/
|
|
17247
17558
|
export type FileUploader$UploadAbortedEvent = Event<
|
|
17248
17559
|
FileUploader$UploadAbortedEventParameters,
|
|
17249
17560
|
FileUploader
|
|
17250
17561
|
>;
|
|
17251
17562
|
|
|
17563
|
+
/**
|
|
17564
|
+
* Parameters of the FileUploader#uploadComplete event.
|
|
17565
|
+
*/
|
|
17252
17566
|
export interface FileUploader$UploadCompleteEventParameters {
|
|
17253
17567
|
/**
|
|
17254
17568
|
* The name of a file to be uploaded.
|
|
@@ -17309,11 +17623,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17309
17623
|
requestHeaders?: object[];
|
|
17310
17624
|
}
|
|
17311
17625
|
|
|
17626
|
+
/**
|
|
17627
|
+
* Event object of the FileUploader#uploadComplete event.
|
|
17628
|
+
*/
|
|
17312
17629
|
export type FileUploader$UploadCompleteEvent = Event<
|
|
17313
17630
|
FileUploader$UploadCompleteEventParameters,
|
|
17314
17631
|
FileUploader
|
|
17315
17632
|
>;
|
|
17316
17633
|
|
|
17634
|
+
/**
|
|
17635
|
+
* Parameters of the FileUploader#uploadProgress event.
|
|
17636
|
+
*/
|
|
17317
17637
|
export interface FileUploader$UploadProgressEventParameters {
|
|
17318
17638
|
/**
|
|
17319
17639
|
* Indicates whether or not the relative upload progress can be calculated out of loaded and total.
|
|
@@ -17344,11 +17664,17 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17344
17664
|
requestHeaders?: object[];
|
|
17345
17665
|
}
|
|
17346
17666
|
|
|
17667
|
+
/**
|
|
17668
|
+
* Event object of the FileUploader#uploadProgress event.
|
|
17669
|
+
*/
|
|
17347
17670
|
export type FileUploader$UploadProgressEvent = Event<
|
|
17348
17671
|
FileUploader$UploadProgressEventParameters,
|
|
17349
17672
|
FileUploader
|
|
17350
17673
|
>;
|
|
17351
17674
|
|
|
17675
|
+
/**
|
|
17676
|
+
* Parameters of the FileUploader#uploadStart event.
|
|
17677
|
+
*/
|
|
17352
17678
|
export interface FileUploader$UploadStartEventParameters {
|
|
17353
17679
|
/**
|
|
17354
17680
|
* The name of a file to be uploaded.
|
|
@@ -17364,6 +17690,9 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17364
17690
|
requestHeaders?: object[];
|
|
17365
17691
|
}
|
|
17366
17692
|
|
|
17693
|
+
/**
|
|
17694
|
+
* Event object of the FileUploader#uploadStart event.
|
|
17695
|
+
*/
|
|
17367
17696
|
export type FileUploader$UploadStartEvent = Event<
|
|
17368
17697
|
FileUploader$UploadStartEventParameters,
|
|
17369
17698
|
FileUploader
|
|
@@ -17517,7 +17846,9 @@ declare module "sap/ui/unified/FileUploaderParameter" {
|
|
|
17517
17846
|
sValue?: string
|
|
17518
17847
|
): this;
|
|
17519
17848
|
}
|
|
17520
|
-
|
|
17849
|
+
/**
|
|
17850
|
+
* Describes the settings that can be provided to the FileUploaderParameter constructor.
|
|
17851
|
+
*/
|
|
17521
17852
|
export interface $FileUploaderParameterSettings extends $ElementSettings {
|
|
17522
17853
|
/**
|
|
17523
17854
|
* The name of the hidden inputfield.
|
|
@@ -17642,7 +17973,9 @@ declare module "sap/ui/unified/FileUploaderXHRSettings" {
|
|
|
17642
17973
|
bWithCredentials?: boolean
|
|
17643
17974
|
): this;
|
|
17644
17975
|
}
|
|
17645
|
-
|
|
17976
|
+
/**
|
|
17977
|
+
* Describes the settings that can be provided to the FileUploaderXHRSettings constructor.
|
|
17978
|
+
*/
|
|
17646
17979
|
export interface $FileUploaderXHRSettingsSettings extends $ElementSettings {
|
|
17647
17980
|
/**
|
|
17648
17981
|
* Determines the value of the `XMLHttpRequest.withCredentials` property
|
|
@@ -18141,7 +18474,9 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18141
18474
|
iPageSize?: int
|
|
18142
18475
|
): this;
|
|
18143
18476
|
}
|
|
18144
|
-
|
|
18477
|
+
/**
|
|
18478
|
+
* Describes the settings that can be provided to the Menu constructor.
|
|
18479
|
+
*/
|
|
18145
18480
|
export interface $MenuSettings extends $ControlSettings {
|
|
18146
18481
|
/**
|
|
18147
18482
|
* When a menu is disabled none of its items can be selected by the user. The enabled property of an item
|
|
@@ -18201,6 +18536,9 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18201
18536
|
itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
|
|
18202
18537
|
}
|
|
18203
18538
|
|
|
18539
|
+
/**
|
|
18540
|
+
* Parameters of the Menu#itemSelect event.
|
|
18541
|
+
*/
|
|
18204
18542
|
export interface Menu$ItemSelectEventParameters {
|
|
18205
18543
|
/**
|
|
18206
18544
|
* The action (item) which was selected by the user.
|
|
@@ -18208,6 +18546,9 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18208
18546
|
item?: MenuItemBase;
|
|
18209
18547
|
}
|
|
18210
18548
|
|
|
18549
|
+
/**
|
|
18550
|
+
* Event object of the Menu#itemSelect event.
|
|
18551
|
+
*/
|
|
18211
18552
|
export type Menu$ItemSelectEvent = Event<
|
|
18212
18553
|
Menu$ItemSelectEventParameters,
|
|
18213
18554
|
Menu
|
|
@@ -18325,6 +18666,20 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
18325
18666
|
* @returns Value of property `icon`
|
|
18326
18667
|
*/
|
|
18327
18668
|
getIcon(): URI;
|
|
18669
|
+
/**
|
|
18670
|
+
* Gets current value of property {@link #getShortcutText shortcutText}.
|
|
18671
|
+
*
|
|
18672
|
+
* Defines the shortcut text that should be displayed on the menu item on non-mobile devices. **Note:**
|
|
18673
|
+
* The text is only displayed and set as а value of the `aria-keyshortcuts` attribute. There is no built-in
|
|
18674
|
+
* functionality that selects the item when the corresponding shortcut is pressed. This should be implemented
|
|
18675
|
+
* by the application developer.
|
|
18676
|
+
*
|
|
18677
|
+
* Default value is `empty string`.
|
|
18678
|
+
*
|
|
18679
|
+
*
|
|
18680
|
+
* @returns Value of property `shortcutText`
|
|
18681
|
+
*/
|
|
18682
|
+
getShortcutText(): string;
|
|
18328
18683
|
/**
|
|
18329
18684
|
* Gets current value of property {@link #getText text}.
|
|
18330
18685
|
*
|
|
@@ -18374,6 +18729,27 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
18374
18729
|
*/
|
|
18375
18730
|
sIcon?: URI
|
|
18376
18731
|
): this;
|
|
18732
|
+
/**
|
|
18733
|
+
* Sets a new value for property {@link #getShortcutText shortcutText}.
|
|
18734
|
+
*
|
|
18735
|
+
* Defines the shortcut text that should be displayed on the menu item on non-mobile devices. **Note:**
|
|
18736
|
+
* The text is only displayed and set as а value of the `aria-keyshortcuts` attribute. There is no built-in
|
|
18737
|
+
* functionality that selects the item when the corresponding shortcut is pressed. This should be implemented
|
|
18738
|
+
* by the application developer.
|
|
18739
|
+
*
|
|
18740
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18741
|
+
*
|
|
18742
|
+
* Default value is `empty string`.
|
|
18743
|
+
*
|
|
18744
|
+
*
|
|
18745
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18746
|
+
*/
|
|
18747
|
+
setShortcutText(
|
|
18748
|
+
/**
|
|
18749
|
+
* New value for property `shortcutText`
|
|
18750
|
+
*/
|
|
18751
|
+
sShortcutText?: string
|
|
18752
|
+
): this;
|
|
18377
18753
|
/**
|
|
18378
18754
|
* Sets a new value for property {@link #getText text}.
|
|
18379
18755
|
*
|
|
@@ -18393,7 +18769,9 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
18393
18769
|
sText?: string
|
|
18394
18770
|
): this;
|
|
18395
18771
|
}
|
|
18396
|
-
|
|
18772
|
+
/**
|
|
18773
|
+
* Describes the settings that can be provided to the MenuItem constructor.
|
|
18774
|
+
*/
|
|
18397
18775
|
export interface $MenuItemSettings extends $MenuItemBaseSettings {
|
|
18398
18776
|
/**
|
|
18399
18777
|
* Defines the text which should be displayed on the item.
|
|
@@ -18406,6 +18784,14 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
18406
18784
|
*/
|
|
18407
18785
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
18408
18786
|
|
|
18787
|
+
/**
|
|
18788
|
+
* Defines the shortcut text that should be displayed on the menu item on non-mobile devices. **Note:**
|
|
18789
|
+
* The text is only displayed and set as а value of the `aria-keyshortcuts` attribute. There is no built-in
|
|
18790
|
+
* functionality that selects the item when the corresponding shortcut is pressed. This should be implemented
|
|
18791
|
+
* by the application developer.
|
|
18792
|
+
*/
|
|
18793
|
+
shortcutText?: string | PropertyBindingInfo;
|
|
18794
|
+
|
|
18409
18795
|
/**
|
|
18410
18796
|
* Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
|
|
18411
18797
|
*/
|
|
@@ -18753,7 +19139,9 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
18753
19139
|
bVisible?: boolean
|
|
18754
19140
|
): this;
|
|
18755
19141
|
}
|
|
18756
|
-
|
|
19142
|
+
/**
|
|
19143
|
+
* Describes the settings that can be provided to the MenuItemBase constructor.
|
|
19144
|
+
*/
|
|
18757
19145
|
export interface $MenuItemBaseSettings extends $ElementSettings {
|
|
18758
19146
|
/**
|
|
18759
19147
|
* When an item is disabled the item can not be selected by the user. The enabled property of the item has
|
|
@@ -18785,6 +19173,9 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
18785
19173
|
select?: (oEvent: MenuItemBase$SelectEvent) => void;
|
|
18786
19174
|
}
|
|
18787
19175
|
|
|
19176
|
+
/**
|
|
19177
|
+
* Parameters of the MenuItemBase#select event.
|
|
19178
|
+
*/
|
|
18788
19179
|
export interface MenuItemBase$SelectEventParameters {
|
|
18789
19180
|
/**
|
|
18790
19181
|
* The current item
|
|
@@ -18792,6 +19183,9 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
18792
19183
|
item?: MenuItemBase;
|
|
18793
19184
|
}
|
|
18794
19185
|
|
|
19186
|
+
/**
|
|
19187
|
+
* Event object of the MenuItemBase#select event.
|
|
19188
|
+
*/
|
|
18795
19189
|
export type MenuItemBase$SelectEvent = Event<
|
|
18796
19190
|
MenuItemBase$SelectEventParameters,
|
|
18797
19191
|
MenuItemBase
|
|
@@ -19021,7 +19415,9 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
|
|
|
19021
19415
|
sValueState?: ValueState | keyof typeof ValueState
|
|
19022
19416
|
): this;
|
|
19023
19417
|
}
|
|
19024
|
-
|
|
19418
|
+
/**
|
|
19419
|
+
* Describes the settings that can be provided to the MenuTextFieldItem constructor.
|
|
19420
|
+
*/
|
|
19025
19421
|
export interface $MenuTextFieldItemSettings extends $MenuItemBaseSettings {
|
|
19026
19422
|
/**
|
|
19027
19423
|
* Defines the label of the text field of the item.
|
|
@@ -19078,7 +19474,7 @@ declare module "sap/ui/unified/Shell" {
|
|
|
19078
19474
|
* than the root control usecase.
|
|
19079
19475
|
*
|
|
19080
19476
|
* @since 1.15.1
|
|
19081
|
-
* @deprecated (since 1.44.0)
|
|
19477
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
19082
19478
|
*/
|
|
19083
19479
|
export default class Shell extends ShellLayout {
|
|
19084
19480
|
/**
|
|
@@ -19642,7 +20038,11 @@ declare module "sap/ui/unified/Shell" {
|
|
|
19642
20038
|
oUser: ShellHeadUserItem
|
|
19643
20039
|
): this;
|
|
19644
20040
|
}
|
|
19645
|
-
|
|
20041
|
+
/**
|
|
20042
|
+
* Describes the settings that can be provided to the Shell constructor.
|
|
20043
|
+
*
|
|
20044
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20045
|
+
*/
|
|
19646
20046
|
export interface $ShellSettings extends $ShellLayoutSettings {
|
|
19647
20047
|
/**
|
|
19648
20048
|
* The application icon. If a custom header is set this property has no effect.
|
|
@@ -19742,7 +20142,7 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
19742
20142
|
* Header Action item of the Shell.
|
|
19743
20143
|
*
|
|
19744
20144
|
* @since 1.15.1
|
|
19745
|
-
* @deprecated (since 1.44.0)
|
|
20145
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
19746
20146
|
*/
|
|
19747
20147
|
export default class ShellHeadItem extends UI5Element {
|
|
19748
20148
|
/**
|
|
@@ -20136,7 +20536,11 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
20136
20536
|
bVisible?: boolean
|
|
20137
20537
|
): this;
|
|
20138
20538
|
}
|
|
20139
|
-
|
|
20539
|
+
/**
|
|
20540
|
+
* Describes the settings that can be provided to the ShellHeadItem constructor.
|
|
20541
|
+
*
|
|
20542
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20543
|
+
*/
|
|
20140
20544
|
export interface $ShellHeadItemSettings extends $ElementSettings {
|
|
20141
20545
|
/**
|
|
20142
20546
|
* If set to true, a divider is displayed before the item.
|
|
@@ -20197,8 +20601,14 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
20197
20601
|
press?: (oEvent: Event) => void;
|
|
20198
20602
|
}
|
|
20199
20603
|
|
|
20604
|
+
/**
|
|
20605
|
+
* Parameters of the ShellHeadItem#press event.
|
|
20606
|
+
*/
|
|
20200
20607
|
export interface ShellHeadItem$PressEventParameters {}
|
|
20201
20608
|
|
|
20609
|
+
/**
|
|
20610
|
+
* Event object of the ShellHeadItem#press event.
|
|
20611
|
+
*/
|
|
20202
20612
|
export type ShellHeadItem$PressEvent = Event<
|
|
20203
20613
|
ShellHeadItem$PressEventParameters,
|
|
20204
20614
|
ShellHeadItem
|
|
@@ -20222,7 +20632,7 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
20222
20632
|
* User Header Action Item of the Shell.
|
|
20223
20633
|
*
|
|
20224
20634
|
* @since 1.22.0
|
|
20225
|
-
* @deprecated (since 1.44.0)
|
|
20635
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20226
20636
|
*/
|
|
20227
20637
|
export default class ShellHeadUserItem extends UI5Element {
|
|
20228
20638
|
/**
|
|
@@ -20488,7 +20898,11 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
20488
20898
|
sUsername?: string
|
|
20489
20899
|
): this;
|
|
20490
20900
|
}
|
|
20491
|
-
|
|
20901
|
+
/**
|
|
20902
|
+
* Describes the settings that can be provided to the ShellHeadUserItem constructor.
|
|
20903
|
+
*
|
|
20904
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20905
|
+
*/
|
|
20492
20906
|
export interface $ShellHeadUserItemSettings extends $ElementSettings {
|
|
20493
20907
|
/**
|
|
20494
20908
|
* The name of the user.
|
|
@@ -20519,8 +20933,14 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
20519
20933
|
press?: (oEvent: Event) => void;
|
|
20520
20934
|
}
|
|
20521
20935
|
|
|
20936
|
+
/**
|
|
20937
|
+
* Parameters of the ShellHeadUserItem#press event.
|
|
20938
|
+
*/
|
|
20522
20939
|
export interface ShellHeadUserItem$PressEventParameters {}
|
|
20523
20940
|
|
|
20941
|
+
/**
|
|
20942
|
+
* Event object of the ShellHeadUserItem#press event.
|
|
20943
|
+
*/
|
|
20524
20944
|
export type ShellHeadUserItem$PressEvent = Event<
|
|
20525
20945
|
ShellHeadUserItem$PressEventParameters,
|
|
20526
20946
|
ShellHeadUserItem
|
|
@@ -20544,7 +20964,7 @@ declare module "sap/ui/unified/ShellLayout" {
|
|
|
20544
20964
|
* do not use it for other scenarios than the root control usecase.
|
|
20545
20965
|
*
|
|
20546
20966
|
* @since 1.25.0
|
|
20547
|
-
* @deprecated (since 1.44.0)
|
|
20967
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20548
20968
|
*/
|
|
20549
20969
|
export default class ShellLayout extends Control {
|
|
20550
20970
|
/**
|
|
@@ -20878,7 +21298,11 @@ declare module "sap/ui/unified/ShellLayout" {
|
|
|
20878
21298
|
bShowPane?: boolean
|
|
20879
21299
|
): this;
|
|
20880
21300
|
}
|
|
20881
|
-
|
|
21301
|
+
/**
|
|
21302
|
+
* Describes the settings that can be provided to the ShellLayout constructor.
|
|
21303
|
+
*
|
|
21304
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
21305
|
+
*/
|
|
20882
21306
|
export interface $ShellLayoutSettings extends $ControlSettings {
|
|
20883
21307
|
/**
|
|
20884
21308
|
* Shows / Hides the side pane.
|
|
@@ -20930,7 +21354,7 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
20930
21354
|
* ShellOverlay to be opened in front of an sap.ui.unified.Shell
|
|
20931
21355
|
*
|
|
20932
21356
|
* @since 1.16.3
|
|
20933
|
-
* @deprecated (since 1.44.0)
|
|
21357
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
20934
21358
|
*/
|
|
20935
21359
|
export default class ShellOverlay extends Control {
|
|
20936
21360
|
/**
|
|
@@ -21237,7 +21661,11 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
21237
21661
|
oShell: ID | ShellLayout
|
|
21238
21662
|
): this;
|
|
21239
21663
|
}
|
|
21240
|
-
|
|
21664
|
+
/**
|
|
21665
|
+
* Describes the settings that can be provided to the ShellOverlay constructor.
|
|
21666
|
+
*
|
|
21667
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
21668
|
+
*/
|
|
21241
21669
|
export interface $ShellOverlaySettings extends $ControlSettings {
|
|
21242
21670
|
/**
|
|
21243
21671
|
* The content to appear in the overlay.
|
|
@@ -21266,8 +21694,14 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
21266
21694
|
closed?: (oEvent: Event) => void;
|
|
21267
21695
|
}
|
|
21268
21696
|
|
|
21697
|
+
/**
|
|
21698
|
+
* Parameters of the ShellOverlay#closed event.
|
|
21699
|
+
*/
|
|
21269
21700
|
export interface ShellOverlay$ClosedEventParameters {}
|
|
21270
21701
|
|
|
21702
|
+
/**
|
|
21703
|
+
* Event object of the ShellOverlay#closed event.
|
|
21704
|
+
*/
|
|
21271
21705
|
export type ShellOverlay$ClosedEvent = Event<
|
|
21272
21706
|
ShellOverlay$ClosedEventParameters,
|
|
21273
21707
|
ShellOverlay
|
|
@@ -21290,7 +21724,7 @@ declare module "sap/ui/unified/SplitContainer" {
|
|
|
21290
21724
|
* Provides a main content and a secondary content area
|
|
21291
21725
|
*
|
|
21292
21726
|
* @since 1.15.0
|
|
21293
|
-
* @deprecated (since 1.44.0)
|
|
21727
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
21294
21728
|
* @experimental (since 1.15.0) - API is not yet finished and might change completely
|
|
21295
21729
|
*/
|
|
21296
21730
|
export default class SplitContainer extends Control {
|
|
@@ -21627,7 +22061,12 @@ declare module "sap/ui/unified/SplitContainer" {
|
|
|
21627
22061
|
bShowSecondaryContent?: boolean
|
|
21628
22062
|
): this;
|
|
21629
22063
|
}
|
|
21630
|
-
|
|
22064
|
+
/**
|
|
22065
|
+
* Describes the settings that can be provided to the SplitContainer constructor.
|
|
22066
|
+
*
|
|
22067
|
+
* @deprecated (since 1.44.0) - the concept has been discarded.
|
|
22068
|
+
* @experimental (since 1.15.0) - API is not yet finished and might change completely
|
|
22069
|
+
*/
|
|
21631
22070
|
export interface $SplitContainerSettings extends $ControlSettings {
|
|
21632
22071
|
/**
|
|
21633
22072
|
* Shows / Hides the secondary area.
|