@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/webc/main/library" {
|
|
4
4
|
/**
|
|
@@ -1883,7 +1883,11 @@ declare module "sap/ui/webc/main/Avatar" {
|
|
|
1883
1883
|
sSize?: AvatarSize | keyof typeof AvatarSize
|
|
1884
1884
|
): this;
|
|
1885
1885
|
}
|
|
1886
|
-
|
|
1886
|
+
/**
|
|
1887
|
+
* Describes the settings that can be provided to the Avatar constructor.
|
|
1888
|
+
*
|
|
1889
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1890
|
+
*/
|
|
1887
1891
|
export interface $AvatarSettings extends $WebComponentSettings {
|
|
1888
1892
|
/**
|
|
1889
1893
|
* Defines the text alternative of the component. If not provided a default text alternative will be set,
|
|
@@ -2024,8 +2028,14 @@ declare module "sap/ui/webc/main/Avatar" {
|
|
|
2024
2028
|
click?: (oEvent: Event) => void;
|
|
2025
2029
|
}
|
|
2026
2030
|
|
|
2031
|
+
/**
|
|
2032
|
+
* Parameters of the Avatar#click event.
|
|
2033
|
+
*/
|
|
2027
2034
|
export interface Avatar$ClickEventParameters {}
|
|
2028
2035
|
|
|
2036
|
+
/**
|
|
2037
|
+
* Event object of the Avatar#click event.
|
|
2038
|
+
*/
|
|
2029
2039
|
export type Avatar$ClickEvent = Event<Avatar$ClickEventParameters, Avatar>;
|
|
2030
2040
|
}
|
|
2031
2041
|
|
|
@@ -2479,7 +2489,11 @@ declare module "sap/ui/webc/main/AvatarGroup" {
|
|
|
2479
2489
|
sType?: AvatarGroupType | keyof typeof AvatarGroupType
|
|
2480
2490
|
): this;
|
|
2481
2491
|
}
|
|
2482
|
-
|
|
2492
|
+
/**
|
|
2493
|
+
* Describes the settings that can be provided to the AvatarGroup constructor.
|
|
2494
|
+
*
|
|
2495
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
2496
|
+
*/
|
|
2483
2497
|
export interface $AvatarGroupSettings extends $WebComponentSettings {
|
|
2484
2498
|
/**
|
|
2485
2499
|
* Defines the mode of the `AvatarGroup`.
|
|
@@ -2521,6 +2535,9 @@ declare module "sap/ui/webc/main/AvatarGroup" {
|
|
|
2521
2535
|
overflow?: (oEvent: Event) => void;
|
|
2522
2536
|
}
|
|
2523
2537
|
|
|
2538
|
+
/**
|
|
2539
|
+
* Parameters of the AvatarGroup#click event.
|
|
2540
|
+
*/
|
|
2524
2541
|
export interface AvatarGroup$ClickEventParameters {
|
|
2525
2542
|
/**
|
|
2526
2543
|
* The DOM ref of the clicked item.
|
|
@@ -2533,13 +2550,22 @@ declare module "sap/ui/webc/main/AvatarGroup" {
|
|
|
2533
2550
|
overflowButtonClicked?: boolean;
|
|
2534
2551
|
}
|
|
2535
2552
|
|
|
2553
|
+
/**
|
|
2554
|
+
* Event object of the AvatarGroup#click event.
|
|
2555
|
+
*/
|
|
2536
2556
|
export type AvatarGroup$ClickEvent = Event<
|
|
2537
2557
|
AvatarGroup$ClickEventParameters,
|
|
2538
2558
|
AvatarGroup
|
|
2539
2559
|
>;
|
|
2540
2560
|
|
|
2561
|
+
/**
|
|
2562
|
+
* Parameters of the AvatarGroup#overflow event.
|
|
2563
|
+
*/
|
|
2541
2564
|
export interface AvatarGroup$OverflowEventParameters {}
|
|
2542
2565
|
|
|
2566
|
+
/**
|
|
2567
|
+
* Event object of the AvatarGroup#overflow event.
|
|
2568
|
+
*/
|
|
2543
2569
|
export type AvatarGroup$OverflowEvent = Event<
|
|
2544
2570
|
AvatarGroup$OverflowEventParameters,
|
|
2545
2571
|
AvatarGroup
|
|
@@ -2783,7 +2809,11 @@ declare module "sap/ui/webc/main/Badge" {
|
|
|
2783
2809
|
sText?: string
|
|
2784
2810
|
): this;
|
|
2785
2811
|
}
|
|
2786
|
-
|
|
2812
|
+
/**
|
|
2813
|
+
* Describes the settings that can be provided to the Badge constructor.
|
|
2814
|
+
*
|
|
2815
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
2816
|
+
*/
|
|
2787
2817
|
export interface $BadgeSettings extends $WebComponentSettings {
|
|
2788
2818
|
/**
|
|
2789
2819
|
* Defines the color scheme of the component. There are 10 predefined schemes. To use one you can set a
|
|
@@ -3173,7 +3203,11 @@ declare module "sap/ui/webc/main/Breadcrumbs" {
|
|
|
3173
3203
|
| keyof typeof BreadcrumbsSeparatorStyle
|
|
3174
3204
|
): this;
|
|
3175
3205
|
}
|
|
3176
|
-
|
|
3206
|
+
/**
|
|
3207
|
+
* Describes the settings that can be provided to the Breadcrumbs constructor.
|
|
3208
|
+
*
|
|
3209
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
3210
|
+
*/
|
|
3177
3211
|
export interface $BreadcrumbsSettings extends $WebComponentSettings {
|
|
3178
3212
|
/**
|
|
3179
3213
|
* Defines the visual indication and behavior of the breadcrumbs. Available options are `Standard` (by default)
|
|
@@ -3225,6 +3259,9 @@ declare module "sap/ui/webc/main/Breadcrumbs" {
|
|
|
3225
3259
|
itemClick?: (oEvent: Breadcrumbs$ItemClickEvent) => void;
|
|
3226
3260
|
}
|
|
3227
3261
|
|
|
3262
|
+
/**
|
|
3263
|
+
* Parameters of the Breadcrumbs#itemClick event.
|
|
3264
|
+
*/
|
|
3228
3265
|
export interface Breadcrumbs$ItemClickEventParameters {
|
|
3229
3266
|
/**
|
|
3230
3267
|
* The clicked item.
|
|
@@ -3252,6 +3289,9 @@ declare module "sap/ui/webc/main/Breadcrumbs" {
|
|
|
3252
3289
|
shiftKey?: boolean;
|
|
3253
3290
|
}
|
|
3254
3291
|
|
|
3292
|
+
/**
|
|
3293
|
+
* Event object of the Breadcrumbs#itemClick event.
|
|
3294
|
+
*/
|
|
3255
3295
|
export type Breadcrumbs$ItemClickEvent = Event<
|
|
3256
3296
|
Breadcrumbs$ItemClickEventParameters,
|
|
3257
3297
|
Breadcrumbs
|
|
@@ -3483,7 +3523,11 @@ declare module "sap/ui/webc/main/BreadcrumbsItem" {
|
|
|
3483
3523
|
sText?: string
|
|
3484
3524
|
): this;
|
|
3485
3525
|
}
|
|
3486
|
-
|
|
3526
|
+
/**
|
|
3527
|
+
* Describes the settings that can be provided to the BreadcrumbsItem constructor.
|
|
3528
|
+
*
|
|
3529
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
3530
|
+
*/
|
|
3487
3531
|
export interface $BreadcrumbsItemSettings extends $WebComponentSettings {
|
|
3488
3532
|
/**
|
|
3489
3533
|
* Defines the accessible ARIA name of the item.
|
|
@@ -3876,7 +3920,11 @@ declare module "sap/ui/webc/main/BusyIndicator" {
|
|
|
3876
3920
|
sWidth: CSSSize
|
|
3877
3921
|
): this;
|
|
3878
3922
|
}
|
|
3879
|
-
|
|
3923
|
+
/**
|
|
3924
|
+
* Describes the settings that can be provided to the BusyIndicator constructor.
|
|
3925
|
+
*
|
|
3926
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
3927
|
+
*/
|
|
3880
3928
|
export interface $BusyIndicatorSettings extends $WebComponentSettings {
|
|
3881
3929
|
/**
|
|
3882
3930
|
* Defines if the busy indicator is visible on the screen. By default it is not.
|
|
@@ -4492,7 +4540,11 @@ declare module "sap/ui/webc/main/Button" {
|
|
|
4492
4540
|
sWidth: CSSSize
|
|
4493
4541
|
): this;
|
|
4494
4542
|
}
|
|
4495
|
-
|
|
4543
|
+
/**
|
|
4544
|
+
* Describes the settings that can be provided to the Button constructor.
|
|
4545
|
+
*
|
|
4546
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
4547
|
+
*/
|
|
4496
4548
|
export interface $ButtonSettings extends $WebComponentSettings {
|
|
4497
4549
|
/**
|
|
4498
4550
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -4591,8 +4643,14 @@ declare module "sap/ui/webc/main/Button" {
|
|
|
4591
4643
|
click?: (oEvent: Event) => void;
|
|
4592
4644
|
}
|
|
4593
4645
|
|
|
4646
|
+
/**
|
|
4647
|
+
* Parameters of the Button#click event.
|
|
4648
|
+
*/
|
|
4594
4649
|
export interface Button$ClickEventParameters {}
|
|
4595
4650
|
|
|
4651
|
+
/**
|
|
4652
|
+
* Event object of the Button#click event.
|
|
4653
|
+
*/
|
|
4596
4654
|
export type Button$ClickEvent = Event<Button$ClickEventParameters, Button>;
|
|
4597
4655
|
}
|
|
4598
4656
|
|
|
@@ -5167,7 +5225,11 @@ declare module "sap/ui/webc/main/Calendar" {
|
|
|
5167
5225
|
| keyof typeof CalendarSelectionMode
|
|
5168
5226
|
): this;
|
|
5169
5227
|
}
|
|
5170
|
-
|
|
5228
|
+
/**
|
|
5229
|
+
* Describes the settings that can be provided to the Calendar constructor.
|
|
5230
|
+
*
|
|
5231
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5232
|
+
*/
|
|
5171
5233
|
export interface $CalendarSettings extends $WebComponentSettings {
|
|
5172
5234
|
/**
|
|
5173
5235
|
* Determines the format, displayed in the input field.
|
|
@@ -5242,6 +5304,9 @@ declare module "sap/ui/webc/main/Calendar" {
|
|
|
5242
5304
|
selectedDatesChange?: (oEvent: Calendar$SelectedDatesChangeEvent) => void;
|
|
5243
5305
|
}
|
|
5244
5306
|
|
|
5307
|
+
/**
|
|
5308
|
+
* Parameters of the Calendar#selectedDatesChange event.
|
|
5309
|
+
*/
|
|
5245
5310
|
export interface Calendar$SelectedDatesChangeEventParameters {
|
|
5246
5311
|
/**
|
|
5247
5312
|
* The selected dates
|
|
@@ -5254,6 +5319,9 @@ declare module "sap/ui/webc/main/Calendar" {
|
|
|
5254
5319
|
dates?: any[];
|
|
5255
5320
|
}
|
|
5256
5321
|
|
|
5322
|
+
/**
|
|
5323
|
+
* Event object of the Calendar#selectedDatesChange event.
|
|
5324
|
+
*/
|
|
5257
5325
|
export type Calendar$SelectedDatesChangeEvent = Event<
|
|
5258
5326
|
Calendar$SelectedDatesChangeEventParameters,
|
|
5259
5327
|
Calendar
|
|
@@ -5374,7 +5442,11 @@ declare module "sap/ui/webc/main/CalendarDate" {
|
|
|
5374
5442
|
sValue: string
|
|
5375
5443
|
): this;
|
|
5376
5444
|
}
|
|
5377
|
-
|
|
5445
|
+
/**
|
|
5446
|
+
* Describes the settings that can be provided to the CalendarDate constructor.
|
|
5447
|
+
*
|
|
5448
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5449
|
+
*/
|
|
5378
5450
|
export interface $CalendarDateSettings extends $WebComponentSettings {
|
|
5379
5451
|
/**
|
|
5380
5452
|
* The date formatted according to the `formatPattern` property of the `sap.ui.webc.main.Calendar` that
|
|
@@ -5753,7 +5825,11 @@ declare module "sap/ui/webc/main/Card" {
|
|
|
5753
5825
|
sWidth: CSSSize
|
|
5754
5826
|
): this;
|
|
5755
5827
|
}
|
|
5756
|
-
|
|
5828
|
+
/**
|
|
5829
|
+
* Describes the settings that can be provided to the Card constructor.
|
|
5830
|
+
*
|
|
5831
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5832
|
+
*/
|
|
5757
5833
|
export interface $CardSettings extends $WebComponentSettings {
|
|
5758
5834
|
/**
|
|
5759
5835
|
* Defines the accessible name of the component, which is used as the name of the card region and should
|
|
@@ -6255,7 +6331,11 @@ declare module "sap/ui/webc/main/CardHeader" {
|
|
|
6255
6331
|
sTitleText?: string
|
|
6256
6332
|
): this;
|
|
6257
6333
|
}
|
|
6258
|
-
|
|
6334
|
+
/**
|
|
6335
|
+
* Describes the settings that can be provided to the CardHeader constructor.
|
|
6336
|
+
*
|
|
6337
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
6338
|
+
*/
|
|
6259
6339
|
export interface $CardHeaderSettings extends $WebComponentSettings {
|
|
6260
6340
|
/**
|
|
6261
6341
|
* Defines if the component would be interactive, e.g gets hover effect, gets focus outline and `click`
|
|
@@ -6296,8 +6376,14 @@ declare module "sap/ui/webc/main/CardHeader" {
|
|
|
6296
6376
|
click?: (oEvent: Event) => void;
|
|
6297
6377
|
}
|
|
6298
6378
|
|
|
6379
|
+
/**
|
|
6380
|
+
* Parameters of the CardHeader#click event.
|
|
6381
|
+
*/
|
|
6299
6382
|
export interface CardHeader$ClickEventParameters {}
|
|
6300
6383
|
|
|
6384
|
+
/**
|
|
6385
|
+
* Event object of the CardHeader#click event.
|
|
6386
|
+
*/
|
|
6301
6387
|
export type CardHeader$ClickEvent = Event<
|
|
6302
6388
|
CardHeader$ClickEventParameters,
|
|
6303
6389
|
CardHeader
|
|
@@ -6960,7 +7046,11 @@ declare module "sap/ui/webc/main/Carousel" {
|
|
|
6960
7046
|
| keyof typeof CarouselPageIndicatorStyle
|
|
6961
7047
|
): this;
|
|
6962
7048
|
}
|
|
6963
|
-
|
|
7049
|
+
/**
|
|
7050
|
+
* Describes the settings that can be provided to the Carousel constructor.
|
|
7051
|
+
*
|
|
7052
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7053
|
+
*/
|
|
6964
7054
|
export interface $CarouselSettings extends $WebComponentSettings {
|
|
6965
7055
|
/**
|
|
6966
7056
|
* Defines the position of arrows.
|
|
@@ -7059,6 +7149,9 @@ declare module "sap/ui/webc/main/Carousel" {
|
|
|
7059
7149
|
navigate?: (oEvent: Carousel$NavigateEvent) => void;
|
|
7060
7150
|
}
|
|
7061
7151
|
|
|
7152
|
+
/**
|
|
7153
|
+
* Parameters of the Carousel#navigate event.
|
|
7154
|
+
*/
|
|
7062
7155
|
export interface Carousel$NavigateEventParameters {
|
|
7063
7156
|
/**
|
|
7064
7157
|
* the current selected index
|
|
@@ -7066,6 +7159,9 @@ declare module "sap/ui/webc/main/Carousel" {
|
|
|
7066
7159
|
selectedIndex?: int;
|
|
7067
7160
|
}
|
|
7068
7161
|
|
|
7162
|
+
/**
|
|
7163
|
+
* Event object of the Carousel#navigate event.
|
|
7164
|
+
*/
|
|
7069
7165
|
export type Carousel$NavigateEvent = Event<
|
|
7070
7166
|
Carousel$NavigateEventParameters,
|
|
7071
7167
|
Carousel
|
|
@@ -7686,7 +7782,11 @@ declare module "sap/ui/webc/main/CheckBox" {
|
|
|
7686
7782
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
7687
7783
|
): this;
|
|
7688
7784
|
}
|
|
7689
|
-
|
|
7785
|
+
/**
|
|
7786
|
+
* Describes the settings that can be provided to the CheckBox constructor.
|
|
7787
|
+
*
|
|
7788
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7789
|
+
*/
|
|
7690
7790
|
export interface $CheckBoxSettings extends $WebComponentSettings {
|
|
7691
7791
|
/**
|
|
7692
7792
|
* Defines the accessible ARIA name of the component.
|
|
@@ -7790,8 +7890,14 @@ declare module "sap/ui/webc/main/CheckBox" {
|
|
|
7790
7890
|
change?: (oEvent: Event) => void;
|
|
7791
7891
|
}
|
|
7792
7892
|
|
|
7893
|
+
/**
|
|
7894
|
+
* Parameters of the CheckBox#change event.
|
|
7895
|
+
*/
|
|
7793
7896
|
export interface CheckBox$ChangeEventParameters {}
|
|
7794
7897
|
|
|
7898
|
+
/**
|
|
7899
|
+
* Event object of the CheckBox#change event.
|
|
7900
|
+
*/
|
|
7795
7901
|
export type CheckBox$ChangeEvent = Event<
|
|
7796
7902
|
CheckBox$ChangeEventParameters,
|
|
7797
7903
|
CheckBox
|
|
@@ -8044,7 +8150,11 @@ declare module "sap/ui/webc/main/ColorPalette" {
|
|
|
8044
8150
|
vColor: int | string | IColorPaletteItem
|
|
8045
8151
|
): IColorPaletteItem | null;
|
|
8046
8152
|
}
|
|
8047
|
-
|
|
8153
|
+
/**
|
|
8154
|
+
* Describes the settings that can be provided to the ColorPalette constructor.
|
|
8155
|
+
*
|
|
8156
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8157
|
+
*/
|
|
8048
8158
|
export interface $ColorPaletteSettings extends $WebComponentSettings {
|
|
8049
8159
|
/**
|
|
8050
8160
|
* Defines the `sap.ui.webc.main.ColorPaletteItem` elements.
|
|
@@ -8061,6 +8171,9 @@ declare module "sap/ui/webc/main/ColorPalette" {
|
|
|
8061
8171
|
itemClick?: (oEvent: ColorPalette$ItemClickEvent) => void;
|
|
8062
8172
|
}
|
|
8063
8173
|
|
|
8174
|
+
/**
|
|
8175
|
+
* Parameters of the ColorPalette#itemClick event.
|
|
8176
|
+
*/
|
|
8064
8177
|
export interface ColorPalette$ItemClickEventParameters {
|
|
8065
8178
|
/**
|
|
8066
8179
|
* the selected color
|
|
@@ -8068,6 +8181,9 @@ declare module "sap/ui/webc/main/ColorPalette" {
|
|
|
8068
8181
|
color?: string;
|
|
8069
8182
|
}
|
|
8070
8183
|
|
|
8184
|
+
/**
|
|
8185
|
+
* Event object of the ColorPalette#itemClick event.
|
|
8186
|
+
*/
|
|
8071
8187
|
export type ColorPalette$ItemClickEvent = Event<
|
|
8072
8188
|
ColorPalette$ItemClickEventParameters,
|
|
8073
8189
|
ColorPalette
|
|
@@ -8192,7 +8308,11 @@ declare module "sap/ui/webc/main/ColorPaletteItem" {
|
|
|
8192
8308
|
sValue: CSSColor
|
|
8193
8309
|
): this;
|
|
8194
8310
|
}
|
|
8195
|
-
|
|
8311
|
+
/**
|
|
8312
|
+
* Describes the settings that can be provided to the ColorPaletteItem constructor.
|
|
8313
|
+
*
|
|
8314
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8315
|
+
*/
|
|
8196
8316
|
export interface $ColorPaletteItemSettings extends $WebComponentSettings {
|
|
8197
8317
|
/**
|
|
8198
8318
|
* Defines the colour of the component.
|
|
@@ -8586,7 +8706,11 @@ declare module "sap/ui/webc/main/ColorPalettePopover" {
|
|
|
8586
8706
|
opener: HTMLElement
|
|
8587
8707
|
): void;
|
|
8588
8708
|
}
|
|
8589
|
-
|
|
8709
|
+
/**
|
|
8710
|
+
* Describes the settings that can be provided to the ColorPalettePopover constructor.
|
|
8711
|
+
*
|
|
8712
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
8713
|
+
*/
|
|
8590
8714
|
export interface $ColorPalettePopoverSettings extends $WebComponentSettings {
|
|
8591
8715
|
/**
|
|
8592
8716
|
* Defines the default color of the component. **Note:** The default color should be a part of the ColorPalette
|
|
@@ -8625,6 +8749,9 @@ declare module "sap/ui/webc/main/ColorPalettePopover" {
|
|
|
8625
8749
|
itemClick?: (oEvent: ColorPalettePopover$ItemClickEvent) => void;
|
|
8626
8750
|
}
|
|
8627
8751
|
|
|
8752
|
+
/**
|
|
8753
|
+
* Parameters of the ColorPalettePopover#itemClick event.
|
|
8754
|
+
*/
|
|
8628
8755
|
export interface ColorPalettePopover$ItemClickEventParameters {
|
|
8629
8756
|
/**
|
|
8630
8757
|
* the selected color
|
|
@@ -8632,6 +8759,9 @@ declare module "sap/ui/webc/main/ColorPalettePopover" {
|
|
|
8632
8759
|
color?: string;
|
|
8633
8760
|
}
|
|
8634
8761
|
|
|
8762
|
+
/**
|
|
8763
|
+
* Event object of the ColorPalettePopover#itemClick event.
|
|
8764
|
+
*/
|
|
8635
8765
|
export type ColorPalettePopover$ItemClickEvent = Event<
|
|
8636
8766
|
ColorPalettePopover$ItemClickEventParameters,
|
|
8637
8767
|
ColorPalettePopover
|
|
@@ -8839,7 +8969,11 @@ declare module "sap/ui/webc/main/ColorPicker" {
|
|
|
8839
8969
|
sColor: CSSColor
|
|
8840
8970
|
): this;
|
|
8841
8971
|
}
|
|
8842
|
-
|
|
8972
|
+
/**
|
|
8973
|
+
* Describes the settings that can be provided to the ColorPicker constructor.
|
|
8974
|
+
*
|
|
8975
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8976
|
+
*/
|
|
8843
8977
|
export interface $ColorPickerSettings extends $WebComponentSettings {
|
|
8844
8978
|
/**
|
|
8845
8979
|
* Defines the currently selected color of the component.
|
|
@@ -8854,8 +8988,14 @@ declare module "sap/ui/webc/main/ColorPicker" {
|
|
|
8854
8988
|
change?: (oEvent: Event) => void;
|
|
8855
8989
|
}
|
|
8856
8990
|
|
|
8991
|
+
/**
|
|
8992
|
+
* Parameters of the ColorPicker#change event.
|
|
8993
|
+
*/
|
|
8857
8994
|
export interface ColorPicker$ChangeEventParameters {}
|
|
8858
8995
|
|
|
8996
|
+
/**
|
|
8997
|
+
* Event object of the ColorPicker#change event.
|
|
8998
|
+
*/
|
|
8859
8999
|
export type ColorPicker$ChangeEvent = Event<
|
|
8860
9000
|
ColorPicker$ChangeEventParameters,
|
|
8861
9001
|
ColorPicker
|
|
@@ -9748,7 +9888,11 @@ declare module "sap/ui/webc/main/ComboBox" {
|
|
|
9748
9888
|
sWidth: CSSSize
|
|
9749
9889
|
): this;
|
|
9750
9890
|
}
|
|
9751
|
-
|
|
9891
|
+
/**
|
|
9892
|
+
* Describes the settings that can be provided to the ComboBox constructor.
|
|
9893
|
+
*
|
|
9894
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
9895
|
+
*/
|
|
9752
9896
|
export interface $ComboBoxSettings extends $WebComponentSettings {
|
|
9753
9897
|
/**
|
|
9754
9898
|
* Defines the accessible ARIA name of the component.
|
|
@@ -9855,20 +9999,35 @@ declare module "sap/ui/webc/main/ComboBox" {
|
|
|
9855
9999
|
selectionChange?: (oEvent: ComboBox$SelectionChangeEvent) => void;
|
|
9856
10000
|
}
|
|
9857
10001
|
|
|
10002
|
+
/**
|
|
10003
|
+
* Parameters of the ComboBox#change event.
|
|
10004
|
+
*/
|
|
9858
10005
|
export interface ComboBox$ChangeEventParameters {}
|
|
9859
10006
|
|
|
10007
|
+
/**
|
|
10008
|
+
* Event object of the ComboBox#change event.
|
|
10009
|
+
*/
|
|
9860
10010
|
export type ComboBox$ChangeEvent = Event<
|
|
9861
10011
|
ComboBox$ChangeEventParameters,
|
|
9862
10012
|
ComboBox
|
|
9863
10013
|
>;
|
|
9864
10014
|
|
|
10015
|
+
/**
|
|
10016
|
+
* Parameters of the ComboBox#input event.
|
|
10017
|
+
*/
|
|
9865
10018
|
export interface ComboBox$InputEventParameters {}
|
|
9866
10019
|
|
|
10020
|
+
/**
|
|
10021
|
+
* Event object of the ComboBox#input event.
|
|
10022
|
+
*/
|
|
9867
10023
|
export type ComboBox$InputEvent = Event<
|
|
9868
10024
|
ComboBox$InputEventParameters,
|
|
9869
10025
|
ComboBox
|
|
9870
10026
|
>;
|
|
9871
10027
|
|
|
10028
|
+
/**
|
|
10029
|
+
* Parameters of the ComboBox#selectionChange event.
|
|
10030
|
+
*/
|
|
9872
10031
|
export interface ComboBox$SelectionChangeEventParameters {
|
|
9873
10032
|
/**
|
|
9874
10033
|
* item to be selected.
|
|
@@ -9876,6 +10035,9 @@ declare module "sap/ui/webc/main/ComboBox" {
|
|
|
9876
10035
|
item?: IComboBoxItem;
|
|
9877
10036
|
}
|
|
9878
10037
|
|
|
10038
|
+
/**
|
|
10039
|
+
* Event object of the ComboBox#selectionChange event.
|
|
10040
|
+
*/
|
|
9879
10041
|
export type ComboBox$SelectionChangeEvent = Event<
|
|
9880
10042
|
ComboBox$SelectionChangeEventParameters,
|
|
9881
10043
|
ComboBox
|
|
@@ -9997,7 +10159,11 @@ declare module "sap/ui/webc/main/ComboBoxGroupItem" {
|
|
|
9997
10159
|
sText?: string
|
|
9998
10160
|
): this;
|
|
9999
10161
|
}
|
|
10000
|
-
|
|
10162
|
+
/**
|
|
10163
|
+
* Describes the settings that can be provided to the ComboBoxGroupItem constructor.
|
|
10164
|
+
*
|
|
10165
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
10166
|
+
*/
|
|
10001
10167
|
export interface $ComboBoxGroupItemSettings extends $WebComponentSettings {
|
|
10002
10168
|
/**
|
|
10003
10169
|
* Defines the text of the component.
|
|
@@ -10149,7 +10315,11 @@ declare module "sap/ui/webc/main/ComboBoxItem" {
|
|
|
10149
10315
|
sText?: string
|
|
10150
10316
|
): this;
|
|
10151
10317
|
}
|
|
10152
|
-
|
|
10318
|
+
/**
|
|
10319
|
+
* Describes the settings that can be provided to the ComboBoxItem constructor.
|
|
10320
|
+
*
|
|
10321
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10322
|
+
*/
|
|
10153
10323
|
export interface $ComboBoxItemSettings extends $WebComponentSettings {
|
|
10154
10324
|
/**
|
|
10155
10325
|
* Defines the additional text of the component.
|
|
@@ -10629,7 +10799,11 @@ declare module "sap/ui/webc/main/CustomListItem" {
|
|
|
10629
10799
|
sType?: ListItemType | keyof typeof ListItemType
|
|
10630
10800
|
): this;
|
|
10631
10801
|
}
|
|
10632
|
-
|
|
10802
|
+
/**
|
|
10803
|
+
* Describes the settings that can be provided to the CustomListItem constructor.
|
|
10804
|
+
*
|
|
10805
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10806
|
+
*/
|
|
10633
10807
|
export interface $CustomListItemSettings extends $WebComponentSettings {
|
|
10634
10808
|
/**
|
|
10635
10809
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -10695,8 +10869,14 @@ declare module "sap/ui/webc/main/CustomListItem" {
|
|
|
10695
10869
|
detailClick?: (oEvent: Event) => void;
|
|
10696
10870
|
}
|
|
10697
10871
|
|
|
10872
|
+
/**
|
|
10873
|
+
* Parameters of the CustomListItem#detailClick event.
|
|
10874
|
+
*/
|
|
10698
10875
|
export interface CustomListItem$DetailClickEventParameters {}
|
|
10699
10876
|
|
|
10877
|
+
/**
|
|
10878
|
+
* Event object of the CustomListItem#detailClick event.
|
|
10879
|
+
*/
|
|
10700
10880
|
export type CustomListItem$DetailClickEvent = Event<
|
|
10701
10881
|
CustomListItem$DetailClickEventParameters,
|
|
10702
10882
|
CustomListItem
|
|
@@ -11604,7 +11784,11 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11604
11784
|
sWidth: CSSSize
|
|
11605
11785
|
): this;
|
|
11606
11786
|
}
|
|
11607
|
-
|
|
11787
|
+
/**
|
|
11788
|
+
* Describes the settings that can be provided to the DatePicker constructor.
|
|
11789
|
+
*
|
|
11790
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
11791
|
+
*/
|
|
11608
11792
|
export interface $DatePickerSettings extends $WebComponentSettings {
|
|
11609
11793
|
/**
|
|
11610
11794
|
* Defines the aria-label attribute for the component.
|
|
@@ -11732,6 +11916,9 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11732
11916
|
input?: (oEvent: DatePicker$InputEvent) => void;
|
|
11733
11917
|
}
|
|
11734
11918
|
|
|
11919
|
+
/**
|
|
11920
|
+
* Parameters of the DatePicker#change event.
|
|
11921
|
+
*/
|
|
11735
11922
|
export interface DatePicker$ChangeEventParameters {
|
|
11736
11923
|
/**
|
|
11737
11924
|
* The submitted value.
|
|
@@ -11744,11 +11931,17 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11744
11931
|
valid?: boolean;
|
|
11745
11932
|
}
|
|
11746
11933
|
|
|
11934
|
+
/**
|
|
11935
|
+
* Event object of the DatePicker#change event.
|
|
11936
|
+
*/
|
|
11747
11937
|
export type DatePicker$ChangeEvent = Event<
|
|
11748
11938
|
DatePicker$ChangeEventParameters,
|
|
11749
11939
|
DatePicker
|
|
11750
11940
|
>;
|
|
11751
11941
|
|
|
11942
|
+
/**
|
|
11943
|
+
* Parameters of the DatePicker#input event.
|
|
11944
|
+
*/
|
|
11752
11945
|
export interface DatePicker$InputEventParameters {
|
|
11753
11946
|
/**
|
|
11754
11947
|
* The submitted value.
|
|
@@ -11761,6 +11954,9 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11761
11954
|
valid?: boolean;
|
|
11762
11955
|
}
|
|
11763
11956
|
|
|
11957
|
+
/**
|
|
11958
|
+
* Event object of the DatePicker#input event.
|
|
11959
|
+
*/
|
|
11764
11960
|
export type DatePicker$InputEvent = Event<
|
|
11765
11961
|
DatePicker$InputEventParameters,
|
|
11766
11962
|
DatePicker
|
|
@@ -12671,7 +12867,11 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12671
12867
|
sWidth: CSSSize
|
|
12672
12868
|
): this;
|
|
12673
12869
|
}
|
|
12674
|
-
|
|
12870
|
+
/**
|
|
12871
|
+
* Describes the settings that can be provided to the DateRangePicker constructor.
|
|
12872
|
+
*
|
|
12873
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
12874
|
+
*/
|
|
12675
12875
|
export interface $DateRangePickerSettings extends $WebComponentSettings {
|
|
12676
12876
|
/**
|
|
12677
12877
|
* Defines the aria-label attribute for the component.
|
|
@@ -12805,6 +13005,9 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12805
13005
|
input?: (oEvent: DateRangePicker$InputEvent) => void;
|
|
12806
13006
|
}
|
|
12807
13007
|
|
|
13008
|
+
/**
|
|
13009
|
+
* Parameters of the DateRangePicker#change event.
|
|
13010
|
+
*/
|
|
12808
13011
|
export interface DateRangePicker$ChangeEventParameters {
|
|
12809
13012
|
/**
|
|
12810
13013
|
* The submitted value.
|
|
@@ -12817,11 +13020,17 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12817
13020
|
valid?: boolean;
|
|
12818
13021
|
}
|
|
12819
13022
|
|
|
13023
|
+
/**
|
|
13024
|
+
* Event object of the DateRangePicker#change event.
|
|
13025
|
+
*/
|
|
12820
13026
|
export type DateRangePicker$ChangeEvent = Event<
|
|
12821
13027
|
DateRangePicker$ChangeEventParameters,
|
|
12822
13028
|
DateRangePicker
|
|
12823
13029
|
>;
|
|
12824
13030
|
|
|
13031
|
+
/**
|
|
13032
|
+
* Parameters of the DateRangePicker#input event.
|
|
13033
|
+
*/
|
|
12825
13034
|
export interface DateRangePicker$InputEventParameters {
|
|
12826
13035
|
/**
|
|
12827
13036
|
* The submitted value.
|
|
@@ -12834,6 +13043,9 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12834
13043
|
valid?: boolean;
|
|
12835
13044
|
}
|
|
12836
13045
|
|
|
13046
|
+
/**
|
|
13047
|
+
* Event object of the DateRangePicker#input event.
|
|
13048
|
+
*/
|
|
12837
13049
|
export type DateRangePicker$InputEvent = Event<
|
|
12838
13050
|
DateRangePicker$InputEventParameters,
|
|
12839
13051
|
DateRangePicker
|
|
@@ -13734,7 +13946,11 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
13734
13946
|
sWidth: CSSSize
|
|
13735
13947
|
): this;
|
|
13736
13948
|
}
|
|
13737
|
-
|
|
13949
|
+
/**
|
|
13950
|
+
* Describes the settings that can be provided to the DateTimePicker constructor.
|
|
13951
|
+
*
|
|
13952
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
13953
|
+
*/
|
|
13738
13954
|
export interface $DateTimePickerSettings extends $WebComponentSettings {
|
|
13739
13955
|
/**
|
|
13740
13956
|
* Defines the aria-label attribute for the component.
|
|
@@ -13862,6 +14078,9 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
13862
14078
|
input?: (oEvent: DateTimePicker$InputEvent) => void;
|
|
13863
14079
|
}
|
|
13864
14080
|
|
|
14081
|
+
/**
|
|
14082
|
+
* Parameters of the DateTimePicker#change event.
|
|
14083
|
+
*/
|
|
13865
14084
|
export interface DateTimePicker$ChangeEventParameters {
|
|
13866
14085
|
/**
|
|
13867
14086
|
* The submitted value.
|
|
@@ -13874,11 +14093,17 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
13874
14093
|
valid?: boolean;
|
|
13875
14094
|
}
|
|
13876
14095
|
|
|
14096
|
+
/**
|
|
14097
|
+
* Event object of the DateTimePicker#change event.
|
|
14098
|
+
*/
|
|
13877
14099
|
export type DateTimePicker$ChangeEvent = Event<
|
|
13878
14100
|
DateTimePicker$ChangeEventParameters,
|
|
13879
14101
|
DateTimePicker
|
|
13880
14102
|
>;
|
|
13881
14103
|
|
|
14104
|
+
/**
|
|
14105
|
+
* Parameters of the DateTimePicker#input event.
|
|
14106
|
+
*/
|
|
13882
14107
|
export interface DateTimePicker$InputEventParameters {
|
|
13883
14108
|
/**
|
|
13884
14109
|
* The submitted value.
|
|
@@ -13891,6 +14116,9 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
13891
14116
|
valid?: boolean;
|
|
13892
14117
|
}
|
|
13893
14118
|
|
|
14119
|
+
/**
|
|
14120
|
+
* Event object of the DateTimePicker#input event.
|
|
14121
|
+
*/
|
|
13894
14122
|
export type DateTimePicker$InputEvent = Event<
|
|
13895
14123
|
DateTimePicker$InputEventParameters,
|
|
13896
14124
|
DateTimePicker
|
|
@@ -15004,7 +15232,11 @@ declare module "sap/ui/webc/main/Dialog" {
|
|
|
15004
15232
|
preventInitialFocus: boolean
|
|
15005
15233
|
): void;
|
|
15006
15234
|
}
|
|
15007
|
-
|
|
15235
|
+
/**
|
|
15236
|
+
* Describes the settings that can be provided to the Dialog constructor.
|
|
15237
|
+
*
|
|
15238
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
15239
|
+
*/
|
|
15008
15240
|
export interface $DialogSettings extends $WebComponentSettings {
|
|
15009
15241
|
/**
|
|
15010
15242
|
* Defines the accessible name of the component.
|
|
@@ -15140,20 +15372,35 @@ declare module "sap/ui/webc/main/Dialog" {
|
|
|
15140
15372
|
beforeOpen?: (oEvent: Event) => void;
|
|
15141
15373
|
}
|
|
15142
15374
|
|
|
15375
|
+
/**
|
|
15376
|
+
* Parameters of the Dialog#afterClose event.
|
|
15377
|
+
*/
|
|
15143
15378
|
export interface Dialog$AfterCloseEventParameters {}
|
|
15144
15379
|
|
|
15380
|
+
/**
|
|
15381
|
+
* Event object of the Dialog#afterClose event.
|
|
15382
|
+
*/
|
|
15145
15383
|
export type Dialog$AfterCloseEvent = Event<
|
|
15146
15384
|
Dialog$AfterCloseEventParameters,
|
|
15147
15385
|
Dialog
|
|
15148
15386
|
>;
|
|
15149
15387
|
|
|
15388
|
+
/**
|
|
15389
|
+
* Parameters of the Dialog#afterOpen event.
|
|
15390
|
+
*/
|
|
15150
15391
|
export interface Dialog$AfterOpenEventParameters {}
|
|
15151
15392
|
|
|
15393
|
+
/**
|
|
15394
|
+
* Event object of the Dialog#afterOpen event.
|
|
15395
|
+
*/
|
|
15152
15396
|
export type Dialog$AfterOpenEvent = Event<
|
|
15153
15397
|
Dialog$AfterOpenEventParameters,
|
|
15154
15398
|
Dialog
|
|
15155
15399
|
>;
|
|
15156
15400
|
|
|
15401
|
+
/**
|
|
15402
|
+
* Parameters of the Dialog#beforeClose event.
|
|
15403
|
+
*/
|
|
15157
15404
|
export interface Dialog$BeforeCloseEventParameters {
|
|
15158
15405
|
/**
|
|
15159
15406
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -15161,13 +15408,22 @@ declare module "sap/ui/webc/main/Dialog" {
|
|
|
15161
15408
|
escPressed?: boolean;
|
|
15162
15409
|
}
|
|
15163
15410
|
|
|
15411
|
+
/**
|
|
15412
|
+
* Event object of the Dialog#beforeClose event.
|
|
15413
|
+
*/
|
|
15164
15414
|
export type Dialog$BeforeCloseEvent = Event<
|
|
15165
15415
|
Dialog$BeforeCloseEventParameters,
|
|
15166
15416
|
Dialog
|
|
15167
15417
|
>;
|
|
15168
15418
|
|
|
15419
|
+
/**
|
|
15420
|
+
* Parameters of the Dialog#beforeOpen event.
|
|
15421
|
+
*/
|
|
15169
15422
|
export interface Dialog$BeforeOpenEventParameters {}
|
|
15170
15423
|
|
|
15424
|
+
/**
|
|
15425
|
+
* Event object of the Dialog#beforeOpen event.
|
|
15426
|
+
*/
|
|
15171
15427
|
export type Dialog$BeforeOpenEvent = Event<
|
|
15172
15428
|
Dialog$BeforeOpenEventParameters,
|
|
15173
15429
|
Dialog
|
|
@@ -15757,7 +16013,11 @@ declare module "sap/ui/webc/main/FileUploader" {
|
|
|
15757
16013
|
sWidth: CSSSize
|
|
15758
16014
|
): this;
|
|
15759
16015
|
}
|
|
15760
|
-
|
|
16016
|
+
/**
|
|
16017
|
+
* Describes the settings that can be provided to the FileUploader constructor.
|
|
16018
|
+
*
|
|
16019
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
16020
|
+
*/
|
|
15761
16021
|
export interface $FileUploaderSettings extends $WebComponentSettings {
|
|
15762
16022
|
/**
|
|
15763
16023
|
* Comma-separated list of file types that the component should accept.
|
|
@@ -15844,6 +16104,9 @@ declare module "sap/ui/webc/main/FileUploader" {
|
|
|
15844
16104
|
change?: (oEvent: FileUploader$ChangeEvent) => void;
|
|
15845
16105
|
}
|
|
15846
16106
|
|
|
16107
|
+
/**
|
|
16108
|
+
* Parameters of the FileUploader#change event.
|
|
16109
|
+
*/
|
|
15847
16110
|
export interface FileUploader$ChangeEventParameters {
|
|
15848
16111
|
/**
|
|
15849
16112
|
* The current files.
|
|
@@ -15851,6 +16114,9 @@ declare module "sap/ui/webc/main/FileUploader" {
|
|
|
15851
16114
|
files?: FileList;
|
|
15852
16115
|
}
|
|
15853
16116
|
|
|
16117
|
+
/**
|
|
16118
|
+
* Event object of the FileUploader#change event.
|
|
16119
|
+
*/
|
|
15854
16120
|
export type FileUploader$ChangeEvent = Event<
|
|
15855
16121
|
FileUploader$ChangeEventParameters,
|
|
15856
16122
|
FileUploader
|
|
@@ -16032,7 +16298,11 @@ declare module "sap/ui/webc/main/GroupHeaderListItem" {
|
|
|
16032
16298
|
sText?: string
|
|
16033
16299
|
): this;
|
|
16034
16300
|
}
|
|
16035
|
-
|
|
16301
|
+
/**
|
|
16302
|
+
* Describes the settings that can be provided to the GroupHeaderListItem constructor.
|
|
16303
|
+
*
|
|
16304
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
16305
|
+
*/
|
|
16036
16306
|
export interface $GroupHeaderListItemSettings extends $WebComponentSettings {
|
|
16037
16307
|
/**
|
|
16038
16308
|
* Defines the text alternative of the component. Note: If not provided a default text alternative will
|
|
@@ -16646,7 +16916,11 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
16646
16916
|
sWidth: CSSSize
|
|
16647
16917
|
): this;
|
|
16648
16918
|
}
|
|
16649
|
-
|
|
16919
|
+
/**
|
|
16920
|
+
* Describes the settings that can be provided to the Icon constructor.
|
|
16921
|
+
*
|
|
16922
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
16923
|
+
*/
|
|
16650
16924
|
export interface $IconSettings extends $WebComponentSettings {
|
|
16651
16925
|
/**
|
|
16652
16926
|
* Defines the text alternative of the component. If not provided a default text alternative will be set,
|
|
@@ -16753,8 +17027,14 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
16753
17027
|
click?: (oEvent: Event) => void;
|
|
16754
17028
|
}
|
|
16755
17029
|
|
|
17030
|
+
/**
|
|
17031
|
+
* Parameters of the Icon#click event.
|
|
17032
|
+
*/
|
|
16756
17033
|
export interface Icon$ClickEventParameters {}
|
|
16757
17034
|
|
|
17035
|
+
/**
|
|
17036
|
+
* Event object of the Icon#click event.
|
|
17037
|
+
*/
|
|
16758
17038
|
export type Icon$ClickEvent = Event<Icon$ClickEventParameters, Icon>;
|
|
16759
17039
|
}
|
|
16760
17040
|
|
|
@@ -17884,7 +18164,11 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
17884
18164
|
sWidth: CSSSize
|
|
17885
18165
|
): this;
|
|
17886
18166
|
}
|
|
17887
|
-
|
|
18167
|
+
/**
|
|
18168
|
+
* Describes the settings that can be provided to the Input constructor.
|
|
18169
|
+
*
|
|
18170
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
18171
|
+
*/
|
|
17888
18172
|
export interface $InputSettings extends $WebComponentSettings {
|
|
17889
18173
|
/**
|
|
17890
18174
|
* Defines the accessible ARIA name of the component.
|
|
@@ -18032,14 +18316,29 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18032
18316
|
suggestionItemSelect?: (oEvent: Input$SuggestionItemSelectEvent) => void;
|
|
18033
18317
|
}
|
|
18034
18318
|
|
|
18319
|
+
/**
|
|
18320
|
+
* Parameters of the Input#change event.
|
|
18321
|
+
*/
|
|
18035
18322
|
export interface Input$ChangeEventParameters {}
|
|
18036
18323
|
|
|
18324
|
+
/**
|
|
18325
|
+
* Event object of the Input#change event.
|
|
18326
|
+
*/
|
|
18037
18327
|
export type Input$ChangeEvent = Event<Input$ChangeEventParameters, Input>;
|
|
18038
18328
|
|
|
18329
|
+
/**
|
|
18330
|
+
* Parameters of the Input#input event.
|
|
18331
|
+
*/
|
|
18039
18332
|
export interface Input$InputEventParameters {}
|
|
18040
18333
|
|
|
18334
|
+
/**
|
|
18335
|
+
* Event object of the Input#input event.
|
|
18336
|
+
*/
|
|
18041
18337
|
export type Input$InputEvent = Event<Input$InputEventParameters, Input>;
|
|
18042
18338
|
|
|
18339
|
+
/**
|
|
18340
|
+
* Parameters of the Input#suggestionItemPreview event.
|
|
18341
|
+
*/
|
|
18043
18342
|
export interface Input$SuggestionItemPreviewEventParameters {
|
|
18044
18343
|
/**
|
|
18045
18344
|
* The previewed suggestion item.
|
|
@@ -18052,11 +18351,17 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18052
18351
|
targetRef?: HTMLElement;
|
|
18053
18352
|
}
|
|
18054
18353
|
|
|
18354
|
+
/**
|
|
18355
|
+
* Event object of the Input#suggestionItemPreview event.
|
|
18356
|
+
*/
|
|
18055
18357
|
export type Input$SuggestionItemPreviewEvent = Event<
|
|
18056
18358
|
Input$SuggestionItemPreviewEventParameters,
|
|
18057
18359
|
Input
|
|
18058
18360
|
>;
|
|
18059
18361
|
|
|
18362
|
+
/**
|
|
18363
|
+
* Parameters of the Input#suggestionItemSelect event.
|
|
18364
|
+
*/
|
|
18060
18365
|
export interface Input$SuggestionItemSelectEventParameters {
|
|
18061
18366
|
/**
|
|
18062
18367
|
* The selected item.
|
|
@@ -18064,6 +18369,9 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18064
18369
|
item?: HTMLElement;
|
|
18065
18370
|
}
|
|
18066
18371
|
|
|
18372
|
+
/**
|
|
18373
|
+
* Event object of the Input#suggestionItemSelect event.
|
|
18374
|
+
*/
|
|
18067
18375
|
export type Input$SuggestionItemSelectEvent = Event<
|
|
18068
18376
|
Input$SuggestionItemSelectEventParameters,
|
|
18069
18377
|
Input
|
|
@@ -18339,7 +18647,11 @@ declare module "sap/ui/webc/main/Label" {
|
|
|
18339
18647
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
18340
18648
|
): this;
|
|
18341
18649
|
}
|
|
18342
|
-
|
|
18650
|
+
/**
|
|
18651
|
+
* Describes the settings that can be provided to the Label constructor.
|
|
18652
|
+
*
|
|
18653
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
18654
|
+
*/
|
|
18343
18655
|
export interface $LabelSettings extends $WebComponentSettings {
|
|
18344
18656
|
/**
|
|
18345
18657
|
* Defines whether an asterisk character is added to the component text.
|
|
@@ -18942,7 +19254,11 @@ declare module "sap/ui/webc/main/Link" {
|
|
|
18942
19254
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
18943
19255
|
): this;
|
|
18944
19256
|
}
|
|
18945
|
-
|
|
19257
|
+
/**
|
|
19258
|
+
* Describes the settings that can be provided to the Link constructor.
|
|
19259
|
+
*
|
|
19260
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
19261
|
+
*/
|
|
18946
19262
|
export interface $LinkSettings extends $WebComponentSettings {
|
|
18947
19263
|
/**
|
|
18948
19264
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -19042,6 +19358,9 @@ declare module "sap/ui/webc/main/Link" {
|
|
|
19042
19358
|
click?: (oEvent: Link$ClickEvent) => void;
|
|
19043
19359
|
}
|
|
19044
19360
|
|
|
19361
|
+
/**
|
|
19362
|
+
* Parameters of the Link#click event.
|
|
19363
|
+
*/
|
|
19045
19364
|
export interface Link$ClickEventParameters {
|
|
19046
19365
|
/**
|
|
19047
19366
|
* Returns whether the "ALT" key was pressed when the event was triggered.
|
|
@@ -19064,6 +19383,9 @@ declare module "sap/ui/webc/main/Link" {
|
|
|
19064
19383
|
shiftKey?: boolean;
|
|
19065
19384
|
}
|
|
19066
19385
|
|
|
19386
|
+
/**
|
|
19387
|
+
* Event object of the Link#click event.
|
|
19388
|
+
*/
|
|
19067
19389
|
export type Link$ClickEvent = Event<Link$ClickEventParameters, Link>;
|
|
19068
19390
|
}
|
|
19069
19391
|
|
|
@@ -20313,7 +20635,11 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20313
20635
|
sWidth: CSSSize
|
|
20314
20636
|
): this;
|
|
20315
20637
|
}
|
|
20316
|
-
|
|
20638
|
+
/**
|
|
20639
|
+
* Describes the settings that can be provided to the List constructor.
|
|
20640
|
+
*
|
|
20641
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
20642
|
+
*/
|
|
20317
20643
|
export interface $ListSettings extends $WebComponentSettings {
|
|
20318
20644
|
/**
|
|
20319
20645
|
* Defines the accessible name of the component.
|
|
@@ -20477,6 +20803,9 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20477
20803
|
selectionChange?: (oEvent: List$SelectionChangeEvent) => void;
|
|
20478
20804
|
}
|
|
20479
20805
|
|
|
20806
|
+
/**
|
|
20807
|
+
* Parameters of the List#itemClick event.
|
|
20808
|
+
*/
|
|
20480
20809
|
export interface List$ItemClickEventParameters {
|
|
20481
20810
|
/**
|
|
20482
20811
|
* The clicked item.
|
|
@@ -20484,8 +20813,14 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20484
20813
|
item?: HTMLElement;
|
|
20485
20814
|
}
|
|
20486
20815
|
|
|
20816
|
+
/**
|
|
20817
|
+
* Event object of the List#itemClick event.
|
|
20818
|
+
*/
|
|
20487
20819
|
export type List$ItemClickEvent = Event<List$ItemClickEventParameters, List>;
|
|
20488
20820
|
|
|
20821
|
+
/**
|
|
20822
|
+
* Parameters of the List#itemClose event.
|
|
20823
|
+
*/
|
|
20489
20824
|
export interface List$ItemCloseEventParameters {
|
|
20490
20825
|
/**
|
|
20491
20826
|
* the item about to be closed.
|
|
@@ -20493,8 +20828,14 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20493
20828
|
item?: HTMLElement;
|
|
20494
20829
|
}
|
|
20495
20830
|
|
|
20831
|
+
/**
|
|
20832
|
+
* Event object of the List#itemClose event.
|
|
20833
|
+
*/
|
|
20496
20834
|
export type List$ItemCloseEvent = Event<List$ItemCloseEventParameters, List>;
|
|
20497
20835
|
|
|
20836
|
+
/**
|
|
20837
|
+
* Parameters of the List#itemDelete event.
|
|
20838
|
+
*/
|
|
20498
20839
|
export interface List$ItemDeleteEventParameters {
|
|
20499
20840
|
/**
|
|
20500
20841
|
* the deleted item.
|
|
@@ -20502,11 +20843,17 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20502
20843
|
item?: HTMLElement;
|
|
20503
20844
|
}
|
|
20504
20845
|
|
|
20846
|
+
/**
|
|
20847
|
+
* Event object of the List#itemDelete event.
|
|
20848
|
+
*/
|
|
20505
20849
|
export type List$ItemDeleteEvent = Event<
|
|
20506
20850
|
List$ItemDeleteEventParameters,
|
|
20507
20851
|
List
|
|
20508
20852
|
>;
|
|
20509
20853
|
|
|
20854
|
+
/**
|
|
20855
|
+
* Parameters of the List#itemToggle event.
|
|
20856
|
+
*/
|
|
20510
20857
|
export interface List$ItemToggleEventParameters {
|
|
20511
20858
|
/**
|
|
20512
20859
|
* the toggled item.
|
|
@@ -20514,15 +20861,27 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20514
20861
|
item?: HTMLElement;
|
|
20515
20862
|
}
|
|
20516
20863
|
|
|
20864
|
+
/**
|
|
20865
|
+
* Event object of the List#itemToggle event.
|
|
20866
|
+
*/
|
|
20517
20867
|
export type List$ItemToggleEvent = Event<
|
|
20518
20868
|
List$ItemToggleEventParameters,
|
|
20519
20869
|
List
|
|
20520
20870
|
>;
|
|
20521
20871
|
|
|
20872
|
+
/**
|
|
20873
|
+
* Parameters of the List#loadMore event.
|
|
20874
|
+
*/
|
|
20522
20875
|
export interface List$LoadMoreEventParameters {}
|
|
20523
20876
|
|
|
20877
|
+
/**
|
|
20878
|
+
* Event object of the List#loadMore event.
|
|
20879
|
+
*/
|
|
20524
20880
|
export type List$LoadMoreEvent = Event<List$LoadMoreEventParameters, List>;
|
|
20525
20881
|
|
|
20882
|
+
/**
|
|
20883
|
+
* Parameters of the List#selectionChange event.
|
|
20884
|
+
*/
|
|
20526
20885
|
export interface List$SelectionChangeEventParameters {
|
|
20527
20886
|
/**
|
|
20528
20887
|
* An array of the selected items.
|
|
@@ -20535,6 +20894,9 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20535
20894
|
previouslySelectedItems?: any[];
|
|
20536
20895
|
}
|
|
20537
20896
|
|
|
20897
|
+
/**
|
|
20898
|
+
* Event object of the List#selectionChange event.
|
|
20899
|
+
*/
|
|
20538
20900
|
export type List$SelectionChangeEvent = Event<
|
|
20539
20901
|
List$SelectionChangeEventParameters,
|
|
20540
20902
|
List
|
|
@@ -21282,7 +21644,11 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21282
21644
|
opener: HTMLElement
|
|
21283
21645
|
): void;
|
|
21284
21646
|
}
|
|
21285
|
-
|
|
21647
|
+
/**
|
|
21648
|
+
* Describes the settings that can be provided to the Menu constructor.
|
|
21649
|
+
*
|
|
21650
|
+
* @experimental (since 1.102.0) - This control is experimental and its API might change significantly.
|
|
21651
|
+
*/
|
|
21286
21652
|
export interface $MenuSettings extends $WebComponentSettings {
|
|
21287
21653
|
/**
|
|
21288
21654
|
* Defines if a loading indicator would be displayed inside the corresponding ui5-menu popover.
|
|
@@ -21346,17 +21712,32 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21346
21712
|
itemClick?: (oEvent: Menu$ItemClickEvent) => void;
|
|
21347
21713
|
}
|
|
21348
21714
|
|
|
21715
|
+
/**
|
|
21716
|
+
* Parameters of the Menu#afterClose event.
|
|
21717
|
+
*/
|
|
21349
21718
|
export interface Menu$AfterCloseEventParameters {}
|
|
21350
21719
|
|
|
21720
|
+
/**
|
|
21721
|
+
* Event object of the Menu#afterClose event.
|
|
21722
|
+
*/
|
|
21351
21723
|
export type Menu$AfterCloseEvent = Event<
|
|
21352
21724
|
Menu$AfterCloseEventParameters,
|
|
21353
21725
|
Menu
|
|
21354
21726
|
>;
|
|
21355
21727
|
|
|
21728
|
+
/**
|
|
21729
|
+
* Parameters of the Menu#afterOpen event.
|
|
21730
|
+
*/
|
|
21356
21731
|
export interface Menu$AfterOpenEventParameters {}
|
|
21357
21732
|
|
|
21733
|
+
/**
|
|
21734
|
+
* Event object of the Menu#afterOpen event.
|
|
21735
|
+
*/
|
|
21358
21736
|
export type Menu$AfterOpenEvent = Event<Menu$AfterOpenEventParameters, Menu>;
|
|
21359
21737
|
|
|
21738
|
+
/**
|
|
21739
|
+
* Parameters of the Menu#beforeClose event.
|
|
21740
|
+
*/
|
|
21360
21741
|
export interface Menu$BeforeCloseEventParameters {
|
|
21361
21742
|
/**
|
|
21362
21743
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -21364,11 +21745,17 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21364
21745
|
escPressed?: boolean;
|
|
21365
21746
|
}
|
|
21366
21747
|
|
|
21748
|
+
/**
|
|
21749
|
+
* Event object of the Menu#beforeClose event.
|
|
21750
|
+
*/
|
|
21367
21751
|
export type Menu$BeforeCloseEvent = Event<
|
|
21368
21752
|
Menu$BeforeCloseEventParameters,
|
|
21369
21753
|
Menu
|
|
21370
21754
|
>;
|
|
21371
21755
|
|
|
21756
|
+
/**
|
|
21757
|
+
* Parameters of the Menu#beforeOpen event.
|
|
21758
|
+
*/
|
|
21372
21759
|
export interface Menu$BeforeOpenEventParameters {
|
|
21373
21760
|
/**
|
|
21374
21761
|
* The `sap.ui.webc.main.MenuItem` that triggers opening of the sub-menu or undefined when fired upon root
|
|
@@ -21377,11 +21764,17 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21377
21764
|
item?: HTMLElement;
|
|
21378
21765
|
}
|
|
21379
21766
|
|
|
21767
|
+
/**
|
|
21768
|
+
* Event object of the Menu#beforeOpen event.
|
|
21769
|
+
*/
|
|
21380
21770
|
export type Menu$BeforeOpenEvent = Event<
|
|
21381
21771
|
Menu$BeforeOpenEventParameters,
|
|
21382
21772
|
Menu
|
|
21383
21773
|
>;
|
|
21384
21774
|
|
|
21775
|
+
/**
|
|
21776
|
+
* Parameters of the Menu#itemClick event.
|
|
21777
|
+
*/
|
|
21385
21778
|
export interface Menu$ItemClickEventParameters {
|
|
21386
21779
|
/**
|
|
21387
21780
|
* The currently clicked menu item.
|
|
@@ -21394,6 +21787,9 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21394
21787
|
text?: string;
|
|
21395
21788
|
}
|
|
21396
21789
|
|
|
21790
|
+
/**
|
|
21791
|
+
* Event object of the Menu#itemClick event.
|
|
21792
|
+
*/
|
|
21397
21793
|
export type Menu$ItemClickEvent = Event<Menu$ItemClickEventParameters, Menu>;
|
|
21398
21794
|
}
|
|
21399
21795
|
|
|
@@ -21819,7 +22215,11 @@ declare module "sap/ui/webc/main/MenuItem" {
|
|
|
21819
22215
|
sText?: string
|
|
21820
22216
|
): this;
|
|
21821
22217
|
}
|
|
21822
|
-
|
|
22218
|
+
/**
|
|
22219
|
+
* Describes the settings that can be provided to the MenuItem constructor.
|
|
22220
|
+
*
|
|
22221
|
+
* @experimental (since 1.102.0) - This control is experimental and its API might change significantly.
|
|
22222
|
+
*/
|
|
21823
22223
|
export interface $MenuItemSettings extends $WebComponentSettings {
|
|
21824
22224
|
/**
|
|
21825
22225
|
* Defines the accessible ARIA name of the component.
|
|
@@ -22253,7 +22653,11 @@ declare module "sap/ui/webc/main/MessageStrip" {
|
|
|
22253
22653
|
sWidth: CSSSize
|
|
22254
22654
|
): this;
|
|
22255
22655
|
}
|
|
22256
|
-
|
|
22656
|
+
/**
|
|
22657
|
+
* Describes the settings that can be provided to the MessageStrip constructor.
|
|
22658
|
+
*
|
|
22659
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
22660
|
+
*/
|
|
22257
22661
|
export interface $MessageStripSettings extends $WebComponentSettings {
|
|
22258
22662
|
/**
|
|
22259
22663
|
* Defines the component type.
|
|
@@ -22307,8 +22711,14 @@ declare module "sap/ui/webc/main/MessageStrip" {
|
|
|
22307
22711
|
close?: (oEvent: Event) => void;
|
|
22308
22712
|
}
|
|
22309
22713
|
|
|
22714
|
+
/**
|
|
22715
|
+
* Parameters of the MessageStrip#close event.
|
|
22716
|
+
*/
|
|
22310
22717
|
export interface MessageStrip$CloseEventParameters {}
|
|
22311
22718
|
|
|
22719
|
+
/**
|
|
22720
|
+
* Event object of the MessageStrip#close event.
|
|
22721
|
+
*/
|
|
22312
22722
|
export type MessageStrip$CloseEvent = Event<
|
|
22313
22723
|
MessageStrip$CloseEventParameters,
|
|
22314
22724
|
MessageStrip
|
|
@@ -23323,7 +23733,11 @@ declare module "sap/ui/webc/main/MultiComboBox" {
|
|
|
23323
23733
|
sWidth: CSSSize
|
|
23324
23734
|
): this;
|
|
23325
23735
|
}
|
|
23326
|
-
|
|
23736
|
+
/**
|
|
23737
|
+
* Describes the settings that can be provided to the MultiComboBox constructor.
|
|
23738
|
+
*
|
|
23739
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
23740
|
+
*/
|
|
23327
23741
|
export interface $MultiComboBoxSettings extends $WebComponentSettings {
|
|
23328
23742
|
/**
|
|
23329
23743
|
* Defines the accessible ARIA name of the component.
|
|
@@ -23443,27 +23857,48 @@ declare module "sap/ui/webc/main/MultiComboBox" {
|
|
|
23443
23857
|
selectionChange?: (oEvent: MultiComboBox$SelectionChangeEvent) => void;
|
|
23444
23858
|
}
|
|
23445
23859
|
|
|
23860
|
+
/**
|
|
23861
|
+
* Parameters of the MultiComboBox#change event.
|
|
23862
|
+
*/
|
|
23446
23863
|
export interface MultiComboBox$ChangeEventParameters {}
|
|
23447
23864
|
|
|
23865
|
+
/**
|
|
23866
|
+
* Event object of the MultiComboBox#change event.
|
|
23867
|
+
*/
|
|
23448
23868
|
export type MultiComboBox$ChangeEvent = Event<
|
|
23449
23869
|
MultiComboBox$ChangeEventParameters,
|
|
23450
23870
|
MultiComboBox
|
|
23451
23871
|
>;
|
|
23452
23872
|
|
|
23873
|
+
/**
|
|
23874
|
+
* Parameters of the MultiComboBox#input event.
|
|
23875
|
+
*/
|
|
23453
23876
|
export interface MultiComboBox$InputEventParameters {}
|
|
23454
23877
|
|
|
23878
|
+
/**
|
|
23879
|
+
* Event object of the MultiComboBox#input event.
|
|
23880
|
+
*/
|
|
23455
23881
|
export type MultiComboBox$InputEvent = Event<
|
|
23456
23882
|
MultiComboBox$InputEventParameters,
|
|
23457
23883
|
MultiComboBox
|
|
23458
23884
|
>;
|
|
23459
23885
|
|
|
23886
|
+
/**
|
|
23887
|
+
* Parameters of the MultiComboBox#openChange event.
|
|
23888
|
+
*/
|
|
23460
23889
|
export interface MultiComboBox$OpenChangeEventParameters {}
|
|
23461
23890
|
|
|
23891
|
+
/**
|
|
23892
|
+
* Event object of the MultiComboBox#openChange event.
|
|
23893
|
+
*/
|
|
23462
23894
|
export type MultiComboBox$OpenChangeEvent = Event<
|
|
23463
23895
|
MultiComboBox$OpenChangeEventParameters,
|
|
23464
23896
|
MultiComboBox
|
|
23465
23897
|
>;
|
|
23466
23898
|
|
|
23899
|
+
/**
|
|
23900
|
+
* Parameters of the MultiComboBox#selectionChange event.
|
|
23901
|
+
*/
|
|
23467
23902
|
export interface MultiComboBox$SelectionChangeEventParameters {
|
|
23468
23903
|
/**
|
|
23469
23904
|
* an array of the selected items.
|
|
@@ -23471,6 +23906,9 @@ declare module "sap/ui/webc/main/MultiComboBox" {
|
|
|
23471
23906
|
items?: any[];
|
|
23472
23907
|
}
|
|
23473
23908
|
|
|
23909
|
+
/**
|
|
23910
|
+
* Event object of the MultiComboBox#selectionChange event.
|
|
23911
|
+
*/
|
|
23474
23912
|
export type MultiComboBox$SelectionChangeEvent = Event<
|
|
23475
23913
|
MultiComboBox$SelectionChangeEventParameters,
|
|
23476
23914
|
MultiComboBox
|
|
@@ -23592,7 +24030,11 @@ declare module "sap/ui/webc/main/MultiComboBoxGroupItem" {
|
|
|
23592
24030
|
sText?: string
|
|
23593
24031
|
): this;
|
|
23594
24032
|
}
|
|
23595
|
-
|
|
24033
|
+
/**
|
|
24034
|
+
* Describes the settings that can be provided to the MultiComboBoxGroupItem constructor.
|
|
24035
|
+
*
|
|
24036
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
24037
|
+
*/
|
|
23596
24038
|
export interface $MultiComboBoxGroupItemSettings
|
|
23597
24039
|
extends $WebComponentSettings {
|
|
23598
24040
|
/**
|
|
@@ -23774,7 +24216,11 @@ declare module "sap/ui/webc/main/MultiComboBoxItem" {
|
|
|
23774
24216
|
sText?: string
|
|
23775
24217
|
): this;
|
|
23776
24218
|
}
|
|
23777
|
-
|
|
24219
|
+
/**
|
|
24220
|
+
* Describes the settings that can be provided to the MultiComboBoxItem constructor.
|
|
24221
|
+
*
|
|
24222
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
24223
|
+
*/
|
|
23778
24224
|
export interface $MultiComboBoxItemSettings extends $WebComponentSettings {
|
|
23779
24225
|
/**
|
|
23780
24226
|
* Defines the additional text of the component.
|
|
@@ -25168,7 +25614,11 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25168
25614
|
sWidth: CSSSize
|
|
25169
25615
|
): this;
|
|
25170
25616
|
}
|
|
25171
|
-
|
|
25617
|
+
/**
|
|
25618
|
+
* Describes the settings that can be provided to the MultiInput constructor.
|
|
25619
|
+
*
|
|
25620
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
25621
|
+
*/
|
|
25172
25622
|
export interface $MultiInputSettings extends $WebComponentSettings {
|
|
25173
25623
|
/**
|
|
25174
25624
|
* Defines the accessible ARIA name of the component.
|
|
@@ -25342,20 +25792,35 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25342
25792
|
valueHelpTrigger?: (oEvent: Event) => void;
|
|
25343
25793
|
}
|
|
25344
25794
|
|
|
25795
|
+
/**
|
|
25796
|
+
* Parameters of the MultiInput#change event.
|
|
25797
|
+
*/
|
|
25345
25798
|
export interface MultiInput$ChangeEventParameters {}
|
|
25346
25799
|
|
|
25800
|
+
/**
|
|
25801
|
+
* Event object of the MultiInput#change event.
|
|
25802
|
+
*/
|
|
25347
25803
|
export type MultiInput$ChangeEvent = Event<
|
|
25348
25804
|
MultiInput$ChangeEventParameters,
|
|
25349
25805
|
MultiInput
|
|
25350
25806
|
>;
|
|
25351
25807
|
|
|
25808
|
+
/**
|
|
25809
|
+
* Parameters of the MultiInput#input event.
|
|
25810
|
+
*/
|
|
25352
25811
|
export interface MultiInput$InputEventParameters {}
|
|
25353
25812
|
|
|
25813
|
+
/**
|
|
25814
|
+
* Event object of the MultiInput#input event.
|
|
25815
|
+
*/
|
|
25354
25816
|
export type MultiInput$InputEvent = Event<
|
|
25355
25817
|
MultiInput$InputEventParameters,
|
|
25356
25818
|
MultiInput
|
|
25357
25819
|
>;
|
|
25358
25820
|
|
|
25821
|
+
/**
|
|
25822
|
+
* Parameters of the MultiInput#suggestionItemPreview event.
|
|
25823
|
+
*/
|
|
25359
25824
|
export interface MultiInput$SuggestionItemPreviewEventParameters {
|
|
25360
25825
|
/**
|
|
25361
25826
|
* The previewed suggestion item.
|
|
@@ -25368,11 +25833,17 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25368
25833
|
targetRef?: HTMLElement;
|
|
25369
25834
|
}
|
|
25370
25835
|
|
|
25836
|
+
/**
|
|
25837
|
+
* Event object of the MultiInput#suggestionItemPreview event.
|
|
25838
|
+
*/
|
|
25371
25839
|
export type MultiInput$SuggestionItemPreviewEvent = Event<
|
|
25372
25840
|
MultiInput$SuggestionItemPreviewEventParameters,
|
|
25373
25841
|
MultiInput
|
|
25374
25842
|
>;
|
|
25375
25843
|
|
|
25844
|
+
/**
|
|
25845
|
+
* Parameters of the MultiInput#suggestionItemSelect event.
|
|
25846
|
+
*/
|
|
25376
25847
|
export interface MultiInput$SuggestionItemSelectEventParameters {
|
|
25377
25848
|
/**
|
|
25378
25849
|
* The selected item.
|
|
@@ -25380,11 +25851,17 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25380
25851
|
item?: HTMLElement;
|
|
25381
25852
|
}
|
|
25382
25853
|
|
|
25854
|
+
/**
|
|
25855
|
+
* Event object of the MultiInput#suggestionItemSelect event.
|
|
25856
|
+
*/
|
|
25383
25857
|
export type MultiInput$SuggestionItemSelectEvent = Event<
|
|
25384
25858
|
MultiInput$SuggestionItemSelectEventParameters,
|
|
25385
25859
|
MultiInput
|
|
25386
25860
|
>;
|
|
25387
25861
|
|
|
25862
|
+
/**
|
|
25863
|
+
* Parameters of the MultiInput#tokenDelete event.
|
|
25864
|
+
*/
|
|
25388
25865
|
export interface MultiInput$TokenDeleteEventParameters {
|
|
25389
25866
|
/**
|
|
25390
25867
|
* deleted token.
|
|
@@ -25392,13 +25869,22 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25392
25869
|
token?: HTMLElement;
|
|
25393
25870
|
}
|
|
25394
25871
|
|
|
25872
|
+
/**
|
|
25873
|
+
* Event object of the MultiInput#tokenDelete event.
|
|
25874
|
+
*/
|
|
25395
25875
|
export type MultiInput$TokenDeleteEvent = Event<
|
|
25396
25876
|
MultiInput$TokenDeleteEventParameters,
|
|
25397
25877
|
MultiInput
|
|
25398
25878
|
>;
|
|
25399
25879
|
|
|
25880
|
+
/**
|
|
25881
|
+
* Parameters of the MultiInput#valueHelpTrigger event.
|
|
25882
|
+
*/
|
|
25400
25883
|
export interface MultiInput$ValueHelpTriggerEventParameters {}
|
|
25401
25884
|
|
|
25885
|
+
/**
|
|
25886
|
+
* Event object of the MultiInput#valueHelpTrigger event.
|
|
25887
|
+
*/
|
|
25402
25888
|
export type MultiInput$ValueHelpTriggerEvent = Event<
|
|
25403
25889
|
MultiInput$ValueHelpTriggerEventParameters,
|
|
25404
25890
|
MultiInput
|
|
@@ -25662,7 +26148,11 @@ declare module "sap/ui/webc/main/Option" {
|
|
|
25662
26148
|
sValue: string
|
|
25663
26149
|
): this;
|
|
25664
26150
|
}
|
|
25665
|
-
|
|
26151
|
+
/**
|
|
26152
|
+
* Describes the settings that can be provided to the Option constructor.
|
|
26153
|
+
*
|
|
26154
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
26155
|
+
*/
|
|
25666
26156
|
export interface $OptionSettings extends $WebComponentSettings {
|
|
25667
26157
|
/**
|
|
25668
26158
|
* Defines the additional text displayed at the end of the option element.
|
|
@@ -26363,7 +26853,11 @@ declare module "sap/ui/webc/main/Panel" {
|
|
|
26363
26853
|
sWidth: CSSSize
|
|
26364
26854
|
): this;
|
|
26365
26855
|
}
|
|
26366
|
-
|
|
26856
|
+
/**
|
|
26857
|
+
* Describes the settings that can be provided to the Panel constructor.
|
|
26858
|
+
*
|
|
26859
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
26860
|
+
*/
|
|
26367
26861
|
export interface $PanelSettings extends $WebComponentSettings {
|
|
26368
26862
|
/**
|
|
26369
26863
|
* Defines the accessible ARIA name of the component.
|
|
@@ -26448,8 +26942,14 @@ declare module "sap/ui/webc/main/Panel" {
|
|
|
26448
26942
|
toggle?: (oEvent: Event) => void;
|
|
26449
26943
|
}
|
|
26450
26944
|
|
|
26945
|
+
/**
|
|
26946
|
+
* Parameters of the Panel#toggle event.
|
|
26947
|
+
*/
|
|
26451
26948
|
export interface Panel$ToggleEventParameters {}
|
|
26452
26949
|
|
|
26950
|
+
/**
|
|
26951
|
+
* Event object of the Panel#toggle event.
|
|
26952
|
+
*/
|
|
26453
26953
|
export type Panel$ToggleEvent = Event<Panel$ToggleEventParameters, Panel>;
|
|
26454
26954
|
}
|
|
26455
26955
|
|
|
@@ -27632,7 +28132,11 @@ declare module "sap/ui/webc/main/Popover" {
|
|
|
27632
28132
|
preventInitialFocus: boolean
|
|
27633
28133
|
): void;
|
|
27634
28134
|
}
|
|
27635
|
-
|
|
28135
|
+
/**
|
|
28136
|
+
* Describes the settings that can be provided to the Popover constructor.
|
|
28137
|
+
*
|
|
28138
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
28139
|
+
*/
|
|
27636
28140
|
export interface $PopoverSettings extends $WebComponentSettings {
|
|
27637
28141
|
/**
|
|
27638
28142
|
* Defines the accessible name of the component.
|
|
@@ -27772,20 +28276,35 @@ declare module "sap/ui/webc/main/Popover" {
|
|
|
27772
28276
|
beforeOpen?: (oEvent: Event) => void;
|
|
27773
28277
|
}
|
|
27774
28278
|
|
|
28279
|
+
/**
|
|
28280
|
+
* Parameters of the Popover#afterClose event.
|
|
28281
|
+
*/
|
|
27775
28282
|
export interface Popover$AfterCloseEventParameters {}
|
|
27776
28283
|
|
|
28284
|
+
/**
|
|
28285
|
+
* Event object of the Popover#afterClose event.
|
|
28286
|
+
*/
|
|
27777
28287
|
export type Popover$AfterCloseEvent = Event<
|
|
27778
28288
|
Popover$AfterCloseEventParameters,
|
|
27779
28289
|
Popover
|
|
27780
28290
|
>;
|
|
27781
28291
|
|
|
28292
|
+
/**
|
|
28293
|
+
* Parameters of the Popover#afterOpen event.
|
|
28294
|
+
*/
|
|
27782
28295
|
export interface Popover$AfterOpenEventParameters {}
|
|
27783
28296
|
|
|
28297
|
+
/**
|
|
28298
|
+
* Event object of the Popover#afterOpen event.
|
|
28299
|
+
*/
|
|
27784
28300
|
export type Popover$AfterOpenEvent = Event<
|
|
27785
28301
|
Popover$AfterOpenEventParameters,
|
|
27786
28302
|
Popover
|
|
27787
28303
|
>;
|
|
27788
28304
|
|
|
28305
|
+
/**
|
|
28306
|
+
* Parameters of the Popover#beforeClose event.
|
|
28307
|
+
*/
|
|
27789
28308
|
export interface Popover$BeforeCloseEventParameters {
|
|
27790
28309
|
/**
|
|
27791
28310
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -27793,13 +28312,22 @@ declare module "sap/ui/webc/main/Popover" {
|
|
|
27793
28312
|
escPressed?: boolean;
|
|
27794
28313
|
}
|
|
27795
28314
|
|
|
28315
|
+
/**
|
|
28316
|
+
* Event object of the Popover#beforeClose event.
|
|
28317
|
+
*/
|
|
27796
28318
|
export type Popover$BeforeCloseEvent = Event<
|
|
27797
28319
|
Popover$BeforeCloseEventParameters,
|
|
27798
28320
|
Popover
|
|
27799
28321
|
>;
|
|
27800
28322
|
|
|
28323
|
+
/**
|
|
28324
|
+
* Parameters of the Popover#beforeOpen event.
|
|
28325
|
+
*/
|
|
27801
28326
|
export interface Popover$BeforeOpenEventParameters {}
|
|
27802
28327
|
|
|
28328
|
+
/**
|
|
28329
|
+
* Event object of the Popover#beforeOpen event.
|
|
28330
|
+
*/
|
|
27803
28331
|
export type Popover$BeforeOpenEvent = Event<
|
|
27804
28332
|
Popover$BeforeOpenEventParameters,
|
|
27805
28333
|
Popover
|
|
@@ -28122,7 +28650,11 @@ declare module "sap/ui/webc/main/ProgressIndicator" {
|
|
|
28122
28650
|
sWidth: CSSSize
|
|
28123
28651
|
): this;
|
|
28124
28652
|
}
|
|
28125
|
-
|
|
28653
|
+
/**
|
|
28654
|
+
* Describes the settings that can be provided to the ProgressIndicator constructor.
|
|
28655
|
+
*
|
|
28656
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
28657
|
+
*/
|
|
28126
28658
|
export interface $ProgressIndicatorSettings extends $WebComponentSettings {
|
|
28127
28659
|
/**
|
|
28128
28660
|
* Defines the accessible ARIA name of the component.
|
|
@@ -28752,7 +29284,11 @@ declare module "sap/ui/webc/main/RadioButton" {
|
|
|
28752
29284
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
28753
29285
|
): this;
|
|
28754
29286
|
}
|
|
28755
|
-
|
|
29287
|
+
/**
|
|
29288
|
+
* Describes the settings that can be provided to the RadioButton constructor.
|
|
29289
|
+
*
|
|
29290
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
29291
|
+
*/
|
|
28756
29292
|
export interface $RadioButtonSettings extends $WebComponentSettings {
|
|
28757
29293
|
/**
|
|
28758
29294
|
* Defines the accessible ARIA name of the component.
|
|
@@ -28844,8 +29380,14 @@ declare module "sap/ui/webc/main/RadioButton" {
|
|
|
28844
29380
|
change?: (oEvent: Event) => void;
|
|
28845
29381
|
}
|
|
28846
29382
|
|
|
29383
|
+
/**
|
|
29384
|
+
* Parameters of the RadioButton#change event.
|
|
29385
|
+
*/
|
|
28847
29386
|
export interface RadioButton$ChangeEventParameters {}
|
|
28848
29387
|
|
|
29388
|
+
/**
|
|
29389
|
+
* Event object of the RadioButton#change event.
|
|
29390
|
+
*/
|
|
28849
29391
|
export type RadioButton$ChangeEvent = Event<
|
|
28850
29392
|
RadioButton$ChangeEventParameters,
|
|
28851
29393
|
RadioButton
|
|
@@ -29479,7 +30021,11 @@ declare module "sap/ui/webc/main/RangeSlider" {
|
|
|
29479
30021
|
sWidth: CSSSize
|
|
29480
30022
|
): this;
|
|
29481
30023
|
}
|
|
29482
|
-
|
|
30024
|
+
/**
|
|
30025
|
+
* Describes the settings that can be provided to the RangeSlider constructor.
|
|
30026
|
+
*
|
|
30027
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
30028
|
+
*/
|
|
29483
30029
|
export interface $RangeSliderSettings extends $WebComponentSettings {
|
|
29484
30030
|
/**
|
|
29485
30031
|
* Defines the accessible ARIA name of the component.
|
|
@@ -29558,15 +30104,27 @@ declare module "sap/ui/webc/main/RangeSlider" {
|
|
|
29558
30104
|
input?: (oEvent: Event) => void;
|
|
29559
30105
|
}
|
|
29560
30106
|
|
|
30107
|
+
/**
|
|
30108
|
+
* Parameters of the RangeSlider#change event.
|
|
30109
|
+
*/
|
|
29561
30110
|
export interface RangeSlider$ChangeEventParameters {}
|
|
29562
30111
|
|
|
30112
|
+
/**
|
|
30113
|
+
* Event object of the RangeSlider#change event.
|
|
30114
|
+
*/
|
|
29563
30115
|
export type RangeSlider$ChangeEvent = Event<
|
|
29564
30116
|
RangeSlider$ChangeEventParameters,
|
|
29565
30117
|
RangeSlider
|
|
29566
30118
|
>;
|
|
29567
30119
|
|
|
30120
|
+
/**
|
|
30121
|
+
* Parameters of the RangeSlider#input event.
|
|
30122
|
+
*/
|
|
29568
30123
|
export interface RangeSlider$InputEventParameters {}
|
|
29569
30124
|
|
|
30125
|
+
/**
|
|
30126
|
+
* Event object of the RangeSlider#input event.
|
|
30127
|
+
*/
|
|
29570
30128
|
export type RangeSlider$InputEvent = Event<
|
|
29571
30129
|
RangeSlider$InputEventParameters,
|
|
29572
30130
|
RangeSlider
|
|
@@ -30009,7 +30567,11 @@ declare module "sap/ui/webc/main/RatingIndicator" {
|
|
|
30009
30567
|
sWidth: CSSSize
|
|
30010
30568
|
): this;
|
|
30011
30569
|
}
|
|
30012
|
-
|
|
30570
|
+
/**
|
|
30571
|
+
* Describes the settings that can be provided to the RatingIndicator constructor.
|
|
30572
|
+
*
|
|
30573
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
30574
|
+
*/
|
|
30013
30575
|
export interface $RatingIndicatorSettings extends $WebComponentSettings {
|
|
30014
30576
|
/**
|
|
30015
30577
|
* Defines the accessible ARIA name of the component.
|
|
@@ -30065,8 +30627,14 @@ declare module "sap/ui/webc/main/RatingIndicator" {
|
|
|
30065
30627
|
change?: (oEvent: Event) => void;
|
|
30066
30628
|
}
|
|
30067
30629
|
|
|
30630
|
+
/**
|
|
30631
|
+
* Parameters of the RatingIndicator#change event.
|
|
30632
|
+
*/
|
|
30068
30633
|
export interface RatingIndicator$ChangeEventParameters {}
|
|
30069
30634
|
|
|
30635
|
+
/**
|
|
30636
|
+
* Event object of the RatingIndicator#change event.
|
|
30637
|
+
*/
|
|
30070
30638
|
export type RatingIndicator$ChangeEvent = Event<
|
|
30071
30639
|
RatingIndicator$ChangeEventParameters,
|
|
30072
30640
|
RatingIndicator
|
|
@@ -31199,7 +31767,11 @@ declare module "sap/ui/webc/main/ResponsivePopover" {
|
|
|
31199
31767
|
preventInitialFocus: boolean
|
|
31200
31768
|
): void;
|
|
31201
31769
|
}
|
|
31202
|
-
|
|
31770
|
+
/**
|
|
31771
|
+
* Describes the settings that can be provided to the ResponsivePopover constructor.
|
|
31772
|
+
*
|
|
31773
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
31774
|
+
*/
|
|
31203
31775
|
export interface $ResponsivePopoverSettings extends $WebComponentSettings {
|
|
31204
31776
|
/**
|
|
31205
31777
|
* Defines the accessible name of the component.
|
|
@@ -31329,20 +31901,35 @@ declare module "sap/ui/webc/main/ResponsivePopover" {
|
|
|
31329
31901
|
beforeOpen?: (oEvent: Event) => void;
|
|
31330
31902
|
}
|
|
31331
31903
|
|
|
31904
|
+
/**
|
|
31905
|
+
* Parameters of the ResponsivePopover#afterClose event.
|
|
31906
|
+
*/
|
|
31332
31907
|
export interface ResponsivePopover$AfterCloseEventParameters {}
|
|
31333
31908
|
|
|
31909
|
+
/**
|
|
31910
|
+
* Event object of the ResponsivePopover#afterClose event.
|
|
31911
|
+
*/
|
|
31334
31912
|
export type ResponsivePopover$AfterCloseEvent = Event<
|
|
31335
31913
|
ResponsivePopover$AfterCloseEventParameters,
|
|
31336
31914
|
ResponsivePopover
|
|
31337
31915
|
>;
|
|
31338
31916
|
|
|
31917
|
+
/**
|
|
31918
|
+
* Parameters of the ResponsivePopover#afterOpen event.
|
|
31919
|
+
*/
|
|
31339
31920
|
export interface ResponsivePopover$AfterOpenEventParameters {}
|
|
31340
31921
|
|
|
31922
|
+
/**
|
|
31923
|
+
* Event object of the ResponsivePopover#afterOpen event.
|
|
31924
|
+
*/
|
|
31341
31925
|
export type ResponsivePopover$AfterOpenEvent = Event<
|
|
31342
31926
|
ResponsivePopover$AfterOpenEventParameters,
|
|
31343
31927
|
ResponsivePopover
|
|
31344
31928
|
>;
|
|
31345
31929
|
|
|
31930
|
+
/**
|
|
31931
|
+
* Parameters of the ResponsivePopover#beforeClose event.
|
|
31932
|
+
*/
|
|
31346
31933
|
export interface ResponsivePopover$BeforeCloseEventParameters {
|
|
31347
31934
|
/**
|
|
31348
31935
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -31350,13 +31937,22 @@ declare module "sap/ui/webc/main/ResponsivePopover" {
|
|
|
31350
31937
|
escPressed?: boolean;
|
|
31351
31938
|
}
|
|
31352
31939
|
|
|
31940
|
+
/**
|
|
31941
|
+
* Event object of the ResponsivePopover#beforeClose event.
|
|
31942
|
+
*/
|
|
31353
31943
|
export type ResponsivePopover$BeforeCloseEvent = Event<
|
|
31354
31944
|
ResponsivePopover$BeforeCloseEventParameters,
|
|
31355
31945
|
ResponsivePopover
|
|
31356
31946
|
>;
|
|
31357
31947
|
|
|
31948
|
+
/**
|
|
31949
|
+
* Parameters of the ResponsivePopover#beforeOpen event.
|
|
31950
|
+
*/
|
|
31358
31951
|
export interface ResponsivePopover$BeforeOpenEventParameters {}
|
|
31359
31952
|
|
|
31953
|
+
/**
|
|
31954
|
+
* Event object of the ResponsivePopover#beforeOpen event.
|
|
31955
|
+
*/
|
|
31360
31956
|
export type ResponsivePopover$BeforeOpenEvent = Event<
|
|
31361
31957
|
ResponsivePopover$BeforeOpenEventParameters,
|
|
31362
31958
|
ResponsivePopover
|
|
@@ -31738,7 +32334,11 @@ declare module "sap/ui/webc/main/SegmentedButton" {
|
|
|
31738
32334
|
sWidth: CSSSize
|
|
31739
32335
|
): this;
|
|
31740
32336
|
}
|
|
31741
|
-
|
|
32337
|
+
/**
|
|
32338
|
+
* Describes the settings that can be provided to the SegmentedButton constructor.
|
|
32339
|
+
*
|
|
32340
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
32341
|
+
*/
|
|
31742
32342
|
export interface $SegmentedButtonSettings extends $WebComponentSettings {
|
|
31743
32343
|
/**
|
|
31744
32344
|
* Defines the accessible ARIA name of the component.
|
|
@@ -31785,6 +32385,9 @@ declare module "sap/ui/webc/main/SegmentedButton" {
|
|
|
31785
32385
|
selectionChange?: (oEvent: SegmentedButton$SelectionChangeEvent) => void;
|
|
31786
32386
|
}
|
|
31787
32387
|
|
|
32388
|
+
/**
|
|
32389
|
+
* Parameters of the SegmentedButton#selectionChange event.
|
|
32390
|
+
*/
|
|
31788
32391
|
export interface SegmentedButton$SelectionChangeEventParameters {
|
|
31789
32392
|
/**
|
|
31790
32393
|
* the pressed item. Note: deprecated since 1.14.0 and will be removed in the next major release, use the
|
|
@@ -31798,6 +32401,9 @@ declare module "sap/ui/webc/main/SegmentedButton" {
|
|
|
31798
32401
|
selectedItems?: HTMLElement[];
|
|
31799
32402
|
}
|
|
31800
32403
|
|
|
32404
|
+
/**
|
|
32405
|
+
* Event object of the SegmentedButton#selectionChange event.
|
|
32406
|
+
*/
|
|
31801
32407
|
export type SegmentedButton$SelectionChangeEvent = Event<
|
|
31802
32408
|
SegmentedButton$SelectionChangeEventParameters,
|
|
31803
32409
|
SegmentedButton
|
|
@@ -32363,7 +32969,11 @@ declare module "sap/ui/webc/main/SegmentedButtonItem" {
|
|
|
32363
32969
|
sType?: ButtonType | keyof typeof ButtonType
|
|
32364
32970
|
): this;
|
|
32365
32971
|
}
|
|
32366
|
-
|
|
32972
|
+
/**
|
|
32973
|
+
* Describes the settings that can be provided to the SegmentedButtonItem constructor.
|
|
32974
|
+
*
|
|
32975
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
32976
|
+
*/
|
|
32367
32977
|
export interface $SegmentedButtonItemSettings extends $WebComponentSettings {
|
|
32368
32978
|
/**
|
|
32369
32979
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -32458,8 +33068,14 @@ declare module "sap/ui/webc/main/SegmentedButtonItem" {
|
|
|
32458
33068
|
click?: (oEvent: Event) => void;
|
|
32459
33069
|
}
|
|
32460
33070
|
|
|
33071
|
+
/**
|
|
33072
|
+
* Parameters of the SegmentedButtonItem#click event.
|
|
33073
|
+
*/
|
|
32461
33074
|
export interface SegmentedButtonItem$ClickEventParameters {}
|
|
32462
33075
|
|
|
33076
|
+
/**
|
|
33077
|
+
* Event object of the SegmentedButtonItem#click event.
|
|
33078
|
+
*/
|
|
32463
33079
|
export type SegmentedButtonItem$ClickEvent = Event<
|
|
32464
33080
|
SegmentedButtonItem$ClickEventParameters,
|
|
32465
33081
|
SegmentedButtonItem
|
|
@@ -33376,7 +33992,11 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33376
33992
|
sWidth: CSSSize
|
|
33377
33993
|
): this;
|
|
33378
33994
|
}
|
|
33379
|
-
|
|
33995
|
+
/**
|
|
33996
|
+
* Describes the settings that can be provided to the Select constructor.
|
|
33997
|
+
*
|
|
33998
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
33999
|
+
*/
|
|
33380
34000
|
export interface $SelectSettings extends $WebComponentSettings {
|
|
33381
34001
|
/**
|
|
33382
34002
|
* Defines the accessible ARIA name of the component.
|
|
@@ -33503,6 +34123,9 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33503
34123
|
open?: (oEvent: Event) => void;
|
|
33504
34124
|
}
|
|
33505
34125
|
|
|
34126
|
+
/**
|
|
34127
|
+
* Parameters of the Select#change event.
|
|
34128
|
+
*/
|
|
33506
34129
|
export interface Select$ChangeEventParameters {
|
|
33507
34130
|
/**
|
|
33508
34131
|
* the selected option.
|
|
@@ -33510,12 +34133,24 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33510
34133
|
selectedOption?: HTMLElement;
|
|
33511
34134
|
}
|
|
33512
34135
|
|
|
34136
|
+
/**
|
|
34137
|
+
* Event object of the Select#change event.
|
|
34138
|
+
*/
|
|
33513
34139
|
export type Select$ChangeEvent = Event<Select$ChangeEventParameters, Select>;
|
|
33514
34140
|
|
|
34141
|
+
/**
|
|
34142
|
+
* Parameters of the Select#close event.
|
|
34143
|
+
*/
|
|
33515
34144
|
export interface Select$CloseEventParameters {}
|
|
33516
34145
|
|
|
34146
|
+
/**
|
|
34147
|
+
* Event object of the Select#close event.
|
|
34148
|
+
*/
|
|
33517
34149
|
export type Select$CloseEvent = Event<Select$CloseEventParameters, Select>;
|
|
33518
34150
|
|
|
34151
|
+
/**
|
|
34152
|
+
* Parameters of the Select#liveChange event.
|
|
34153
|
+
*/
|
|
33519
34154
|
export interface Select$LiveChangeEventParameters {
|
|
33520
34155
|
/**
|
|
33521
34156
|
* the selected option.
|
|
@@ -33523,13 +34158,22 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33523
34158
|
selectedOption?: HTMLElement;
|
|
33524
34159
|
}
|
|
33525
34160
|
|
|
34161
|
+
/**
|
|
34162
|
+
* Event object of the Select#liveChange event.
|
|
34163
|
+
*/
|
|
33526
34164
|
export type Select$LiveChangeEvent = Event<
|
|
33527
34165
|
Select$LiveChangeEventParameters,
|
|
33528
34166
|
Select
|
|
33529
34167
|
>;
|
|
33530
34168
|
|
|
34169
|
+
/**
|
|
34170
|
+
* Parameters of the Select#open event.
|
|
34171
|
+
*/
|
|
33531
34172
|
export interface Select$OpenEventParameters {}
|
|
33532
34173
|
|
|
34174
|
+
/**
|
|
34175
|
+
* Event object of the Select#open event.
|
|
34176
|
+
*/
|
|
33533
34177
|
export type Select$OpenEvent = Event<Select$OpenEventParameters, Select>;
|
|
33534
34178
|
}
|
|
33535
34179
|
|
|
@@ -33706,7 +34350,11 @@ declare module "sap/ui/webc/main/SelectMenu" {
|
|
|
33706
34350
|
vContent: int | string | ISelectMenuOption
|
|
33707
34351
|
): ISelectMenuOption | null;
|
|
33708
34352
|
}
|
|
33709
|
-
|
|
34353
|
+
/**
|
|
34354
|
+
* Describes the settings that can be provided to the SelectMenu constructor.
|
|
34355
|
+
*
|
|
34356
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
34357
|
+
*/
|
|
33710
34358
|
export interface $SelectMenuSettings extends $WebComponentSettings {
|
|
33711
34359
|
/**
|
|
33712
34360
|
* Defines the options of the component.
|
|
@@ -33940,7 +34588,11 @@ declare module "sap/ui/webc/main/SelectMenuOption" {
|
|
|
33940
34588
|
sValue: string
|
|
33941
34589
|
): this;
|
|
33942
34590
|
}
|
|
33943
|
-
|
|
34591
|
+
/**
|
|
34592
|
+
* Describes the settings that can be provided to the SelectMenuOption constructor.
|
|
34593
|
+
*
|
|
34594
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
34595
|
+
*/
|
|
33944
34596
|
export interface $SelectMenuOptionSettings extends $WebComponentSettings {
|
|
33945
34597
|
/**
|
|
33946
34598
|
* Defines the text, displayed inside the `sap.ui.webc.main.Select` input filed when the option gets selected.
|
|
@@ -34555,7 +35207,11 @@ declare module "sap/ui/webc/main/Slider" {
|
|
|
34555
35207
|
sWidth: CSSSize
|
|
34556
35208
|
): this;
|
|
34557
35209
|
}
|
|
34558
|
-
|
|
35210
|
+
/**
|
|
35211
|
+
* Describes the settings that can be provided to the Slider constructor.
|
|
35212
|
+
*
|
|
35213
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
35214
|
+
*/
|
|
34559
35215
|
export interface $SliderSettings extends $WebComponentSettings {
|
|
34560
35216
|
/**
|
|
34561
35217
|
* Defines the accessible ARIA name of the component.
|
|
@@ -34629,12 +35285,24 @@ declare module "sap/ui/webc/main/Slider" {
|
|
|
34629
35285
|
input?: (oEvent: Event) => void;
|
|
34630
35286
|
}
|
|
34631
35287
|
|
|
35288
|
+
/**
|
|
35289
|
+
* Parameters of the Slider#change event.
|
|
35290
|
+
*/
|
|
34632
35291
|
export interface Slider$ChangeEventParameters {}
|
|
34633
35292
|
|
|
35293
|
+
/**
|
|
35294
|
+
* Event object of the Slider#change event.
|
|
35295
|
+
*/
|
|
34634
35296
|
export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters, Slider>;
|
|
34635
35297
|
|
|
35298
|
+
/**
|
|
35299
|
+
* Parameters of the Slider#input event.
|
|
35300
|
+
*/
|
|
34636
35301
|
export interface Slider$InputEventParameters {}
|
|
34637
35302
|
|
|
35303
|
+
/**
|
|
35304
|
+
* Event object of the Slider#input event.
|
|
35305
|
+
*/
|
|
34638
35306
|
export type Slider$InputEvent = Event<Slider$InputEventParameters, Slider>;
|
|
34639
35307
|
}
|
|
34640
35308
|
|
|
@@ -35088,7 +35756,11 @@ declare module "sap/ui/webc/main/SplitButton" {
|
|
|
35088
35756
|
sText?: string
|
|
35089
35757
|
): this;
|
|
35090
35758
|
}
|
|
35091
|
-
|
|
35759
|
+
/**
|
|
35760
|
+
* Describes the settings that can be provided to the SplitButton constructor.
|
|
35761
|
+
*
|
|
35762
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
35763
|
+
*/
|
|
35092
35764
|
export interface $SplitButtonSettings extends $WebComponentSettings {
|
|
35093
35765
|
/**
|
|
35094
35766
|
* Defines the accessible ARIA name of the component.
|
|
@@ -35140,15 +35812,27 @@ declare module "sap/ui/webc/main/SplitButton" {
|
|
|
35140
35812
|
click?: (oEvent: Event) => void;
|
|
35141
35813
|
}
|
|
35142
35814
|
|
|
35815
|
+
/**
|
|
35816
|
+
* Parameters of the SplitButton#arrowClick event.
|
|
35817
|
+
*/
|
|
35143
35818
|
export interface SplitButton$ArrowClickEventParameters {}
|
|
35144
35819
|
|
|
35820
|
+
/**
|
|
35821
|
+
* Event object of the SplitButton#arrowClick event.
|
|
35822
|
+
*/
|
|
35145
35823
|
export type SplitButton$ArrowClickEvent = Event<
|
|
35146
35824
|
SplitButton$ArrowClickEventParameters,
|
|
35147
35825
|
SplitButton
|
|
35148
35826
|
>;
|
|
35149
35827
|
|
|
35828
|
+
/**
|
|
35829
|
+
* Parameters of the SplitButton#click event.
|
|
35830
|
+
*/
|
|
35150
35831
|
export interface SplitButton$ClickEventParameters {}
|
|
35151
35832
|
|
|
35833
|
+
/**
|
|
35834
|
+
* Event object of the SplitButton#click event.
|
|
35835
|
+
*/
|
|
35152
35836
|
export type SplitButton$ClickEvent = Event<
|
|
35153
35837
|
SplitButton$ClickEventParameters,
|
|
35154
35838
|
SplitButton
|
|
@@ -35832,7 +36516,11 @@ declare module "sap/ui/webc/main/StandardListItem" {
|
|
|
35832
36516
|
sType?: ListItemType | keyof typeof ListItemType
|
|
35833
36517
|
): this;
|
|
35834
36518
|
}
|
|
35835
|
-
|
|
36519
|
+
/**
|
|
36520
|
+
* Describes the settings that can be provided to the StandardListItem constructor.
|
|
36521
|
+
*
|
|
36522
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
36523
|
+
*/
|
|
35836
36524
|
export interface $StandardListItemSettings extends $WebComponentSettings {
|
|
35837
36525
|
/**
|
|
35838
36526
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -35947,8 +36635,14 @@ declare module "sap/ui/webc/main/StandardListItem" {
|
|
|
35947
36635
|
detailClick?: (oEvent: Event) => void;
|
|
35948
36636
|
}
|
|
35949
36637
|
|
|
36638
|
+
/**
|
|
36639
|
+
* Parameters of the StandardListItem#detailClick event.
|
|
36640
|
+
*/
|
|
35950
36641
|
export interface StandardListItem$DetailClickEventParameters {}
|
|
35951
36642
|
|
|
36643
|
+
/**
|
|
36644
|
+
* Event object of the StandardListItem#detailClick event.
|
|
36645
|
+
*/
|
|
35952
36646
|
export type StandardListItem$DetailClickEvent = Event<
|
|
35953
36647
|
StandardListItem$DetailClickEventParameters,
|
|
35954
36648
|
StandardListItem
|
|
@@ -36603,7 +37297,11 @@ declare module "sap/ui/webc/main/StepInput" {
|
|
|
36603
37297
|
sWidth: CSSSize
|
|
36604
37298
|
): this;
|
|
36605
37299
|
}
|
|
36606
|
-
|
|
37300
|
+
/**
|
|
37301
|
+
* Describes the settings that can be provided to the StepInput constructor.
|
|
37302
|
+
*
|
|
37303
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
37304
|
+
*/
|
|
36607
37305
|
export interface $StepInputSettings extends $WebComponentSettings {
|
|
36608
37306
|
/**
|
|
36609
37307
|
* Defines the accessible ARIA name of the component.
|
|
@@ -36705,8 +37403,14 @@ declare module "sap/ui/webc/main/StepInput" {
|
|
|
36705
37403
|
change?: (oEvent: Event) => void;
|
|
36706
37404
|
}
|
|
36707
37405
|
|
|
37406
|
+
/**
|
|
37407
|
+
* Parameters of the StepInput#change event.
|
|
37408
|
+
*/
|
|
36708
37409
|
export interface StepInput$ChangeEventParameters {}
|
|
36709
37410
|
|
|
37411
|
+
/**
|
|
37412
|
+
* Event object of the StepInput#change event.
|
|
37413
|
+
*/
|
|
36710
37414
|
export type StepInput$ChangeEvent = Event<
|
|
36711
37415
|
StepInput$ChangeEventParameters,
|
|
36712
37416
|
StepInput
|
|
@@ -36828,7 +37532,11 @@ declare module "sap/ui/webc/main/SuggestionGroupItem" {
|
|
|
36828
37532
|
sText?: string
|
|
36829
37533
|
): this;
|
|
36830
37534
|
}
|
|
36831
|
-
|
|
37535
|
+
/**
|
|
37536
|
+
* Describes the settings that can be provided to the SuggestionGroupItem constructor.
|
|
37537
|
+
*
|
|
37538
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
37539
|
+
*/
|
|
36832
37540
|
export interface $SuggestionGroupItemSettings extends $WebComponentSettings {
|
|
36833
37541
|
/**
|
|
36834
37542
|
* Defines the text of the `sap.ui.webc.main.SuggestionGroupItem`.
|
|
@@ -37166,7 +37874,11 @@ declare module "sap/ui/webc/main/SuggestionItem" {
|
|
|
37166
37874
|
sType?: ListItemType | keyof typeof ListItemType
|
|
37167
37875
|
): this;
|
|
37168
37876
|
}
|
|
37169
|
-
|
|
37877
|
+
/**
|
|
37878
|
+
* Describes the settings that can be provided to the SuggestionItem constructor.
|
|
37879
|
+
*
|
|
37880
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
37881
|
+
*/
|
|
37170
37882
|
export interface $SuggestionItemSettings extends $WebComponentSettings {
|
|
37171
37883
|
/**
|
|
37172
37884
|
* Defines the `additionalText`, displayed in the end of the item.
|
|
@@ -37743,7 +38455,11 @@ declare module "sap/ui/webc/main/Switch" {
|
|
|
37743
38455
|
sWidth: CSSSize
|
|
37744
38456
|
): this;
|
|
37745
38457
|
}
|
|
37746
|
-
|
|
38458
|
+
/**
|
|
38459
|
+
* Describes the settings that can be provided to the Switch constructor.
|
|
38460
|
+
*
|
|
38461
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
38462
|
+
*/
|
|
37747
38463
|
export interface $SwitchSettings extends $WebComponentSettings {
|
|
37748
38464
|
/**
|
|
37749
38465
|
* Sets the accessible ARIA name of the component.
|
|
@@ -37825,8 +38541,14 @@ declare module "sap/ui/webc/main/Switch" {
|
|
|
37825
38541
|
change?: (oEvent: Event) => void;
|
|
37826
38542
|
}
|
|
37827
38543
|
|
|
38544
|
+
/**
|
|
38545
|
+
* Parameters of the Switch#change event.
|
|
38546
|
+
*/
|
|
37828
38547
|
export interface Switch$ChangeEventParameters {}
|
|
37829
38548
|
|
|
38549
|
+
/**
|
|
38550
|
+
* Event object of the Switch#change event.
|
|
38551
|
+
*/
|
|
37830
38552
|
export type Switch$ChangeEvent = Event<Switch$ChangeEventParameters, Switch>;
|
|
37831
38553
|
}
|
|
37832
38554
|
|
|
@@ -38290,7 +39012,11 @@ declare module "sap/ui/webc/main/Tab" {
|
|
|
38290
39012
|
sText?: string
|
|
38291
39013
|
): this;
|
|
38292
39014
|
}
|
|
38293
|
-
|
|
39015
|
+
/**
|
|
39016
|
+
* Describes the settings that can be provided to the Tab constructor.
|
|
39017
|
+
*
|
|
39018
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
39019
|
+
*/
|
|
38294
39020
|
export interface $TabSettings extends $WebComponentSettings {
|
|
38295
39021
|
/**
|
|
38296
39022
|
* Represents the "additionalText" text, which is displayed in the tab. In the cases when in the same time
|
|
@@ -38958,7 +39684,11 @@ declare module "sap/ui/webc/main/TabContainer" {
|
|
|
38958
39684
|
sWidth: CSSSize
|
|
38959
39685
|
): this;
|
|
38960
39686
|
}
|
|
38961
|
-
|
|
39687
|
+
/**
|
|
39688
|
+
* Describes the settings that can be provided to the TabContainer constructor.
|
|
39689
|
+
*
|
|
39690
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
39691
|
+
*/
|
|
38962
39692
|
export interface $TabContainerSettings extends $WebComponentSettings {
|
|
38963
39693
|
/**
|
|
38964
39694
|
* Defines whether the tab content is collapsed.
|
|
@@ -39053,6 +39783,9 @@ declare module "sap/ui/webc/main/TabContainer" {
|
|
|
39053
39783
|
tabSelect?: (oEvent: TabContainer$TabSelectEvent) => void;
|
|
39054
39784
|
}
|
|
39055
39785
|
|
|
39786
|
+
/**
|
|
39787
|
+
* Parameters of the TabContainer#tabSelect event.
|
|
39788
|
+
*/
|
|
39056
39789
|
export interface TabContainer$TabSelectEventParameters {
|
|
39057
39790
|
/**
|
|
39058
39791
|
* The selected `tab`.
|
|
@@ -39066,6 +39799,9 @@ declare module "sap/ui/webc/main/TabContainer" {
|
|
|
39066
39799
|
tabIndex?: int;
|
|
39067
39800
|
}
|
|
39068
39801
|
|
|
39802
|
+
/**
|
|
39803
|
+
* Event object of the TabContainer#tabSelect event.
|
|
39804
|
+
*/
|
|
39069
39805
|
export type TabContainer$TabSelectEvent = Event<
|
|
39070
39806
|
TabContainer$TabSelectEventParameters,
|
|
39071
39807
|
TabContainer
|
|
@@ -40137,7 +40873,11 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40137
40873
|
sWidth: CSSSize
|
|
40138
40874
|
): this;
|
|
40139
40875
|
}
|
|
40140
|
-
|
|
40876
|
+
/**
|
|
40877
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
40878
|
+
*
|
|
40879
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
40880
|
+
*/
|
|
40141
40881
|
export interface $TableSettings extends $WebComponentSettings {
|
|
40142
40882
|
/**
|
|
40143
40883
|
* Defines the accessible ARIA name of the component.
|
|
@@ -40292,10 +41032,19 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40292
41032
|
selectionChange?: (oEvent: Table$SelectionChangeEvent) => void;
|
|
40293
41033
|
}
|
|
40294
41034
|
|
|
41035
|
+
/**
|
|
41036
|
+
* Parameters of the Table#loadMore event.
|
|
41037
|
+
*/
|
|
40295
41038
|
export interface Table$LoadMoreEventParameters {}
|
|
40296
41039
|
|
|
41040
|
+
/**
|
|
41041
|
+
* Event object of the Table#loadMore event.
|
|
41042
|
+
*/
|
|
40297
41043
|
export type Table$LoadMoreEvent = Event<Table$LoadMoreEventParameters, Table>;
|
|
40298
41044
|
|
|
41045
|
+
/**
|
|
41046
|
+
* Parameters of the Table#popinChange event.
|
|
41047
|
+
*/
|
|
40299
41048
|
export interface Table$PopinChangeEventParameters {
|
|
40300
41049
|
/**
|
|
40301
41050
|
* popped-in columns.
|
|
@@ -40303,11 +41052,17 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40303
41052
|
poppedColumns?: any[];
|
|
40304
41053
|
}
|
|
40305
41054
|
|
|
41055
|
+
/**
|
|
41056
|
+
* Event object of the Table#popinChange event.
|
|
41057
|
+
*/
|
|
40306
41058
|
export type Table$PopinChangeEvent = Event<
|
|
40307
41059
|
Table$PopinChangeEventParameters,
|
|
40308
41060
|
Table
|
|
40309
41061
|
>;
|
|
40310
41062
|
|
|
41063
|
+
/**
|
|
41064
|
+
* Parameters of the Table#rowClick event.
|
|
41065
|
+
*/
|
|
40311
41066
|
export interface Table$RowClickEventParameters {
|
|
40312
41067
|
/**
|
|
40313
41068
|
* the activated row.
|
|
@@ -40315,8 +41070,14 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40315
41070
|
row?: HTMLElement;
|
|
40316
41071
|
}
|
|
40317
41072
|
|
|
41073
|
+
/**
|
|
41074
|
+
* Event object of the Table#rowClick event.
|
|
41075
|
+
*/
|
|
40318
41076
|
export type Table$RowClickEvent = Event<Table$RowClickEventParameters, Table>;
|
|
40319
41077
|
|
|
41078
|
+
/**
|
|
41079
|
+
* Parameters of the Table#selectionChange event.
|
|
41080
|
+
*/
|
|
40320
41081
|
export interface Table$SelectionChangeEventParameters {
|
|
40321
41082
|
/**
|
|
40322
41083
|
* An array of the selected rows.
|
|
@@ -40329,6 +41090,9 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40329
41090
|
previouslySelectedRows?: any[];
|
|
40330
41091
|
}
|
|
40331
41092
|
|
|
41093
|
+
/**
|
|
41094
|
+
* Event object of the Table#selectionChange event.
|
|
41095
|
+
*/
|
|
40332
41096
|
export type Table$SelectionChangeEvent = Event<
|
|
40333
41097
|
Table$SelectionChangeEventParameters,
|
|
40334
41098
|
Table
|
|
@@ -40507,7 +41271,11 @@ declare module "sap/ui/webc/main/TableCell" {
|
|
|
40507
41271
|
vContent: int | string | Control
|
|
40508
41272
|
): Control | null;
|
|
40509
41273
|
}
|
|
40510
|
-
|
|
41274
|
+
/**
|
|
41275
|
+
* Describes the settings that can be provided to the TableCell constructor.
|
|
41276
|
+
*
|
|
41277
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
41278
|
+
*/
|
|
40511
41279
|
export interface $TableCellSettings extends $WebComponentSettings {
|
|
40512
41280
|
/**
|
|
40513
41281
|
* Specifies the content of the component.
|
|
@@ -40846,7 +41614,11 @@ declare module "sap/ui/webc/main/TableColumn" {
|
|
|
40846
41614
|
sPopinText?: string
|
|
40847
41615
|
): this;
|
|
40848
41616
|
}
|
|
40849
|
-
|
|
41617
|
+
/**
|
|
41618
|
+
* Describes the settings that can be provided to the TableColumn constructor.
|
|
41619
|
+
*
|
|
41620
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
41621
|
+
*/
|
|
40850
41622
|
export interface $TableColumnSettings extends $WebComponentSettings {
|
|
40851
41623
|
/**
|
|
40852
41624
|
* According to your `minWidth` settings, the component can be hidden in different screen sizes.
|
|
@@ -41014,7 +41786,11 @@ declare module "sap/ui/webc/main/TableGroupRow" {
|
|
|
41014
41786
|
sText?: string
|
|
41015
41787
|
): this;
|
|
41016
41788
|
}
|
|
41017
|
-
|
|
41789
|
+
/**
|
|
41790
|
+
* Describes the settings that can be provided to the TableGroupRow constructor.
|
|
41791
|
+
*
|
|
41792
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
41793
|
+
*/
|
|
41018
41794
|
export interface $TableGroupRowSettings extends $WebComponentSettings {
|
|
41019
41795
|
/**
|
|
41020
41796
|
* Defines the content of the control
|
|
@@ -41303,7 +42079,11 @@ declare module "sap/ui/webc/main/TableRow" {
|
|
|
41303
42079
|
sType?: TableRowType | keyof typeof TableRowType
|
|
41304
42080
|
): this;
|
|
41305
42081
|
}
|
|
41306
|
-
|
|
42082
|
+
/**
|
|
42083
|
+
* Describes the settings that can be provided to the TableRow constructor.
|
|
42084
|
+
*
|
|
42085
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
42086
|
+
*/
|
|
41307
42087
|
export interface $TableRowSettings extends $WebComponentSettings {
|
|
41308
42088
|
/**
|
|
41309
42089
|
* Indicates if the table row is navigated.
|
|
@@ -41432,7 +42212,11 @@ declare module "sap/ui/webc/main/TabSeparator" {
|
|
|
41432
42212
|
*/
|
|
41433
42213
|
getTabInStripDomRef(): void;
|
|
41434
42214
|
}
|
|
41435
|
-
|
|
42215
|
+
/**
|
|
42216
|
+
* Describes the settings that can be provided to the TabSeparator constructor.
|
|
42217
|
+
*
|
|
42218
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
42219
|
+
*/
|
|
41436
42220
|
export interface $TabSeparatorSettings extends $WebComponentSettings {}
|
|
41437
42221
|
}
|
|
41438
42222
|
|
|
@@ -42232,7 +43016,11 @@ declare module "sap/ui/webc/main/TextArea" {
|
|
|
42232
43016
|
sWidth: CSSSize
|
|
42233
43017
|
): this;
|
|
42234
43018
|
}
|
|
42235
|
-
|
|
43019
|
+
/**
|
|
43020
|
+
* Describes the settings that can be provided to the TextArea constructor.
|
|
43021
|
+
*
|
|
43022
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
43023
|
+
*/
|
|
42236
43024
|
export interface $TextAreaSettings extends $WebComponentSettings {
|
|
42237
43025
|
/**
|
|
42238
43026
|
* Defines the accessible ARIA name of the component.
|
|
@@ -42360,15 +43148,27 @@ declare module "sap/ui/webc/main/TextArea" {
|
|
|
42360
43148
|
input?: (oEvent: Event) => void;
|
|
42361
43149
|
}
|
|
42362
43150
|
|
|
43151
|
+
/**
|
|
43152
|
+
* Parameters of the TextArea#change event.
|
|
43153
|
+
*/
|
|
42363
43154
|
export interface TextArea$ChangeEventParameters {}
|
|
42364
43155
|
|
|
43156
|
+
/**
|
|
43157
|
+
* Event object of the TextArea#change event.
|
|
43158
|
+
*/
|
|
42365
43159
|
export type TextArea$ChangeEvent = Event<
|
|
42366
43160
|
TextArea$ChangeEventParameters,
|
|
42367
43161
|
TextArea
|
|
42368
43162
|
>;
|
|
42369
43163
|
|
|
43164
|
+
/**
|
|
43165
|
+
* Parameters of the TextArea#input event.
|
|
43166
|
+
*/
|
|
42370
43167
|
export interface TextArea$InputEventParameters {}
|
|
42371
43168
|
|
|
43169
|
+
/**
|
|
43170
|
+
* Event object of the TextArea#input event.
|
|
43171
|
+
*/
|
|
42372
43172
|
export type TextArea$InputEvent = Event<
|
|
42373
43173
|
TextArea$InputEventParameters,
|
|
42374
43174
|
TextArea
|
|
@@ -42968,7 +43768,11 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
42968
43768
|
sWidth: CSSSize
|
|
42969
43769
|
): this;
|
|
42970
43770
|
}
|
|
42971
|
-
|
|
43771
|
+
/**
|
|
43772
|
+
* Describes the settings that can be provided to the TimePicker constructor.
|
|
43773
|
+
*
|
|
43774
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
43775
|
+
*/
|
|
42972
43776
|
export interface $TimePickerSettings extends $WebComponentSettings {
|
|
42973
43777
|
/**
|
|
42974
43778
|
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
@@ -43045,6 +43849,9 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43045
43849
|
input?: (oEvent: TimePicker$InputEvent) => void;
|
|
43046
43850
|
}
|
|
43047
43851
|
|
|
43852
|
+
/**
|
|
43853
|
+
* Parameters of the TimePicker#change event.
|
|
43854
|
+
*/
|
|
43048
43855
|
export interface TimePicker$ChangeEventParameters {
|
|
43049
43856
|
/**
|
|
43050
43857
|
* The submitted value.
|
|
@@ -43057,11 +43864,17 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43057
43864
|
valid?: boolean;
|
|
43058
43865
|
}
|
|
43059
43866
|
|
|
43867
|
+
/**
|
|
43868
|
+
* Event object of the TimePicker#change event.
|
|
43869
|
+
*/
|
|
43060
43870
|
export type TimePicker$ChangeEvent = Event<
|
|
43061
43871
|
TimePicker$ChangeEventParameters,
|
|
43062
43872
|
TimePicker
|
|
43063
43873
|
>;
|
|
43064
43874
|
|
|
43875
|
+
/**
|
|
43876
|
+
* Parameters of the TimePicker#input event.
|
|
43877
|
+
*/
|
|
43065
43878
|
export interface TimePicker$InputEventParameters {
|
|
43066
43879
|
/**
|
|
43067
43880
|
* The current value.
|
|
@@ -43074,6 +43887,9 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43074
43887
|
valid?: boolean;
|
|
43075
43888
|
}
|
|
43076
43889
|
|
|
43890
|
+
/**
|
|
43891
|
+
* Event object of the TimePicker#input event.
|
|
43892
|
+
*/
|
|
43077
43893
|
export type TimePicker$InputEvent = Event<
|
|
43078
43894
|
TimePicker$InputEventParameters,
|
|
43079
43895
|
TimePicker
|
|
@@ -43281,7 +44097,11 @@ declare module "sap/ui/webc/main/Title" {
|
|
|
43281
44097
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
43282
44098
|
): this;
|
|
43283
44099
|
}
|
|
43284
|
-
|
|
44100
|
+
/**
|
|
44101
|
+
* Describes the settings that can be provided to the Title constructor.
|
|
44102
|
+
*
|
|
44103
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
44104
|
+
*/
|
|
43285
44105
|
export interface $TitleSettings extends $WebComponentSettings {
|
|
43286
44106
|
/**
|
|
43287
44107
|
* Defines the component level. Available options are: `"H6"` to `"H1"`.
|
|
@@ -43563,7 +44383,11 @@ declare module "sap/ui/webc/main/Toast" {
|
|
|
43563
44383
|
*/
|
|
43564
44384
|
show(): void;
|
|
43565
44385
|
}
|
|
43566
|
-
|
|
44386
|
+
/**
|
|
44387
|
+
* Describes the settings that can be provided to the Toast constructor.
|
|
44388
|
+
*
|
|
44389
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
44390
|
+
*/
|
|
43567
44391
|
export interface $ToastSettings extends $WebComponentSettings {
|
|
43568
44392
|
/**
|
|
43569
44393
|
* Defines the duration in milliseconds for which component remains on the screen before it's automatically
|
|
@@ -44146,7 +44970,11 @@ declare module "sap/ui/webc/main/ToggleButton" {
|
|
|
44146
44970
|
sWidth: CSSSize
|
|
44147
44971
|
): this;
|
|
44148
44972
|
}
|
|
44149
|
-
|
|
44973
|
+
/**
|
|
44974
|
+
* Describes the settings that can be provided to the ToggleButton constructor.
|
|
44975
|
+
*
|
|
44976
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
44977
|
+
*/
|
|
44150
44978
|
export interface $ToggleButtonSettings extends $WebComponentSettings {
|
|
44151
44979
|
/**
|
|
44152
44980
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -44241,8 +45069,14 @@ declare module "sap/ui/webc/main/ToggleButton" {
|
|
|
44241
45069
|
click?: (oEvent: Event) => void;
|
|
44242
45070
|
}
|
|
44243
45071
|
|
|
45072
|
+
/**
|
|
45073
|
+
* Parameters of the ToggleButton#click event.
|
|
45074
|
+
*/
|
|
44244
45075
|
export interface ToggleButton$ClickEventParameters {}
|
|
44245
45076
|
|
|
45077
|
+
/**
|
|
45078
|
+
* Event object of the ToggleButton#click event.
|
|
45079
|
+
*/
|
|
44246
45080
|
export type ToggleButton$ClickEvent = Event<
|
|
44247
45081
|
ToggleButton$ClickEventParameters,
|
|
44248
45082
|
ToggleButton
|
|
@@ -44589,7 +45423,11 @@ declare module "sap/ui/webc/main/Token" {
|
|
|
44589
45423
|
sText?: string
|
|
44590
45424
|
): this;
|
|
44591
45425
|
}
|
|
44592
|
-
|
|
45426
|
+
/**
|
|
45427
|
+
* Describes the settings that can be provided to the Token constructor.
|
|
45428
|
+
*
|
|
45429
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
45430
|
+
*/
|
|
44593
45431
|
export interface $TokenSettings extends $WebComponentSettings {
|
|
44594
45432
|
/**
|
|
44595
45433
|
* Defines whether the component is read-only.
|
|
@@ -44621,8 +45459,14 @@ declare module "sap/ui/webc/main/Token" {
|
|
|
44621
45459
|
select?: (oEvent: Event) => void;
|
|
44622
45460
|
}
|
|
44623
45461
|
|
|
45462
|
+
/**
|
|
45463
|
+
* Parameters of the Token#select event.
|
|
45464
|
+
*/
|
|
44624
45465
|
export interface Token$SelectEventParameters {}
|
|
44625
45466
|
|
|
45467
|
+
/**
|
|
45468
|
+
* Event object of the Token#select event.
|
|
45469
|
+
*/
|
|
44626
45470
|
export type Token$SelectEvent = Event<Token$SelectEventParameters, Token>;
|
|
44627
45471
|
}
|
|
44628
45472
|
|
|
@@ -44895,7 +45739,11 @@ declare module "sap/ui/webc/main/Toolbar" {
|
|
|
44895
45739
|
sAlignContent: ToolbarAlign | keyof typeof ToolbarAlign
|
|
44896
45740
|
): this;
|
|
44897
45741
|
}
|
|
44898
|
-
|
|
45742
|
+
/**
|
|
45743
|
+
* Describes the settings that can be provided to the Toolbar constructor.
|
|
45744
|
+
*
|
|
45745
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
45746
|
+
*/
|
|
44899
45747
|
export interface $ToolbarSettings extends $WebComponentSettings {
|
|
44900
45748
|
/**
|
|
44901
45749
|
* Defines the accessible ARIA name of the component.
|
|
@@ -45437,7 +46285,11 @@ declare module "sap/ui/webc/main/ToolbarButton" {
|
|
|
45437
46285
|
sWidth?: CSSSize
|
|
45438
46286
|
): this;
|
|
45439
46287
|
}
|
|
45440
|
-
|
|
46288
|
+
/**
|
|
46289
|
+
* Describes the settings that can be provided to the ToolbarButton constructor.
|
|
46290
|
+
*
|
|
46291
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
46292
|
+
*/
|
|
45441
46293
|
export interface $ToolbarButtonSettings extends $WebComponentSettings {
|
|
45442
46294
|
/**
|
|
45443
46295
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -45528,8 +46380,14 @@ declare module "sap/ui/webc/main/ToolbarButton" {
|
|
|
45528
46380
|
click?: (oEvent: Event) => void;
|
|
45529
46381
|
}
|
|
45530
46382
|
|
|
46383
|
+
/**
|
|
46384
|
+
* Parameters of the ToolbarButton#click event.
|
|
46385
|
+
*/
|
|
45531
46386
|
export interface ToolbarButton$ClickEventParameters {}
|
|
45532
46387
|
|
|
46388
|
+
/**
|
|
46389
|
+
* Event object of the ToolbarButton#click event.
|
|
46390
|
+
*/
|
|
45533
46391
|
export type ToolbarButton$ClickEvent = Event<
|
|
45534
46392
|
ToolbarButton$ClickEventParameters,
|
|
45535
46393
|
ToolbarButton
|
|
@@ -46120,7 +46978,11 @@ declare module "sap/ui/webc/main/ToolbarSelect" {
|
|
|
46120
46978
|
sWidth?: CSSSize
|
|
46121
46979
|
): this;
|
|
46122
46980
|
}
|
|
46123
|
-
|
|
46981
|
+
/**
|
|
46982
|
+
* Describes the settings that can be provided to the ToolbarSelect constructor.
|
|
46983
|
+
*
|
|
46984
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
46985
|
+
*/
|
|
46124
46986
|
export interface $ToolbarSelectSettings extends $WebComponentSettings {
|
|
46125
46987
|
/**
|
|
46126
46988
|
* Defines the accessible ARIA name of the component.
|
|
@@ -46189,6 +47051,9 @@ declare module "sap/ui/webc/main/ToolbarSelect" {
|
|
|
46189
47051
|
open?: (oEvent: Event) => void;
|
|
46190
47052
|
}
|
|
46191
47053
|
|
|
47054
|
+
/**
|
|
47055
|
+
* Parameters of the ToolbarSelect#change event.
|
|
47056
|
+
*/
|
|
46192
47057
|
export interface ToolbarSelect$ChangeEventParameters {
|
|
46193
47058
|
/**
|
|
46194
47059
|
* the selected option.
|
|
@@ -46196,20 +47061,35 @@ declare module "sap/ui/webc/main/ToolbarSelect" {
|
|
|
46196
47061
|
selectedOption?: HTMLElement;
|
|
46197
47062
|
}
|
|
46198
47063
|
|
|
47064
|
+
/**
|
|
47065
|
+
* Event object of the ToolbarSelect#change event.
|
|
47066
|
+
*/
|
|
46199
47067
|
export type ToolbarSelect$ChangeEvent = Event<
|
|
46200
47068
|
ToolbarSelect$ChangeEventParameters,
|
|
46201
47069
|
ToolbarSelect
|
|
46202
47070
|
>;
|
|
46203
47071
|
|
|
47072
|
+
/**
|
|
47073
|
+
* Parameters of the ToolbarSelect#close event.
|
|
47074
|
+
*/
|
|
46204
47075
|
export interface ToolbarSelect$CloseEventParameters {}
|
|
46205
47076
|
|
|
47077
|
+
/**
|
|
47078
|
+
* Event object of the ToolbarSelect#close event.
|
|
47079
|
+
*/
|
|
46206
47080
|
export type ToolbarSelect$CloseEvent = Event<
|
|
46207
47081
|
ToolbarSelect$CloseEventParameters,
|
|
46208
47082
|
ToolbarSelect
|
|
46209
47083
|
>;
|
|
46210
47084
|
|
|
47085
|
+
/**
|
|
47086
|
+
* Parameters of the ToolbarSelect#open event.
|
|
47087
|
+
*/
|
|
46211
47088
|
export interface ToolbarSelect$OpenEventParameters {}
|
|
46212
47089
|
|
|
47090
|
+
/**
|
|
47091
|
+
* Event object of the ToolbarSelect#open event.
|
|
47092
|
+
*/
|
|
46213
47093
|
export type ToolbarSelect$OpenEvent = Event<
|
|
46214
47094
|
ToolbarSelect$OpenEventParameters,
|
|
46215
47095
|
ToolbarSelect
|
|
@@ -46361,7 +47241,11 @@ declare module "sap/ui/webc/main/ToolbarSelectOption" {
|
|
|
46361
47241
|
sText?: string
|
|
46362
47242
|
): this;
|
|
46363
47243
|
}
|
|
46364
|
-
|
|
47244
|
+
/**
|
|
47245
|
+
* Describes the settings that can be provided to the ToolbarSelectOption constructor.
|
|
47246
|
+
*
|
|
47247
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47248
|
+
*/
|
|
46365
47249
|
export interface $ToolbarSelectOptionSettings extends $WebComponentSettings {
|
|
46366
47250
|
/**
|
|
46367
47251
|
* Defines the selected state of the component.
|
|
@@ -46465,7 +47349,11 @@ declare module "sap/ui/webc/main/ToolbarSeparator" {
|
|
|
46465
47349
|
*/
|
|
46466
47350
|
static getMetadata(): WebComponentMetadata;
|
|
46467
47351
|
}
|
|
46468
|
-
|
|
47352
|
+
/**
|
|
47353
|
+
* Describes the settings that can be provided to the ToolbarSeparator constructor.
|
|
47354
|
+
*
|
|
47355
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47356
|
+
*/
|
|
46469
47357
|
export interface $ToolbarSeparatorSettings extends $WebComponentSettings {}
|
|
46470
47358
|
}
|
|
46471
47359
|
|
|
@@ -46594,7 +47482,11 @@ declare module "sap/ui/webc/main/ToolbarSpacer" {
|
|
|
46594
47482
|
sWidth?: CSSSize
|
|
46595
47483
|
): this;
|
|
46596
47484
|
}
|
|
46597
|
-
|
|
47485
|
+
/**
|
|
47486
|
+
* Describes the settings that can be provided to the ToolbarSpacer constructor.
|
|
47487
|
+
*
|
|
47488
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47489
|
+
*/
|
|
46598
47490
|
export interface $ToolbarSpacerSettings extends $WebComponentSettings {
|
|
46599
47491
|
/**
|
|
46600
47492
|
* Defines the width of the spacer.
|
|
@@ -47637,7 +48529,11 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47637
48529
|
callback: Function
|
|
47638
48530
|
): void;
|
|
47639
48531
|
}
|
|
47640
|
-
|
|
48532
|
+
/**
|
|
48533
|
+
* Describes the settings that can be provided to the Tree constructor.
|
|
48534
|
+
*
|
|
48535
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
48536
|
+
*/
|
|
47641
48537
|
export interface $TreeSettings extends $WebComponentSettings {
|
|
47642
48538
|
/**
|
|
47643
48539
|
* Defines the accessible name of the component.
|
|
@@ -47748,6 +48644,9 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47748
48644
|
selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
|
|
47749
48645
|
}
|
|
47750
48646
|
|
|
48647
|
+
/**
|
|
48648
|
+
* Parameters of the Tree#itemClick event.
|
|
48649
|
+
*/
|
|
47751
48650
|
export interface Tree$ItemClickEventParameters {
|
|
47752
48651
|
/**
|
|
47753
48652
|
* The clicked item.
|
|
@@ -47755,8 +48654,14 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47755
48654
|
item?: HTMLElement;
|
|
47756
48655
|
}
|
|
47757
48656
|
|
|
48657
|
+
/**
|
|
48658
|
+
* Event object of the Tree#itemClick event.
|
|
48659
|
+
*/
|
|
47758
48660
|
export type Tree$ItemClickEvent = Event<Tree$ItemClickEventParameters, Tree>;
|
|
47759
48661
|
|
|
48662
|
+
/**
|
|
48663
|
+
* Parameters of the Tree#itemDelete event.
|
|
48664
|
+
*/
|
|
47760
48665
|
export interface Tree$ItemDeleteEventParameters {
|
|
47761
48666
|
/**
|
|
47762
48667
|
* the deleted item.
|
|
@@ -47764,11 +48669,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47764
48669
|
item?: HTMLElement;
|
|
47765
48670
|
}
|
|
47766
48671
|
|
|
48672
|
+
/**
|
|
48673
|
+
* Event object of the Tree#itemDelete event.
|
|
48674
|
+
*/
|
|
47767
48675
|
export type Tree$ItemDeleteEvent = Event<
|
|
47768
48676
|
Tree$ItemDeleteEventParameters,
|
|
47769
48677
|
Tree
|
|
47770
48678
|
>;
|
|
47771
48679
|
|
|
48680
|
+
/**
|
|
48681
|
+
* Parameters of the Tree#itemMouseout event.
|
|
48682
|
+
*/
|
|
47772
48683
|
export interface Tree$ItemMouseoutEventParameters {
|
|
47773
48684
|
/**
|
|
47774
48685
|
* the hovered item.
|
|
@@ -47776,11 +48687,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47776
48687
|
item?: HTMLElement;
|
|
47777
48688
|
}
|
|
47778
48689
|
|
|
48690
|
+
/**
|
|
48691
|
+
* Event object of the Tree#itemMouseout event.
|
|
48692
|
+
*/
|
|
47779
48693
|
export type Tree$ItemMouseoutEvent = Event<
|
|
47780
48694
|
Tree$ItemMouseoutEventParameters,
|
|
47781
48695
|
Tree
|
|
47782
48696
|
>;
|
|
47783
48697
|
|
|
48698
|
+
/**
|
|
48699
|
+
* Parameters of the Tree#itemMouseover event.
|
|
48700
|
+
*/
|
|
47784
48701
|
export interface Tree$ItemMouseoverEventParameters {
|
|
47785
48702
|
/**
|
|
47786
48703
|
* the hovered item.
|
|
@@ -47788,11 +48705,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47788
48705
|
item?: HTMLElement;
|
|
47789
48706
|
}
|
|
47790
48707
|
|
|
48708
|
+
/**
|
|
48709
|
+
* Event object of the Tree#itemMouseover event.
|
|
48710
|
+
*/
|
|
47791
48711
|
export type Tree$ItemMouseoverEvent = Event<
|
|
47792
48712
|
Tree$ItemMouseoverEventParameters,
|
|
47793
48713
|
Tree
|
|
47794
48714
|
>;
|
|
47795
48715
|
|
|
48716
|
+
/**
|
|
48717
|
+
* Parameters of the Tree#itemToggle event.
|
|
48718
|
+
*/
|
|
47796
48719
|
export interface Tree$ItemToggleEventParameters {
|
|
47797
48720
|
/**
|
|
47798
48721
|
* the toggled item.
|
|
@@ -47800,11 +48723,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47800
48723
|
item?: HTMLElement;
|
|
47801
48724
|
}
|
|
47802
48725
|
|
|
48726
|
+
/**
|
|
48727
|
+
* Event object of the Tree#itemToggle event.
|
|
48728
|
+
*/
|
|
47803
48729
|
export type Tree$ItemToggleEvent = Event<
|
|
47804
48730
|
Tree$ItemToggleEventParameters,
|
|
47805
48731
|
Tree
|
|
47806
48732
|
>;
|
|
47807
48733
|
|
|
48734
|
+
/**
|
|
48735
|
+
* Parameters of the Tree#selectionChange event.
|
|
48736
|
+
*/
|
|
47808
48737
|
export interface Tree$SelectionChangeEventParameters {
|
|
47809
48738
|
/**
|
|
47810
48739
|
* An array of the selected items.
|
|
@@ -47822,6 +48751,9 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47822
48751
|
targetItem?: HTMLElement;
|
|
47823
48752
|
}
|
|
47824
48753
|
|
|
48754
|
+
/**
|
|
48755
|
+
* Event object of the Tree#selectionChange event.
|
|
48756
|
+
*/
|
|
47825
48757
|
export type Tree$SelectionChangeEvent = Event<
|
|
47826
48758
|
Tree$SelectionChangeEventParameters,
|
|
47827
48759
|
Tree
|
|
@@ -48520,7 +49452,11 @@ declare module "sap/ui/webc/main/TreeItem" {
|
|
|
48520
49452
|
*/
|
|
48521
49453
|
toggle(): void;
|
|
48522
49454
|
}
|
|
48523
|
-
|
|
49455
|
+
/**
|
|
49456
|
+
* Describes the settings that can be provided to the TreeItem constructor.
|
|
49457
|
+
*
|
|
49458
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
49459
|
+
*/
|
|
48524
49460
|
export interface $TreeItemSettings extends $WebComponentSettings {
|
|
48525
49461
|
/**
|
|
48526
49462
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -48638,8 +49574,14 @@ declare module "sap/ui/webc/main/TreeItem" {
|
|
|
48638
49574
|
detailClick?: (oEvent: Event) => void;
|
|
48639
49575
|
}
|
|
48640
49576
|
|
|
49577
|
+
/**
|
|
49578
|
+
* Parameters of the TreeItem#detailClick event.
|
|
49579
|
+
*/
|
|
48641
49580
|
export interface TreeItem$DetailClickEventParameters {}
|
|
48642
49581
|
|
|
49582
|
+
/**
|
|
49583
|
+
* Event object of the TreeItem#detailClick event.
|
|
49584
|
+
*/
|
|
48643
49585
|
export type TreeItem$DetailClickEvent = Event<
|
|
48644
49586
|
TreeItem$DetailClickEventParameters,
|
|
48645
49587
|
TreeItem
|
|
@@ -49392,7 +50334,11 @@ declare module "sap/ui/webc/main/TreeItemCustom" {
|
|
|
49392
50334
|
*/
|
|
49393
50335
|
toggle(): void;
|
|
49394
50336
|
}
|
|
49395
|
-
|
|
50337
|
+
/**
|
|
50338
|
+
* Describes the settings that can be provided to the TreeItemCustom constructor.
|
|
50339
|
+
*
|
|
50340
|
+
* @experimental (since 1.115.0) - This control is experimental and its API might change significantly.
|
|
50341
|
+
*/
|
|
49396
50342
|
export interface $TreeItemCustomSettings extends $WebComponentSettings {
|
|
49397
50343
|
/**
|
|
49398
50344
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -49510,8 +50456,14 @@ declare module "sap/ui/webc/main/TreeItemCustom" {
|
|
|
49510
50456
|
detailClick?: (oEvent: Event) => void;
|
|
49511
50457
|
}
|
|
49512
50458
|
|
|
50459
|
+
/**
|
|
50460
|
+
* Parameters of the TreeItemCustom#detailClick event.
|
|
50461
|
+
*/
|
|
49513
50462
|
export interface TreeItemCustom$DetailClickEventParameters {}
|
|
49514
50463
|
|
|
50464
|
+
/**
|
|
50465
|
+
* Event object of the TreeItemCustom#detailClick event.
|
|
50466
|
+
*/
|
|
49515
50467
|
export type TreeItemCustom$DetailClickEvent = Event<
|
|
49516
50468
|
TreeItemCustom$DetailClickEventParameters,
|
|
49517
50469
|
TreeItemCustom
|