@sapui5/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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +114 -30
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +130 -36
- package/types/sap.fe.core.d.ts +21 -11
- package/types/sap.fe.macros.d.ts +160 -9
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +282 -1118
- package/types/sap.insights.d.ts +248 -2
- package/types/sap.landvisz.d.ts +53 -14
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +33 -9
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +7 -97
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +90 -1
- package/types/sap.suite.ui.commons.d.ts +439 -108
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +69 -18
- 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.comp.d.ts +544 -169
- package/types/sap.ui.core.d.ts +929 -259
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +204 -3
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- 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.richtexteditor.d.ts +17 -5
- 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.vbm.d.ts +184 -61
- package/types/sap.ui.vk.d.ts +544 -139
- package/types/sap.ui.vtm.d.ts +130 -37
- 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.uiext.inbox.d.ts +50 -14
- package/types/sap.ushell.d.ts +625 -46
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +42 -12
- package/types/sap.viz.d.ts +521 -137
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +29 -8
package/types/sap.ui.vtm.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vtm/library" {
|
|
4
4
|
import Vtm from "sap/ui/vtm/Vtm";
|
|
@@ -1556,11 +1556,17 @@ declare module "sap/ui/vtm/Extension" {
|
|
|
1556
1556
|
|
|
1557
1557
|
export interface Extension$EnabledChangedEventParameters {}
|
|
1558
1558
|
|
|
1559
|
-
export type Extension$EnabledChangedEvent = Event<
|
|
1559
|
+
export type Extension$EnabledChangedEvent = Event<
|
|
1560
|
+
Extension$EnabledChangedEventParameters,
|
|
1561
|
+
Extension
|
|
1562
|
+
>;
|
|
1560
1563
|
|
|
1561
1564
|
export interface Extension$InitializedEventParameters {}
|
|
1562
1565
|
|
|
1563
|
-
export type Extension$InitializedEvent = Event<
|
|
1566
|
+
export type Extension$InitializedEvent = Event<
|
|
1567
|
+
Extension$InitializedEventParameters,
|
|
1568
|
+
Extension
|
|
1569
|
+
>;
|
|
1564
1570
|
}
|
|
1565
1571
|
|
|
1566
1572
|
declare module "sap/ui/vtm/extensions/DisplayStateCalculationExtension" {
|
|
@@ -3864,11 +3870,17 @@ declare module "sap/ui/vtm/Panel" {
|
|
|
3864
3870
|
eventData?: object;
|
|
3865
3871
|
}
|
|
3866
3872
|
|
|
3867
|
-
export type Panel$ContextMenuEvent = Event<
|
|
3873
|
+
export type Panel$ContextMenuEvent = Event<
|
|
3874
|
+
Panel$ContextMenuEventParameters,
|
|
3875
|
+
Panel
|
|
3876
|
+
>;
|
|
3868
3877
|
|
|
3869
3878
|
export interface Panel$InitializedEventParameters {}
|
|
3870
3879
|
|
|
3871
|
-
export type Panel$InitializedEvent = Event<
|
|
3880
|
+
export type Panel$InitializedEvent = Event<
|
|
3881
|
+
Panel$InitializedEventParameters,
|
|
3882
|
+
Panel
|
|
3883
|
+
>;
|
|
3872
3884
|
}
|
|
3873
3885
|
|
|
3874
3886
|
declare module "sap/ui/vtm/PredefinedView" {
|
|
@@ -5008,7 +5020,10 @@ declare module "sap/ui/vtm/Scene" {
|
|
|
5008
5020
|
downloadedViewables?: Viewable[];
|
|
5009
5021
|
}
|
|
5010
5022
|
|
|
5011
|
-
export type Scene$DownloadCompletedEvent = Event<
|
|
5023
|
+
export type Scene$DownloadCompletedEvent = Event<
|
|
5024
|
+
Scene$DownloadCompletedEventParameters,
|
|
5025
|
+
Scene
|
|
5026
|
+
>;
|
|
5012
5027
|
|
|
5013
5028
|
export interface Scene$DownloadProgressEventParameters {
|
|
5014
5029
|
/**
|
|
@@ -5027,7 +5042,10 @@ declare module "sap/ui/vtm/Scene" {
|
|
|
5027
5042
|
totalBytes?: int;
|
|
5028
5043
|
}
|
|
5029
5044
|
|
|
5030
|
-
export type Scene$DownloadProgressEvent = Event<
|
|
5045
|
+
export type Scene$DownloadProgressEvent = Event<
|
|
5046
|
+
Scene$DownloadProgressEventParameters,
|
|
5047
|
+
Scene
|
|
5048
|
+
>;
|
|
5031
5049
|
|
|
5032
5050
|
export interface Scene$DownloadStartedEventParameters {
|
|
5033
5051
|
/**
|
|
@@ -5037,11 +5055,17 @@ declare module "sap/ui/vtm/Scene" {
|
|
|
5037
5055
|
viewableLoadInfos?: ViewableLoadInfo[];
|
|
5038
5056
|
}
|
|
5039
5057
|
|
|
5040
|
-
export type Scene$DownloadStartedEvent = Event<
|
|
5058
|
+
export type Scene$DownloadStartedEvent = Event<
|
|
5059
|
+
Scene$DownloadStartedEventParameters,
|
|
5060
|
+
Scene
|
|
5061
|
+
>;
|
|
5041
5062
|
|
|
5042
5063
|
export interface Scene$HierarchyChangedEventParameters {}
|
|
5043
5064
|
|
|
5044
|
-
export type Scene$HierarchyChangedEvent = Event<
|
|
5065
|
+
export type Scene$HierarchyChangedEvent = Event<
|
|
5066
|
+
Scene$HierarchyChangedEventParameters,
|
|
5067
|
+
Scene
|
|
5068
|
+
>;
|
|
5045
5069
|
|
|
5046
5070
|
export interface Scene$LoadCompletedEventParameters {
|
|
5047
5071
|
/**
|
|
@@ -5063,11 +5087,17 @@ declare module "sap/ui/vtm/Scene" {
|
|
|
5063
5087
|
loadedViewables?: Viewable[];
|
|
5064
5088
|
}
|
|
5065
5089
|
|
|
5066
|
-
export type Scene$LoadCompletedEvent = Event<
|
|
5090
|
+
export type Scene$LoadCompletedEvent = Event<
|
|
5091
|
+
Scene$LoadCompletedEventParameters,
|
|
5092
|
+
Scene
|
|
5093
|
+
>;
|
|
5067
5094
|
|
|
5068
5095
|
export interface Scene$LoadProgressEventParameters {}
|
|
5069
5096
|
|
|
5070
|
-
export type Scene$LoadProgressEvent = Event<
|
|
5097
|
+
export type Scene$LoadProgressEvent = Event<
|
|
5098
|
+
Scene$LoadProgressEventParameters,
|
|
5099
|
+
Scene
|
|
5100
|
+
>;
|
|
5071
5101
|
|
|
5072
5102
|
export interface Scene$LoadStartedEventParameters {
|
|
5073
5103
|
/**
|
|
@@ -5077,7 +5107,10 @@ declare module "sap/ui/vtm/Scene" {
|
|
|
5077
5107
|
viewableLoadInfos?: ViewableLoadInfo[];
|
|
5078
5108
|
}
|
|
5079
5109
|
|
|
5080
|
-
export type Scene$LoadStartedEvent = Event<
|
|
5110
|
+
export type Scene$LoadStartedEvent = Event<
|
|
5111
|
+
Scene$LoadStartedEventParameters,
|
|
5112
|
+
Scene
|
|
5113
|
+
>;
|
|
5081
5114
|
}
|
|
5082
5115
|
|
|
5083
5116
|
declare module "sap/ui/vtm/SceneNode" {
|
|
@@ -7476,11 +7509,17 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7476
7509
|
|
|
7477
7510
|
export interface Tree$BeforeModelUpdatedEventParameters {}
|
|
7478
7511
|
|
|
7479
|
-
export type Tree$BeforeModelUpdatedEvent = Event<
|
|
7512
|
+
export type Tree$BeforeModelUpdatedEvent = Event<
|
|
7513
|
+
Tree$BeforeModelUpdatedEventParameters,
|
|
7514
|
+
Tree
|
|
7515
|
+
>;
|
|
7480
7516
|
|
|
7481
7517
|
export interface Tree$DataColumnsChangedEventParameters {}
|
|
7482
7518
|
|
|
7483
|
-
export type Tree$DataColumnsChangedEvent = Event<
|
|
7519
|
+
export type Tree$DataColumnsChangedEvent = Event<
|
|
7520
|
+
Tree$DataColumnsChangedEventParameters,
|
|
7521
|
+
Tree
|
|
7522
|
+
>;
|
|
7484
7523
|
|
|
7485
7524
|
export interface Tree$DragOverEventParameters {
|
|
7486
7525
|
/**
|
|
@@ -7504,7 +7543,7 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7504
7543
|
dragOverTree?: Tree;
|
|
7505
7544
|
}
|
|
7506
7545
|
|
|
7507
|
-
export type Tree$DragOverEvent = Event<Tree$DragOverEventParameters>;
|
|
7546
|
+
export type Tree$DragOverEvent = Event<Tree$DragOverEventParameters, Tree>;
|
|
7508
7547
|
|
|
7509
7548
|
export interface Tree$DragStartEventParameters {
|
|
7510
7549
|
/**
|
|
@@ -7518,7 +7557,7 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7518
7557
|
dragTree?: Tree;
|
|
7519
7558
|
}
|
|
7520
7559
|
|
|
7521
|
-
export type Tree$DragStartEvent = Event<Tree$DragStartEventParameters>;
|
|
7560
|
+
export type Tree$DragStartEvent = Event<Tree$DragStartEventParameters, Tree>;
|
|
7522
7561
|
|
|
7523
7562
|
export interface Tree$DropEventParameters {
|
|
7524
7563
|
/**
|
|
@@ -7542,7 +7581,7 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7542
7581
|
dropTree?: Tree;
|
|
7543
7582
|
}
|
|
7544
7583
|
|
|
7545
|
-
export type Tree$DropEvent = Event<Tree$DropEventParameters>;
|
|
7584
|
+
export type Tree$DropEvent = Event<Tree$DropEventParameters, Tree>;
|
|
7546
7585
|
|
|
7547
7586
|
export interface Tree$ExpandedChangedEventParameters {
|
|
7548
7587
|
/**
|
|
@@ -7561,19 +7600,31 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7561
7600
|
userInteraction?: boolean;
|
|
7562
7601
|
}
|
|
7563
7602
|
|
|
7564
|
-
export type Tree$ExpandedChangedEvent = Event<
|
|
7603
|
+
export type Tree$ExpandedChangedEvent = Event<
|
|
7604
|
+
Tree$ExpandedChangedEventParameters,
|
|
7605
|
+
Tree
|
|
7606
|
+
>;
|
|
7565
7607
|
|
|
7566
7608
|
export interface Tree$FixedColumnsChangedEventParameters {}
|
|
7567
7609
|
|
|
7568
|
-
export type Tree$FixedColumnsChangedEvent = Event<
|
|
7610
|
+
export type Tree$FixedColumnsChangedEvent = Event<
|
|
7611
|
+
Tree$FixedColumnsChangedEventParameters,
|
|
7612
|
+
Tree
|
|
7613
|
+
>;
|
|
7569
7614
|
|
|
7570
7615
|
export interface Tree$HierarchyChangedEventParameters {}
|
|
7571
7616
|
|
|
7572
|
-
export type Tree$HierarchyChangedEvent = Event<
|
|
7617
|
+
export type Tree$HierarchyChangedEvent = Event<
|
|
7618
|
+
Tree$HierarchyChangedEventParameters,
|
|
7619
|
+
Tree
|
|
7620
|
+
>;
|
|
7573
7621
|
|
|
7574
7622
|
export interface Tree$MessageStatusHeaderIconClickedEventParameters {}
|
|
7575
7623
|
|
|
7576
|
-
export type Tree$MessageStatusHeaderIconClickedEvent = Event<
|
|
7624
|
+
export type Tree$MessageStatusHeaderIconClickedEvent = Event<
|
|
7625
|
+
Tree$MessageStatusHeaderIconClickedEventParameters,
|
|
7626
|
+
Tree
|
|
7627
|
+
>;
|
|
7577
7628
|
|
|
7578
7629
|
export interface Tree$MessageStatusIconClickedEventParameters {
|
|
7579
7630
|
/**
|
|
@@ -7587,11 +7638,17 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7587
7638
|
control?: Control;
|
|
7588
7639
|
}
|
|
7589
7640
|
|
|
7590
|
-
export type Tree$MessageStatusIconClickedEvent = Event<
|
|
7641
|
+
export type Tree$MessageStatusIconClickedEvent = Event<
|
|
7642
|
+
Tree$MessageStatusIconClickedEventParameters,
|
|
7643
|
+
Tree
|
|
7644
|
+
>;
|
|
7591
7645
|
|
|
7592
7646
|
export interface Tree$ModelUpdatedEventParameters {}
|
|
7593
7647
|
|
|
7594
|
-
export type Tree$ModelUpdatedEvent = Event<
|
|
7648
|
+
export type Tree$ModelUpdatedEvent = Event<
|
|
7649
|
+
Tree$ModelUpdatedEventParameters,
|
|
7650
|
+
Tree
|
|
7651
|
+
>;
|
|
7595
7652
|
|
|
7596
7653
|
export interface Tree$SelectionChangedEventParameters {
|
|
7597
7654
|
/**
|
|
@@ -7610,7 +7667,10 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7610
7667
|
userInteraction?: boolean;
|
|
7611
7668
|
}
|
|
7612
7669
|
|
|
7613
|
-
export type Tree$SelectionChangedEvent = Event<
|
|
7670
|
+
export type Tree$SelectionChangedEvent = Event<
|
|
7671
|
+
Tree$SelectionChangedEventParameters,
|
|
7672
|
+
Tree
|
|
7673
|
+
>;
|
|
7614
7674
|
|
|
7615
7675
|
export interface Tree$VisibilityHeaderIconClickedEventParameters {
|
|
7616
7676
|
/**
|
|
@@ -7624,7 +7684,10 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7624
7684
|
control?: Control;
|
|
7625
7685
|
}
|
|
7626
7686
|
|
|
7627
|
-
export type Tree$VisibilityHeaderIconClickedEvent = Event<
|
|
7687
|
+
export type Tree$VisibilityHeaderIconClickedEvent = Event<
|
|
7688
|
+
Tree$VisibilityHeaderIconClickedEventParameters,
|
|
7689
|
+
Tree
|
|
7690
|
+
>;
|
|
7628
7691
|
|
|
7629
7692
|
export interface Tree$VisibilityIconClickedEventParameters {
|
|
7630
7693
|
/**
|
|
@@ -7643,7 +7706,10 @@ declare module "sap/ui/vtm/Tree" {
|
|
|
7643
7706
|
control?: Control;
|
|
7644
7707
|
}
|
|
7645
7708
|
|
|
7646
|
-
export type Tree$VisibilityIconClickedEvent = Event<
|
|
7709
|
+
export type Tree$VisibilityIconClickedEvent = Event<
|
|
7710
|
+
Tree$VisibilityIconClickedEventParameters,
|
|
7711
|
+
Tree
|
|
7712
|
+
>;
|
|
7647
7713
|
}
|
|
7648
7714
|
|
|
7649
7715
|
declare module "sap/ui/vtm/TreeItemType" {
|
|
@@ -9994,11 +10060,17 @@ declare module "sap/ui/vtm/Viewport" {
|
|
|
9994
10060
|
|
|
9995
10061
|
export interface Viewport$BeginGestureEventParameters {}
|
|
9996
10062
|
|
|
9997
|
-
export type Viewport$BeginGestureEvent = Event<
|
|
10063
|
+
export type Viewport$BeginGestureEvent = Event<
|
|
10064
|
+
Viewport$BeginGestureEventParameters,
|
|
10065
|
+
Viewport
|
|
10066
|
+
>;
|
|
9998
10067
|
|
|
9999
10068
|
export interface Viewport$EndGestureEventParameters {}
|
|
10000
10069
|
|
|
10001
|
-
export type Viewport$EndGestureEvent = Event<
|
|
10070
|
+
export type Viewport$EndGestureEvent = Event<
|
|
10071
|
+
Viewport$EndGestureEventParameters,
|
|
10072
|
+
Viewport
|
|
10073
|
+
>;
|
|
10002
10074
|
|
|
10003
10075
|
export interface Viewport$HoverEventParameters {
|
|
10004
10076
|
/**
|
|
@@ -10017,15 +10089,24 @@ declare module "sap/ui/vtm/Viewport" {
|
|
|
10017
10089
|
nodeId?: string;
|
|
10018
10090
|
}
|
|
10019
10091
|
|
|
10020
|
-
export type Viewport$HoverEvent = Event<
|
|
10092
|
+
export type Viewport$HoverEvent = Event<
|
|
10093
|
+
Viewport$HoverEventParameters,
|
|
10094
|
+
Viewport
|
|
10095
|
+
>;
|
|
10021
10096
|
|
|
10022
10097
|
export interface Viewport$NodeClickedEventParameters {}
|
|
10023
10098
|
|
|
10024
|
-
export type Viewport$NodeClickedEvent = Event<
|
|
10099
|
+
export type Viewport$NodeClickedEvent = Event<
|
|
10100
|
+
Viewport$NodeClickedEventParameters,
|
|
10101
|
+
Viewport
|
|
10102
|
+
>;
|
|
10025
10103
|
|
|
10026
10104
|
export interface Viewport$RefreshRequestedEventParameters {}
|
|
10027
10105
|
|
|
10028
|
-
export type Viewport$RefreshRequestedEvent = Event<
|
|
10106
|
+
export type Viewport$RefreshRequestedEvent = Event<
|
|
10107
|
+
Viewport$RefreshRequestedEventParameters,
|
|
10108
|
+
Viewport
|
|
10109
|
+
>;
|
|
10029
10110
|
|
|
10030
10111
|
export interface Viewport$SelectionChangedEventParameters {
|
|
10031
10112
|
/**
|
|
@@ -10044,7 +10125,10 @@ declare module "sap/ui/vtm/Viewport" {
|
|
|
10044
10125
|
userInteraction?: boolean;
|
|
10045
10126
|
}
|
|
10046
10127
|
|
|
10047
|
-
export type Viewport$SelectionChangedEvent = Event<
|
|
10128
|
+
export type Viewport$SelectionChangedEvent = Event<
|
|
10129
|
+
Viewport$SelectionChangedEventParameters,
|
|
10130
|
+
Viewport
|
|
10131
|
+
>;
|
|
10048
10132
|
|
|
10049
10133
|
export interface Viewport$ViewChangedEventParameters {
|
|
10050
10134
|
/**
|
|
@@ -10053,7 +10137,10 @@ declare module "sap/ui/vtm/Viewport" {
|
|
|
10053
10137
|
cameraInfo?: object;
|
|
10054
10138
|
}
|
|
10055
10139
|
|
|
10056
|
-
export type Viewport$ViewChangedEvent = Event<
|
|
10140
|
+
export type Viewport$ViewChangedEvent = Event<
|
|
10141
|
+
Viewport$ViewChangedEventParameters,
|
|
10142
|
+
Viewport
|
|
10143
|
+
>;
|
|
10057
10144
|
|
|
10058
10145
|
export interface Viewport$VisibilityChangedEventParameters {
|
|
10059
10146
|
/**
|
|
@@ -10072,7 +10159,10 @@ declare module "sap/ui/vtm/Viewport" {
|
|
|
10072
10159
|
userInteraction?: boolean;
|
|
10073
10160
|
}
|
|
10074
10161
|
|
|
10075
|
-
export type Viewport$VisibilityChangedEvent = Event<
|
|
10162
|
+
export type Viewport$VisibilityChangedEvent = Event<
|
|
10163
|
+
Viewport$VisibilityChangedEventParameters,
|
|
10164
|
+
Viewport
|
|
10165
|
+
>;
|
|
10076
10166
|
}
|
|
10077
10167
|
|
|
10078
10168
|
declare module "sap/ui/vtm/Vtm" {
|
|
@@ -10624,17 +10714,20 @@ declare module "sap/ui/vtm/Vtm" {
|
|
|
10624
10714
|
|
|
10625
10715
|
export interface Vtm$ActivePanelChangedEventParameters {}
|
|
10626
10716
|
|
|
10627
|
-
export type Vtm$ActivePanelChangedEvent = Event<
|
|
10717
|
+
export type Vtm$ActivePanelChangedEvent = Event<
|
|
10718
|
+
Vtm$ActivePanelChangedEventParameters,
|
|
10719
|
+
Vtm
|
|
10720
|
+
>;
|
|
10628
10721
|
|
|
10629
10722
|
export interface Vtm$InitializedEventParameters {}
|
|
10630
10723
|
|
|
10631
|
-
export type Vtm$InitializedEvent = Event<Vtm$InitializedEventParameters>;
|
|
10724
|
+
export type Vtm$InitializedEvent = Event<Vtm$InitializedEventParameters, Vtm>;
|
|
10632
10725
|
|
|
10633
10726
|
export interface Vtm$PanelAddedEventParameters {
|
|
10634
10727
|
panel?: Panel;
|
|
10635
10728
|
}
|
|
10636
10729
|
|
|
10637
|
-
export type Vtm$PanelAddedEvent = Event<Vtm$PanelAddedEventParameters>;
|
|
10730
|
+
export type Vtm$PanelAddedEvent = Event<Vtm$PanelAddedEventParameters, Vtm>;
|
|
10638
10731
|
}
|
|
10639
10732
|
|
|
10640
10733
|
declare namespace sap {
|