@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/commons/library" {
|
|
4
4
|
import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
|
|
@@ -1102,21 +1102,17 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1102
1102
|
/**
|
|
1103
1103
|
* Event is triggered when the user opens a section.
|
|
1104
1104
|
*/
|
|
1105
|
-
sectionOpen?: (oEvent:
|
|
1105
|
+
sectionOpen?: (oEvent: Accordion$SectionOpenEvent) => void;
|
|
1106
1106
|
|
|
1107
1107
|
/**
|
|
1108
1108
|
* Event is triggered when the user closes a section.
|
|
1109
1109
|
*/
|
|
1110
|
-
sectionClose?: (
|
|
1111
|
-
oEvent: Event<Accordion$SectionCloseEventParameters>
|
|
1112
|
-
) => void;
|
|
1110
|
+
sectionClose?: (oEvent: Accordion$SectionCloseEvent) => void;
|
|
1113
1111
|
|
|
1114
1112
|
/**
|
|
1115
1113
|
* Event is triggered when the user changes the position of a section.
|
|
1116
1114
|
*/
|
|
1117
|
-
sectionsReorder?: (
|
|
1118
|
-
oEvent: Event<Accordion$SectionsReorderEventParameters>
|
|
1119
|
-
) => void;
|
|
1115
|
+
sectionsReorder?: (oEvent: Accordion$SectionsReorderEvent) => void;
|
|
1120
1116
|
}
|
|
1121
1117
|
|
|
1122
1118
|
export interface Accordion$SectionCloseEventParameters {
|
|
@@ -1126,12 +1122,6 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1126
1122
|
closeSectionId?: string;
|
|
1127
1123
|
}
|
|
1128
1124
|
|
|
1129
|
-
/**
|
|
1130
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Accordion$SectionCloseEventParameters'
|
|
1131
|
-
* in 1.115.1 and any later releases.
|
|
1132
|
-
*/
|
|
1133
|
-
export type $AccordionSectionCloseEventParameters = Accordion$SectionCloseEventParameters;
|
|
1134
|
-
|
|
1135
1125
|
export type Accordion$SectionCloseEvent = Event<Accordion$SectionCloseEventParameters>;
|
|
1136
1126
|
|
|
1137
1127
|
export interface Accordion$SectionOpenEventParameters {
|
|
@@ -1146,12 +1136,6 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1146
1136
|
closeSectionIds?: string[];
|
|
1147
1137
|
}
|
|
1148
1138
|
|
|
1149
|
-
/**
|
|
1150
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Accordion$SectionOpenEventParameters'
|
|
1151
|
-
* in 1.115.1 and any later releases.
|
|
1152
|
-
*/
|
|
1153
|
-
export type $AccordionSectionOpenEventParameters = Accordion$SectionOpenEventParameters;
|
|
1154
|
-
|
|
1155
1139
|
export type Accordion$SectionOpenEvent = Event<Accordion$SectionOpenEventParameters>;
|
|
1156
1140
|
|
|
1157
1141
|
export interface Accordion$SectionsReorderEventParameters {
|
|
@@ -1166,12 +1150,6 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1166
1150
|
newIndex?: int;
|
|
1167
1151
|
}
|
|
1168
1152
|
|
|
1169
|
-
/**
|
|
1170
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Accordion$SectionsReorderEventParameters'
|
|
1171
|
-
* in 1.115.1 and any later releases.
|
|
1172
|
-
*/
|
|
1173
|
-
export type $AccordionSectionsReorderEventParameters = Accordion$SectionsReorderEventParameters;
|
|
1174
|
-
|
|
1175
1153
|
export type Accordion$SectionsReorderEvent = Event<Accordion$SectionsReorderEventParameters>;
|
|
1176
1154
|
}
|
|
1177
1155
|
|
|
@@ -1532,7 +1510,7 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1532
1510
|
/**
|
|
1533
1511
|
* Event is fired when the user scrolls the panel
|
|
1534
1512
|
*/
|
|
1535
|
-
scroll?: (oEvent:
|
|
1513
|
+
scroll?: (oEvent: AccordionSection$ScrollEvent) => void;
|
|
1536
1514
|
}
|
|
1537
1515
|
|
|
1538
1516
|
export interface AccordionSection$ScrollEventParameters {
|
|
@@ -1547,12 +1525,6 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1547
1525
|
top?: int;
|
|
1548
1526
|
}
|
|
1549
1527
|
|
|
1550
|
-
/**
|
|
1551
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AccordionSection$ScrollEventParameters'
|
|
1552
|
-
* in 1.115.1 and any later releases.
|
|
1553
|
-
*/
|
|
1554
|
-
export type $AccordionSectionScrollEventParameters = AccordionSection$ScrollEventParameters;
|
|
1555
|
-
|
|
1556
1528
|
export type AccordionSection$ScrollEvent = Event<AccordionSection$ScrollEventParameters>;
|
|
1557
1529
|
}
|
|
1558
1530
|
|
|
@@ -1868,12 +1840,6 @@ declare module "sap/ui/commons/ApplicationHeader" {
|
|
|
1868
1840
|
|
|
1869
1841
|
export interface ApplicationHeader$LogoffEventParameters {}
|
|
1870
1842
|
|
|
1871
|
-
/**
|
|
1872
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ApplicationHeader$LogoffEventParameters'
|
|
1873
|
-
* in 1.115.1 and any later releases.
|
|
1874
|
-
*/
|
|
1875
|
-
export type $ApplicationHeaderLogoffEventParameters = ApplicationHeader$LogoffEventParameters;
|
|
1876
|
-
|
|
1877
1843
|
export type ApplicationHeader$LogoffEvent = Event<ApplicationHeader$LogoffEventParameters>;
|
|
1878
1844
|
}
|
|
1879
1845
|
|
|
@@ -2307,7 +2273,7 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2307
2273
|
/**
|
|
2308
2274
|
* Fired when the user has changed the value and a suggestion list update should occur.
|
|
2309
2275
|
*/
|
|
2310
|
-
suggest?: (oEvent:
|
|
2276
|
+
suggest?: (oEvent: AutoComplete$SuggestEvent) => void;
|
|
2311
2277
|
}
|
|
2312
2278
|
|
|
2313
2279
|
export interface AutoComplete$SuggestEventParameters {
|
|
@@ -2317,12 +2283,6 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2317
2283
|
suggestValue?: string;
|
|
2318
2284
|
}
|
|
2319
2285
|
|
|
2320
|
-
/**
|
|
2321
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AutoComplete$SuggestEventParameters'
|
|
2322
|
-
* in 1.115.1 and any later releases.
|
|
2323
|
-
*/
|
|
2324
|
-
export type $AutoCompleteSuggestEventParameters = AutoComplete$SuggestEventParameters;
|
|
2325
|
-
|
|
2326
2286
|
export type AutoComplete$SuggestEvent = Event<AutoComplete$SuggestEventParameters>;
|
|
2327
2287
|
}
|
|
2328
2288
|
|
|
@@ -3533,12 +3493,6 @@ declare module "sap/ui/commons/Button" {
|
|
|
3533
3493
|
|
|
3534
3494
|
export interface Button$PressEventParameters {}
|
|
3535
3495
|
|
|
3536
|
-
/**
|
|
3537
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Button$PressEventParameters'
|
|
3538
|
-
* in 1.115.1 and any later releases.
|
|
3539
|
-
*/
|
|
3540
|
-
export type $ButtonPressEventParameters = Button$PressEventParameters;
|
|
3541
|
-
|
|
3542
3496
|
export type Button$PressEvent = Event<Button$PressEventParameters>;
|
|
3543
3497
|
}
|
|
3544
3498
|
|
|
@@ -4126,7 +4080,7 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4126
4080
|
/**
|
|
4127
4081
|
* The event is fired when the popup is opened.
|
|
4128
4082
|
*/
|
|
4129
|
-
open?: (oEvent:
|
|
4083
|
+
open?: (oEvent: CalloutBase$OpenEvent) => void;
|
|
4130
4084
|
|
|
4131
4085
|
/**
|
|
4132
4086
|
* Event is fired when the Callout window is closed.
|
|
@@ -4137,7 +4091,7 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4137
4091
|
* Event is fired before a Callout is displayed. Call the preventDefault method of the event object to postpone
|
|
4138
4092
|
* opening. Application may use this event to start asynchronous Ajax call to load the Callout content
|
|
4139
4093
|
*/
|
|
4140
|
-
beforeOpen?: (oEvent:
|
|
4094
|
+
beforeOpen?: (oEvent: CalloutBase$BeforeOpenEvent) => void;
|
|
4141
4095
|
|
|
4142
4096
|
/**
|
|
4143
4097
|
* @since 1.11.0
|
|
@@ -4154,22 +4108,10 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4154
4108
|
parent?: Control;
|
|
4155
4109
|
}
|
|
4156
4110
|
|
|
4157
|
-
/**
|
|
4158
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$BeforeOpenEventParameters'
|
|
4159
|
-
* in 1.115.1 and any later releases.
|
|
4160
|
-
*/
|
|
4161
|
-
export type $CalloutBaseBeforeOpenEventParameters = CalloutBase$BeforeOpenEventParameters;
|
|
4162
|
-
|
|
4163
4111
|
export type CalloutBase$BeforeOpenEvent = Event<CalloutBase$BeforeOpenEventParameters>;
|
|
4164
4112
|
|
|
4165
4113
|
export interface CalloutBase$CloseEventParameters {}
|
|
4166
4114
|
|
|
4167
|
-
/**
|
|
4168
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$CloseEventParameters'
|
|
4169
|
-
* in 1.115.1 and any later releases.
|
|
4170
|
-
*/
|
|
4171
|
-
export type $CalloutBaseCloseEventParameters = CalloutBase$CloseEventParameters;
|
|
4172
|
-
|
|
4173
4115
|
export type CalloutBase$CloseEvent = Event<CalloutBase$CloseEventParameters>;
|
|
4174
4116
|
|
|
4175
4117
|
export interface CalloutBase$OpenEventParameters {
|
|
@@ -4179,22 +4121,10 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4179
4121
|
parent?: Control;
|
|
4180
4122
|
}
|
|
4181
4123
|
|
|
4182
|
-
/**
|
|
4183
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$OpenEventParameters'
|
|
4184
|
-
* in 1.115.1 and any later releases.
|
|
4185
|
-
*/
|
|
4186
|
-
export type $CalloutBaseOpenEventParameters = CalloutBase$OpenEventParameters;
|
|
4187
|
-
|
|
4188
4124
|
export type CalloutBase$OpenEvent = Event<CalloutBase$OpenEventParameters>;
|
|
4189
4125
|
|
|
4190
4126
|
export interface CalloutBase$OpenedEventParameters {}
|
|
4191
4127
|
|
|
4192
|
-
/**
|
|
4193
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$OpenedEventParameters'
|
|
4194
|
-
* in 1.115.1 and any later releases.
|
|
4195
|
-
*/
|
|
4196
|
-
export type $CalloutBaseOpenedEventParameters = CalloutBase$OpenedEventParameters;
|
|
4197
|
-
|
|
4198
4128
|
export type CalloutBase$OpenedEvent = Event<CalloutBase$OpenedEventParameters>;
|
|
4199
4129
|
}
|
|
4200
4130
|
|
|
@@ -5235,7 +5165,7 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5235
5165
|
/**
|
|
5236
5166
|
* Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
|
|
5237
5167
|
*/
|
|
5238
|
-
change?: (oEvent:
|
|
5168
|
+
change?: (oEvent: CheckBox$ChangeEvent) => void;
|
|
5239
5169
|
}
|
|
5240
5170
|
|
|
5241
5171
|
export interface CheckBox$ChangeEventParameters {
|
|
@@ -5245,12 +5175,6 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5245
5175
|
checked?: boolean;
|
|
5246
5176
|
}
|
|
5247
5177
|
|
|
5248
|
-
/**
|
|
5249
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CheckBox$ChangeEventParameters'
|
|
5250
|
-
* in 1.115.1 and any later releases.
|
|
5251
|
-
*/
|
|
5252
|
-
export type $CheckBoxChangeEventParameters = CheckBox$ChangeEventParameters;
|
|
5253
|
-
|
|
5254
5178
|
export type CheckBox$ChangeEvent = Event<CheckBox$ChangeEventParameters>;
|
|
5255
5179
|
}
|
|
5256
5180
|
|
|
@@ -5825,12 +5749,6 @@ declare module "sap/ui/commons/ComboBox" {
|
|
|
5825
5749
|
selectedItem?: ListItem;
|
|
5826
5750
|
}
|
|
5827
5751
|
|
|
5828
|
-
/**
|
|
5829
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ComboBox$ChangeEventParameters'
|
|
5830
|
-
* in 1.115.1 and any later releases.
|
|
5831
|
-
*/
|
|
5832
|
-
export type $ComboBoxChangeEventParameters = ComboBox$ChangeEventParameters;
|
|
5833
|
-
|
|
5834
5752
|
export type ComboBox$ChangeEvent = Event<ComboBox$ChangeEventParameters>;
|
|
5835
5753
|
}
|
|
5836
5754
|
|
|
@@ -7014,7 +6932,7 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7014
6932
|
* Event is fired when the dialog has been closed (after closing-animation etc.). Event parameters provide
|
|
7015
6933
|
* information about last position and last size.
|
|
7016
6934
|
*/
|
|
7017
|
-
closed?: (oEvent:
|
|
6935
|
+
closed?: (oEvent: Dialog$ClosedEvent) => void;
|
|
7018
6936
|
}
|
|
7019
6937
|
|
|
7020
6938
|
export interface Dialog$ClosedEventParameters {
|
|
@@ -7039,12 +6957,6 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7039
6957
|
left?: int;
|
|
7040
6958
|
}
|
|
7041
6959
|
|
|
7042
|
-
/**
|
|
7043
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Dialog$ClosedEventParameters'
|
|
7044
|
-
* in 1.115.1 and any later releases.
|
|
7045
|
-
*/
|
|
7046
|
-
export type $DialogClosedEventParameters = Dialog$ClosedEventParameters;
|
|
7047
|
-
|
|
7048
6960
|
export type Dialog$ClosedEvent = Event<Dialog$ClosedEventParameters>;
|
|
7049
6961
|
}
|
|
7050
6962
|
|
|
@@ -7530,7 +7442,7 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7530
7442
|
* Event fired whenever the configured searchHelpItem is clicked or the searchHelpItem is configured and
|
|
7531
7443
|
* F4 key is pressed.
|
|
7532
7444
|
*/
|
|
7533
|
-
searchHelp?: (oEvent:
|
|
7445
|
+
searchHelp?: (oEvent: DropdownBox$SearchHelpEvent) => void;
|
|
7534
7446
|
}
|
|
7535
7447
|
|
|
7536
7448
|
export interface DropdownBox$SearchHelpEventParameters {
|
|
@@ -7540,12 +7452,6 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7540
7452
|
value?: string;
|
|
7541
7453
|
}
|
|
7542
7454
|
|
|
7543
|
-
/**
|
|
7544
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DropdownBox$SearchHelpEventParameters'
|
|
7545
|
-
* in 1.115.1 and any later releases.
|
|
7546
|
-
*/
|
|
7547
|
-
export type $DropdownBoxSearchHelpEventParameters = DropdownBox$SearchHelpEventParameters;
|
|
7548
|
-
|
|
7549
7455
|
export type DropdownBox$SearchHelpEvent = Event<DropdownBox$SearchHelpEventParameters>;
|
|
7550
7456
|
}
|
|
7551
7457
|
|
|
@@ -8699,14 +8605,14 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8699
8605
|
* Event is fired when the text in the field has changed AND the focus leaves the TextField or the Enter
|
|
8700
8606
|
* key is pressed.
|
|
8701
8607
|
*/
|
|
8702
|
-
change?: (oEvent:
|
|
8608
|
+
change?: (oEvent: TextField$ChangeEvent) => void;
|
|
8703
8609
|
|
|
8704
8610
|
/**
|
|
8705
8611
|
* This event if fired during typing into the `TextField` and returns the currently entered value. **Note:**
|
|
8706
8612
|
* This is not the content of the value property. The value property is only updated by ENTER and by leaving
|
|
8707
8613
|
* the control.
|
|
8708
8614
|
*/
|
|
8709
|
-
liveChange?: (oEvent:
|
|
8615
|
+
liveChange?: (oEvent: TextField$LiveChangeEvent) => void;
|
|
8710
8616
|
}
|
|
8711
8617
|
|
|
8712
8618
|
export interface TextField$ChangeEventParameters {
|
|
@@ -8716,12 +8622,6 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8716
8622
|
newValue?: string;
|
|
8717
8623
|
}
|
|
8718
8624
|
|
|
8719
|
-
/**
|
|
8720
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TextField$ChangeEventParameters'
|
|
8721
|
-
* in 1.115.1 and any later releases.
|
|
8722
|
-
*/
|
|
8723
|
-
export type $TextFieldChangeEventParameters = TextField$ChangeEventParameters;
|
|
8724
|
-
|
|
8725
8625
|
export type TextField$ChangeEvent = Event<TextField$ChangeEventParameters>;
|
|
8726
8626
|
|
|
8727
8627
|
export interface TextField$LiveChangeEventParameters {
|
|
@@ -8731,12 +8631,6 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8731
8631
|
liveValue?: string;
|
|
8732
8632
|
}
|
|
8733
8633
|
|
|
8734
|
-
/**
|
|
8735
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TextField$LiveChangeEventParameters'
|
|
8736
|
-
* in 1.115.1 and any later releases.
|
|
8737
|
-
*/
|
|
8738
|
-
export type $TextFieldLiveChangeEventParameters = TextField$LiveChangeEventParameters;
|
|
8739
|
-
|
|
8740
8634
|
export type TextField$LiveChangeEvent = Event<TextField$LiveChangeEventParameters>;
|
|
8741
8635
|
}
|
|
8742
8636
|
|
|
@@ -10415,12 +10309,6 @@ declare module "sap/ui/commons/Image" {
|
|
|
10415
10309
|
|
|
10416
10310
|
export interface Image$PressEventParameters {}
|
|
10417
10311
|
|
|
10418
|
-
/**
|
|
10419
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Image$PressEventParameters'
|
|
10420
|
-
* in 1.115.1 and any later releases.
|
|
10421
|
-
*/
|
|
10422
|
-
export type $ImagePressEventParameters = Image$PressEventParameters;
|
|
10423
|
-
|
|
10424
10312
|
export type Image$PressEvent = Event<Image$PressEventParameters>;
|
|
10425
10313
|
}
|
|
10426
10314
|
|
|
@@ -10702,7 +10590,7 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
10702
10590
|
/**
|
|
10703
10591
|
* Event for the areas that can be clicked in an ImageMap
|
|
10704
10592
|
*/
|
|
10705
|
-
press?: (oEvent:
|
|
10593
|
+
press?: (oEvent: ImageMap$PressEvent) => void;
|
|
10706
10594
|
}
|
|
10707
10595
|
|
|
10708
10596
|
export interface ImageMap$PressEventParameters {
|
|
@@ -10712,12 +10600,6 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
10712
10600
|
areaId?: string;
|
|
10713
10601
|
}
|
|
10714
10602
|
|
|
10715
|
-
/**
|
|
10716
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ImageMap$PressEventParameters'
|
|
10717
|
-
* in 1.115.1 and any later releases.
|
|
10718
|
-
*/
|
|
10719
|
-
export type $ImageMapPressEventParameters = ImageMap$PressEventParameters;
|
|
10720
|
-
|
|
10721
10603
|
export type ImageMap$PressEvent = Event<ImageMap$PressEventParameters>;
|
|
10722
10604
|
}
|
|
10723
10605
|
|
|
@@ -11160,7 +11042,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11160
11042
|
* Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
|
|
11161
11043
|
* key is pressed.
|
|
11162
11044
|
*/
|
|
11163
|
-
change?: (oEvent:
|
|
11045
|
+
change?: (oEvent: InPlaceEdit$ChangeEvent) => void;
|
|
11164
11046
|
|
|
11165
11047
|
/**
|
|
11166
11048
|
* @since 1.16.5
|
|
@@ -11169,7 +11051,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11169
11051
|
* is not the content of the value property. The value property is only updated by ENTER and by leaving
|
|
11170
11052
|
* the control.
|
|
11171
11053
|
*/
|
|
11172
|
-
liveChange?: (oEvent:
|
|
11054
|
+
liveChange?: (oEvent: InPlaceEdit$LiveChangeEvent) => void;
|
|
11173
11055
|
}
|
|
11174
11056
|
|
|
11175
11057
|
export interface InPlaceEdit$ChangeEventParameters {
|
|
@@ -11179,12 +11061,6 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11179
11061
|
newValue?: string;
|
|
11180
11062
|
}
|
|
11181
11063
|
|
|
11182
|
-
/**
|
|
11183
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'InPlaceEdit$ChangeEventParameters'
|
|
11184
|
-
* in 1.115.1 and any later releases.
|
|
11185
|
-
*/
|
|
11186
|
-
export type $InPlaceEditChangeEventParameters = InPlaceEdit$ChangeEventParameters;
|
|
11187
|
-
|
|
11188
11064
|
export type InPlaceEdit$ChangeEvent = Event<InPlaceEdit$ChangeEventParameters>;
|
|
11189
11065
|
|
|
11190
11066
|
export interface InPlaceEdit$LiveChangeEventParameters {
|
|
@@ -11194,12 +11070,6 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11194
11070
|
liveValue?: string;
|
|
11195
11071
|
}
|
|
11196
11072
|
|
|
11197
|
-
/**
|
|
11198
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'InPlaceEdit$LiveChangeEventParameters'
|
|
11199
|
-
* in 1.115.1 and any later releases.
|
|
11200
|
-
*/
|
|
11201
|
-
export type $InPlaceEditLiveChangeEventParameters = InPlaceEdit$LiveChangeEventParameters;
|
|
11202
|
-
|
|
11203
11073
|
export type InPlaceEdit$LiveChangeEvent = Event<InPlaceEdit$LiveChangeEventParameters>;
|
|
11204
11074
|
}
|
|
11205
11075
|
|
|
@@ -14596,12 +14466,6 @@ declare module "sap/ui/commons/Link" {
|
|
|
14596
14466
|
|
|
14597
14467
|
export interface Link$PressEventParameters {}
|
|
14598
14468
|
|
|
14599
|
-
/**
|
|
14600
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Link$PressEventParameters'
|
|
14601
|
-
* in 1.115.1 and any later releases.
|
|
14602
|
-
*/
|
|
14603
|
-
export type $LinkPressEventParameters = Link$PressEventParameters;
|
|
14604
|
-
|
|
14605
14469
|
export type Link$PressEvent = Event<Link$PressEventParameters>;
|
|
14606
14470
|
}
|
|
14607
14471
|
|
|
@@ -15490,7 +15354,7 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
15490
15354
|
/**
|
|
15491
15355
|
* Event is fired when selection is changed by user interaction.
|
|
15492
15356
|
*/
|
|
15493
|
-
select?: (oEvent:
|
|
15357
|
+
select?: (oEvent: ListBox$SelectEvent) => void;
|
|
15494
15358
|
}
|
|
15495
15359
|
|
|
15496
15360
|
export interface ListBox$SelectEventParameters {
|
|
@@ -15518,12 +15382,6 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
15518
15382
|
selectedIndices?: int[];
|
|
15519
15383
|
}
|
|
15520
15384
|
|
|
15521
|
-
/**
|
|
15522
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ListBox$SelectEventParameters'
|
|
15523
|
-
* in 1.115.1 and any later releases.
|
|
15524
|
-
*/
|
|
15525
|
-
export type $ListBoxSelectEventParameters = ListBox$SelectEventParameters;
|
|
15526
|
-
|
|
15527
15385
|
export type ListBox$SelectEvent = Event<ListBox$SelectEventParameters>;
|
|
15528
15386
|
}
|
|
15529
15387
|
|
|
@@ -15895,10 +15753,10 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
15895
15753
|
|
|
15896
15754
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
15897
15755
|
|
|
15898
|
-
import Event from "sap/ui/base/Event";
|
|
15899
|
-
|
|
15900
15756
|
import MenuItemBase from "sap/ui/unified/MenuItemBase";
|
|
15901
15757
|
|
|
15758
|
+
import Event from "sap/ui/base/Event";
|
|
15759
|
+
|
|
15902
15760
|
import MenuItemBase1 from "sap/ui/commons/MenuItemBase";
|
|
15903
15761
|
|
|
15904
15762
|
/**
|
|
@@ -16222,9 +16080,7 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16222
16080
|
/**
|
|
16223
16081
|
* Event that is fired when a menu item is selected by the user
|
|
16224
16082
|
*/
|
|
16225
|
-
itemSelected?: (
|
|
16226
|
-
oEvent: Event<MenuButton$ItemSelectedEventParameters>
|
|
16227
|
-
) => void;
|
|
16083
|
+
itemSelected?: (oEvent: MenuButton$ItemSelectedEvent) => void;
|
|
16228
16084
|
}
|
|
16229
16085
|
|
|
16230
16086
|
export interface MenuButton$ItemSelectedEventParameters {
|
|
@@ -16239,12 +16095,6 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16239
16095
|
item?: MenuItemBase;
|
|
16240
16096
|
}
|
|
16241
16097
|
|
|
16242
|
-
/**
|
|
16243
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuButton$ItemSelectedEventParameters'
|
|
16244
|
-
* in 1.115.1 and any later releases.
|
|
16245
|
-
*/
|
|
16246
|
-
export type $MenuButtonItemSelectedEventParameters = MenuButton$ItemSelectedEventParameters;
|
|
16247
|
-
|
|
16248
16098
|
export type MenuButton$ItemSelectedEvent = Event<MenuButton$ItemSelectedEventParameters>;
|
|
16249
16099
|
|
|
16250
16100
|
export interface MenuButton$PressEventParameters
|
|
@@ -16260,12 +16110,6 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16260
16110
|
item?: MenuItemBase1;
|
|
16261
16111
|
}
|
|
16262
16112
|
|
|
16263
|
-
/**
|
|
16264
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuButton$PressEventParameters'
|
|
16265
|
-
* in 1.115.1 and any later releases.
|
|
16266
|
-
*/
|
|
16267
|
-
export type $MenuButtonPressEventParameters = MenuButton$PressEventParameters;
|
|
16268
|
-
|
|
16269
16113
|
export type MenuButton$PressEvent = Event<MenuButton$PressEventParameters>;
|
|
16270
16114
|
}
|
|
16271
16115
|
|
|
@@ -17614,12 +17458,6 @@ declare module "sap/ui/commons/MessageToast" {
|
|
|
17614
17458
|
|
|
17615
17459
|
export interface MessageToast$NextEventParameters {}
|
|
17616
17460
|
|
|
17617
|
-
/**
|
|
17618
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MessageToast$NextEventParameters'
|
|
17619
|
-
* in 1.115.1 and any later releases.
|
|
17620
|
-
*/
|
|
17621
|
-
export type $MessageToastNextEventParameters = MessageToast$NextEventParameters;
|
|
17622
|
-
|
|
17623
17461
|
export type MessageToast$NextEvent = Event<MessageToast$NextEventParameters>;
|
|
17624
17462
|
}
|
|
17625
17463
|
|
|
@@ -17630,10 +17468,10 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
17630
17468
|
|
|
17631
17469
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
17632
17470
|
|
|
17633
|
-
import Event from "sap/ui/base/Event";
|
|
17634
|
-
|
|
17635
17471
|
import { PaginatorEvent } from "sap/ui/commons/library";
|
|
17636
17472
|
|
|
17473
|
+
import Event from "sap/ui/base/Event";
|
|
17474
|
+
|
|
17637
17475
|
/**
|
|
17638
17476
|
* @deprecated (since 1.38)
|
|
17639
17477
|
*
|
|
@@ -17841,7 +17679,7 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
17841
17679
|
/**
|
|
17842
17680
|
* Event is fired when the user navigates to another page by selecting it directly, or by jumping forward/backward.
|
|
17843
17681
|
*/
|
|
17844
|
-
page?: (oEvent:
|
|
17682
|
+
page?: (oEvent: Paginator$PageEvent) => void;
|
|
17845
17683
|
}
|
|
17846
17684
|
|
|
17847
17685
|
export interface Paginator$PageEventParameters {
|
|
@@ -17865,12 +17703,6 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
17865
17703
|
type?: PaginatorEvent | keyof typeof PaginatorEvent;
|
|
17866
17704
|
}
|
|
17867
17705
|
|
|
17868
|
-
/**
|
|
17869
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Paginator$PageEventParameters'
|
|
17870
|
-
* in 1.115.1 and any later releases.
|
|
17871
|
-
*/
|
|
17872
|
-
export type $PaginatorPageEventParameters = Paginator$PageEventParameters;
|
|
17873
|
-
|
|
17874
17706
|
export type Paginator$PageEvent = Event<Paginator$PageEventParameters>;
|
|
17875
17707
|
}
|
|
17876
17708
|
|
|
@@ -19395,12 +19227,6 @@ declare module "sap/ui/commons/RadioButton" {
|
|
|
19395
19227
|
|
|
19396
19228
|
export interface RadioButton$SelectEventParameters {}
|
|
19397
19229
|
|
|
19398
|
-
/**
|
|
19399
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RadioButton$SelectEventParameters'
|
|
19400
|
-
* in 1.115.1 and any later releases.
|
|
19401
|
-
*/
|
|
19402
|
-
export type $RadioButtonSelectEventParameters = RadioButton$SelectEventParameters;
|
|
19403
|
-
|
|
19404
19230
|
export type RadioButton$SelectEvent = Event<RadioButton$SelectEventParameters>;
|
|
19405
19231
|
}
|
|
19406
19232
|
|
|
@@ -19983,7 +19809,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
19983
19809
|
/**
|
|
19984
19810
|
* Fires when selection is changed by user interaction.
|
|
19985
19811
|
*/
|
|
19986
|
-
select?: (oEvent:
|
|
19812
|
+
select?: (oEvent: RadioButtonGroup$SelectEvent) => void;
|
|
19987
19813
|
}
|
|
19988
19814
|
|
|
19989
19815
|
export interface RadioButtonGroup$SelectEventParameters {
|
|
@@ -19993,12 +19819,6 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
19993
19819
|
selectedIndex?: int;
|
|
19994
19820
|
}
|
|
19995
19821
|
|
|
19996
|
-
/**
|
|
19997
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RadioButtonGroup$SelectEventParameters'
|
|
19998
|
-
* in 1.115.1 and any later releases.
|
|
19999
|
-
*/
|
|
20000
|
-
export type $RadioButtonGroupSelectEventParameters = RadioButtonGroup$SelectEventParameters;
|
|
20001
|
-
|
|
20002
19822
|
export type RadioButtonGroup$SelectEvent = Event<RadioButtonGroup$SelectEventParameters>;
|
|
20003
19823
|
}
|
|
20004
19824
|
|
|
@@ -20656,7 +20476,7 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
20656
20476
|
/**
|
|
20657
20477
|
* The event is fired when the user has done a rating.
|
|
20658
20478
|
*/
|
|
20659
|
-
change?: (oEvent:
|
|
20479
|
+
change?: (oEvent: RatingIndicator$ChangeEvent) => void;
|
|
20660
20480
|
}
|
|
20661
20481
|
|
|
20662
20482
|
export interface RatingIndicator$ChangeEventParameters {
|
|
@@ -20666,12 +20486,6 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
20666
20486
|
value?: int;
|
|
20667
20487
|
}
|
|
20668
20488
|
|
|
20669
|
-
/**
|
|
20670
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RatingIndicator$ChangeEventParameters'
|
|
20671
|
-
* in 1.115.1 and any later releases.
|
|
20672
|
-
*/
|
|
20673
|
-
export type $RatingIndicatorChangeEventParameters = RatingIndicator$ChangeEventParameters;
|
|
20674
|
-
|
|
20675
20489
|
export type RatingIndicator$ChangeEvent = Event<RatingIndicator$ChangeEventParameters>;
|
|
20676
20490
|
}
|
|
20677
20491
|
|
|
@@ -21008,9 +20822,7 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21008
20822
|
/**
|
|
21009
20823
|
* The event is fired the width of the container reaches a new range.
|
|
21010
20824
|
*/
|
|
21011
|
-
rangeSwitch?: (
|
|
21012
|
-
oEvent: Event<ResponsiveContainer$RangeSwitchEventParameters>
|
|
21013
|
-
) => void;
|
|
20825
|
+
rangeSwitch?: (oEvent: ResponsiveContainer$RangeSwitchEvent) => void;
|
|
21014
20826
|
}
|
|
21015
20827
|
|
|
21016
20828
|
export interface ResponsiveContainer$RangeSwitchEventParameters {
|
|
@@ -21020,12 +20832,6 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21020
20832
|
currentRange?: ResponsiveContainerRange;
|
|
21021
20833
|
}
|
|
21022
20834
|
|
|
21023
|
-
/**
|
|
21024
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ResponsiveContainer$RangeSwitchEventParameters'
|
|
21025
|
-
* in 1.115.1 and any later releases.
|
|
21026
|
-
*/
|
|
21027
|
-
export type $ResponsiveContainerRangeSwitchEventParameters = ResponsiveContainer$RangeSwitchEventParameters;
|
|
21028
|
-
|
|
21029
20835
|
export type ResponsiveContainer$RangeSwitchEvent = Event<ResponsiveContainer$RangeSwitchEventParameters>;
|
|
21030
20836
|
}
|
|
21031
20837
|
|
|
@@ -21869,12 +21675,12 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
21869
21675
|
/**
|
|
21870
21676
|
* Event is fired when the user selects a step.
|
|
21871
21677
|
*/
|
|
21872
|
-
stepSelected?: (oEvent:
|
|
21678
|
+
stepSelected?: (oEvent: RoadMap$StepSelectedEvent) => void;
|
|
21873
21679
|
|
|
21874
21680
|
/**
|
|
21875
21681
|
* Event is fired when a given step is expanded or collapsed by user.
|
|
21876
21682
|
*/
|
|
21877
|
-
stepExpanded?: (oEvent:
|
|
21683
|
+
stepExpanded?: (oEvent: RoadMap$StepExpandedEvent) => void;
|
|
21878
21684
|
}
|
|
21879
21685
|
|
|
21880
21686
|
export interface RoadMap$StepExpandedEventParameters {
|
|
@@ -21884,12 +21690,6 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
21884
21690
|
stepId?: string;
|
|
21885
21691
|
}
|
|
21886
21692
|
|
|
21887
|
-
/**
|
|
21888
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RoadMap$StepExpandedEventParameters'
|
|
21889
|
-
* in 1.115.1 and any later releases.
|
|
21890
|
-
*/
|
|
21891
|
-
export type $RoadMapStepExpandedEventParameters = RoadMap$StepExpandedEventParameters;
|
|
21892
|
-
|
|
21893
21693
|
export type RoadMap$StepExpandedEvent = Event<RoadMap$StepExpandedEventParameters>;
|
|
21894
21694
|
|
|
21895
21695
|
export interface RoadMap$StepSelectedEventParameters {
|
|
@@ -21899,12 +21699,6 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
21899
21699
|
stepId?: string;
|
|
21900
21700
|
}
|
|
21901
21701
|
|
|
21902
|
-
/**
|
|
21903
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RoadMap$StepSelectedEventParameters'
|
|
21904
|
-
* in 1.115.1 and any later releases.
|
|
21905
|
-
*/
|
|
21906
|
-
export type $RoadMapStepSelectedEventParameters = RoadMap$StepSelectedEventParameters;
|
|
21907
|
-
|
|
21908
21702
|
export type RoadMap$StepSelectedEvent = Event<RoadMap$StepSelectedEventParameters>;
|
|
21909
21703
|
}
|
|
21910
21704
|
|
|
@@ -23177,22 +22971,22 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23177
22971
|
/**
|
|
23178
22972
|
* This event is triggered when a filter is set.
|
|
23179
22973
|
*/
|
|
23180
|
-
filter?: (oEvent:
|
|
22974
|
+
filter?: (oEvent: RowRepeater$FilterEvent) => void;
|
|
23181
22975
|
|
|
23182
22976
|
/**
|
|
23183
22977
|
* This event is triggered when a sorting is applied.
|
|
23184
22978
|
*/
|
|
23185
|
-
sort?: (oEvent:
|
|
22979
|
+
sort?: (oEvent: RowRepeater$SortEvent) => void;
|
|
23186
22980
|
|
|
23187
22981
|
/**
|
|
23188
22982
|
* This event is triggered when paging was executed.
|
|
23189
22983
|
*/
|
|
23190
|
-
page?: (oEvent:
|
|
22984
|
+
page?: (oEvent: RowRepeater$PageEvent) => void;
|
|
23191
22985
|
|
|
23192
22986
|
/**
|
|
23193
22987
|
* This event is triggered when the number of rows was changed.
|
|
23194
22988
|
*/
|
|
23195
|
-
resize?: (oEvent:
|
|
22989
|
+
resize?: (oEvent: RowRepeater$ResizeEvent) => void;
|
|
23196
22990
|
}
|
|
23197
22991
|
|
|
23198
22992
|
export interface RowRepeater$FilterEventParameters {
|
|
@@ -23202,12 +22996,6 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23202
22996
|
filterId?: string;
|
|
23203
22997
|
}
|
|
23204
22998
|
|
|
23205
|
-
/**
|
|
23206
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$FilterEventParameters'
|
|
23207
|
-
* in 1.115.1 and any later releases.
|
|
23208
|
-
*/
|
|
23209
|
-
export type $RowRepeaterFilterEventParameters = RowRepeater$FilterEventParameters;
|
|
23210
|
-
|
|
23211
22999
|
export type RowRepeater$FilterEvent = Event<RowRepeater$FilterEventParameters>;
|
|
23212
23000
|
|
|
23213
23001
|
export interface RowRepeater$PageEventParameters {
|
|
@@ -23222,12 +23010,6 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23222
23010
|
previousPage?: int;
|
|
23223
23011
|
}
|
|
23224
23012
|
|
|
23225
|
-
/**
|
|
23226
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$PageEventParameters'
|
|
23227
|
-
* in 1.115.1 and any later releases.
|
|
23228
|
-
*/
|
|
23229
|
-
export type $RowRepeaterPageEventParameters = RowRepeater$PageEventParameters;
|
|
23230
|
-
|
|
23231
23013
|
export type RowRepeater$PageEvent = Event<RowRepeater$PageEventParameters>;
|
|
23232
23014
|
|
|
23233
23015
|
export interface RowRepeater$ResizeEventParameters {
|
|
@@ -23242,12 +23024,6 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23242
23024
|
previousNumberOfRows?: int;
|
|
23243
23025
|
}
|
|
23244
23026
|
|
|
23245
|
-
/**
|
|
23246
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$ResizeEventParameters'
|
|
23247
|
-
* in 1.115.1 and any later releases.
|
|
23248
|
-
*/
|
|
23249
|
-
export type $RowRepeaterResizeEventParameters = RowRepeater$ResizeEventParameters;
|
|
23250
|
-
|
|
23251
23027
|
export type RowRepeater$ResizeEvent = Event<RowRepeater$ResizeEventParameters>;
|
|
23252
23028
|
|
|
23253
23029
|
export interface RowRepeater$SortEventParameters {
|
|
@@ -23257,12 +23033,6 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23257
23033
|
sorterId?: string;
|
|
23258
23034
|
}
|
|
23259
23035
|
|
|
23260
|
-
/**
|
|
23261
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$SortEventParameters'
|
|
23262
|
-
* in 1.115.1 and any later releases.
|
|
23263
|
-
*/
|
|
23264
|
-
export type $RowRepeaterSortEventParameters = RowRepeater$SortEventParameters;
|
|
23265
|
-
|
|
23266
23036
|
export type RowRepeater$SortEvent = Event<RowRepeater$SortEventParameters>;
|
|
23267
23037
|
}
|
|
23268
23038
|
|
|
@@ -24561,12 +24331,12 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
24561
24331
|
/**
|
|
24562
24332
|
* Event which is fired when the user triggers a search
|
|
24563
24333
|
*/
|
|
24564
|
-
search?: (oEvent:
|
|
24334
|
+
search?: (oEvent: SearchField$SearchEvent) => void;
|
|
24565
24335
|
|
|
24566
24336
|
/**
|
|
24567
24337
|
* Event which is fired when new suggest values are required.
|
|
24568
24338
|
*/
|
|
24569
|
-
suggest?: (oEvent:
|
|
24339
|
+
suggest?: (oEvent: SearchField$SuggestEvent) => void;
|
|
24570
24340
|
}
|
|
24571
24341
|
|
|
24572
24342
|
export interface SearchField$SearchEventParameters {
|
|
@@ -24576,12 +24346,6 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
24576
24346
|
query?: string;
|
|
24577
24347
|
}
|
|
24578
24348
|
|
|
24579
|
-
/**
|
|
24580
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchField$SearchEventParameters'
|
|
24581
|
-
* in 1.115.1 and any later releases.
|
|
24582
|
-
*/
|
|
24583
|
-
export type $SearchFieldSearchEventParameters = SearchField$SearchEventParameters;
|
|
24584
|
-
|
|
24585
24349
|
export type SearchField$SearchEvent = Event<SearchField$SearchEventParameters>;
|
|
24586
24350
|
|
|
24587
24351
|
export interface SearchField$SuggestEventParameters {
|
|
@@ -24591,12 +24355,6 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
24591
24355
|
value?: string;
|
|
24592
24356
|
}
|
|
24593
24357
|
|
|
24594
|
-
/**
|
|
24595
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchField$SuggestEventParameters'
|
|
24596
|
-
* in 1.115.1 and any later releases.
|
|
24597
|
-
*/
|
|
24598
|
-
export type $SearchFieldSuggestEventParameters = SearchField$SuggestEventParameters;
|
|
24599
|
-
|
|
24600
24358
|
export type SearchField$SuggestEvent = Event<SearchField$SuggestEventParameters>;
|
|
24601
24359
|
}
|
|
24602
24360
|
|
|
@@ -24992,7 +24750,7 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
24992
24750
|
/**
|
|
24993
24751
|
* Event fired when button selected
|
|
24994
24752
|
*/
|
|
24995
|
-
select?: (oEvent:
|
|
24753
|
+
select?: (oEvent: SegmentedButton$SelectEvent) => void;
|
|
24996
24754
|
}
|
|
24997
24755
|
|
|
24998
24756
|
export interface SegmentedButton$SelectEventParameters {
|
|
@@ -25002,12 +24760,6 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
25002
24760
|
selectedButtonId?: string;
|
|
25003
24761
|
}
|
|
25004
24762
|
|
|
25005
|
-
/**
|
|
25006
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SegmentedButton$SelectEventParameters'
|
|
25007
|
-
* in 1.115.1 and any later releases.
|
|
25008
|
-
*/
|
|
25009
|
-
export type $SegmentedButtonSelectEventParameters = SegmentedButton$SelectEventParameters;
|
|
25010
|
-
|
|
25011
24763
|
export type SegmentedButton$SelectEvent = Event<SegmentedButton$SelectEventParameters>;
|
|
25012
24764
|
}
|
|
25013
24765
|
|
|
@@ -25736,13 +25488,13 @@ declare module "sap/ui/commons/Slider" {
|
|
|
25736
25488
|
/**
|
|
25737
25489
|
* Value was changed. This event is fired if the value has changed by a user action.
|
|
25738
25490
|
*/
|
|
25739
|
-
change?: (oEvent:
|
|
25491
|
+
change?: (oEvent: Slider$ChangeEvent) => void;
|
|
25740
25492
|
|
|
25741
25493
|
/**
|
|
25742
25494
|
* Value was changed. This event is fired during the mouse move. The normal change event is only fired by
|
|
25743
25495
|
* mouseup.
|
|
25744
25496
|
*/
|
|
25745
|
-
liveChange?: (oEvent:
|
|
25497
|
+
liveChange?: (oEvent: Slider$LiveChangeEvent) => void;
|
|
25746
25498
|
}
|
|
25747
25499
|
|
|
25748
25500
|
export interface Slider$ChangeEventParameters {
|
|
@@ -25752,12 +25504,6 @@ declare module "sap/ui/commons/Slider" {
|
|
|
25752
25504
|
value?: float;
|
|
25753
25505
|
}
|
|
25754
25506
|
|
|
25755
|
-
/**
|
|
25756
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Slider$ChangeEventParameters'
|
|
25757
|
-
* in 1.115.1 and any later releases.
|
|
25758
|
-
*/
|
|
25759
|
-
export type $SliderChangeEventParameters = Slider$ChangeEventParameters;
|
|
25760
|
-
|
|
25761
25507
|
export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters>;
|
|
25762
25508
|
|
|
25763
25509
|
export interface Slider$LiveChangeEventParameters {
|
|
@@ -25767,12 +25513,6 @@ declare module "sap/ui/commons/Slider" {
|
|
|
25767
25513
|
value?: float;
|
|
25768
25514
|
}
|
|
25769
25515
|
|
|
25770
|
-
/**
|
|
25771
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Slider$LiveChangeEventParameters'
|
|
25772
|
-
* in 1.115.1 and any later releases.
|
|
25773
|
-
*/
|
|
25774
|
-
export type $SliderLiveChangeEventParameters = Slider$LiveChangeEventParameters;
|
|
25775
|
-
|
|
25776
25516
|
export type Slider$LiveChangeEvent = Event<Slider$LiveChangeEventParameters>;
|
|
25777
25517
|
}
|
|
25778
25518
|
|
|
@@ -26976,12 +26716,12 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
26976
26716
|
/**
|
|
26977
26717
|
* Fires when the user selects a tab.
|
|
26978
26718
|
*/
|
|
26979
|
-
select?: (oEvent:
|
|
26719
|
+
select?: (oEvent: TabStrip$SelectEvent) => void;
|
|
26980
26720
|
|
|
26981
26721
|
/**
|
|
26982
26722
|
* Fires when the user closes a tab.
|
|
26983
26723
|
*/
|
|
26984
|
-
close?: (oEvent:
|
|
26724
|
+
close?: (oEvent: TabStrip$CloseEvent) => void;
|
|
26985
26725
|
}
|
|
26986
26726
|
|
|
26987
26727
|
export interface TabStrip$CloseEventParameters {
|
|
@@ -26991,12 +26731,6 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
26991
26731
|
index?: int;
|
|
26992
26732
|
}
|
|
26993
26733
|
|
|
26994
|
-
/**
|
|
26995
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabStrip$CloseEventParameters'
|
|
26996
|
-
* in 1.115.1 and any later releases.
|
|
26997
|
-
*/
|
|
26998
|
-
export type $TabStripCloseEventParameters = TabStrip$CloseEventParameters;
|
|
26999
|
-
|
|
27000
26734
|
export type TabStrip$CloseEvent = Event<TabStrip$CloseEventParameters>;
|
|
27001
26735
|
|
|
27002
26736
|
export interface TabStrip$SelectEventParameters {
|
|
@@ -27006,12 +26740,6 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
27006
26740
|
index?: int;
|
|
27007
26741
|
}
|
|
27008
26742
|
|
|
27009
|
-
/**
|
|
27010
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabStrip$SelectEventParameters'
|
|
27011
|
-
* in 1.115.1 and any later releases.
|
|
27012
|
-
*/
|
|
27013
|
-
export type $TabStripSelectEventParameters = TabStrip$SelectEventParameters;
|
|
27014
|
-
|
|
27015
26743
|
export type TabStrip$SelectEvent = Event<TabStrip$SelectEventParameters>;
|
|
27016
26744
|
}
|
|
27017
26745
|
|
|
@@ -29202,14 +28930,12 @@ declare module "sap/ui/commons/Tree" {
|
|
|
29202
28930
|
/**
|
|
29203
28931
|
* Event is fired when a tree node is selected.
|
|
29204
28932
|
*/
|
|
29205
|
-
select?: (oEvent:
|
|
28933
|
+
select?: (oEvent: Tree$SelectEvent) => void;
|
|
29206
28934
|
|
|
29207
28935
|
/**
|
|
29208
28936
|
* fired when the selection of the tree has been changed
|
|
29209
28937
|
*/
|
|
29210
|
-
selectionChange?: (
|
|
29211
|
-
oEvent: Event<Tree$SelectionChangeEventParameters>
|
|
29212
|
-
) => void;
|
|
28938
|
+
selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
|
|
29213
28939
|
}
|
|
29214
28940
|
|
|
29215
28941
|
export interface Tree$SelectEventParameters {
|
|
@@ -29224,12 +28950,6 @@ declare module "sap/ui/commons/Tree" {
|
|
|
29224
28950
|
nodeContext?: object;
|
|
29225
28951
|
}
|
|
29226
28952
|
|
|
29227
|
-
/**
|
|
29228
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Tree$SelectEventParameters'
|
|
29229
|
-
* in 1.115.1 and any later releases.
|
|
29230
|
-
*/
|
|
29231
|
-
export type $TreeSelectEventParameters = Tree$SelectEventParameters;
|
|
29232
|
-
|
|
29233
28953
|
export type Tree$SelectEvent = Event<Tree$SelectEventParameters>;
|
|
29234
28954
|
|
|
29235
28955
|
export interface Tree$SelectionChangeEventParameters {
|
|
@@ -29244,12 +28964,6 @@ declare module "sap/ui/commons/Tree" {
|
|
|
29244
28964
|
nodeContexts?: object[];
|
|
29245
28965
|
}
|
|
29246
28966
|
|
|
29247
|
-
/**
|
|
29248
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Tree$SelectionChangeEventParameters'
|
|
29249
|
-
* in 1.115.1 and any later releases.
|
|
29250
|
-
*/
|
|
29251
|
-
export type $TreeSelectionChangeEventParameters = Tree$SelectionChangeEventParameters;
|
|
29252
|
-
|
|
29253
28967
|
export type Tree$SelectionChangeEvent = Event<Tree$SelectionChangeEventParameters>;
|
|
29254
28968
|
}
|
|
29255
28969
|
|
|
@@ -29850,9 +29564,7 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
29850
29564
|
/**
|
|
29851
29565
|
* Node state has changed.
|
|
29852
29566
|
*/
|
|
29853
|
-
toggleOpenState?: (
|
|
29854
|
-
oEvent: Event<TreeNode$ToggleOpenStateEventParameters>
|
|
29855
|
-
) => void;
|
|
29567
|
+
toggleOpenState?: (oEvent: TreeNode$ToggleOpenStateEvent) => void;
|
|
29856
29568
|
|
|
29857
29569
|
/**
|
|
29858
29570
|
* Node is selected
|
|
@@ -29862,12 +29574,6 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
29862
29574
|
|
|
29863
29575
|
export interface TreeNode$SelectedEventParameters {}
|
|
29864
29576
|
|
|
29865
|
-
/**
|
|
29866
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TreeNode$SelectedEventParameters'
|
|
29867
|
-
* in 1.115.1 and any later releases.
|
|
29868
|
-
*/
|
|
29869
|
-
export type $TreeNodeSelectedEventParameters = TreeNode$SelectedEventParameters;
|
|
29870
|
-
|
|
29871
29577
|
export type TreeNode$SelectedEvent = Event<TreeNode$SelectedEventParameters>;
|
|
29872
29578
|
|
|
29873
29579
|
export interface TreeNode$ToggleOpenStateEventParameters {
|
|
@@ -29877,12 +29583,6 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
29877
29583
|
opened?: boolean;
|
|
29878
29584
|
}
|
|
29879
29585
|
|
|
29880
|
-
/**
|
|
29881
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TreeNode$ToggleOpenStateEventParameters'
|
|
29882
|
-
* in 1.115.1 and any later releases.
|
|
29883
|
-
*/
|
|
29884
|
-
export type $TreeNodeToggleOpenStateEventParameters = TreeNode$ToggleOpenStateEventParameters;
|
|
29885
|
-
|
|
29886
29586
|
export type TreeNode$ToggleOpenStateEvent = Event<TreeNode$ToggleOpenStateEventParameters>;
|
|
29887
29587
|
}
|
|
29888
29588
|
|
|
@@ -30294,7 +29994,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
30294
29994
|
/**
|
|
30295
29995
|
* Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
|
|
30296
29996
|
*/
|
|
30297
|
-
change?: (oEvent:
|
|
29997
|
+
change?: (oEvent: TriStateCheckBox$ChangeEvent) => void;
|
|
30298
29998
|
}
|
|
30299
29999
|
|
|
30300
30000
|
export interface TriStateCheckBox$ChangeEventParameters {
|
|
@@ -30304,12 +30004,6 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
30304
30004
|
selectionState?: string;
|
|
30305
30005
|
}
|
|
30306
30006
|
|
|
30307
|
-
/**
|
|
30308
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TriStateCheckBox$ChangeEventParameters'
|
|
30309
|
-
* in 1.115.1 and any later releases.
|
|
30310
|
-
*/
|
|
30311
|
-
export type $TriStateCheckBoxChangeEventParameters = TriStateCheckBox$ChangeEventParameters;
|
|
30312
|
-
|
|
30313
30007
|
export type TriStateCheckBox$ChangeEvent = Event<TriStateCheckBox$ChangeEventParameters>;
|
|
30314
30008
|
}
|
|
30315
30009
|
|
|
@@ -30586,12 +30280,6 @@ declare module "sap/ui/commons/ValueHelpField" {
|
|
|
30586
30280
|
|
|
30587
30281
|
export interface ValueHelpField$ValueHelpRequestEventParameters {}
|
|
30588
30282
|
|
|
30589
|
-
/**
|
|
30590
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelpField$ValueHelpRequestEventParameters'
|
|
30591
|
-
* in 1.115.1 and any later releases.
|
|
30592
|
-
*/
|
|
30593
|
-
export type $ValueHelpFieldValueHelpRequestEventParameters = ValueHelpField$ValueHelpRequestEventParameters;
|
|
30594
|
-
|
|
30595
30283
|
export type ValueHelpField$ValueHelpRequestEvent = Event<ValueHelpField$ValueHelpRequestEventParameters>;
|
|
30596
30284
|
}
|
|
30597
30285
|
|