@openui5/types 1.116.0 → 1.117.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 +130 -36
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.core.d.ts +929 -259
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uxap.d.ts +42 -12
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -957,7 +957,10 @@ declare module "sap/f/AvatarGroup" {
|
|
|
957
957
|
avatarsDisplayed?: int;
|
|
958
958
|
}
|
|
959
959
|
|
|
960
|
-
export type AvatarGroup$PressEvent = Event<
|
|
960
|
+
export type AvatarGroup$PressEvent = Event<
|
|
961
|
+
AvatarGroup$PressEventParameters,
|
|
962
|
+
AvatarGroup
|
|
963
|
+
>;
|
|
961
964
|
}
|
|
962
965
|
|
|
963
966
|
declare module "sap/f/AvatarGroupItem" {
|
|
@@ -2203,6 +2206,13 @@ declare module "sap/f/cards/Header" {
|
|
|
2203
2206
|
*/
|
|
2204
2207
|
iTitleMaxLines?: int
|
|
2205
2208
|
): this;
|
|
2209
|
+
/**
|
|
2210
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2211
|
+
*
|
|
2212
|
+
*
|
|
2213
|
+
* @returns If the icon should be shown.
|
|
2214
|
+
*/
|
|
2215
|
+
shouldShowIcon(): boolean;
|
|
2206
2216
|
}
|
|
2207
2217
|
|
|
2208
2218
|
export interface $HeaderSettings extends $BaseHeaderSettings {
|
|
@@ -2285,7 +2295,7 @@ declare module "sap/f/cards/Header" {
|
|
|
2285
2295
|
|
|
2286
2296
|
export interface Header$PressEventParameters {}
|
|
2287
2297
|
|
|
2288
|
-
export type Header$PressEvent = Event<Header$PressEventParameters>;
|
|
2298
|
+
export type Header$PressEvent = Event<Header$PressEventParameters, Header>;
|
|
2289
2299
|
}
|
|
2290
2300
|
|
|
2291
2301
|
declare module "sap/f/cards/loading/PlaceholderBaseRenderer" {
|
|
@@ -3103,7 +3113,10 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3103
3113
|
|
|
3104
3114
|
export interface NumericHeader$PressEventParameters {}
|
|
3105
3115
|
|
|
3106
|
-
export type NumericHeader$PressEvent = Event<
|
|
3116
|
+
export type NumericHeader$PressEvent = Event<
|
|
3117
|
+
NumericHeader$PressEventParameters,
|
|
3118
|
+
NumericHeader
|
|
3119
|
+
>;
|
|
3107
3120
|
}
|
|
3108
3121
|
|
|
3109
3122
|
declare module "sap/f/cards/NumericSideIndicator" {
|
|
@@ -3868,7 +3881,7 @@ declare module "sap/f/DynamicPage" {
|
|
|
3868
3881
|
*/
|
|
3869
3882
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
3870
3883
|
/**
|
|
3871
|
-
* Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
|
|
3884
|
+
* Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
|
|
3872
3885
|
*
|
|
3873
3886
|
* @returns The scroll delegate instance
|
|
3874
3887
|
*/
|
|
@@ -4303,7 +4316,10 @@ declare module "sap/f/DynamicPage" {
|
|
|
4303
4316
|
pinned?: boolean;
|
|
4304
4317
|
}
|
|
4305
4318
|
|
|
4306
|
-
export type DynamicPage$PinnedStateChangeEvent = Event<
|
|
4319
|
+
export type DynamicPage$PinnedStateChangeEvent = Event<
|
|
4320
|
+
DynamicPage$PinnedStateChangeEventParameters,
|
|
4321
|
+
DynamicPage
|
|
4322
|
+
>;
|
|
4307
4323
|
}
|
|
4308
4324
|
|
|
4309
4325
|
declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
@@ -6132,7 +6148,10 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
6132
6148
|
isExpanded?: boolean;
|
|
6133
6149
|
}
|
|
6134
6150
|
|
|
6135
|
-
export type DynamicPageTitle$StateChangeEvent = Event<
|
|
6151
|
+
export type DynamicPageTitle$StateChangeEvent = Event<
|
|
6152
|
+
DynamicPageTitle$StateChangeEventParameters,
|
|
6153
|
+
DynamicPageTitle
|
|
6154
|
+
>;
|
|
6136
6155
|
}
|
|
6137
6156
|
|
|
6138
6157
|
declare module "sap/f/FlexibleColumnLayout" {
|
|
@@ -8241,7 +8260,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8241
8260
|
direction?: string;
|
|
8242
8261
|
}
|
|
8243
8262
|
|
|
8244
|
-
export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<
|
|
8263
|
+
export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<
|
|
8264
|
+
FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
|
|
8265
|
+
FlexibleColumnLayout
|
|
8266
|
+
>;
|
|
8245
8267
|
|
|
8246
8268
|
export interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
|
|
8247
8269
|
/**
|
|
@@ -8296,7 +8318,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8296
8318
|
direction?: string;
|
|
8297
8319
|
}
|
|
8298
8320
|
|
|
8299
|
-
export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<
|
|
8321
|
+
export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<
|
|
8322
|
+
FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
|
|
8323
|
+
FlexibleColumnLayout
|
|
8324
|
+
>;
|
|
8300
8325
|
|
|
8301
8326
|
export interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
|
|
8302
8327
|
/**
|
|
@@ -8351,7 +8376,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8351
8376
|
direction?: string;
|
|
8352
8377
|
}
|
|
8353
8378
|
|
|
8354
|
-
export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<
|
|
8379
|
+
export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<
|
|
8380
|
+
FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
|
|
8381
|
+
FlexibleColumnLayout
|
|
8382
|
+
>;
|
|
8355
8383
|
|
|
8356
8384
|
export interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
|
|
8357
8385
|
/**
|
|
@@ -8406,7 +8434,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8406
8434
|
direction?: string;
|
|
8407
8435
|
}
|
|
8408
8436
|
|
|
8409
|
-
export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<
|
|
8437
|
+
export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<
|
|
8438
|
+
FlexibleColumnLayout$BeginColumnNavigateEventParameters,
|
|
8439
|
+
FlexibleColumnLayout
|
|
8440
|
+
>;
|
|
8410
8441
|
|
|
8411
8442
|
export interface FlexibleColumnLayout$ColumnResizeEventParameters {
|
|
8412
8443
|
/**
|
|
@@ -8425,7 +8456,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8425
8456
|
endColumn?: boolean;
|
|
8426
8457
|
}
|
|
8427
8458
|
|
|
8428
|
-
export type FlexibleColumnLayout$ColumnResizeEvent = Event<
|
|
8459
|
+
export type FlexibleColumnLayout$ColumnResizeEvent = Event<
|
|
8460
|
+
FlexibleColumnLayout$ColumnResizeEventParameters,
|
|
8461
|
+
FlexibleColumnLayout
|
|
8462
|
+
>;
|
|
8429
8463
|
|
|
8430
8464
|
export interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
|
|
8431
8465
|
/**
|
|
@@ -8480,7 +8514,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8480
8514
|
direction?: string;
|
|
8481
8515
|
}
|
|
8482
8516
|
|
|
8483
|
-
export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<
|
|
8517
|
+
export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<
|
|
8518
|
+
FlexibleColumnLayout$EndColumnNavigateEventParameters,
|
|
8519
|
+
FlexibleColumnLayout
|
|
8520
|
+
>;
|
|
8484
8521
|
|
|
8485
8522
|
export interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
|
|
8486
8523
|
/**
|
|
@@ -8535,7 +8572,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8535
8572
|
direction?: string;
|
|
8536
8573
|
}
|
|
8537
8574
|
|
|
8538
|
-
export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
|
|
8575
|
+
export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
|
|
8576
|
+
FlexibleColumnLayout$MidColumnNavigateEventParameters,
|
|
8577
|
+
FlexibleColumnLayout
|
|
8578
|
+
>;
|
|
8539
8579
|
|
|
8540
8580
|
export interface FlexibleColumnLayout$StateChangeEventParameters {
|
|
8541
8581
|
/**
|
|
@@ -8565,7 +8605,10 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8565
8605
|
isResize?: boolean;
|
|
8566
8606
|
}
|
|
8567
8607
|
|
|
8568
|
-
export type FlexibleColumnLayout$StateChangeEvent = Event<
|
|
8608
|
+
export type FlexibleColumnLayout$StateChangeEvent = Event<
|
|
8609
|
+
FlexibleColumnLayout$StateChangeEventParameters,
|
|
8610
|
+
FlexibleColumnLayout
|
|
8611
|
+
>;
|
|
8569
8612
|
}
|
|
8570
8613
|
|
|
8571
8614
|
declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
@@ -10338,7 +10381,10 @@ declare module "sap/f/GridContainer" {
|
|
|
10338
10381
|
column?: int;
|
|
10339
10382
|
}
|
|
10340
10383
|
|
|
10341
|
-
export type GridContainer$BorderReachedEvent = Event<
|
|
10384
|
+
export type GridContainer$BorderReachedEvent = Event<
|
|
10385
|
+
GridContainer$BorderReachedEventParameters,
|
|
10386
|
+
GridContainer
|
|
10387
|
+
>;
|
|
10342
10388
|
|
|
10343
10389
|
export interface GridContainer$ColumnsChangeEventParameters {
|
|
10344
10390
|
/**
|
|
@@ -10347,7 +10393,10 @@ declare module "sap/f/GridContainer" {
|
|
|
10347
10393
|
columns?: int;
|
|
10348
10394
|
}
|
|
10349
10395
|
|
|
10350
|
-
export type GridContainer$ColumnsChangeEvent = Event<
|
|
10396
|
+
export type GridContainer$ColumnsChangeEvent = Event<
|
|
10397
|
+
GridContainer$ColumnsChangeEventParameters,
|
|
10398
|
+
GridContainer
|
|
10399
|
+
>;
|
|
10351
10400
|
|
|
10352
10401
|
export interface GridContainer$LayoutChangeEventParameters {
|
|
10353
10402
|
/**
|
|
@@ -10356,7 +10405,10 @@ declare module "sap/f/GridContainer" {
|
|
|
10356
10405
|
layout?: string;
|
|
10357
10406
|
}
|
|
10358
10407
|
|
|
10359
|
-
export type GridContainer$LayoutChangeEvent = Event<
|
|
10408
|
+
export type GridContainer$LayoutChangeEvent = Event<
|
|
10409
|
+
GridContainer$LayoutChangeEventParameters,
|
|
10410
|
+
GridContainer
|
|
10411
|
+
>;
|
|
10360
10412
|
}
|
|
10361
10413
|
|
|
10362
10414
|
declare module "sap/f/GridContainerItemLayoutData" {
|
|
@@ -11182,7 +11234,10 @@ declare module "sap/f/GridList" {
|
|
|
11182
11234
|
column?: int;
|
|
11183
11235
|
}
|
|
11184
11236
|
|
|
11185
|
-
export type GridList$BorderReachedEvent = Event<
|
|
11237
|
+
export type GridList$BorderReachedEvent = Event<
|
|
11238
|
+
GridList$BorderReachedEventParameters,
|
|
11239
|
+
GridList
|
|
11240
|
+
>;
|
|
11186
11241
|
}
|
|
11187
11242
|
|
|
11188
11243
|
declare module "sap/f/GridListItem" {
|
|
@@ -11868,7 +11923,10 @@ declare module "sap/f/ProductSwitch" {
|
|
|
11868
11923
|
itemPressed?: ProductSwitchItem;
|
|
11869
11924
|
}
|
|
11870
11925
|
|
|
11871
|
-
export type ProductSwitch$ChangeEvent = Event<
|
|
11926
|
+
export type ProductSwitch$ChangeEvent = Event<
|
|
11927
|
+
ProductSwitch$ChangeEventParameters,
|
|
11928
|
+
ProductSwitch
|
|
11929
|
+
>;
|
|
11872
11930
|
}
|
|
11873
11931
|
|
|
11874
11932
|
declare module "sap/f/ProductSwitchItem" {
|
|
@@ -13332,7 +13390,10 @@ declare module "sap/f/SearchManager" {
|
|
|
13332
13390
|
newValue?: string;
|
|
13333
13391
|
}
|
|
13334
13392
|
|
|
13335
|
-
export type SearchManager$LiveChangeEvent = Event<
|
|
13393
|
+
export type SearchManager$LiveChangeEvent = Event<
|
|
13394
|
+
SearchManager$LiveChangeEventParameters,
|
|
13395
|
+
SearchManager
|
|
13396
|
+
>;
|
|
13336
13397
|
|
|
13337
13398
|
export interface SearchManager$SearchEventParameters {
|
|
13338
13399
|
/**
|
|
@@ -13346,7 +13407,10 @@ declare module "sap/f/SearchManager" {
|
|
|
13346
13407
|
clearButtonPressed?: boolean;
|
|
13347
13408
|
}
|
|
13348
13409
|
|
|
13349
|
-
export type SearchManager$SearchEvent = Event<
|
|
13410
|
+
export type SearchManager$SearchEvent = Event<
|
|
13411
|
+
SearchManager$SearchEventParameters,
|
|
13412
|
+
SearchManager
|
|
13413
|
+
>;
|
|
13350
13414
|
|
|
13351
13415
|
export interface SearchManager$SuggestEventParameters {
|
|
13352
13416
|
/**
|
|
@@ -13355,7 +13419,10 @@ declare module "sap/f/SearchManager" {
|
|
|
13355
13419
|
suggestValue?: string;
|
|
13356
13420
|
}
|
|
13357
13421
|
|
|
13358
|
-
export type SearchManager$SuggestEvent = Event<
|
|
13422
|
+
export type SearchManager$SuggestEvent = Event<
|
|
13423
|
+
SearchManager$SuggestEventParameters,
|
|
13424
|
+
SearchManager
|
|
13425
|
+
>;
|
|
13359
13426
|
}
|
|
13360
13427
|
|
|
13361
13428
|
declare module "sap/f/semantic/AddAction" {
|
|
@@ -19258,7 +19325,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19258
19325
|
avatar?: Avatar;
|
|
19259
19326
|
}
|
|
19260
19327
|
|
|
19261
|
-
export type ShellBar$AvatarPressedEvent = Event<
|
|
19328
|
+
export type ShellBar$AvatarPressedEvent = Event<
|
|
19329
|
+
ShellBar$AvatarPressedEventParameters,
|
|
19330
|
+
ShellBar
|
|
19331
|
+
>;
|
|
19262
19332
|
|
|
19263
19333
|
export interface ShellBar$CopilotPressedEventParameters {
|
|
19264
19334
|
/**
|
|
@@ -19267,7 +19337,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19267
19337
|
image?: Image;
|
|
19268
19338
|
}
|
|
19269
19339
|
|
|
19270
|
-
export type ShellBar$CopilotPressedEvent = Event<
|
|
19340
|
+
export type ShellBar$CopilotPressedEvent = Event<
|
|
19341
|
+
ShellBar$CopilotPressedEventParameters,
|
|
19342
|
+
ShellBar
|
|
19343
|
+
>;
|
|
19271
19344
|
|
|
19272
19345
|
export interface ShellBar$HomeIconPressedEventParameters {
|
|
19273
19346
|
/**
|
|
@@ -19276,7 +19349,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19276
19349
|
icon?: Image;
|
|
19277
19350
|
}
|
|
19278
19351
|
|
|
19279
|
-
export type ShellBar$HomeIconPressedEvent = Event<
|
|
19352
|
+
export type ShellBar$HomeIconPressedEvent = Event<
|
|
19353
|
+
ShellBar$HomeIconPressedEventParameters,
|
|
19354
|
+
ShellBar
|
|
19355
|
+
>;
|
|
19280
19356
|
|
|
19281
19357
|
export interface ShellBar$MenuButtonPressedEventParameters {
|
|
19282
19358
|
/**
|
|
@@ -19285,7 +19361,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19285
19361
|
button?: Button;
|
|
19286
19362
|
}
|
|
19287
19363
|
|
|
19288
|
-
export type ShellBar$MenuButtonPressedEvent = Event<
|
|
19364
|
+
export type ShellBar$MenuButtonPressedEvent = Event<
|
|
19365
|
+
ShellBar$MenuButtonPressedEventParameters,
|
|
19366
|
+
ShellBar
|
|
19367
|
+
>;
|
|
19289
19368
|
|
|
19290
19369
|
export interface ShellBar$NavButtonPressedEventParameters {
|
|
19291
19370
|
/**
|
|
@@ -19294,7 +19373,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19294
19373
|
button?: Button;
|
|
19295
19374
|
}
|
|
19296
19375
|
|
|
19297
|
-
export type ShellBar$NavButtonPressedEvent = Event<
|
|
19376
|
+
export type ShellBar$NavButtonPressedEvent = Event<
|
|
19377
|
+
ShellBar$NavButtonPressedEventParameters,
|
|
19378
|
+
ShellBar
|
|
19379
|
+
>;
|
|
19298
19380
|
|
|
19299
19381
|
export interface ShellBar$NotificationsPressedEventParameters {
|
|
19300
19382
|
/**
|
|
@@ -19303,7 +19385,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19303
19385
|
button?: Button;
|
|
19304
19386
|
}
|
|
19305
19387
|
|
|
19306
|
-
export type ShellBar$NotificationsPressedEvent = Event<
|
|
19388
|
+
export type ShellBar$NotificationsPressedEvent = Event<
|
|
19389
|
+
ShellBar$NotificationsPressedEventParameters,
|
|
19390
|
+
ShellBar
|
|
19391
|
+
>;
|
|
19307
19392
|
|
|
19308
19393
|
export interface ShellBar$ProductSwitcherPressedEventParameters {
|
|
19309
19394
|
/**
|
|
@@ -19312,7 +19397,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19312
19397
|
button?: Button;
|
|
19313
19398
|
}
|
|
19314
19399
|
|
|
19315
|
-
export type ShellBar$ProductSwitcherPressedEvent = Event<
|
|
19400
|
+
export type ShellBar$ProductSwitcherPressedEvent = Event<
|
|
19401
|
+
ShellBar$ProductSwitcherPressedEventParameters,
|
|
19402
|
+
ShellBar
|
|
19403
|
+
>;
|
|
19316
19404
|
|
|
19317
19405
|
export interface ShellBar$SearchButtonPressedEventParameters {
|
|
19318
19406
|
/**
|
|
@@ -19321,7 +19409,10 @@ declare module "sap/f/ShellBar" {
|
|
|
19321
19409
|
button?: Button;
|
|
19322
19410
|
}
|
|
19323
19411
|
|
|
19324
|
-
export type ShellBar$SearchButtonPressedEvent = Event<
|
|
19412
|
+
export type ShellBar$SearchButtonPressedEvent = Event<
|
|
19413
|
+
ShellBar$SearchButtonPressedEventParameters,
|
|
19414
|
+
ShellBar
|
|
19415
|
+
>;
|
|
19325
19416
|
}
|
|
19326
19417
|
|
|
19327
19418
|
declare module "sap/f/SidePanel" {
|
|
@@ -19416,10 +19507,10 @@ declare module "sap/f/SidePanel" {
|
|
|
19416
19507
|
* - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
|
|
19417
19508
|
*
|
|
19418
19509
|
* - [Shift]+[F10] or [Context menu] - show the resize context menu
|
|
19419
|
-
* - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded
|
|
19420
|
-
* step
|
|
19421
|
-
* - [Shift] + [Arrow Left]
|
|
19422
|
-
* the larger step
|
|
19510
|
+
* - [Arrow Left] or [Arrow Up] / [Arrow Right] or [Arrow Down] - increase/decrease the width of the expanded
|
|
19511
|
+
* side panel with the regular step
|
|
19512
|
+
* - [Shift] + [Arrow Left] or [Shift] + [Arrow Up] / [Shift] + [Arrow Right] or [Shift] + [Arrow Down]
|
|
19513
|
+
* - increase/decrease the width of the expanded side panel with the larger step
|
|
19423
19514
|
*/
|
|
19424
19515
|
export default class SidePanel extends Control {
|
|
19425
19516
|
/**
|
|
@@ -20103,7 +20194,10 @@ declare module "sap/f/SidePanel" {
|
|
|
20103
20194
|
expanded?: boolean;
|
|
20104
20195
|
}
|
|
20105
20196
|
|
|
20106
|
-
export type SidePanel$ToggleEvent = Event<
|
|
20197
|
+
export type SidePanel$ToggleEvent = Event<
|
|
20198
|
+
SidePanel$ToggleEventParameters,
|
|
20199
|
+
SidePanel
|
|
20200
|
+
>;
|
|
20107
20201
|
}
|
|
20108
20202
|
|
|
20109
20203
|
declare module "sap/f/SidePanelItem" {
|