@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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/fiori/library" {
|
|
4
4
|
/**
|
|
@@ -1593,7 +1593,10 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1593
1593
|
message?: string;
|
|
1594
1594
|
}
|
|
1595
1595
|
|
|
1596
|
-
export type BarcodeScannerDialog$ScanErrorEvent = Event<
|
|
1596
|
+
export type BarcodeScannerDialog$ScanErrorEvent = Event<
|
|
1597
|
+
BarcodeScannerDialog$ScanErrorEventParameters,
|
|
1598
|
+
BarcodeScannerDialog
|
|
1599
|
+
>;
|
|
1597
1600
|
|
|
1598
1601
|
export interface BarcodeScannerDialog$ScanSuccessEventParameters {
|
|
1599
1602
|
/**
|
|
@@ -1607,7 +1610,10 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1607
1610
|
rawBytes?: object;
|
|
1608
1611
|
}
|
|
1609
1612
|
|
|
1610
|
-
export type BarcodeScannerDialog$ScanSuccessEvent = Event<
|
|
1613
|
+
export type BarcodeScannerDialog$ScanSuccessEvent = Event<
|
|
1614
|
+
BarcodeScannerDialog$ScanSuccessEventParameters,
|
|
1615
|
+
BarcodeScannerDialog
|
|
1616
|
+
>;
|
|
1611
1617
|
}
|
|
1612
1618
|
|
|
1613
1619
|
declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
@@ -2327,7 +2333,10 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2327
2333
|
sideContentVisible?: boolean;
|
|
2328
2334
|
}
|
|
2329
2335
|
|
|
2330
|
-
export type DynamicSideContent$LayoutChangeEvent = Event<
|
|
2336
|
+
export type DynamicSideContent$LayoutChangeEvent = Event<
|
|
2337
|
+
DynamicSideContent$LayoutChangeEventParameters,
|
|
2338
|
+
DynamicSideContent
|
|
2339
|
+
>;
|
|
2331
2340
|
}
|
|
2332
2341
|
|
|
2333
2342
|
declare module "sap/ui/webc/fiori/FilterItem" {
|
|
@@ -3344,7 +3353,10 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3344
3353
|
resize?: boolean;
|
|
3345
3354
|
}
|
|
3346
3355
|
|
|
3347
|
-
export type FlexibleColumnLayout$LayoutChangeEvent = Event<
|
|
3356
|
+
export type FlexibleColumnLayout$LayoutChangeEvent = Event<
|
|
3357
|
+
FlexibleColumnLayout$LayoutChangeEventParameters,
|
|
3358
|
+
FlexibleColumnLayout
|
|
3359
|
+
>;
|
|
3348
3360
|
}
|
|
3349
3361
|
|
|
3350
3362
|
declare module "sap/ui/webc/fiori/IllustratedMessage" {
|
|
@@ -4506,11 +4518,17 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4506
4518
|
|
|
4507
4519
|
export interface MediaGallery$DisplayAreaClickEventParameters {}
|
|
4508
4520
|
|
|
4509
|
-
export type MediaGallery$DisplayAreaClickEvent = Event<
|
|
4521
|
+
export type MediaGallery$DisplayAreaClickEvent = Event<
|
|
4522
|
+
MediaGallery$DisplayAreaClickEventParameters,
|
|
4523
|
+
MediaGallery
|
|
4524
|
+
>;
|
|
4510
4525
|
|
|
4511
4526
|
export interface MediaGallery$OverflowClickEventParameters {}
|
|
4512
4527
|
|
|
4513
|
-
export type MediaGallery$OverflowClickEvent = Event<
|
|
4528
|
+
export type MediaGallery$OverflowClickEvent = Event<
|
|
4529
|
+
MediaGallery$OverflowClickEventParameters,
|
|
4530
|
+
MediaGallery
|
|
4531
|
+
>;
|
|
4514
4532
|
|
|
4515
4533
|
export interface MediaGallery$SelectionChangeEventParameters {
|
|
4516
4534
|
/**
|
|
@@ -4519,7 +4537,10 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4519
4537
|
item?: HTMLElement;
|
|
4520
4538
|
}
|
|
4521
4539
|
|
|
4522
|
-
export type MediaGallery$SelectionChangeEvent = Event<
|
|
4540
|
+
export type MediaGallery$SelectionChangeEvent = Event<
|
|
4541
|
+
MediaGallery$SelectionChangeEventParameters,
|
|
4542
|
+
MediaGallery
|
|
4543
|
+
>;
|
|
4523
4544
|
}
|
|
4524
4545
|
|
|
4525
4546
|
declare module "sap/ui/webc/fiori/MediaGalleryItem" {
|
|
@@ -5147,7 +5168,10 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5147
5168
|
targetRef?: HTMLElement;
|
|
5148
5169
|
}
|
|
5149
5170
|
|
|
5150
|
-
export type NotificationAction$ClickEvent = Event<
|
|
5171
|
+
export type NotificationAction$ClickEvent = Event<
|
|
5172
|
+
NotificationAction$ClickEventParameters,
|
|
5173
|
+
NotificationAction
|
|
5174
|
+
>;
|
|
5151
5175
|
}
|
|
5152
5176
|
|
|
5153
5177
|
declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
@@ -5879,11 +5903,17 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
5879
5903
|
item?: HTMLElement;
|
|
5880
5904
|
}
|
|
5881
5905
|
|
|
5882
|
-
export type NotificationListGroupItem$CloseEvent = Event<
|
|
5906
|
+
export type NotificationListGroupItem$CloseEvent = Event<
|
|
5907
|
+
NotificationListGroupItem$CloseEventParameters,
|
|
5908
|
+
NotificationListGroupItem
|
|
5909
|
+
>;
|
|
5883
5910
|
|
|
5884
5911
|
export interface NotificationListGroupItem$ToggleEventParameters {}
|
|
5885
5912
|
|
|
5886
|
-
export type NotificationListGroupItem$ToggleEvent = Event<
|
|
5913
|
+
export type NotificationListGroupItem$ToggleEvent = Event<
|
|
5914
|
+
NotificationListGroupItem$ToggleEventParameters,
|
|
5915
|
+
NotificationListGroupItem
|
|
5916
|
+
>;
|
|
5887
5917
|
}
|
|
5888
5918
|
|
|
5889
5919
|
declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
@@ -6594,7 +6624,10 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6594
6624
|
item?: HTMLElement;
|
|
6595
6625
|
}
|
|
6596
6626
|
|
|
6597
|
-
export type NotificationListItem$CloseEvent = Event<
|
|
6627
|
+
export type NotificationListItem$CloseEvent = Event<
|
|
6628
|
+
NotificationListItem$CloseEventParameters,
|
|
6629
|
+
NotificationListItem
|
|
6630
|
+
>;
|
|
6598
6631
|
}
|
|
6599
6632
|
|
|
6600
6633
|
declare module "sap/ui/webc/fiori/Page" {
|
|
@@ -7624,7 +7657,10 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
|
|
|
7624
7657
|
|
|
7625
7658
|
export interface ProductSwitchItem$ClickEventParameters {}
|
|
7626
7659
|
|
|
7627
|
-
export type ProductSwitchItem$ClickEvent = Event<
|
|
7660
|
+
export type ProductSwitchItem$ClickEvent = Event<
|
|
7661
|
+
ProductSwitchItem$ClickEventParameters,
|
|
7662
|
+
ProductSwitchItem
|
|
7663
|
+
>;
|
|
7628
7664
|
}
|
|
7629
7665
|
|
|
7630
7666
|
declare module "sap/ui/webc/fiori/ShellBar" {
|
|
@@ -8977,7 +9013,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
8977
9013
|
targetRef?: HTMLElement;
|
|
8978
9014
|
}
|
|
8979
9015
|
|
|
8980
|
-
export type ShellBar$CoPilotClickEvent = Event<
|
|
9016
|
+
export type ShellBar$CoPilotClickEvent = Event<
|
|
9017
|
+
ShellBar$CoPilotClickEventParameters,
|
|
9018
|
+
ShellBar
|
|
9019
|
+
>;
|
|
8981
9020
|
|
|
8982
9021
|
export interface ShellBar$LogoClickEventParameters {
|
|
8983
9022
|
/**
|
|
@@ -8986,7 +9025,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
8986
9025
|
targetRef?: HTMLElement;
|
|
8987
9026
|
}
|
|
8988
9027
|
|
|
8989
|
-
export type ShellBar$LogoClickEvent = Event<
|
|
9028
|
+
export type ShellBar$LogoClickEvent = Event<
|
|
9029
|
+
ShellBar$LogoClickEventParameters,
|
|
9030
|
+
ShellBar
|
|
9031
|
+
>;
|
|
8990
9032
|
|
|
8991
9033
|
export interface ShellBar$MenuItemClickEventParameters {
|
|
8992
9034
|
/**
|
|
@@ -8995,7 +9037,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
8995
9037
|
item?: HTMLElement;
|
|
8996
9038
|
}
|
|
8997
9039
|
|
|
8998
|
-
export type ShellBar$MenuItemClickEvent = Event<
|
|
9040
|
+
export type ShellBar$MenuItemClickEvent = Event<
|
|
9041
|
+
ShellBar$MenuItemClickEventParameters,
|
|
9042
|
+
ShellBar
|
|
9043
|
+
>;
|
|
8999
9044
|
|
|
9000
9045
|
export interface ShellBar$NotificationsClickEventParameters {
|
|
9001
9046
|
/**
|
|
@@ -9004,7 +9049,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9004
9049
|
targetRef?: HTMLElement;
|
|
9005
9050
|
}
|
|
9006
9051
|
|
|
9007
|
-
export type ShellBar$NotificationsClickEvent = Event<
|
|
9052
|
+
export type ShellBar$NotificationsClickEvent = Event<
|
|
9053
|
+
ShellBar$NotificationsClickEventParameters,
|
|
9054
|
+
ShellBar
|
|
9055
|
+
>;
|
|
9008
9056
|
|
|
9009
9057
|
export interface ShellBar$ProductSwitchClickEventParameters {
|
|
9010
9058
|
/**
|
|
@@ -9013,7 +9061,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9013
9061
|
targetRef?: HTMLElement;
|
|
9014
9062
|
}
|
|
9015
9063
|
|
|
9016
|
-
export type ShellBar$ProductSwitchClickEvent = Event<
|
|
9064
|
+
export type ShellBar$ProductSwitchClickEvent = Event<
|
|
9065
|
+
ShellBar$ProductSwitchClickEventParameters,
|
|
9066
|
+
ShellBar
|
|
9067
|
+
>;
|
|
9017
9068
|
|
|
9018
9069
|
export interface ShellBar$ProfileClickEventParameters {
|
|
9019
9070
|
/**
|
|
@@ -9022,7 +9073,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9022
9073
|
targetRef?: HTMLElement;
|
|
9023
9074
|
}
|
|
9024
9075
|
|
|
9025
|
-
export type ShellBar$ProfileClickEvent = Event<
|
|
9076
|
+
export type ShellBar$ProfileClickEvent = Event<
|
|
9077
|
+
ShellBar$ProfileClickEventParameters,
|
|
9078
|
+
ShellBar
|
|
9079
|
+
>;
|
|
9026
9080
|
}
|
|
9027
9081
|
|
|
9028
9082
|
declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
@@ -9297,7 +9351,10 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9297
9351
|
targetRef?: HTMLElement;
|
|
9298
9352
|
}
|
|
9299
9353
|
|
|
9300
|
-
export type ShellBarItem$ClickEvent = Event<
|
|
9354
|
+
export type ShellBarItem$ClickEvent = Event<
|
|
9355
|
+
ShellBarItem$ClickEventParameters,
|
|
9356
|
+
ShellBarItem
|
|
9357
|
+
>;
|
|
9301
9358
|
}
|
|
9302
9359
|
|
|
9303
9360
|
declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
@@ -9793,7 +9850,10 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
9793
9850
|
item?: ISideNavigationItem | ISideNavigationSubItem;
|
|
9794
9851
|
}
|
|
9795
9852
|
|
|
9796
|
-
export type SideNavigation$SelectionChangeEvent = Event<
|
|
9853
|
+
export type SideNavigation$SelectionChangeEvent = Event<
|
|
9854
|
+
SideNavigation$SelectionChangeEventParameters,
|
|
9855
|
+
SideNavigation
|
|
9856
|
+
>;
|
|
9797
9857
|
}
|
|
9798
9858
|
|
|
9799
9859
|
declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
@@ -10241,7 +10301,10 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
10241
10301
|
|
|
10242
10302
|
export interface SideNavigationItem$ClickEventParameters {}
|
|
10243
10303
|
|
|
10244
|
-
export type SideNavigationItem$ClickEvent = Event<
|
|
10304
|
+
export type SideNavigationItem$ClickEvent = Event<
|
|
10305
|
+
SideNavigationItem$ClickEventParameters,
|
|
10306
|
+
SideNavigationItem
|
|
10307
|
+
>;
|
|
10245
10308
|
}
|
|
10246
10309
|
|
|
10247
10310
|
declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
@@ -10531,7 +10594,10 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
10531
10594
|
|
|
10532
10595
|
export interface SideNavigationSubItem$ClickEventParameters {}
|
|
10533
10596
|
|
|
10534
|
-
export type SideNavigationSubItem$ClickEvent = Event<
|
|
10597
|
+
export type SideNavigationSubItem$ClickEvent = Event<
|
|
10598
|
+
SideNavigationSubItem$ClickEventParameters,
|
|
10599
|
+
SideNavigationSubItem
|
|
10600
|
+
>;
|
|
10535
10601
|
}
|
|
10536
10602
|
|
|
10537
10603
|
declare module "sap/ui/webc/fiori/SortItem" {
|
|
@@ -11432,7 +11498,10 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
|
|
|
11432
11498
|
|
|
11433
11499
|
export interface TimelineItem$NameClickEventParameters {}
|
|
11434
11500
|
|
|
11435
|
-
export type TimelineItem$NameClickEvent = Event<
|
|
11501
|
+
export type TimelineItem$NameClickEvent = Event<
|
|
11502
|
+
TimelineItem$NameClickEventParameters,
|
|
11503
|
+
TimelineItem
|
|
11504
|
+
>;
|
|
11436
11505
|
}
|
|
11437
11506
|
|
|
11438
11507
|
declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
@@ -12223,7 +12292,10 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12223
12292
|
dataTransfer?: DataTransfer;
|
|
12224
12293
|
}
|
|
12225
12294
|
|
|
12226
|
-
export type UploadCollection$DropEvent = Event<
|
|
12295
|
+
export type UploadCollection$DropEvent = Event<
|
|
12296
|
+
UploadCollection$DropEventParameters,
|
|
12297
|
+
UploadCollection
|
|
12298
|
+
>;
|
|
12227
12299
|
|
|
12228
12300
|
export interface UploadCollection$ItemDeleteEventParameters {
|
|
12229
12301
|
/**
|
|
@@ -12232,7 +12304,10 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12232
12304
|
item?: HTMLElement;
|
|
12233
12305
|
}
|
|
12234
12306
|
|
|
12235
|
-
export type UploadCollection$ItemDeleteEvent = Event<
|
|
12307
|
+
export type UploadCollection$ItemDeleteEvent = Event<
|
|
12308
|
+
UploadCollection$ItemDeleteEventParameters,
|
|
12309
|
+
UploadCollection
|
|
12310
|
+
>;
|
|
12236
12311
|
|
|
12237
12312
|
export interface UploadCollection$SelectionChangeEventParameters {
|
|
12238
12313
|
/**
|
|
@@ -12241,7 +12316,10 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12241
12316
|
selectedItems?: any[];
|
|
12242
12317
|
}
|
|
12243
12318
|
|
|
12244
|
-
export type UploadCollection$SelectionChangeEvent = Event<
|
|
12319
|
+
export type UploadCollection$SelectionChangeEvent = Event<
|
|
12320
|
+
UploadCollection$SelectionChangeEventParameters,
|
|
12321
|
+
UploadCollection
|
|
12322
|
+
>;
|
|
12245
12323
|
}
|
|
12246
12324
|
|
|
12247
12325
|
declare module "sap/ui/webc/fiori/UploadCollectionItem" {
|
|
@@ -13073,19 +13151,31 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
|
|
|
13073
13151
|
|
|
13074
13152
|
export interface UploadCollectionItem$FileNameClickEventParameters {}
|
|
13075
13153
|
|
|
13076
|
-
export type UploadCollectionItem$FileNameClickEvent = Event<
|
|
13154
|
+
export type UploadCollectionItem$FileNameClickEvent = Event<
|
|
13155
|
+
UploadCollectionItem$FileNameClickEventParameters,
|
|
13156
|
+
UploadCollectionItem
|
|
13157
|
+
>;
|
|
13077
13158
|
|
|
13078
13159
|
export interface UploadCollectionItem$RenameEventParameters {}
|
|
13079
13160
|
|
|
13080
|
-
export type UploadCollectionItem$RenameEvent = Event<
|
|
13161
|
+
export type UploadCollectionItem$RenameEvent = Event<
|
|
13162
|
+
UploadCollectionItem$RenameEventParameters,
|
|
13163
|
+
UploadCollectionItem
|
|
13164
|
+
>;
|
|
13081
13165
|
|
|
13082
13166
|
export interface UploadCollectionItem$RetryEventParameters {}
|
|
13083
13167
|
|
|
13084
|
-
export type UploadCollectionItem$RetryEvent = Event<
|
|
13168
|
+
export type UploadCollectionItem$RetryEvent = Event<
|
|
13169
|
+
UploadCollectionItem$RetryEventParameters,
|
|
13170
|
+
UploadCollectionItem
|
|
13171
|
+
>;
|
|
13085
13172
|
|
|
13086
13173
|
export interface UploadCollectionItem$TerminateEventParameters {}
|
|
13087
13174
|
|
|
13088
|
-
export type UploadCollectionItem$TerminateEvent = Event<
|
|
13175
|
+
export type UploadCollectionItem$TerminateEvent = Event<
|
|
13176
|
+
UploadCollectionItem$TerminateEventParameters,
|
|
13177
|
+
UploadCollectionItem
|
|
13178
|
+
>;
|
|
13089
13179
|
}
|
|
13090
13180
|
|
|
13091
13181
|
declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
@@ -13635,7 +13725,10 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
13635
13725
|
|
|
13636
13726
|
export interface ViewSettingsDialog$BeforeOpenEventParameters {}
|
|
13637
13727
|
|
|
13638
|
-
export type ViewSettingsDialog$BeforeOpenEvent = Event<
|
|
13728
|
+
export type ViewSettingsDialog$BeforeOpenEvent = Event<
|
|
13729
|
+
ViewSettingsDialog$BeforeOpenEventParameters,
|
|
13730
|
+
ViewSettingsDialog
|
|
13731
|
+
>;
|
|
13639
13732
|
|
|
13640
13733
|
export interface ViewSettingsDialog$CancelEventParameters {
|
|
13641
13734
|
/**
|
|
@@ -13664,7 +13757,10 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
13664
13757
|
filters?: any[];
|
|
13665
13758
|
}
|
|
13666
13759
|
|
|
13667
|
-
export type ViewSettingsDialog$CancelEvent = Event<
|
|
13760
|
+
export type ViewSettingsDialog$CancelEvent = Event<
|
|
13761
|
+
ViewSettingsDialog$CancelEventParameters,
|
|
13762
|
+
ViewSettingsDialog
|
|
13763
|
+
>;
|
|
13668
13764
|
|
|
13669
13765
|
export interface ViewSettingsDialog$ConfirmEventParameters {
|
|
13670
13766
|
/**
|
|
@@ -13693,7 +13789,10 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
13693
13789
|
filters?: any[];
|
|
13694
13790
|
}
|
|
13695
13791
|
|
|
13696
|
-
export type ViewSettingsDialog$ConfirmEvent = Event<
|
|
13792
|
+
export type ViewSettingsDialog$ConfirmEvent = Event<
|
|
13793
|
+
ViewSettingsDialog$ConfirmEventParameters,
|
|
13794
|
+
ViewSettingsDialog
|
|
13795
|
+
>;
|
|
13697
13796
|
}
|
|
13698
13797
|
|
|
13699
13798
|
declare module "sap/ui/webc/fiori/Wizard" {
|
|
@@ -14105,7 +14204,10 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
14105
14204
|
changeWithClick?: boolean;
|
|
14106
14205
|
}
|
|
14107
14206
|
|
|
14108
|
-
export type Wizard$StepChangeEvent = Event<
|
|
14207
|
+
export type Wizard$StepChangeEvent = Event<
|
|
14208
|
+
Wizard$StepChangeEventParameters,
|
|
14209
|
+
Wizard
|
|
14210
|
+
>;
|
|
14109
14211
|
}
|
|
14110
14212
|
|
|
14111
14213
|
declare module "sap/ui/webc/fiori/WizardStep" {
|