@openui5/types 1.115.1 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +196 -276
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uxap.d.ts +51 -91
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.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,13 +1122,10 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1126
1122
|
closeSectionId?: string;
|
|
1127
1123
|
}
|
|
1128
1124
|
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
export type $AccordionSectionCloseEventParameters = Accordion$SectionCloseEventParameters;
|
|
1134
|
-
|
|
1135
|
-
export type Accordion$SectionCloseEvent = Event<Accordion$SectionCloseEventParameters>;
|
|
1125
|
+
export type Accordion$SectionCloseEvent = Event<
|
|
1126
|
+
Accordion$SectionCloseEventParameters,
|
|
1127
|
+
Accordion
|
|
1128
|
+
>;
|
|
1136
1129
|
|
|
1137
1130
|
export interface Accordion$SectionOpenEventParameters {
|
|
1138
1131
|
/**
|
|
@@ -1146,13 +1139,10 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1146
1139
|
closeSectionIds?: string[];
|
|
1147
1140
|
}
|
|
1148
1141
|
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
export type $AccordionSectionOpenEventParameters = Accordion$SectionOpenEventParameters;
|
|
1154
|
-
|
|
1155
|
-
export type Accordion$SectionOpenEvent = Event<Accordion$SectionOpenEventParameters>;
|
|
1142
|
+
export type Accordion$SectionOpenEvent = Event<
|
|
1143
|
+
Accordion$SectionOpenEventParameters,
|
|
1144
|
+
Accordion
|
|
1145
|
+
>;
|
|
1156
1146
|
|
|
1157
1147
|
export interface Accordion$SectionsReorderEventParameters {
|
|
1158
1148
|
/**
|
|
@@ -1166,13 +1156,10 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1166
1156
|
newIndex?: int;
|
|
1167
1157
|
}
|
|
1168
1158
|
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
export type $AccordionSectionsReorderEventParameters = Accordion$SectionsReorderEventParameters;
|
|
1174
|
-
|
|
1175
|
-
export type Accordion$SectionsReorderEvent = Event<Accordion$SectionsReorderEventParameters>;
|
|
1159
|
+
export type Accordion$SectionsReorderEvent = Event<
|
|
1160
|
+
Accordion$SectionsReorderEventParameters,
|
|
1161
|
+
Accordion
|
|
1162
|
+
>;
|
|
1176
1163
|
}
|
|
1177
1164
|
|
|
1178
1165
|
declare module "sap/ui/commons/AccordionSection" {
|
|
@@ -1532,7 +1519,7 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1532
1519
|
/**
|
|
1533
1520
|
* Event is fired when the user scrolls the panel
|
|
1534
1521
|
*/
|
|
1535
|
-
scroll?: (oEvent:
|
|
1522
|
+
scroll?: (oEvent: AccordionSection$ScrollEvent) => void;
|
|
1536
1523
|
}
|
|
1537
1524
|
|
|
1538
1525
|
export interface AccordionSection$ScrollEventParameters {
|
|
@@ -1547,13 +1534,10 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1547
1534
|
top?: int;
|
|
1548
1535
|
}
|
|
1549
1536
|
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
export type $AccordionSectionScrollEventParameters = AccordionSection$ScrollEventParameters;
|
|
1555
|
-
|
|
1556
|
-
export type AccordionSection$ScrollEvent = Event<AccordionSection$ScrollEventParameters>;
|
|
1537
|
+
export type AccordionSection$ScrollEvent = Event<
|
|
1538
|
+
AccordionSection$ScrollEventParameters,
|
|
1539
|
+
AccordionSection
|
|
1540
|
+
>;
|
|
1557
1541
|
}
|
|
1558
1542
|
|
|
1559
1543
|
declare module "sap/ui/commons/ApplicationHeader" {
|
|
@@ -1868,13 +1852,10 @@ declare module "sap/ui/commons/ApplicationHeader" {
|
|
|
1868
1852
|
|
|
1869
1853
|
export interface ApplicationHeader$LogoffEventParameters {}
|
|
1870
1854
|
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
export type $ApplicationHeaderLogoffEventParameters = ApplicationHeader$LogoffEventParameters;
|
|
1876
|
-
|
|
1877
|
-
export type ApplicationHeader$LogoffEvent = Event<ApplicationHeader$LogoffEventParameters>;
|
|
1855
|
+
export type ApplicationHeader$LogoffEvent = Event<
|
|
1856
|
+
ApplicationHeader$LogoffEventParameters,
|
|
1857
|
+
ApplicationHeader
|
|
1858
|
+
>;
|
|
1878
1859
|
}
|
|
1879
1860
|
|
|
1880
1861
|
declare module "sap/ui/commons/Area" {
|
|
@@ -2307,7 +2288,7 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2307
2288
|
/**
|
|
2308
2289
|
* Fired when the user has changed the value and a suggestion list update should occur.
|
|
2309
2290
|
*/
|
|
2310
|
-
suggest?: (oEvent:
|
|
2291
|
+
suggest?: (oEvent: AutoComplete$SuggestEvent) => void;
|
|
2311
2292
|
}
|
|
2312
2293
|
|
|
2313
2294
|
export interface AutoComplete$SuggestEventParameters {
|
|
@@ -2317,13 +2298,10 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2317
2298
|
suggestValue?: string;
|
|
2318
2299
|
}
|
|
2319
2300
|
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
export type $AutoCompleteSuggestEventParameters = AutoComplete$SuggestEventParameters;
|
|
2325
|
-
|
|
2326
|
-
export type AutoComplete$SuggestEvent = Event<AutoComplete$SuggestEventParameters>;
|
|
2301
|
+
export type AutoComplete$SuggestEvent = Event<
|
|
2302
|
+
AutoComplete$SuggestEventParameters,
|
|
2303
|
+
AutoComplete
|
|
2304
|
+
>;
|
|
2327
2305
|
}
|
|
2328
2306
|
|
|
2329
2307
|
declare module "sap/ui/commons/layout/BorderLayout" {
|
|
@@ -3533,13 +3511,7 @@ declare module "sap/ui/commons/Button" {
|
|
|
3533
3511
|
|
|
3534
3512
|
export interface Button$PressEventParameters {}
|
|
3535
3513
|
|
|
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
|
-
export type Button$PressEvent = Event<Button$PressEventParameters>;
|
|
3514
|
+
export type Button$PressEvent = Event<Button$PressEventParameters, Button>;
|
|
3543
3515
|
}
|
|
3544
3516
|
|
|
3545
3517
|
declare module "sap/ui/commons/Callout" {
|
|
@@ -4126,7 +4098,7 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4126
4098
|
/**
|
|
4127
4099
|
* The event is fired when the popup is opened.
|
|
4128
4100
|
*/
|
|
4129
|
-
open?: (oEvent:
|
|
4101
|
+
open?: (oEvent: CalloutBase$OpenEvent) => void;
|
|
4130
4102
|
|
|
4131
4103
|
/**
|
|
4132
4104
|
* Event is fired when the Callout window is closed.
|
|
@@ -4137,7 +4109,7 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4137
4109
|
* Event is fired before a Callout is displayed. Call the preventDefault method of the event object to postpone
|
|
4138
4110
|
* opening. Application may use this event to start asynchronous Ajax call to load the Callout content
|
|
4139
4111
|
*/
|
|
4140
|
-
beforeOpen?: (oEvent:
|
|
4112
|
+
beforeOpen?: (oEvent: CalloutBase$BeforeOpenEvent) => void;
|
|
4141
4113
|
|
|
4142
4114
|
/**
|
|
4143
4115
|
* @since 1.11.0
|
|
@@ -4154,23 +4126,17 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4154
4126
|
parent?: Control;
|
|
4155
4127
|
}
|
|
4156
4128
|
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
export type $CalloutBaseBeforeOpenEventParameters = CalloutBase$BeforeOpenEventParameters;
|
|
4162
|
-
|
|
4163
|
-
export type CalloutBase$BeforeOpenEvent = Event<CalloutBase$BeforeOpenEventParameters>;
|
|
4129
|
+
export type CalloutBase$BeforeOpenEvent = Event<
|
|
4130
|
+
CalloutBase$BeforeOpenEventParameters,
|
|
4131
|
+
CalloutBase
|
|
4132
|
+
>;
|
|
4164
4133
|
|
|
4165
4134
|
export interface CalloutBase$CloseEventParameters {}
|
|
4166
4135
|
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
export type $CalloutBaseCloseEventParameters = CalloutBase$CloseEventParameters;
|
|
4172
|
-
|
|
4173
|
-
export type CalloutBase$CloseEvent = Event<CalloutBase$CloseEventParameters>;
|
|
4136
|
+
export type CalloutBase$CloseEvent = Event<
|
|
4137
|
+
CalloutBase$CloseEventParameters,
|
|
4138
|
+
CalloutBase
|
|
4139
|
+
>;
|
|
4174
4140
|
|
|
4175
4141
|
export interface CalloutBase$OpenEventParameters {
|
|
4176
4142
|
/**
|
|
@@ -4179,23 +4145,17 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4179
4145
|
parent?: Control;
|
|
4180
4146
|
}
|
|
4181
4147
|
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
export type $CalloutBaseOpenEventParameters = CalloutBase$OpenEventParameters;
|
|
4187
|
-
|
|
4188
|
-
export type CalloutBase$OpenEvent = Event<CalloutBase$OpenEventParameters>;
|
|
4148
|
+
export type CalloutBase$OpenEvent = Event<
|
|
4149
|
+
CalloutBase$OpenEventParameters,
|
|
4150
|
+
CalloutBase
|
|
4151
|
+
>;
|
|
4189
4152
|
|
|
4190
4153
|
export interface CalloutBase$OpenedEventParameters {}
|
|
4191
4154
|
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
export type $CalloutBaseOpenedEventParameters = CalloutBase$OpenedEventParameters;
|
|
4197
|
-
|
|
4198
|
-
export type CalloutBase$OpenedEvent = Event<CalloutBase$OpenedEventParameters>;
|
|
4155
|
+
export type CalloutBase$OpenedEvent = Event<
|
|
4156
|
+
CalloutBase$OpenedEventParameters,
|
|
4157
|
+
CalloutBase
|
|
4158
|
+
>;
|
|
4199
4159
|
}
|
|
4200
4160
|
|
|
4201
4161
|
declare module "sap/ui/commons/Carousel" {
|
|
@@ -5235,7 +5195,7 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5235
5195
|
/**
|
|
5236
5196
|
* Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
|
|
5237
5197
|
*/
|
|
5238
|
-
change?: (oEvent:
|
|
5198
|
+
change?: (oEvent: CheckBox$ChangeEvent) => void;
|
|
5239
5199
|
}
|
|
5240
5200
|
|
|
5241
5201
|
export interface CheckBox$ChangeEventParameters {
|
|
@@ -5245,13 +5205,10 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5245
5205
|
checked?: boolean;
|
|
5246
5206
|
}
|
|
5247
5207
|
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
export type $CheckBoxChangeEventParameters = CheckBox$ChangeEventParameters;
|
|
5253
|
-
|
|
5254
|
-
export type CheckBox$ChangeEvent = Event<CheckBox$ChangeEventParameters>;
|
|
5208
|
+
export type CheckBox$ChangeEvent = Event<
|
|
5209
|
+
CheckBox$ChangeEventParameters,
|
|
5210
|
+
CheckBox
|
|
5211
|
+
>;
|
|
5255
5212
|
}
|
|
5256
5213
|
|
|
5257
5214
|
declare module "sap/ui/commons/ColorPicker" {
|
|
@@ -5825,13 +5782,10 @@ declare module "sap/ui/commons/ComboBox" {
|
|
|
5825
5782
|
selectedItem?: ListItem;
|
|
5826
5783
|
}
|
|
5827
5784
|
|
|
5828
|
-
|
|
5829
|
-
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
export type $ComboBoxChangeEventParameters = ComboBox$ChangeEventParameters;
|
|
5833
|
-
|
|
5834
|
-
export type ComboBox$ChangeEvent = Event<ComboBox$ChangeEventParameters>;
|
|
5785
|
+
export type ComboBox$ChangeEvent = Event<
|
|
5786
|
+
ComboBox$ChangeEventParameters,
|
|
5787
|
+
ComboBox
|
|
5788
|
+
>;
|
|
5835
5789
|
}
|
|
5836
5790
|
|
|
5837
5791
|
declare module "sap/ui/commons/DatePicker" {
|
|
@@ -7014,7 +6968,7 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7014
6968
|
* Event is fired when the dialog has been closed (after closing-animation etc.). Event parameters provide
|
|
7015
6969
|
* information about last position and last size.
|
|
7016
6970
|
*/
|
|
7017
|
-
closed?: (oEvent:
|
|
6971
|
+
closed?: (oEvent: Dialog$ClosedEvent) => void;
|
|
7018
6972
|
}
|
|
7019
6973
|
|
|
7020
6974
|
export interface Dialog$ClosedEventParameters {
|
|
@@ -7039,13 +6993,7 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7039
6993
|
left?: int;
|
|
7040
6994
|
}
|
|
7041
6995
|
|
|
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
|
-
export type Dialog$ClosedEvent = Event<Dialog$ClosedEventParameters>;
|
|
6996
|
+
export type Dialog$ClosedEvent = Event<Dialog$ClosedEventParameters, Dialog>;
|
|
7049
6997
|
}
|
|
7050
6998
|
|
|
7051
6999
|
declare module "sap/ui/commons/DropdownBox" {
|
|
@@ -7530,7 +7478,7 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7530
7478
|
* Event fired whenever the configured searchHelpItem is clicked or the searchHelpItem is configured and
|
|
7531
7479
|
* F4 key is pressed.
|
|
7532
7480
|
*/
|
|
7533
|
-
searchHelp?: (oEvent:
|
|
7481
|
+
searchHelp?: (oEvent: DropdownBox$SearchHelpEvent) => void;
|
|
7534
7482
|
}
|
|
7535
7483
|
|
|
7536
7484
|
export interface DropdownBox$SearchHelpEventParameters {
|
|
@@ -7540,13 +7488,10 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7540
7488
|
value?: string;
|
|
7541
7489
|
}
|
|
7542
7490
|
|
|
7543
|
-
|
|
7544
|
-
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
export type $DropdownBoxSearchHelpEventParameters = DropdownBox$SearchHelpEventParameters;
|
|
7548
|
-
|
|
7549
|
-
export type DropdownBox$SearchHelpEvent = Event<DropdownBox$SearchHelpEventParameters>;
|
|
7491
|
+
export type DropdownBox$SearchHelpEvent = Event<
|
|
7492
|
+
DropdownBox$SearchHelpEventParameters,
|
|
7493
|
+
DropdownBox
|
|
7494
|
+
>;
|
|
7550
7495
|
}
|
|
7551
7496
|
|
|
7552
7497
|
declare module "sap/ui/commons/FileUploader" {
|
|
@@ -8699,14 +8644,14 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8699
8644
|
* Event is fired when the text in the field has changed AND the focus leaves the TextField or the Enter
|
|
8700
8645
|
* key is pressed.
|
|
8701
8646
|
*/
|
|
8702
|
-
change?: (oEvent:
|
|
8647
|
+
change?: (oEvent: TextField$ChangeEvent) => void;
|
|
8703
8648
|
|
|
8704
8649
|
/**
|
|
8705
8650
|
* This event if fired during typing into the `TextField` and returns the currently entered value. **Note:**
|
|
8706
8651
|
* This is not the content of the value property. The value property is only updated by ENTER and by leaving
|
|
8707
8652
|
* the control.
|
|
8708
8653
|
*/
|
|
8709
|
-
liveChange?: (oEvent:
|
|
8654
|
+
liveChange?: (oEvent: TextField$LiveChangeEvent) => void;
|
|
8710
8655
|
}
|
|
8711
8656
|
|
|
8712
8657
|
export interface TextField$ChangeEventParameters {
|
|
@@ -8716,13 +8661,10 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8716
8661
|
newValue?: string;
|
|
8717
8662
|
}
|
|
8718
8663
|
|
|
8719
|
-
|
|
8720
|
-
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
export type $TextFieldChangeEventParameters = TextField$ChangeEventParameters;
|
|
8724
|
-
|
|
8725
|
-
export type TextField$ChangeEvent = Event<TextField$ChangeEventParameters>;
|
|
8664
|
+
export type TextField$ChangeEvent = Event<
|
|
8665
|
+
TextField$ChangeEventParameters,
|
|
8666
|
+
TextField
|
|
8667
|
+
>;
|
|
8726
8668
|
|
|
8727
8669
|
export interface TextField$LiveChangeEventParameters {
|
|
8728
8670
|
/**
|
|
@@ -8731,13 +8673,10 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8731
8673
|
liveValue?: string;
|
|
8732
8674
|
}
|
|
8733
8675
|
|
|
8734
|
-
|
|
8735
|
-
|
|
8736
|
-
|
|
8737
|
-
|
|
8738
|
-
export type $TextFieldLiveChangeEventParameters = TextField$LiveChangeEventParameters;
|
|
8739
|
-
|
|
8740
|
-
export type TextField$LiveChangeEvent = Event<TextField$LiveChangeEventParameters>;
|
|
8676
|
+
export type TextField$LiveChangeEvent = Event<
|
|
8677
|
+
TextField$LiveChangeEventParameters,
|
|
8678
|
+
TextField
|
|
8679
|
+
>;
|
|
8741
8680
|
}
|
|
8742
8681
|
|
|
8743
8682
|
declare module "sap/ui/commons/form/Form" {
|
|
@@ -9516,10 +9455,12 @@ declare module "sap/ui/commons/form/SimpleForm" {
|
|
|
9516
9455
|
$SimpleFormSettings as $SimpleFormSettings1,
|
|
9517
9456
|
} from "sap/ui/layout/form/SimpleForm";
|
|
9518
9457
|
|
|
9519
|
-
import { form } from "sap/ui/
|
|
9458
|
+
import { form } from "sap/ui/layout/library";
|
|
9520
9459
|
|
|
9521
9460
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
9522
9461
|
|
|
9462
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
9463
|
+
|
|
9523
9464
|
/**
|
|
9524
9465
|
* @since 1.12
|
|
9525
9466
|
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
@@ -9536,9 +9477,6 @@ declare module "sap/ui/commons/form/SimpleForm" {
|
|
|
9536
9477
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9537
9478
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
9538
9479
|
* of the syntax of the settings object.
|
|
9539
|
-
*
|
|
9540
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.SimpleForm#constructor sap.ui.layout.form.SimpleForm }
|
|
9541
|
-
* can be used.
|
|
9542
9480
|
*/
|
|
9543
9481
|
constructor(
|
|
9544
9482
|
/**
|
|
@@ -9552,9 +9490,6 @@ declare module "sap/ui/commons/form/SimpleForm" {
|
|
|
9552
9490
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9553
9491
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
9554
9492
|
* of the syntax of the settings object.
|
|
9555
|
-
*
|
|
9556
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.SimpleForm#constructor sap.ui.layout.form.SimpleForm }
|
|
9557
|
-
* can be used.
|
|
9558
9493
|
*/
|
|
9559
9494
|
constructor(
|
|
9560
9495
|
/**
|
|
@@ -9599,31 +9534,71 @@ declare module "sap/ui/commons/form/SimpleForm" {
|
|
|
9599
9534
|
/**
|
|
9600
9535
|
* @since 1.14
|
|
9601
9536
|
*
|
|
9602
|
-
*
|
|
9537
|
+
* Gets current value of property {@link #getLayout layout}.
|
|
9538
|
+
*
|
|
9539
|
+
* The `FormLayout` that is used to render the `SimpleForm`.
|
|
9603
9540
|
*
|
|
9604
|
-
*
|
|
9541
|
+
* We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
|
|
9542
|
+
* layouts are not designed for this library.
|
|
9605
9543
|
*
|
|
9606
|
-
*
|
|
9544
|
+
* **Note** If possible, set the `layout` before adding content to prevent calculations for the default
|
|
9545
|
+
* layout.
|
|
9546
|
+
*
|
|
9547
|
+
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
9548
|
+
*
|
|
9549
|
+
* Default value is `ResponsiveLayout`.
|
|
9550
|
+
*
|
|
9551
|
+
* @returns Value of property `layout`
|
|
9607
9552
|
*/
|
|
9608
|
-
getLayout(): form.SimpleFormLayout;
|
|
9553
|
+
getLayout(): form.SimpleFormLayout | keyof typeof form.SimpleFormLayout;
|
|
9609
9554
|
/**
|
|
9610
9555
|
* @since 1.14
|
|
9611
9556
|
*
|
|
9612
|
-
*
|
|
9557
|
+
* Sets a new value for property {@link #getLayout layout}.
|
|
9613
9558
|
*
|
|
9614
|
-
*
|
|
9559
|
+
* The `FormLayout` that is used to render the `SimpleForm`.
|
|
9615
9560
|
*
|
|
9616
|
-
*
|
|
9561
|
+
* We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
|
|
9562
|
+
* layouts are not designed for this library.
|
|
9563
|
+
*
|
|
9564
|
+
* **Note** If possible, set the `layout` before adding content to prevent calculations for the default
|
|
9565
|
+
* layout.
|
|
9566
|
+
*
|
|
9567
|
+
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
9568
|
+
*
|
|
9569
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9570
|
+
*
|
|
9571
|
+
* Default value is `ResponsiveLayout`.
|
|
9572
|
+
*
|
|
9573
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
9617
9574
|
*/
|
|
9618
9575
|
setLayout(
|
|
9619
9576
|
/**
|
|
9620
|
-
*
|
|
9577
|
+
* New value for property `layout`
|
|
9621
9578
|
*/
|
|
9622
|
-
|
|
9579
|
+
sLayout?: form.SimpleFormLayout | keyof typeof form.SimpleFormLayout
|
|
9623
9580
|
): this;
|
|
9624
9581
|
}
|
|
9625
9582
|
|
|
9626
|
-
export interface $SimpleFormSettings extends $SimpleFormSettings1 {
|
|
9583
|
+
export interface $SimpleFormSettings extends $SimpleFormSettings1 {
|
|
9584
|
+
/**
|
|
9585
|
+
* @since 1.14
|
|
9586
|
+
*
|
|
9587
|
+
* The `FormLayout` that is used to render the `SimpleForm`.
|
|
9588
|
+
*
|
|
9589
|
+
* We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
|
|
9590
|
+
* layouts are not designed for this library.
|
|
9591
|
+
*
|
|
9592
|
+
* **Note** If possible, set the `layout` before adding content to prevent calculations for the default
|
|
9593
|
+
* layout.
|
|
9594
|
+
*
|
|
9595
|
+
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
9596
|
+
*/
|
|
9597
|
+
layout?:
|
|
9598
|
+
| (form.SimpleFormLayout | keyof typeof form.SimpleFormLayout)
|
|
9599
|
+
| PropertyBindingInfo
|
|
9600
|
+
| `{${string}}`;
|
|
9601
|
+
}
|
|
9627
9602
|
}
|
|
9628
9603
|
|
|
9629
9604
|
declare module "sap/ui/commons/FormattedTextView" {
|
|
@@ -10415,13 +10390,7 @@ declare module "sap/ui/commons/Image" {
|
|
|
10415
10390
|
|
|
10416
10391
|
export interface Image$PressEventParameters {}
|
|
10417
10392
|
|
|
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
|
-
export type Image$PressEvent = Event<Image$PressEventParameters>;
|
|
10393
|
+
export type Image$PressEvent = Event<Image$PressEventParameters, Image>;
|
|
10425
10394
|
}
|
|
10426
10395
|
|
|
10427
10396
|
declare module "sap/ui/commons/ImageMap" {
|
|
@@ -10702,7 +10671,7 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
10702
10671
|
/**
|
|
10703
10672
|
* Event for the areas that can be clicked in an ImageMap
|
|
10704
10673
|
*/
|
|
10705
|
-
press?: (oEvent:
|
|
10674
|
+
press?: (oEvent: ImageMap$PressEvent) => void;
|
|
10706
10675
|
}
|
|
10707
10676
|
|
|
10708
10677
|
export interface ImageMap$PressEventParameters {
|
|
@@ -10712,13 +10681,10 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
10712
10681
|
areaId?: string;
|
|
10713
10682
|
}
|
|
10714
10683
|
|
|
10715
|
-
|
|
10716
|
-
|
|
10717
|
-
|
|
10718
|
-
|
|
10719
|
-
export type $ImageMapPressEventParameters = ImageMap$PressEventParameters;
|
|
10720
|
-
|
|
10721
|
-
export type ImageMap$PressEvent = Event<ImageMap$PressEventParameters>;
|
|
10684
|
+
export type ImageMap$PressEvent = Event<
|
|
10685
|
+
ImageMap$PressEventParameters,
|
|
10686
|
+
ImageMap
|
|
10687
|
+
>;
|
|
10722
10688
|
}
|
|
10723
10689
|
|
|
10724
10690
|
declare module "sap/ui/commons/InPlaceEdit" {
|
|
@@ -11160,7 +11126,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11160
11126
|
* Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
|
|
11161
11127
|
* key is pressed.
|
|
11162
11128
|
*/
|
|
11163
|
-
change?: (oEvent:
|
|
11129
|
+
change?: (oEvent: InPlaceEdit$ChangeEvent) => void;
|
|
11164
11130
|
|
|
11165
11131
|
/**
|
|
11166
11132
|
* @since 1.16.5
|
|
@@ -11169,7 +11135,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11169
11135
|
* is not the content of the value property. The value property is only updated by ENTER and by leaving
|
|
11170
11136
|
* the control.
|
|
11171
11137
|
*/
|
|
11172
|
-
liveChange?: (oEvent:
|
|
11138
|
+
liveChange?: (oEvent: InPlaceEdit$LiveChangeEvent) => void;
|
|
11173
11139
|
}
|
|
11174
11140
|
|
|
11175
11141
|
export interface InPlaceEdit$ChangeEventParameters {
|
|
@@ -11179,13 +11145,10 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11179
11145
|
newValue?: string;
|
|
11180
11146
|
}
|
|
11181
11147
|
|
|
11182
|
-
|
|
11183
|
-
|
|
11184
|
-
|
|
11185
|
-
|
|
11186
|
-
export type $InPlaceEditChangeEventParameters = InPlaceEdit$ChangeEventParameters;
|
|
11187
|
-
|
|
11188
|
-
export type InPlaceEdit$ChangeEvent = Event<InPlaceEdit$ChangeEventParameters>;
|
|
11148
|
+
export type InPlaceEdit$ChangeEvent = Event<
|
|
11149
|
+
InPlaceEdit$ChangeEventParameters,
|
|
11150
|
+
InPlaceEdit
|
|
11151
|
+
>;
|
|
11189
11152
|
|
|
11190
11153
|
export interface InPlaceEdit$LiveChangeEventParameters {
|
|
11191
11154
|
/**
|
|
@@ -11194,13 +11157,10 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11194
11157
|
liveValue?: string;
|
|
11195
11158
|
}
|
|
11196
11159
|
|
|
11197
|
-
|
|
11198
|
-
|
|
11199
|
-
|
|
11200
|
-
|
|
11201
|
-
export type $InPlaceEditLiveChangeEventParameters = InPlaceEdit$LiveChangeEventParameters;
|
|
11202
|
-
|
|
11203
|
-
export type InPlaceEdit$LiveChangeEvent = Event<InPlaceEdit$LiveChangeEventParameters>;
|
|
11160
|
+
export type InPlaceEdit$LiveChangeEvent = Event<
|
|
11161
|
+
InPlaceEdit$LiveChangeEventParameters,
|
|
11162
|
+
InPlaceEdit
|
|
11163
|
+
>;
|
|
11204
11164
|
}
|
|
11205
11165
|
|
|
11206
11166
|
declare module "sap/ui/commons/Label" {
|
|
@@ -14596,13 +14556,7 @@ declare module "sap/ui/commons/Link" {
|
|
|
14596
14556
|
|
|
14597
14557
|
export interface Link$PressEventParameters {}
|
|
14598
14558
|
|
|
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
|
-
export type Link$PressEvent = Event<Link$PressEventParameters>;
|
|
14559
|
+
export type Link$PressEvent = Event<Link$PressEventParameters, Link>;
|
|
14606
14560
|
}
|
|
14607
14561
|
|
|
14608
14562
|
declare module "sap/ui/commons/ListBox" {
|
|
@@ -15490,7 +15444,7 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
15490
15444
|
/**
|
|
15491
15445
|
* Event is fired when selection is changed by user interaction.
|
|
15492
15446
|
*/
|
|
15493
|
-
select?: (oEvent:
|
|
15447
|
+
select?: (oEvent: ListBox$SelectEvent) => void;
|
|
15494
15448
|
}
|
|
15495
15449
|
|
|
15496
15450
|
export interface ListBox$SelectEventParameters {
|
|
@@ -15518,13 +15472,10 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
15518
15472
|
selectedIndices?: int[];
|
|
15519
15473
|
}
|
|
15520
15474
|
|
|
15521
|
-
|
|
15522
|
-
|
|
15523
|
-
|
|
15524
|
-
|
|
15525
|
-
export type $ListBoxSelectEventParameters = ListBox$SelectEventParameters;
|
|
15526
|
-
|
|
15527
|
-
export type ListBox$SelectEvent = Event<ListBox$SelectEventParameters>;
|
|
15475
|
+
export type ListBox$SelectEvent = Event<
|
|
15476
|
+
ListBox$SelectEventParameters,
|
|
15477
|
+
ListBox
|
|
15478
|
+
>;
|
|
15528
15479
|
}
|
|
15529
15480
|
|
|
15530
15481
|
declare module "sap/ui/commons/Menu" {
|
|
@@ -15895,10 +15846,10 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
15895
15846
|
|
|
15896
15847
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
15897
15848
|
|
|
15898
|
-
import Event from "sap/ui/base/Event";
|
|
15899
|
-
|
|
15900
15849
|
import MenuItemBase from "sap/ui/unified/MenuItemBase";
|
|
15901
15850
|
|
|
15851
|
+
import Event from "sap/ui/base/Event";
|
|
15852
|
+
|
|
15902
15853
|
import MenuItemBase1 from "sap/ui/commons/MenuItemBase";
|
|
15903
15854
|
|
|
15904
15855
|
/**
|
|
@@ -16222,9 +16173,7 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16222
16173
|
/**
|
|
16223
16174
|
* Event that is fired when a menu item is selected by the user
|
|
16224
16175
|
*/
|
|
16225
|
-
itemSelected?: (
|
|
16226
|
-
oEvent: Event<MenuButton$ItemSelectedEventParameters>
|
|
16227
|
-
) => void;
|
|
16176
|
+
itemSelected?: (oEvent: MenuButton$ItemSelectedEvent) => void;
|
|
16228
16177
|
}
|
|
16229
16178
|
|
|
16230
16179
|
export interface MenuButton$ItemSelectedEventParameters {
|
|
@@ -16239,13 +16188,10 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16239
16188
|
item?: MenuItemBase;
|
|
16240
16189
|
}
|
|
16241
16190
|
|
|
16242
|
-
|
|
16243
|
-
|
|
16244
|
-
|
|
16245
|
-
|
|
16246
|
-
export type $MenuButtonItemSelectedEventParameters = MenuButton$ItemSelectedEventParameters;
|
|
16247
|
-
|
|
16248
|
-
export type MenuButton$ItemSelectedEvent = Event<MenuButton$ItemSelectedEventParameters>;
|
|
16191
|
+
export type MenuButton$ItemSelectedEvent = Event<
|
|
16192
|
+
MenuButton$ItemSelectedEventParameters,
|
|
16193
|
+
MenuButton
|
|
16194
|
+
>;
|
|
16249
16195
|
|
|
16250
16196
|
export interface MenuButton$PressEventParameters
|
|
16251
16197
|
extends Button$PressEventParameters {
|
|
@@ -16260,13 +16206,10 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16260
16206
|
item?: MenuItemBase1;
|
|
16261
16207
|
}
|
|
16262
16208
|
|
|
16263
|
-
|
|
16264
|
-
|
|
16265
|
-
|
|
16266
|
-
|
|
16267
|
-
export type $MenuButtonPressEventParameters = MenuButton$PressEventParameters;
|
|
16268
|
-
|
|
16269
|
-
export type MenuButton$PressEvent = Event<MenuButton$PressEventParameters>;
|
|
16209
|
+
export type MenuButton$PressEvent = Event<
|
|
16210
|
+
MenuButton$PressEventParameters,
|
|
16211
|
+
MenuButton
|
|
16212
|
+
>;
|
|
16270
16213
|
}
|
|
16271
16214
|
|
|
16272
16215
|
declare module "sap/ui/commons/MenuItem" {
|
|
@@ -17614,13 +17557,10 @@ declare module "sap/ui/commons/MessageToast" {
|
|
|
17614
17557
|
|
|
17615
17558
|
export interface MessageToast$NextEventParameters {}
|
|
17616
17559
|
|
|
17617
|
-
|
|
17618
|
-
|
|
17619
|
-
|
|
17620
|
-
|
|
17621
|
-
export type $MessageToastNextEventParameters = MessageToast$NextEventParameters;
|
|
17622
|
-
|
|
17623
|
-
export type MessageToast$NextEvent = Event<MessageToast$NextEventParameters>;
|
|
17560
|
+
export type MessageToast$NextEvent = Event<
|
|
17561
|
+
MessageToast$NextEventParameters,
|
|
17562
|
+
MessageToast
|
|
17563
|
+
>;
|
|
17624
17564
|
}
|
|
17625
17565
|
|
|
17626
17566
|
declare module "sap/ui/commons/Paginator" {
|
|
@@ -17630,10 +17570,10 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
17630
17570
|
|
|
17631
17571
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
17632
17572
|
|
|
17633
|
-
import Event from "sap/ui/base/Event";
|
|
17634
|
-
|
|
17635
17573
|
import { PaginatorEvent } from "sap/ui/commons/library";
|
|
17636
17574
|
|
|
17575
|
+
import Event from "sap/ui/base/Event";
|
|
17576
|
+
|
|
17637
17577
|
/**
|
|
17638
17578
|
* @deprecated (since 1.38)
|
|
17639
17579
|
*
|
|
@@ -17841,7 +17781,7 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
17841
17781
|
/**
|
|
17842
17782
|
* Event is fired when the user navigates to another page by selecting it directly, or by jumping forward/backward.
|
|
17843
17783
|
*/
|
|
17844
|
-
page?: (oEvent:
|
|
17784
|
+
page?: (oEvent: Paginator$PageEvent) => void;
|
|
17845
17785
|
}
|
|
17846
17786
|
|
|
17847
17787
|
export interface Paginator$PageEventParameters {
|
|
@@ -17865,13 +17805,10 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
17865
17805
|
type?: PaginatorEvent | keyof typeof PaginatorEvent;
|
|
17866
17806
|
}
|
|
17867
17807
|
|
|
17868
|
-
|
|
17869
|
-
|
|
17870
|
-
|
|
17871
|
-
|
|
17872
|
-
export type $PaginatorPageEventParameters = Paginator$PageEventParameters;
|
|
17873
|
-
|
|
17874
|
-
export type Paginator$PageEvent = Event<Paginator$PageEventParameters>;
|
|
17808
|
+
export type Paginator$PageEvent = Event<
|
|
17809
|
+
Paginator$PageEventParameters,
|
|
17810
|
+
Paginator
|
|
17811
|
+
>;
|
|
17875
17812
|
}
|
|
17876
17813
|
|
|
17877
17814
|
declare module "sap/ui/commons/Panel" {
|
|
@@ -19395,13 +19332,10 @@ declare module "sap/ui/commons/RadioButton" {
|
|
|
19395
19332
|
|
|
19396
19333
|
export interface RadioButton$SelectEventParameters {}
|
|
19397
19334
|
|
|
19398
|
-
|
|
19399
|
-
|
|
19400
|
-
|
|
19401
|
-
|
|
19402
|
-
export type $RadioButtonSelectEventParameters = RadioButton$SelectEventParameters;
|
|
19403
|
-
|
|
19404
|
-
export type RadioButton$SelectEvent = Event<RadioButton$SelectEventParameters>;
|
|
19335
|
+
export type RadioButton$SelectEvent = Event<
|
|
19336
|
+
RadioButton$SelectEventParameters,
|
|
19337
|
+
RadioButton
|
|
19338
|
+
>;
|
|
19405
19339
|
}
|
|
19406
19340
|
|
|
19407
19341
|
declare module "sap/ui/commons/RadioButtonGroup" {
|
|
@@ -19983,7 +19917,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
19983
19917
|
/**
|
|
19984
19918
|
* Fires when selection is changed by user interaction.
|
|
19985
19919
|
*/
|
|
19986
|
-
select?: (oEvent:
|
|
19920
|
+
select?: (oEvent: RadioButtonGroup$SelectEvent) => void;
|
|
19987
19921
|
}
|
|
19988
19922
|
|
|
19989
19923
|
export interface RadioButtonGroup$SelectEventParameters {
|
|
@@ -19993,13 +19927,10 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
19993
19927
|
selectedIndex?: int;
|
|
19994
19928
|
}
|
|
19995
19929
|
|
|
19996
|
-
|
|
19997
|
-
|
|
19998
|
-
|
|
19999
|
-
|
|
20000
|
-
export type $RadioButtonGroupSelectEventParameters = RadioButtonGroup$SelectEventParameters;
|
|
20001
|
-
|
|
20002
|
-
export type RadioButtonGroup$SelectEvent = Event<RadioButtonGroup$SelectEventParameters>;
|
|
19930
|
+
export type RadioButtonGroup$SelectEvent = Event<
|
|
19931
|
+
RadioButtonGroup$SelectEventParameters,
|
|
19932
|
+
RadioButtonGroup
|
|
19933
|
+
>;
|
|
20003
19934
|
}
|
|
20004
19935
|
|
|
20005
19936
|
declare module "sap/ui/commons/RangeSlider" {
|
|
@@ -20656,7 +20587,7 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
20656
20587
|
/**
|
|
20657
20588
|
* The event is fired when the user has done a rating.
|
|
20658
20589
|
*/
|
|
20659
|
-
change?: (oEvent:
|
|
20590
|
+
change?: (oEvent: RatingIndicator$ChangeEvent) => void;
|
|
20660
20591
|
}
|
|
20661
20592
|
|
|
20662
20593
|
export interface RatingIndicator$ChangeEventParameters {
|
|
@@ -20666,13 +20597,10 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
20666
20597
|
value?: int;
|
|
20667
20598
|
}
|
|
20668
20599
|
|
|
20669
|
-
|
|
20670
|
-
|
|
20671
|
-
|
|
20672
|
-
|
|
20673
|
-
export type $RatingIndicatorChangeEventParameters = RatingIndicator$ChangeEventParameters;
|
|
20674
|
-
|
|
20675
|
-
export type RatingIndicator$ChangeEvent = Event<RatingIndicator$ChangeEventParameters>;
|
|
20600
|
+
export type RatingIndicator$ChangeEvent = Event<
|
|
20601
|
+
RatingIndicator$ChangeEventParameters,
|
|
20602
|
+
RatingIndicator
|
|
20603
|
+
>;
|
|
20676
20604
|
}
|
|
20677
20605
|
|
|
20678
20606
|
declare module "sap/ui/commons/ResponsiveContainer" {
|
|
@@ -21008,9 +20936,7 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21008
20936
|
/**
|
|
21009
20937
|
* The event is fired the width of the container reaches a new range.
|
|
21010
20938
|
*/
|
|
21011
|
-
rangeSwitch?: (
|
|
21012
|
-
oEvent: Event<ResponsiveContainer$RangeSwitchEventParameters>
|
|
21013
|
-
) => void;
|
|
20939
|
+
rangeSwitch?: (oEvent: ResponsiveContainer$RangeSwitchEvent) => void;
|
|
21014
20940
|
}
|
|
21015
20941
|
|
|
21016
20942
|
export interface ResponsiveContainer$RangeSwitchEventParameters {
|
|
@@ -21020,13 +20946,10 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21020
20946
|
currentRange?: ResponsiveContainerRange;
|
|
21021
20947
|
}
|
|
21022
20948
|
|
|
21023
|
-
|
|
21024
|
-
|
|
21025
|
-
|
|
21026
|
-
|
|
21027
|
-
export type $ResponsiveContainerRangeSwitchEventParameters = ResponsiveContainer$RangeSwitchEventParameters;
|
|
21028
|
-
|
|
21029
|
-
export type ResponsiveContainer$RangeSwitchEvent = Event<ResponsiveContainer$RangeSwitchEventParameters>;
|
|
20949
|
+
export type ResponsiveContainer$RangeSwitchEvent = Event<
|
|
20950
|
+
ResponsiveContainer$RangeSwitchEventParameters,
|
|
20951
|
+
ResponsiveContainer
|
|
20952
|
+
>;
|
|
21030
20953
|
}
|
|
21031
20954
|
|
|
21032
20955
|
declare module "sap/ui/commons/ResponsiveContainerRange" {
|
|
@@ -21869,12 +21792,12 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
21869
21792
|
/**
|
|
21870
21793
|
* Event is fired when the user selects a step.
|
|
21871
21794
|
*/
|
|
21872
|
-
stepSelected?: (oEvent:
|
|
21795
|
+
stepSelected?: (oEvent: RoadMap$StepSelectedEvent) => void;
|
|
21873
21796
|
|
|
21874
21797
|
/**
|
|
21875
21798
|
* Event is fired when a given step is expanded or collapsed by user.
|
|
21876
21799
|
*/
|
|
21877
|
-
stepExpanded?: (oEvent:
|
|
21800
|
+
stepExpanded?: (oEvent: RoadMap$StepExpandedEvent) => void;
|
|
21878
21801
|
}
|
|
21879
21802
|
|
|
21880
21803
|
export interface RoadMap$StepExpandedEventParameters {
|
|
@@ -21884,13 +21807,10 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
21884
21807
|
stepId?: string;
|
|
21885
21808
|
}
|
|
21886
21809
|
|
|
21887
|
-
|
|
21888
|
-
|
|
21889
|
-
|
|
21890
|
-
|
|
21891
|
-
export type $RoadMapStepExpandedEventParameters = RoadMap$StepExpandedEventParameters;
|
|
21892
|
-
|
|
21893
|
-
export type RoadMap$StepExpandedEvent = Event<RoadMap$StepExpandedEventParameters>;
|
|
21810
|
+
export type RoadMap$StepExpandedEvent = Event<
|
|
21811
|
+
RoadMap$StepExpandedEventParameters,
|
|
21812
|
+
RoadMap
|
|
21813
|
+
>;
|
|
21894
21814
|
|
|
21895
21815
|
export interface RoadMap$StepSelectedEventParameters {
|
|
21896
21816
|
/**
|
|
@@ -21899,13 +21819,10 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
21899
21819
|
stepId?: string;
|
|
21900
21820
|
}
|
|
21901
21821
|
|
|
21902
|
-
|
|
21903
|
-
|
|
21904
|
-
|
|
21905
|
-
|
|
21906
|
-
export type $RoadMapStepSelectedEventParameters = RoadMap$StepSelectedEventParameters;
|
|
21907
|
-
|
|
21908
|
-
export type RoadMap$StepSelectedEvent = Event<RoadMap$StepSelectedEventParameters>;
|
|
21822
|
+
export type RoadMap$StepSelectedEvent = Event<
|
|
21823
|
+
RoadMap$StepSelectedEventParameters,
|
|
21824
|
+
RoadMap
|
|
21825
|
+
>;
|
|
21909
21826
|
}
|
|
21910
21827
|
|
|
21911
21828
|
declare module "sap/ui/commons/RoadMapStep" {
|
|
@@ -23177,22 +23094,22 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23177
23094
|
/**
|
|
23178
23095
|
* This event is triggered when a filter is set.
|
|
23179
23096
|
*/
|
|
23180
|
-
filter?: (oEvent:
|
|
23097
|
+
filter?: (oEvent: RowRepeater$FilterEvent) => void;
|
|
23181
23098
|
|
|
23182
23099
|
/**
|
|
23183
23100
|
* This event is triggered when a sorting is applied.
|
|
23184
23101
|
*/
|
|
23185
|
-
sort?: (oEvent:
|
|
23102
|
+
sort?: (oEvent: RowRepeater$SortEvent) => void;
|
|
23186
23103
|
|
|
23187
23104
|
/**
|
|
23188
23105
|
* This event is triggered when paging was executed.
|
|
23189
23106
|
*/
|
|
23190
|
-
page?: (oEvent:
|
|
23107
|
+
page?: (oEvent: RowRepeater$PageEvent) => void;
|
|
23191
23108
|
|
|
23192
23109
|
/**
|
|
23193
23110
|
* This event is triggered when the number of rows was changed.
|
|
23194
23111
|
*/
|
|
23195
|
-
resize?: (oEvent:
|
|
23112
|
+
resize?: (oEvent: RowRepeater$ResizeEvent) => void;
|
|
23196
23113
|
}
|
|
23197
23114
|
|
|
23198
23115
|
export interface RowRepeater$FilterEventParameters {
|
|
@@ -23202,13 +23119,10 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23202
23119
|
filterId?: string;
|
|
23203
23120
|
}
|
|
23204
23121
|
|
|
23205
|
-
|
|
23206
|
-
|
|
23207
|
-
|
|
23208
|
-
|
|
23209
|
-
export type $RowRepeaterFilterEventParameters = RowRepeater$FilterEventParameters;
|
|
23210
|
-
|
|
23211
|
-
export type RowRepeater$FilterEvent = Event<RowRepeater$FilterEventParameters>;
|
|
23122
|
+
export type RowRepeater$FilterEvent = Event<
|
|
23123
|
+
RowRepeater$FilterEventParameters,
|
|
23124
|
+
RowRepeater
|
|
23125
|
+
>;
|
|
23212
23126
|
|
|
23213
23127
|
export interface RowRepeater$PageEventParameters {
|
|
23214
23128
|
/**
|
|
@@ -23222,13 +23136,10 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23222
23136
|
previousPage?: int;
|
|
23223
23137
|
}
|
|
23224
23138
|
|
|
23225
|
-
|
|
23226
|
-
|
|
23227
|
-
|
|
23228
|
-
|
|
23229
|
-
export type $RowRepeaterPageEventParameters = RowRepeater$PageEventParameters;
|
|
23230
|
-
|
|
23231
|
-
export type RowRepeater$PageEvent = Event<RowRepeater$PageEventParameters>;
|
|
23139
|
+
export type RowRepeater$PageEvent = Event<
|
|
23140
|
+
RowRepeater$PageEventParameters,
|
|
23141
|
+
RowRepeater
|
|
23142
|
+
>;
|
|
23232
23143
|
|
|
23233
23144
|
export interface RowRepeater$ResizeEventParameters {
|
|
23234
23145
|
/**
|
|
@@ -23242,13 +23153,10 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23242
23153
|
previousNumberOfRows?: int;
|
|
23243
23154
|
}
|
|
23244
23155
|
|
|
23245
|
-
|
|
23246
|
-
|
|
23247
|
-
|
|
23248
|
-
|
|
23249
|
-
export type $RowRepeaterResizeEventParameters = RowRepeater$ResizeEventParameters;
|
|
23250
|
-
|
|
23251
|
-
export type RowRepeater$ResizeEvent = Event<RowRepeater$ResizeEventParameters>;
|
|
23156
|
+
export type RowRepeater$ResizeEvent = Event<
|
|
23157
|
+
RowRepeater$ResizeEventParameters,
|
|
23158
|
+
RowRepeater
|
|
23159
|
+
>;
|
|
23252
23160
|
|
|
23253
23161
|
export interface RowRepeater$SortEventParameters {
|
|
23254
23162
|
/**
|
|
@@ -23257,13 +23165,10 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
23257
23165
|
sorterId?: string;
|
|
23258
23166
|
}
|
|
23259
23167
|
|
|
23260
|
-
|
|
23261
|
-
|
|
23262
|
-
|
|
23263
|
-
|
|
23264
|
-
export type $RowRepeaterSortEventParameters = RowRepeater$SortEventParameters;
|
|
23265
|
-
|
|
23266
|
-
export type RowRepeater$SortEvent = Event<RowRepeater$SortEventParameters>;
|
|
23168
|
+
export type RowRepeater$SortEvent = Event<
|
|
23169
|
+
RowRepeater$SortEventParameters,
|
|
23170
|
+
RowRepeater
|
|
23171
|
+
>;
|
|
23267
23172
|
}
|
|
23268
23173
|
|
|
23269
23174
|
declare module "sap/ui/commons/RowRepeaterFilter" {
|
|
@@ -24561,12 +24466,12 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
24561
24466
|
/**
|
|
24562
24467
|
* Event which is fired when the user triggers a search
|
|
24563
24468
|
*/
|
|
24564
|
-
search?: (oEvent:
|
|
24469
|
+
search?: (oEvent: SearchField$SearchEvent) => void;
|
|
24565
24470
|
|
|
24566
24471
|
/**
|
|
24567
24472
|
* Event which is fired when new suggest values are required.
|
|
24568
24473
|
*/
|
|
24569
|
-
suggest?: (oEvent:
|
|
24474
|
+
suggest?: (oEvent: SearchField$SuggestEvent) => void;
|
|
24570
24475
|
}
|
|
24571
24476
|
|
|
24572
24477
|
export interface SearchField$SearchEventParameters {
|
|
@@ -24576,13 +24481,10 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
24576
24481
|
query?: string;
|
|
24577
24482
|
}
|
|
24578
24483
|
|
|
24579
|
-
|
|
24580
|
-
|
|
24581
|
-
|
|
24582
|
-
|
|
24583
|
-
export type $SearchFieldSearchEventParameters = SearchField$SearchEventParameters;
|
|
24584
|
-
|
|
24585
|
-
export type SearchField$SearchEvent = Event<SearchField$SearchEventParameters>;
|
|
24484
|
+
export type SearchField$SearchEvent = Event<
|
|
24485
|
+
SearchField$SearchEventParameters,
|
|
24486
|
+
SearchField
|
|
24487
|
+
>;
|
|
24586
24488
|
|
|
24587
24489
|
export interface SearchField$SuggestEventParameters {
|
|
24588
24490
|
/**
|
|
@@ -24591,13 +24493,10 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
24591
24493
|
value?: string;
|
|
24592
24494
|
}
|
|
24593
24495
|
|
|
24594
|
-
|
|
24595
|
-
|
|
24596
|
-
|
|
24597
|
-
|
|
24598
|
-
export type $SearchFieldSuggestEventParameters = SearchField$SuggestEventParameters;
|
|
24599
|
-
|
|
24600
|
-
export type SearchField$SuggestEvent = Event<SearchField$SuggestEventParameters>;
|
|
24496
|
+
export type SearchField$SuggestEvent = Event<
|
|
24497
|
+
SearchField$SuggestEventParameters,
|
|
24498
|
+
SearchField
|
|
24499
|
+
>;
|
|
24601
24500
|
}
|
|
24602
24501
|
|
|
24603
24502
|
declare module "sap/ui/commons/SearchProvider" {
|
|
@@ -24992,7 +24891,7 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
24992
24891
|
/**
|
|
24993
24892
|
* Event fired when button selected
|
|
24994
24893
|
*/
|
|
24995
|
-
select?: (oEvent:
|
|
24894
|
+
select?: (oEvent: SegmentedButton$SelectEvent) => void;
|
|
24996
24895
|
}
|
|
24997
24896
|
|
|
24998
24897
|
export interface SegmentedButton$SelectEventParameters {
|
|
@@ -25002,13 +24901,10 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
25002
24901
|
selectedButtonId?: string;
|
|
25003
24902
|
}
|
|
25004
24903
|
|
|
25005
|
-
|
|
25006
|
-
|
|
25007
|
-
|
|
25008
|
-
|
|
25009
|
-
export type $SegmentedButtonSelectEventParameters = SegmentedButton$SelectEventParameters;
|
|
25010
|
-
|
|
25011
|
-
export type SegmentedButton$SelectEvent = Event<SegmentedButton$SelectEventParameters>;
|
|
24904
|
+
export type SegmentedButton$SelectEvent = Event<
|
|
24905
|
+
SegmentedButton$SelectEventParameters,
|
|
24906
|
+
SegmentedButton
|
|
24907
|
+
>;
|
|
25012
24908
|
}
|
|
25013
24909
|
|
|
25014
24910
|
declare module "sap/ui/commons/Slider" {
|
|
@@ -25736,13 +25632,13 @@ declare module "sap/ui/commons/Slider" {
|
|
|
25736
25632
|
/**
|
|
25737
25633
|
* Value was changed. This event is fired if the value has changed by a user action.
|
|
25738
25634
|
*/
|
|
25739
|
-
change?: (oEvent:
|
|
25635
|
+
change?: (oEvent: Slider$ChangeEvent) => void;
|
|
25740
25636
|
|
|
25741
25637
|
/**
|
|
25742
25638
|
* Value was changed. This event is fired during the mouse move. The normal change event is only fired by
|
|
25743
25639
|
* mouseup.
|
|
25744
25640
|
*/
|
|
25745
|
-
liveChange?: (oEvent:
|
|
25641
|
+
liveChange?: (oEvent: Slider$LiveChangeEvent) => void;
|
|
25746
25642
|
}
|
|
25747
25643
|
|
|
25748
25644
|
export interface Slider$ChangeEventParameters {
|
|
@@ -25752,13 +25648,7 @@ declare module "sap/ui/commons/Slider" {
|
|
|
25752
25648
|
value?: float;
|
|
25753
25649
|
}
|
|
25754
25650
|
|
|
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
|
-
export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters>;
|
|
25651
|
+
export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters, Slider>;
|
|
25762
25652
|
|
|
25763
25653
|
export interface Slider$LiveChangeEventParameters {
|
|
25764
25654
|
/**
|
|
@@ -25767,13 +25657,10 @@ declare module "sap/ui/commons/Slider" {
|
|
|
25767
25657
|
value?: float;
|
|
25768
25658
|
}
|
|
25769
25659
|
|
|
25770
|
-
|
|
25771
|
-
|
|
25772
|
-
|
|
25773
|
-
|
|
25774
|
-
export type $SliderLiveChangeEventParameters = Slider$LiveChangeEventParameters;
|
|
25775
|
-
|
|
25776
|
-
export type Slider$LiveChangeEvent = Event<Slider$LiveChangeEventParameters>;
|
|
25660
|
+
export type Slider$LiveChangeEvent = Event<
|
|
25661
|
+
Slider$LiveChangeEventParameters,
|
|
25662
|
+
Slider
|
|
25663
|
+
>;
|
|
25777
25664
|
}
|
|
25778
25665
|
|
|
25779
25666
|
declare module "sap/ui/commons/Splitter" {
|
|
@@ -26976,12 +26863,12 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
26976
26863
|
/**
|
|
26977
26864
|
* Fires when the user selects a tab.
|
|
26978
26865
|
*/
|
|
26979
|
-
select?: (oEvent:
|
|
26866
|
+
select?: (oEvent: TabStrip$SelectEvent) => void;
|
|
26980
26867
|
|
|
26981
26868
|
/**
|
|
26982
26869
|
* Fires when the user closes a tab.
|
|
26983
26870
|
*/
|
|
26984
|
-
close?: (oEvent:
|
|
26871
|
+
close?: (oEvent: TabStrip$CloseEvent) => void;
|
|
26985
26872
|
}
|
|
26986
26873
|
|
|
26987
26874
|
export interface TabStrip$CloseEventParameters {
|
|
@@ -26991,13 +26878,10 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
26991
26878
|
index?: int;
|
|
26992
26879
|
}
|
|
26993
26880
|
|
|
26994
|
-
|
|
26995
|
-
|
|
26996
|
-
|
|
26997
|
-
|
|
26998
|
-
export type $TabStripCloseEventParameters = TabStrip$CloseEventParameters;
|
|
26999
|
-
|
|
27000
|
-
export type TabStrip$CloseEvent = Event<TabStrip$CloseEventParameters>;
|
|
26881
|
+
export type TabStrip$CloseEvent = Event<
|
|
26882
|
+
TabStrip$CloseEventParameters,
|
|
26883
|
+
TabStrip
|
|
26884
|
+
>;
|
|
27001
26885
|
|
|
27002
26886
|
export interface TabStrip$SelectEventParameters {
|
|
27003
26887
|
/**
|
|
@@ -27006,13 +26890,10 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
27006
26890
|
index?: int;
|
|
27007
26891
|
}
|
|
27008
26892
|
|
|
27009
|
-
|
|
27010
|
-
|
|
27011
|
-
|
|
27012
|
-
|
|
27013
|
-
export type $TabStripSelectEventParameters = TabStrip$SelectEventParameters;
|
|
27014
|
-
|
|
27015
|
-
export type TabStrip$SelectEvent = Event<TabStrip$SelectEventParameters>;
|
|
26893
|
+
export type TabStrip$SelectEvent = Event<
|
|
26894
|
+
TabStrip$SelectEventParameters,
|
|
26895
|
+
TabStrip
|
|
26896
|
+
>;
|
|
27016
26897
|
}
|
|
27017
26898
|
|
|
27018
26899
|
declare module "sap/ui/commons/TextArea" {
|
|
@@ -29202,14 +29083,12 @@ declare module "sap/ui/commons/Tree" {
|
|
|
29202
29083
|
/**
|
|
29203
29084
|
* Event is fired when a tree node is selected.
|
|
29204
29085
|
*/
|
|
29205
|
-
select?: (oEvent:
|
|
29086
|
+
select?: (oEvent: Tree$SelectEvent) => void;
|
|
29206
29087
|
|
|
29207
29088
|
/**
|
|
29208
29089
|
* fired when the selection of the tree has been changed
|
|
29209
29090
|
*/
|
|
29210
|
-
selectionChange?: (
|
|
29211
|
-
oEvent: Event<Tree$SelectionChangeEventParameters>
|
|
29212
|
-
) => void;
|
|
29091
|
+
selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
|
|
29213
29092
|
}
|
|
29214
29093
|
|
|
29215
29094
|
export interface Tree$SelectEventParameters {
|
|
@@ -29224,13 +29103,7 @@ declare module "sap/ui/commons/Tree" {
|
|
|
29224
29103
|
nodeContext?: object;
|
|
29225
29104
|
}
|
|
29226
29105
|
|
|
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
|
-
export type Tree$SelectEvent = Event<Tree$SelectEventParameters>;
|
|
29106
|
+
export type Tree$SelectEvent = Event<Tree$SelectEventParameters, Tree>;
|
|
29234
29107
|
|
|
29235
29108
|
export interface Tree$SelectionChangeEventParameters {
|
|
29236
29109
|
/**
|
|
@@ -29244,13 +29117,10 @@ declare module "sap/ui/commons/Tree" {
|
|
|
29244
29117
|
nodeContexts?: object[];
|
|
29245
29118
|
}
|
|
29246
29119
|
|
|
29247
|
-
|
|
29248
|
-
|
|
29249
|
-
|
|
29250
|
-
|
|
29251
|
-
export type $TreeSelectionChangeEventParameters = Tree$SelectionChangeEventParameters;
|
|
29252
|
-
|
|
29253
|
-
export type Tree$SelectionChangeEvent = Event<Tree$SelectionChangeEventParameters>;
|
|
29120
|
+
export type Tree$SelectionChangeEvent = Event<
|
|
29121
|
+
Tree$SelectionChangeEventParameters,
|
|
29122
|
+
Tree
|
|
29123
|
+
>;
|
|
29254
29124
|
}
|
|
29255
29125
|
|
|
29256
29126
|
declare module "sap/ui/commons/TreeNode" {
|
|
@@ -29850,9 +29720,7 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
29850
29720
|
/**
|
|
29851
29721
|
* Node state has changed.
|
|
29852
29722
|
*/
|
|
29853
|
-
toggleOpenState?: (
|
|
29854
|
-
oEvent: Event<TreeNode$ToggleOpenStateEventParameters>
|
|
29855
|
-
) => void;
|
|
29723
|
+
toggleOpenState?: (oEvent: TreeNode$ToggleOpenStateEvent) => void;
|
|
29856
29724
|
|
|
29857
29725
|
/**
|
|
29858
29726
|
* Node is selected
|
|
@@ -29862,13 +29730,10 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
29862
29730
|
|
|
29863
29731
|
export interface TreeNode$SelectedEventParameters {}
|
|
29864
29732
|
|
|
29865
|
-
|
|
29866
|
-
|
|
29867
|
-
|
|
29868
|
-
|
|
29869
|
-
export type $TreeNodeSelectedEventParameters = TreeNode$SelectedEventParameters;
|
|
29870
|
-
|
|
29871
|
-
export type TreeNode$SelectedEvent = Event<TreeNode$SelectedEventParameters>;
|
|
29733
|
+
export type TreeNode$SelectedEvent = Event<
|
|
29734
|
+
TreeNode$SelectedEventParameters,
|
|
29735
|
+
TreeNode
|
|
29736
|
+
>;
|
|
29872
29737
|
|
|
29873
29738
|
export interface TreeNode$ToggleOpenStateEventParameters {
|
|
29874
29739
|
/**
|
|
@@ -29877,13 +29742,10 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
29877
29742
|
opened?: boolean;
|
|
29878
29743
|
}
|
|
29879
29744
|
|
|
29880
|
-
|
|
29881
|
-
|
|
29882
|
-
|
|
29883
|
-
|
|
29884
|
-
export type $TreeNodeToggleOpenStateEventParameters = TreeNode$ToggleOpenStateEventParameters;
|
|
29885
|
-
|
|
29886
|
-
export type TreeNode$ToggleOpenStateEvent = Event<TreeNode$ToggleOpenStateEventParameters>;
|
|
29745
|
+
export type TreeNode$ToggleOpenStateEvent = Event<
|
|
29746
|
+
TreeNode$ToggleOpenStateEventParameters,
|
|
29747
|
+
TreeNode
|
|
29748
|
+
>;
|
|
29887
29749
|
}
|
|
29888
29750
|
|
|
29889
29751
|
declare module "sap/ui/commons/TriStateCheckBox" {
|
|
@@ -30294,7 +30156,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
30294
30156
|
/**
|
|
30295
30157
|
* Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
|
|
30296
30158
|
*/
|
|
30297
|
-
change?: (oEvent:
|
|
30159
|
+
change?: (oEvent: TriStateCheckBox$ChangeEvent) => void;
|
|
30298
30160
|
}
|
|
30299
30161
|
|
|
30300
30162
|
export interface TriStateCheckBox$ChangeEventParameters {
|
|
@@ -30304,13 +30166,10 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
30304
30166
|
selectionState?: string;
|
|
30305
30167
|
}
|
|
30306
30168
|
|
|
30307
|
-
|
|
30308
|
-
|
|
30309
|
-
|
|
30310
|
-
|
|
30311
|
-
export type $TriStateCheckBoxChangeEventParameters = TriStateCheckBox$ChangeEventParameters;
|
|
30312
|
-
|
|
30313
|
-
export type TriStateCheckBox$ChangeEvent = Event<TriStateCheckBox$ChangeEventParameters>;
|
|
30169
|
+
export type TriStateCheckBox$ChangeEvent = Event<
|
|
30170
|
+
TriStateCheckBox$ChangeEventParameters,
|
|
30171
|
+
TriStateCheckBox
|
|
30172
|
+
>;
|
|
30314
30173
|
}
|
|
30315
30174
|
|
|
30316
30175
|
declare module "sap/ui/commons/ValueHelpField" {
|
|
@@ -30586,13 +30445,10 @@ declare module "sap/ui/commons/ValueHelpField" {
|
|
|
30586
30445
|
|
|
30587
30446
|
export interface ValueHelpField$ValueHelpRequestEventParameters {}
|
|
30588
30447
|
|
|
30589
|
-
|
|
30590
|
-
|
|
30591
|
-
|
|
30592
|
-
|
|
30593
|
-
export type $ValueHelpFieldValueHelpRequestEventParameters = ValueHelpField$ValueHelpRequestEventParameters;
|
|
30594
|
-
|
|
30595
|
-
export type ValueHelpField$ValueHelpRequestEvent = Event<ValueHelpField$ValueHelpRequestEventParameters>;
|
|
30448
|
+
export type ValueHelpField$ValueHelpRequestEvent = Event<
|
|
30449
|
+
ValueHelpField$ValueHelpRequestEventParameters,
|
|
30450
|
+
ValueHelpField
|
|
30451
|
+
>;
|
|
30596
30452
|
}
|
|
30597
30453
|
|
|
30598
30454
|
declare namespace sap {
|