@openui5/types 1.120.11 → 1.120.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +372 -54
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +118 -18
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/commons/library" {
|
|
4
4
|
import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
|
|
@@ -1099,7 +1099,11 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1099
1099
|
sWidth?: CSSSize
|
|
1100
1100
|
): this;
|
|
1101
1101
|
}
|
|
1102
|
-
|
|
1102
|
+
/**
|
|
1103
|
+
* Describes the settings that can be provided to the Accordion constructor.
|
|
1104
|
+
*
|
|
1105
|
+
* @deprecated (since 1.38)
|
|
1106
|
+
*/
|
|
1103
1107
|
export interface $AccordionSettings extends $ControlSettings {
|
|
1104
1108
|
/**
|
|
1105
1109
|
* When the specified width is less than the width of a section content, a horizontal scroll bar is provided.
|
|
@@ -1136,6 +1140,9 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1136
1140
|
sectionsReorder?: (oEvent: Accordion$SectionsReorderEvent) => void;
|
|
1137
1141
|
}
|
|
1138
1142
|
|
|
1143
|
+
/**
|
|
1144
|
+
* Parameters of the Accordion#sectionClose event.
|
|
1145
|
+
*/
|
|
1139
1146
|
export interface Accordion$SectionCloseEventParameters {
|
|
1140
1147
|
/**
|
|
1141
1148
|
* ID of the closed section
|
|
@@ -1143,11 +1150,17 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1143
1150
|
closeSectionId?: string;
|
|
1144
1151
|
}
|
|
1145
1152
|
|
|
1153
|
+
/**
|
|
1154
|
+
* Event object of the Accordion#sectionClose event.
|
|
1155
|
+
*/
|
|
1146
1156
|
export type Accordion$SectionCloseEvent = Event<
|
|
1147
1157
|
Accordion$SectionCloseEventParameters,
|
|
1148
1158
|
Accordion
|
|
1149
1159
|
>;
|
|
1150
1160
|
|
|
1161
|
+
/**
|
|
1162
|
+
* Parameters of the Accordion#sectionOpen event.
|
|
1163
|
+
*/
|
|
1151
1164
|
export interface Accordion$SectionOpenEventParameters {
|
|
1152
1165
|
/**
|
|
1153
1166
|
* ID of the opened section
|
|
@@ -1160,11 +1173,17 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1160
1173
|
closeSectionIds?: string[];
|
|
1161
1174
|
}
|
|
1162
1175
|
|
|
1176
|
+
/**
|
|
1177
|
+
* Event object of the Accordion#sectionOpen event.
|
|
1178
|
+
*/
|
|
1163
1179
|
export type Accordion$SectionOpenEvent = Event<
|
|
1164
1180
|
Accordion$SectionOpenEventParameters,
|
|
1165
1181
|
Accordion
|
|
1166
1182
|
>;
|
|
1167
1183
|
|
|
1184
|
+
/**
|
|
1185
|
+
* Parameters of the Accordion#sectionsReorder event.
|
|
1186
|
+
*/
|
|
1168
1187
|
export interface Accordion$SectionsReorderEventParameters {
|
|
1169
1188
|
/**
|
|
1170
1189
|
* ID of the moved section
|
|
@@ -1177,6 +1196,9 @@ declare module "sap/ui/commons/Accordion" {
|
|
|
1177
1196
|
newIndex?: int;
|
|
1178
1197
|
}
|
|
1179
1198
|
|
|
1199
|
+
/**
|
|
1200
|
+
* Event object of the Accordion#sectionsReorder event.
|
|
1201
|
+
*/
|
|
1180
1202
|
export type Accordion$SectionsReorderEvent = Event<
|
|
1181
1203
|
Accordion$SectionsReorderEventParameters,
|
|
1182
1204
|
Accordion
|
|
@@ -1523,7 +1545,11 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1523
1545
|
sTitle?: string
|
|
1524
1546
|
): this;
|
|
1525
1547
|
}
|
|
1526
|
-
|
|
1548
|
+
/**
|
|
1549
|
+
* Describes the settings that can be provided to the AccordionSection constructor.
|
|
1550
|
+
*
|
|
1551
|
+
* @deprecated (since 1.38)
|
|
1552
|
+
*/
|
|
1527
1553
|
export interface $AccordionSectionSettings extends $ElementSettings {
|
|
1528
1554
|
/**
|
|
1529
1555
|
* When the section content exceeds maxHeight, a vertical scroll bar appears.
|
|
@@ -1561,6 +1587,9 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1561
1587
|
scroll?: (oEvent: AccordionSection$ScrollEvent) => void;
|
|
1562
1588
|
}
|
|
1563
1589
|
|
|
1590
|
+
/**
|
|
1591
|
+
* Parameters of the AccordionSection#scroll event.
|
|
1592
|
+
*/
|
|
1564
1593
|
export interface AccordionSection$ScrollEventParameters {
|
|
1565
1594
|
/**
|
|
1566
1595
|
* Horizontal scroll position
|
|
@@ -1573,6 +1602,9 @@ declare module "sap/ui/commons/AccordionSection" {
|
|
|
1573
1602
|
top?: int;
|
|
1574
1603
|
}
|
|
1575
1604
|
|
|
1605
|
+
/**
|
|
1606
|
+
* Event object of the AccordionSection#scroll event.
|
|
1607
|
+
*/
|
|
1576
1608
|
export type AccordionSection$ScrollEvent = Event<
|
|
1577
1609
|
AccordionSection$ScrollEventParameters,
|
|
1578
1610
|
AccordionSection
|
|
@@ -1871,7 +1903,11 @@ declare module "sap/ui/commons/ApplicationHeader" {
|
|
|
1871
1903
|
sUserName?: string
|
|
1872
1904
|
): this;
|
|
1873
1905
|
}
|
|
1874
|
-
|
|
1906
|
+
/**
|
|
1907
|
+
* Describes the settings that can be provided to the ApplicationHeader constructor.
|
|
1908
|
+
*
|
|
1909
|
+
* @deprecated (since 1.38) - Instead, use the `sap.tnt.ToolHeader` control.
|
|
1910
|
+
*/
|
|
1875
1911
|
export interface $ApplicationHeaderSettings extends $ControlSettings {
|
|
1876
1912
|
/**
|
|
1877
1913
|
* Path (src) to the logo icon to be displayed in the application header.
|
|
@@ -1904,8 +1940,14 @@ declare module "sap/ui/commons/ApplicationHeader" {
|
|
|
1904
1940
|
logoff?: (oEvent: Event) => void;
|
|
1905
1941
|
}
|
|
1906
1942
|
|
|
1943
|
+
/**
|
|
1944
|
+
* Parameters of the ApplicationHeader#logoff event.
|
|
1945
|
+
*/
|
|
1907
1946
|
export interface ApplicationHeader$LogoffEventParameters {}
|
|
1908
1947
|
|
|
1948
|
+
/**
|
|
1949
|
+
* Event object of the ApplicationHeader#logoff event.
|
|
1950
|
+
*/
|
|
1909
1951
|
export type ApplicationHeader$LogoffEvent = Event<
|
|
1910
1952
|
ApplicationHeader$LogoffEventParameters,
|
|
1911
1953
|
ApplicationHeader
|
|
@@ -2091,7 +2133,11 @@ declare module "sap/ui/commons/Area" {
|
|
|
2091
2133
|
sShape?: string
|
|
2092
2134
|
): this;
|
|
2093
2135
|
}
|
|
2094
|
-
|
|
2136
|
+
/**
|
|
2137
|
+
* Describes the settings that can be provided to the Area constructor.
|
|
2138
|
+
*
|
|
2139
|
+
* @deprecated (since 1.38)
|
|
2140
|
+
*/
|
|
2095
2141
|
export interface $AreaSettings extends $ElementSettings {
|
|
2096
2142
|
/**
|
|
2097
2143
|
* The value is a string and can be 'rect' for rectangle, 'poly' for poligon, 'circle', or default.
|
|
@@ -2348,7 +2394,11 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2348
2394
|
*/
|
|
2349
2395
|
setSelectedKey(sSelectedKey: string): this;
|
|
2350
2396
|
}
|
|
2351
|
-
|
|
2397
|
+
/**
|
|
2398
|
+
* Describes the settings that can be provided to the AutoComplete constructor.
|
|
2399
|
+
*
|
|
2400
|
+
* @deprecated (since 1.38)
|
|
2401
|
+
*/
|
|
2352
2402
|
export interface $AutoCompleteSettings extends $ComboBoxSettings {
|
|
2353
2403
|
/**
|
|
2354
2404
|
* Determines whether scrolling should be enabled when the number of items is higher than maxPopupItems.
|
|
@@ -2362,6 +2412,9 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2362
2412
|
suggest?: (oEvent: AutoComplete$SuggestEvent) => void;
|
|
2363
2413
|
}
|
|
2364
2414
|
|
|
2415
|
+
/**
|
|
2416
|
+
* Parameters of the AutoComplete#suggest event.
|
|
2417
|
+
*/
|
|
2365
2418
|
export interface AutoComplete$SuggestEventParameters {
|
|
2366
2419
|
/**
|
|
2367
2420
|
* The current value which was typed in.
|
|
@@ -2369,6 +2422,9 @@ declare module "sap/ui/commons/AutoComplete" {
|
|
|
2369
2422
|
suggestValue?: string;
|
|
2370
2423
|
}
|
|
2371
2424
|
|
|
2425
|
+
/**
|
|
2426
|
+
* Event object of the AutoComplete#suggest event.
|
|
2427
|
+
*/
|
|
2372
2428
|
export type AutoComplete$SuggestEvent = Event<
|
|
2373
2429
|
AutoComplete$SuggestEventParameters,
|
|
2374
2430
|
AutoComplete
|
|
@@ -2898,7 +2954,11 @@ declare module "sap/ui/commons/layout/BorderLayout" {
|
|
|
2898
2954
|
sWidth?: CSSSize
|
|
2899
2955
|
): this;
|
|
2900
2956
|
}
|
|
2901
|
-
|
|
2957
|
+
/**
|
|
2958
|
+
* Describes the settings that can be provided to the BorderLayout constructor.
|
|
2959
|
+
*
|
|
2960
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Page}
|
|
2961
|
+
*/
|
|
2902
2962
|
export interface $BorderLayoutSettings extends $ControlSettings {
|
|
2903
2963
|
/**
|
|
2904
2964
|
* The RTL setting swaps the areas Begin and End.
|
|
@@ -3554,7 +3614,11 @@ declare module "sap/ui/commons/Button" {
|
|
|
3554
3614
|
sWidth?: CSSSize
|
|
3555
3615
|
): this;
|
|
3556
3616
|
}
|
|
3557
|
-
|
|
3617
|
+
/**
|
|
3618
|
+
* Describes the settings that can be provided to the Button constructor.
|
|
3619
|
+
*
|
|
3620
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Button}
|
|
3621
|
+
*/
|
|
3558
3622
|
export interface $ButtonSettings extends $ControlSettings {
|
|
3559
3623
|
/**
|
|
3560
3624
|
* Button text displayed at runtime.
|
|
@@ -3643,8 +3707,14 @@ declare module "sap/ui/commons/Button" {
|
|
|
3643
3707
|
press?: (oEvent: Event) => void;
|
|
3644
3708
|
}
|
|
3645
3709
|
|
|
3710
|
+
/**
|
|
3711
|
+
* Parameters of the Button#press event.
|
|
3712
|
+
*/
|
|
3646
3713
|
export interface Button$PressEventParameters {}
|
|
3647
3714
|
|
|
3715
|
+
/**
|
|
3716
|
+
* Event object of the Button#press event.
|
|
3717
|
+
*/
|
|
3648
3718
|
export type Button$PressEvent = Event<Button$PressEventParameters, Button>;
|
|
3649
3719
|
}
|
|
3650
3720
|
|
|
@@ -3808,7 +3878,12 @@ declare module "sap/ui/commons/Callout" {
|
|
|
3808
3878
|
vContent: int | string | Control
|
|
3809
3879
|
): Control | null;
|
|
3810
3880
|
}
|
|
3811
|
-
|
|
3881
|
+
/**
|
|
3882
|
+
* Describes the settings that can be provided to the Callout constructor.
|
|
3883
|
+
*
|
|
3884
|
+
* @deprecated (since 1.38) - If you want to achieve a similar behavior, use a `sap.m.Popover` control and
|
|
3885
|
+
* open it next to your control.
|
|
3886
|
+
*/
|
|
3812
3887
|
export interface $CalloutSettings extends $CalloutBaseSettings {
|
|
3813
3888
|
/**
|
|
3814
3889
|
* Determines the content of the Callout
|
|
@@ -4247,7 +4322,11 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4247
4322
|
atPosition: Dock
|
|
4248
4323
|
): this;
|
|
4249
4324
|
}
|
|
4250
|
-
|
|
4325
|
+
/**
|
|
4326
|
+
* Describes the settings that can be provided to the CalloutBase constructor.
|
|
4327
|
+
*
|
|
4328
|
+
* @deprecated (since 1.38)
|
|
4329
|
+
*/
|
|
4251
4330
|
export interface $CalloutBaseSettings extends $TooltipBaseSettings {
|
|
4252
4331
|
/**
|
|
4253
4332
|
* The event is fired when the popup is opened.
|
|
@@ -4273,6 +4352,9 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4273
4352
|
opened?: (oEvent: Event) => void;
|
|
4274
4353
|
}
|
|
4275
4354
|
|
|
4355
|
+
/**
|
|
4356
|
+
* Parameters of the CalloutBase#beforeOpen event.
|
|
4357
|
+
*/
|
|
4276
4358
|
export interface CalloutBase$BeforeOpenEventParameters {
|
|
4277
4359
|
/**
|
|
4278
4360
|
* Parent control that has this Callout as a tooltip
|
|
@@ -4280,18 +4362,30 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4280
4362
|
parent?: Control;
|
|
4281
4363
|
}
|
|
4282
4364
|
|
|
4365
|
+
/**
|
|
4366
|
+
* Event object of the CalloutBase#beforeOpen event.
|
|
4367
|
+
*/
|
|
4283
4368
|
export type CalloutBase$BeforeOpenEvent = Event<
|
|
4284
4369
|
CalloutBase$BeforeOpenEventParameters,
|
|
4285
4370
|
CalloutBase
|
|
4286
4371
|
>;
|
|
4287
4372
|
|
|
4373
|
+
/**
|
|
4374
|
+
* Parameters of the CalloutBase#close event.
|
|
4375
|
+
*/
|
|
4288
4376
|
export interface CalloutBase$CloseEventParameters {}
|
|
4289
4377
|
|
|
4378
|
+
/**
|
|
4379
|
+
* Event object of the CalloutBase#close event.
|
|
4380
|
+
*/
|
|
4290
4381
|
export type CalloutBase$CloseEvent = Event<
|
|
4291
4382
|
CalloutBase$CloseEventParameters,
|
|
4292
4383
|
CalloutBase
|
|
4293
4384
|
>;
|
|
4294
4385
|
|
|
4386
|
+
/**
|
|
4387
|
+
* Parameters of the CalloutBase#open event.
|
|
4388
|
+
*/
|
|
4295
4389
|
export interface CalloutBase$OpenEventParameters {
|
|
4296
4390
|
/**
|
|
4297
4391
|
* Parent control that has this Callout as a tooltip
|
|
@@ -4299,13 +4393,22 @@ declare module "sap/ui/commons/CalloutBase" {
|
|
|
4299
4393
|
parent?: Control;
|
|
4300
4394
|
}
|
|
4301
4395
|
|
|
4396
|
+
/**
|
|
4397
|
+
* Event object of the CalloutBase#open event.
|
|
4398
|
+
*/
|
|
4302
4399
|
export type CalloutBase$OpenEvent = Event<
|
|
4303
4400
|
CalloutBase$OpenEventParameters,
|
|
4304
4401
|
CalloutBase
|
|
4305
4402
|
>;
|
|
4306
4403
|
|
|
4404
|
+
/**
|
|
4405
|
+
* Parameters of the CalloutBase#opened event.
|
|
4406
|
+
*/
|
|
4307
4407
|
export interface CalloutBase$OpenedEventParameters {}
|
|
4308
4408
|
|
|
4409
|
+
/**
|
|
4410
|
+
* Event object of the CalloutBase#opened event.
|
|
4411
|
+
*/
|
|
4309
4412
|
export type CalloutBase$OpenedEvent = Event<
|
|
4310
4413
|
CalloutBase$OpenedEventParameters,
|
|
4311
4414
|
CalloutBase
|
|
@@ -4783,7 +4886,11 @@ declare module "sap/ui/commons/Carousel" {
|
|
|
4783
4886
|
*/
|
|
4784
4887
|
unbindContent(): this;
|
|
4785
4888
|
}
|
|
4786
|
-
|
|
4889
|
+
/**
|
|
4890
|
+
* Describes the settings that can be provided to the Carousel constructor.
|
|
4891
|
+
*
|
|
4892
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Carousel` control.
|
|
4893
|
+
*/
|
|
4787
4894
|
export interface $CarouselSettings extends $ControlSettings {
|
|
4788
4895
|
/**
|
|
4789
4896
|
* Determines the orientation of the Carousel. Can be either "horizontal" or "vertical"
|
|
@@ -5340,7 +5447,11 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5340
5447
|
*/
|
|
5341
5448
|
unbindChecked(): this;
|
|
5342
5449
|
}
|
|
5343
|
-
|
|
5450
|
+
/**
|
|
5451
|
+
* Describes the settings that can be provided to the CheckBox constructor.
|
|
5452
|
+
*
|
|
5453
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.CheckBox` control.
|
|
5454
|
+
*/
|
|
5344
5455
|
export interface $CheckBoxSettings extends $ControlSettings {
|
|
5345
5456
|
/**
|
|
5346
5457
|
* Contains the state of the control whether it is flagged with a check mark, or not
|
|
@@ -5407,6 +5518,9 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5407
5518
|
change?: (oEvent: CheckBox$ChangeEvent) => void;
|
|
5408
5519
|
}
|
|
5409
5520
|
|
|
5521
|
+
/**
|
|
5522
|
+
* Parameters of the CheckBox#change event.
|
|
5523
|
+
*/
|
|
5410
5524
|
export interface CheckBox$ChangeEventParameters {
|
|
5411
5525
|
/**
|
|
5412
5526
|
* Checks whether the box is flagged or not flagged.
|
|
@@ -5414,6 +5528,9 @@ declare module "sap/ui/commons/CheckBox" {
|
|
|
5414
5528
|
checked?: boolean;
|
|
5415
5529
|
}
|
|
5416
5530
|
|
|
5531
|
+
/**
|
|
5532
|
+
* Event object of the CheckBox#change event.
|
|
5533
|
+
*/
|
|
5417
5534
|
export type CheckBox$ChangeEvent = Event<
|
|
5418
5535
|
CheckBox$ChangeEventParameters,
|
|
5419
5536
|
CheckBox
|
|
@@ -5504,7 +5621,11 @@ declare module "sap/ui/commons/ColorPicker" {
|
|
|
5504
5621
|
*/
|
|
5505
5622
|
static getMetadata(): ElementMetadata;
|
|
5506
5623
|
}
|
|
5507
|
-
|
|
5624
|
+
/**
|
|
5625
|
+
* Describes the settings that can be provided to the ColorPicker constructor.
|
|
5626
|
+
*
|
|
5627
|
+
* @deprecated (since 1.38) - replaced by {@link sap.ui.unified.ColorPicker}
|
|
5628
|
+
*/
|
|
5508
5629
|
export interface $ColorPickerSettings extends $ColorPickerSettings1 {}
|
|
5509
5630
|
}
|
|
5510
5631
|
|
|
@@ -5955,7 +6076,11 @@ declare module "sap/ui/commons/ComboBox" {
|
|
|
5955
6076
|
*/
|
|
5956
6077
|
unbindItems(): this;
|
|
5957
6078
|
}
|
|
5958
|
-
|
|
6079
|
+
/**
|
|
6080
|
+
* Describes the settings that can be provided to the ComboBox constructor.
|
|
6081
|
+
*
|
|
6082
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.ComboBox}
|
|
6083
|
+
*/
|
|
5959
6084
|
export interface $ComboBoxSettings extends $TextFieldSettings {
|
|
5960
6085
|
/**
|
|
5961
6086
|
* Defines the number of items that shall be displayed at once. If the overall number of items is higher
|
|
@@ -6004,6 +6129,9 @@ declare module "sap/ui/commons/ComboBox" {
|
|
|
6004
6129
|
listBox?: ListBox | string;
|
|
6005
6130
|
}
|
|
6006
6131
|
|
|
6132
|
+
/**
|
|
6133
|
+
* Parameters of the ComboBox#change event.
|
|
6134
|
+
*/
|
|
6007
6135
|
export interface ComboBox$ChangeEventParameters
|
|
6008
6136
|
extends TextField$ChangeEventParameters {
|
|
6009
6137
|
/**
|
|
@@ -6012,6 +6140,9 @@ declare module "sap/ui/commons/ComboBox" {
|
|
|
6012
6140
|
selectedItem?: ListItem;
|
|
6013
6141
|
}
|
|
6014
6142
|
|
|
6143
|
+
/**
|
|
6144
|
+
* Event object of the ComboBox#change event.
|
|
6145
|
+
*/
|
|
6015
6146
|
export type ComboBox$ChangeEvent = Event<
|
|
6016
6147
|
ComboBox$ChangeEventParameters,
|
|
6017
6148
|
ComboBox
|
|
@@ -6192,7 +6323,11 @@ declare module "sap/ui/commons/DatePicker" {
|
|
|
6192
6323
|
sYyyymmdd?: string
|
|
6193
6324
|
): this;
|
|
6194
6325
|
}
|
|
6195
|
-
|
|
6326
|
+
/**
|
|
6327
|
+
* Describes the settings that can be provided to the DatePicker constructor.
|
|
6328
|
+
*
|
|
6329
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.DatePicker}
|
|
6330
|
+
*/
|
|
6196
6331
|
export interface $DatePickerSettings extends $TextFieldSettings {
|
|
6197
6332
|
/**
|
|
6198
6333
|
* Defines the locale (language and country), e.g. "en-US", whose translations and Date formatters should
|
|
@@ -7115,7 +7250,11 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7115
7250
|
sWidth?: CSSSize
|
|
7116
7251
|
): this;
|
|
7117
7252
|
}
|
|
7118
|
-
|
|
7253
|
+
/**
|
|
7254
|
+
* Describes the settings that can be provided to the Dialog constructor.
|
|
7255
|
+
*
|
|
7256
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Dialog` control.
|
|
7257
|
+
*/
|
|
7119
7258
|
export interface $DialogSettings extends $ControlSettings {
|
|
7120
7259
|
/**
|
|
7121
7260
|
* Outer width of dialog window. When not set and not constrained by one of the width parameters (minWidth/maxWidth),
|
|
@@ -7256,6 +7395,9 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7256
7395
|
closed?: (oEvent: Dialog$ClosedEvent) => void;
|
|
7257
7396
|
}
|
|
7258
7397
|
|
|
7398
|
+
/**
|
|
7399
|
+
* Parameters of the Dialog#closed event.
|
|
7400
|
+
*/
|
|
7259
7401
|
export interface Dialog$ClosedEventParameters {
|
|
7260
7402
|
/**
|
|
7261
7403
|
* The width of the dialog when closed
|
|
@@ -7278,6 +7420,9 @@ declare module "sap/ui/commons/Dialog" {
|
|
|
7278
7420
|
left?: int;
|
|
7279
7421
|
}
|
|
7280
7422
|
|
|
7423
|
+
/**
|
|
7424
|
+
* Event object of the Dialog#closed event.
|
|
7425
|
+
*/
|
|
7281
7426
|
export type Dialog$ClosedEvent = Event<Dialog$ClosedEventParameters, Dialog>;
|
|
7282
7427
|
}
|
|
7283
7428
|
|
|
@@ -7745,7 +7890,11 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7745
7890
|
sSearchHelpText: string
|
|
7746
7891
|
): this;
|
|
7747
7892
|
}
|
|
7748
|
-
|
|
7893
|
+
/**
|
|
7894
|
+
* Describes the settings that can be provided to the DropdownBox constructor.
|
|
7895
|
+
*
|
|
7896
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.ComboBox}
|
|
7897
|
+
*/
|
|
7749
7898
|
export interface $DropdownBoxSettings extends $ComboBoxSettings {
|
|
7750
7899
|
/**
|
|
7751
7900
|
* Whether the DropdownBox's search help should be enabled.
|
|
@@ -7782,6 +7931,9 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7782
7931
|
searchHelp?: (oEvent: DropdownBox$SearchHelpEvent) => void;
|
|
7783
7932
|
}
|
|
7784
7933
|
|
|
7934
|
+
/**
|
|
7935
|
+
* Parameters of the DropdownBox#searchHelp event.
|
|
7936
|
+
*/
|
|
7785
7937
|
export interface DropdownBox$SearchHelpEventParameters {
|
|
7786
7938
|
/**
|
|
7787
7939
|
* The current value of the DropdownBox.
|
|
@@ -7789,6 +7941,9 @@ declare module "sap/ui/commons/DropdownBox" {
|
|
|
7789
7941
|
value?: string;
|
|
7790
7942
|
}
|
|
7791
7943
|
|
|
7944
|
+
/**
|
|
7945
|
+
* Event object of the DropdownBox#searchHelp event.
|
|
7946
|
+
*/
|
|
7792
7947
|
export type DropdownBox$SearchHelpEvent = Event<
|
|
7793
7948
|
DropdownBox$SearchHelpEventParameters,
|
|
7794
7949
|
DropdownBox
|
|
@@ -7882,7 +8037,12 @@ declare module "sap/ui/commons/FileUploader" {
|
|
|
7882
8037
|
*/
|
|
7883
8038
|
static getMetadata(): ElementMetadata;
|
|
7884
8039
|
}
|
|
7885
|
-
|
|
8040
|
+
/**
|
|
8041
|
+
* Describes the settings that can be provided to the FileUploader constructor.
|
|
8042
|
+
*
|
|
8043
|
+
* @deprecated (since 1.21.0) - Please use the control sap.ui.unified.FileUploader of the library sap.ui.unified
|
|
8044
|
+
* instead.
|
|
8045
|
+
*/
|
|
7886
8046
|
export interface $FileUploaderSettings extends $FileUploaderSettings1 {}
|
|
7887
8047
|
}
|
|
7888
8048
|
|
|
@@ -7970,7 +8130,12 @@ declare module "sap/ui/commons/FileUploaderParameter" {
|
|
|
7970
8130
|
*/
|
|
7971
8131
|
static getMetadata(): ElementMetadata;
|
|
7972
8132
|
}
|
|
7973
|
-
|
|
8133
|
+
/**
|
|
8134
|
+
* Describes the settings that can be provided to the FileUploaderParameter constructor.
|
|
8135
|
+
*
|
|
8136
|
+
* @deprecated (since 1.21.0) - Please use the element sap.ui.unified.FileUploaderParameter of the library
|
|
8137
|
+
* sap.ui.unified instead.
|
|
8138
|
+
*/
|
|
7974
8139
|
export interface $FileUploaderParameterSettings
|
|
7975
8140
|
extends $FileUploaderParameterSettings1 {}
|
|
7976
8141
|
}
|
|
@@ -8880,7 +9045,11 @@ declare module "sap/ui/commons/TextField" {
|
|
|
8880
9045
|
*/
|
|
8881
9046
|
unbindValue(): this;
|
|
8882
9047
|
}
|
|
8883
|
-
|
|
9048
|
+
/**
|
|
9049
|
+
* Describes the settings that can be provided to the TextField constructor.
|
|
9050
|
+
*
|
|
9051
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Input}
|
|
9052
|
+
*/
|
|
8884
9053
|
export interface $TextFieldSettings extends $ControlSettings {
|
|
8885
9054
|
/**
|
|
8886
9055
|
* Text inside the `TextField`
|
|
@@ -9004,6 +9173,9 @@ declare module "sap/ui/commons/TextField" {
|
|
|
9004
9173
|
liveChange?: (oEvent: TextField$LiveChangeEvent) => void;
|
|
9005
9174
|
}
|
|
9006
9175
|
|
|
9176
|
+
/**
|
|
9177
|
+
* Parameters of the TextField#change event.
|
|
9178
|
+
*/
|
|
9007
9179
|
export interface TextField$ChangeEventParameters {
|
|
9008
9180
|
/**
|
|
9009
9181
|
* The new / changed value of the `TextField`.
|
|
@@ -9011,11 +9183,17 @@ declare module "sap/ui/commons/TextField" {
|
|
|
9011
9183
|
newValue?: string;
|
|
9012
9184
|
}
|
|
9013
9185
|
|
|
9186
|
+
/**
|
|
9187
|
+
* Event object of the TextField#change event.
|
|
9188
|
+
*/
|
|
9014
9189
|
export type TextField$ChangeEvent = Event<
|
|
9015
9190
|
TextField$ChangeEventParameters,
|
|
9016
9191
|
TextField
|
|
9017
9192
|
>;
|
|
9018
9193
|
|
|
9194
|
+
/**
|
|
9195
|
+
* Parameters of the TextField#liveChange event.
|
|
9196
|
+
*/
|
|
9019
9197
|
export interface TextField$LiveChangeEventParameters {
|
|
9020
9198
|
/**
|
|
9021
9199
|
* Current visible value of the `TextField`.
|
|
@@ -9023,6 +9201,9 @@ declare module "sap/ui/commons/TextField" {
|
|
|
9023
9201
|
liveValue?: string;
|
|
9024
9202
|
}
|
|
9025
9203
|
|
|
9204
|
+
/**
|
|
9205
|
+
* Event object of the TextField#liveChange event.
|
|
9206
|
+
*/
|
|
9026
9207
|
export type TextField$LiveChangeEvent = Event<
|
|
9027
9208
|
TextField$LiveChangeEventParameters,
|
|
9028
9209
|
TextField
|
|
@@ -9139,7 +9320,11 @@ declare module "sap/ui/commons/form/Form" {
|
|
|
9139
9320
|
bVisible: boolean
|
|
9140
9321
|
): this;
|
|
9141
9322
|
}
|
|
9142
|
-
|
|
9323
|
+
/**
|
|
9324
|
+
* Describes the settings that can be provided to the Form constructor.
|
|
9325
|
+
*
|
|
9326
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9327
|
+
*/
|
|
9143
9328
|
export interface $FormSettings extends $FormSettings1 {}
|
|
9144
9329
|
}
|
|
9145
9330
|
|
|
@@ -9252,7 +9437,11 @@ declare module "sap/ui/commons/form/FormContainer" {
|
|
|
9252
9437
|
bVisible: boolean
|
|
9253
9438
|
): this;
|
|
9254
9439
|
}
|
|
9255
|
-
|
|
9440
|
+
/**
|
|
9441
|
+
* Describes the settings that can be provided to the FormContainer constructor.
|
|
9442
|
+
*
|
|
9443
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9444
|
+
*/
|
|
9256
9445
|
export interface $FormContainerSettings extends $FormContainerSettings1 {}
|
|
9257
9446
|
}
|
|
9258
9447
|
|
|
@@ -9365,7 +9554,11 @@ declare module "sap/ui/commons/form/FormElement" {
|
|
|
9365
9554
|
bVisible: boolean
|
|
9366
9555
|
): this;
|
|
9367
9556
|
}
|
|
9368
|
-
|
|
9557
|
+
/**
|
|
9558
|
+
* Describes the settings that can be provided to the FormElement constructor.
|
|
9559
|
+
*
|
|
9560
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9561
|
+
*/
|
|
9369
9562
|
export interface $FormElementSettings extends $FormElementSettings1 {}
|
|
9370
9563
|
}
|
|
9371
9564
|
|
|
@@ -9453,7 +9646,11 @@ declare module "sap/ui/commons/form/FormLayout" {
|
|
|
9453
9646
|
*/
|
|
9454
9647
|
static getMetadata(): ElementMetadata;
|
|
9455
9648
|
}
|
|
9456
|
-
|
|
9649
|
+
/**
|
|
9650
|
+
* Describes the settings that can be provided to the FormLayout constructor.
|
|
9651
|
+
*
|
|
9652
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9653
|
+
*/
|
|
9457
9654
|
export interface $FormLayoutSettings extends $FormLayoutSettings1 {}
|
|
9458
9655
|
}
|
|
9459
9656
|
|
|
@@ -9542,7 +9739,11 @@ declare module "sap/ui/commons/form/GridContainerData" {
|
|
|
9542
9739
|
*/
|
|
9543
9740
|
static getMetadata(): ElementMetadata;
|
|
9544
9741
|
}
|
|
9545
|
-
|
|
9742
|
+
/**
|
|
9743
|
+
* Describes the settings that can be provided to the GridContainerData constructor.
|
|
9744
|
+
*
|
|
9745
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9746
|
+
*/
|
|
9546
9747
|
export interface $GridContainerDataSettings
|
|
9547
9748
|
extends $GridContainerDataSettings1 {}
|
|
9548
9749
|
}
|
|
@@ -9632,7 +9833,11 @@ declare module "sap/ui/commons/form/GridElementData" {
|
|
|
9632
9833
|
*/
|
|
9633
9834
|
static getMetadata(): ElementMetadata;
|
|
9634
9835
|
}
|
|
9635
|
-
|
|
9836
|
+
/**
|
|
9837
|
+
* Describes the settings that can be provided to the GridElementData constructor.
|
|
9838
|
+
*
|
|
9839
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9840
|
+
*/
|
|
9636
9841
|
export interface $GridElementDataSettings extends $GridElementDataSettings1 {}
|
|
9637
9842
|
}
|
|
9638
9843
|
|
|
@@ -9722,7 +9927,11 @@ declare module "sap/ui/commons/form/GridLayout" {
|
|
|
9722
9927
|
*/
|
|
9723
9928
|
static getMetadata(): ElementMetadata;
|
|
9724
9929
|
}
|
|
9725
|
-
|
|
9930
|
+
/**
|
|
9931
|
+
* Describes the settings that can be provided to the GridLayout constructor.
|
|
9932
|
+
*
|
|
9933
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
9934
|
+
*/
|
|
9726
9935
|
export interface $GridLayoutSettings extends $GridLayoutSettings1 {}
|
|
9727
9936
|
}
|
|
9728
9937
|
|
|
@@ -9810,7 +10019,11 @@ declare module "sap/ui/commons/form/ResponsiveLayout" {
|
|
|
9810
10019
|
*/
|
|
9811
10020
|
static getMetadata(): ElementMetadata;
|
|
9812
10021
|
}
|
|
9813
|
-
|
|
10022
|
+
/**
|
|
10023
|
+
* Describes the settings that can be provided to the ResponsiveLayout constructor.
|
|
10024
|
+
*
|
|
10025
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
10026
|
+
*/
|
|
9814
10027
|
export interface $ResponsiveLayoutSettings
|
|
9815
10028
|
extends $ResponsiveLayoutSettings1 {}
|
|
9816
10029
|
}
|
|
@@ -9947,7 +10160,11 @@ declare module "sap/ui/commons/form/SimpleForm" {
|
|
|
9947
10160
|
sLayout?: form.SimpleFormLayout | keyof typeof form.SimpleFormLayout
|
|
9948
10161
|
): this;
|
|
9949
10162
|
}
|
|
9950
|
-
|
|
10163
|
+
/**
|
|
10164
|
+
* Describes the settings that can be provided to the SimpleForm constructor.
|
|
10165
|
+
*
|
|
10166
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
10167
|
+
*/
|
|
9951
10168
|
export interface $SimpleFormSettings extends $SimpleFormSettings1 {
|
|
9952
10169
|
/**
|
|
9953
10170
|
* The `FormLayout` that is used to render the `SimpleForm`.
|
|
@@ -10196,7 +10413,11 @@ declare module "sap/ui/commons/FormattedTextView" {
|
|
|
10196
10413
|
sText: string
|
|
10197
10414
|
): void;
|
|
10198
10415
|
}
|
|
10199
|
-
|
|
10416
|
+
/**
|
|
10417
|
+
* Describes the settings that can be provided to the FormattedTextView constructor.
|
|
10418
|
+
*
|
|
10419
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.core.HTML` control.
|
|
10420
|
+
*/
|
|
10200
10421
|
export interface $FormattedTextViewSettings extends $ControlSettings {
|
|
10201
10422
|
/**
|
|
10202
10423
|
* The ARIA role for the control.
|
|
@@ -10388,7 +10609,11 @@ declare module "sap/ui/commons/HorizontalDivider" {
|
|
|
10388
10609
|
sWidth?: CSSSize
|
|
10389
10610
|
): this;
|
|
10390
10611
|
}
|
|
10391
|
-
|
|
10612
|
+
/**
|
|
10613
|
+
* Describes the settings that can be provided to the HorizontalDivider constructor.
|
|
10614
|
+
*
|
|
10615
|
+
* @deprecated (since 1.38)
|
|
10616
|
+
*/
|
|
10392
10617
|
export interface $HorizontalDividerSettings extends $ControlSettings {
|
|
10393
10618
|
/**
|
|
10394
10619
|
* Defines the width of the divider.
|
|
@@ -10748,7 +10973,11 @@ declare module "sap/ui/commons/Image" {
|
|
|
10748
10973
|
sWidth?: CSSSize
|
|
10749
10974
|
): this;
|
|
10750
10975
|
}
|
|
10751
|
-
|
|
10976
|
+
/**
|
|
10977
|
+
* Describes the settings that can be provided to the Image constructor.
|
|
10978
|
+
*
|
|
10979
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Image}
|
|
10980
|
+
*/
|
|
10752
10981
|
export interface $ImageSettings extends $ControlSettings {
|
|
10753
10982
|
/**
|
|
10754
10983
|
* Relative or absolute path to URL where the image file is stored.
|
|
@@ -10792,8 +11021,14 @@ declare module "sap/ui/commons/Image" {
|
|
|
10792
11021
|
press?: (oEvent: Event) => void;
|
|
10793
11022
|
}
|
|
10794
11023
|
|
|
11024
|
+
/**
|
|
11025
|
+
* Parameters of the Image#press event.
|
|
11026
|
+
*/
|
|
10795
11027
|
export interface Image$PressEventParameters {}
|
|
10796
11028
|
|
|
11029
|
+
/**
|
|
11030
|
+
* Event object of the Image#press event.
|
|
11031
|
+
*/
|
|
10797
11032
|
export type Image$PressEvent = Event<Image$PressEventParameters, Image>;
|
|
10798
11033
|
}
|
|
10799
11034
|
|
|
@@ -11074,7 +11309,11 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
11074
11309
|
sName?: string
|
|
11075
11310
|
): this;
|
|
11076
11311
|
}
|
|
11077
|
-
|
|
11312
|
+
/**
|
|
11313
|
+
* Describes the settings that can be provided to the ImageMap constructor.
|
|
11314
|
+
*
|
|
11315
|
+
* @deprecated (since 1.38) - There's not replacement because of the archaic design pattern.
|
|
11316
|
+
*/
|
|
11078
11317
|
export interface $ImageMapSettings extends $ControlSettings {
|
|
11079
11318
|
/**
|
|
11080
11319
|
* Name for the image that serves as reference
|
|
@@ -11092,6 +11331,9 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
11092
11331
|
press?: (oEvent: ImageMap$PressEvent) => void;
|
|
11093
11332
|
}
|
|
11094
11333
|
|
|
11334
|
+
/**
|
|
11335
|
+
* Parameters of the ImageMap#press event.
|
|
11336
|
+
*/
|
|
11095
11337
|
export interface ImageMap$PressEventParameters {
|
|
11096
11338
|
/**
|
|
11097
11339
|
* Id of clicked Area.
|
|
@@ -11099,6 +11341,9 @@ declare module "sap/ui/commons/ImageMap" {
|
|
|
11099
11341
|
areaId?: string;
|
|
11100
11342
|
}
|
|
11101
11343
|
|
|
11344
|
+
/**
|
|
11345
|
+
* Event object of the ImageMap#press event.
|
|
11346
|
+
*/
|
|
11102
11347
|
export type ImageMap$PressEvent = Event<
|
|
11103
11348
|
ImageMap$PressEventParameters,
|
|
11104
11349
|
ImageMap
|
|
@@ -11521,7 +11766,11 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11521
11766
|
sValueState?: ValueState | keyof typeof ValueState
|
|
11522
11767
|
): this;
|
|
11523
11768
|
}
|
|
11524
|
-
|
|
11769
|
+
/**
|
|
11770
|
+
* Describes the settings that can be provided to the InPlaceEdit constructor.
|
|
11771
|
+
*
|
|
11772
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Input}
|
|
11773
|
+
*/
|
|
11525
11774
|
export interface $InPlaceEditSettings extends $ControlSettings {
|
|
11526
11775
|
/**
|
|
11527
11776
|
* Visualizes warnings or errors related to the InPlaceEdit. Possible values: Warning, Error, Success. If
|
|
@@ -11569,6 +11818,9 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11569
11818
|
liveChange?: (oEvent: InPlaceEdit$LiveChangeEvent) => void;
|
|
11570
11819
|
}
|
|
11571
11820
|
|
|
11821
|
+
/**
|
|
11822
|
+
* Parameters of the InPlaceEdit#change event.
|
|
11823
|
+
*/
|
|
11572
11824
|
export interface InPlaceEdit$ChangeEventParameters {
|
|
11573
11825
|
/**
|
|
11574
11826
|
* The new / changed value of the InPlaceEdit.
|
|
@@ -11576,11 +11828,17 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11576
11828
|
newValue?: string;
|
|
11577
11829
|
}
|
|
11578
11830
|
|
|
11831
|
+
/**
|
|
11832
|
+
* Event object of the InPlaceEdit#change event.
|
|
11833
|
+
*/
|
|
11579
11834
|
export type InPlaceEdit$ChangeEvent = Event<
|
|
11580
11835
|
InPlaceEdit$ChangeEventParameters,
|
|
11581
11836
|
InPlaceEdit
|
|
11582
11837
|
>;
|
|
11583
11838
|
|
|
11839
|
+
/**
|
|
11840
|
+
* Parameters of the InPlaceEdit#liveChange event.
|
|
11841
|
+
*/
|
|
11584
11842
|
export interface InPlaceEdit$LiveChangeEventParameters {
|
|
11585
11843
|
/**
|
|
11586
11844
|
* Current value of the Textfield.
|
|
@@ -11588,6 +11846,9 @@ declare module "sap/ui/commons/InPlaceEdit" {
|
|
|
11588
11846
|
liveValue?: string;
|
|
11589
11847
|
}
|
|
11590
11848
|
|
|
11849
|
+
/**
|
|
11850
|
+
* Event object of the InPlaceEdit#liveChange event.
|
|
11851
|
+
*/
|
|
11591
11852
|
export type InPlaceEdit$LiveChangeEvent = Event<
|
|
11592
11853
|
InPlaceEdit$LiveChangeEventParameters,
|
|
11593
11854
|
InPlaceEdit
|
|
@@ -11978,7 +12239,11 @@ declare module "sap/ui/commons/Label" {
|
|
|
11978
12239
|
bWrapping?: boolean
|
|
11979
12240
|
): this;
|
|
11980
12241
|
}
|
|
11981
|
-
|
|
12242
|
+
/**
|
|
12243
|
+
* Describes the settings that can be provided to the Label constructor.
|
|
12244
|
+
*
|
|
12245
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Label` control.
|
|
12246
|
+
*/
|
|
11982
12247
|
export interface $LabelSettings extends $ControlSettings {
|
|
11983
12248
|
/**
|
|
11984
12249
|
* Defines whether the labels are in bold format.
|
|
@@ -12397,7 +12662,11 @@ declare module "sap/ui/commons/layout/AbsoluteLayout" {
|
|
|
12397
12662
|
sWidth: string
|
|
12398
12663
|
): this;
|
|
12399
12664
|
}
|
|
12400
|
-
|
|
12665
|
+
/**
|
|
12666
|
+
* Describes the settings that can be provided to the AbsoluteLayout constructor.
|
|
12667
|
+
*
|
|
12668
|
+
* @deprecated (since 1.38)
|
|
12669
|
+
*/
|
|
12401
12670
|
export interface $AbsoluteLayoutSettings extends $ControlSettings {
|
|
12402
12671
|
/**
|
|
12403
12672
|
* The overall width of the control. When not set, 100% is automatically set.
|
|
@@ -12778,7 +13047,11 @@ declare module "sap/ui/commons/layout/BorderLayoutArea" {
|
|
|
12778
13047
|
bVisible?: boolean
|
|
12779
13048
|
): this;
|
|
12780
13049
|
}
|
|
12781
|
-
|
|
13050
|
+
/**
|
|
13051
|
+
* Describes the settings that can be provided to the BorderLayoutArea constructor.
|
|
13052
|
+
*
|
|
13053
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Page` control.
|
|
13054
|
+
*/
|
|
12782
13055
|
export interface $BorderLayoutAreaSettings extends $ElementSettings {
|
|
12783
13056
|
/**
|
|
12784
13057
|
* Defines which area the element represents: top, begin, center, end, bottom
|
|
@@ -12908,7 +13181,11 @@ declare module "sap/ui/commons/layout/HorizontalLayout" {
|
|
|
12908
13181
|
*/
|
|
12909
13182
|
static getMetadata(): ElementMetadata;
|
|
12910
13183
|
}
|
|
12911
|
-
|
|
13184
|
+
/**
|
|
13185
|
+
* Describes the settings that can be provided to the HorizontalLayout constructor.
|
|
13186
|
+
*
|
|
13187
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.HorizontalLayout` control.
|
|
13188
|
+
*/
|
|
12912
13189
|
export interface $HorizontalLayoutSettings
|
|
12913
13190
|
extends $HorizontalLayoutSettings1 {}
|
|
12914
13191
|
}
|
|
@@ -13231,7 +13508,11 @@ declare module "sap/ui/commons/layout/MatrixLayout" {
|
|
|
13231
13508
|
sWidths?: CSSSize[]
|
|
13232
13509
|
): this;
|
|
13233
13510
|
}
|
|
13234
|
-
|
|
13511
|
+
/**
|
|
13512
|
+
* Describes the settings that can be provided to the MatrixLayout constructor.
|
|
13513
|
+
*
|
|
13514
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
13515
|
+
*/
|
|
13235
13516
|
export interface $MatrixLayoutSettings extends $ControlSettings {
|
|
13236
13517
|
/**
|
|
13237
13518
|
* CSS width of the matrix layout. If the LayoutFixed = true an adequate width should be provided.
|
|
@@ -13711,7 +13992,11 @@ declare module "sap/ui/commons/layout/MatrixLayoutCell" {
|
|
|
13711
13992
|
sVAlign?: layout.VAlign | keyof typeof layout.VAlign
|
|
13712
13993
|
): this;
|
|
13713
13994
|
}
|
|
13714
|
-
|
|
13995
|
+
/**
|
|
13996
|
+
* Describes the settings that can be provided to the MatrixLayoutCell constructor.
|
|
13997
|
+
*
|
|
13998
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
13999
|
+
*/
|
|
13715
14000
|
export interface $MatrixLayoutCellSettings extends $ElementSettings {
|
|
13716
14001
|
/**
|
|
13717
14002
|
* Determines the matrix layout cell's background design.
|
|
@@ -14022,7 +14307,11 @@ declare module "sap/ui/commons/layout/MatrixLayoutRow" {
|
|
|
14022
14307
|
sHeight?: CSSSize
|
|
14023
14308
|
): this;
|
|
14024
14309
|
}
|
|
14025
|
-
|
|
14310
|
+
/**
|
|
14311
|
+
* Describes the settings that can be provided to the MatrixLayoutRow constructor.
|
|
14312
|
+
*
|
|
14313
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
14314
|
+
*/
|
|
14026
14315
|
export interface $MatrixLayoutRowSettings extends $ElementSettings {
|
|
14027
14316
|
/**
|
|
14028
14317
|
* Height of the row.
|
|
@@ -14318,7 +14607,11 @@ declare module "sap/ui/commons/layout/PositionContainer" {
|
|
|
14318
14607
|
oPos: object
|
|
14319
14608
|
): void;
|
|
14320
14609
|
}
|
|
14321
|
-
|
|
14610
|
+
/**
|
|
14611
|
+
* Describes the settings that can be provided to the PositionContainer constructor.
|
|
14612
|
+
*
|
|
14613
|
+
* @deprecated (since 1.38)
|
|
14614
|
+
*/
|
|
14322
14615
|
export interface $PositionContainerSettings extends $ElementSettings {
|
|
14323
14616
|
/**
|
|
14324
14617
|
* Defines the distance to the top of the layout (as specified in HTML)
|
|
@@ -14444,7 +14737,11 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayout" {
|
|
|
14444
14737
|
*/
|
|
14445
14738
|
static getMetadata(): ElementMetadata;
|
|
14446
14739
|
}
|
|
14447
|
-
|
|
14740
|
+
/**
|
|
14741
|
+
* Describes the settings that can be provided to the ResponsiveFlowLayout constructor.
|
|
14742
|
+
*
|
|
14743
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
14744
|
+
*/
|
|
14448
14745
|
export interface $ResponsiveFlowLayoutSettings
|
|
14449
14746
|
extends $ResponsiveFlowLayoutSettings1 {}
|
|
14450
14747
|
}
|
|
@@ -14558,7 +14855,11 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayoutData" {
|
|
|
14558
14855
|
bMargin: boolean
|
|
14559
14856
|
): this;
|
|
14560
14857
|
}
|
|
14561
|
-
|
|
14858
|
+
/**
|
|
14859
|
+
* Describes the settings that can be provided to the ResponsiveFlowLayoutData constructor.
|
|
14860
|
+
*
|
|
14861
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
|
|
14862
|
+
*/
|
|
14562
14863
|
export interface $ResponsiveFlowLayoutDataSettings
|
|
14563
14864
|
extends $ResponsiveFlowLayoutDataSettings1 {}
|
|
14564
14865
|
}
|
|
@@ -14646,7 +14947,11 @@ declare module "sap/ui/commons/layout/VerticalLayout" {
|
|
|
14646
14947
|
*/
|
|
14647
14948
|
static getMetadata(): ElementMetadata;
|
|
14648
14949
|
}
|
|
14649
|
-
|
|
14950
|
+
/**
|
|
14951
|
+
* Describes the settings that can be provided to the VerticalLayout constructor.
|
|
14952
|
+
*
|
|
14953
|
+
* @deprecated (since 1.16.0) - Moved to sap.ui.layout library. Please use this one.
|
|
14954
|
+
*/
|
|
14650
14955
|
export interface $VerticalLayoutSettings extends $VerticalLayoutSettings1 {}
|
|
14651
14956
|
}
|
|
14652
14957
|
|
|
@@ -15080,7 +15385,11 @@ declare module "sap/ui/commons/Link" {
|
|
|
15080
15385
|
sWidth?: CSSSize
|
|
15081
15386
|
): this;
|
|
15082
15387
|
}
|
|
15083
|
-
|
|
15388
|
+
/**
|
|
15389
|
+
* Describes the settings that can be provided to the Link constructor.
|
|
15390
|
+
*
|
|
15391
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Link` control.
|
|
15392
|
+
*/
|
|
15084
15393
|
export interface $LinkSettings extends $ControlSettings {
|
|
15085
15394
|
/**
|
|
15086
15395
|
* Link text to be displayed.
|
|
@@ -15132,8 +15441,14 @@ declare module "sap/ui/commons/Link" {
|
|
|
15132
15441
|
press?: (oEvent: Event) => void;
|
|
15133
15442
|
}
|
|
15134
15443
|
|
|
15444
|
+
/**
|
|
15445
|
+
* Parameters of the Link#press event.
|
|
15446
|
+
*/
|
|
15135
15447
|
export interface Link$PressEventParameters {}
|
|
15136
15448
|
|
|
15449
|
+
/**
|
|
15450
|
+
* Event object of the Link#press event.
|
|
15451
|
+
*/
|
|
15137
15452
|
export type Link$PressEvent = Event<Link$PressEventParameters, Link>;
|
|
15138
15453
|
}
|
|
15139
15454
|
|
|
@@ -15973,7 +16288,11 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
15973
16288
|
sWidth: CSSSize
|
|
15974
16289
|
): this;
|
|
15975
16290
|
}
|
|
15976
|
-
|
|
16291
|
+
/**
|
|
16292
|
+
* Describes the settings that can be provided to the ListBox constructor.
|
|
16293
|
+
*
|
|
16294
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.List` control.
|
|
16295
|
+
*/
|
|
15977
16296
|
export interface $ListBoxSettings extends $ControlSettings {
|
|
15978
16297
|
/**
|
|
15979
16298
|
* Determines whether the ListBox is interactive or not. Can be used to disable interaction with mouse or
|
|
@@ -16083,6 +16402,9 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
16083
16402
|
select?: (oEvent: ListBox$SelectEvent) => void;
|
|
16084
16403
|
}
|
|
16085
16404
|
|
|
16405
|
+
/**
|
|
16406
|
+
* Parameters of the ListBox#select event.
|
|
16407
|
+
*/
|
|
16086
16408
|
export interface ListBox$SelectEventParameters {
|
|
16087
16409
|
/**
|
|
16088
16410
|
* ID of the ListBox which triggered the event.
|
|
@@ -16108,6 +16430,9 @@ declare module "sap/ui/commons/ListBox" {
|
|
|
16108
16430
|
selectedIndices?: int[];
|
|
16109
16431
|
}
|
|
16110
16432
|
|
|
16433
|
+
/**
|
|
16434
|
+
* Event object of the ListBox#select event.
|
|
16435
|
+
*/
|
|
16111
16436
|
export type ListBox$SelectEvent = Event<
|
|
16112
16437
|
ListBox$SelectEventParameters,
|
|
16113
16438
|
ListBox
|
|
@@ -16200,7 +16525,11 @@ declare module "sap/ui/commons/Menu" {
|
|
|
16200
16525
|
*/
|
|
16201
16526
|
static getMetadata(): ElementMetadata;
|
|
16202
16527
|
}
|
|
16203
|
-
|
|
16528
|
+
/**
|
|
16529
|
+
* Describes the settings that can be provided to the Menu constructor.
|
|
16530
|
+
*
|
|
16531
|
+
* @deprecated (since 1.21.0) - replaced by {@link sap.ui.unified.Menu}
|
|
16532
|
+
*/
|
|
16204
16533
|
export interface $MenuSettings extends $MenuSettings1 {}
|
|
16205
16534
|
}
|
|
16206
16535
|
|
|
@@ -16458,7 +16787,11 @@ declare module "sap/ui/commons/MenuBar" {
|
|
|
16458
16787
|
sWidth?: CSSSize
|
|
16459
16788
|
): this;
|
|
16460
16789
|
}
|
|
16461
|
-
|
|
16790
|
+
/**
|
|
16791
|
+
* Describes the settings that can be provided to the MenuBar constructor.
|
|
16792
|
+
*
|
|
16793
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.OverflowToolbar` control.
|
|
16794
|
+
*/
|
|
16462
16795
|
export interface $MenuBarSettings extends $ControlSettings {
|
|
16463
16796
|
/**
|
|
16464
16797
|
* When the MenuBar is not enabled, automatically all single menu items are also displayed as 'disabled'.
|
|
@@ -16817,7 +17150,11 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16817
17150
|
oMenu: Menu
|
|
16818
17151
|
): this;
|
|
16819
17152
|
}
|
|
16820
|
-
|
|
17153
|
+
/**
|
|
17154
|
+
* Describes the settings that can be provided to the MenuButton constructor.
|
|
17155
|
+
*
|
|
17156
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.MenuButton` control.
|
|
17157
|
+
*/
|
|
16821
17158
|
export interface $MenuButtonSettings extends $ButtonSettings {
|
|
16822
17159
|
/**
|
|
16823
17160
|
* The position / edge (see sap.ui.core.Popup.Dock) of the button where the menu is docked. Default is 'begin
|
|
@@ -16842,6 +17179,9 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16842
17179
|
itemSelected?: (oEvent: MenuButton$ItemSelectedEvent) => void;
|
|
16843
17180
|
}
|
|
16844
17181
|
|
|
17182
|
+
/**
|
|
17183
|
+
* Parameters of the MenuButton#itemSelected event.
|
|
17184
|
+
*/
|
|
16845
17185
|
export interface MenuButton$ItemSelectedEventParameters {
|
|
16846
17186
|
/**
|
|
16847
17187
|
* The ID of the selected item
|
|
@@ -16854,11 +17194,17 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16854
17194
|
item?: MenuItemBase;
|
|
16855
17195
|
}
|
|
16856
17196
|
|
|
17197
|
+
/**
|
|
17198
|
+
* Event object of the MenuButton#itemSelected event.
|
|
17199
|
+
*/
|
|
16857
17200
|
export type MenuButton$ItemSelectedEvent = Event<
|
|
16858
17201
|
MenuButton$ItemSelectedEventParameters,
|
|
16859
17202
|
MenuButton
|
|
16860
17203
|
>;
|
|
16861
17204
|
|
|
17205
|
+
/**
|
|
17206
|
+
* Parameters of the MenuButton#press event.
|
|
17207
|
+
*/
|
|
16862
17208
|
export interface MenuButton$PressEventParameters
|
|
16863
17209
|
extends Button$PressEventParameters {
|
|
16864
17210
|
/**
|
|
@@ -16872,6 +17218,9 @@ declare module "sap/ui/commons/MenuButton" {
|
|
|
16872
17218
|
item?: MenuItemBase1;
|
|
16873
17219
|
}
|
|
16874
17220
|
|
|
17221
|
+
/**
|
|
17222
|
+
* Event object of the MenuButton#press event.
|
|
17223
|
+
*/
|
|
16875
17224
|
export type MenuButton$PressEvent = Event<
|
|
16876
17225
|
MenuButton$PressEventParameters,
|
|
16877
17226
|
MenuButton
|
|
@@ -16963,7 +17312,11 @@ declare module "sap/ui/commons/MenuItem" {
|
|
|
16963
17312
|
*/
|
|
16964
17313
|
static getMetadata(): ElementMetadata;
|
|
16965
17314
|
}
|
|
16966
|
-
|
|
17315
|
+
/**
|
|
17316
|
+
* Describes the settings that can be provided to the MenuItem constructor.
|
|
17317
|
+
*
|
|
17318
|
+
* @deprecated (since 1.21.0) - replaced by {@link sap.ui.unified.MenuItem}
|
|
17319
|
+
*/
|
|
16967
17320
|
export interface $MenuItemSettings extends $MenuItemSettings1 {}
|
|
16968
17321
|
}
|
|
16969
17322
|
|
|
@@ -17003,7 +17356,11 @@ declare module "sap/ui/commons/MenuItemBase" {
|
|
|
17003
17356
|
mSettings?: $MenuItemBaseSettings
|
|
17004
17357
|
);
|
|
17005
17358
|
}
|
|
17006
|
-
|
|
17359
|
+
/**
|
|
17360
|
+
* Describes the settings that can be provided to the MenuItemBase constructor.
|
|
17361
|
+
*
|
|
17362
|
+
* @deprecated (since 1.21.0) - replaced by {@link sap.ui.unified.MenuItemBase}
|
|
17363
|
+
*/
|
|
17007
17364
|
export interface $MenuItemBaseSettings extends $MenuItemBaseSettings1 {}
|
|
17008
17365
|
}
|
|
17009
17366
|
|
|
@@ -17093,7 +17450,12 @@ declare module "sap/ui/commons/MenuTextFieldItem" {
|
|
|
17093
17450
|
*/
|
|
17094
17451
|
static getMetadata(): ElementMetadata;
|
|
17095
17452
|
}
|
|
17096
|
-
|
|
17453
|
+
/**
|
|
17454
|
+
* Describes the settings that can be provided to the MenuTextFieldItem constructor.
|
|
17455
|
+
*
|
|
17456
|
+
* @deprecated (since 1.21.0) - Please use the control `sap.ui.unified.MenuTextFieldItem` of the library
|
|
17457
|
+
* `sap.ui.unified` instead.
|
|
17458
|
+
*/
|
|
17097
17459
|
export interface $MenuTextFieldItemSettings
|
|
17098
17460
|
extends $MenuTextFieldItemSettings1 {}
|
|
17099
17461
|
}
|
|
@@ -17291,7 +17653,12 @@ declare module "sap/ui/commons/Message" {
|
|
|
17291
17653
|
sType?: MessageType | keyof typeof MessageType
|
|
17292
17654
|
): this;
|
|
17293
17655
|
}
|
|
17294
|
-
|
|
17656
|
+
/**
|
|
17657
|
+
* Describes the settings that can be provided to the Message constructor.
|
|
17658
|
+
*
|
|
17659
|
+
* @deprecated (since 1.4.0) - A new messaging concept will be created in future. Therefore this control
|
|
17660
|
+
* might be removed in one of the next versions.
|
|
17661
|
+
*/
|
|
17295
17662
|
export interface $MessageSettings extends $ControlSettings {
|
|
17296
17663
|
/**
|
|
17297
17664
|
* "Success", or "Warning", or "Error" messages. (Mandatory)
|
|
@@ -17575,7 +17942,11 @@ declare module "sap/ui/commons/MessageBar" {
|
|
|
17575
17942
|
bVisible: boolean
|
|
17576
17943
|
): this;
|
|
17577
17944
|
}
|
|
17578
|
-
|
|
17945
|
+
/**
|
|
17946
|
+
* Describes the settings that can be provided to the MessageBar constructor.
|
|
17947
|
+
*
|
|
17948
|
+
* @deprecated (since 1.4.0) - Instead, use the `sap.m.MessagePopover` control.
|
|
17949
|
+
*/
|
|
17579
17950
|
export interface $MessageBarSettings extends $ControlSettings {
|
|
17580
17951
|
/**
|
|
17581
17952
|
* Element ID upon which the MessageBar will be initially positioned.
|
|
@@ -17776,6 +18147,9 @@ declare module "sap/ui/commons/MessageBox" {
|
|
|
17776
18147
|
): void;
|
|
17777
18148
|
}
|
|
17778
18149
|
const MessageBox: MessageBox;
|
|
18150
|
+
/**
|
|
18151
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.MessageBox` control.
|
|
18152
|
+
*/
|
|
17779
18153
|
export default MessageBox;
|
|
17780
18154
|
|
|
17781
18155
|
/**
|
|
@@ -18029,7 +18403,12 @@ declare module "sap/ui/commons/MessageList" {
|
|
|
18029
18403
|
bVisible: boolean
|
|
18030
18404
|
): this;
|
|
18031
18405
|
}
|
|
18032
|
-
|
|
18406
|
+
/**
|
|
18407
|
+
* Describes the settings that can be provided to the MessageList constructor.
|
|
18408
|
+
*
|
|
18409
|
+
* @deprecated (since 1.4.0) - A new messaging concept will be created in future. Therefore this control
|
|
18410
|
+
* might be removed in one of the next versions.
|
|
18411
|
+
*/
|
|
18033
18412
|
export interface $MessageListSettings extends $ControlSettings {
|
|
18034
18413
|
/**
|
|
18035
18414
|
* Specifies whether or not the MessageList is visible. Invisible controls are not rendered.
|
|
@@ -18251,7 +18630,11 @@ declare module "sap/ui/commons/MessageToast" {
|
|
|
18251
18630
|
sAnchorId: string
|
|
18252
18631
|
): void;
|
|
18253
18632
|
}
|
|
18254
|
-
|
|
18633
|
+
/**
|
|
18634
|
+
* Describes the settings that can be provided to the MessageToast constructor.
|
|
18635
|
+
*
|
|
18636
|
+
* @deprecated (since 1.4.0) - Instead, use the `sap.m.MessageToast` control.
|
|
18637
|
+
*/
|
|
18255
18638
|
export interface $MessageToastSettings extends $ControlSettings {
|
|
18256
18639
|
/**
|
|
18257
18640
|
* ID of the anchor on top of which the MessageToast is to render.
|
|
@@ -18264,8 +18647,14 @@ declare module "sap/ui/commons/MessageToast" {
|
|
|
18264
18647
|
next?: (oEvent: Event) => void;
|
|
18265
18648
|
}
|
|
18266
18649
|
|
|
18650
|
+
/**
|
|
18651
|
+
* Parameters of the MessageToast#next event.
|
|
18652
|
+
*/
|
|
18267
18653
|
export interface MessageToast$NextEventParameters {}
|
|
18268
18654
|
|
|
18655
|
+
/**
|
|
18656
|
+
* Event object of the MessageToast#next event.
|
|
18657
|
+
*/
|
|
18269
18658
|
export type MessageToast$NextEvent = Event<
|
|
18270
18659
|
MessageToast$NextEventParameters,
|
|
18271
18660
|
MessageToast
|
|
@@ -18484,7 +18873,11 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
18484
18873
|
iNumberOfPages?: int
|
|
18485
18874
|
): this;
|
|
18486
18875
|
}
|
|
18487
|
-
|
|
18876
|
+
/**
|
|
18877
|
+
* Describes the settings that can be provided to the Paginator constructor.
|
|
18878
|
+
*
|
|
18879
|
+
* @deprecated (since 1.38)
|
|
18880
|
+
*/
|
|
18488
18881
|
export interface $PaginatorSettings extends $ControlSettings {
|
|
18489
18882
|
/**
|
|
18490
18883
|
* Represents the current page (first page has index 1, not 0, to match the visual number)
|
|
@@ -18502,6 +18895,9 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
18502
18895
|
page?: (oEvent: Paginator$PageEvent) => void;
|
|
18503
18896
|
}
|
|
18504
18897
|
|
|
18898
|
+
/**
|
|
18899
|
+
* Parameters of the Paginator#page event.
|
|
18900
|
+
*/
|
|
18505
18901
|
export interface Paginator$PageEventParameters {
|
|
18506
18902
|
/**
|
|
18507
18903
|
* The page which is the current one before the page event is fired (and another page is displayed)
|
|
@@ -18523,6 +18919,9 @@ declare module "sap/ui/commons/Paginator" {
|
|
|
18523
18919
|
type?: PaginatorEvent | keyof typeof PaginatorEvent;
|
|
18524
18920
|
}
|
|
18525
18921
|
|
|
18922
|
+
/**
|
|
18923
|
+
* Event object of the Paginator#page event.
|
|
18924
|
+
*/
|
|
18526
18925
|
export type Paginator$PageEvent = Event<
|
|
18527
18926
|
Paginator$PageEventParameters,
|
|
18528
18927
|
Paginator
|
|
@@ -19085,7 +19484,11 @@ declare module "sap/ui/commons/Panel" {
|
|
|
19085
19484
|
sWidth: CSSSize
|
|
19086
19485
|
): this;
|
|
19087
19486
|
}
|
|
19088
|
-
|
|
19487
|
+
/**
|
|
19488
|
+
* Describes the settings that can be provided to the Panel constructor.
|
|
19489
|
+
*
|
|
19490
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Panel` control.
|
|
19491
|
+
*/
|
|
19089
19492
|
export interface $PanelSettings extends $ControlSettings {
|
|
19090
19493
|
/**
|
|
19091
19494
|
* Determines the width of the Panel in CSS size.
|
|
@@ -19254,7 +19657,11 @@ declare module "sap/ui/commons/PasswordField" {
|
|
|
19254
19657
|
*/
|
|
19255
19658
|
static getMetadata(): ElementMetadata;
|
|
19256
19659
|
}
|
|
19257
|
-
|
|
19660
|
+
/**
|
|
19661
|
+
* Describes the settings that can be provided to the PasswordField constructor.
|
|
19662
|
+
*
|
|
19663
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Input` control.
|
|
19664
|
+
*/
|
|
19258
19665
|
export interface $PasswordFieldSettings extends $TextFieldSettings {}
|
|
19259
19666
|
}
|
|
19260
19667
|
|
|
@@ -19522,7 +19929,11 @@ declare module "sap/ui/commons/ProgressIndicator" {
|
|
|
19522
19929
|
sWidth?: CSSSize
|
|
19523
19930
|
): this;
|
|
19524
19931
|
}
|
|
19525
|
-
|
|
19932
|
+
/**
|
|
19933
|
+
* Describes the settings that can be provided to the ProgressIndicator constructor.
|
|
19934
|
+
*
|
|
19935
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.ProgressIndicator` control.
|
|
19936
|
+
*/
|
|
19526
19937
|
export interface $ProgressIndicatorSettings extends $ControlSettings {
|
|
19527
19938
|
/**
|
|
19528
19939
|
* Determines whether the control is enabled or not. Disabled controls have different colors, and can not
|
|
@@ -20059,7 +20470,11 @@ declare module "sap/ui/commons/RadioButton" {
|
|
|
20059
20470
|
sWidth?: CSSSize
|
|
20060
20471
|
): this;
|
|
20061
20472
|
}
|
|
20062
|
-
|
|
20473
|
+
/**
|
|
20474
|
+
* Describes the settings that can be provided to the RadioButton constructor.
|
|
20475
|
+
*
|
|
20476
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.RadioButton` control.
|
|
20477
|
+
*/
|
|
20063
20478
|
export interface $RadioButtonSettings extends $ControlSettings {
|
|
20064
20479
|
/**
|
|
20065
20480
|
* Defines the text displayed next to the RadioButton.
|
|
@@ -20132,8 +20547,14 @@ declare module "sap/ui/commons/RadioButton" {
|
|
|
20132
20547
|
select?: (oEvent: Event) => void;
|
|
20133
20548
|
}
|
|
20134
20549
|
|
|
20550
|
+
/**
|
|
20551
|
+
* Parameters of the RadioButton#select event.
|
|
20552
|
+
*/
|
|
20135
20553
|
export interface RadioButton$SelectEventParameters {}
|
|
20136
20554
|
|
|
20555
|
+
/**
|
|
20556
|
+
* Event object of the RadioButton#select event.
|
|
20557
|
+
*/
|
|
20137
20558
|
export type RadioButton$SelectEvent = Event<
|
|
20138
20559
|
RadioButton$SelectEventParameters,
|
|
20139
20560
|
RadioButton
|
|
@@ -20688,7 +21109,11 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
20688
21109
|
*/
|
|
20689
21110
|
unbindItems(): this;
|
|
20690
21111
|
}
|
|
20691
|
-
|
|
21112
|
+
/**
|
|
21113
|
+
* Describes the settings that can be provided to the RadioButtonGroup constructor.
|
|
21114
|
+
*
|
|
21115
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.RadioButtonGroup` control.
|
|
21116
|
+
*/
|
|
20692
21117
|
export interface $RadioButtonGroupSettings extends $ControlSettings {
|
|
20693
21118
|
/**
|
|
20694
21119
|
* Defines the width of the RadioButtonGroup.
|
|
@@ -20753,6 +21178,9 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
20753
21178
|
select?: (oEvent: RadioButtonGroup$SelectEvent) => void;
|
|
20754
21179
|
}
|
|
20755
21180
|
|
|
21181
|
+
/**
|
|
21182
|
+
* Parameters of the RadioButtonGroup#select event.
|
|
21183
|
+
*/
|
|
20756
21184
|
export interface RadioButtonGroup$SelectEventParameters {
|
|
20757
21185
|
/**
|
|
20758
21186
|
* Index of the selected RadioButton.
|
|
@@ -20760,6 +21188,9 @@ declare module "sap/ui/commons/RadioButtonGroup" {
|
|
|
20760
21188
|
selectedIndex?: int;
|
|
20761
21189
|
}
|
|
20762
21190
|
|
|
21191
|
+
/**
|
|
21192
|
+
* Event object of the RadioButtonGroup#select event.
|
|
21193
|
+
*/
|
|
20763
21194
|
export type RadioButtonGroup$SelectEvent = Event<
|
|
20764
21195
|
RadioButtonGroup$SelectEventParameters,
|
|
20765
21196
|
RadioButtonGroup
|
|
@@ -20879,7 +21310,11 @@ declare module "sap/ui/commons/RangeSlider" {
|
|
|
20879
21310
|
fValue2?: float
|
|
20880
21311
|
): this;
|
|
20881
21312
|
}
|
|
20882
|
-
|
|
21313
|
+
/**
|
|
21314
|
+
* Describes the settings that can be provided to the RangeSlider constructor.
|
|
21315
|
+
*
|
|
21316
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.RangeSlider}
|
|
21317
|
+
*/
|
|
20883
21318
|
export interface $RangeSliderSettings extends $SliderSettings {
|
|
20884
21319
|
/**
|
|
20885
21320
|
* Current second value of the slider. (Position of the second grip.)
|
|
@@ -21388,7 +21823,11 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
21388
21823
|
*/
|
|
21389
21824
|
unbindValue(): this;
|
|
21390
21825
|
}
|
|
21391
|
-
|
|
21826
|
+
/**
|
|
21827
|
+
* Describes the settings that can be provided to the RatingIndicator constructor.
|
|
21828
|
+
*
|
|
21829
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.RatingIndicator` control.
|
|
21830
|
+
*/
|
|
21392
21831
|
export interface $RatingIndicatorSettings extends $ControlSettings {
|
|
21393
21832
|
/**
|
|
21394
21833
|
* Determines if the rating symbols can be edited.
|
|
@@ -21456,6 +21895,9 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
21456
21895
|
change?: (oEvent: RatingIndicator$ChangeEvent) => void;
|
|
21457
21896
|
}
|
|
21458
21897
|
|
|
21898
|
+
/**
|
|
21899
|
+
* Parameters of the RatingIndicator#change event.
|
|
21900
|
+
*/
|
|
21459
21901
|
export interface RatingIndicator$ChangeEventParameters {
|
|
21460
21902
|
/**
|
|
21461
21903
|
* The value of the user rating
|
|
@@ -21463,6 +21905,9 @@ declare module "sap/ui/commons/RatingIndicator" {
|
|
|
21463
21905
|
value?: int;
|
|
21464
21906
|
}
|
|
21465
21907
|
|
|
21908
|
+
/**
|
|
21909
|
+
* Event object of the RatingIndicator#change event.
|
|
21910
|
+
*/
|
|
21466
21911
|
export type RatingIndicator$ChangeEvent = Event<
|
|
21467
21912
|
RatingIndicator$ChangeEventParameters,
|
|
21468
21913
|
RatingIndicator
|
|
@@ -21789,7 +22234,11 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21789
22234
|
sWidth?: CSSSize
|
|
21790
22235
|
): this;
|
|
21791
22236
|
}
|
|
21792
|
-
|
|
22237
|
+
/**
|
|
22238
|
+
* Describes the settings that can be provided to the ResponsiveContainer constructor.
|
|
22239
|
+
*
|
|
22240
|
+
* @deprecated (since 1.38) - Use a container by choice from the {@link sap.m} library, instead.
|
|
22241
|
+
*/
|
|
21793
22242
|
export interface $ResponsiveContainerSettings extends $ControlSettings {
|
|
21794
22243
|
/**
|
|
21795
22244
|
* The width of the responsive container.
|
|
@@ -21821,6 +22270,9 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21821
22270
|
rangeSwitch?: (oEvent: ResponsiveContainer$RangeSwitchEvent) => void;
|
|
21822
22271
|
}
|
|
21823
22272
|
|
|
22273
|
+
/**
|
|
22274
|
+
* Parameters of the ResponsiveContainer#rangeSwitch event.
|
|
22275
|
+
*/
|
|
21824
22276
|
export interface ResponsiveContainer$RangeSwitchEventParameters {
|
|
21825
22277
|
/**
|
|
21826
22278
|
* The current range
|
|
@@ -21828,6 +22280,9 @@ declare module "sap/ui/commons/ResponsiveContainer" {
|
|
|
21828
22280
|
currentRange?: ResponsiveContainerRange;
|
|
21829
22281
|
}
|
|
21830
22282
|
|
|
22283
|
+
/**
|
|
22284
|
+
* Event object of the ResponsiveContainer#rangeSwitch event.
|
|
22285
|
+
*/
|
|
21831
22286
|
export type ResponsiveContainer$RangeSwitchEvent = Event<
|
|
21832
22287
|
ResponsiveContainer$RangeSwitchEventParameters,
|
|
21833
22288
|
ResponsiveContainer
|
|
@@ -22018,7 +22473,11 @@ declare module "sap/ui/commons/ResponsiveContainerRange" {
|
|
|
22018
22473
|
sWidth?: CSSSize
|
|
22019
22474
|
): this;
|
|
22020
22475
|
}
|
|
22021
|
-
|
|
22476
|
+
/**
|
|
22477
|
+
* Describes the settings that can be provided to the ResponsiveContainerRange constructor.
|
|
22478
|
+
*
|
|
22479
|
+
* @deprecated (since 1.38)
|
|
22480
|
+
*/
|
|
22022
22481
|
export interface $ResponsiveContainerRangeSettings extends $ElementSettings {
|
|
22023
22482
|
/**
|
|
22024
22483
|
* The minimal width for this range to be displayed.
|
|
@@ -22229,7 +22688,12 @@ declare module "sap/ui/commons/RichTooltip" {
|
|
|
22229
22688
|
sText: string
|
|
22230
22689
|
): this;
|
|
22231
22690
|
}
|
|
22232
|
-
|
|
22691
|
+
/**
|
|
22692
|
+
* Describes the settings that can be provided to the RichTooltip constructor.
|
|
22693
|
+
*
|
|
22694
|
+
* @deprecated (since 1.38) - Tf you want to achieve a similar behavior, use a `sap.m.Popover` control and
|
|
22695
|
+
* open it next to your control.
|
|
22696
|
+
*/
|
|
22233
22697
|
export interface $RichTooltipSettings extends $TooltipBaseSettings {
|
|
22234
22698
|
/**
|
|
22235
22699
|
* Tool tip title to be displayed in the header.
|
|
@@ -22679,7 +23143,11 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
22679
23143
|
sWidth?: CSSSize
|
|
22680
23144
|
): this;
|
|
22681
23145
|
}
|
|
22682
|
-
|
|
23146
|
+
/**
|
|
23147
|
+
* Describes the settings that can be provided to the RoadMap constructor.
|
|
23148
|
+
*
|
|
23149
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Wizard` control.
|
|
23150
|
+
*/
|
|
22683
23151
|
export interface $RoadMapSettings extends $ControlSettings {
|
|
22684
23152
|
/**
|
|
22685
23153
|
* Total number of steps to be displayed at once
|
|
@@ -22721,6 +23189,9 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
22721
23189
|
stepExpanded?: (oEvent: RoadMap$StepExpandedEvent) => void;
|
|
22722
23190
|
}
|
|
22723
23191
|
|
|
23192
|
+
/**
|
|
23193
|
+
* Parameters of the RoadMap#stepExpanded event.
|
|
23194
|
+
*/
|
|
22724
23195
|
export interface RoadMap$StepExpandedEventParameters {
|
|
22725
23196
|
/**
|
|
22726
23197
|
* ID of the expanded/collapsed step
|
|
@@ -22728,11 +23199,17 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
22728
23199
|
stepId?: string;
|
|
22729
23200
|
}
|
|
22730
23201
|
|
|
23202
|
+
/**
|
|
23203
|
+
* Event object of the RoadMap#stepExpanded event.
|
|
23204
|
+
*/
|
|
22731
23205
|
export type RoadMap$StepExpandedEvent = Event<
|
|
22732
23206
|
RoadMap$StepExpandedEventParameters,
|
|
22733
23207
|
RoadMap
|
|
22734
23208
|
>;
|
|
22735
23209
|
|
|
23210
|
+
/**
|
|
23211
|
+
* Parameters of the RoadMap#stepSelected event.
|
|
23212
|
+
*/
|
|
22736
23213
|
export interface RoadMap$StepSelectedEventParameters {
|
|
22737
23214
|
/**
|
|
22738
23215
|
* ID of the selected step
|
|
@@ -22740,6 +23217,9 @@ declare module "sap/ui/commons/RoadMap" {
|
|
|
22740
23217
|
stepId?: string;
|
|
22741
23218
|
}
|
|
22742
23219
|
|
|
23220
|
+
/**
|
|
23221
|
+
* Event object of the RoadMap#stepSelected event.
|
|
23222
|
+
*/
|
|
22743
23223
|
export type RoadMap$StepSelectedEvent = Event<
|
|
22744
23224
|
RoadMap$StepSelectedEventParameters,
|
|
22745
23225
|
RoadMap
|
|
@@ -23034,7 +23514,11 @@ declare module "sap/ui/commons/RoadMapStep" {
|
|
|
23034
23514
|
bVisible?: boolean
|
|
23035
23515
|
): this;
|
|
23036
23516
|
}
|
|
23037
|
-
|
|
23517
|
+
/**
|
|
23518
|
+
* Describes the settings that can be provided to the RoadMapStep constructor.
|
|
23519
|
+
*
|
|
23520
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Wizard` control.
|
|
23521
|
+
*/
|
|
23038
23522
|
export interface $RoadMapStepSettings extends $ElementSettings {
|
|
23039
23523
|
/**
|
|
23040
23524
|
* Label of the step
|
|
@@ -24001,7 +24485,11 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
24001
24485
|
*/
|
|
24002
24486
|
unbindRows(): this;
|
|
24003
24487
|
}
|
|
24004
|
-
|
|
24488
|
+
/**
|
|
24489
|
+
* Describes the settings that can be provided to the RowRepeater constructor.
|
|
24490
|
+
*
|
|
24491
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.table.Table` control.
|
|
24492
|
+
*/
|
|
24005
24493
|
export interface $RowRepeaterSettings extends $ControlSettings {
|
|
24006
24494
|
/**
|
|
24007
24495
|
* Number of rows displayed.
|
|
@@ -24092,6 +24580,9 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
24092
24580
|
resize?: (oEvent: RowRepeater$ResizeEvent) => void;
|
|
24093
24581
|
}
|
|
24094
24582
|
|
|
24583
|
+
/**
|
|
24584
|
+
* Parameters of the RowRepeater#filter event.
|
|
24585
|
+
*/
|
|
24095
24586
|
export interface RowRepeater$FilterEventParameters {
|
|
24096
24587
|
/**
|
|
24097
24588
|
* The ID of the filter that has just been applied.
|
|
@@ -24099,11 +24590,17 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
24099
24590
|
filterId?: string;
|
|
24100
24591
|
}
|
|
24101
24592
|
|
|
24593
|
+
/**
|
|
24594
|
+
* Event object of the RowRepeater#filter event.
|
|
24595
|
+
*/
|
|
24102
24596
|
export type RowRepeater$FilterEvent = Event<
|
|
24103
24597
|
RowRepeater$FilterEventParameters,
|
|
24104
24598
|
RowRepeater
|
|
24105
24599
|
>;
|
|
24106
24600
|
|
|
24601
|
+
/**
|
|
24602
|
+
* Parameters of the RowRepeater#page event.
|
|
24603
|
+
*/
|
|
24107
24604
|
export interface RowRepeater$PageEventParameters {
|
|
24108
24605
|
/**
|
|
24109
24606
|
* The value of the currentPage property after the change.
|
|
@@ -24116,11 +24613,17 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
24116
24613
|
previousPage?: int;
|
|
24117
24614
|
}
|
|
24118
24615
|
|
|
24616
|
+
/**
|
|
24617
|
+
* Event object of the RowRepeater#page event.
|
|
24618
|
+
*/
|
|
24119
24619
|
export type RowRepeater$PageEvent = Event<
|
|
24120
24620
|
RowRepeater$PageEventParameters,
|
|
24121
24621
|
RowRepeater
|
|
24122
24622
|
>;
|
|
24123
24623
|
|
|
24624
|
+
/**
|
|
24625
|
+
* Parameters of the RowRepeater#resize event.
|
|
24626
|
+
*/
|
|
24124
24627
|
export interface RowRepeater$ResizeEventParameters {
|
|
24125
24628
|
/**
|
|
24126
24629
|
* The value of the numberOfRows property after the change.
|
|
@@ -24133,11 +24636,17 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
24133
24636
|
previousNumberOfRows?: int;
|
|
24134
24637
|
}
|
|
24135
24638
|
|
|
24639
|
+
/**
|
|
24640
|
+
* Event object of the RowRepeater#resize event.
|
|
24641
|
+
*/
|
|
24136
24642
|
export type RowRepeater$ResizeEvent = Event<
|
|
24137
24643
|
RowRepeater$ResizeEventParameters,
|
|
24138
24644
|
RowRepeater
|
|
24139
24645
|
>;
|
|
24140
24646
|
|
|
24647
|
+
/**
|
|
24648
|
+
* Parameters of the RowRepeater#sort event.
|
|
24649
|
+
*/
|
|
24141
24650
|
export interface RowRepeater$SortEventParameters {
|
|
24142
24651
|
/**
|
|
24143
24652
|
* The ID of the sorter that has just been applied.
|
|
@@ -24145,6 +24654,9 @@ declare module "sap/ui/commons/RowRepeater" {
|
|
|
24145
24654
|
sorterId?: string;
|
|
24146
24655
|
}
|
|
24147
24656
|
|
|
24657
|
+
/**
|
|
24658
|
+
* Event object of the RowRepeater#sort event.
|
|
24659
|
+
*/
|
|
24148
24660
|
export type RowRepeater$SortEvent = Event<
|
|
24149
24661
|
RowRepeater$SortEventParameters,
|
|
24150
24662
|
RowRepeater
|
|
@@ -24303,7 +24815,11 @@ declare module "sap/ui/commons/RowRepeaterFilter" {
|
|
|
24303
24815
|
sText?: string
|
|
24304
24816
|
): this;
|
|
24305
24817
|
}
|
|
24306
|
-
|
|
24818
|
+
/**
|
|
24819
|
+
* Describes the settings that can be provided to the RowRepeaterFilter constructor.
|
|
24820
|
+
*
|
|
24821
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.table.Table` control.
|
|
24822
|
+
*/
|
|
24307
24823
|
export interface $RowRepeaterFilterSettings extends $ElementSettings {
|
|
24308
24824
|
/**
|
|
24309
24825
|
* The filter title if needed for display.
|
|
@@ -24474,7 +24990,11 @@ declare module "sap/ui/commons/RowRepeaterSorter" {
|
|
|
24474
24990
|
sText?: string
|
|
24475
24991
|
): this;
|
|
24476
24992
|
}
|
|
24477
|
-
|
|
24993
|
+
/**
|
|
24994
|
+
* Describes the settings that can be provided to the RowRepeaterSorter constructor.
|
|
24995
|
+
*
|
|
24996
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.table.Table` control.
|
|
24997
|
+
*/
|
|
24478
24998
|
export interface $RowRepeaterSorterSettings extends $ElementSettings {
|
|
24479
24999
|
/**
|
|
24480
25000
|
* The sorter title if needed for display.
|
|
@@ -25381,7 +25901,11 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
25381
25901
|
aASuggestions: string[]
|
|
25382
25902
|
): void;
|
|
25383
25903
|
}
|
|
25384
|
-
|
|
25904
|
+
/**
|
|
25905
|
+
* Describes the settings that can be provided to the SearchField constructor.
|
|
25906
|
+
*
|
|
25907
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.SearchField` control.
|
|
25908
|
+
*/
|
|
25385
25909
|
export interface $SearchFieldSettings extends $ControlSettings {
|
|
25386
25910
|
/**
|
|
25387
25911
|
* Defines whether a pop up list shall be provided for suggestions
|
|
@@ -25516,6 +26040,9 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
25516
26040
|
suggest?: (oEvent: SearchField$SuggestEvent) => void;
|
|
25517
26041
|
}
|
|
25518
26042
|
|
|
26043
|
+
/**
|
|
26044
|
+
* Parameters of the SearchField#search event.
|
|
26045
|
+
*/
|
|
25519
26046
|
export interface SearchField$SearchEventParameters {
|
|
25520
26047
|
/**
|
|
25521
26048
|
* The search query
|
|
@@ -25523,11 +26050,17 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
25523
26050
|
query?: string;
|
|
25524
26051
|
}
|
|
25525
26052
|
|
|
26053
|
+
/**
|
|
26054
|
+
* Event object of the SearchField#search event.
|
|
26055
|
+
*/
|
|
25526
26056
|
export type SearchField$SearchEvent = Event<
|
|
25527
26057
|
SearchField$SearchEventParameters,
|
|
25528
26058
|
SearchField
|
|
25529
26059
|
>;
|
|
25530
26060
|
|
|
26061
|
+
/**
|
|
26062
|
+
* Parameters of the SearchField#suggest event.
|
|
26063
|
+
*/
|
|
25531
26064
|
export interface SearchField$SuggestEventParameters {
|
|
25532
26065
|
/**
|
|
25533
26066
|
* The value for which suggestions are required.
|
|
@@ -25535,6 +26068,9 @@ declare module "sap/ui/commons/SearchField" {
|
|
|
25535
26068
|
value?: string;
|
|
25536
26069
|
}
|
|
25537
26070
|
|
|
26071
|
+
/**
|
|
26072
|
+
* Event object of the SearchField#suggest event.
|
|
26073
|
+
*/
|
|
25538
26074
|
export type SearchField$SuggestEvent = Event<
|
|
25539
26075
|
SearchField$SuggestEventParameters,
|
|
25540
26076
|
SearchField
|
|
@@ -25624,7 +26160,11 @@ declare module "sap/ui/commons/SearchProvider" {
|
|
|
25624
26160
|
*/
|
|
25625
26161
|
static getMetadata(): ElementMetadata;
|
|
25626
26162
|
}
|
|
25627
|
-
|
|
26163
|
+
/**
|
|
26164
|
+
* Describes the settings that can be provided to the SearchProvider constructor.
|
|
26165
|
+
*
|
|
26166
|
+
* @deprecated (since 1.6.0) - Replaced by sap.ui.core.search.OpenSearchProvider
|
|
26167
|
+
*/
|
|
25628
26168
|
export interface $SearchProviderSettings
|
|
25629
26169
|
extends $OpenSearchProviderSettings {}
|
|
25630
26170
|
}
|
|
@@ -25929,7 +26469,11 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
25929
26469
|
oSelectedButton: ID | Button
|
|
25930
26470
|
): this;
|
|
25931
26471
|
}
|
|
25932
|
-
|
|
26472
|
+
/**
|
|
26473
|
+
* Describes the settings that can be provided to the SegmentedButton constructor.
|
|
26474
|
+
*
|
|
26475
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.SegmentedButton}
|
|
26476
|
+
*/
|
|
25933
26477
|
export interface $SegmentedButtonSettings extends $ControlSettings {
|
|
25934
26478
|
/**
|
|
25935
26479
|
* enabled
|
|
@@ -25952,6 +26496,9 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
25952
26496
|
select?: (oEvent: SegmentedButton$SelectEvent) => void;
|
|
25953
26497
|
}
|
|
25954
26498
|
|
|
26499
|
+
/**
|
|
26500
|
+
* Parameters of the SegmentedButton#select event.
|
|
26501
|
+
*/
|
|
25955
26502
|
export interface SegmentedButton$SelectEventParameters {
|
|
25956
26503
|
/**
|
|
25957
26504
|
* Id of selected ToggleButton
|
|
@@ -25959,6 +26506,9 @@ declare module "sap/ui/commons/SegmentedButton" {
|
|
|
25959
26506
|
selectedButtonId?: string;
|
|
25960
26507
|
}
|
|
25961
26508
|
|
|
26509
|
+
/**
|
|
26510
|
+
* Event object of the SegmentedButton#select event.
|
|
26511
|
+
*/
|
|
25962
26512
|
export type SegmentedButton$SelectEvent = Event<
|
|
25963
26513
|
SegmentedButton$SelectEventParameters,
|
|
25964
26514
|
SegmentedButton
|
|
@@ -26635,7 +27185,11 @@ declare module "sap/ui/commons/Slider" {
|
|
|
26635
27185
|
sWidth?: CSSSize
|
|
26636
27186
|
): this;
|
|
26637
27187
|
}
|
|
26638
|
-
|
|
27188
|
+
/**
|
|
27189
|
+
* Describes the settings that can be provided to the Slider constructor.
|
|
27190
|
+
*
|
|
27191
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Slider}
|
|
27192
|
+
*/
|
|
26639
27193
|
export interface $SliderSettings extends $ControlSettings {
|
|
26640
27194
|
/**
|
|
26641
27195
|
* Width of the horizontal slider.
|
|
@@ -26733,6 +27287,9 @@ declare module "sap/ui/commons/Slider" {
|
|
|
26733
27287
|
liveChange?: (oEvent: Slider$LiveChangeEvent) => void;
|
|
26734
27288
|
}
|
|
26735
27289
|
|
|
27290
|
+
/**
|
|
27291
|
+
* Parameters of the Slider#change event.
|
|
27292
|
+
*/
|
|
26736
27293
|
export interface Slider$ChangeEventParameters {
|
|
26737
27294
|
/**
|
|
26738
27295
|
* Current value of the slider after a change.
|
|
@@ -26740,8 +27297,14 @@ declare module "sap/ui/commons/Slider" {
|
|
|
26740
27297
|
value?: float;
|
|
26741
27298
|
}
|
|
26742
27299
|
|
|
27300
|
+
/**
|
|
27301
|
+
* Event object of the Slider#change event.
|
|
27302
|
+
*/
|
|
26743
27303
|
export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters, Slider>;
|
|
26744
27304
|
|
|
27305
|
+
/**
|
|
27306
|
+
* Parameters of the Slider#liveChange event.
|
|
27307
|
+
*/
|
|
26745
27308
|
export interface Slider$LiveChangeEventParameters {
|
|
26746
27309
|
/**
|
|
26747
27310
|
* Current value of the slider after a change.
|
|
@@ -26749,6 +27312,9 @@ declare module "sap/ui/commons/Slider" {
|
|
|
26749
27312
|
value?: float;
|
|
26750
27313
|
}
|
|
26751
27314
|
|
|
27315
|
+
/**
|
|
27316
|
+
* Event object of the Slider#liveChange event.
|
|
27317
|
+
*/
|
|
26752
27318
|
export type Slider$LiveChangeEvent = Event<
|
|
26753
27319
|
Slider$LiveChangeEventParameters,
|
|
26754
27320
|
Slider
|
|
@@ -27232,7 +27798,11 @@ declare module "sap/ui/commons/Splitter" {
|
|
|
27232
27798
|
sWidth?: SplitterSize
|
|
27233
27799
|
): this;
|
|
27234
27800
|
}
|
|
27235
|
-
|
|
27801
|
+
/**
|
|
27802
|
+
* Describes the settings that can be provided to the Splitter constructor.
|
|
27803
|
+
*
|
|
27804
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Splitter` control.
|
|
27805
|
+
*/
|
|
27236
27806
|
export interface $SplitterSettings extends $ControlSettings {
|
|
27237
27807
|
/**
|
|
27238
27808
|
* The splitter can have horizontal or vertical orientation.
|
|
@@ -27499,7 +28069,11 @@ declare module "sap/ui/commons/Tab" {
|
|
|
27499
28069
|
sVerticalScrolling?: Scrolling | keyof typeof Scrolling
|
|
27500
28070
|
): this;
|
|
27501
28071
|
}
|
|
27502
|
-
|
|
28072
|
+
/**
|
|
28073
|
+
* Describes the settings that can be provided to the Tab constructor.
|
|
28074
|
+
*
|
|
28075
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.TabContainer` control.
|
|
28076
|
+
*/
|
|
27503
28077
|
export interface $TabSettings extends $PanelSettings {
|
|
27504
28078
|
/**
|
|
27505
28079
|
* Specifies the vertical scrolling.
|
|
@@ -27986,7 +28560,11 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
27986
28560
|
sWidth?: CSSSize
|
|
27987
28561
|
): this;
|
|
27988
28562
|
}
|
|
27989
|
-
|
|
28563
|
+
/**
|
|
28564
|
+
* Describes the settings that can be provided to the TabStrip constructor.
|
|
28565
|
+
*
|
|
28566
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.TabContainer` control.
|
|
28567
|
+
*/
|
|
27990
28568
|
export interface $TabStripSettings extends $ControlSettings {
|
|
27991
28569
|
/**
|
|
27992
28570
|
* Specifies the height of the tab bar and content area.
|
|
@@ -28024,6 +28602,9 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
28024
28602
|
close?: (oEvent: TabStrip$CloseEvent) => void;
|
|
28025
28603
|
}
|
|
28026
28604
|
|
|
28605
|
+
/**
|
|
28606
|
+
* Parameters of the TabStrip#close event.
|
|
28607
|
+
*/
|
|
28027
28608
|
export interface TabStrip$CloseEventParameters {
|
|
28028
28609
|
/**
|
|
28029
28610
|
* The index of the closed tab.
|
|
@@ -28031,11 +28612,17 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
28031
28612
|
index?: int;
|
|
28032
28613
|
}
|
|
28033
28614
|
|
|
28615
|
+
/**
|
|
28616
|
+
* Event object of the TabStrip#close event.
|
|
28617
|
+
*/
|
|
28034
28618
|
export type TabStrip$CloseEvent = Event<
|
|
28035
28619
|
TabStrip$CloseEventParameters,
|
|
28036
28620
|
TabStrip
|
|
28037
28621
|
>;
|
|
28038
28622
|
|
|
28623
|
+
/**
|
|
28624
|
+
* Parameters of the TabStrip#select event.
|
|
28625
|
+
*/
|
|
28039
28626
|
export interface TabStrip$SelectEventParameters {
|
|
28040
28627
|
/**
|
|
28041
28628
|
* The index of the selected tab.
|
|
@@ -28043,6 +28630,9 @@ declare module "sap/ui/commons/TabStrip" {
|
|
|
28043
28630
|
index?: int;
|
|
28044
28631
|
}
|
|
28045
28632
|
|
|
28633
|
+
/**
|
|
28634
|
+
* Event object of the TabStrip#select event.
|
|
28635
|
+
*/
|
|
28046
28636
|
export type TabStrip$SelectEvent = Event<
|
|
28047
28637
|
TabStrip$SelectEventParameters,
|
|
28048
28638
|
TabStrip
|
|
@@ -28317,7 +28907,11 @@ declare module "sap/ui/commons/TextArea" {
|
|
|
28317
28907
|
sWrapping?: Wrapping | keyof typeof Wrapping
|
|
28318
28908
|
): this;
|
|
28319
28909
|
}
|
|
28320
|
-
|
|
28910
|
+
/**
|
|
28911
|
+
* Describes the settings that can be provided to the TextArea constructor.
|
|
28912
|
+
*
|
|
28913
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.TextArea` control.
|
|
28914
|
+
*/
|
|
28321
28915
|
export interface $TextAreaSettings extends $TextFieldSettings {
|
|
28322
28916
|
/**
|
|
28323
28917
|
* Height of text field. When it is set (CSS-size such as % or px), this is the exact size.
|
|
@@ -28845,7 +29439,11 @@ declare module "sap/ui/commons/TextView" {
|
|
|
28845
29439
|
*/
|
|
28846
29440
|
unbindText(): this;
|
|
28847
29441
|
}
|
|
28848
|
-
|
|
29442
|
+
/**
|
|
29443
|
+
* Describes the settings that can be provided to the TextView constructor.
|
|
29444
|
+
*
|
|
29445
|
+
* @deprecated (since 1.38)
|
|
29446
|
+
*/
|
|
28849
29447
|
export interface $TextViewSettings extends $ControlSettings {
|
|
28850
29448
|
/**
|
|
28851
29449
|
* Text to be displayed.
|
|
@@ -29039,7 +29637,11 @@ declare module "sap/ui/commons/Title" {
|
|
|
29039
29637
|
oLevel: TitleLevel | keyof typeof TitleLevel
|
|
29040
29638
|
): this;
|
|
29041
29639
|
}
|
|
29042
|
-
|
|
29640
|
+
/**
|
|
29641
|
+
* Describes the settings that can be provided to the Title constructor.
|
|
29642
|
+
*
|
|
29643
|
+
* @deprecated (since 1.16.0) - moved to sap.ui.core library. Please use this one.
|
|
29644
|
+
*/
|
|
29043
29645
|
export interface $TitleSettings extends $TitleSettings1 {}
|
|
29044
29646
|
}
|
|
29045
29647
|
|
|
@@ -29159,7 +29761,11 @@ declare module "sap/ui/commons/ToggleButton" {
|
|
|
29159
29761
|
bPressed?: boolean
|
|
29160
29762
|
): this;
|
|
29161
29763
|
}
|
|
29162
|
-
|
|
29764
|
+
/**
|
|
29765
|
+
* Describes the settings that can be provided to the ToggleButton constructor.
|
|
29766
|
+
*
|
|
29767
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.ToggleButton}
|
|
29768
|
+
*/
|
|
29163
29769
|
export interface $ToggleButtonSettings extends $ButtonSettings {
|
|
29164
29770
|
/**
|
|
29165
29771
|
* The property is “true” when the control is toggled. The default state of this property is "false".
|
|
@@ -29499,7 +30105,11 @@ declare module "sap/ui/commons/Toolbar" {
|
|
|
29499
30105
|
sWidth?: CSSSize
|
|
29500
30106
|
): this;
|
|
29501
30107
|
}
|
|
29502
|
-
|
|
30108
|
+
/**
|
|
30109
|
+
* Describes the settings that can be provided to the Toolbar constructor.
|
|
30110
|
+
*
|
|
30111
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Toolbar}
|
|
30112
|
+
*/
|
|
29503
30113
|
export interface $ToolbarSettings extends $ControlSettings {
|
|
29504
30114
|
/**
|
|
29505
30115
|
* When there is not enough space for the toolbar to display all items, the rightmost items are overflowing
|
|
@@ -29677,7 +30287,11 @@ declare module "sap/ui/commons/ToolbarSeparator" {
|
|
|
29677
30287
|
bDisplayVisualSeparator?: boolean
|
|
29678
30288
|
): this;
|
|
29679
30289
|
}
|
|
29680
|
-
|
|
30290
|
+
/**
|
|
30291
|
+
* Describes the settings that can be provided to the ToolbarSeparator constructor.
|
|
30292
|
+
*
|
|
30293
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` control.
|
|
30294
|
+
*/
|
|
29681
30295
|
export interface $ToolbarSeparatorSettings extends $ElementSettings {
|
|
29682
30296
|
/**
|
|
29683
30297
|
* When set to false, there is no visual indication of separation by a vertical line but by a wider space.
|
|
@@ -30291,7 +30905,11 @@ declare module "sap/ui/commons/Tree" {
|
|
|
30291
30905
|
*/
|
|
30292
30906
|
unbindNodes(): this;
|
|
30293
30907
|
}
|
|
30294
|
-
|
|
30908
|
+
/**
|
|
30909
|
+
* Describes the settings that can be provided to the Tree constructor.
|
|
30910
|
+
*
|
|
30911
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Tree}
|
|
30912
|
+
*/
|
|
30295
30913
|
export interface $TreeSettings extends $ControlSettings {
|
|
30296
30914
|
/**
|
|
30297
30915
|
* Tree title
|
|
@@ -30353,6 +30971,9 @@ declare module "sap/ui/commons/Tree" {
|
|
|
30353
30971
|
selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
|
|
30354
30972
|
}
|
|
30355
30973
|
|
|
30974
|
+
/**
|
|
30975
|
+
* Parameters of the Tree#select event.
|
|
30976
|
+
*/
|
|
30356
30977
|
export interface Tree$SelectEventParameters {
|
|
30357
30978
|
/**
|
|
30358
30979
|
* The node which has been selected.
|
|
@@ -30365,8 +30986,14 @@ declare module "sap/ui/commons/Tree" {
|
|
|
30365
30986
|
nodeContext?: object;
|
|
30366
30987
|
}
|
|
30367
30988
|
|
|
30989
|
+
/**
|
|
30990
|
+
* Event object of the Tree#select event.
|
|
30991
|
+
*/
|
|
30368
30992
|
export type Tree$SelectEvent = Event<Tree$SelectEventParameters, Tree>;
|
|
30369
30993
|
|
|
30994
|
+
/**
|
|
30995
|
+
* Parameters of the Tree#selectionChange event.
|
|
30996
|
+
*/
|
|
30370
30997
|
export interface Tree$SelectionChangeEventParameters {
|
|
30371
30998
|
/**
|
|
30372
30999
|
* The nodes which has been selected.
|
|
@@ -30379,6 +31006,9 @@ declare module "sap/ui/commons/Tree" {
|
|
|
30379
31006
|
nodeContexts?: object[];
|
|
30380
31007
|
}
|
|
30381
31008
|
|
|
31009
|
+
/**
|
|
31010
|
+
* Event object of the Tree#selectionChange event.
|
|
31011
|
+
*/
|
|
30382
31012
|
export type Tree$SelectionChangeEvent = Event<
|
|
30383
31013
|
Tree$SelectionChangeEventParameters,
|
|
30384
31014
|
Tree
|
|
@@ -30964,7 +31594,11 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
30964
31594
|
sText?: string
|
|
30965
31595
|
): this;
|
|
30966
31596
|
}
|
|
30967
|
-
|
|
31597
|
+
/**
|
|
31598
|
+
* Describes the settings that can be provided to the TreeNode constructor.
|
|
31599
|
+
*
|
|
31600
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Tree}
|
|
31601
|
+
*/
|
|
30968
31602
|
export interface $TreeNodeSettings extends $ElementSettings {
|
|
30969
31603
|
/**
|
|
30970
31604
|
* Node text
|
|
@@ -31022,13 +31656,22 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
31022
31656
|
selected?: (oEvent: Event) => void;
|
|
31023
31657
|
}
|
|
31024
31658
|
|
|
31659
|
+
/**
|
|
31660
|
+
* Parameters of the TreeNode#selected event.
|
|
31661
|
+
*/
|
|
31025
31662
|
export interface TreeNode$SelectedEventParameters {}
|
|
31026
31663
|
|
|
31664
|
+
/**
|
|
31665
|
+
* Event object of the TreeNode#selected event.
|
|
31666
|
+
*/
|
|
31027
31667
|
export type TreeNode$SelectedEvent = Event<
|
|
31028
31668
|
TreeNode$SelectedEventParameters,
|
|
31029
31669
|
TreeNode
|
|
31030
31670
|
>;
|
|
31031
31671
|
|
|
31672
|
+
/**
|
|
31673
|
+
* Parameters of the TreeNode#toggleOpenState event.
|
|
31674
|
+
*/
|
|
31032
31675
|
export interface TreeNode$ToggleOpenStateEventParameters {
|
|
31033
31676
|
/**
|
|
31034
31677
|
* Node has been opened if true
|
|
@@ -31036,6 +31679,9 @@ declare module "sap/ui/commons/TreeNode" {
|
|
|
31036
31679
|
opened?: boolean;
|
|
31037
31680
|
}
|
|
31038
31681
|
|
|
31682
|
+
/**
|
|
31683
|
+
* Event object of the TreeNode#toggleOpenState event.
|
|
31684
|
+
*/
|
|
31039
31685
|
export type TreeNode$ToggleOpenStateEvent = Event<
|
|
31040
31686
|
TreeNode$ToggleOpenStateEventParameters,
|
|
31041
31687
|
TreeNode
|
|
@@ -31418,7 +32064,11 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
31418
32064
|
destState: TriStateCheckBoxState | keyof typeof TriStateCheckBoxState
|
|
31419
32065
|
): void;
|
|
31420
32066
|
}
|
|
31421
|
-
|
|
32067
|
+
/**
|
|
32068
|
+
* Describes the settings that can be provided to the TriStateCheckBox constructor.
|
|
32069
|
+
*
|
|
32070
|
+
* @deprecated (since 1.38)
|
|
32071
|
+
*/
|
|
31422
32072
|
export interface $TriStateCheckBoxSettings extends $ControlSettings {
|
|
31423
32073
|
/**
|
|
31424
32074
|
* Defines the states of the checkbox
|
|
@@ -31472,6 +32122,9 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
31472
32122
|
change?: (oEvent: TriStateCheckBox$ChangeEvent) => void;
|
|
31473
32123
|
}
|
|
31474
32124
|
|
|
32125
|
+
/**
|
|
32126
|
+
* Parameters of the TriStateCheckBox#change event.
|
|
32127
|
+
*/
|
|
31475
32128
|
export interface TriStateCheckBox$ChangeEventParameters {
|
|
31476
32129
|
/**
|
|
31477
32130
|
* Checks whether the box is flagged or not flagged.
|
|
@@ -31479,6 +32132,9 @@ declare module "sap/ui/commons/TriStateCheckBox" {
|
|
|
31479
32132
|
selectionState?: string;
|
|
31480
32133
|
}
|
|
31481
32134
|
|
|
32135
|
+
/**
|
|
32136
|
+
* Event object of the TriStateCheckBox#change event.
|
|
32137
|
+
*/
|
|
31482
32138
|
export type TriStateCheckBox$ChangeEvent = Event<
|
|
31483
32139
|
TriStateCheckBox$ChangeEventParameters,
|
|
31484
32140
|
TriStateCheckBox
|
|
@@ -31741,7 +32397,11 @@ declare module "sap/ui/commons/ValueHelpField" {
|
|
|
31741
32397
|
sIconURL?: URI
|
|
31742
32398
|
): this;
|
|
31743
32399
|
}
|
|
31744
|
-
|
|
32400
|
+
/**
|
|
32401
|
+
* Describes the settings that can be provided to the ValueHelpField constructor.
|
|
32402
|
+
*
|
|
32403
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Input` control.
|
|
32404
|
+
*/
|
|
31745
32405
|
export interface $ValueHelpFieldSettings extends $TextFieldSettings {
|
|
31746
32406
|
/**
|
|
31747
32407
|
* URL of the standard icon for the value help. If no parameter is supplied the default icon image will
|
|
@@ -31767,8 +32427,14 @@ declare module "sap/ui/commons/ValueHelpField" {
|
|
|
31767
32427
|
valueHelpRequest?: (oEvent: Event) => void;
|
|
31768
32428
|
}
|
|
31769
32429
|
|
|
32430
|
+
/**
|
|
32431
|
+
* Parameters of the ValueHelpField#valueHelpRequest event.
|
|
32432
|
+
*/
|
|
31770
32433
|
export interface ValueHelpField$ValueHelpRequestEventParameters {}
|
|
31771
32434
|
|
|
32435
|
+
/**
|
|
32436
|
+
* Event object of the ValueHelpField#valueHelpRequest event.
|
|
32437
|
+
*/
|
|
31772
32438
|
export type ValueHelpField$ValueHelpRequestEvent = Event<
|
|
31773
32439
|
ValueHelpField$ValueHelpRequestEventParameters,
|
|
31774
32440
|
ValueHelpField
|