@openui5/types 1.115.1 → 1.116.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/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +67 -241
- package/types/sap.m.d.ts +411 -2498
- package/types/sap.tnt.d.ts +52 -26
- package/types/sap.ui.codeeditor.d.ts +3 -15
- package/types/sap.ui.commons.d.ts +43 -355
- package/types/sap.ui.core.d.ts +283 -883
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +4 -69
- package/types/sap.ui.integration.d.ts +124 -90
- package/types/sap.ui.layout.d.ts +6 -40
- package/types/sap.ui.mdc.d.ts +806 -817
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -13
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +23 -169
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +69 -449
- package/types/sap.ui.ux3.d.ts +44 -444
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +731 -311
- package/types/sap.ui.webc.main.d.ts +4016 -1045
- package/types/sap.uxap.d.ts +10 -80
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -846,9 +846,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
846
846
|
*
|
|
847
847
|
* @returns Value of property `calendarWeekNumbering`
|
|
848
848
|
*/
|
|
849
|
-
getCalendarWeekNumbering():
|
|
850
|
-
| CalendarWeekNumbering
|
|
851
|
-
| keyof typeof CalendarWeekNumbering;
|
|
849
|
+
getCalendarWeekNumbering(): CalendarWeekNumbering;
|
|
852
850
|
/**
|
|
853
851
|
* @since 1.38.0
|
|
854
852
|
*
|
|
@@ -976,7 +974,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
976
974
|
*
|
|
977
975
|
* @returns Value of property `primaryCalendarType`
|
|
978
976
|
*/
|
|
979
|
-
getPrimaryCalendarType(): CalendarType
|
|
977
|
+
getPrimaryCalendarType(): CalendarType;
|
|
980
978
|
/**
|
|
981
979
|
* @since 1.34.0
|
|
982
980
|
*
|
|
@@ -987,7 +985,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
987
985
|
*
|
|
988
986
|
* @returns Value of property `secondaryCalendarType`
|
|
989
987
|
*/
|
|
990
|
-
getSecondaryCalendarType(): CalendarType
|
|
988
|
+
getSecondaryCalendarType(): CalendarType;
|
|
991
989
|
/**
|
|
992
990
|
* Gets content of aggregation {@link #getSelectedDates selectedDates}.
|
|
993
991
|
*
|
|
@@ -1254,9 +1252,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1254
1252
|
/**
|
|
1255
1253
|
* New value for property `calendarWeekNumbering`
|
|
1256
1254
|
*/
|
|
1257
|
-
sCalendarWeekNumbering?:
|
|
1258
|
-
| CalendarWeekNumbering
|
|
1259
|
-
| keyof typeof CalendarWeekNumbering
|
|
1255
|
+
sCalendarWeekNumbering?: CalendarWeekNumbering
|
|
1260
1256
|
): this;
|
|
1261
1257
|
/**
|
|
1262
1258
|
* @since 1.28.9
|
|
@@ -1411,7 +1407,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1411
1407
|
/**
|
|
1412
1408
|
* New value for property `primaryCalendarType`
|
|
1413
1409
|
*/
|
|
1414
|
-
sPrimaryCalendarType: CalendarType
|
|
1410
|
+
sPrimaryCalendarType: CalendarType
|
|
1415
1411
|
): this;
|
|
1416
1412
|
/**
|
|
1417
1413
|
* @since 1.34.0
|
|
@@ -1429,7 +1425,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1429
1425
|
/**
|
|
1430
1426
|
* New value for property `secondaryCalendarType`
|
|
1431
1427
|
*/
|
|
1432
|
-
sSecondaryCalendarType: CalendarType
|
|
1428
|
+
sSecondaryCalendarType: CalendarType
|
|
1433
1429
|
): this;
|
|
1434
1430
|
/**
|
|
1435
1431
|
* Sets the visibility of the Current date button in the calendar.
|
|
@@ -1551,10 +1547,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1551
1547
|
* If set, the calendar type is used for display. If not set, the calendar type of the global configuration
|
|
1552
1548
|
* is used.
|
|
1553
1549
|
*/
|
|
1554
|
-
primaryCalendarType?:
|
|
1555
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
1556
|
-
| PropertyBindingInfo
|
|
1557
|
-
| `{${string}}`;
|
|
1550
|
+
primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
1558
1551
|
|
|
1559
1552
|
/**
|
|
1560
1553
|
* @since 1.34.0
|
|
@@ -1562,10 +1555,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1562
1555
|
* If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
|
|
1563
1556
|
* the primary calendar type
|
|
1564
1557
|
*/
|
|
1565
|
-
secondaryCalendarType?:
|
|
1566
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
1567
|
-
| PropertyBindingInfo
|
|
1568
|
-
| `{${string}}`;
|
|
1558
|
+
secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
1569
1559
|
|
|
1570
1560
|
/**
|
|
1571
1561
|
* @since 1.38.0
|
|
@@ -1629,7 +1619,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1629
1619
|
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
1630
1620
|
*/
|
|
1631
1621
|
calendarWeekNumbering?:
|
|
1632
|
-
|
|
|
1622
|
+
| CalendarWeekNumbering
|
|
1633
1623
|
| PropertyBindingInfo
|
|
1634
1624
|
| `{${string}}`;
|
|
1635
1625
|
|
|
@@ -1731,39 +1721,19 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1731
1721
|
*
|
|
1732
1722
|
* **Note** Works for Gregorian calendars only and when `intervalSelection` is set to 'true'.
|
|
1733
1723
|
*/
|
|
1734
|
-
weekNumberSelect?: (
|
|
1735
|
-
oEvent: Event<Calendar$WeekNumberSelectEventParameters>
|
|
1736
|
-
) => void;
|
|
1724
|
+
weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
|
|
1737
1725
|
}
|
|
1738
1726
|
|
|
1739
1727
|
export interface Calendar$CancelEventParameters {}
|
|
1740
1728
|
|
|
1741
|
-
/**
|
|
1742
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$CancelEventParameters'
|
|
1743
|
-
* in 1.115.1 and any later releases.
|
|
1744
|
-
*/
|
|
1745
|
-
export type $CalendarCancelEventParameters = Calendar$CancelEventParameters;
|
|
1746
|
-
|
|
1747
1729
|
export type Calendar$CancelEvent = Event<Calendar$CancelEventParameters>;
|
|
1748
1730
|
|
|
1749
1731
|
export interface Calendar$SelectEventParameters {}
|
|
1750
1732
|
|
|
1751
|
-
/**
|
|
1752
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$SelectEventParameters'
|
|
1753
|
-
* in 1.115.1 and any later releases.
|
|
1754
|
-
*/
|
|
1755
|
-
export type $CalendarSelectEventParameters = Calendar$SelectEventParameters;
|
|
1756
|
-
|
|
1757
1733
|
export type Calendar$SelectEvent = Event<Calendar$SelectEventParameters>;
|
|
1758
1734
|
|
|
1759
1735
|
export interface Calendar$StartDateChangeEventParameters {}
|
|
1760
1736
|
|
|
1761
|
-
/**
|
|
1762
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$StartDateChangeEventParameters'
|
|
1763
|
-
* in 1.115.1 and any later releases.
|
|
1764
|
-
*/
|
|
1765
|
-
export type $CalendarStartDateChangeEventParameters = Calendar$StartDateChangeEventParameters;
|
|
1766
|
-
|
|
1767
1737
|
export type Calendar$StartDateChangeEvent = Event<Calendar$StartDateChangeEventParameters>;
|
|
1768
1738
|
|
|
1769
1739
|
export interface Calendar$WeekNumberSelectEventParameters {
|
|
@@ -1778,12 +1748,6 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1778
1748
|
weekDays?: DateRange;
|
|
1779
1749
|
}
|
|
1780
1750
|
|
|
1781
|
-
/**
|
|
1782
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$WeekNumberSelectEventParameters'
|
|
1783
|
-
* in 1.115.1 and any later releases.
|
|
1784
|
-
*/
|
|
1785
|
-
export type $CalendarWeekNumberSelectEventParameters = Calendar$WeekNumberSelectEventParameters;
|
|
1786
|
-
|
|
1787
1751
|
export type Calendar$WeekNumberSelectEvent = Event<Calendar$WeekNumberSelectEventParameters>;
|
|
1788
1752
|
}
|
|
1789
1753
|
|
|
@@ -1894,9 +1858,7 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
1894
1858
|
*
|
|
1895
1859
|
* @returns Value of property `calendarWeekNumbering`
|
|
1896
1860
|
*/
|
|
1897
|
-
getCalendarWeekNumbering():
|
|
1898
|
-
| CalendarWeekNumbering
|
|
1899
|
-
| keyof typeof CalendarWeekNumbering;
|
|
1861
|
+
getCalendarWeekNumbering(): CalendarWeekNumbering;
|
|
1900
1862
|
/**
|
|
1901
1863
|
* Gets current value of property {@link #getDays days}.
|
|
1902
1864
|
*
|
|
@@ -1947,9 +1909,7 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
1947
1909
|
/**
|
|
1948
1910
|
* New value for property `calendarWeekNumbering`
|
|
1949
1911
|
*/
|
|
1950
|
-
sCalendarWeekNumbering?:
|
|
1951
|
-
| CalendarWeekNumbering
|
|
1952
|
-
| keyof typeof CalendarWeekNumbering
|
|
1912
|
+
sCalendarWeekNumbering?: CalendarWeekNumbering
|
|
1953
1913
|
): this;
|
|
1954
1914
|
/**
|
|
1955
1915
|
* Setter for property `date`.
|
|
@@ -2044,7 +2004,7 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
2044
2004
|
* property.
|
|
2045
2005
|
*/
|
|
2046
2006
|
calendarWeekNumbering?:
|
|
2047
|
-
|
|
|
2007
|
+
| CalendarWeekNumbering
|
|
2048
2008
|
| PropertyBindingInfo
|
|
2049
2009
|
| `{${string}}`;
|
|
2050
2010
|
}
|
|
@@ -3134,62 +3094,26 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
3134
3094
|
|
|
3135
3095
|
export interface Header$PressButton0EventParameters {}
|
|
3136
3096
|
|
|
3137
|
-
/**
|
|
3138
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressButton0EventParameters'
|
|
3139
|
-
* in 1.115.1 and any later releases.
|
|
3140
|
-
*/
|
|
3141
|
-
export type $HeaderPressButton0EventParameters = Header$PressButton0EventParameters;
|
|
3142
|
-
|
|
3143
3097
|
export type Header$PressButton0Event = Event<Header$PressButton0EventParameters>;
|
|
3144
3098
|
|
|
3145
3099
|
export interface Header$PressButton1EventParameters {}
|
|
3146
3100
|
|
|
3147
|
-
/**
|
|
3148
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressButton1EventParameters'
|
|
3149
|
-
* in 1.115.1 and any later releases.
|
|
3150
|
-
*/
|
|
3151
|
-
export type $HeaderPressButton1EventParameters = Header$PressButton1EventParameters;
|
|
3152
|
-
|
|
3153
3101
|
export type Header$PressButton1Event = Event<Header$PressButton1EventParameters>;
|
|
3154
3102
|
|
|
3155
3103
|
export interface Header$PressButton2EventParameters {}
|
|
3156
3104
|
|
|
3157
|
-
/**
|
|
3158
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressButton2EventParameters'
|
|
3159
|
-
* in 1.115.1 and any later releases.
|
|
3160
|
-
*/
|
|
3161
|
-
export type $HeaderPressButton2EventParameters = Header$PressButton2EventParameters;
|
|
3162
|
-
|
|
3163
3105
|
export type Header$PressButton2Event = Event<Header$PressButton2EventParameters>;
|
|
3164
3106
|
|
|
3165
3107
|
export interface Header$PressCurrentDateEventParameters {}
|
|
3166
3108
|
|
|
3167
|
-
/**
|
|
3168
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressCurrentDateEventParameters'
|
|
3169
|
-
* in 1.115.1 and any later releases.
|
|
3170
|
-
*/
|
|
3171
|
-
export type $HeaderPressCurrentDateEventParameters = Header$PressCurrentDateEventParameters;
|
|
3172
|
-
|
|
3173
3109
|
export type Header$PressCurrentDateEvent = Event<Header$PressCurrentDateEventParameters>;
|
|
3174
3110
|
|
|
3175
3111
|
export interface Header$PressNextEventParameters {}
|
|
3176
3112
|
|
|
3177
|
-
/**
|
|
3178
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressNextEventParameters'
|
|
3179
|
-
* in 1.115.1 and any later releases.
|
|
3180
|
-
*/
|
|
3181
|
-
export type $HeaderPressNextEventParameters = Header$PressNextEventParameters;
|
|
3182
|
-
|
|
3183
3113
|
export type Header$PressNextEvent = Event<Header$PressNextEventParameters>;
|
|
3184
3114
|
|
|
3185
3115
|
export interface Header$PressPreviousEventParameters {}
|
|
3186
3116
|
|
|
3187
|
-
/**
|
|
3188
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressPreviousEventParameters'
|
|
3189
|
-
* in 1.115.1 and any later releases.
|
|
3190
|
-
*/
|
|
3191
|
-
export type $HeaderPressPreviousEventParameters = Header$PressPreviousEventParameters;
|
|
3192
|
-
|
|
3193
3117
|
export type Header$PressPreviousEvent = Event<Header$PressPreviousEventParameters>;
|
|
3194
3118
|
}
|
|
3195
3119
|
|
|
@@ -3638,9 +3562,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3638
3562
|
*
|
|
3639
3563
|
* @returns Value of property `calendarWeekNumbering`
|
|
3640
3564
|
*/
|
|
3641
|
-
getCalendarWeekNumbering():
|
|
3642
|
-
| CalendarWeekNumbering
|
|
3643
|
-
| keyof typeof CalendarWeekNumbering;
|
|
3565
|
+
getCalendarWeekNumbering(): CalendarWeekNumbering;
|
|
3644
3566
|
/**
|
|
3645
3567
|
* Gets current value of property {@link #getDate date}.
|
|
3646
3568
|
*
|
|
@@ -3709,7 +3631,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3709
3631
|
*
|
|
3710
3632
|
* @returns Value of property `primaryCalendarType`
|
|
3711
3633
|
*/
|
|
3712
|
-
getPrimaryCalendarType(): CalendarType
|
|
3634
|
+
getPrimaryCalendarType(): CalendarType;
|
|
3713
3635
|
/**
|
|
3714
3636
|
* @since 1.34.0
|
|
3715
3637
|
*
|
|
@@ -3720,7 +3642,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3720
3642
|
*
|
|
3721
3643
|
* @returns Value of property `secondaryCalendarType`
|
|
3722
3644
|
*/
|
|
3723
|
-
getSecondaryCalendarType(): CalendarType
|
|
3645
|
+
getSecondaryCalendarType(): CalendarType;
|
|
3724
3646
|
/**
|
|
3725
3647
|
* Gets content of aggregation {@link #getSelectedDates selectedDates}.
|
|
3726
3648
|
*
|
|
@@ -3967,9 +3889,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3967
3889
|
/**
|
|
3968
3890
|
* New value for property `calendarWeekNumbering`
|
|
3969
3891
|
*/
|
|
3970
|
-
sCalendarWeekNumbering?:
|
|
3971
|
-
| CalendarWeekNumbering
|
|
3972
|
-
| keyof typeof CalendarWeekNumbering
|
|
3892
|
+
sCalendarWeekNumbering?: CalendarWeekNumbering
|
|
3973
3893
|
): this;
|
|
3974
3894
|
/**
|
|
3975
3895
|
* Sets a date for the month.
|
|
@@ -4068,7 +3988,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4068
3988
|
/**
|
|
4069
3989
|
* New value for property `primaryCalendarType`
|
|
4070
3990
|
*/
|
|
4071
|
-
sPrimaryCalendarType: CalendarType
|
|
3991
|
+
sPrimaryCalendarType: CalendarType
|
|
4072
3992
|
): this;
|
|
4073
3993
|
/**
|
|
4074
3994
|
* @since 1.34.0
|
|
@@ -4086,7 +4006,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4086
4006
|
/**
|
|
4087
4007
|
* New value for property `secondaryCalendarType`
|
|
4088
4008
|
*/
|
|
4089
|
-
sSecondaryCalendarType: CalendarType
|
|
4009
|
+
sSecondaryCalendarType: CalendarType
|
|
4090
4010
|
): this;
|
|
4091
4011
|
/**
|
|
4092
4012
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -4208,10 +4128,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4208
4128
|
* If set, the calendar type is used for display. If not set, the calendar type of the global configuration
|
|
4209
4129
|
* is used.
|
|
4210
4130
|
*/
|
|
4211
|
-
primaryCalendarType?:
|
|
4212
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
4213
|
-
| PropertyBindingInfo
|
|
4214
|
-
| `{${string}}`;
|
|
4131
|
+
primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
4215
4132
|
|
|
4216
4133
|
/**
|
|
4217
4134
|
* @since 1.34.0
|
|
@@ -4219,10 +4136,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4219
4136
|
* If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
|
|
4220
4137
|
* the primary calendar type
|
|
4221
4138
|
*/
|
|
4222
|
-
secondaryCalendarType?:
|
|
4223
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
4224
|
-
| PropertyBindingInfo
|
|
4225
|
-
| `{${string}}`;
|
|
4139
|
+
secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
4226
4140
|
|
|
4227
4141
|
/**
|
|
4228
4142
|
* @since 1.38.0
|
|
@@ -4248,7 +4162,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4248
4162
|
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
4249
4163
|
*/
|
|
4250
4164
|
calendarWeekNumbering?:
|
|
4251
|
-
|
|
|
4165
|
+
| CalendarWeekNumbering
|
|
4252
4166
|
| PropertyBindingInfo
|
|
4253
4167
|
| `{${string}}`;
|
|
4254
4168
|
|
|
@@ -4307,7 +4221,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4307
4221
|
/**
|
|
4308
4222
|
* Date focus changed
|
|
4309
4223
|
*/
|
|
4310
|
-
focus?: (oEvent:
|
|
4224
|
+
focus?: (oEvent: Month$FocusEvent) => void;
|
|
4311
4225
|
|
|
4312
4226
|
/**
|
|
4313
4227
|
* @since 1.60
|
|
@@ -4319,9 +4233,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4319
4233
|
*
|
|
4320
4234
|
* **Note:** Works for Gregorian calendars only and when `intervalSelection` is set to `true`.
|
|
4321
4235
|
*/
|
|
4322
|
-
weekNumberSelect?: (
|
|
4323
|
-
oEvent: Event<Month$WeekNumberSelectEventParameters>
|
|
4324
|
-
) => void;
|
|
4236
|
+
weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
|
|
4325
4237
|
}
|
|
4326
4238
|
|
|
4327
4239
|
export interface Month$FocusEventParameters {
|
|
@@ -4341,22 +4253,10 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4341
4253
|
restoreOldDate?: boolean;
|
|
4342
4254
|
}
|
|
4343
4255
|
|
|
4344
|
-
/**
|
|
4345
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Month$FocusEventParameters'
|
|
4346
|
-
* in 1.115.1 and any later releases.
|
|
4347
|
-
*/
|
|
4348
|
-
export type $MonthFocusEventParameters = Month$FocusEventParameters;
|
|
4349
|
-
|
|
4350
4256
|
export type Month$FocusEvent = Event<Month$FocusEventParameters>;
|
|
4351
4257
|
|
|
4352
4258
|
export interface Month$SelectEventParameters {}
|
|
4353
4259
|
|
|
4354
|
-
/**
|
|
4355
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Month$SelectEventParameters'
|
|
4356
|
-
* in 1.115.1 and any later releases.
|
|
4357
|
-
*/
|
|
4358
|
-
export type $MonthSelectEventParameters = Month$SelectEventParameters;
|
|
4359
|
-
|
|
4360
4260
|
export type Month$SelectEvent = Event<Month$SelectEventParameters>;
|
|
4361
4261
|
|
|
4362
4262
|
export interface Month$WeekNumberSelectEventParameters {
|
|
@@ -4373,12 +4273,6 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4373
4273
|
weekDays?: DateRange;
|
|
4374
4274
|
}
|
|
4375
4275
|
|
|
4376
|
-
/**
|
|
4377
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Month$WeekNumberSelectEventParameters'
|
|
4378
|
-
* in 1.115.1 and any later releases.
|
|
4379
|
-
*/
|
|
4380
|
-
export type $MonthWeekNumberSelectEventParameters = Month$WeekNumberSelectEventParameters;
|
|
4381
|
-
|
|
4382
4276
|
export type Month$WeekNumberSelectEvent = Event<Month$WeekNumberSelectEventParameters>;
|
|
4383
4277
|
}
|
|
4384
4278
|
|
|
@@ -4726,7 +4620,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4726
4620
|
*
|
|
4727
4621
|
* @returns Value of property `primaryCalendarType`
|
|
4728
4622
|
*/
|
|
4729
|
-
getPrimaryCalendarType(): CalendarType
|
|
4623
|
+
getPrimaryCalendarType(): CalendarType;
|
|
4730
4624
|
/**
|
|
4731
4625
|
* @since 1.104.0
|
|
4732
4626
|
*
|
|
@@ -4737,7 +4631,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4737
4631
|
*
|
|
4738
4632
|
* @returns Value of property `secondaryCalendarType`
|
|
4739
4633
|
*/
|
|
4740
|
-
getSecondaryCalendarType(): CalendarType
|
|
4634
|
+
getSecondaryCalendarType(): CalendarType;
|
|
4741
4635
|
/**
|
|
4742
4636
|
* @since 1.74
|
|
4743
4637
|
*
|
|
@@ -4941,7 +4835,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4941
4835
|
/**
|
|
4942
4836
|
* New value for property `primaryCalendarType`
|
|
4943
4837
|
*/
|
|
4944
|
-
sPrimaryCalendarType: CalendarType
|
|
4838
|
+
sPrimaryCalendarType: CalendarType
|
|
4945
4839
|
): this;
|
|
4946
4840
|
/**
|
|
4947
4841
|
* @since 1.104.0
|
|
@@ -4959,7 +4853,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4959
4853
|
/**
|
|
4960
4854
|
* New value for property `secondaryCalendarType`
|
|
4961
4855
|
*/
|
|
4962
|
-
sSecondaryCalendarType: CalendarType
|
|
4856
|
+
sSecondaryCalendarType: CalendarType
|
|
4963
4857
|
): this;
|
|
4964
4858
|
}
|
|
4965
4859
|
|
|
@@ -4997,10 +4891,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4997
4891
|
* If set, the calendar type is used for display. If not set, the calendar type of the global configuration
|
|
4998
4892
|
* is used.
|
|
4999
4893
|
*/
|
|
5000
|
-
primaryCalendarType?:
|
|
5001
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
5002
|
-
| PropertyBindingInfo
|
|
5003
|
-
| `{${string}}`;
|
|
4894
|
+
primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
5004
4895
|
|
|
5005
4896
|
/**
|
|
5006
4897
|
* @since 1.104.0
|
|
@@ -5008,10 +4899,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
5008
4899
|
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
5009
4900
|
* in the primary calendar type
|
|
5010
4901
|
*/
|
|
5011
|
-
secondaryCalendarType?:
|
|
5012
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
5013
|
-
| PropertyBindingInfo
|
|
5014
|
-
| `{${string}}`;
|
|
4902
|
+
secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
5015
4903
|
|
|
5016
4904
|
/**
|
|
5017
4905
|
* @since 1.74
|
|
@@ -5047,22 +4935,10 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
5047
4935
|
|
|
5048
4936
|
export interface MonthPicker$PageChangeEventParameters {}
|
|
5049
4937
|
|
|
5050
|
-
/**
|
|
5051
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthPicker$PageChangeEventParameters'
|
|
5052
|
-
* in 1.115.1 and any later releases.
|
|
5053
|
-
*/
|
|
5054
|
-
export type $MonthPickerPageChangeEventParameters = MonthPicker$PageChangeEventParameters;
|
|
5055
|
-
|
|
5056
4938
|
export type MonthPicker$PageChangeEvent = Event<MonthPicker$PageChangeEventParameters>;
|
|
5057
4939
|
|
|
5058
4940
|
export interface MonthPicker$SelectEventParameters {}
|
|
5059
4941
|
|
|
5060
|
-
/**
|
|
5061
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthPicker$SelectEventParameters'
|
|
5062
|
-
* in 1.115.1 and any later releases.
|
|
5063
|
-
*/
|
|
5064
|
-
export type $MonthPickerSelectEventParameters = MonthPicker$SelectEventParameters;
|
|
5065
|
-
|
|
5066
4942
|
export type MonthPicker$SelectEvent = Event<MonthPicker$SelectEventParameters>;
|
|
5067
4943
|
}
|
|
5068
4944
|
|
|
@@ -5436,7 +5312,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5436
5312
|
*
|
|
5437
5313
|
* @returns Value of property `primaryCalendarType`
|
|
5438
5314
|
*/
|
|
5439
|
-
getPrimaryCalendarType(): CalendarType
|
|
5315
|
+
getPrimaryCalendarType(): CalendarType;
|
|
5440
5316
|
/**
|
|
5441
5317
|
* @since 1.109.0
|
|
5442
5318
|
*
|
|
@@ -5447,7 +5323,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5447
5323
|
*
|
|
5448
5324
|
* @returns Value of property `secondaryCalendarType`
|
|
5449
5325
|
*/
|
|
5450
|
-
getSecondaryCalendarType(): CalendarType
|
|
5326
|
+
getSecondaryCalendarType(): CalendarType;
|
|
5451
5327
|
/**
|
|
5452
5328
|
* Gets content of aggregation {@link #getSelectedDates selectedDates}.
|
|
5453
5329
|
*
|
|
@@ -5685,7 +5561,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5685
5561
|
/**
|
|
5686
5562
|
* New value for property `primaryCalendarType`
|
|
5687
5563
|
*/
|
|
5688
|
-
sPrimaryCalendarType: CalendarType
|
|
5564
|
+
sPrimaryCalendarType: CalendarType
|
|
5689
5565
|
): this;
|
|
5690
5566
|
/**
|
|
5691
5567
|
* @since 1.109.0
|
|
@@ -5703,7 +5579,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5703
5579
|
/**
|
|
5704
5580
|
* New value for property `secondaryCalendarType`
|
|
5705
5581
|
*/
|
|
5706
|
-
sSecondaryCalendarType: CalendarType
|
|
5582
|
+
sSecondaryCalendarType: CalendarType
|
|
5707
5583
|
): this;
|
|
5708
5584
|
/**
|
|
5709
5585
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -5797,10 +5673,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5797
5673
|
* If set, the calendar type is used for display. If not set, the calendar type of the global configuration
|
|
5798
5674
|
* is used.
|
|
5799
5675
|
*/
|
|
5800
|
-
primaryCalendarType?:
|
|
5801
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
5802
|
-
| PropertyBindingInfo
|
|
5803
|
-
| `{${string}}`;
|
|
5676
|
+
primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
5804
5677
|
|
|
5805
5678
|
/**
|
|
5806
5679
|
* @since 1.109.0
|
|
@@ -5808,10 +5681,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5808
5681
|
* If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
|
|
5809
5682
|
* the primary calendar type
|
|
5810
5683
|
*/
|
|
5811
|
-
secondaryCalendarType?:
|
|
5812
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
5813
|
-
| PropertyBindingInfo
|
|
5814
|
-
| `{${string}}`;
|
|
5684
|
+
secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
5815
5685
|
|
|
5816
5686
|
/**
|
|
5817
5687
|
* Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
|
|
@@ -5859,7 +5729,7 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5859
5729
|
/**
|
|
5860
5730
|
* Month focus changed
|
|
5861
5731
|
*/
|
|
5862
|
-
focus?: (oEvent:
|
|
5732
|
+
focus?: (oEvent: MonthsRow$FocusEvent) => void;
|
|
5863
5733
|
}
|
|
5864
5734
|
|
|
5865
5735
|
export interface MonthsRow$FocusEventParameters {
|
|
@@ -5874,22 +5744,10 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5874
5744
|
notVisible?: boolean;
|
|
5875
5745
|
}
|
|
5876
5746
|
|
|
5877
|
-
/**
|
|
5878
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthsRow$FocusEventParameters'
|
|
5879
|
-
* in 1.115.1 and any later releases.
|
|
5880
|
-
*/
|
|
5881
|
-
export type $MonthsRowFocusEventParameters = MonthsRow$FocusEventParameters;
|
|
5882
|
-
|
|
5883
5747
|
export type MonthsRow$FocusEvent = Event<MonthsRow$FocusEventParameters>;
|
|
5884
5748
|
|
|
5885
5749
|
export interface MonthsRow$SelectEventParameters {}
|
|
5886
5750
|
|
|
5887
|
-
/**
|
|
5888
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthsRow$SelectEventParameters'
|
|
5889
|
-
* in 1.115.1 and any later releases.
|
|
5890
|
-
*/
|
|
5891
|
-
export type $MonthsRowSelectEventParameters = MonthsRow$SelectEventParameters;
|
|
5892
|
-
|
|
5893
5751
|
export type MonthsRow$SelectEvent = Event<MonthsRow$SelectEventParameters>;
|
|
5894
5752
|
}
|
|
5895
5753
|
|
|
@@ -6277,7 +6135,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6277
6135
|
*
|
|
6278
6136
|
* @returns Value of property `primaryCalendarType`
|
|
6279
6137
|
*/
|
|
6280
|
-
getPrimaryCalendarType(): CalendarType
|
|
6138
|
+
getPrimaryCalendarType(): CalendarType;
|
|
6281
6139
|
/**
|
|
6282
6140
|
* @since 1.109.0
|
|
6283
6141
|
*
|
|
@@ -6288,7 +6146,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6288
6146
|
*
|
|
6289
6147
|
* @returns Value of property `secondaryCalendarType`
|
|
6290
6148
|
*/
|
|
6291
|
-
getSecondaryCalendarType(): CalendarType
|
|
6149
|
+
getSecondaryCalendarType(): CalendarType;
|
|
6292
6150
|
/**
|
|
6293
6151
|
* Gets content of aggregation {@link #getSelectedDates selectedDates}.
|
|
6294
6152
|
*
|
|
@@ -6543,7 +6401,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6543
6401
|
/**
|
|
6544
6402
|
* New value for property `primaryCalendarType`
|
|
6545
6403
|
*/
|
|
6546
|
-
sPrimaryCalendarType: CalendarType
|
|
6404
|
+
sPrimaryCalendarType: CalendarType
|
|
6547
6405
|
): this;
|
|
6548
6406
|
/**
|
|
6549
6407
|
* @since 1.109.0
|
|
@@ -6561,7 +6419,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6561
6419
|
/**
|
|
6562
6420
|
* New value for property `secondaryCalendarType`
|
|
6563
6421
|
*/
|
|
6564
|
-
sSecondaryCalendarType: CalendarType
|
|
6422
|
+
sSecondaryCalendarType: CalendarType
|
|
6565
6423
|
): this;
|
|
6566
6424
|
/**
|
|
6567
6425
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -6665,10 +6523,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6665
6523
|
* If set, the calendar type is used for display. If not set, the calendar type of the global configuration
|
|
6666
6524
|
* is used.
|
|
6667
6525
|
*/
|
|
6668
|
-
primaryCalendarType?:
|
|
6669
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
6670
|
-
| PropertyBindingInfo
|
|
6671
|
-
| `{${string}}`;
|
|
6526
|
+
primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
6672
6527
|
|
|
6673
6528
|
/**
|
|
6674
6529
|
* @since 1.109.0
|
|
@@ -6676,10 +6531,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6676
6531
|
* If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
|
|
6677
6532
|
* the primary calendar type
|
|
6678
6533
|
*/
|
|
6679
|
-
secondaryCalendarType?:
|
|
6680
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
6681
|
-
| PropertyBindingInfo
|
|
6682
|
-
| `{${string}}`;
|
|
6534
|
+
secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
6683
6535
|
|
|
6684
6536
|
/**
|
|
6685
6537
|
* Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
|
|
@@ -6722,7 +6574,7 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6722
6574
|
/**
|
|
6723
6575
|
* Time focus changed
|
|
6724
6576
|
*/
|
|
6725
|
-
focus?: (oEvent:
|
|
6577
|
+
focus?: (oEvent: TimesRow$FocusEvent) => void;
|
|
6726
6578
|
}
|
|
6727
6579
|
|
|
6728
6580
|
export interface TimesRow$FocusEventParameters {
|
|
@@ -6737,22 +6589,10 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
6737
6589
|
notVisible?: boolean;
|
|
6738
6590
|
}
|
|
6739
6591
|
|
|
6740
|
-
/**
|
|
6741
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimesRow$FocusEventParameters'
|
|
6742
|
-
* in 1.115.1 and any later releases.
|
|
6743
|
-
*/
|
|
6744
|
-
export type $TimesRowFocusEventParameters = TimesRow$FocusEventParameters;
|
|
6745
|
-
|
|
6746
6592
|
export type TimesRow$FocusEvent = Event<TimesRow$FocusEventParameters>;
|
|
6747
6593
|
|
|
6748
6594
|
export interface TimesRow$SelectEventParameters {}
|
|
6749
6595
|
|
|
6750
|
-
/**
|
|
6751
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimesRow$SelectEventParameters'
|
|
6752
|
-
* in 1.115.1 and any later releases.
|
|
6753
|
-
*/
|
|
6754
|
-
export type $TimesRowSelectEventParameters = TimesRow$SelectEventParameters;
|
|
6755
|
-
|
|
6756
6596
|
export type TimesRow$SelectEvent = Event<TimesRow$SelectEventParameters>;
|
|
6757
6597
|
}
|
|
6758
6598
|
|
|
@@ -7078,7 +6918,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7078
6918
|
*
|
|
7079
6919
|
* @returns Value of property `primaryCalendarType`
|
|
7080
6920
|
*/
|
|
7081
|
-
getPrimaryCalendarType(): CalendarType
|
|
6921
|
+
getPrimaryCalendarType(): CalendarType;
|
|
7082
6922
|
/**
|
|
7083
6923
|
* @since 1.104.0
|
|
7084
6924
|
*
|
|
@@ -7089,7 +6929,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7089
6929
|
*
|
|
7090
6930
|
* @returns Value of property `secondaryCalendarType`
|
|
7091
6931
|
*/
|
|
7092
|
-
getSecondaryCalendarType(): CalendarType
|
|
6932
|
+
getSecondaryCalendarType(): CalendarType;
|
|
7093
6933
|
/**
|
|
7094
6934
|
* @since 1.74
|
|
7095
6935
|
*
|
|
@@ -7255,7 +7095,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7255
7095
|
/**
|
|
7256
7096
|
* New value for property `primaryCalendarType`
|
|
7257
7097
|
*/
|
|
7258
|
-
sPrimaryCalendarType: CalendarType
|
|
7098
|
+
sPrimaryCalendarType: CalendarType
|
|
7259
7099
|
): this;
|
|
7260
7100
|
/**
|
|
7261
7101
|
* @since 1.104.0
|
|
@@ -7273,7 +7113,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7273
7113
|
/**
|
|
7274
7114
|
* New value for property `secondaryCalendarType`
|
|
7275
7115
|
*/
|
|
7276
|
-
sSecondaryCalendarType: CalendarType
|
|
7116
|
+
sSecondaryCalendarType: CalendarType
|
|
7277
7117
|
): this;
|
|
7278
7118
|
/**
|
|
7279
7119
|
* @deprecated (since 1.34.0) - replaced by `date` property
|
|
@@ -7358,10 +7198,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7358
7198
|
* If set, the calendar type is used for display. If not set, the calendar type of the global configuration
|
|
7359
7199
|
* is used.
|
|
7360
7200
|
*/
|
|
7361
|
-
primaryCalendarType?:
|
|
7362
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
7363
|
-
| PropertyBindingInfo
|
|
7364
|
-
| `{${string}}`;
|
|
7201
|
+
primaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
7365
7202
|
|
|
7366
7203
|
/**
|
|
7367
7204
|
* @since 1.104.0
|
|
@@ -7369,10 +7206,7 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7369
7206
|
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
7370
7207
|
* the primary calendar type
|
|
7371
7208
|
*/
|
|
7372
|
-
secondaryCalendarType?:
|
|
7373
|
-
| (CalendarType | keyof typeof CalendarType)
|
|
7374
|
-
| PropertyBindingInfo
|
|
7375
|
-
| `{${string}}`;
|
|
7209
|
+
secondaryCalendarType?: CalendarType | PropertyBindingInfo | `{${string}}`;
|
|
7376
7210
|
|
|
7377
7211
|
/**
|
|
7378
7212
|
* @since 1.74
|
|
@@ -7400,22 +7234,10 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7400
7234
|
|
|
7401
7235
|
export interface YearPicker$PageChangeEventParameters {}
|
|
7402
7236
|
|
|
7403
|
-
/**
|
|
7404
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'YearPicker$PageChangeEventParameters'
|
|
7405
|
-
* in 1.115.1 and any later releases.
|
|
7406
|
-
*/
|
|
7407
|
-
export type $YearPickerPageChangeEventParameters = YearPicker$PageChangeEventParameters;
|
|
7408
|
-
|
|
7409
7237
|
export type YearPicker$PageChangeEvent = Event<YearPicker$PageChangeEventParameters>;
|
|
7410
7238
|
|
|
7411
7239
|
export interface YearPicker$SelectEventParameters {}
|
|
7412
7240
|
|
|
7413
|
-
/**
|
|
7414
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'YearPicker$SelectEventParameters'
|
|
7415
|
-
* in 1.115.1 and any later releases.
|
|
7416
|
-
*/
|
|
7417
|
-
export type $YearPickerSelectEventParameters = YearPicker$SelectEventParameters;
|
|
7418
|
-
|
|
7419
7241
|
export type YearPicker$SelectEvent = Event<YearPicker$SelectEventParameters>;
|
|
7420
7242
|
}
|
|
7421
7243
|
|
|
@@ -9490,32 +9312,14 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
9490
9312
|
|
|
9491
9313
|
export interface CalendarMonthInterval$CancelEventParameters {}
|
|
9492
9314
|
|
|
9493
|
-
/**
|
|
9494
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$CancelEventParameters'
|
|
9495
|
-
* in 1.115.1 and any later releases.
|
|
9496
|
-
*/
|
|
9497
|
-
export type $CalendarMonthIntervalCancelEventParameters = CalendarMonthInterval$CancelEventParameters;
|
|
9498
|
-
|
|
9499
9315
|
export type CalendarMonthInterval$CancelEvent = Event<CalendarMonthInterval$CancelEventParameters>;
|
|
9500
9316
|
|
|
9501
9317
|
export interface CalendarMonthInterval$SelectEventParameters {}
|
|
9502
9318
|
|
|
9503
|
-
/**
|
|
9504
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$SelectEventParameters'
|
|
9505
|
-
* in 1.115.1 and any later releases.
|
|
9506
|
-
*/
|
|
9507
|
-
export type $CalendarMonthIntervalSelectEventParameters = CalendarMonthInterval$SelectEventParameters;
|
|
9508
|
-
|
|
9509
9319
|
export type CalendarMonthInterval$SelectEvent = Event<CalendarMonthInterval$SelectEventParameters>;
|
|
9510
9320
|
|
|
9511
9321
|
export interface CalendarMonthInterval$StartDateChangeEventParameters {}
|
|
9512
9322
|
|
|
9513
|
-
/**
|
|
9514
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$StartDateChangeEventParameters'
|
|
9515
|
-
* in 1.115.1 and any later releases.
|
|
9516
|
-
*/
|
|
9517
|
-
export type $CalendarMonthIntervalStartDateChangeEventParameters = CalendarMonthInterval$StartDateChangeEventParameters;
|
|
9518
|
-
|
|
9519
9323
|
export type CalendarMonthInterval$StartDateChangeEvent = Event<CalendarMonthInterval$StartDateChangeEventParameters>;
|
|
9520
9324
|
}
|
|
9521
9325
|
|
|
@@ -11025,7 +10829,7 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11025
10829
|
/**
|
|
11026
10830
|
* Fired if an appointment was selected
|
|
11027
10831
|
*/
|
|
11028
|
-
select?: (oEvent:
|
|
10832
|
+
select?: (oEvent: CalendarRow$SelectEvent) => void;
|
|
11029
10833
|
|
|
11030
10834
|
/**
|
|
11031
10835
|
* `startDate` was changed while navigating in `CalendarRow`
|
|
@@ -11036,16 +10840,14 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11036
10840
|
* The `CalendarRow` should be left while navigating. (Arrow up or arrow down.) The caller should determine
|
|
11037
10841
|
* the next control to be focused
|
|
11038
10842
|
*/
|
|
11039
|
-
leaveRow?: (oEvent:
|
|
10843
|
+
leaveRow?: (oEvent: CalendarRow$LeaveRowEvent) => void;
|
|
11040
10844
|
|
|
11041
10845
|
/**
|
|
11042
10846
|
* @since 1.38.0
|
|
11043
10847
|
*
|
|
11044
10848
|
* Fired if an interval was selected
|
|
11045
10849
|
*/
|
|
11046
|
-
intervalSelect?: (
|
|
11047
|
-
oEvent: Event<CalendarRow$IntervalSelectEventParameters>
|
|
11048
|
-
) => void;
|
|
10850
|
+
intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
|
|
11049
10851
|
}
|
|
11050
10852
|
|
|
11051
10853
|
export interface CalendarRow$IntervalSelectEventParameters {
|
|
@@ -11065,12 +10867,6 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11065
10867
|
subInterval?: boolean;
|
|
11066
10868
|
}
|
|
11067
10869
|
|
|
11068
|
-
/**
|
|
11069
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$IntervalSelectEventParameters'
|
|
11070
|
-
* in 1.115.1 and any later releases.
|
|
11071
|
-
*/
|
|
11072
|
-
export type $CalendarRowIntervalSelectEventParameters = CalendarRow$IntervalSelectEventParameters;
|
|
11073
|
-
|
|
11074
10870
|
export type CalendarRow$IntervalSelectEvent = Event<CalendarRow$IntervalSelectEventParameters>;
|
|
11075
10871
|
|
|
11076
10872
|
export interface CalendarRow$LeaveRowEventParameters {
|
|
@@ -11080,12 +10876,6 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11080
10876
|
type?: string;
|
|
11081
10877
|
}
|
|
11082
10878
|
|
|
11083
|
-
/**
|
|
11084
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$LeaveRowEventParameters'
|
|
11085
|
-
* in 1.115.1 and any later releases.
|
|
11086
|
-
*/
|
|
11087
|
-
export type $CalendarRowLeaveRowEventParameters = CalendarRow$LeaveRowEventParameters;
|
|
11088
|
-
|
|
11089
10879
|
export type CalendarRow$LeaveRowEvent = Event<CalendarRow$LeaveRowEventParameters>;
|
|
11090
10880
|
|
|
11091
10881
|
export interface CalendarRow$SelectEventParameters {
|
|
@@ -11111,22 +10901,10 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
11111
10901
|
domRefId?: string;
|
|
11112
10902
|
}
|
|
11113
10903
|
|
|
11114
|
-
/**
|
|
11115
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$SelectEventParameters'
|
|
11116
|
-
* in 1.115.1 and any later releases.
|
|
11117
|
-
*/
|
|
11118
|
-
export type $CalendarRowSelectEventParameters = CalendarRow$SelectEventParameters;
|
|
11119
|
-
|
|
11120
10904
|
export type CalendarRow$SelectEvent = Event<CalendarRow$SelectEventParameters>;
|
|
11121
10905
|
|
|
11122
10906
|
export interface CalendarRow$StartDateChangeEventParameters {}
|
|
11123
10907
|
|
|
11124
|
-
/**
|
|
11125
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$StartDateChangeEventParameters'
|
|
11126
|
-
* in 1.115.1 and any later releases.
|
|
11127
|
-
*/
|
|
11128
|
-
export type $CalendarRowStartDateChangeEventParameters = CalendarRow$StartDateChangeEventParameters;
|
|
11129
|
-
|
|
11130
10908
|
export type CalendarRow$StartDateChangeEvent = Event<CalendarRow$StartDateChangeEventParameters>;
|
|
11131
10909
|
}
|
|
11132
10910
|
|
|
@@ -12058,32 +11836,14 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
12058
11836
|
|
|
12059
11837
|
export interface CalendarTimeInterval$CancelEventParameters {}
|
|
12060
11838
|
|
|
12061
|
-
/**
|
|
12062
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$CancelEventParameters'
|
|
12063
|
-
* in 1.115.1 and any later releases.
|
|
12064
|
-
*/
|
|
12065
|
-
export type $CalendarTimeIntervalCancelEventParameters = CalendarTimeInterval$CancelEventParameters;
|
|
12066
|
-
|
|
12067
11839
|
export type CalendarTimeInterval$CancelEvent = Event<CalendarTimeInterval$CancelEventParameters>;
|
|
12068
11840
|
|
|
12069
11841
|
export interface CalendarTimeInterval$SelectEventParameters {}
|
|
12070
11842
|
|
|
12071
|
-
/**
|
|
12072
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$SelectEventParameters'
|
|
12073
|
-
* in 1.115.1 and any later releases.
|
|
12074
|
-
*/
|
|
12075
|
-
export type $CalendarTimeIntervalSelectEventParameters = CalendarTimeInterval$SelectEventParameters;
|
|
12076
|
-
|
|
12077
11843
|
export type CalendarTimeInterval$SelectEvent = Event<CalendarTimeInterval$SelectEventParameters>;
|
|
12078
11844
|
|
|
12079
11845
|
export interface CalendarTimeInterval$StartDateChangeEventParameters {}
|
|
12080
11846
|
|
|
12081
|
-
/**
|
|
12082
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$StartDateChangeEventParameters'
|
|
12083
|
-
* in 1.115.1 and any later releases.
|
|
12084
|
-
*/
|
|
12085
|
-
export type $CalendarTimeIntervalStartDateChangeEventParameters = CalendarTimeInterval$StartDateChangeEventParameters;
|
|
12086
|
-
|
|
12087
11847
|
export type CalendarTimeInterval$StartDateChangeEvent = Event<CalendarTimeInterval$StartDateChangeEventParameters>;
|
|
12088
11848
|
}
|
|
12089
11849
|
|
|
@@ -12504,7 +12264,7 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12504
12264
|
*
|
|
12505
12265
|
* **Note:** When the user action is mouse dragging, the `change` event fires on the mouseup event.
|
|
12506
12266
|
*/
|
|
12507
|
-
change?: (oEvent:
|
|
12267
|
+
change?: (oEvent: ColorPicker$ChangeEvent) => void;
|
|
12508
12268
|
|
|
12509
12269
|
/**
|
|
12510
12270
|
* @since 1.48.0
|
|
@@ -12513,7 +12273,7 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12513
12273
|
*
|
|
12514
12274
|
* **Note:** When the user action is mouse move, the `liveChange` event is fired during the mousedown event.
|
|
12515
12275
|
*/
|
|
12516
|
-
liveChange?: (oEvent:
|
|
12276
|
+
liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
|
|
12517
12277
|
}
|
|
12518
12278
|
|
|
12519
12279
|
export interface ColorPicker$ChangeEventParameters {
|
|
@@ -12563,12 +12323,6 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12563
12323
|
alpha?: string;
|
|
12564
12324
|
}
|
|
12565
12325
|
|
|
12566
|
-
/**
|
|
12567
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPicker$ChangeEventParameters'
|
|
12568
|
-
* in 1.115.1 and any later releases.
|
|
12569
|
-
*/
|
|
12570
|
-
export type $ColorPickerChangeEventParameters = ColorPicker$ChangeEventParameters;
|
|
12571
|
-
|
|
12572
12326
|
export type ColorPicker$ChangeEvent = Event<ColorPicker$ChangeEventParameters>;
|
|
12573
12327
|
|
|
12574
12328
|
export interface ColorPicker$LiveChangeEventParameters {
|
|
@@ -12618,12 +12372,6 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
12618
12372
|
alpha?: string;
|
|
12619
12373
|
}
|
|
12620
12374
|
|
|
12621
|
-
/**
|
|
12622
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPicker$LiveChangeEventParameters'
|
|
12623
|
-
* in 1.115.1 and any later releases.
|
|
12624
|
-
*/
|
|
12625
|
-
export type $ColorPickerLiveChangeEventParameters = ColorPicker$LiveChangeEventParameters;
|
|
12626
|
-
|
|
12627
12375
|
export type ColorPicker$LiveChangeEvent = Event<ColorPicker$LiveChangeEventParameters>;
|
|
12628
12376
|
}
|
|
12629
12377
|
|
|
@@ -13054,16 +12802,14 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13054
12802
|
*
|
|
13055
12803
|
* Fired when the submit button of the popover is clicked.
|
|
13056
12804
|
*/
|
|
13057
|
-
change?: (oEvent:
|
|
12805
|
+
change?: (oEvent: ColorPickerPopover$ChangeEvent) => void;
|
|
13058
12806
|
|
|
13059
12807
|
/**
|
|
13060
12808
|
* @since 1.85
|
|
13061
12809
|
*
|
|
13062
12810
|
* Fired when the value is changed by user interaction in the internal ColorPicker
|
|
13063
12811
|
*/
|
|
13064
|
-
liveChange?: (
|
|
13065
|
-
oEvent: Event<ColorPickerPopover$LiveChangeEventParameters>
|
|
13066
|
-
) => void;
|
|
12812
|
+
liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
|
|
13067
12813
|
}
|
|
13068
12814
|
|
|
13069
12815
|
export interface ColorPickerPopover$ChangeEventParameters {
|
|
@@ -13113,12 +12859,6 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13113
12859
|
alpha?: string;
|
|
13114
12860
|
}
|
|
13115
12861
|
|
|
13116
|
-
/**
|
|
13117
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPickerPopover$ChangeEventParameters'
|
|
13118
|
-
* in 1.115.1 and any later releases.
|
|
13119
|
-
*/
|
|
13120
|
-
export type $ColorPickerPopoverChangeEventParameters = ColorPickerPopover$ChangeEventParameters;
|
|
13121
|
-
|
|
13122
12862
|
export type ColorPickerPopover$ChangeEvent = Event<ColorPickerPopover$ChangeEventParameters>;
|
|
13123
12863
|
|
|
13124
12864
|
export interface ColorPickerPopover$LiveChangeEventParameters {
|
|
@@ -13168,12 +12908,6 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
13168
12908
|
alpha?: string;
|
|
13169
12909
|
}
|
|
13170
12910
|
|
|
13171
|
-
/**
|
|
13172
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPickerPopover$LiveChangeEventParameters'
|
|
13173
|
-
* in 1.115.1 and any later releases.
|
|
13174
|
-
*/
|
|
13175
|
-
export type $ColorPickerPopoverLiveChangeEventParameters = ColorPickerPopover$LiveChangeEventParameters;
|
|
13176
|
-
|
|
13177
12911
|
export type ColorPickerPopover$LiveChangeEvent = Event<ColorPickerPopover$LiveChangeEventParameters>;
|
|
13178
12912
|
}
|
|
13179
12913
|
|
|
@@ -16662,7 +16396,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16662
16396
|
* **Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in
|
|
16663
16397
|
* Chrome browser when the Cancel button of the uploads window is pressed.
|
|
16664
16398
|
*/
|
|
16665
|
-
change?: (oEvent:
|
|
16399
|
+
change?: (oEvent: FileUploader$ChangeEvent) => void;
|
|
16666
16400
|
|
|
16667
16401
|
/**
|
|
16668
16402
|
* Event is fired as soon as the upload request is completed (either successful or unsuccessful).
|
|
@@ -16671,29 +16405,23 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16671
16405
|
* progress of the upload can be monitored by listening to the `uploadProgress` event. However, this covers
|
|
16672
16406
|
* only the client side of the upload process and does not give any success status from the server.
|
|
16673
16407
|
*/
|
|
16674
|
-
uploadComplete?: (
|
|
16675
|
-
oEvent: Event<FileUploader$UploadCompleteEventParameters>
|
|
16676
|
-
) => void;
|
|
16408
|
+
uploadComplete?: (oEvent: FileUploader$UploadCompleteEvent) => void;
|
|
16677
16409
|
|
|
16678
16410
|
/**
|
|
16679
16411
|
* Event is fired when the type of a file does not match the `mimeType` or `fileType` property.
|
|
16680
16412
|
*/
|
|
16681
|
-
typeMissmatch?: (
|
|
16682
|
-
oEvent: Event<FileUploader$TypeMissmatchEventParameters>
|
|
16683
|
-
) => void;
|
|
16413
|
+
typeMissmatch?: (oEvent: FileUploader$TypeMissmatchEvent) => void;
|
|
16684
16414
|
|
|
16685
16415
|
/**
|
|
16686
16416
|
* Event is fired when the size of a file is above the `maximumFileSize` property. This event is not supported
|
|
16687
16417
|
* by Internet Explorer 9 (same restriction as for the property `maximumFileSize`).
|
|
16688
16418
|
*/
|
|
16689
|
-
fileSizeExceed?: (
|
|
16690
|
-
oEvent: Event<FileUploader$FileSizeExceedEventParameters>
|
|
16691
|
-
) => void;
|
|
16419
|
+
fileSizeExceed?: (oEvent: FileUploader$FileSizeExceedEvent) => void;
|
|
16692
16420
|
|
|
16693
16421
|
/**
|
|
16694
16422
|
* Event is fired when the size of the file is 0
|
|
16695
16423
|
*/
|
|
16696
|
-
fileEmpty?: (oEvent:
|
|
16424
|
+
fileEmpty?: (oEvent: FileUploader$FileEmptyEvent) => void;
|
|
16697
16425
|
|
|
16698
16426
|
/**
|
|
16699
16427
|
* Event is fired when the file is allowed for upload on client side.
|
|
@@ -16711,9 +16439,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16711
16439
|
* This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
|
|
16712
16440
|
* Internet Explorer 9.
|
|
16713
16441
|
*/
|
|
16714
|
-
uploadProgress?: (
|
|
16715
|
-
oEvent: Event<FileUploader$UploadProgressEventParameters>
|
|
16716
|
-
) => void;
|
|
16442
|
+
uploadProgress?: (oEvent: FileUploader$UploadProgressEvent) => void;
|
|
16717
16443
|
|
|
16718
16444
|
/**
|
|
16719
16445
|
* @since 1.24.0
|
|
@@ -16723,9 +16449,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16723
16449
|
* This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
|
|
16724
16450
|
* Internet Explorer 9.
|
|
16725
16451
|
*/
|
|
16726
|
-
uploadAborted?: (
|
|
16727
|
-
oEvent: Event<FileUploader$UploadAbortedEventParameters>
|
|
16728
|
-
) => void;
|
|
16452
|
+
uploadAborted?: (oEvent: FileUploader$UploadAbortedEvent) => void;
|
|
16729
16453
|
|
|
16730
16454
|
/**
|
|
16731
16455
|
* @since 1.24.0
|
|
@@ -16734,7 +16458,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16734
16458
|
* property.
|
|
16735
16459
|
*/
|
|
16736
16460
|
filenameLengthExceed?: (
|
|
16737
|
-
oEvent:
|
|
16461
|
+
oEvent: FileUploader$FilenameLengthExceedEvent
|
|
16738
16462
|
) => void;
|
|
16739
16463
|
|
|
16740
16464
|
/**
|
|
@@ -16742,9 +16466,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16742
16466
|
*
|
|
16743
16467
|
* Event is fired before an upload is started.
|
|
16744
16468
|
*/
|
|
16745
|
-
uploadStart?: (
|
|
16746
|
-
oEvent: Event<FileUploader$UploadStartEventParameters>
|
|
16747
|
-
) => void;
|
|
16469
|
+
uploadStart?: (oEvent: FileUploader$UploadStartEvent) => void;
|
|
16748
16470
|
|
|
16749
16471
|
/**
|
|
16750
16472
|
* @since 1.102.0
|
|
@@ -16763,22 +16485,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16763
16485
|
|
|
16764
16486
|
export interface FileUploader$AfterDialogCloseEventParameters {}
|
|
16765
16487
|
|
|
16766
|
-
/**
|
|
16767
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$AfterDialogCloseEventParameters'
|
|
16768
|
-
* in 1.115.1 and any later releases.
|
|
16769
|
-
*/
|
|
16770
|
-
export type $FileUploaderAfterDialogCloseEventParameters = FileUploader$AfterDialogCloseEventParameters;
|
|
16771
|
-
|
|
16772
16488
|
export type FileUploader$AfterDialogCloseEvent = Event<FileUploader$AfterDialogCloseEventParameters>;
|
|
16773
16489
|
|
|
16774
16490
|
export interface FileUploader$BeforeDialogOpenEventParameters {}
|
|
16775
16491
|
|
|
16776
|
-
/**
|
|
16777
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$BeforeDialogOpenEventParameters'
|
|
16778
|
-
* in 1.115.1 and any later releases.
|
|
16779
|
-
*/
|
|
16780
|
-
export type $FileUploaderBeforeDialogOpenEventParameters = FileUploader$BeforeDialogOpenEventParameters;
|
|
16781
|
-
|
|
16782
16492
|
export type FileUploader$BeforeDialogOpenEvent = Event<FileUploader$BeforeDialogOpenEventParameters>;
|
|
16783
16493
|
|
|
16784
16494
|
export interface FileUploader$ChangeEventParameters {
|
|
@@ -16793,22 +16503,10 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16793
16503
|
files?: object[];
|
|
16794
16504
|
}
|
|
16795
16505
|
|
|
16796
|
-
/**
|
|
16797
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$ChangeEventParameters'
|
|
16798
|
-
* in 1.115.1 and any later releases.
|
|
16799
|
-
*/
|
|
16800
|
-
export type $FileUploaderChangeEventParameters = FileUploader$ChangeEventParameters;
|
|
16801
|
-
|
|
16802
16506
|
export type FileUploader$ChangeEvent = Event<FileUploader$ChangeEventParameters>;
|
|
16803
16507
|
|
|
16804
16508
|
export interface FileUploader$FileAllowedEventParameters {}
|
|
16805
16509
|
|
|
16806
|
-
/**
|
|
16807
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileAllowedEventParameters'
|
|
16808
|
-
* in 1.115.1 and any later releases.
|
|
16809
|
-
*/
|
|
16810
|
-
export type $FileUploaderFileAllowedEventParameters = FileUploader$FileAllowedEventParameters;
|
|
16811
|
-
|
|
16812
16510
|
export type FileUploader$FileAllowedEvent = Event<FileUploader$FileAllowedEventParameters>;
|
|
16813
16511
|
|
|
16814
16512
|
export interface FileUploader$FileEmptyEventParameters {
|
|
@@ -16818,12 +16516,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16818
16516
|
fileName?: string;
|
|
16819
16517
|
}
|
|
16820
16518
|
|
|
16821
|
-
/**
|
|
16822
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileEmptyEventParameters'
|
|
16823
|
-
* in 1.115.1 and any later releases.
|
|
16824
|
-
*/
|
|
16825
|
-
export type $FileUploaderFileEmptyEventParameters = FileUploader$FileEmptyEventParameters;
|
|
16826
|
-
|
|
16827
16519
|
export type FileUploader$FileEmptyEvent = Event<FileUploader$FileEmptyEventParameters>;
|
|
16828
16520
|
|
|
16829
16521
|
export interface FileUploader$FilenameLengthExceedEventParameters {
|
|
@@ -16833,12 +16525,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16833
16525
|
fileName?: string;
|
|
16834
16526
|
}
|
|
16835
16527
|
|
|
16836
|
-
/**
|
|
16837
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FilenameLengthExceedEventParameters'
|
|
16838
|
-
* in 1.115.1 and any later releases.
|
|
16839
|
-
*/
|
|
16840
|
-
export type $FileUploaderFilenameLengthExceedEventParameters = FileUploader$FilenameLengthExceedEventParameters;
|
|
16841
|
-
|
|
16842
16528
|
export type FileUploader$FilenameLengthExceedEvent = Event<FileUploader$FilenameLengthExceedEventParameters>;
|
|
16843
16529
|
|
|
16844
16530
|
export interface FileUploader$FileSizeExceedEventParameters {
|
|
@@ -16853,12 +16539,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16853
16539
|
fileSize?: string;
|
|
16854
16540
|
}
|
|
16855
16541
|
|
|
16856
|
-
/**
|
|
16857
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileSizeExceedEventParameters'
|
|
16858
|
-
* in 1.115.1 and any later releases.
|
|
16859
|
-
*/
|
|
16860
|
-
export type $FileUploaderFileSizeExceedEventParameters = FileUploader$FileSizeExceedEventParameters;
|
|
16861
|
-
|
|
16862
16542
|
export type FileUploader$FileSizeExceedEvent = Event<FileUploader$FileSizeExceedEventParameters>;
|
|
16863
16543
|
|
|
16864
16544
|
export interface FileUploader$TypeMissmatchEventParameters {
|
|
@@ -16878,12 +16558,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16878
16558
|
mimeType?: string;
|
|
16879
16559
|
}
|
|
16880
16560
|
|
|
16881
|
-
/**
|
|
16882
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$TypeMissmatchEventParameters'
|
|
16883
|
-
* in 1.115.1 and any later releases.
|
|
16884
|
-
*/
|
|
16885
|
-
export type $FileUploaderTypeMissmatchEventParameters = FileUploader$TypeMissmatchEventParameters;
|
|
16886
|
-
|
|
16887
16561
|
export type FileUploader$TypeMissmatchEvent = Event<FileUploader$TypeMissmatchEventParameters>;
|
|
16888
16562
|
|
|
16889
16563
|
export interface FileUploader$UploadAbortedEventParameters {
|
|
@@ -16901,12 +16575,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16901
16575
|
requestHeaders?: object[];
|
|
16902
16576
|
}
|
|
16903
16577
|
|
|
16904
|
-
/**
|
|
16905
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadAbortedEventParameters'
|
|
16906
|
-
* in 1.115.1 and any later releases.
|
|
16907
|
-
*/
|
|
16908
|
-
export type $FileUploaderUploadAbortedEventParameters = FileUploader$UploadAbortedEventParameters;
|
|
16909
|
-
|
|
16910
16578
|
export type FileUploader$UploadAbortedEvent = Event<FileUploader$UploadAbortedEventParameters>;
|
|
16911
16579
|
|
|
16912
16580
|
export interface FileUploader$UploadCompleteEventParameters {
|
|
@@ -16969,12 +16637,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
16969
16637
|
requestHeaders?: object[];
|
|
16970
16638
|
}
|
|
16971
16639
|
|
|
16972
|
-
/**
|
|
16973
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadCompleteEventParameters'
|
|
16974
|
-
* in 1.115.1 and any later releases.
|
|
16975
|
-
*/
|
|
16976
|
-
export type $FileUploaderUploadCompleteEventParameters = FileUploader$UploadCompleteEventParameters;
|
|
16977
|
-
|
|
16978
16640
|
export type FileUploader$UploadCompleteEvent = Event<FileUploader$UploadCompleteEventParameters>;
|
|
16979
16641
|
|
|
16980
16642
|
export interface FileUploader$UploadProgressEventParameters {
|
|
@@ -17007,12 +16669,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17007
16669
|
requestHeaders?: object[];
|
|
17008
16670
|
}
|
|
17009
16671
|
|
|
17010
|
-
/**
|
|
17011
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadProgressEventParameters'
|
|
17012
|
-
* in 1.115.1 and any later releases.
|
|
17013
|
-
*/
|
|
17014
|
-
export type $FileUploaderUploadProgressEventParameters = FileUploader$UploadProgressEventParameters;
|
|
17015
|
-
|
|
17016
16672
|
export type FileUploader$UploadProgressEvent = Event<FileUploader$UploadProgressEventParameters>;
|
|
17017
16673
|
|
|
17018
16674
|
export interface FileUploader$UploadStartEventParameters {
|
|
@@ -17030,12 +16686,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
17030
16686
|
requestHeaders?: object[];
|
|
17031
16687
|
}
|
|
17032
16688
|
|
|
17033
|
-
/**
|
|
17034
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadStartEventParameters'
|
|
17035
|
-
* in 1.115.1 and any later releases.
|
|
17036
|
-
*/
|
|
17037
|
-
export type $FileUploaderUploadStartEventParameters = FileUploader$UploadStartEventParameters;
|
|
17038
|
-
|
|
17039
16689
|
export type FileUploader$UploadStartEvent = Event<FileUploader$UploadStartEventParameters>;
|
|
17040
16690
|
}
|
|
17041
16691
|
|
|
@@ -17841,7 +17491,7 @@ declare module "sap/ui/unified/Menu" {
|
|
|
17841
17491
|
* one of its direct or indirect submenus. **Note:** There is also a select event available for each single
|
|
17842
17492
|
* menu item. This event and the event of the menu items are redundant.
|
|
17843
17493
|
*/
|
|
17844
|
-
itemSelect?: (oEvent:
|
|
17494
|
+
itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
|
|
17845
17495
|
}
|
|
17846
17496
|
|
|
17847
17497
|
export interface Menu$ItemSelectEventParameters {
|
|
@@ -17851,12 +17501,6 @@ declare module "sap/ui/unified/Menu" {
|
|
|
17851
17501
|
item?: MenuItemBase;
|
|
17852
17502
|
}
|
|
17853
17503
|
|
|
17854
|
-
/**
|
|
17855
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Menu$ItemSelectEventParameters'
|
|
17856
|
-
* in 1.115.1 and any later releases.
|
|
17857
|
-
*/
|
|
17858
|
-
export type $MenuItemSelectEventParameters = Menu$ItemSelectEventParameters;
|
|
17859
|
-
|
|
17860
17504
|
export type Menu$ItemSelectEvent = Event<Menu$ItemSelectEventParameters>;
|
|
17861
17505
|
}
|
|
17862
17506
|
|
|
@@ -18406,7 +18050,7 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
18406
18050
|
* a submenu. In general, applications must not handle event in this case because the user selection opens
|
|
18407
18051
|
* the sub menu.
|
|
18408
18052
|
*/
|
|
18409
|
-
select?: (oEvent:
|
|
18053
|
+
select?: (oEvent: MenuItemBase$SelectEvent) => void;
|
|
18410
18054
|
}
|
|
18411
18055
|
|
|
18412
18056
|
export interface MenuItemBase$SelectEventParameters {
|
|
@@ -18416,12 +18060,6 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
18416
18060
|
item?: MenuItemBase;
|
|
18417
18061
|
}
|
|
18418
18062
|
|
|
18419
|
-
/**
|
|
18420
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuItemBase$SelectEventParameters'
|
|
18421
|
-
* in 1.115.1 and any later releases.
|
|
18422
|
-
*/
|
|
18423
|
-
export type $MenuItemBaseSelectEventParameters = MenuItemBase$SelectEventParameters;
|
|
18424
|
-
|
|
18425
18063
|
export type MenuItemBase$SelectEvent = Event<MenuItemBase$SelectEventParameters>;
|
|
18426
18064
|
}
|
|
18427
18065
|
|
|
@@ -19772,12 +19410,6 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
19772
19410
|
|
|
19773
19411
|
export interface ShellHeadItem$PressEventParameters {}
|
|
19774
19412
|
|
|
19775
|
-
/**
|
|
19776
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellHeadItem$PressEventParameters'
|
|
19777
|
-
* in 1.115.1 and any later releases.
|
|
19778
|
-
*/
|
|
19779
|
-
export type $ShellHeadItemPressEventParameters = ShellHeadItem$PressEventParameters;
|
|
19780
|
-
|
|
19781
19413
|
export type ShellHeadItem$PressEvent = Event<ShellHeadItem$PressEventParameters>;
|
|
19782
19414
|
}
|
|
19783
19415
|
|
|
@@ -20085,12 +19717,6 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
20085
19717
|
|
|
20086
19718
|
export interface ShellHeadUserItem$PressEventParameters {}
|
|
20087
19719
|
|
|
20088
|
-
/**
|
|
20089
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellHeadUserItem$PressEventParameters'
|
|
20090
|
-
* in 1.115.1 and any later releases.
|
|
20091
|
-
*/
|
|
20092
|
-
export type $ShellHeadUserItemPressEventParameters = ShellHeadUserItem$PressEventParameters;
|
|
20093
|
-
|
|
20094
19720
|
export type ShellHeadUserItem$PressEvent = Event<ShellHeadUserItem$PressEventParameters>;
|
|
20095
19721
|
}
|
|
20096
19722
|
|
|
@@ -20796,12 +20422,6 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
20796
20422
|
|
|
20797
20423
|
export interface ShellOverlay$ClosedEventParameters {}
|
|
20798
20424
|
|
|
20799
|
-
/**
|
|
20800
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellOverlay$ClosedEventParameters'
|
|
20801
|
-
* in 1.115.1 and any later releases.
|
|
20802
|
-
*/
|
|
20803
|
-
export type $ShellOverlayClosedEventParameters = ShellOverlay$ClosedEventParameters;
|
|
20804
|
-
|
|
20805
20425
|
export type ShellOverlay$ClosedEvent = Event<ShellOverlay$ClosedEventParameters>;
|
|
20806
20426
|
}
|
|
20807
20427
|
|