@openui5/types 1.122.1 → 1.123.1
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 +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- 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 +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- 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 +123 -23
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/main/library" {
|
|
4
4
|
/**
|
|
@@ -2018,7 +2018,11 @@ declare module "sap/ui/webc/main/Avatar" {
|
|
|
2018
2018
|
sSize?: AvatarSize | keyof typeof AvatarSize
|
|
2019
2019
|
): this;
|
|
2020
2020
|
}
|
|
2021
|
-
|
|
2021
|
+
/**
|
|
2022
|
+
* Describes the settings that can be provided to the Avatar constructor.
|
|
2023
|
+
*
|
|
2024
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
2025
|
+
*/
|
|
2022
2026
|
export interface $AvatarSettings extends $WebComponentSettings {
|
|
2023
2027
|
/**
|
|
2024
2028
|
* Defines the text alternative of the component. If not provided a default text alternative will be set,
|
|
@@ -2159,8 +2163,14 @@ declare module "sap/ui/webc/main/Avatar" {
|
|
|
2159
2163
|
click?: (oEvent: Event) => void;
|
|
2160
2164
|
}
|
|
2161
2165
|
|
|
2166
|
+
/**
|
|
2167
|
+
* Parameters of the Avatar#click event.
|
|
2168
|
+
*/
|
|
2162
2169
|
export interface Avatar$ClickEventParameters {}
|
|
2163
2170
|
|
|
2171
|
+
/**
|
|
2172
|
+
* Event object of the Avatar#click event.
|
|
2173
|
+
*/
|
|
2164
2174
|
export type Avatar$ClickEvent = Event<Avatar$ClickEventParameters, Avatar>;
|
|
2165
2175
|
}
|
|
2166
2176
|
|
|
@@ -2614,7 +2624,11 @@ declare module "sap/ui/webc/main/AvatarGroup" {
|
|
|
2614
2624
|
sType?: AvatarGroupType | keyof typeof AvatarGroupType
|
|
2615
2625
|
): this;
|
|
2616
2626
|
}
|
|
2617
|
-
|
|
2627
|
+
/**
|
|
2628
|
+
* Describes the settings that can be provided to the AvatarGroup constructor.
|
|
2629
|
+
*
|
|
2630
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
2631
|
+
*/
|
|
2618
2632
|
export interface $AvatarGroupSettings extends $WebComponentSettings {
|
|
2619
2633
|
/**
|
|
2620
2634
|
* Defines the mode of the `AvatarGroup`.
|
|
@@ -2656,6 +2670,9 @@ declare module "sap/ui/webc/main/AvatarGroup" {
|
|
|
2656
2670
|
overflow?: (oEvent: Event) => void;
|
|
2657
2671
|
}
|
|
2658
2672
|
|
|
2673
|
+
/**
|
|
2674
|
+
* Parameters of the AvatarGroup#click event.
|
|
2675
|
+
*/
|
|
2659
2676
|
export interface AvatarGroup$ClickEventParameters {
|
|
2660
2677
|
/**
|
|
2661
2678
|
* The DOM ref of the clicked item.
|
|
@@ -2668,13 +2685,22 @@ declare module "sap/ui/webc/main/AvatarGroup" {
|
|
|
2668
2685
|
overflowButtonClicked?: boolean;
|
|
2669
2686
|
}
|
|
2670
2687
|
|
|
2688
|
+
/**
|
|
2689
|
+
* Event object of the AvatarGroup#click event.
|
|
2690
|
+
*/
|
|
2671
2691
|
export type AvatarGroup$ClickEvent = Event<
|
|
2672
2692
|
AvatarGroup$ClickEventParameters,
|
|
2673
2693
|
AvatarGroup
|
|
2674
2694
|
>;
|
|
2675
2695
|
|
|
2696
|
+
/**
|
|
2697
|
+
* Parameters of the AvatarGroup#overflow event.
|
|
2698
|
+
*/
|
|
2676
2699
|
export interface AvatarGroup$OverflowEventParameters {}
|
|
2677
2700
|
|
|
2701
|
+
/**
|
|
2702
|
+
* Event object of the AvatarGroup#overflow event.
|
|
2703
|
+
*/
|
|
2678
2704
|
export type AvatarGroup$OverflowEvent = Event<
|
|
2679
2705
|
AvatarGroup$OverflowEventParameters,
|
|
2680
2706
|
AvatarGroup
|
|
@@ -2918,7 +2944,11 @@ declare module "sap/ui/webc/main/Badge" {
|
|
|
2918
2944
|
sText?: string
|
|
2919
2945
|
): this;
|
|
2920
2946
|
}
|
|
2921
|
-
|
|
2947
|
+
/**
|
|
2948
|
+
* Describes the settings that can be provided to the Badge constructor.
|
|
2949
|
+
*
|
|
2950
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
2951
|
+
*/
|
|
2922
2952
|
export interface $BadgeSettings extends $WebComponentSettings {
|
|
2923
2953
|
/**
|
|
2924
2954
|
* Defines the color scheme of the component. There are 10 predefined schemes. To use one you can set a
|
|
@@ -3308,7 +3338,11 @@ declare module "sap/ui/webc/main/Breadcrumbs" {
|
|
|
3308
3338
|
| keyof typeof BreadcrumbsSeparatorStyle
|
|
3309
3339
|
): this;
|
|
3310
3340
|
}
|
|
3311
|
-
|
|
3341
|
+
/**
|
|
3342
|
+
* Describes the settings that can be provided to the Breadcrumbs constructor.
|
|
3343
|
+
*
|
|
3344
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
3345
|
+
*/
|
|
3312
3346
|
export interface $BreadcrumbsSettings extends $WebComponentSettings {
|
|
3313
3347
|
/**
|
|
3314
3348
|
* Defines the visual indication and behavior of the breadcrumbs. Available options are `Standard` (by default)
|
|
@@ -3360,6 +3394,9 @@ declare module "sap/ui/webc/main/Breadcrumbs" {
|
|
|
3360
3394
|
itemClick?: (oEvent: Breadcrumbs$ItemClickEvent) => void;
|
|
3361
3395
|
}
|
|
3362
3396
|
|
|
3397
|
+
/**
|
|
3398
|
+
* Parameters of the Breadcrumbs#itemClick event.
|
|
3399
|
+
*/
|
|
3363
3400
|
export interface Breadcrumbs$ItemClickEventParameters {
|
|
3364
3401
|
/**
|
|
3365
3402
|
* The clicked item.
|
|
@@ -3387,6 +3424,9 @@ declare module "sap/ui/webc/main/Breadcrumbs" {
|
|
|
3387
3424
|
shiftKey?: boolean;
|
|
3388
3425
|
}
|
|
3389
3426
|
|
|
3427
|
+
/**
|
|
3428
|
+
* Event object of the Breadcrumbs#itemClick event.
|
|
3429
|
+
*/
|
|
3390
3430
|
export type Breadcrumbs$ItemClickEvent = Event<
|
|
3391
3431
|
Breadcrumbs$ItemClickEventParameters,
|
|
3392
3432
|
Breadcrumbs
|
|
@@ -3618,7 +3658,11 @@ declare module "sap/ui/webc/main/BreadcrumbsItem" {
|
|
|
3618
3658
|
sText?: string
|
|
3619
3659
|
): this;
|
|
3620
3660
|
}
|
|
3621
|
-
|
|
3661
|
+
/**
|
|
3662
|
+
* Describes the settings that can be provided to the BreadcrumbsItem constructor.
|
|
3663
|
+
*
|
|
3664
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
3665
|
+
*/
|
|
3622
3666
|
export interface $BreadcrumbsItemSettings extends $WebComponentSettings {
|
|
3623
3667
|
/**
|
|
3624
3668
|
* Defines the accessible ARIA name of the item.
|
|
@@ -4011,7 +4055,11 @@ declare module "sap/ui/webc/main/BusyIndicator" {
|
|
|
4011
4055
|
sWidth: CSSSize
|
|
4012
4056
|
): this;
|
|
4013
4057
|
}
|
|
4014
|
-
|
|
4058
|
+
/**
|
|
4059
|
+
* Describes the settings that can be provided to the BusyIndicator constructor.
|
|
4060
|
+
*
|
|
4061
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
4062
|
+
*/
|
|
4015
4063
|
export interface $BusyIndicatorSettings extends $WebComponentSettings {
|
|
4016
4064
|
/**
|
|
4017
4065
|
* Defines if the busy indicator is visible on the screen. By default it is not.
|
|
@@ -4627,7 +4675,11 @@ declare module "sap/ui/webc/main/Button" {
|
|
|
4627
4675
|
sWidth: CSSSize
|
|
4628
4676
|
): this;
|
|
4629
4677
|
}
|
|
4630
|
-
|
|
4678
|
+
/**
|
|
4679
|
+
* Describes the settings that can be provided to the Button constructor.
|
|
4680
|
+
*
|
|
4681
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
4682
|
+
*/
|
|
4631
4683
|
export interface $ButtonSettings extends $WebComponentSettings {
|
|
4632
4684
|
/**
|
|
4633
4685
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -4726,8 +4778,14 @@ declare module "sap/ui/webc/main/Button" {
|
|
|
4726
4778
|
click?: (oEvent: Event) => void;
|
|
4727
4779
|
}
|
|
4728
4780
|
|
|
4781
|
+
/**
|
|
4782
|
+
* Parameters of the Button#click event.
|
|
4783
|
+
*/
|
|
4729
4784
|
export interface Button$ClickEventParameters {}
|
|
4730
4785
|
|
|
4786
|
+
/**
|
|
4787
|
+
* Event object of the Button#click event.
|
|
4788
|
+
*/
|
|
4731
4789
|
export type Button$ClickEvent = Event<Button$ClickEventParameters, Button>;
|
|
4732
4790
|
}
|
|
4733
4791
|
|
|
@@ -5302,7 +5360,11 @@ declare module "sap/ui/webc/main/Calendar" {
|
|
|
5302
5360
|
| keyof typeof CalendarSelectionMode
|
|
5303
5361
|
): this;
|
|
5304
5362
|
}
|
|
5305
|
-
|
|
5363
|
+
/**
|
|
5364
|
+
* Describes the settings that can be provided to the Calendar constructor.
|
|
5365
|
+
*
|
|
5366
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5367
|
+
*/
|
|
5306
5368
|
export interface $CalendarSettings extends $WebComponentSettings {
|
|
5307
5369
|
/**
|
|
5308
5370
|
* Determines the format, displayed in the input field.
|
|
@@ -5377,6 +5439,9 @@ declare module "sap/ui/webc/main/Calendar" {
|
|
|
5377
5439
|
selectedDatesChange?: (oEvent: Calendar$SelectedDatesChangeEvent) => void;
|
|
5378
5440
|
}
|
|
5379
5441
|
|
|
5442
|
+
/**
|
|
5443
|
+
* Parameters of the Calendar#selectedDatesChange event.
|
|
5444
|
+
*/
|
|
5380
5445
|
export interface Calendar$SelectedDatesChangeEventParameters {
|
|
5381
5446
|
/**
|
|
5382
5447
|
* The selected dates
|
|
@@ -5389,6 +5454,9 @@ declare module "sap/ui/webc/main/Calendar" {
|
|
|
5389
5454
|
dates?: any[];
|
|
5390
5455
|
}
|
|
5391
5456
|
|
|
5457
|
+
/**
|
|
5458
|
+
* Event object of the Calendar#selectedDatesChange event.
|
|
5459
|
+
*/
|
|
5392
5460
|
export type Calendar$SelectedDatesChangeEvent = Event<
|
|
5393
5461
|
Calendar$SelectedDatesChangeEventParameters,
|
|
5394
5462
|
Calendar
|
|
@@ -5509,7 +5577,11 @@ declare module "sap/ui/webc/main/CalendarDate" {
|
|
|
5509
5577
|
sValue: string
|
|
5510
5578
|
): this;
|
|
5511
5579
|
}
|
|
5512
|
-
|
|
5580
|
+
/**
|
|
5581
|
+
* Describes the settings that can be provided to the CalendarDate constructor.
|
|
5582
|
+
*
|
|
5583
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5584
|
+
*/
|
|
5513
5585
|
export interface $CalendarDateSettings extends $WebComponentSettings {
|
|
5514
5586
|
/**
|
|
5515
5587
|
* The date formatted according to the `formatPattern` property of the `sap.ui.webc.main.Calendar` that
|
|
@@ -5888,7 +5960,11 @@ declare module "sap/ui/webc/main/Card" {
|
|
|
5888
5960
|
sWidth: CSSSize
|
|
5889
5961
|
): this;
|
|
5890
5962
|
}
|
|
5891
|
-
|
|
5963
|
+
/**
|
|
5964
|
+
* Describes the settings that can be provided to the Card constructor.
|
|
5965
|
+
*
|
|
5966
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5967
|
+
*/
|
|
5892
5968
|
export interface $CardSettings extends $WebComponentSettings {
|
|
5893
5969
|
/**
|
|
5894
5970
|
* Defines the accessible name of the component, which is used as the name of the card region and should
|
|
@@ -6390,7 +6466,11 @@ declare module "sap/ui/webc/main/CardHeader" {
|
|
|
6390
6466
|
sTitleText?: string
|
|
6391
6467
|
): this;
|
|
6392
6468
|
}
|
|
6393
|
-
|
|
6469
|
+
/**
|
|
6470
|
+
* Describes the settings that can be provided to the CardHeader constructor.
|
|
6471
|
+
*
|
|
6472
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
6473
|
+
*/
|
|
6394
6474
|
export interface $CardHeaderSettings extends $WebComponentSettings {
|
|
6395
6475
|
/**
|
|
6396
6476
|
* Defines if the component would be interactive, e.g gets hover effect, gets focus outline and `click`
|
|
@@ -6431,8 +6511,14 @@ declare module "sap/ui/webc/main/CardHeader" {
|
|
|
6431
6511
|
click?: (oEvent: Event) => void;
|
|
6432
6512
|
}
|
|
6433
6513
|
|
|
6514
|
+
/**
|
|
6515
|
+
* Parameters of the CardHeader#click event.
|
|
6516
|
+
*/
|
|
6434
6517
|
export interface CardHeader$ClickEventParameters {}
|
|
6435
6518
|
|
|
6519
|
+
/**
|
|
6520
|
+
* Event object of the CardHeader#click event.
|
|
6521
|
+
*/
|
|
6436
6522
|
export type CardHeader$ClickEvent = Event<
|
|
6437
6523
|
CardHeader$ClickEventParameters,
|
|
6438
6524
|
CardHeader
|
|
@@ -7095,7 +7181,11 @@ declare module "sap/ui/webc/main/Carousel" {
|
|
|
7095
7181
|
| keyof typeof CarouselPageIndicatorStyle
|
|
7096
7182
|
): this;
|
|
7097
7183
|
}
|
|
7098
|
-
|
|
7184
|
+
/**
|
|
7185
|
+
* Describes the settings that can be provided to the Carousel constructor.
|
|
7186
|
+
*
|
|
7187
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7188
|
+
*/
|
|
7099
7189
|
export interface $CarouselSettings extends $WebComponentSettings {
|
|
7100
7190
|
/**
|
|
7101
7191
|
* Defines the position of arrows.
|
|
@@ -7194,6 +7284,9 @@ declare module "sap/ui/webc/main/Carousel" {
|
|
|
7194
7284
|
navigate?: (oEvent: Carousel$NavigateEvent) => void;
|
|
7195
7285
|
}
|
|
7196
7286
|
|
|
7287
|
+
/**
|
|
7288
|
+
* Parameters of the Carousel#navigate event.
|
|
7289
|
+
*/
|
|
7197
7290
|
export interface Carousel$NavigateEventParameters {
|
|
7198
7291
|
/**
|
|
7199
7292
|
* the current selected index
|
|
@@ -7201,6 +7294,9 @@ declare module "sap/ui/webc/main/Carousel" {
|
|
|
7201
7294
|
selectedIndex?: int;
|
|
7202
7295
|
}
|
|
7203
7296
|
|
|
7297
|
+
/**
|
|
7298
|
+
* Event object of the Carousel#navigate event.
|
|
7299
|
+
*/
|
|
7204
7300
|
export type Carousel$NavigateEvent = Event<
|
|
7205
7301
|
Carousel$NavigateEventParameters,
|
|
7206
7302
|
Carousel
|
|
@@ -7821,7 +7917,11 @@ declare module "sap/ui/webc/main/CheckBox" {
|
|
|
7821
7917
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
7822
7918
|
): this;
|
|
7823
7919
|
}
|
|
7824
|
-
|
|
7920
|
+
/**
|
|
7921
|
+
* Describes the settings that can be provided to the CheckBox constructor.
|
|
7922
|
+
*
|
|
7923
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7924
|
+
*/
|
|
7825
7925
|
export interface $CheckBoxSettings extends $WebComponentSettings {
|
|
7826
7926
|
/**
|
|
7827
7927
|
* Defines the accessible ARIA name of the component.
|
|
@@ -7925,8 +8025,14 @@ declare module "sap/ui/webc/main/CheckBox" {
|
|
|
7925
8025
|
change?: (oEvent: Event) => void;
|
|
7926
8026
|
}
|
|
7927
8027
|
|
|
8028
|
+
/**
|
|
8029
|
+
* Parameters of the CheckBox#change event.
|
|
8030
|
+
*/
|
|
7928
8031
|
export interface CheckBox$ChangeEventParameters {}
|
|
7929
8032
|
|
|
8033
|
+
/**
|
|
8034
|
+
* Event object of the CheckBox#change event.
|
|
8035
|
+
*/
|
|
7930
8036
|
export type CheckBox$ChangeEvent = Event<
|
|
7931
8037
|
CheckBox$ChangeEventParameters,
|
|
7932
8038
|
CheckBox
|
|
@@ -8179,7 +8285,11 @@ declare module "sap/ui/webc/main/ColorPalette" {
|
|
|
8179
8285
|
vColor: int | string | IColorPaletteItem
|
|
8180
8286
|
): IColorPaletteItem | null;
|
|
8181
8287
|
}
|
|
8182
|
-
|
|
8288
|
+
/**
|
|
8289
|
+
* Describes the settings that can be provided to the ColorPalette constructor.
|
|
8290
|
+
*
|
|
8291
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8292
|
+
*/
|
|
8183
8293
|
export interface $ColorPaletteSettings extends $WebComponentSettings {
|
|
8184
8294
|
/**
|
|
8185
8295
|
* Defines the `sap.ui.webc.main.ColorPaletteItem` elements.
|
|
@@ -8196,6 +8306,9 @@ declare module "sap/ui/webc/main/ColorPalette" {
|
|
|
8196
8306
|
itemClick?: (oEvent: ColorPalette$ItemClickEvent) => void;
|
|
8197
8307
|
}
|
|
8198
8308
|
|
|
8309
|
+
/**
|
|
8310
|
+
* Parameters of the ColorPalette#itemClick event.
|
|
8311
|
+
*/
|
|
8199
8312
|
export interface ColorPalette$ItemClickEventParameters {
|
|
8200
8313
|
/**
|
|
8201
8314
|
* the selected color
|
|
@@ -8203,6 +8316,9 @@ declare module "sap/ui/webc/main/ColorPalette" {
|
|
|
8203
8316
|
color?: string;
|
|
8204
8317
|
}
|
|
8205
8318
|
|
|
8319
|
+
/**
|
|
8320
|
+
* Event object of the ColorPalette#itemClick event.
|
|
8321
|
+
*/
|
|
8206
8322
|
export type ColorPalette$ItemClickEvent = Event<
|
|
8207
8323
|
ColorPalette$ItemClickEventParameters,
|
|
8208
8324
|
ColorPalette
|
|
@@ -8327,7 +8443,11 @@ declare module "sap/ui/webc/main/ColorPaletteItem" {
|
|
|
8327
8443
|
sValue: CSSColor
|
|
8328
8444
|
): this;
|
|
8329
8445
|
}
|
|
8330
|
-
|
|
8446
|
+
/**
|
|
8447
|
+
* Describes the settings that can be provided to the ColorPaletteItem constructor.
|
|
8448
|
+
*
|
|
8449
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8450
|
+
*/
|
|
8331
8451
|
export interface $ColorPaletteItemSettings extends $WebComponentSettings {
|
|
8332
8452
|
/**
|
|
8333
8453
|
* Defines the colour of the component.
|
|
@@ -8721,7 +8841,11 @@ declare module "sap/ui/webc/main/ColorPalettePopover" {
|
|
|
8721
8841
|
opener: HTMLElement
|
|
8722
8842
|
): void;
|
|
8723
8843
|
}
|
|
8724
|
-
|
|
8844
|
+
/**
|
|
8845
|
+
* Describes the settings that can be provided to the ColorPalettePopover constructor.
|
|
8846
|
+
*
|
|
8847
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
8848
|
+
*/
|
|
8725
8849
|
export interface $ColorPalettePopoverSettings extends $WebComponentSettings {
|
|
8726
8850
|
/**
|
|
8727
8851
|
* Defines the default color of the component. **Note:** The default color should be a part of the ColorPalette
|
|
@@ -8760,6 +8884,9 @@ declare module "sap/ui/webc/main/ColorPalettePopover" {
|
|
|
8760
8884
|
itemClick?: (oEvent: ColorPalettePopover$ItemClickEvent) => void;
|
|
8761
8885
|
}
|
|
8762
8886
|
|
|
8887
|
+
/**
|
|
8888
|
+
* Parameters of the ColorPalettePopover#itemClick event.
|
|
8889
|
+
*/
|
|
8763
8890
|
export interface ColorPalettePopover$ItemClickEventParameters {
|
|
8764
8891
|
/**
|
|
8765
8892
|
* the selected color
|
|
@@ -8767,6 +8894,9 @@ declare module "sap/ui/webc/main/ColorPalettePopover" {
|
|
|
8767
8894
|
color?: string;
|
|
8768
8895
|
}
|
|
8769
8896
|
|
|
8897
|
+
/**
|
|
8898
|
+
* Event object of the ColorPalettePopover#itemClick event.
|
|
8899
|
+
*/
|
|
8770
8900
|
export type ColorPalettePopover$ItemClickEvent = Event<
|
|
8771
8901
|
ColorPalettePopover$ItemClickEventParameters,
|
|
8772
8902
|
ColorPalettePopover
|
|
@@ -8974,7 +9104,11 @@ declare module "sap/ui/webc/main/ColorPicker" {
|
|
|
8974
9104
|
sColor: CSSColor
|
|
8975
9105
|
): this;
|
|
8976
9106
|
}
|
|
8977
|
-
|
|
9107
|
+
/**
|
|
9108
|
+
* Describes the settings that can be provided to the ColorPicker constructor.
|
|
9109
|
+
*
|
|
9110
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
9111
|
+
*/
|
|
8978
9112
|
export interface $ColorPickerSettings extends $WebComponentSettings {
|
|
8979
9113
|
/**
|
|
8980
9114
|
* Defines the currently selected color of the component.
|
|
@@ -8989,8 +9123,14 @@ declare module "sap/ui/webc/main/ColorPicker" {
|
|
|
8989
9123
|
change?: (oEvent: Event) => void;
|
|
8990
9124
|
}
|
|
8991
9125
|
|
|
9126
|
+
/**
|
|
9127
|
+
* Parameters of the ColorPicker#change event.
|
|
9128
|
+
*/
|
|
8992
9129
|
export interface ColorPicker$ChangeEventParameters {}
|
|
8993
9130
|
|
|
9131
|
+
/**
|
|
9132
|
+
* Event object of the ColorPicker#change event.
|
|
9133
|
+
*/
|
|
8994
9134
|
export type ColorPicker$ChangeEvent = Event<
|
|
8995
9135
|
ColorPicker$ChangeEventParameters,
|
|
8996
9136
|
ColorPicker
|
|
@@ -9883,7 +10023,11 @@ declare module "sap/ui/webc/main/ComboBox" {
|
|
|
9883
10023
|
sWidth: CSSSize
|
|
9884
10024
|
): this;
|
|
9885
10025
|
}
|
|
9886
|
-
|
|
10026
|
+
/**
|
|
10027
|
+
* Describes the settings that can be provided to the ComboBox constructor.
|
|
10028
|
+
*
|
|
10029
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10030
|
+
*/
|
|
9887
10031
|
export interface $ComboBoxSettings extends $WebComponentSettings {
|
|
9888
10032
|
/**
|
|
9889
10033
|
* Defines the accessible ARIA name of the component.
|
|
@@ -9990,20 +10134,35 @@ declare module "sap/ui/webc/main/ComboBox" {
|
|
|
9990
10134
|
selectionChange?: (oEvent: ComboBox$SelectionChangeEvent) => void;
|
|
9991
10135
|
}
|
|
9992
10136
|
|
|
10137
|
+
/**
|
|
10138
|
+
* Parameters of the ComboBox#change event.
|
|
10139
|
+
*/
|
|
9993
10140
|
export interface ComboBox$ChangeEventParameters {}
|
|
9994
10141
|
|
|
10142
|
+
/**
|
|
10143
|
+
* Event object of the ComboBox#change event.
|
|
10144
|
+
*/
|
|
9995
10145
|
export type ComboBox$ChangeEvent = Event<
|
|
9996
10146
|
ComboBox$ChangeEventParameters,
|
|
9997
10147
|
ComboBox
|
|
9998
10148
|
>;
|
|
9999
10149
|
|
|
10150
|
+
/**
|
|
10151
|
+
* Parameters of the ComboBox#input event.
|
|
10152
|
+
*/
|
|
10000
10153
|
export interface ComboBox$InputEventParameters {}
|
|
10001
10154
|
|
|
10155
|
+
/**
|
|
10156
|
+
* Event object of the ComboBox#input event.
|
|
10157
|
+
*/
|
|
10002
10158
|
export type ComboBox$InputEvent = Event<
|
|
10003
10159
|
ComboBox$InputEventParameters,
|
|
10004
10160
|
ComboBox
|
|
10005
10161
|
>;
|
|
10006
10162
|
|
|
10163
|
+
/**
|
|
10164
|
+
* Parameters of the ComboBox#selectionChange event.
|
|
10165
|
+
*/
|
|
10007
10166
|
export interface ComboBox$SelectionChangeEventParameters {
|
|
10008
10167
|
/**
|
|
10009
10168
|
* item to be selected.
|
|
@@ -10011,6 +10170,9 @@ declare module "sap/ui/webc/main/ComboBox" {
|
|
|
10011
10170
|
item?: IComboBoxItem;
|
|
10012
10171
|
}
|
|
10013
10172
|
|
|
10173
|
+
/**
|
|
10174
|
+
* Event object of the ComboBox#selectionChange event.
|
|
10175
|
+
*/
|
|
10014
10176
|
export type ComboBox$SelectionChangeEvent = Event<
|
|
10015
10177
|
ComboBox$SelectionChangeEventParameters,
|
|
10016
10178
|
ComboBox
|
|
@@ -10132,7 +10294,11 @@ declare module "sap/ui/webc/main/ComboBoxGroupItem" {
|
|
|
10132
10294
|
sText?: string
|
|
10133
10295
|
): this;
|
|
10134
10296
|
}
|
|
10135
|
-
|
|
10297
|
+
/**
|
|
10298
|
+
* Describes the settings that can be provided to the ComboBoxGroupItem constructor.
|
|
10299
|
+
*
|
|
10300
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
10301
|
+
*/
|
|
10136
10302
|
export interface $ComboBoxGroupItemSettings extends $WebComponentSettings {
|
|
10137
10303
|
/**
|
|
10138
10304
|
* Defines the text of the component.
|
|
@@ -10284,7 +10450,11 @@ declare module "sap/ui/webc/main/ComboBoxItem" {
|
|
|
10284
10450
|
sText?: string
|
|
10285
10451
|
): this;
|
|
10286
10452
|
}
|
|
10287
|
-
|
|
10453
|
+
/**
|
|
10454
|
+
* Describes the settings that can be provided to the ComboBoxItem constructor.
|
|
10455
|
+
*
|
|
10456
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10457
|
+
*/
|
|
10288
10458
|
export interface $ComboBoxItemSettings extends $WebComponentSettings {
|
|
10289
10459
|
/**
|
|
10290
10460
|
* Defines the additional text of the component.
|
|
@@ -10764,7 +10934,11 @@ declare module "sap/ui/webc/main/CustomListItem" {
|
|
|
10764
10934
|
sType?: ListItemType | keyof typeof ListItemType
|
|
10765
10935
|
): this;
|
|
10766
10936
|
}
|
|
10767
|
-
|
|
10937
|
+
/**
|
|
10938
|
+
* Describes the settings that can be provided to the CustomListItem constructor.
|
|
10939
|
+
*
|
|
10940
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10941
|
+
*/
|
|
10768
10942
|
export interface $CustomListItemSettings extends $WebComponentSettings {
|
|
10769
10943
|
/**
|
|
10770
10944
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -10830,8 +11004,14 @@ declare module "sap/ui/webc/main/CustomListItem" {
|
|
|
10830
11004
|
detailClick?: (oEvent: Event) => void;
|
|
10831
11005
|
}
|
|
10832
11006
|
|
|
11007
|
+
/**
|
|
11008
|
+
* Parameters of the CustomListItem#detailClick event.
|
|
11009
|
+
*/
|
|
10833
11010
|
export interface CustomListItem$DetailClickEventParameters {}
|
|
10834
11011
|
|
|
11012
|
+
/**
|
|
11013
|
+
* Event object of the CustomListItem#detailClick event.
|
|
11014
|
+
*/
|
|
10835
11015
|
export type CustomListItem$DetailClickEvent = Event<
|
|
10836
11016
|
CustomListItem$DetailClickEventParameters,
|
|
10837
11017
|
CustomListItem
|
|
@@ -11739,7 +11919,11 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11739
11919
|
sWidth: CSSSize
|
|
11740
11920
|
): this;
|
|
11741
11921
|
}
|
|
11742
|
-
|
|
11922
|
+
/**
|
|
11923
|
+
* Describes the settings that can be provided to the DatePicker constructor.
|
|
11924
|
+
*
|
|
11925
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
11926
|
+
*/
|
|
11743
11927
|
export interface $DatePickerSettings extends $WebComponentSettings {
|
|
11744
11928
|
/**
|
|
11745
11929
|
* Defines the aria-label attribute for the component.
|
|
@@ -11867,6 +12051,9 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11867
12051
|
input?: (oEvent: DatePicker$InputEvent) => void;
|
|
11868
12052
|
}
|
|
11869
12053
|
|
|
12054
|
+
/**
|
|
12055
|
+
* Parameters of the DatePicker#change event.
|
|
12056
|
+
*/
|
|
11870
12057
|
export interface DatePicker$ChangeEventParameters {
|
|
11871
12058
|
/**
|
|
11872
12059
|
* The submitted value.
|
|
@@ -11879,11 +12066,17 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11879
12066
|
valid?: boolean;
|
|
11880
12067
|
}
|
|
11881
12068
|
|
|
12069
|
+
/**
|
|
12070
|
+
* Event object of the DatePicker#change event.
|
|
12071
|
+
*/
|
|
11882
12072
|
export type DatePicker$ChangeEvent = Event<
|
|
11883
12073
|
DatePicker$ChangeEventParameters,
|
|
11884
12074
|
DatePicker
|
|
11885
12075
|
>;
|
|
11886
12076
|
|
|
12077
|
+
/**
|
|
12078
|
+
* Parameters of the DatePicker#input event.
|
|
12079
|
+
*/
|
|
11887
12080
|
export interface DatePicker$InputEventParameters {
|
|
11888
12081
|
/**
|
|
11889
12082
|
* The submitted value.
|
|
@@ -11896,6 +12089,9 @@ declare module "sap/ui/webc/main/DatePicker" {
|
|
|
11896
12089
|
valid?: boolean;
|
|
11897
12090
|
}
|
|
11898
12091
|
|
|
12092
|
+
/**
|
|
12093
|
+
* Event object of the DatePicker#input event.
|
|
12094
|
+
*/
|
|
11899
12095
|
export type DatePicker$InputEvent = Event<
|
|
11900
12096
|
DatePicker$InputEventParameters,
|
|
11901
12097
|
DatePicker
|
|
@@ -12806,7 +13002,11 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12806
13002
|
sWidth: CSSSize
|
|
12807
13003
|
): this;
|
|
12808
13004
|
}
|
|
12809
|
-
|
|
13005
|
+
/**
|
|
13006
|
+
* Describes the settings that can be provided to the DateRangePicker constructor.
|
|
13007
|
+
*
|
|
13008
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
13009
|
+
*/
|
|
12810
13010
|
export interface $DateRangePickerSettings extends $WebComponentSettings {
|
|
12811
13011
|
/**
|
|
12812
13012
|
* Defines the aria-label attribute for the component.
|
|
@@ -12940,6 +13140,9 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12940
13140
|
input?: (oEvent: DateRangePicker$InputEvent) => void;
|
|
12941
13141
|
}
|
|
12942
13142
|
|
|
13143
|
+
/**
|
|
13144
|
+
* Parameters of the DateRangePicker#change event.
|
|
13145
|
+
*/
|
|
12943
13146
|
export interface DateRangePicker$ChangeEventParameters {
|
|
12944
13147
|
/**
|
|
12945
13148
|
* The submitted value.
|
|
@@ -12952,11 +13155,17 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12952
13155
|
valid?: boolean;
|
|
12953
13156
|
}
|
|
12954
13157
|
|
|
13158
|
+
/**
|
|
13159
|
+
* Event object of the DateRangePicker#change event.
|
|
13160
|
+
*/
|
|
12955
13161
|
export type DateRangePicker$ChangeEvent = Event<
|
|
12956
13162
|
DateRangePicker$ChangeEventParameters,
|
|
12957
13163
|
DateRangePicker
|
|
12958
13164
|
>;
|
|
12959
13165
|
|
|
13166
|
+
/**
|
|
13167
|
+
* Parameters of the DateRangePicker#input event.
|
|
13168
|
+
*/
|
|
12960
13169
|
export interface DateRangePicker$InputEventParameters {
|
|
12961
13170
|
/**
|
|
12962
13171
|
* The submitted value.
|
|
@@ -12969,6 +13178,9 @@ declare module "sap/ui/webc/main/DateRangePicker" {
|
|
|
12969
13178
|
valid?: boolean;
|
|
12970
13179
|
}
|
|
12971
13180
|
|
|
13181
|
+
/**
|
|
13182
|
+
* Event object of the DateRangePicker#input event.
|
|
13183
|
+
*/
|
|
12972
13184
|
export type DateRangePicker$InputEvent = Event<
|
|
12973
13185
|
DateRangePicker$InputEventParameters,
|
|
12974
13186
|
DateRangePicker
|
|
@@ -13869,7 +14081,11 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
13869
14081
|
sWidth: CSSSize
|
|
13870
14082
|
): this;
|
|
13871
14083
|
}
|
|
13872
|
-
|
|
14084
|
+
/**
|
|
14085
|
+
* Describes the settings that can be provided to the DateTimePicker constructor.
|
|
14086
|
+
*
|
|
14087
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
14088
|
+
*/
|
|
13873
14089
|
export interface $DateTimePickerSettings extends $WebComponentSettings {
|
|
13874
14090
|
/**
|
|
13875
14091
|
* Defines the aria-label attribute for the component.
|
|
@@ -13997,6 +14213,9 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
13997
14213
|
input?: (oEvent: DateTimePicker$InputEvent) => void;
|
|
13998
14214
|
}
|
|
13999
14215
|
|
|
14216
|
+
/**
|
|
14217
|
+
* Parameters of the DateTimePicker#change event.
|
|
14218
|
+
*/
|
|
14000
14219
|
export interface DateTimePicker$ChangeEventParameters {
|
|
14001
14220
|
/**
|
|
14002
14221
|
* The submitted value.
|
|
@@ -14009,11 +14228,17 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
14009
14228
|
valid?: boolean;
|
|
14010
14229
|
}
|
|
14011
14230
|
|
|
14231
|
+
/**
|
|
14232
|
+
* Event object of the DateTimePicker#change event.
|
|
14233
|
+
*/
|
|
14012
14234
|
export type DateTimePicker$ChangeEvent = Event<
|
|
14013
14235
|
DateTimePicker$ChangeEventParameters,
|
|
14014
14236
|
DateTimePicker
|
|
14015
14237
|
>;
|
|
14016
14238
|
|
|
14239
|
+
/**
|
|
14240
|
+
* Parameters of the DateTimePicker#input event.
|
|
14241
|
+
*/
|
|
14017
14242
|
export interface DateTimePicker$InputEventParameters {
|
|
14018
14243
|
/**
|
|
14019
14244
|
* The submitted value.
|
|
@@ -14026,6 +14251,9 @@ declare module "sap/ui/webc/main/DateTimePicker" {
|
|
|
14026
14251
|
valid?: boolean;
|
|
14027
14252
|
}
|
|
14028
14253
|
|
|
14254
|
+
/**
|
|
14255
|
+
* Event object of the DateTimePicker#input event.
|
|
14256
|
+
*/
|
|
14029
14257
|
export type DateTimePicker$InputEvent = Event<
|
|
14030
14258
|
DateTimePicker$InputEventParameters,
|
|
14031
14259
|
DateTimePicker
|
|
@@ -15139,7 +15367,11 @@ declare module "sap/ui/webc/main/Dialog" {
|
|
|
15139
15367
|
preventInitialFocus: boolean
|
|
15140
15368
|
): void;
|
|
15141
15369
|
}
|
|
15142
|
-
|
|
15370
|
+
/**
|
|
15371
|
+
* Describes the settings that can be provided to the Dialog constructor.
|
|
15372
|
+
*
|
|
15373
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
15374
|
+
*/
|
|
15143
15375
|
export interface $DialogSettings extends $WebComponentSettings {
|
|
15144
15376
|
/**
|
|
15145
15377
|
* Defines the accessible name of the component.
|
|
@@ -15275,20 +15507,35 @@ declare module "sap/ui/webc/main/Dialog" {
|
|
|
15275
15507
|
beforeOpen?: (oEvent: Event) => void;
|
|
15276
15508
|
}
|
|
15277
15509
|
|
|
15510
|
+
/**
|
|
15511
|
+
* Parameters of the Dialog#afterClose event.
|
|
15512
|
+
*/
|
|
15278
15513
|
export interface Dialog$AfterCloseEventParameters {}
|
|
15279
15514
|
|
|
15515
|
+
/**
|
|
15516
|
+
* Event object of the Dialog#afterClose event.
|
|
15517
|
+
*/
|
|
15280
15518
|
export type Dialog$AfterCloseEvent = Event<
|
|
15281
15519
|
Dialog$AfterCloseEventParameters,
|
|
15282
15520
|
Dialog
|
|
15283
15521
|
>;
|
|
15284
15522
|
|
|
15523
|
+
/**
|
|
15524
|
+
* Parameters of the Dialog#afterOpen event.
|
|
15525
|
+
*/
|
|
15285
15526
|
export interface Dialog$AfterOpenEventParameters {}
|
|
15286
15527
|
|
|
15528
|
+
/**
|
|
15529
|
+
* Event object of the Dialog#afterOpen event.
|
|
15530
|
+
*/
|
|
15287
15531
|
export type Dialog$AfterOpenEvent = Event<
|
|
15288
15532
|
Dialog$AfterOpenEventParameters,
|
|
15289
15533
|
Dialog
|
|
15290
15534
|
>;
|
|
15291
15535
|
|
|
15536
|
+
/**
|
|
15537
|
+
* Parameters of the Dialog#beforeClose event.
|
|
15538
|
+
*/
|
|
15292
15539
|
export interface Dialog$BeforeCloseEventParameters {
|
|
15293
15540
|
/**
|
|
15294
15541
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -15296,13 +15543,22 @@ declare module "sap/ui/webc/main/Dialog" {
|
|
|
15296
15543
|
escPressed?: boolean;
|
|
15297
15544
|
}
|
|
15298
15545
|
|
|
15546
|
+
/**
|
|
15547
|
+
* Event object of the Dialog#beforeClose event.
|
|
15548
|
+
*/
|
|
15299
15549
|
export type Dialog$BeforeCloseEvent = Event<
|
|
15300
15550
|
Dialog$BeforeCloseEventParameters,
|
|
15301
15551
|
Dialog
|
|
15302
15552
|
>;
|
|
15303
15553
|
|
|
15554
|
+
/**
|
|
15555
|
+
* Parameters of the Dialog#beforeOpen event.
|
|
15556
|
+
*/
|
|
15304
15557
|
export interface Dialog$BeforeOpenEventParameters {}
|
|
15305
15558
|
|
|
15559
|
+
/**
|
|
15560
|
+
* Event object of the Dialog#beforeOpen event.
|
|
15561
|
+
*/
|
|
15306
15562
|
export type Dialog$BeforeOpenEvent = Event<
|
|
15307
15563
|
Dialog$BeforeOpenEventParameters,
|
|
15308
15564
|
Dialog
|
|
@@ -15892,7 +16148,11 @@ declare module "sap/ui/webc/main/FileUploader" {
|
|
|
15892
16148
|
sWidth: CSSSize
|
|
15893
16149
|
): this;
|
|
15894
16150
|
}
|
|
15895
|
-
|
|
16151
|
+
/**
|
|
16152
|
+
* Describes the settings that can be provided to the FileUploader constructor.
|
|
16153
|
+
*
|
|
16154
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
16155
|
+
*/
|
|
15896
16156
|
export interface $FileUploaderSettings extends $WebComponentSettings {
|
|
15897
16157
|
/**
|
|
15898
16158
|
* Comma-separated list of file types that the component should accept.
|
|
@@ -15979,6 +16239,9 @@ declare module "sap/ui/webc/main/FileUploader" {
|
|
|
15979
16239
|
change?: (oEvent: FileUploader$ChangeEvent) => void;
|
|
15980
16240
|
}
|
|
15981
16241
|
|
|
16242
|
+
/**
|
|
16243
|
+
* Parameters of the FileUploader#change event.
|
|
16244
|
+
*/
|
|
15982
16245
|
export interface FileUploader$ChangeEventParameters {
|
|
15983
16246
|
/**
|
|
15984
16247
|
* The current files.
|
|
@@ -15986,6 +16249,9 @@ declare module "sap/ui/webc/main/FileUploader" {
|
|
|
15986
16249
|
files?: FileList;
|
|
15987
16250
|
}
|
|
15988
16251
|
|
|
16252
|
+
/**
|
|
16253
|
+
* Event object of the FileUploader#change event.
|
|
16254
|
+
*/
|
|
15989
16255
|
export type FileUploader$ChangeEvent = Event<
|
|
15990
16256
|
FileUploader$ChangeEventParameters,
|
|
15991
16257
|
FileUploader
|
|
@@ -16167,7 +16433,11 @@ declare module "sap/ui/webc/main/GroupHeaderListItem" {
|
|
|
16167
16433
|
sText?: string
|
|
16168
16434
|
): this;
|
|
16169
16435
|
}
|
|
16170
|
-
|
|
16436
|
+
/**
|
|
16437
|
+
* Describes the settings that can be provided to the GroupHeaderListItem constructor.
|
|
16438
|
+
*
|
|
16439
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
16440
|
+
*/
|
|
16171
16441
|
export interface $GroupHeaderListItemSettings extends $WebComponentSettings {
|
|
16172
16442
|
/**
|
|
16173
16443
|
* Defines the text alternative of the component. Note: If not provided a default text alternative will
|
|
@@ -16781,7 +17051,11 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
16781
17051
|
sWidth: CSSSize
|
|
16782
17052
|
): this;
|
|
16783
17053
|
}
|
|
16784
|
-
|
|
17054
|
+
/**
|
|
17055
|
+
* Describes the settings that can be provided to the Icon constructor.
|
|
17056
|
+
*
|
|
17057
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
17058
|
+
*/
|
|
16785
17059
|
export interface $IconSettings extends $WebComponentSettings {
|
|
16786
17060
|
/**
|
|
16787
17061
|
* Defines the text alternative of the component. If not provided a default text alternative will be set,
|
|
@@ -16888,8 +17162,14 @@ declare module "sap/ui/webc/main/Icon" {
|
|
|
16888
17162
|
click?: (oEvent: Event) => void;
|
|
16889
17163
|
}
|
|
16890
17164
|
|
|
17165
|
+
/**
|
|
17166
|
+
* Parameters of the Icon#click event.
|
|
17167
|
+
*/
|
|
16891
17168
|
export interface Icon$ClickEventParameters {}
|
|
16892
17169
|
|
|
17170
|
+
/**
|
|
17171
|
+
* Event object of the Icon#click event.
|
|
17172
|
+
*/
|
|
16893
17173
|
export type Icon$ClickEvent = Event<Icon$ClickEventParameters, Icon>;
|
|
16894
17174
|
}
|
|
16895
17175
|
|
|
@@ -18019,7 +18299,11 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18019
18299
|
sWidth: CSSSize
|
|
18020
18300
|
): this;
|
|
18021
18301
|
}
|
|
18022
|
-
|
|
18302
|
+
/**
|
|
18303
|
+
* Describes the settings that can be provided to the Input constructor.
|
|
18304
|
+
*
|
|
18305
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
18306
|
+
*/
|
|
18023
18307
|
export interface $InputSettings extends $WebComponentSettings {
|
|
18024
18308
|
/**
|
|
18025
18309
|
* Defines the accessible ARIA name of the component.
|
|
@@ -18167,14 +18451,29 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18167
18451
|
suggestionItemSelect?: (oEvent: Input$SuggestionItemSelectEvent) => void;
|
|
18168
18452
|
}
|
|
18169
18453
|
|
|
18454
|
+
/**
|
|
18455
|
+
* Parameters of the Input#change event.
|
|
18456
|
+
*/
|
|
18170
18457
|
export interface Input$ChangeEventParameters {}
|
|
18171
18458
|
|
|
18459
|
+
/**
|
|
18460
|
+
* Event object of the Input#change event.
|
|
18461
|
+
*/
|
|
18172
18462
|
export type Input$ChangeEvent = Event<Input$ChangeEventParameters, Input>;
|
|
18173
18463
|
|
|
18464
|
+
/**
|
|
18465
|
+
* Parameters of the Input#input event.
|
|
18466
|
+
*/
|
|
18174
18467
|
export interface Input$InputEventParameters {}
|
|
18175
18468
|
|
|
18469
|
+
/**
|
|
18470
|
+
* Event object of the Input#input event.
|
|
18471
|
+
*/
|
|
18176
18472
|
export type Input$InputEvent = Event<Input$InputEventParameters, Input>;
|
|
18177
18473
|
|
|
18474
|
+
/**
|
|
18475
|
+
* Parameters of the Input#suggestionItemPreview event.
|
|
18476
|
+
*/
|
|
18178
18477
|
export interface Input$SuggestionItemPreviewEventParameters {
|
|
18179
18478
|
/**
|
|
18180
18479
|
* The previewed suggestion item.
|
|
@@ -18187,11 +18486,17 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18187
18486
|
targetRef?: HTMLElement;
|
|
18188
18487
|
}
|
|
18189
18488
|
|
|
18489
|
+
/**
|
|
18490
|
+
* Event object of the Input#suggestionItemPreview event.
|
|
18491
|
+
*/
|
|
18190
18492
|
export type Input$SuggestionItemPreviewEvent = Event<
|
|
18191
18493
|
Input$SuggestionItemPreviewEventParameters,
|
|
18192
18494
|
Input
|
|
18193
18495
|
>;
|
|
18194
18496
|
|
|
18497
|
+
/**
|
|
18498
|
+
* Parameters of the Input#suggestionItemSelect event.
|
|
18499
|
+
*/
|
|
18195
18500
|
export interface Input$SuggestionItemSelectEventParameters {
|
|
18196
18501
|
/**
|
|
18197
18502
|
* The selected item.
|
|
@@ -18199,6 +18504,9 @@ declare module "sap/ui/webc/main/Input" {
|
|
|
18199
18504
|
item?: HTMLElement;
|
|
18200
18505
|
}
|
|
18201
18506
|
|
|
18507
|
+
/**
|
|
18508
|
+
* Event object of the Input#suggestionItemSelect event.
|
|
18509
|
+
*/
|
|
18202
18510
|
export type Input$SuggestionItemSelectEvent = Event<
|
|
18203
18511
|
Input$SuggestionItemSelectEventParameters,
|
|
18204
18512
|
Input
|
|
@@ -18474,7 +18782,11 @@ declare module "sap/ui/webc/main/Label" {
|
|
|
18474
18782
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
18475
18783
|
): this;
|
|
18476
18784
|
}
|
|
18477
|
-
|
|
18785
|
+
/**
|
|
18786
|
+
* Describes the settings that can be provided to the Label constructor.
|
|
18787
|
+
*
|
|
18788
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
18789
|
+
*/
|
|
18478
18790
|
export interface $LabelSettings extends $WebComponentSettings {
|
|
18479
18791
|
/**
|
|
18480
18792
|
* Defines whether an asterisk character is added to the component text.
|
|
@@ -19077,7 +19389,11 @@ declare module "sap/ui/webc/main/Link" {
|
|
|
19077
19389
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
19078
19390
|
): this;
|
|
19079
19391
|
}
|
|
19080
|
-
|
|
19392
|
+
/**
|
|
19393
|
+
* Describes the settings that can be provided to the Link constructor.
|
|
19394
|
+
*
|
|
19395
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
19396
|
+
*/
|
|
19081
19397
|
export interface $LinkSettings extends $WebComponentSettings {
|
|
19082
19398
|
/**
|
|
19083
19399
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -19177,6 +19493,9 @@ declare module "sap/ui/webc/main/Link" {
|
|
|
19177
19493
|
click?: (oEvent: Link$ClickEvent) => void;
|
|
19178
19494
|
}
|
|
19179
19495
|
|
|
19496
|
+
/**
|
|
19497
|
+
* Parameters of the Link#click event.
|
|
19498
|
+
*/
|
|
19180
19499
|
export interface Link$ClickEventParameters {
|
|
19181
19500
|
/**
|
|
19182
19501
|
* Returns whether the "ALT" key was pressed when the event was triggered.
|
|
@@ -19199,6 +19518,9 @@ declare module "sap/ui/webc/main/Link" {
|
|
|
19199
19518
|
shiftKey?: boolean;
|
|
19200
19519
|
}
|
|
19201
19520
|
|
|
19521
|
+
/**
|
|
19522
|
+
* Event object of the Link#click event.
|
|
19523
|
+
*/
|
|
19202
19524
|
export type Link$ClickEvent = Event<Link$ClickEventParameters, Link>;
|
|
19203
19525
|
}
|
|
19204
19526
|
|
|
@@ -20448,7 +20770,11 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20448
20770
|
sWidth: CSSSize
|
|
20449
20771
|
): this;
|
|
20450
20772
|
}
|
|
20451
|
-
|
|
20773
|
+
/**
|
|
20774
|
+
* Describes the settings that can be provided to the List constructor.
|
|
20775
|
+
*
|
|
20776
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
20777
|
+
*/
|
|
20452
20778
|
export interface $ListSettings extends $WebComponentSettings {
|
|
20453
20779
|
/**
|
|
20454
20780
|
* Defines the accessible name of the component.
|
|
@@ -20612,6 +20938,9 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20612
20938
|
selectionChange?: (oEvent: List$SelectionChangeEvent) => void;
|
|
20613
20939
|
}
|
|
20614
20940
|
|
|
20941
|
+
/**
|
|
20942
|
+
* Parameters of the List#itemClick event.
|
|
20943
|
+
*/
|
|
20615
20944
|
export interface List$ItemClickEventParameters {
|
|
20616
20945
|
/**
|
|
20617
20946
|
* The clicked item.
|
|
@@ -20619,8 +20948,14 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20619
20948
|
item?: HTMLElement;
|
|
20620
20949
|
}
|
|
20621
20950
|
|
|
20951
|
+
/**
|
|
20952
|
+
* Event object of the List#itemClick event.
|
|
20953
|
+
*/
|
|
20622
20954
|
export type List$ItemClickEvent = Event<List$ItemClickEventParameters, List>;
|
|
20623
20955
|
|
|
20956
|
+
/**
|
|
20957
|
+
* Parameters of the List#itemClose event.
|
|
20958
|
+
*/
|
|
20624
20959
|
export interface List$ItemCloseEventParameters {
|
|
20625
20960
|
/**
|
|
20626
20961
|
* the item about to be closed.
|
|
@@ -20628,8 +20963,14 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20628
20963
|
item?: HTMLElement;
|
|
20629
20964
|
}
|
|
20630
20965
|
|
|
20966
|
+
/**
|
|
20967
|
+
* Event object of the List#itemClose event.
|
|
20968
|
+
*/
|
|
20631
20969
|
export type List$ItemCloseEvent = Event<List$ItemCloseEventParameters, List>;
|
|
20632
20970
|
|
|
20971
|
+
/**
|
|
20972
|
+
* Parameters of the List#itemDelete event.
|
|
20973
|
+
*/
|
|
20633
20974
|
export interface List$ItemDeleteEventParameters {
|
|
20634
20975
|
/**
|
|
20635
20976
|
* the deleted item.
|
|
@@ -20637,11 +20978,17 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20637
20978
|
item?: HTMLElement;
|
|
20638
20979
|
}
|
|
20639
20980
|
|
|
20981
|
+
/**
|
|
20982
|
+
* Event object of the List#itemDelete event.
|
|
20983
|
+
*/
|
|
20640
20984
|
export type List$ItemDeleteEvent = Event<
|
|
20641
20985
|
List$ItemDeleteEventParameters,
|
|
20642
20986
|
List
|
|
20643
20987
|
>;
|
|
20644
20988
|
|
|
20989
|
+
/**
|
|
20990
|
+
* Parameters of the List#itemToggle event.
|
|
20991
|
+
*/
|
|
20645
20992
|
export interface List$ItemToggleEventParameters {
|
|
20646
20993
|
/**
|
|
20647
20994
|
* the toggled item.
|
|
@@ -20649,15 +20996,27 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20649
20996
|
item?: HTMLElement;
|
|
20650
20997
|
}
|
|
20651
20998
|
|
|
20999
|
+
/**
|
|
21000
|
+
* Event object of the List#itemToggle event.
|
|
21001
|
+
*/
|
|
20652
21002
|
export type List$ItemToggleEvent = Event<
|
|
20653
21003
|
List$ItemToggleEventParameters,
|
|
20654
21004
|
List
|
|
20655
21005
|
>;
|
|
20656
21006
|
|
|
21007
|
+
/**
|
|
21008
|
+
* Parameters of the List#loadMore event.
|
|
21009
|
+
*/
|
|
20657
21010
|
export interface List$LoadMoreEventParameters {}
|
|
20658
21011
|
|
|
21012
|
+
/**
|
|
21013
|
+
* Event object of the List#loadMore event.
|
|
21014
|
+
*/
|
|
20659
21015
|
export type List$LoadMoreEvent = Event<List$LoadMoreEventParameters, List>;
|
|
20660
21016
|
|
|
21017
|
+
/**
|
|
21018
|
+
* Parameters of the List#selectionChange event.
|
|
21019
|
+
*/
|
|
20661
21020
|
export interface List$SelectionChangeEventParameters {
|
|
20662
21021
|
/**
|
|
20663
21022
|
* An array of the selected items.
|
|
@@ -20670,6 +21029,9 @@ declare module "sap/ui/webc/main/List" {
|
|
|
20670
21029
|
previouslySelectedItems?: any[];
|
|
20671
21030
|
}
|
|
20672
21031
|
|
|
21032
|
+
/**
|
|
21033
|
+
* Event object of the List#selectionChange event.
|
|
21034
|
+
*/
|
|
20673
21035
|
export type List$SelectionChangeEvent = Event<
|
|
20674
21036
|
List$SelectionChangeEventParameters,
|
|
20675
21037
|
List
|
|
@@ -21417,7 +21779,11 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21417
21779
|
opener: HTMLElement
|
|
21418
21780
|
): void;
|
|
21419
21781
|
}
|
|
21420
|
-
|
|
21782
|
+
/**
|
|
21783
|
+
* Describes the settings that can be provided to the Menu constructor.
|
|
21784
|
+
*
|
|
21785
|
+
* @experimental (since 1.102.0) - This control is experimental and its API might change significantly.
|
|
21786
|
+
*/
|
|
21421
21787
|
export interface $MenuSettings extends $WebComponentSettings {
|
|
21422
21788
|
/**
|
|
21423
21789
|
* Defines if a loading indicator would be displayed inside the corresponding ui5-menu popover.
|
|
@@ -21481,17 +21847,32 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21481
21847
|
itemClick?: (oEvent: Menu$ItemClickEvent) => void;
|
|
21482
21848
|
}
|
|
21483
21849
|
|
|
21850
|
+
/**
|
|
21851
|
+
* Parameters of the Menu#afterClose event.
|
|
21852
|
+
*/
|
|
21484
21853
|
export interface Menu$AfterCloseEventParameters {}
|
|
21485
21854
|
|
|
21855
|
+
/**
|
|
21856
|
+
* Event object of the Menu#afterClose event.
|
|
21857
|
+
*/
|
|
21486
21858
|
export type Menu$AfterCloseEvent = Event<
|
|
21487
21859
|
Menu$AfterCloseEventParameters,
|
|
21488
21860
|
Menu
|
|
21489
21861
|
>;
|
|
21490
21862
|
|
|
21863
|
+
/**
|
|
21864
|
+
* Parameters of the Menu#afterOpen event.
|
|
21865
|
+
*/
|
|
21491
21866
|
export interface Menu$AfterOpenEventParameters {}
|
|
21492
21867
|
|
|
21868
|
+
/**
|
|
21869
|
+
* Event object of the Menu#afterOpen event.
|
|
21870
|
+
*/
|
|
21493
21871
|
export type Menu$AfterOpenEvent = Event<Menu$AfterOpenEventParameters, Menu>;
|
|
21494
21872
|
|
|
21873
|
+
/**
|
|
21874
|
+
* Parameters of the Menu#beforeClose event.
|
|
21875
|
+
*/
|
|
21495
21876
|
export interface Menu$BeforeCloseEventParameters {
|
|
21496
21877
|
/**
|
|
21497
21878
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -21499,11 +21880,17 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21499
21880
|
escPressed?: boolean;
|
|
21500
21881
|
}
|
|
21501
21882
|
|
|
21883
|
+
/**
|
|
21884
|
+
* Event object of the Menu#beforeClose event.
|
|
21885
|
+
*/
|
|
21502
21886
|
export type Menu$BeforeCloseEvent = Event<
|
|
21503
21887
|
Menu$BeforeCloseEventParameters,
|
|
21504
21888
|
Menu
|
|
21505
21889
|
>;
|
|
21506
21890
|
|
|
21891
|
+
/**
|
|
21892
|
+
* Parameters of the Menu#beforeOpen event.
|
|
21893
|
+
*/
|
|
21507
21894
|
export interface Menu$BeforeOpenEventParameters {
|
|
21508
21895
|
/**
|
|
21509
21896
|
* The `sap.ui.webc.main.MenuItem` that triggers opening of the sub-menu or undefined when fired upon root
|
|
@@ -21512,11 +21899,17 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21512
21899
|
item?: HTMLElement;
|
|
21513
21900
|
}
|
|
21514
21901
|
|
|
21902
|
+
/**
|
|
21903
|
+
* Event object of the Menu#beforeOpen event.
|
|
21904
|
+
*/
|
|
21515
21905
|
export type Menu$BeforeOpenEvent = Event<
|
|
21516
21906
|
Menu$BeforeOpenEventParameters,
|
|
21517
21907
|
Menu
|
|
21518
21908
|
>;
|
|
21519
21909
|
|
|
21910
|
+
/**
|
|
21911
|
+
* Parameters of the Menu#itemClick event.
|
|
21912
|
+
*/
|
|
21520
21913
|
export interface Menu$ItemClickEventParameters {
|
|
21521
21914
|
/**
|
|
21522
21915
|
* The currently clicked menu item.
|
|
@@ -21529,6 +21922,9 @@ declare module "sap/ui/webc/main/Menu" {
|
|
|
21529
21922
|
text?: string;
|
|
21530
21923
|
}
|
|
21531
21924
|
|
|
21925
|
+
/**
|
|
21926
|
+
* Event object of the Menu#itemClick event.
|
|
21927
|
+
*/
|
|
21532
21928
|
export type Menu$ItemClickEvent = Event<Menu$ItemClickEventParameters, Menu>;
|
|
21533
21929
|
}
|
|
21534
21930
|
|
|
@@ -21954,7 +22350,11 @@ declare module "sap/ui/webc/main/MenuItem" {
|
|
|
21954
22350
|
sText?: string
|
|
21955
22351
|
): this;
|
|
21956
22352
|
}
|
|
21957
|
-
|
|
22353
|
+
/**
|
|
22354
|
+
* Describes the settings that can be provided to the MenuItem constructor.
|
|
22355
|
+
*
|
|
22356
|
+
* @experimental (since 1.102.0) - This control is experimental and its API might change significantly.
|
|
22357
|
+
*/
|
|
21958
22358
|
export interface $MenuItemSettings extends $WebComponentSettings {
|
|
21959
22359
|
/**
|
|
21960
22360
|
* Defines the accessible ARIA name of the component.
|
|
@@ -22388,7 +22788,11 @@ declare module "sap/ui/webc/main/MessageStrip" {
|
|
|
22388
22788
|
sWidth: CSSSize
|
|
22389
22789
|
): this;
|
|
22390
22790
|
}
|
|
22391
|
-
|
|
22791
|
+
/**
|
|
22792
|
+
* Describes the settings that can be provided to the MessageStrip constructor.
|
|
22793
|
+
*
|
|
22794
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
22795
|
+
*/
|
|
22392
22796
|
export interface $MessageStripSettings extends $WebComponentSettings {
|
|
22393
22797
|
/**
|
|
22394
22798
|
* Defines the component type.
|
|
@@ -22442,8 +22846,14 @@ declare module "sap/ui/webc/main/MessageStrip" {
|
|
|
22442
22846
|
close?: (oEvent: Event) => void;
|
|
22443
22847
|
}
|
|
22444
22848
|
|
|
22849
|
+
/**
|
|
22850
|
+
* Parameters of the MessageStrip#close event.
|
|
22851
|
+
*/
|
|
22445
22852
|
export interface MessageStrip$CloseEventParameters {}
|
|
22446
22853
|
|
|
22854
|
+
/**
|
|
22855
|
+
* Event object of the MessageStrip#close event.
|
|
22856
|
+
*/
|
|
22447
22857
|
export type MessageStrip$CloseEvent = Event<
|
|
22448
22858
|
MessageStrip$CloseEventParameters,
|
|
22449
22859
|
MessageStrip
|
|
@@ -23458,7 +23868,11 @@ declare module "sap/ui/webc/main/MultiComboBox" {
|
|
|
23458
23868
|
sWidth: CSSSize
|
|
23459
23869
|
): this;
|
|
23460
23870
|
}
|
|
23461
|
-
|
|
23871
|
+
/**
|
|
23872
|
+
* Describes the settings that can be provided to the MultiComboBox constructor.
|
|
23873
|
+
*
|
|
23874
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
23875
|
+
*/
|
|
23462
23876
|
export interface $MultiComboBoxSettings extends $WebComponentSettings {
|
|
23463
23877
|
/**
|
|
23464
23878
|
* Defines the accessible ARIA name of the component.
|
|
@@ -23578,27 +23992,48 @@ declare module "sap/ui/webc/main/MultiComboBox" {
|
|
|
23578
23992
|
selectionChange?: (oEvent: MultiComboBox$SelectionChangeEvent) => void;
|
|
23579
23993
|
}
|
|
23580
23994
|
|
|
23995
|
+
/**
|
|
23996
|
+
* Parameters of the MultiComboBox#change event.
|
|
23997
|
+
*/
|
|
23581
23998
|
export interface MultiComboBox$ChangeEventParameters {}
|
|
23582
23999
|
|
|
24000
|
+
/**
|
|
24001
|
+
* Event object of the MultiComboBox#change event.
|
|
24002
|
+
*/
|
|
23583
24003
|
export type MultiComboBox$ChangeEvent = Event<
|
|
23584
24004
|
MultiComboBox$ChangeEventParameters,
|
|
23585
24005
|
MultiComboBox
|
|
23586
24006
|
>;
|
|
23587
24007
|
|
|
24008
|
+
/**
|
|
24009
|
+
* Parameters of the MultiComboBox#input event.
|
|
24010
|
+
*/
|
|
23588
24011
|
export interface MultiComboBox$InputEventParameters {}
|
|
23589
24012
|
|
|
24013
|
+
/**
|
|
24014
|
+
* Event object of the MultiComboBox#input event.
|
|
24015
|
+
*/
|
|
23590
24016
|
export type MultiComboBox$InputEvent = Event<
|
|
23591
24017
|
MultiComboBox$InputEventParameters,
|
|
23592
24018
|
MultiComboBox
|
|
23593
24019
|
>;
|
|
23594
24020
|
|
|
24021
|
+
/**
|
|
24022
|
+
* Parameters of the MultiComboBox#openChange event.
|
|
24023
|
+
*/
|
|
23595
24024
|
export interface MultiComboBox$OpenChangeEventParameters {}
|
|
23596
24025
|
|
|
24026
|
+
/**
|
|
24027
|
+
* Event object of the MultiComboBox#openChange event.
|
|
24028
|
+
*/
|
|
23597
24029
|
export type MultiComboBox$OpenChangeEvent = Event<
|
|
23598
24030
|
MultiComboBox$OpenChangeEventParameters,
|
|
23599
24031
|
MultiComboBox
|
|
23600
24032
|
>;
|
|
23601
24033
|
|
|
24034
|
+
/**
|
|
24035
|
+
* Parameters of the MultiComboBox#selectionChange event.
|
|
24036
|
+
*/
|
|
23602
24037
|
export interface MultiComboBox$SelectionChangeEventParameters {
|
|
23603
24038
|
/**
|
|
23604
24039
|
* an array of the selected items.
|
|
@@ -23606,6 +24041,9 @@ declare module "sap/ui/webc/main/MultiComboBox" {
|
|
|
23606
24041
|
items?: any[];
|
|
23607
24042
|
}
|
|
23608
24043
|
|
|
24044
|
+
/**
|
|
24045
|
+
* Event object of the MultiComboBox#selectionChange event.
|
|
24046
|
+
*/
|
|
23609
24047
|
export type MultiComboBox$SelectionChangeEvent = Event<
|
|
23610
24048
|
MultiComboBox$SelectionChangeEventParameters,
|
|
23611
24049
|
MultiComboBox
|
|
@@ -23727,7 +24165,11 @@ declare module "sap/ui/webc/main/MultiComboBoxGroupItem" {
|
|
|
23727
24165
|
sText?: string
|
|
23728
24166
|
): this;
|
|
23729
24167
|
}
|
|
23730
|
-
|
|
24168
|
+
/**
|
|
24169
|
+
* Describes the settings that can be provided to the MultiComboBoxGroupItem constructor.
|
|
24170
|
+
*
|
|
24171
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
24172
|
+
*/
|
|
23731
24173
|
export interface $MultiComboBoxGroupItemSettings
|
|
23732
24174
|
extends $WebComponentSettings {
|
|
23733
24175
|
/**
|
|
@@ -23909,7 +24351,11 @@ declare module "sap/ui/webc/main/MultiComboBoxItem" {
|
|
|
23909
24351
|
sText?: string
|
|
23910
24352
|
): this;
|
|
23911
24353
|
}
|
|
23912
|
-
|
|
24354
|
+
/**
|
|
24355
|
+
* Describes the settings that can be provided to the MultiComboBoxItem constructor.
|
|
24356
|
+
*
|
|
24357
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
24358
|
+
*/
|
|
23913
24359
|
export interface $MultiComboBoxItemSettings extends $WebComponentSettings {
|
|
23914
24360
|
/**
|
|
23915
24361
|
* Defines the additional text of the component.
|
|
@@ -25303,7 +25749,11 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25303
25749
|
sWidth: CSSSize
|
|
25304
25750
|
): this;
|
|
25305
25751
|
}
|
|
25306
|
-
|
|
25752
|
+
/**
|
|
25753
|
+
* Describes the settings that can be provided to the MultiInput constructor.
|
|
25754
|
+
*
|
|
25755
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
25756
|
+
*/
|
|
25307
25757
|
export interface $MultiInputSettings extends $WebComponentSettings {
|
|
25308
25758
|
/**
|
|
25309
25759
|
* Defines the accessible ARIA name of the component.
|
|
@@ -25477,20 +25927,35 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25477
25927
|
valueHelpTrigger?: (oEvent: Event) => void;
|
|
25478
25928
|
}
|
|
25479
25929
|
|
|
25930
|
+
/**
|
|
25931
|
+
* Parameters of the MultiInput#change event.
|
|
25932
|
+
*/
|
|
25480
25933
|
export interface MultiInput$ChangeEventParameters {}
|
|
25481
25934
|
|
|
25935
|
+
/**
|
|
25936
|
+
* Event object of the MultiInput#change event.
|
|
25937
|
+
*/
|
|
25482
25938
|
export type MultiInput$ChangeEvent = Event<
|
|
25483
25939
|
MultiInput$ChangeEventParameters,
|
|
25484
25940
|
MultiInput
|
|
25485
25941
|
>;
|
|
25486
25942
|
|
|
25943
|
+
/**
|
|
25944
|
+
* Parameters of the MultiInput#input event.
|
|
25945
|
+
*/
|
|
25487
25946
|
export interface MultiInput$InputEventParameters {}
|
|
25488
25947
|
|
|
25948
|
+
/**
|
|
25949
|
+
* Event object of the MultiInput#input event.
|
|
25950
|
+
*/
|
|
25489
25951
|
export type MultiInput$InputEvent = Event<
|
|
25490
25952
|
MultiInput$InputEventParameters,
|
|
25491
25953
|
MultiInput
|
|
25492
25954
|
>;
|
|
25493
25955
|
|
|
25956
|
+
/**
|
|
25957
|
+
* Parameters of the MultiInput#suggestionItemPreview event.
|
|
25958
|
+
*/
|
|
25494
25959
|
export interface MultiInput$SuggestionItemPreviewEventParameters {
|
|
25495
25960
|
/**
|
|
25496
25961
|
* The previewed suggestion item.
|
|
@@ -25503,11 +25968,17 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25503
25968
|
targetRef?: HTMLElement;
|
|
25504
25969
|
}
|
|
25505
25970
|
|
|
25971
|
+
/**
|
|
25972
|
+
* Event object of the MultiInput#suggestionItemPreview event.
|
|
25973
|
+
*/
|
|
25506
25974
|
export type MultiInput$SuggestionItemPreviewEvent = Event<
|
|
25507
25975
|
MultiInput$SuggestionItemPreviewEventParameters,
|
|
25508
25976
|
MultiInput
|
|
25509
25977
|
>;
|
|
25510
25978
|
|
|
25979
|
+
/**
|
|
25980
|
+
* Parameters of the MultiInput#suggestionItemSelect event.
|
|
25981
|
+
*/
|
|
25511
25982
|
export interface MultiInput$SuggestionItemSelectEventParameters {
|
|
25512
25983
|
/**
|
|
25513
25984
|
* The selected item.
|
|
@@ -25515,11 +25986,17 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25515
25986
|
item?: HTMLElement;
|
|
25516
25987
|
}
|
|
25517
25988
|
|
|
25989
|
+
/**
|
|
25990
|
+
* Event object of the MultiInput#suggestionItemSelect event.
|
|
25991
|
+
*/
|
|
25518
25992
|
export type MultiInput$SuggestionItemSelectEvent = Event<
|
|
25519
25993
|
MultiInput$SuggestionItemSelectEventParameters,
|
|
25520
25994
|
MultiInput
|
|
25521
25995
|
>;
|
|
25522
25996
|
|
|
25997
|
+
/**
|
|
25998
|
+
* Parameters of the MultiInput#tokenDelete event.
|
|
25999
|
+
*/
|
|
25523
26000
|
export interface MultiInput$TokenDeleteEventParameters {
|
|
25524
26001
|
/**
|
|
25525
26002
|
* deleted token.
|
|
@@ -25527,13 +26004,22 @@ declare module "sap/ui/webc/main/MultiInput" {
|
|
|
25527
26004
|
token?: HTMLElement;
|
|
25528
26005
|
}
|
|
25529
26006
|
|
|
26007
|
+
/**
|
|
26008
|
+
* Event object of the MultiInput#tokenDelete event.
|
|
26009
|
+
*/
|
|
25530
26010
|
export type MultiInput$TokenDeleteEvent = Event<
|
|
25531
26011
|
MultiInput$TokenDeleteEventParameters,
|
|
25532
26012
|
MultiInput
|
|
25533
26013
|
>;
|
|
25534
26014
|
|
|
26015
|
+
/**
|
|
26016
|
+
* Parameters of the MultiInput#valueHelpTrigger event.
|
|
26017
|
+
*/
|
|
25535
26018
|
export interface MultiInput$ValueHelpTriggerEventParameters {}
|
|
25536
26019
|
|
|
26020
|
+
/**
|
|
26021
|
+
* Event object of the MultiInput#valueHelpTrigger event.
|
|
26022
|
+
*/
|
|
25537
26023
|
export type MultiInput$ValueHelpTriggerEvent = Event<
|
|
25538
26024
|
MultiInput$ValueHelpTriggerEventParameters,
|
|
25539
26025
|
MultiInput
|
|
@@ -25797,7 +26283,11 @@ declare module "sap/ui/webc/main/Option" {
|
|
|
25797
26283
|
sValue: string
|
|
25798
26284
|
): this;
|
|
25799
26285
|
}
|
|
25800
|
-
|
|
26286
|
+
/**
|
|
26287
|
+
* Describes the settings that can be provided to the Option constructor.
|
|
26288
|
+
*
|
|
26289
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
26290
|
+
*/
|
|
25801
26291
|
export interface $OptionSettings extends $WebComponentSettings {
|
|
25802
26292
|
/**
|
|
25803
26293
|
* Defines the additional text displayed at the end of the option element.
|
|
@@ -26498,7 +26988,11 @@ declare module "sap/ui/webc/main/Panel" {
|
|
|
26498
26988
|
sWidth: CSSSize
|
|
26499
26989
|
): this;
|
|
26500
26990
|
}
|
|
26501
|
-
|
|
26991
|
+
/**
|
|
26992
|
+
* Describes the settings that can be provided to the Panel constructor.
|
|
26993
|
+
*
|
|
26994
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
26995
|
+
*/
|
|
26502
26996
|
export interface $PanelSettings extends $WebComponentSettings {
|
|
26503
26997
|
/**
|
|
26504
26998
|
* Defines the accessible ARIA name of the component.
|
|
@@ -26583,8 +27077,14 @@ declare module "sap/ui/webc/main/Panel" {
|
|
|
26583
27077
|
toggle?: (oEvent: Event) => void;
|
|
26584
27078
|
}
|
|
26585
27079
|
|
|
27080
|
+
/**
|
|
27081
|
+
* Parameters of the Panel#toggle event.
|
|
27082
|
+
*/
|
|
26586
27083
|
export interface Panel$ToggleEventParameters {}
|
|
26587
27084
|
|
|
27085
|
+
/**
|
|
27086
|
+
* Event object of the Panel#toggle event.
|
|
27087
|
+
*/
|
|
26588
27088
|
export type Panel$ToggleEvent = Event<Panel$ToggleEventParameters, Panel>;
|
|
26589
27089
|
}
|
|
26590
27090
|
|
|
@@ -27767,7 +28267,11 @@ declare module "sap/ui/webc/main/Popover" {
|
|
|
27767
28267
|
preventInitialFocus: boolean
|
|
27768
28268
|
): void;
|
|
27769
28269
|
}
|
|
27770
|
-
|
|
28270
|
+
/**
|
|
28271
|
+
* Describes the settings that can be provided to the Popover constructor.
|
|
28272
|
+
*
|
|
28273
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
28274
|
+
*/
|
|
27771
28275
|
export interface $PopoverSettings extends $WebComponentSettings {
|
|
27772
28276
|
/**
|
|
27773
28277
|
* Defines the accessible name of the component.
|
|
@@ -27907,20 +28411,35 @@ declare module "sap/ui/webc/main/Popover" {
|
|
|
27907
28411
|
beforeOpen?: (oEvent: Event) => void;
|
|
27908
28412
|
}
|
|
27909
28413
|
|
|
28414
|
+
/**
|
|
28415
|
+
* Parameters of the Popover#afterClose event.
|
|
28416
|
+
*/
|
|
27910
28417
|
export interface Popover$AfterCloseEventParameters {}
|
|
27911
28418
|
|
|
28419
|
+
/**
|
|
28420
|
+
* Event object of the Popover#afterClose event.
|
|
28421
|
+
*/
|
|
27912
28422
|
export type Popover$AfterCloseEvent = Event<
|
|
27913
28423
|
Popover$AfterCloseEventParameters,
|
|
27914
28424
|
Popover
|
|
27915
28425
|
>;
|
|
27916
28426
|
|
|
28427
|
+
/**
|
|
28428
|
+
* Parameters of the Popover#afterOpen event.
|
|
28429
|
+
*/
|
|
27917
28430
|
export interface Popover$AfterOpenEventParameters {}
|
|
27918
28431
|
|
|
28432
|
+
/**
|
|
28433
|
+
* Event object of the Popover#afterOpen event.
|
|
28434
|
+
*/
|
|
27919
28435
|
export type Popover$AfterOpenEvent = Event<
|
|
27920
28436
|
Popover$AfterOpenEventParameters,
|
|
27921
28437
|
Popover
|
|
27922
28438
|
>;
|
|
27923
28439
|
|
|
28440
|
+
/**
|
|
28441
|
+
* Parameters of the Popover#beforeClose event.
|
|
28442
|
+
*/
|
|
27924
28443
|
export interface Popover$BeforeCloseEventParameters {
|
|
27925
28444
|
/**
|
|
27926
28445
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -27928,13 +28447,22 @@ declare module "sap/ui/webc/main/Popover" {
|
|
|
27928
28447
|
escPressed?: boolean;
|
|
27929
28448
|
}
|
|
27930
28449
|
|
|
28450
|
+
/**
|
|
28451
|
+
* Event object of the Popover#beforeClose event.
|
|
28452
|
+
*/
|
|
27931
28453
|
export type Popover$BeforeCloseEvent = Event<
|
|
27932
28454
|
Popover$BeforeCloseEventParameters,
|
|
27933
28455
|
Popover
|
|
27934
28456
|
>;
|
|
27935
28457
|
|
|
28458
|
+
/**
|
|
28459
|
+
* Parameters of the Popover#beforeOpen event.
|
|
28460
|
+
*/
|
|
27936
28461
|
export interface Popover$BeforeOpenEventParameters {}
|
|
27937
28462
|
|
|
28463
|
+
/**
|
|
28464
|
+
* Event object of the Popover#beforeOpen event.
|
|
28465
|
+
*/
|
|
27938
28466
|
export type Popover$BeforeOpenEvent = Event<
|
|
27939
28467
|
Popover$BeforeOpenEventParameters,
|
|
27940
28468
|
Popover
|
|
@@ -28257,7 +28785,11 @@ declare module "sap/ui/webc/main/ProgressIndicator" {
|
|
|
28257
28785
|
sWidth: CSSSize
|
|
28258
28786
|
): this;
|
|
28259
28787
|
}
|
|
28260
|
-
|
|
28788
|
+
/**
|
|
28789
|
+
* Describes the settings that can be provided to the ProgressIndicator constructor.
|
|
28790
|
+
*
|
|
28791
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
28792
|
+
*/
|
|
28261
28793
|
export interface $ProgressIndicatorSettings extends $WebComponentSettings {
|
|
28262
28794
|
/**
|
|
28263
28795
|
* Defines the accessible ARIA name of the component.
|
|
@@ -28887,7 +29419,11 @@ declare module "sap/ui/webc/main/RadioButton" {
|
|
|
28887
29419
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
28888
29420
|
): this;
|
|
28889
29421
|
}
|
|
28890
|
-
|
|
29422
|
+
/**
|
|
29423
|
+
* Describes the settings that can be provided to the RadioButton constructor.
|
|
29424
|
+
*
|
|
29425
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
29426
|
+
*/
|
|
28891
29427
|
export interface $RadioButtonSettings extends $WebComponentSettings {
|
|
28892
29428
|
/**
|
|
28893
29429
|
* Defines the accessible ARIA name of the component.
|
|
@@ -28979,8 +29515,14 @@ declare module "sap/ui/webc/main/RadioButton" {
|
|
|
28979
29515
|
change?: (oEvent: Event) => void;
|
|
28980
29516
|
}
|
|
28981
29517
|
|
|
29518
|
+
/**
|
|
29519
|
+
* Parameters of the RadioButton#change event.
|
|
29520
|
+
*/
|
|
28982
29521
|
export interface RadioButton$ChangeEventParameters {}
|
|
28983
29522
|
|
|
29523
|
+
/**
|
|
29524
|
+
* Event object of the RadioButton#change event.
|
|
29525
|
+
*/
|
|
28984
29526
|
export type RadioButton$ChangeEvent = Event<
|
|
28985
29527
|
RadioButton$ChangeEventParameters,
|
|
28986
29528
|
RadioButton
|
|
@@ -29614,7 +30156,11 @@ declare module "sap/ui/webc/main/RangeSlider" {
|
|
|
29614
30156
|
sWidth: CSSSize
|
|
29615
30157
|
): this;
|
|
29616
30158
|
}
|
|
29617
|
-
|
|
30159
|
+
/**
|
|
30160
|
+
* Describes the settings that can be provided to the RangeSlider constructor.
|
|
30161
|
+
*
|
|
30162
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
30163
|
+
*/
|
|
29618
30164
|
export interface $RangeSliderSettings extends $WebComponentSettings {
|
|
29619
30165
|
/**
|
|
29620
30166
|
* Defines the accessible ARIA name of the component.
|
|
@@ -29693,15 +30239,27 @@ declare module "sap/ui/webc/main/RangeSlider" {
|
|
|
29693
30239
|
input?: (oEvent: Event) => void;
|
|
29694
30240
|
}
|
|
29695
30241
|
|
|
30242
|
+
/**
|
|
30243
|
+
* Parameters of the RangeSlider#change event.
|
|
30244
|
+
*/
|
|
29696
30245
|
export interface RangeSlider$ChangeEventParameters {}
|
|
29697
30246
|
|
|
30247
|
+
/**
|
|
30248
|
+
* Event object of the RangeSlider#change event.
|
|
30249
|
+
*/
|
|
29698
30250
|
export type RangeSlider$ChangeEvent = Event<
|
|
29699
30251
|
RangeSlider$ChangeEventParameters,
|
|
29700
30252
|
RangeSlider
|
|
29701
30253
|
>;
|
|
29702
30254
|
|
|
30255
|
+
/**
|
|
30256
|
+
* Parameters of the RangeSlider#input event.
|
|
30257
|
+
*/
|
|
29703
30258
|
export interface RangeSlider$InputEventParameters {}
|
|
29704
30259
|
|
|
30260
|
+
/**
|
|
30261
|
+
* Event object of the RangeSlider#input event.
|
|
30262
|
+
*/
|
|
29705
30263
|
export type RangeSlider$InputEvent = Event<
|
|
29706
30264
|
RangeSlider$InputEventParameters,
|
|
29707
30265
|
RangeSlider
|
|
@@ -30144,7 +30702,11 @@ declare module "sap/ui/webc/main/RatingIndicator" {
|
|
|
30144
30702
|
sWidth: CSSSize
|
|
30145
30703
|
): this;
|
|
30146
30704
|
}
|
|
30147
|
-
|
|
30705
|
+
/**
|
|
30706
|
+
* Describes the settings that can be provided to the RatingIndicator constructor.
|
|
30707
|
+
*
|
|
30708
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
30709
|
+
*/
|
|
30148
30710
|
export interface $RatingIndicatorSettings extends $WebComponentSettings {
|
|
30149
30711
|
/**
|
|
30150
30712
|
* Defines the accessible ARIA name of the component.
|
|
@@ -30200,8 +30762,14 @@ declare module "sap/ui/webc/main/RatingIndicator" {
|
|
|
30200
30762
|
change?: (oEvent: Event) => void;
|
|
30201
30763
|
}
|
|
30202
30764
|
|
|
30765
|
+
/**
|
|
30766
|
+
* Parameters of the RatingIndicator#change event.
|
|
30767
|
+
*/
|
|
30203
30768
|
export interface RatingIndicator$ChangeEventParameters {}
|
|
30204
30769
|
|
|
30770
|
+
/**
|
|
30771
|
+
* Event object of the RatingIndicator#change event.
|
|
30772
|
+
*/
|
|
30205
30773
|
export type RatingIndicator$ChangeEvent = Event<
|
|
30206
30774
|
RatingIndicator$ChangeEventParameters,
|
|
30207
30775
|
RatingIndicator
|
|
@@ -31334,7 +31902,11 @@ declare module "sap/ui/webc/main/ResponsivePopover" {
|
|
|
31334
31902
|
preventInitialFocus: boolean
|
|
31335
31903
|
): void;
|
|
31336
31904
|
}
|
|
31337
|
-
|
|
31905
|
+
/**
|
|
31906
|
+
* Describes the settings that can be provided to the ResponsivePopover constructor.
|
|
31907
|
+
*
|
|
31908
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
31909
|
+
*/
|
|
31338
31910
|
export interface $ResponsivePopoverSettings extends $WebComponentSettings {
|
|
31339
31911
|
/**
|
|
31340
31912
|
* Defines the accessible name of the component.
|
|
@@ -31464,20 +32036,35 @@ declare module "sap/ui/webc/main/ResponsivePopover" {
|
|
|
31464
32036
|
beforeOpen?: (oEvent: Event) => void;
|
|
31465
32037
|
}
|
|
31466
32038
|
|
|
32039
|
+
/**
|
|
32040
|
+
* Parameters of the ResponsivePopover#afterClose event.
|
|
32041
|
+
*/
|
|
31467
32042
|
export interface ResponsivePopover$AfterCloseEventParameters {}
|
|
31468
32043
|
|
|
32044
|
+
/**
|
|
32045
|
+
* Event object of the ResponsivePopover#afterClose event.
|
|
32046
|
+
*/
|
|
31469
32047
|
export type ResponsivePopover$AfterCloseEvent = Event<
|
|
31470
32048
|
ResponsivePopover$AfterCloseEventParameters,
|
|
31471
32049
|
ResponsivePopover
|
|
31472
32050
|
>;
|
|
31473
32051
|
|
|
32052
|
+
/**
|
|
32053
|
+
* Parameters of the ResponsivePopover#afterOpen event.
|
|
32054
|
+
*/
|
|
31474
32055
|
export interface ResponsivePopover$AfterOpenEventParameters {}
|
|
31475
32056
|
|
|
32057
|
+
/**
|
|
32058
|
+
* Event object of the ResponsivePopover#afterOpen event.
|
|
32059
|
+
*/
|
|
31476
32060
|
export type ResponsivePopover$AfterOpenEvent = Event<
|
|
31477
32061
|
ResponsivePopover$AfterOpenEventParameters,
|
|
31478
32062
|
ResponsivePopover
|
|
31479
32063
|
>;
|
|
31480
32064
|
|
|
32065
|
+
/**
|
|
32066
|
+
* Parameters of the ResponsivePopover#beforeClose event.
|
|
32067
|
+
*/
|
|
31481
32068
|
export interface ResponsivePopover$BeforeCloseEventParameters {
|
|
31482
32069
|
/**
|
|
31483
32070
|
* Indicates that `ESC` key has triggered the event.
|
|
@@ -31485,13 +32072,22 @@ declare module "sap/ui/webc/main/ResponsivePopover" {
|
|
|
31485
32072
|
escPressed?: boolean;
|
|
31486
32073
|
}
|
|
31487
32074
|
|
|
32075
|
+
/**
|
|
32076
|
+
* Event object of the ResponsivePopover#beforeClose event.
|
|
32077
|
+
*/
|
|
31488
32078
|
export type ResponsivePopover$BeforeCloseEvent = Event<
|
|
31489
32079
|
ResponsivePopover$BeforeCloseEventParameters,
|
|
31490
32080
|
ResponsivePopover
|
|
31491
32081
|
>;
|
|
31492
32082
|
|
|
32083
|
+
/**
|
|
32084
|
+
* Parameters of the ResponsivePopover#beforeOpen event.
|
|
32085
|
+
*/
|
|
31493
32086
|
export interface ResponsivePopover$BeforeOpenEventParameters {}
|
|
31494
32087
|
|
|
32088
|
+
/**
|
|
32089
|
+
* Event object of the ResponsivePopover#beforeOpen event.
|
|
32090
|
+
*/
|
|
31495
32091
|
export type ResponsivePopover$BeforeOpenEvent = Event<
|
|
31496
32092
|
ResponsivePopover$BeforeOpenEventParameters,
|
|
31497
32093
|
ResponsivePopover
|
|
@@ -31873,7 +32469,11 @@ declare module "sap/ui/webc/main/SegmentedButton" {
|
|
|
31873
32469
|
sWidth: CSSSize
|
|
31874
32470
|
): this;
|
|
31875
32471
|
}
|
|
31876
|
-
|
|
32472
|
+
/**
|
|
32473
|
+
* Describes the settings that can be provided to the SegmentedButton constructor.
|
|
32474
|
+
*
|
|
32475
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
32476
|
+
*/
|
|
31877
32477
|
export interface $SegmentedButtonSettings extends $WebComponentSettings {
|
|
31878
32478
|
/**
|
|
31879
32479
|
* Defines the accessible ARIA name of the component.
|
|
@@ -31920,6 +32520,9 @@ declare module "sap/ui/webc/main/SegmentedButton" {
|
|
|
31920
32520
|
selectionChange?: (oEvent: SegmentedButton$SelectionChangeEvent) => void;
|
|
31921
32521
|
}
|
|
31922
32522
|
|
|
32523
|
+
/**
|
|
32524
|
+
* Parameters of the SegmentedButton#selectionChange event.
|
|
32525
|
+
*/
|
|
31923
32526
|
export interface SegmentedButton$SelectionChangeEventParameters {
|
|
31924
32527
|
/**
|
|
31925
32528
|
* the pressed item. Note: deprecated since 1.14.0 and will be removed in the next major release, use the
|
|
@@ -31933,6 +32536,9 @@ declare module "sap/ui/webc/main/SegmentedButton" {
|
|
|
31933
32536
|
selectedItems?: HTMLElement[];
|
|
31934
32537
|
}
|
|
31935
32538
|
|
|
32539
|
+
/**
|
|
32540
|
+
* Event object of the SegmentedButton#selectionChange event.
|
|
32541
|
+
*/
|
|
31936
32542
|
export type SegmentedButton$SelectionChangeEvent = Event<
|
|
31937
32543
|
SegmentedButton$SelectionChangeEventParameters,
|
|
31938
32544
|
SegmentedButton
|
|
@@ -32498,7 +33104,11 @@ declare module "sap/ui/webc/main/SegmentedButtonItem" {
|
|
|
32498
33104
|
sType?: ButtonType | keyof typeof ButtonType
|
|
32499
33105
|
): this;
|
|
32500
33106
|
}
|
|
32501
|
-
|
|
33107
|
+
/**
|
|
33108
|
+
* Describes the settings that can be provided to the SegmentedButtonItem constructor.
|
|
33109
|
+
*
|
|
33110
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
33111
|
+
*/
|
|
32502
33112
|
export interface $SegmentedButtonItemSettings extends $WebComponentSettings {
|
|
32503
33113
|
/**
|
|
32504
33114
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -32593,8 +33203,14 @@ declare module "sap/ui/webc/main/SegmentedButtonItem" {
|
|
|
32593
33203
|
click?: (oEvent: Event) => void;
|
|
32594
33204
|
}
|
|
32595
33205
|
|
|
33206
|
+
/**
|
|
33207
|
+
* Parameters of the SegmentedButtonItem#click event.
|
|
33208
|
+
*/
|
|
32596
33209
|
export interface SegmentedButtonItem$ClickEventParameters {}
|
|
32597
33210
|
|
|
33211
|
+
/**
|
|
33212
|
+
* Event object of the SegmentedButtonItem#click event.
|
|
33213
|
+
*/
|
|
32598
33214
|
export type SegmentedButtonItem$ClickEvent = Event<
|
|
32599
33215
|
SegmentedButtonItem$ClickEventParameters,
|
|
32600
33216
|
SegmentedButtonItem
|
|
@@ -33511,7 +34127,11 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33511
34127
|
sWidth: CSSSize
|
|
33512
34128
|
): this;
|
|
33513
34129
|
}
|
|
33514
|
-
|
|
34130
|
+
/**
|
|
34131
|
+
* Describes the settings that can be provided to the Select constructor.
|
|
34132
|
+
*
|
|
34133
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
34134
|
+
*/
|
|
33515
34135
|
export interface $SelectSettings extends $WebComponentSettings {
|
|
33516
34136
|
/**
|
|
33517
34137
|
* Defines the accessible ARIA name of the component.
|
|
@@ -33638,6 +34258,9 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33638
34258
|
open?: (oEvent: Event) => void;
|
|
33639
34259
|
}
|
|
33640
34260
|
|
|
34261
|
+
/**
|
|
34262
|
+
* Parameters of the Select#change event.
|
|
34263
|
+
*/
|
|
33641
34264
|
export interface Select$ChangeEventParameters {
|
|
33642
34265
|
/**
|
|
33643
34266
|
* the selected option.
|
|
@@ -33645,12 +34268,24 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33645
34268
|
selectedOption?: HTMLElement;
|
|
33646
34269
|
}
|
|
33647
34270
|
|
|
34271
|
+
/**
|
|
34272
|
+
* Event object of the Select#change event.
|
|
34273
|
+
*/
|
|
33648
34274
|
export type Select$ChangeEvent = Event<Select$ChangeEventParameters, Select>;
|
|
33649
34275
|
|
|
34276
|
+
/**
|
|
34277
|
+
* Parameters of the Select#close event.
|
|
34278
|
+
*/
|
|
33650
34279
|
export interface Select$CloseEventParameters {}
|
|
33651
34280
|
|
|
34281
|
+
/**
|
|
34282
|
+
* Event object of the Select#close event.
|
|
34283
|
+
*/
|
|
33652
34284
|
export type Select$CloseEvent = Event<Select$CloseEventParameters, Select>;
|
|
33653
34285
|
|
|
34286
|
+
/**
|
|
34287
|
+
* Parameters of the Select#liveChange event.
|
|
34288
|
+
*/
|
|
33654
34289
|
export interface Select$LiveChangeEventParameters {
|
|
33655
34290
|
/**
|
|
33656
34291
|
* the selected option.
|
|
@@ -33658,13 +34293,22 @@ declare module "sap/ui/webc/main/Select" {
|
|
|
33658
34293
|
selectedOption?: HTMLElement;
|
|
33659
34294
|
}
|
|
33660
34295
|
|
|
34296
|
+
/**
|
|
34297
|
+
* Event object of the Select#liveChange event.
|
|
34298
|
+
*/
|
|
33661
34299
|
export type Select$LiveChangeEvent = Event<
|
|
33662
34300
|
Select$LiveChangeEventParameters,
|
|
33663
34301
|
Select
|
|
33664
34302
|
>;
|
|
33665
34303
|
|
|
34304
|
+
/**
|
|
34305
|
+
* Parameters of the Select#open event.
|
|
34306
|
+
*/
|
|
33666
34307
|
export interface Select$OpenEventParameters {}
|
|
33667
34308
|
|
|
34309
|
+
/**
|
|
34310
|
+
* Event object of the Select#open event.
|
|
34311
|
+
*/
|
|
33668
34312
|
export type Select$OpenEvent = Event<Select$OpenEventParameters, Select>;
|
|
33669
34313
|
}
|
|
33670
34314
|
|
|
@@ -33841,7 +34485,11 @@ declare module "sap/ui/webc/main/SelectMenu" {
|
|
|
33841
34485
|
vContent: int | string | ISelectMenuOption
|
|
33842
34486
|
): ISelectMenuOption | null;
|
|
33843
34487
|
}
|
|
33844
|
-
|
|
34488
|
+
/**
|
|
34489
|
+
* Describes the settings that can be provided to the SelectMenu constructor.
|
|
34490
|
+
*
|
|
34491
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
34492
|
+
*/
|
|
33845
34493
|
export interface $SelectMenuSettings extends $WebComponentSettings {
|
|
33846
34494
|
/**
|
|
33847
34495
|
* Defines the options of the component.
|
|
@@ -34075,7 +34723,11 @@ declare module "sap/ui/webc/main/SelectMenuOption" {
|
|
|
34075
34723
|
sValue: string
|
|
34076
34724
|
): this;
|
|
34077
34725
|
}
|
|
34078
|
-
|
|
34726
|
+
/**
|
|
34727
|
+
* Describes the settings that can be provided to the SelectMenuOption constructor.
|
|
34728
|
+
*
|
|
34729
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
34730
|
+
*/
|
|
34079
34731
|
export interface $SelectMenuOptionSettings extends $WebComponentSettings {
|
|
34080
34732
|
/**
|
|
34081
34733
|
* Defines the text, displayed inside the `sap.ui.webc.main.Select` input filed when the option gets selected.
|
|
@@ -34690,7 +35342,11 @@ declare module "sap/ui/webc/main/Slider" {
|
|
|
34690
35342
|
sWidth: CSSSize
|
|
34691
35343
|
): this;
|
|
34692
35344
|
}
|
|
34693
|
-
|
|
35345
|
+
/**
|
|
35346
|
+
* Describes the settings that can be provided to the Slider constructor.
|
|
35347
|
+
*
|
|
35348
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
35349
|
+
*/
|
|
34694
35350
|
export interface $SliderSettings extends $WebComponentSettings {
|
|
34695
35351
|
/**
|
|
34696
35352
|
* Defines the accessible ARIA name of the component.
|
|
@@ -34764,12 +35420,24 @@ declare module "sap/ui/webc/main/Slider" {
|
|
|
34764
35420
|
input?: (oEvent: Event) => void;
|
|
34765
35421
|
}
|
|
34766
35422
|
|
|
35423
|
+
/**
|
|
35424
|
+
* Parameters of the Slider#change event.
|
|
35425
|
+
*/
|
|
34767
35426
|
export interface Slider$ChangeEventParameters {}
|
|
34768
35427
|
|
|
35428
|
+
/**
|
|
35429
|
+
* Event object of the Slider#change event.
|
|
35430
|
+
*/
|
|
34769
35431
|
export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters, Slider>;
|
|
34770
35432
|
|
|
35433
|
+
/**
|
|
35434
|
+
* Parameters of the Slider#input event.
|
|
35435
|
+
*/
|
|
34771
35436
|
export interface Slider$InputEventParameters {}
|
|
34772
35437
|
|
|
35438
|
+
/**
|
|
35439
|
+
* Event object of the Slider#input event.
|
|
35440
|
+
*/
|
|
34773
35441
|
export type Slider$InputEvent = Event<Slider$InputEventParameters, Slider>;
|
|
34774
35442
|
}
|
|
34775
35443
|
|
|
@@ -35223,7 +35891,11 @@ declare module "sap/ui/webc/main/SplitButton" {
|
|
|
35223
35891
|
sText?: string
|
|
35224
35892
|
): this;
|
|
35225
35893
|
}
|
|
35226
|
-
|
|
35894
|
+
/**
|
|
35895
|
+
* Describes the settings that can be provided to the SplitButton constructor.
|
|
35896
|
+
*
|
|
35897
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
35898
|
+
*/
|
|
35227
35899
|
export interface $SplitButtonSettings extends $WebComponentSettings {
|
|
35228
35900
|
/**
|
|
35229
35901
|
* Defines the accessible ARIA name of the component.
|
|
@@ -35275,15 +35947,27 @@ declare module "sap/ui/webc/main/SplitButton" {
|
|
|
35275
35947
|
click?: (oEvent: Event) => void;
|
|
35276
35948
|
}
|
|
35277
35949
|
|
|
35950
|
+
/**
|
|
35951
|
+
* Parameters of the SplitButton#arrowClick event.
|
|
35952
|
+
*/
|
|
35278
35953
|
export interface SplitButton$ArrowClickEventParameters {}
|
|
35279
35954
|
|
|
35955
|
+
/**
|
|
35956
|
+
* Event object of the SplitButton#arrowClick event.
|
|
35957
|
+
*/
|
|
35280
35958
|
export type SplitButton$ArrowClickEvent = Event<
|
|
35281
35959
|
SplitButton$ArrowClickEventParameters,
|
|
35282
35960
|
SplitButton
|
|
35283
35961
|
>;
|
|
35284
35962
|
|
|
35963
|
+
/**
|
|
35964
|
+
* Parameters of the SplitButton#click event.
|
|
35965
|
+
*/
|
|
35285
35966
|
export interface SplitButton$ClickEventParameters {}
|
|
35286
35967
|
|
|
35968
|
+
/**
|
|
35969
|
+
* Event object of the SplitButton#click event.
|
|
35970
|
+
*/
|
|
35287
35971
|
export type SplitButton$ClickEvent = Event<
|
|
35288
35972
|
SplitButton$ClickEventParameters,
|
|
35289
35973
|
SplitButton
|
|
@@ -35967,7 +36651,11 @@ declare module "sap/ui/webc/main/StandardListItem" {
|
|
|
35967
36651
|
sType?: ListItemType | keyof typeof ListItemType
|
|
35968
36652
|
): this;
|
|
35969
36653
|
}
|
|
35970
|
-
|
|
36654
|
+
/**
|
|
36655
|
+
* Describes the settings that can be provided to the StandardListItem constructor.
|
|
36656
|
+
*
|
|
36657
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
36658
|
+
*/
|
|
35971
36659
|
export interface $StandardListItemSettings extends $WebComponentSettings {
|
|
35972
36660
|
/**
|
|
35973
36661
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -36082,8 +36770,14 @@ declare module "sap/ui/webc/main/StandardListItem" {
|
|
|
36082
36770
|
detailClick?: (oEvent: Event) => void;
|
|
36083
36771
|
}
|
|
36084
36772
|
|
|
36773
|
+
/**
|
|
36774
|
+
* Parameters of the StandardListItem#detailClick event.
|
|
36775
|
+
*/
|
|
36085
36776
|
export interface StandardListItem$DetailClickEventParameters {}
|
|
36086
36777
|
|
|
36778
|
+
/**
|
|
36779
|
+
* Event object of the StandardListItem#detailClick event.
|
|
36780
|
+
*/
|
|
36087
36781
|
export type StandardListItem$DetailClickEvent = Event<
|
|
36088
36782
|
StandardListItem$DetailClickEventParameters,
|
|
36089
36783
|
StandardListItem
|
|
@@ -36738,7 +37432,11 @@ declare module "sap/ui/webc/main/StepInput" {
|
|
|
36738
37432
|
sWidth: CSSSize
|
|
36739
37433
|
): this;
|
|
36740
37434
|
}
|
|
36741
|
-
|
|
37435
|
+
/**
|
|
37436
|
+
* Describes the settings that can be provided to the StepInput constructor.
|
|
37437
|
+
*
|
|
37438
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
37439
|
+
*/
|
|
36742
37440
|
export interface $StepInputSettings extends $WebComponentSettings {
|
|
36743
37441
|
/**
|
|
36744
37442
|
* Defines the accessible ARIA name of the component.
|
|
@@ -36840,8 +37538,14 @@ declare module "sap/ui/webc/main/StepInput" {
|
|
|
36840
37538
|
change?: (oEvent: Event) => void;
|
|
36841
37539
|
}
|
|
36842
37540
|
|
|
37541
|
+
/**
|
|
37542
|
+
* Parameters of the StepInput#change event.
|
|
37543
|
+
*/
|
|
36843
37544
|
export interface StepInput$ChangeEventParameters {}
|
|
36844
37545
|
|
|
37546
|
+
/**
|
|
37547
|
+
* Event object of the StepInput#change event.
|
|
37548
|
+
*/
|
|
36845
37549
|
export type StepInput$ChangeEvent = Event<
|
|
36846
37550
|
StepInput$ChangeEventParameters,
|
|
36847
37551
|
StepInput
|
|
@@ -36963,7 +37667,11 @@ declare module "sap/ui/webc/main/SuggestionGroupItem" {
|
|
|
36963
37667
|
sText?: string
|
|
36964
37668
|
): this;
|
|
36965
37669
|
}
|
|
36966
|
-
|
|
37670
|
+
/**
|
|
37671
|
+
* Describes the settings that can be provided to the SuggestionGroupItem constructor.
|
|
37672
|
+
*
|
|
37673
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
37674
|
+
*/
|
|
36967
37675
|
export interface $SuggestionGroupItemSettings extends $WebComponentSettings {
|
|
36968
37676
|
/**
|
|
36969
37677
|
* Defines the text of the `sap.ui.webc.main.SuggestionGroupItem`.
|
|
@@ -37301,7 +38009,11 @@ declare module "sap/ui/webc/main/SuggestionItem" {
|
|
|
37301
38009
|
sType?: ListItemType | keyof typeof ListItemType
|
|
37302
38010
|
): this;
|
|
37303
38011
|
}
|
|
37304
|
-
|
|
38012
|
+
/**
|
|
38013
|
+
* Describes the settings that can be provided to the SuggestionItem constructor.
|
|
38014
|
+
*
|
|
38015
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
38016
|
+
*/
|
|
37305
38017
|
export interface $SuggestionItemSettings extends $WebComponentSettings {
|
|
37306
38018
|
/**
|
|
37307
38019
|
* Defines the `additionalText`, displayed in the end of the item.
|
|
@@ -37878,7 +38590,11 @@ declare module "sap/ui/webc/main/Switch" {
|
|
|
37878
38590
|
sWidth: CSSSize
|
|
37879
38591
|
): this;
|
|
37880
38592
|
}
|
|
37881
|
-
|
|
38593
|
+
/**
|
|
38594
|
+
* Describes the settings that can be provided to the Switch constructor.
|
|
38595
|
+
*
|
|
38596
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
38597
|
+
*/
|
|
37882
38598
|
export interface $SwitchSettings extends $WebComponentSettings {
|
|
37883
38599
|
/**
|
|
37884
38600
|
* Sets the accessible ARIA name of the component.
|
|
@@ -37960,8 +38676,14 @@ declare module "sap/ui/webc/main/Switch" {
|
|
|
37960
38676
|
change?: (oEvent: Event) => void;
|
|
37961
38677
|
}
|
|
37962
38678
|
|
|
38679
|
+
/**
|
|
38680
|
+
* Parameters of the Switch#change event.
|
|
38681
|
+
*/
|
|
37963
38682
|
export interface Switch$ChangeEventParameters {}
|
|
37964
38683
|
|
|
38684
|
+
/**
|
|
38685
|
+
* Event object of the Switch#change event.
|
|
38686
|
+
*/
|
|
37965
38687
|
export type Switch$ChangeEvent = Event<Switch$ChangeEventParameters, Switch>;
|
|
37966
38688
|
}
|
|
37967
38689
|
|
|
@@ -38425,7 +39147,11 @@ declare module "sap/ui/webc/main/Tab" {
|
|
|
38425
39147
|
sText?: string
|
|
38426
39148
|
): this;
|
|
38427
39149
|
}
|
|
38428
|
-
|
|
39150
|
+
/**
|
|
39151
|
+
* Describes the settings that can be provided to the Tab constructor.
|
|
39152
|
+
*
|
|
39153
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
39154
|
+
*/
|
|
38429
39155
|
export interface $TabSettings extends $WebComponentSettings {
|
|
38430
39156
|
/**
|
|
38431
39157
|
* Represents the "additionalText" text, which is displayed in the tab. In the cases when in the same time
|
|
@@ -39093,7 +39819,11 @@ declare module "sap/ui/webc/main/TabContainer" {
|
|
|
39093
39819
|
sWidth: CSSSize
|
|
39094
39820
|
): this;
|
|
39095
39821
|
}
|
|
39096
|
-
|
|
39822
|
+
/**
|
|
39823
|
+
* Describes the settings that can be provided to the TabContainer constructor.
|
|
39824
|
+
*
|
|
39825
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
39826
|
+
*/
|
|
39097
39827
|
export interface $TabContainerSettings extends $WebComponentSettings {
|
|
39098
39828
|
/**
|
|
39099
39829
|
* Defines whether the tab content is collapsed.
|
|
@@ -39188,6 +39918,9 @@ declare module "sap/ui/webc/main/TabContainer" {
|
|
|
39188
39918
|
tabSelect?: (oEvent: TabContainer$TabSelectEvent) => void;
|
|
39189
39919
|
}
|
|
39190
39920
|
|
|
39921
|
+
/**
|
|
39922
|
+
* Parameters of the TabContainer#tabSelect event.
|
|
39923
|
+
*/
|
|
39191
39924
|
export interface TabContainer$TabSelectEventParameters {
|
|
39192
39925
|
/**
|
|
39193
39926
|
* The selected `tab`.
|
|
@@ -39201,6 +39934,9 @@ declare module "sap/ui/webc/main/TabContainer" {
|
|
|
39201
39934
|
tabIndex?: int;
|
|
39202
39935
|
}
|
|
39203
39936
|
|
|
39937
|
+
/**
|
|
39938
|
+
* Event object of the TabContainer#tabSelect event.
|
|
39939
|
+
*/
|
|
39204
39940
|
export type TabContainer$TabSelectEvent = Event<
|
|
39205
39941
|
TabContainer$TabSelectEventParameters,
|
|
39206
39942
|
TabContainer
|
|
@@ -40272,7 +41008,11 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40272
41008
|
sWidth: CSSSize
|
|
40273
41009
|
): this;
|
|
40274
41010
|
}
|
|
40275
|
-
|
|
41011
|
+
/**
|
|
41012
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
41013
|
+
*
|
|
41014
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
41015
|
+
*/
|
|
40276
41016
|
export interface $TableSettings extends $WebComponentSettings {
|
|
40277
41017
|
/**
|
|
40278
41018
|
* Defines the accessible ARIA name of the component.
|
|
@@ -40427,10 +41167,19 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40427
41167
|
selectionChange?: (oEvent: Table$SelectionChangeEvent) => void;
|
|
40428
41168
|
}
|
|
40429
41169
|
|
|
41170
|
+
/**
|
|
41171
|
+
* Parameters of the Table#loadMore event.
|
|
41172
|
+
*/
|
|
40430
41173
|
export interface Table$LoadMoreEventParameters {}
|
|
40431
41174
|
|
|
41175
|
+
/**
|
|
41176
|
+
* Event object of the Table#loadMore event.
|
|
41177
|
+
*/
|
|
40432
41178
|
export type Table$LoadMoreEvent = Event<Table$LoadMoreEventParameters, Table>;
|
|
40433
41179
|
|
|
41180
|
+
/**
|
|
41181
|
+
* Parameters of the Table#popinChange event.
|
|
41182
|
+
*/
|
|
40434
41183
|
export interface Table$PopinChangeEventParameters {
|
|
40435
41184
|
/**
|
|
40436
41185
|
* popped-in columns.
|
|
@@ -40438,11 +41187,17 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40438
41187
|
poppedColumns?: any[];
|
|
40439
41188
|
}
|
|
40440
41189
|
|
|
41190
|
+
/**
|
|
41191
|
+
* Event object of the Table#popinChange event.
|
|
41192
|
+
*/
|
|
40441
41193
|
export type Table$PopinChangeEvent = Event<
|
|
40442
41194
|
Table$PopinChangeEventParameters,
|
|
40443
41195
|
Table
|
|
40444
41196
|
>;
|
|
40445
41197
|
|
|
41198
|
+
/**
|
|
41199
|
+
* Parameters of the Table#rowClick event.
|
|
41200
|
+
*/
|
|
40446
41201
|
export interface Table$RowClickEventParameters {
|
|
40447
41202
|
/**
|
|
40448
41203
|
* the activated row.
|
|
@@ -40450,8 +41205,14 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40450
41205
|
row?: HTMLElement;
|
|
40451
41206
|
}
|
|
40452
41207
|
|
|
41208
|
+
/**
|
|
41209
|
+
* Event object of the Table#rowClick event.
|
|
41210
|
+
*/
|
|
40453
41211
|
export type Table$RowClickEvent = Event<Table$RowClickEventParameters, Table>;
|
|
40454
41212
|
|
|
41213
|
+
/**
|
|
41214
|
+
* Parameters of the Table#selectionChange event.
|
|
41215
|
+
*/
|
|
40455
41216
|
export interface Table$SelectionChangeEventParameters {
|
|
40456
41217
|
/**
|
|
40457
41218
|
* An array of the selected rows.
|
|
@@ -40464,6 +41225,9 @@ declare module "sap/ui/webc/main/Table" {
|
|
|
40464
41225
|
previouslySelectedRows?: any[];
|
|
40465
41226
|
}
|
|
40466
41227
|
|
|
41228
|
+
/**
|
|
41229
|
+
* Event object of the Table#selectionChange event.
|
|
41230
|
+
*/
|
|
40467
41231
|
export type Table$SelectionChangeEvent = Event<
|
|
40468
41232
|
Table$SelectionChangeEventParameters,
|
|
40469
41233
|
Table
|
|
@@ -40642,7 +41406,11 @@ declare module "sap/ui/webc/main/TableCell" {
|
|
|
40642
41406
|
vContent: int | string | Control
|
|
40643
41407
|
): Control | null;
|
|
40644
41408
|
}
|
|
40645
|
-
|
|
41409
|
+
/**
|
|
41410
|
+
* Describes the settings that can be provided to the TableCell constructor.
|
|
41411
|
+
*
|
|
41412
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
41413
|
+
*/
|
|
40646
41414
|
export interface $TableCellSettings extends $WebComponentSettings {
|
|
40647
41415
|
/**
|
|
40648
41416
|
* Specifies the content of the component.
|
|
@@ -40981,7 +41749,11 @@ declare module "sap/ui/webc/main/TableColumn" {
|
|
|
40981
41749
|
sPopinText?: string
|
|
40982
41750
|
): this;
|
|
40983
41751
|
}
|
|
40984
|
-
|
|
41752
|
+
/**
|
|
41753
|
+
* Describes the settings that can be provided to the TableColumn constructor.
|
|
41754
|
+
*
|
|
41755
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
41756
|
+
*/
|
|
40985
41757
|
export interface $TableColumnSettings extends $WebComponentSettings {
|
|
40986
41758
|
/**
|
|
40987
41759
|
* According to your `minWidth` settings, the component can be hidden in different screen sizes.
|
|
@@ -41149,7 +41921,11 @@ declare module "sap/ui/webc/main/TableGroupRow" {
|
|
|
41149
41921
|
sText?: string
|
|
41150
41922
|
): this;
|
|
41151
41923
|
}
|
|
41152
|
-
|
|
41924
|
+
/**
|
|
41925
|
+
* Describes the settings that can be provided to the TableGroupRow constructor.
|
|
41926
|
+
*
|
|
41927
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
41928
|
+
*/
|
|
41153
41929
|
export interface $TableGroupRowSettings extends $WebComponentSettings {
|
|
41154
41930
|
/**
|
|
41155
41931
|
* Defines the content of the control
|
|
@@ -41438,7 +42214,11 @@ declare module "sap/ui/webc/main/TableRow" {
|
|
|
41438
42214
|
sType?: TableRowType | keyof typeof TableRowType
|
|
41439
42215
|
): this;
|
|
41440
42216
|
}
|
|
41441
|
-
|
|
42217
|
+
/**
|
|
42218
|
+
* Describes the settings that can be provided to the TableRow constructor.
|
|
42219
|
+
*
|
|
42220
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
42221
|
+
*/
|
|
41442
42222
|
export interface $TableRowSettings extends $WebComponentSettings {
|
|
41443
42223
|
/**
|
|
41444
42224
|
* Indicates if the table row is navigated.
|
|
@@ -41567,7 +42347,11 @@ declare module "sap/ui/webc/main/TabSeparator" {
|
|
|
41567
42347
|
*/
|
|
41568
42348
|
getTabInStripDomRef(): void;
|
|
41569
42349
|
}
|
|
41570
|
-
|
|
42350
|
+
/**
|
|
42351
|
+
* Describes the settings that can be provided to the TabSeparator constructor.
|
|
42352
|
+
*
|
|
42353
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
42354
|
+
*/
|
|
41571
42355
|
export interface $TabSeparatorSettings extends $WebComponentSettings {}
|
|
41572
42356
|
}
|
|
41573
42357
|
|
|
@@ -42367,7 +43151,11 @@ declare module "sap/ui/webc/main/TextArea" {
|
|
|
42367
43151
|
sWidth: CSSSize
|
|
42368
43152
|
): this;
|
|
42369
43153
|
}
|
|
42370
|
-
|
|
43154
|
+
/**
|
|
43155
|
+
* Describes the settings that can be provided to the TextArea constructor.
|
|
43156
|
+
*
|
|
43157
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
43158
|
+
*/
|
|
42371
43159
|
export interface $TextAreaSettings extends $WebComponentSettings {
|
|
42372
43160
|
/**
|
|
42373
43161
|
* Defines the accessible ARIA name of the component.
|
|
@@ -42495,15 +43283,27 @@ declare module "sap/ui/webc/main/TextArea" {
|
|
|
42495
43283
|
input?: (oEvent: Event) => void;
|
|
42496
43284
|
}
|
|
42497
43285
|
|
|
43286
|
+
/**
|
|
43287
|
+
* Parameters of the TextArea#change event.
|
|
43288
|
+
*/
|
|
42498
43289
|
export interface TextArea$ChangeEventParameters {}
|
|
42499
43290
|
|
|
43291
|
+
/**
|
|
43292
|
+
* Event object of the TextArea#change event.
|
|
43293
|
+
*/
|
|
42500
43294
|
export type TextArea$ChangeEvent = Event<
|
|
42501
43295
|
TextArea$ChangeEventParameters,
|
|
42502
43296
|
TextArea
|
|
42503
43297
|
>;
|
|
42504
43298
|
|
|
43299
|
+
/**
|
|
43300
|
+
* Parameters of the TextArea#input event.
|
|
43301
|
+
*/
|
|
42505
43302
|
export interface TextArea$InputEventParameters {}
|
|
42506
43303
|
|
|
43304
|
+
/**
|
|
43305
|
+
* Event object of the TextArea#input event.
|
|
43306
|
+
*/
|
|
42507
43307
|
export type TextArea$InputEvent = Event<
|
|
42508
43308
|
TextArea$InputEventParameters,
|
|
42509
43309
|
TextArea
|
|
@@ -43103,7 +43903,11 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43103
43903
|
sWidth: CSSSize
|
|
43104
43904
|
): this;
|
|
43105
43905
|
}
|
|
43106
|
-
|
|
43906
|
+
/**
|
|
43907
|
+
* Describes the settings that can be provided to the TimePicker constructor.
|
|
43908
|
+
*
|
|
43909
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
43910
|
+
*/
|
|
43107
43911
|
export interface $TimePickerSettings extends $WebComponentSettings {
|
|
43108
43912
|
/**
|
|
43109
43913
|
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
@@ -43180,6 +43984,9 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43180
43984
|
input?: (oEvent: TimePicker$InputEvent) => void;
|
|
43181
43985
|
}
|
|
43182
43986
|
|
|
43987
|
+
/**
|
|
43988
|
+
* Parameters of the TimePicker#change event.
|
|
43989
|
+
*/
|
|
43183
43990
|
export interface TimePicker$ChangeEventParameters {
|
|
43184
43991
|
/**
|
|
43185
43992
|
* The submitted value.
|
|
@@ -43192,11 +43999,17 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43192
43999
|
valid?: boolean;
|
|
43193
44000
|
}
|
|
43194
44001
|
|
|
44002
|
+
/**
|
|
44003
|
+
* Event object of the TimePicker#change event.
|
|
44004
|
+
*/
|
|
43195
44005
|
export type TimePicker$ChangeEvent = Event<
|
|
43196
44006
|
TimePicker$ChangeEventParameters,
|
|
43197
44007
|
TimePicker
|
|
43198
44008
|
>;
|
|
43199
44009
|
|
|
44010
|
+
/**
|
|
44011
|
+
* Parameters of the TimePicker#input event.
|
|
44012
|
+
*/
|
|
43200
44013
|
export interface TimePicker$InputEventParameters {
|
|
43201
44014
|
/**
|
|
43202
44015
|
* The current value.
|
|
@@ -43209,6 +44022,9 @@ declare module "sap/ui/webc/main/TimePicker" {
|
|
|
43209
44022
|
valid?: boolean;
|
|
43210
44023
|
}
|
|
43211
44024
|
|
|
44025
|
+
/**
|
|
44026
|
+
* Event object of the TimePicker#input event.
|
|
44027
|
+
*/
|
|
43212
44028
|
export type TimePicker$InputEvent = Event<
|
|
43213
44029
|
TimePicker$InputEventParameters,
|
|
43214
44030
|
TimePicker
|
|
@@ -43416,7 +44232,11 @@ declare module "sap/ui/webc/main/Title" {
|
|
|
43416
44232
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
43417
44233
|
): this;
|
|
43418
44234
|
}
|
|
43419
|
-
|
|
44235
|
+
/**
|
|
44236
|
+
* Describes the settings that can be provided to the Title constructor.
|
|
44237
|
+
*
|
|
44238
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
44239
|
+
*/
|
|
43420
44240
|
export interface $TitleSettings extends $WebComponentSettings {
|
|
43421
44241
|
/**
|
|
43422
44242
|
* Defines the component level. Available options are: `"H6"` to `"H1"`.
|
|
@@ -43698,7 +44518,11 @@ declare module "sap/ui/webc/main/Toast" {
|
|
|
43698
44518
|
*/
|
|
43699
44519
|
show(): void;
|
|
43700
44520
|
}
|
|
43701
|
-
|
|
44521
|
+
/**
|
|
44522
|
+
* Describes the settings that can be provided to the Toast constructor.
|
|
44523
|
+
*
|
|
44524
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
44525
|
+
*/
|
|
43702
44526
|
export interface $ToastSettings extends $WebComponentSettings {
|
|
43703
44527
|
/**
|
|
43704
44528
|
* Defines the duration in milliseconds for which component remains on the screen before it's automatically
|
|
@@ -44281,7 +45105,11 @@ declare module "sap/ui/webc/main/ToggleButton" {
|
|
|
44281
45105
|
sWidth: CSSSize
|
|
44282
45106
|
): this;
|
|
44283
45107
|
}
|
|
44284
|
-
|
|
45108
|
+
/**
|
|
45109
|
+
* Describes the settings that can be provided to the ToggleButton constructor.
|
|
45110
|
+
*
|
|
45111
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
45112
|
+
*/
|
|
44285
45113
|
export interface $ToggleButtonSettings extends $WebComponentSettings {
|
|
44286
45114
|
/**
|
|
44287
45115
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -44376,8 +45204,14 @@ declare module "sap/ui/webc/main/ToggleButton" {
|
|
|
44376
45204
|
click?: (oEvent: Event) => void;
|
|
44377
45205
|
}
|
|
44378
45206
|
|
|
45207
|
+
/**
|
|
45208
|
+
* Parameters of the ToggleButton#click event.
|
|
45209
|
+
*/
|
|
44379
45210
|
export interface ToggleButton$ClickEventParameters {}
|
|
44380
45211
|
|
|
45212
|
+
/**
|
|
45213
|
+
* Event object of the ToggleButton#click event.
|
|
45214
|
+
*/
|
|
44381
45215
|
export type ToggleButton$ClickEvent = Event<
|
|
44382
45216
|
ToggleButton$ClickEventParameters,
|
|
44383
45217
|
ToggleButton
|
|
@@ -44724,7 +45558,11 @@ declare module "sap/ui/webc/main/Token" {
|
|
|
44724
45558
|
sText?: string
|
|
44725
45559
|
): this;
|
|
44726
45560
|
}
|
|
44727
|
-
|
|
45561
|
+
/**
|
|
45562
|
+
* Describes the settings that can be provided to the Token constructor.
|
|
45563
|
+
*
|
|
45564
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
45565
|
+
*/
|
|
44728
45566
|
export interface $TokenSettings extends $WebComponentSettings {
|
|
44729
45567
|
/**
|
|
44730
45568
|
* Defines whether the component is read-only.
|
|
@@ -44756,8 +45594,14 @@ declare module "sap/ui/webc/main/Token" {
|
|
|
44756
45594
|
select?: (oEvent: Event) => void;
|
|
44757
45595
|
}
|
|
44758
45596
|
|
|
45597
|
+
/**
|
|
45598
|
+
* Parameters of the Token#select event.
|
|
45599
|
+
*/
|
|
44759
45600
|
export interface Token$SelectEventParameters {}
|
|
44760
45601
|
|
|
45602
|
+
/**
|
|
45603
|
+
* Event object of the Token#select event.
|
|
45604
|
+
*/
|
|
44761
45605
|
export type Token$SelectEvent = Event<Token$SelectEventParameters, Token>;
|
|
44762
45606
|
}
|
|
44763
45607
|
|
|
@@ -45030,7 +45874,11 @@ declare module "sap/ui/webc/main/Toolbar" {
|
|
|
45030
45874
|
sAlignContent: ToolbarAlign | keyof typeof ToolbarAlign
|
|
45031
45875
|
): this;
|
|
45032
45876
|
}
|
|
45033
|
-
|
|
45877
|
+
/**
|
|
45878
|
+
* Describes the settings that can be provided to the Toolbar constructor.
|
|
45879
|
+
*
|
|
45880
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
45881
|
+
*/
|
|
45034
45882
|
export interface $ToolbarSettings extends $WebComponentSettings {
|
|
45035
45883
|
/**
|
|
45036
45884
|
* Defines the accessible ARIA name of the component.
|
|
@@ -45572,7 +46420,11 @@ declare module "sap/ui/webc/main/ToolbarButton" {
|
|
|
45572
46420
|
sWidth?: CSSSize
|
|
45573
46421
|
): this;
|
|
45574
46422
|
}
|
|
45575
|
-
|
|
46423
|
+
/**
|
|
46424
|
+
* Describes the settings that can be provided to the ToolbarButton constructor.
|
|
46425
|
+
*
|
|
46426
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
46427
|
+
*/
|
|
45576
46428
|
export interface $ToolbarButtonSettings extends $WebComponentSettings {
|
|
45577
46429
|
/**
|
|
45578
46430
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -45663,8 +46515,14 @@ declare module "sap/ui/webc/main/ToolbarButton" {
|
|
|
45663
46515
|
click?: (oEvent: Event) => void;
|
|
45664
46516
|
}
|
|
45665
46517
|
|
|
46518
|
+
/**
|
|
46519
|
+
* Parameters of the ToolbarButton#click event.
|
|
46520
|
+
*/
|
|
45666
46521
|
export interface ToolbarButton$ClickEventParameters {}
|
|
45667
46522
|
|
|
46523
|
+
/**
|
|
46524
|
+
* Event object of the ToolbarButton#click event.
|
|
46525
|
+
*/
|
|
45668
46526
|
export type ToolbarButton$ClickEvent = Event<
|
|
45669
46527
|
ToolbarButton$ClickEventParameters,
|
|
45670
46528
|
ToolbarButton
|
|
@@ -46255,7 +47113,11 @@ declare module "sap/ui/webc/main/ToolbarSelect" {
|
|
|
46255
47113
|
sWidth?: CSSSize
|
|
46256
47114
|
): this;
|
|
46257
47115
|
}
|
|
46258
|
-
|
|
47116
|
+
/**
|
|
47117
|
+
* Describes the settings that can be provided to the ToolbarSelect constructor.
|
|
47118
|
+
*
|
|
47119
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47120
|
+
*/
|
|
46259
47121
|
export interface $ToolbarSelectSettings extends $WebComponentSettings {
|
|
46260
47122
|
/**
|
|
46261
47123
|
* Defines the accessible ARIA name of the component.
|
|
@@ -46324,6 +47186,9 @@ declare module "sap/ui/webc/main/ToolbarSelect" {
|
|
|
46324
47186
|
open?: (oEvent: Event) => void;
|
|
46325
47187
|
}
|
|
46326
47188
|
|
|
47189
|
+
/**
|
|
47190
|
+
* Parameters of the ToolbarSelect#change event.
|
|
47191
|
+
*/
|
|
46327
47192
|
export interface ToolbarSelect$ChangeEventParameters {
|
|
46328
47193
|
/**
|
|
46329
47194
|
* the selected option.
|
|
@@ -46331,20 +47196,35 @@ declare module "sap/ui/webc/main/ToolbarSelect" {
|
|
|
46331
47196
|
selectedOption?: HTMLElement;
|
|
46332
47197
|
}
|
|
46333
47198
|
|
|
47199
|
+
/**
|
|
47200
|
+
* Event object of the ToolbarSelect#change event.
|
|
47201
|
+
*/
|
|
46334
47202
|
export type ToolbarSelect$ChangeEvent = Event<
|
|
46335
47203
|
ToolbarSelect$ChangeEventParameters,
|
|
46336
47204
|
ToolbarSelect
|
|
46337
47205
|
>;
|
|
46338
47206
|
|
|
47207
|
+
/**
|
|
47208
|
+
* Parameters of the ToolbarSelect#close event.
|
|
47209
|
+
*/
|
|
46339
47210
|
export interface ToolbarSelect$CloseEventParameters {}
|
|
46340
47211
|
|
|
47212
|
+
/**
|
|
47213
|
+
* Event object of the ToolbarSelect#close event.
|
|
47214
|
+
*/
|
|
46341
47215
|
export type ToolbarSelect$CloseEvent = Event<
|
|
46342
47216
|
ToolbarSelect$CloseEventParameters,
|
|
46343
47217
|
ToolbarSelect
|
|
46344
47218
|
>;
|
|
46345
47219
|
|
|
47220
|
+
/**
|
|
47221
|
+
* Parameters of the ToolbarSelect#open event.
|
|
47222
|
+
*/
|
|
46346
47223
|
export interface ToolbarSelect$OpenEventParameters {}
|
|
46347
47224
|
|
|
47225
|
+
/**
|
|
47226
|
+
* Event object of the ToolbarSelect#open event.
|
|
47227
|
+
*/
|
|
46348
47228
|
export type ToolbarSelect$OpenEvent = Event<
|
|
46349
47229
|
ToolbarSelect$OpenEventParameters,
|
|
46350
47230
|
ToolbarSelect
|
|
@@ -46496,7 +47376,11 @@ declare module "sap/ui/webc/main/ToolbarSelectOption" {
|
|
|
46496
47376
|
sText?: string
|
|
46497
47377
|
): this;
|
|
46498
47378
|
}
|
|
46499
|
-
|
|
47379
|
+
/**
|
|
47380
|
+
* Describes the settings that can be provided to the ToolbarSelectOption constructor.
|
|
47381
|
+
*
|
|
47382
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47383
|
+
*/
|
|
46500
47384
|
export interface $ToolbarSelectOptionSettings extends $WebComponentSettings {
|
|
46501
47385
|
/**
|
|
46502
47386
|
* Defines the selected state of the component.
|
|
@@ -46600,7 +47484,11 @@ declare module "sap/ui/webc/main/ToolbarSeparator" {
|
|
|
46600
47484
|
*/
|
|
46601
47485
|
static getMetadata(): WebComponentMetadata;
|
|
46602
47486
|
}
|
|
46603
|
-
|
|
47487
|
+
/**
|
|
47488
|
+
* Describes the settings that can be provided to the ToolbarSeparator constructor.
|
|
47489
|
+
*
|
|
47490
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47491
|
+
*/
|
|
46604
47492
|
export interface $ToolbarSeparatorSettings extends $WebComponentSettings {}
|
|
46605
47493
|
}
|
|
46606
47494
|
|
|
@@ -46729,7 +47617,11 @@ declare module "sap/ui/webc/main/ToolbarSpacer" {
|
|
|
46729
47617
|
sWidth?: CSSSize
|
|
46730
47618
|
): this;
|
|
46731
47619
|
}
|
|
46732
|
-
|
|
47620
|
+
/**
|
|
47621
|
+
* Describes the settings that can be provided to the ToolbarSpacer constructor.
|
|
47622
|
+
*
|
|
47623
|
+
* @experimental (since 1.120.0) - This control is experimental and its API might change significantly.
|
|
47624
|
+
*/
|
|
46733
47625
|
export interface $ToolbarSpacerSettings extends $WebComponentSettings {
|
|
46734
47626
|
/**
|
|
46735
47627
|
* Defines the width of the spacer.
|
|
@@ -47772,7 +48664,11 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47772
48664
|
callback: Function
|
|
47773
48665
|
): void;
|
|
47774
48666
|
}
|
|
47775
|
-
|
|
48667
|
+
/**
|
|
48668
|
+
* Describes the settings that can be provided to the Tree constructor.
|
|
48669
|
+
*
|
|
48670
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
48671
|
+
*/
|
|
47776
48672
|
export interface $TreeSettings extends $WebComponentSettings {
|
|
47777
48673
|
/**
|
|
47778
48674
|
* Defines the accessible name of the component.
|
|
@@ -47883,6 +48779,9 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47883
48779
|
selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
|
|
47884
48780
|
}
|
|
47885
48781
|
|
|
48782
|
+
/**
|
|
48783
|
+
* Parameters of the Tree#itemClick event.
|
|
48784
|
+
*/
|
|
47886
48785
|
export interface Tree$ItemClickEventParameters {
|
|
47887
48786
|
/**
|
|
47888
48787
|
* The clicked item.
|
|
@@ -47890,8 +48789,14 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47890
48789
|
item?: HTMLElement;
|
|
47891
48790
|
}
|
|
47892
48791
|
|
|
48792
|
+
/**
|
|
48793
|
+
* Event object of the Tree#itemClick event.
|
|
48794
|
+
*/
|
|
47893
48795
|
export type Tree$ItemClickEvent = Event<Tree$ItemClickEventParameters, Tree>;
|
|
47894
48796
|
|
|
48797
|
+
/**
|
|
48798
|
+
* Parameters of the Tree#itemDelete event.
|
|
48799
|
+
*/
|
|
47895
48800
|
export interface Tree$ItemDeleteEventParameters {
|
|
47896
48801
|
/**
|
|
47897
48802
|
* the deleted item.
|
|
@@ -47899,11 +48804,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47899
48804
|
item?: HTMLElement;
|
|
47900
48805
|
}
|
|
47901
48806
|
|
|
48807
|
+
/**
|
|
48808
|
+
* Event object of the Tree#itemDelete event.
|
|
48809
|
+
*/
|
|
47902
48810
|
export type Tree$ItemDeleteEvent = Event<
|
|
47903
48811
|
Tree$ItemDeleteEventParameters,
|
|
47904
48812
|
Tree
|
|
47905
48813
|
>;
|
|
47906
48814
|
|
|
48815
|
+
/**
|
|
48816
|
+
* Parameters of the Tree#itemMouseout event.
|
|
48817
|
+
*/
|
|
47907
48818
|
export interface Tree$ItemMouseoutEventParameters {
|
|
47908
48819
|
/**
|
|
47909
48820
|
* the hovered item.
|
|
@@ -47911,11 +48822,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47911
48822
|
item?: HTMLElement;
|
|
47912
48823
|
}
|
|
47913
48824
|
|
|
48825
|
+
/**
|
|
48826
|
+
* Event object of the Tree#itemMouseout event.
|
|
48827
|
+
*/
|
|
47914
48828
|
export type Tree$ItemMouseoutEvent = Event<
|
|
47915
48829
|
Tree$ItemMouseoutEventParameters,
|
|
47916
48830
|
Tree
|
|
47917
48831
|
>;
|
|
47918
48832
|
|
|
48833
|
+
/**
|
|
48834
|
+
* Parameters of the Tree#itemMouseover event.
|
|
48835
|
+
*/
|
|
47919
48836
|
export interface Tree$ItemMouseoverEventParameters {
|
|
47920
48837
|
/**
|
|
47921
48838
|
* the hovered item.
|
|
@@ -47923,11 +48840,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47923
48840
|
item?: HTMLElement;
|
|
47924
48841
|
}
|
|
47925
48842
|
|
|
48843
|
+
/**
|
|
48844
|
+
* Event object of the Tree#itemMouseover event.
|
|
48845
|
+
*/
|
|
47926
48846
|
export type Tree$ItemMouseoverEvent = Event<
|
|
47927
48847
|
Tree$ItemMouseoverEventParameters,
|
|
47928
48848
|
Tree
|
|
47929
48849
|
>;
|
|
47930
48850
|
|
|
48851
|
+
/**
|
|
48852
|
+
* Parameters of the Tree#itemToggle event.
|
|
48853
|
+
*/
|
|
47931
48854
|
export interface Tree$ItemToggleEventParameters {
|
|
47932
48855
|
/**
|
|
47933
48856
|
* the toggled item.
|
|
@@ -47935,11 +48858,17 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47935
48858
|
item?: HTMLElement;
|
|
47936
48859
|
}
|
|
47937
48860
|
|
|
48861
|
+
/**
|
|
48862
|
+
* Event object of the Tree#itemToggle event.
|
|
48863
|
+
*/
|
|
47938
48864
|
export type Tree$ItemToggleEvent = Event<
|
|
47939
48865
|
Tree$ItemToggleEventParameters,
|
|
47940
48866
|
Tree
|
|
47941
48867
|
>;
|
|
47942
48868
|
|
|
48869
|
+
/**
|
|
48870
|
+
* Parameters of the Tree#selectionChange event.
|
|
48871
|
+
*/
|
|
47943
48872
|
export interface Tree$SelectionChangeEventParameters {
|
|
47944
48873
|
/**
|
|
47945
48874
|
* An array of the selected items.
|
|
@@ -47957,6 +48886,9 @@ declare module "sap/ui/webc/main/Tree" {
|
|
|
47957
48886
|
targetItem?: HTMLElement;
|
|
47958
48887
|
}
|
|
47959
48888
|
|
|
48889
|
+
/**
|
|
48890
|
+
* Event object of the Tree#selectionChange event.
|
|
48891
|
+
*/
|
|
47960
48892
|
export type Tree$SelectionChangeEvent = Event<
|
|
47961
48893
|
Tree$SelectionChangeEventParameters,
|
|
47962
48894
|
Tree
|
|
@@ -48655,7 +49587,11 @@ declare module "sap/ui/webc/main/TreeItem" {
|
|
|
48655
49587
|
*/
|
|
48656
49588
|
toggle(): void;
|
|
48657
49589
|
}
|
|
48658
|
-
|
|
49590
|
+
/**
|
|
49591
|
+
* Describes the settings that can be provided to the TreeItem constructor.
|
|
49592
|
+
*
|
|
49593
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
49594
|
+
*/
|
|
48659
49595
|
export interface $TreeItemSettings extends $WebComponentSettings {
|
|
48660
49596
|
/**
|
|
48661
49597
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -48773,8 +49709,14 @@ declare module "sap/ui/webc/main/TreeItem" {
|
|
|
48773
49709
|
detailClick?: (oEvent: Event) => void;
|
|
48774
49710
|
}
|
|
48775
49711
|
|
|
49712
|
+
/**
|
|
49713
|
+
* Parameters of the TreeItem#detailClick event.
|
|
49714
|
+
*/
|
|
48776
49715
|
export interface TreeItem$DetailClickEventParameters {}
|
|
48777
49716
|
|
|
49717
|
+
/**
|
|
49718
|
+
* Event object of the TreeItem#detailClick event.
|
|
49719
|
+
*/
|
|
48778
49720
|
export type TreeItem$DetailClickEvent = Event<
|
|
48779
49721
|
TreeItem$DetailClickEventParameters,
|
|
48780
49722
|
TreeItem
|
|
@@ -49527,7 +50469,11 @@ declare module "sap/ui/webc/main/TreeItemCustom" {
|
|
|
49527
50469
|
*/
|
|
49528
50470
|
toggle(): void;
|
|
49529
50471
|
}
|
|
49530
|
-
|
|
50472
|
+
/**
|
|
50473
|
+
* Describes the settings that can be provided to the TreeItemCustom constructor.
|
|
50474
|
+
*
|
|
50475
|
+
* @experimental (since 1.115.0) - This control is experimental and its API might change significantly.
|
|
50476
|
+
*/
|
|
49531
50477
|
export interface $TreeItemCustomSettings extends $WebComponentSettings {
|
|
49532
50478
|
/**
|
|
49533
50479
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -49645,8 +50591,14 @@ declare module "sap/ui/webc/main/TreeItemCustom" {
|
|
|
49645
50591
|
detailClick?: (oEvent: Event) => void;
|
|
49646
50592
|
}
|
|
49647
50593
|
|
|
50594
|
+
/**
|
|
50595
|
+
* Parameters of the TreeItemCustom#detailClick event.
|
|
50596
|
+
*/
|
|
49648
50597
|
export interface TreeItemCustom$DetailClickEventParameters {}
|
|
49649
50598
|
|
|
50599
|
+
/**
|
|
50600
|
+
* Event object of the TreeItemCustom#detailClick event.
|
|
50601
|
+
*/
|
|
49650
50602
|
export type TreeItemCustom$DetailClickEvent = Event<
|
|
49651
50603
|
TreeItemCustom$DetailClickEventParameters,
|
|
49652
50604
|
TreeItemCustom
|