@sapui5/types 1.116.0 → 1.117.0
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 +934 -264
- 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.viz.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/viz/library" {
|
|
4
4
|
export namespace ui5 {
|
|
@@ -2163,23 +2163,38 @@ declare module "sap/viz/ui5/Area" {
|
|
|
2163
2163
|
|
|
2164
2164
|
export interface Area$DeselectDataEventParameters {}
|
|
2165
2165
|
|
|
2166
|
-
export type Area$DeselectDataEvent = Event<
|
|
2166
|
+
export type Area$DeselectDataEvent = Event<
|
|
2167
|
+
Area$DeselectDataEventParameters,
|
|
2168
|
+
Area
|
|
2169
|
+
>;
|
|
2167
2170
|
|
|
2168
2171
|
export interface Area$HideTooltipEventParameters {}
|
|
2169
2172
|
|
|
2170
|
-
export type Area$HideTooltipEvent = Event<
|
|
2173
|
+
export type Area$HideTooltipEvent = Event<
|
|
2174
|
+
Area$HideTooltipEventParameters,
|
|
2175
|
+
Area
|
|
2176
|
+
>;
|
|
2171
2177
|
|
|
2172
2178
|
export interface Area$InitializedEventParameters {}
|
|
2173
2179
|
|
|
2174
|
-
export type Area$InitializedEvent = Event<
|
|
2180
|
+
export type Area$InitializedEvent = Event<
|
|
2181
|
+
Area$InitializedEventParameters,
|
|
2182
|
+
Area
|
|
2183
|
+
>;
|
|
2175
2184
|
|
|
2176
2185
|
export interface Area$SelectDataEventParameters {}
|
|
2177
2186
|
|
|
2178
|
-
export type Area$SelectDataEvent = Event<
|
|
2187
|
+
export type Area$SelectDataEvent = Event<
|
|
2188
|
+
Area$SelectDataEventParameters,
|
|
2189
|
+
Area
|
|
2190
|
+
>;
|
|
2179
2191
|
|
|
2180
2192
|
export interface Area$ShowTooltipEventParameters {}
|
|
2181
2193
|
|
|
2182
|
-
export type Area$ShowTooltipEvent = Event<
|
|
2194
|
+
export type Area$ShowTooltipEvent = Event<
|
|
2195
|
+
Area$ShowTooltipEventParameters,
|
|
2196
|
+
Area
|
|
2197
|
+
>;
|
|
2183
2198
|
}
|
|
2184
2199
|
|
|
2185
2200
|
declare module "sap/viz/ui5/Area100" {
|
|
@@ -3115,23 +3130,38 @@ declare module "sap/viz/ui5/Area100" {
|
|
|
3115
3130
|
|
|
3116
3131
|
export interface Area100$DeselectDataEventParameters {}
|
|
3117
3132
|
|
|
3118
|
-
export type Area100$DeselectDataEvent = Event<
|
|
3133
|
+
export type Area100$DeselectDataEvent = Event<
|
|
3134
|
+
Area100$DeselectDataEventParameters,
|
|
3135
|
+
Area100
|
|
3136
|
+
>;
|
|
3119
3137
|
|
|
3120
3138
|
export interface Area100$HideTooltipEventParameters {}
|
|
3121
3139
|
|
|
3122
|
-
export type Area100$HideTooltipEvent = Event<
|
|
3140
|
+
export type Area100$HideTooltipEvent = Event<
|
|
3141
|
+
Area100$HideTooltipEventParameters,
|
|
3142
|
+
Area100
|
|
3143
|
+
>;
|
|
3123
3144
|
|
|
3124
3145
|
export interface Area100$InitializedEventParameters {}
|
|
3125
3146
|
|
|
3126
|
-
export type Area100$InitializedEvent = Event<
|
|
3147
|
+
export type Area100$InitializedEvent = Event<
|
|
3148
|
+
Area100$InitializedEventParameters,
|
|
3149
|
+
Area100
|
|
3150
|
+
>;
|
|
3127
3151
|
|
|
3128
3152
|
export interface Area100$SelectDataEventParameters {}
|
|
3129
3153
|
|
|
3130
|
-
export type Area100$SelectDataEvent = Event<
|
|
3154
|
+
export type Area100$SelectDataEvent = Event<
|
|
3155
|
+
Area100$SelectDataEventParameters,
|
|
3156
|
+
Area100
|
|
3157
|
+
>;
|
|
3131
3158
|
|
|
3132
3159
|
export interface Area100$ShowTooltipEventParameters {}
|
|
3133
3160
|
|
|
3134
|
-
export type Area100$ShowTooltipEvent = Event<
|
|
3161
|
+
export type Area100$ShowTooltipEvent = Event<
|
|
3162
|
+
Area100$ShowTooltipEventParameters,
|
|
3163
|
+
Area100
|
|
3164
|
+
>;
|
|
3135
3165
|
}
|
|
3136
3166
|
|
|
3137
3167
|
declare module "sap/viz/ui5/Bar" {
|
|
@@ -4074,23 +4104,26 @@ declare module "sap/viz/ui5/Bar" {
|
|
|
4074
4104
|
|
|
4075
4105
|
export interface Bar$DeselectDataEventParameters {}
|
|
4076
4106
|
|
|
4077
|
-
export type Bar$DeselectDataEvent = Event<
|
|
4107
|
+
export type Bar$DeselectDataEvent = Event<
|
|
4108
|
+
Bar$DeselectDataEventParameters,
|
|
4109
|
+
Bar
|
|
4110
|
+
>;
|
|
4078
4111
|
|
|
4079
4112
|
export interface Bar$HideTooltipEventParameters {}
|
|
4080
4113
|
|
|
4081
|
-
export type Bar$HideTooltipEvent = Event<Bar$HideTooltipEventParameters>;
|
|
4114
|
+
export type Bar$HideTooltipEvent = Event<Bar$HideTooltipEventParameters, Bar>;
|
|
4082
4115
|
|
|
4083
4116
|
export interface Bar$InitializedEventParameters {}
|
|
4084
4117
|
|
|
4085
|
-
export type Bar$InitializedEvent = Event<Bar$InitializedEventParameters>;
|
|
4118
|
+
export type Bar$InitializedEvent = Event<Bar$InitializedEventParameters, Bar>;
|
|
4086
4119
|
|
|
4087
4120
|
export interface Bar$SelectDataEventParameters {}
|
|
4088
4121
|
|
|
4089
|
-
export type Bar$SelectDataEvent = Event<Bar$SelectDataEventParameters>;
|
|
4122
|
+
export type Bar$SelectDataEvent = Event<Bar$SelectDataEventParameters, Bar>;
|
|
4090
4123
|
|
|
4091
4124
|
export interface Bar$ShowTooltipEventParameters {}
|
|
4092
4125
|
|
|
4093
|
-
export type Bar$ShowTooltipEvent = Event<Bar$ShowTooltipEventParameters>;
|
|
4126
|
+
export type Bar$ShowTooltipEvent = Event<Bar$ShowTooltipEventParameters, Bar>;
|
|
4094
4127
|
}
|
|
4095
4128
|
|
|
4096
4129
|
declare module "sap/viz/ui5/Bubble" {
|
|
@@ -5061,23 +5094,38 @@ declare module "sap/viz/ui5/Bubble" {
|
|
|
5061
5094
|
|
|
5062
5095
|
export interface Bubble$DeselectDataEventParameters {}
|
|
5063
5096
|
|
|
5064
|
-
export type Bubble$DeselectDataEvent = Event<
|
|
5097
|
+
export type Bubble$DeselectDataEvent = Event<
|
|
5098
|
+
Bubble$DeselectDataEventParameters,
|
|
5099
|
+
Bubble
|
|
5100
|
+
>;
|
|
5065
5101
|
|
|
5066
5102
|
export interface Bubble$HideTooltipEventParameters {}
|
|
5067
5103
|
|
|
5068
|
-
export type Bubble$HideTooltipEvent = Event<
|
|
5104
|
+
export type Bubble$HideTooltipEvent = Event<
|
|
5105
|
+
Bubble$HideTooltipEventParameters,
|
|
5106
|
+
Bubble
|
|
5107
|
+
>;
|
|
5069
5108
|
|
|
5070
5109
|
export interface Bubble$InitializedEventParameters {}
|
|
5071
5110
|
|
|
5072
|
-
export type Bubble$InitializedEvent = Event<
|
|
5111
|
+
export type Bubble$InitializedEvent = Event<
|
|
5112
|
+
Bubble$InitializedEventParameters,
|
|
5113
|
+
Bubble
|
|
5114
|
+
>;
|
|
5073
5115
|
|
|
5074
5116
|
export interface Bubble$SelectDataEventParameters {}
|
|
5075
5117
|
|
|
5076
|
-
export type Bubble$SelectDataEvent = Event<
|
|
5118
|
+
export type Bubble$SelectDataEvent = Event<
|
|
5119
|
+
Bubble$SelectDataEventParameters,
|
|
5120
|
+
Bubble
|
|
5121
|
+
>;
|
|
5077
5122
|
|
|
5078
5123
|
export interface Bubble$ShowTooltipEventParameters {}
|
|
5079
5124
|
|
|
5080
|
-
export type Bubble$ShowTooltipEvent = Event<
|
|
5125
|
+
export type Bubble$ShowTooltipEvent = Event<
|
|
5126
|
+
Bubble$ShowTooltipEventParameters,
|
|
5127
|
+
Bubble
|
|
5128
|
+
>;
|
|
5081
5129
|
}
|
|
5082
5130
|
|
|
5083
5131
|
declare module "sap/viz/ui5/Bullet" {
|
|
@@ -5958,23 +6006,38 @@ declare module "sap/viz/ui5/Bullet" {
|
|
|
5958
6006
|
|
|
5959
6007
|
export interface Bullet$DeselectDataEventParameters {}
|
|
5960
6008
|
|
|
5961
|
-
export type Bullet$DeselectDataEvent = Event<
|
|
6009
|
+
export type Bullet$DeselectDataEvent = Event<
|
|
6010
|
+
Bullet$DeselectDataEventParameters,
|
|
6011
|
+
Bullet
|
|
6012
|
+
>;
|
|
5962
6013
|
|
|
5963
6014
|
export interface Bullet$HideTooltipEventParameters {}
|
|
5964
6015
|
|
|
5965
|
-
export type Bullet$HideTooltipEvent = Event<
|
|
6016
|
+
export type Bullet$HideTooltipEvent = Event<
|
|
6017
|
+
Bullet$HideTooltipEventParameters,
|
|
6018
|
+
Bullet
|
|
6019
|
+
>;
|
|
5966
6020
|
|
|
5967
6021
|
export interface Bullet$InitializedEventParameters {}
|
|
5968
6022
|
|
|
5969
|
-
export type Bullet$InitializedEvent = Event<
|
|
6023
|
+
export type Bullet$InitializedEvent = Event<
|
|
6024
|
+
Bullet$InitializedEventParameters,
|
|
6025
|
+
Bullet
|
|
6026
|
+
>;
|
|
5970
6027
|
|
|
5971
6028
|
export interface Bullet$SelectDataEventParameters {}
|
|
5972
6029
|
|
|
5973
|
-
export type Bullet$SelectDataEvent = Event<
|
|
6030
|
+
export type Bullet$SelectDataEvent = Event<
|
|
6031
|
+
Bullet$SelectDataEventParameters,
|
|
6032
|
+
Bullet
|
|
6033
|
+
>;
|
|
5974
6034
|
|
|
5975
6035
|
export interface Bullet$ShowTooltipEventParameters {}
|
|
5976
6036
|
|
|
5977
|
-
export type Bullet$ShowTooltipEvent = Event<
|
|
6037
|
+
export type Bullet$ShowTooltipEvent = Event<
|
|
6038
|
+
Bullet$ShowTooltipEventParameters,
|
|
6039
|
+
Bullet
|
|
6040
|
+
>;
|
|
5978
6041
|
}
|
|
5979
6042
|
|
|
5980
6043
|
declare module "sap/viz/ui5/Column" {
|
|
@@ -6917,23 +6980,38 @@ declare module "sap/viz/ui5/Column" {
|
|
|
6917
6980
|
|
|
6918
6981
|
export interface Column$DeselectDataEventParameters {}
|
|
6919
6982
|
|
|
6920
|
-
export type Column$DeselectDataEvent = Event<
|
|
6983
|
+
export type Column$DeselectDataEvent = Event<
|
|
6984
|
+
Column$DeselectDataEventParameters,
|
|
6985
|
+
Column
|
|
6986
|
+
>;
|
|
6921
6987
|
|
|
6922
6988
|
export interface Column$HideTooltipEventParameters {}
|
|
6923
6989
|
|
|
6924
|
-
export type Column$HideTooltipEvent = Event<
|
|
6990
|
+
export type Column$HideTooltipEvent = Event<
|
|
6991
|
+
Column$HideTooltipEventParameters,
|
|
6992
|
+
Column
|
|
6993
|
+
>;
|
|
6925
6994
|
|
|
6926
6995
|
export interface Column$InitializedEventParameters {}
|
|
6927
6996
|
|
|
6928
|
-
export type Column$InitializedEvent = Event<
|
|
6997
|
+
export type Column$InitializedEvent = Event<
|
|
6998
|
+
Column$InitializedEventParameters,
|
|
6999
|
+
Column
|
|
7000
|
+
>;
|
|
6929
7001
|
|
|
6930
7002
|
export interface Column$SelectDataEventParameters {}
|
|
6931
7003
|
|
|
6932
|
-
export type Column$SelectDataEvent = Event<
|
|
7004
|
+
export type Column$SelectDataEvent = Event<
|
|
7005
|
+
Column$SelectDataEventParameters,
|
|
7006
|
+
Column
|
|
7007
|
+
>;
|
|
6933
7008
|
|
|
6934
7009
|
export interface Column$ShowTooltipEventParameters {}
|
|
6935
7010
|
|
|
6936
|
-
export type Column$ShowTooltipEvent = Event<
|
|
7011
|
+
export type Column$ShowTooltipEvent = Event<
|
|
7012
|
+
Column$ShowTooltipEventParameters,
|
|
7013
|
+
Column
|
|
7014
|
+
>;
|
|
6937
7015
|
}
|
|
6938
7016
|
|
|
6939
7017
|
declare module "sap/viz/ui5/Combination" {
|
|
@@ -7876,23 +7954,38 @@ declare module "sap/viz/ui5/Combination" {
|
|
|
7876
7954
|
|
|
7877
7955
|
export interface Combination$DeselectDataEventParameters {}
|
|
7878
7956
|
|
|
7879
|
-
export type Combination$DeselectDataEvent = Event<
|
|
7957
|
+
export type Combination$DeselectDataEvent = Event<
|
|
7958
|
+
Combination$DeselectDataEventParameters,
|
|
7959
|
+
Combination
|
|
7960
|
+
>;
|
|
7880
7961
|
|
|
7881
7962
|
export interface Combination$HideTooltipEventParameters {}
|
|
7882
7963
|
|
|
7883
|
-
export type Combination$HideTooltipEvent = Event<
|
|
7964
|
+
export type Combination$HideTooltipEvent = Event<
|
|
7965
|
+
Combination$HideTooltipEventParameters,
|
|
7966
|
+
Combination
|
|
7967
|
+
>;
|
|
7884
7968
|
|
|
7885
7969
|
export interface Combination$InitializedEventParameters {}
|
|
7886
7970
|
|
|
7887
|
-
export type Combination$InitializedEvent = Event<
|
|
7971
|
+
export type Combination$InitializedEvent = Event<
|
|
7972
|
+
Combination$InitializedEventParameters,
|
|
7973
|
+
Combination
|
|
7974
|
+
>;
|
|
7888
7975
|
|
|
7889
7976
|
export interface Combination$SelectDataEventParameters {}
|
|
7890
7977
|
|
|
7891
|
-
export type Combination$SelectDataEvent = Event<
|
|
7978
|
+
export type Combination$SelectDataEvent = Event<
|
|
7979
|
+
Combination$SelectDataEventParameters,
|
|
7980
|
+
Combination
|
|
7981
|
+
>;
|
|
7892
7982
|
|
|
7893
7983
|
export interface Combination$ShowTooltipEventParameters {}
|
|
7894
7984
|
|
|
7895
|
-
export type Combination$ShowTooltipEvent = Event<
|
|
7985
|
+
export type Combination$ShowTooltipEvent = Event<
|
|
7986
|
+
Combination$ShowTooltipEventParameters,
|
|
7987
|
+
Combination
|
|
7988
|
+
>;
|
|
7896
7989
|
}
|
|
7897
7990
|
|
|
7898
7991
|
declare module "sap/viz/ui5/controls/common/BaseControl" {
|
|
@@ -9352,15 +9445,24 @@ declare module "sap/viz/ui5/controls/VizFrame" {
|
|
|
9352
9445
|
|
|
9353
9446
|
export interface VizFrame$DeselectDataEventParameters {}
|
|
9354
9447
|
|
|
9355
|
-
export type VizFrame$DeselectDataEvent = Event<
|
|
9448
|
+
export type VizFrame$DeselectDataEvent = Event<
|
|
9449
|
+
VizFrame$DeselectDataEventParameters,
|
|
9450
|
+
VizFrame
|
|
9451
|
+
>;
|
|
9356
9452
|
|
|
9357
9453
|
export interface VizFrame$RenderCompleteEventParameters {}
|
|
9358
9454
|
|
|
9359
|
-
export type VizFrame$RenderCompleteEvent = Event<
|
|
9455
|
+
export type VizFrame$RenderCompleteEvent = Event<
|
|
9456
|
+
VizFrame$RenderCompleteEventParameters,
|
|
9457
|
+
VizFrame
|
|
9458
|
+
>;
|
|
9360
9459
|
|
|
9361
9460
|
export interface VizFrame$SelectDataEventParameters {}
|
|
9362
9461
|
|
|
9363
|
-
export type VizFrame$SelectDataEvent = Event<
|
|
9462
|
+
export type VizFrame$SelectDataEvent = Event<
|
|
9463
|
+
VizFrame$SelectDataEventParameters,
|
|
9464
|
+
VizFrame
|
|
9465
|
+
>;
|
|
9364
9466
|
}
|
|
9365
9467
|
|
|
9366
9468
|
declare module "sap/viz/ui5/controls/VizSlider" {
|
|
@@ -9891,7 +9993,10 @@ declare module "sap/viz/ui5/controls/VizSlider" {
|
|
|
9891
9993
|
|
|
9892
9994
|
export interface VizSlider$RangeChangedEventParameters {}
|
|
9893
9995
|
|
|
9894
|
-
export type VizSlider$RangeChangedEvent = Event<
|
|
9996
|
+
export type VizSlider$RangeChangedEvent = Event<
|
|
9997
|
+
VizSlider$RangeChangedEventParameters,
|
|
9998
|
+
VizSlider
|
|
9999
|
+
>;
|
|
9895
10000
|
}
|
|
9896
10001
|
|
|
9897
10002
|
declare module "sap/viz/ui5/controls/VizTooltip" {
|
|
@@ -10361,7 +10466,10 @@ declare module "sap/viz/ui5/core/BaseChart" {
|
|
|
10361
10466
|
usrOptions?: object;
|
|
10362
10467
|
}
|
|
10363
10468
|
|
|
10364
|
-
export type BaseChart$BeforeCreateVizEvent = Event<
|
|
10469
|
+
export type BaseChart$BeforeCreateVizEvent = Event<
|
|
10470
|
+
BaseChart$BeforeCreateVizEventParameters,
|
|
10471
|
+
BaseChart
|
|
10472
|
+
>;
|
|
10365
10473
|
}
|
|
10366
10474
|
|
|
10367
10475
|
declare module "sap/viz/ui5/core/BaseStructuredType" {
|
|
@@ -11637,15 +11745,24 @@ declare module "sap/viz/ui5/data/FlattenedDataset" {
|
|
|
11637
11745
|
|
|
11638
11746
|
export interface FlattenedDataset$DataChangeEventParameters {}
|
|
11639
11747
|
|
|
11640
|
-
export type FlattenedDataset$DataChangeEvent = Event<
|
|
11748
|
+
export type FlattenedDataset$DataChangeEvent = Event<
|
|
11749
|
+
FlattenedDataset$DataChangeEventParameters,
|
|
11750
|
+
FlattenedDataset
|
|
11751
|
+
>;
|
|
11641
11752
|
|
|
11642
11753
|
export interface FlattenedDataset$DataErrorEventParameters {}
|
|
11643
11754
|
|
|
11644
|
-
export type FlattenedDataset$DataErrorEvent = Event<
|
|
11755
|
+
export type FlattenedDataset$DataErrorEvent = Event<
|
|
11756
|
+
FlattenedDataset$DataErrorEventParameters,
|
|
11757
|
+
FlattenedDataset
|
|
11758
|
+
>;
|
|
11645
11759
|
|
|
11646
11760
|
export interface FlattenedDataset$DataRefreshEventParameters {}
|
|
11647
11761
|
|
|
11648
|
-
export type FlattenedDataset$DataRefreshEvent = Event<
|
|
11762
|
+
export type FlattenedDataset$DataRefreshEvent = Event<
|
|
11763
|
+
FlattenedDataset$DataRefreshEventParameters,
|
|
11764
|
+
FlattenedDataset
|
|
11765
|
+
>;
|
|
11649
11766
|
}
|
|
11650
11767
|
|
|
11651
11768
|
declare module "sap/viz/ui5/data/MeasureDefinition" {
|
|
@@ -12815,23 +12932,38 @@ declare module "sap/viz/ui5/Donut" {
|
|
|
12815
12932
|
|
|
12816
12933
|
export interface Donut$DeselectDataEventParameters {}
|
|
12817
12934
|
|
|
12818
|
-
export type Donut$DeselectDataEvent = Event<
|
|
12935
|
+
export type Donut$DeselectDataEvent = Event<
|
|
12936
|
+
Donut$DeselectDataEventParameters,
|
|
12937
|
+
Donut
|
|
12938
|
+
>;
|
|
12819
12939
|
|
|
12820
12940
|
export interface Donut$HideTooltipEventParameters {}
|
|
12821
12941
|
|
|
12822
|
-
export type Donut$HideTooltipEvent = Event<
|
|
12942
|
+
export type Donut$HideTooltipEvent = Event<
|
|
12943
|
+
Donut$HideTooltipEventParameters,
|
|
12944
|
+
Donut
|
|
12945
|
+
>;
|
|
12823
12946
|
|
|
12824
12947
|
export interface Donut$InitializedEventParameters {}
|
|
12825
12948
|
|
|
12826
|
-
export type Donut$InitializedEvent = Event<
|
|
12949
|
+
export type Donut$InitializedEvent = Event<
|
|
12950
|
+
Donut$InitializedEventParameters,
|
|
12951
|
+
Donut
|
|
12952
|
+
>;
|
|
12827
12953
|
|
|
12828
12954
|
export interface Donut$SelectDataEventParameters {}
|
|
12829
12955
|
|
|
12830
|
-
export type Donut$SelectDataEvent = Event<
|
|
12956
|
+
export type Donut$SelectDataEvent = Event<
|
|
12957
|
+
Donut$SelectDataEventParameters,
|
|
12958
|
+
Donut
|
|
12959
|
+
>;
|
|
12831
12960
|
|
|
12832
12961
|
export interface Donut$ShowTooltipEventParameters {}
|
|
12833
12962
|
|
|
12834
|
-
export type Donut$ShowTooltipEvent = Event<
|
|
12963
|
+
export type Donut$ShowTooltipEvent = Event<
|
|
12964
|
+
Donut$ShowTooltipEventParameters,
|
|
12965
|
+
Donut
|
|
12966
|
+
>;
|
|
12835
12967
|
}
|
|
12836
12968
|
|
|
12837
12969
|
declare module "sap/viz/ui5/DualBar" {
|
|
@@ -13802,23 +13934,38 @@ declare module "sap/viz/ui5/DualBar" {
|
|
|
13802
13934
|
|
|
13803
13935
|
export interface DualBar$DeselectDataEventParameters {}
|
|
13804
13936
|
|
|
13805
|
-
export type DualBar$DeselectDataEvent = Event<
|
|
13937
|
+
export type DualBar$DeselectDataEvent = Event<
|
|
13938
|
+
DualBar$DeselectDataEventParameters,
|
|
13939
|
+
DualBar
|
|
13940
|
+
>;
|
|
13806
13941
|
|
|
13807
13942
|
export interface DualBar$HideTooltipEventParameters {}
|
|
13808
13943
|
|
|
13809
|
-
export type DualBar$HideTooltipEvent = Event<
|
|
13944
|
+
export type DualBar$HideTooltipEvent = Event<
|
|
13945
|
+
DualBar$HideTooltipEventParameters,
|
|
13946
|
+
DualBar
|
|
13947
|
+
>;
|
|
13810
13948
|
|
|
13811
13949
|
export interface DualBar$InitializedEventParameters {}
|
|
13812
13950
|
|
|
13813
|
-
export type DualBar$InitializedEvent = Event<
|
|
13951
|
+
export type DualBar$InitializedEvent = Event<
|
|
13952
|
+
DualBar$InitializedEventParameters,
|
|
13953
|
+
DualBar
|
|
13954
|
+
>;
|
|
13814
13955
|
|
|
13815
13956
|
export interface DualBar$SelectDataEventParameters {}
|
|
13816
13957
|
|
|
13817
|
-
export type DualBar$SelectDataEvent = Event<
|
|
13958
|
+
export type DualBar$SelectDataEvent = Event<
|
|
13959
|
+
DualBar$SelectDataEventParameters,
|
|
13960
|
+
DualBar
|
|
13961
|
+
>;
|
|
13818
13962
|
|
|
13819
13963
|
export interface DualBar$ShowTooltipEventParameters {}
|
|
13820
13964
|
|
|
13821
|
-
export type DualBar$ShowTooltipEvent = Event<
|
|
13965
|
+
export type DualBar$ShowTooltipEvent = Event<
|
|
13966
|
+
DualBar$ShowTooltipEventParameters,
|
|
13967
|
+
DualBar
|
|
13968
|
+
>;
|
|
13822
13969
|
}
|
|
13823
13970
|
|
|
13824
13971
|
declare module "sap/viz/ui5/DualColumn" {
|
|
@@ -14789,23 +14936,38 @@ declare module "sap/viz/ui5/DualColumn" {
|
|
|
14789
14936
|
|
|
14790
14937
|
export interface DualColumn$DeselectDataEventParameters {}
|
|
14791
14938
|
|
|
14792
|
-
export type DualColumn$DeselectDataEvent = Event<
|
|
14939
|
+
export type DualColumn$DeselectDataEvent = Event<
|
|
14940
|
+
DualColumn$DeselectDataEventParameters,
|
|
14941
|
+
DualColumn
|
|
14942
|
+
>;
|
|
14793
14943
|
|
|
14794
14944
|
export interface DualColumn$HideTooltipEventParameters {}
|
|
14795
14945
|
|
|
14796
|
-
export type DualColumn$HideTooltipEvent = Event<
|
|
14946
|
+
export type DualColumn$HideTooltipEvent = Event<
|
|
14947
|
+
DualColumn$HideTooltipEventParameters,
|
|
14948
|
+
DualColumn
|
|
14949
|
+
>;
|
|
14797
14950
|
|
|
14798
14951
|
export interface DualColumn$InitializedEventParameters {}
|
|
14799
14952
|
|
|
14800
|
-
export type DualColumn$InitializedEvent = Event<
|
|
14953
|
+
export type DualColumn$InitializedEvent = Event<
|
|
14954
|
+
DualColumn$InitializedEventParameters,
|
|
14955
|
+
DualColumn
|
|
14956
|
+
>;
|
|
14801
14957
|
|
|
14802
14958
|
export interface DualColumn$SelectDataEventParameters {}
|
|
14803
14959
|
|
|
14804
|
-
export type DualColumn$SelectDataEvent = Event<
|
|
14960
|
+
export type DualColumn$SelectDataEvent = Event<
|
|
14961
|
+
DualColumn$SelectDataEventParameters,
|
|
14962
|
+
DualColumn
|
|
14963
|
+
>;
|
|
14805
14964
|
|
|
14806
14965
|
export interface DualColumn$ShowTooltipEventParameters {}
|
|
14807
14966
|
|
|
14808
|
-
export type DualColumn$ShowTooltipEvent = Event<
|
|
14967
|
+
export type DualColumn$ShowTooltipEvent = Event<
|
|
14968
|
+
DualColumn$ShowTooltipEventParameters,
|
|
14969
|
+
DualColumn
|
|
14970
|
+
>;
|
|
14809
14971
|
}
|
|
14810
14972
|
|
|
14811
14973
|
declare module "sap/viz/ui5/DualCombination" {
|
|
@@ -15769,23 +15931,38 @@ declare module "sap/viz/ui5/DualCombination" {
|
|
|
15769
15931
|
|
|
15770
15932
|
export interface DualCombination$DeselectDataEventParameters {}
|
|
15771
15933
|
|
|
15772
|
-
export type DualCombination$DeselectDataEvent = Event<
|
|
15934
|
+
export type DualCombination$DeselectDataEvent = Event<
|
|
15935
|
+
DualCombination$DeselectDataEventParameters,
|
|
15936
|
+
DualCombination
|
|
15937
|
+
>;
|
|
15773
15938
|
|
|
15774
15939
|
export interface DualCombination$HideTooltipEventParameters {}
|
|
15775
15940
|
|
|
15776
|
-
export type DualCombination$HideTooltipEvent = Event<
|
|
15941
|
+
export type DualCombination$HideTooltipEvent = Event<
|
|
15942
|
+
DualCombination$HideTooltipEventParameters,
|
|
15943
|
+
DualCombination
|
|
15944
|
+
>;
|
|
15777
15945
|
|
|
15778
15946
|
export interface DualCombination$InitializedEventParameters {}
|
|
15779
15947
|
|
|
15780
|
-
export type DualCombination$InitializedEvent = Event<
|
|
15948
|
+
export type DualCombination$InitializedEvent = Event<
|
|
15949
|
+
DualCombination$InitializedEventParameters,
|
|
15950
|
+
DualCombination
|
|
15951
|
+
>;
|
|
15781
15952
|
|
|
15782
15953
|
export interface DualCombination$SelectDataEventParameters {}
|
|
15783
15954
|
|
|
15784
|
-
export type DualCombination$SelectDataEvent = Event<
|
|
15955
|
+
export type DualCombination$SelectDataEvent = Event<
|
|
15956
|
+
DualCombination$SelectDataEventParameters,
|
|
15957
|
+
DualCombination
|
|
15958
|
+
>;
|
|
15785
15959
|
|
|
15786
15960
|
export interface DualCombination$ShowTooltipEventParameters {}
|
|
15787
15961
|
|
|
15788
|
-
export type DualCombination$ShowTooltipEvent = Event<
|
|
15962
|
+
export type DualCombination$ShowTooltipEvent = Event<
|
|
15963
|
+
DualCombination$ShowTooltipEventParameters,
|
|
15964
|
+
DualCombination
|
|
15965
|
+
>;
|
|
15789
15966
|
}
|
|
15790
15967
|
|
|
15791
15968
|
declare module "sap/viz/ui5/DualLine" {
|
|
@@ -16756,23 +16933,38 @@ declare module "sap/viz/ui5/DualLine" {
|
|
|
16756
16933
|
|
|
16757
16934
|
export interface DualLine$DeselectDataEventParameters {}
|
|
16758
16935
|
|
|
16759
|
-
export type DualLine$DeselectDataEvent = Event<
|
|
16936
|
+
export type DualLine$DeselectDataEvent = Event<
|
|
16937
|
+
DualLine$DeselectDataEventParameters,
|
|
16938
|
+
DualLine
|
|
16939
|
+
>;
|
|
16760
16940
|
|
|
16761
16941
|
export interface DualLine$HideTooltipEventParameters {}
|
|
16762
16942
|
|
|
16763
|
-
export type DualLine$HideTooltipEvent = Event<
|
|
16943
|
+
export type DualLine$HideTooltipEvent = Event<
|
|
16944
|
+
DualLine$HideTooltipEventParameters,
|
|
16945
|
+
DualLine
|
|
16946
|
+
>;
|
|
16764
16947
|
|
|
16765
16948
|
export interface DualLine$InitializedEventParameters {}
|
|
16766
16949
|
|
|
16767
|
-
export type DualLine$InitializedEvent = Event<
|
|
16950
|
+
export type DualLine$InitializedEvent = Event<
|
|
16951
|
+
DualLine$InitializedEventParameters,
|
|
16952
|
+
DualLine
|
|
16953
|
+
>;
|
|
16768
16954
|
|
|
16769
16955
|
export interface DualLine$SelectDataEventParameters {}
|
|
16770
16956
|
|
|
16771
|
-
export type DualLine$SelectDataEvent = Event<
|
|
16957
|
+
export type DualLine$SelectDataEvent = Event<
|
|
16958
|
+
DualLine$SelectDataEventParameters,
|
|
16959
|
+
DualLine
|
|
16960
|
+
>;
|
|
16772
16961
|
|
|
16773
16962
|
export interface DualLine$ShowTooltipEventParameters {}
|
|
16774
16963
|
|
|
16775
|
-
export type DualLine$ShowTooltipEvent = Event<
|
|
16964
|
+
export type DualLine$ShowTooltipEvent = Event<
|
|
16965
|
+
DualLine$ShowTooltipEventParameters,
|
|
16966
|
+
DualLine
|
|
16967
|
+
>;
|
|
16776
16968
|
}
|
|
16777
16969
|
|
|
16778
16970
|
declare module "sap/viz/ui5/DualStackedColumn" {
|
|
@@ -17743,23 +17935,38 @@ declare module "sap/viz/ui5/DualStackedColumn" {
|
|
|
17743
17935
|
|
|
17744
17936
|
export interface DualStackedColumn$DeselectDataEventParameters {}
|
|
17745
17937
|
|
|
17746
|
-
export type DualStackedColumn$DeselectDataEvent = Event<
|
|
17938
|
+
export type DualStackedColumn$DeselectDataEvent = Event<
|
|
17939
|
+
DualStackedColumn$DeselectDataEventParameters,
|
|
17940
|
+
DualStackedColumn
|
|
17941
|
+
>;
|
|
17747
17942
|
|
|
17748
17943
|
export interface DualStackedColumn$HideTooltipEventParameters {}
|
|
17749
17944
|
|
|
17750
|
-
export type DualStackedColumn$HideTooltipEvent = Event<
|
|
17945
|
+
export type DualStackedColumn$HideTooltipEvent = Event<
|
|
17946
|
+
DualStackedColumn$HideTooltipEventParameters,
|
|
17947
|
+
DualStackedColumn
|
|
17948
|
+
>;
|
|
17751
17949
|
|
|
17752
17950
|
export interface DualStackedColumn$InitializedEventParameters {}
|
|
17753
17951
|
|
|
17754
|
-
export type DualStackedColumn$InitializedEvent = Event<
|
|
17952
|
+
export type DualStackedColumn$InitializedEvent = Event<
|
|
17953
|
+
DualStackedColumn$InitializedEventParameters,
|
|
17954
|
+
DualStackedColumn
|
|
17955
|
+
>;
|
|
17755
17956
|
|
|
17756
17957
|
export interface DualStackedColumn$SelectDataEventParameters {}
|
|
17757
17958
|
|
|
17758
|
-
export type DualStackedColumn$SelectDataEvent = Event<
|
|
17959
|
+
export type DualStackedColumn$SelectDataEvent = Event<
|
|
17960
|
+
DualStackedColumn$SelectDataEventParameters,
|
|
17961
|
+
DualStackedColumn
|
|
17962
|
+
>;
|
|
17759
17963
|
|
|
17760
17964
|
export interface DualStackedColumn$ShowTooltipEventParameters {}
|
|
17761
17965
|
|
|
17762
|
-
export type DualStackedColumn$ShowTooltipEvent = Event<
|
|
17966
|
+
export type DualStackedColumn$ShowTooltipEvent = Event<
|
|
17967
|
+
DualStackedColumn$ShowTooltipEventParameters,
|
|
17968
|
+
DualStackedColumn
|
|
17969
|
+
>;
|
|
17763
17970
|
}
|
|
17764
17971
|
|
|
17765
17972
|
declare module "sap/viz/ui5/DualStackedColumn100" {
|
|
@@ -18730,23 +18937,38 @@ declare module "sap/viz/ui5/DualStackedColumn100" {
|
|
|
18730
18937
|
|
|
18731
18938
|
export interface DualStackedColumn100$DeselectDataEventParameters {}
|
|
18732
18939
|
|
|
18733
|
-
export type DualStackedColumn100$DeselectDataEvent = Event<
|
|
18940
|
+
export type DualStackedColumn100$DeselectDataEvent = Event<
|
|
18941
|
+
DualStackedColumn100$DeselectDataEventParameters,
|
|
18942
|
+
DualStackedColumn100
|
|
18943
|
+
>;
|
|
18734
18944
|
|
|
18735
18945
|
export interface DualStackedColumn100$HideTooltipEventParameters {}
|
|
18736
18946
|
|
|
18737
|
-
export type DualStackedColumn100$HideTooltipEvent = Event<
|
|
18947
|
+
export type DualStackedColumn100$HideTooltipEvent = Event<
|
|
18948
|
+
DualStackedColumn100$HideTooltipEventParameters,
|
|
18949
|
+
DualStackedColumn100
|
|
18950
|
+
>;
|
|
18738
18951
|
|
|
18739
18952
|
export interface DualStackedColumn100$InitializedEventParameters {}
|
|
18740
18953
|
|
|
18741
|
-
export type DualStackedColumn100$InitializedEvent = Event<
|
|
18954
|
+
export type DualStackedColumn100$InitializedEvent = Event<
|
|
18955
|
+
DualStackedColumn100$InitializedEventParameters,
|
|
18956
|
+
DualStackedColumn100
|
|
18957
|
+
>;
|
|
18742
18958
|
|
|
18743
18959
|
export interface DualStackedColumn100$SelectDataEventParameters {}
|
|
18744
18960
|
|
|
18745
|
-
export type DualStackedColumn100$SelectDataEvent = Event<
|
|
18961
|
+
export type DualStackedColumn100$SelectDataEvent = Event<
|
|
18962
|
+
DualStackedColumn100$SelectDataEventParameters,
|
|
18963
|
+
DualStackedColumn100
|
|
18964
|
+
>;
|
|
18746
18965
|
|
|
18747
18966
|
export interface DualStackedColumn100$ShowTooltipEventParameters {}
|
|
18748
18967
|
|
|
18749
|
-
export type DualStackedColumn100$ShowTooltipEvent = Event<
|
|
18968
|
+
export type DualStackedColumn100$ShowTooltipEvent = Event<
|
|
18969
|
+
DualStackedColumn100$ShowTooltipEventParameters,
|
|
18970
|
+
DualStackedColumn100
|
|
18971
|
+
>;
|
|
18750
18972
|
}
|
|
18751
18973
|
|
|
18752
18974
|
declare module "sap/viz/ui5/format/ChartFormatter" {
|
|
@@ -19872,23 +20094,38 @@ declare module "sap/viz/ui5/Heatmap" {
|
|
|
19872
20094
|
|
|
19873
20095
|
export interface Heatmap$DeselectDataEventParameters {}
|
|
19874
20096
|
|
|
19875
|
-
export type Heatmap$DeselectDataEvent = Event<
|
|
20097
|
+
export type Heatmap$DeselectDataEvent = Event<
|
|
20098
|
+
Heatmap$DeselectDataEventParameters,
|
|
20099
|
+
Heatmap
|
|
20100
|
+
>;
|
|
19876
20101
|
|
|
19877
20102
|
export interface Heatmap$HideTooltipEventParameters {}
|
|
19878
20103
|
|
|
19879
|
-
export type Heatmap$HideTooltipEvent = Event<
|
|
20104
|
+
export type Heatmap$HideTooltipEvent = Event<
|
|
20105
|
+
Heatmap$HideTooltipEventParameters,
|
|
20106
|
+
Heatmap
|
|
20107
|
+
>;
|
|
19880
20108
|
|
|
19881
20109
|
export interface Heatmap$InitializedEventParameters {}
|
|
19882
20110
|
|
|
19883
|
-
export type Heatmap$InitializedEvent = Event<
|
|
20111
|
+
export type Heatmap$InitializedEvent = Event<
|
|
20112
|
+
Heatmap$InitializedEventParameters,
|
|
20113
|
+
Heatmap
|
|
20114
|
+
>;
|
|
19884
20115
|
|
|
19885
20116
|
export interface Heatmap$SelectDataEventParameters {}
|
|
19886
20117
|
|
|
19887
|
-
export type Heatmap$SelectDataEvent = Event<
|
|
20118
|
+
export type Heatmap$SelectDataEvent = Event<
|
|
20119
|
+
Heatmap$SelectDataEventParameters,
|
|
20120
|
+
Heatmap
|
|
20121
|
+
>;
|
|
19888
20122
|
|
|
19889
20123
|
export interface Heatmap$ShowTooltipEventParameters {}
|
|
19890
20124
|
|
|
19891
|
-
export type Heatmap$ShowTooltipEvent = Event<
|
|
20125
|
+
export type Heatmap$ShowTooltipEvent = Event<
|
|
20126
|
+
Heatmap$ShowTooltipEventParameters,
|
|
20127
|
+
Heatmap
|
|
20128
|
+
>;
|
|
19892
20129
|
}
|
|
19893
20130
|
|
|
19894
20131
|
declare module "sap/viz/ui5/HorizontalArea" {
|
|
@@ -20824,23 +21061,38 @@ declare module "sap/viz/ui5/HorizontalArea" {
|
|
|
20824
21061
|
|
|
20825
21062
|
export interface HorizontalArea$DeselectDataEventParameters {}
|
|
20826
21063
|
|
|
20827
|
-
export type HorizontalArea$DeselectDataEvent = Event<
|
|
21064
|
+
export type HorizontalArea$DeselectDataEvent = Event<
|
|
21065
|
+
HorizontalArea$DeselectDataEventParameters,
|
|
21066
|
+
HorizontalArea
|
|
21067
|
+
>;
|
|
20828
21068
|
|
|
20829
21069
|
export interface HorizontalArea$HideTooltipEventParameters {}
|
|
20830
21070
|
|
|
20831
|
-
export type HorizontalArea$HideTooltipEvent = Event<
|
|
21071
|
+
export type HorizontalArea$HideTooltipEvent = Event<
|
|
21072
|
+
HorizontalArea$HideTooltipEventParameters,
|
|
21073
|
+
HorizontalArea
|
|
21074
|
+
>;
|
|
20832
21075
|
|
|
20833
21076
|
export interface HorizontalArea$InitializedEventParameters {}
|
|
20834
21077
|
|
|
20835
|
-
export type HorizontalArea$InitializedEvent = Event<
|
|
21078
|
+
export type HorizontalArea$InitializedEvent = Event<
|
|
21079
|
+
HorizontalArea$InitializedEventParameters,
|
|
21080
|
+
HorizontalArea
|
|
21081
|
+
>;
|
|
20836
21082
|
|
|
20837
21083
|
export interface HorizontalArea$SelectDataEventParameters {}
|
|
20838
21084
|
|
|
20839
|
-
export type HorizontalArea$SelectDataEvent = Event<
|
|
21085
|
+
export type HorizontalArea$SelectDataEvent = Event<
|
|
21086
|
+
HorizontalArea$SelectDataEventParameters,
|
|
21087
|
+
HorizontalArea
|
|
21088
|
+
>;
|
|
20840
21089
|
|
|
20841
21090
|
export interface HorizontalArea$ShowTooltipEventParameters {}
|
|
20842
21091
|
|
|
20843
|
-
export type HorizontalArea$ShowTooltipEvent = Event<
|
|
21092
|
+
export type HorizontalArea$ShowTooltipEvent = Event<
|
|
21093
|
+
HorizontalArea$ShowTooltipEventParameters,
|
|
21094
|
+
HorizontalArea
|
|
21095
|
+
>;
|
|
20844
21096
|
}
|
|
20845
21097
|
|
|
20846
21098
|
declare module "sap/viz/ui5/HorizontalArea100" {
|
|
@@ -21776,23 +22028,38 @@ declare module "sap/viz/ui5/HorizontalArea100" {
|
|
|
21776
22028
|
|
|
21777
22029
|
export interface HorizontalArea100$DeselectDataEventParameters {}
|
|
21778
22030
|
|
|
21779
|
-
export type HorizontalArea100$DeselectDataEvent = Event<
|
|
22031
|
+
export type HorizontalArea100$DeselectDataEvent = Event<
|
|
22032
|
+
HorizontalArea100$DeselectDataEventParameters,
|
|
22033
|
+
HorizontalArea100
|
|
22034
|
+
>;
|
|
21780
22035
|
|
|
21781
22036
|
export interface HorizontalArea100$HideTooltipEventParameters {}
|
|
21782
22037
|
|
|
21783
|
-
export type HorizontalArea100$HideTooltipEvent = Event<
|
|
22038
|
+
export type HorizontalArea100$HideTooltipEvent = Event<
|
|
22039
|
+
HorizontalArea100$HideTooltipEventParameters,
|
|
22040
|
+
HorizontalArea100
|
|
22041
|
+
>;
|
|
21784
22042
|
|
|
21785
22043
|
export interface HorizontalArea100$InitializedEventParameters {}
|
|
21786
22044
|
|
|
21787
|
-
export type HorizontalArea100$InitializedEvent = Event<
|
|
22045
|
+
export type HorizontalArea100$InitializedEvent = Event<
|
|
22046
|
+
HorizontalArea100$InitializedEventParameters,
|
|
22047
|
+
HorizontalArea100
|
|
22048
|
+
>;
|
|
21788
22049
|
|
|
21789
22050
|
export interface HorizontalArea100$SelectDataEventParameters {}
|
|
21790
22051
|
|
|
21791
|
-
export type HorizontalArea100$SelectDataEvent = Event<
|
|
22052
|
+
export type HorizontalArea100$SelectDataEvent = Event<
|
|
22053
|
+
HorizontalArea100$SelectDataEventParameters,
|
|
22054
|
+
HorizontalArea100
|
|
22055
|
+
>;
|
|
21792
22056
|
|
|
21793
22057
|
export interface HorizontalArea100$ShowTooltipEventParameters {}
|
|
21794
22058
|
|
|
21795
|
-
export type HorizontalArea100$ShowTooltipEvent = Event<
|
|
22059
|
+
export type HorizontalArea100$ShowTooltipEvent = Event<
|
|
22060
|
+
HorizontalArea100$ShowTooltipEventParameters,
|
|
22061
|
+
HorizontalArea100
|
|
22062
|
+
>;
|
|
21796
22063
|
}
|
|
21797
22064
|
|
|
21798
22065
|
declare module "sap/viz/ui5/Line" {
|
|
@@ -22735,23 +23002,38 @@ declare module "sap/viz/ui5/Line" {
|
|
|
22735
23002
|
|
|
22736
23003
|
export interface Line$DeselectDataEventParameters {}
|
|
22737
23004
|
|
|
22738
|
-
export type Line$DeselectDataEvent = Event<
|
|
23005
|
+
export type Line$DeselectDataEvent = Event<
|
|
23006
|
+
Line$DeselectDataEventParameters,
|
|
23007
|
+
Line
|
|
23008
|
+
>;
|
|
22739
23009
|
|
|
22740
23010
|
export interface Line$HideTooltipEventParameters {}
|
|
22741
23011
|
|
|
22742
|
-
export type Line$HideTooltipEvent = Event<
|
|
23012
|
+
export type Line$HideTooltipEvent = Event<
|
|
23013
|
+
Line$HideTooltipEventParameters,
|
|
23014
|
+
Line
|
|
23015
|
+
>;
|
|
22743
23016
|
|
|
22744
23017
|
export interface Line$InitializedEventParameters {}
|
|
22745
23018
|
|
|
22746
|
-
export type Line$InitializedEvent = Event<
|
|
23019
|
+
export type Line$InitializedEvent = Event<
|
|
23020
|
+
Line$InitializedEventParameters,
|
|
23021
|
+
Line
|
|
23022
|
+
>;
|
|
22747
23023
|
|
|
22748
23024
|
export interface Line$SelectDataEventParameters {}
|
|
22749
23025
|
|
|
22750
|
-
export type Line$SelectDataEvent = Event<
|
|
23026
|
+
export type Line$SelectDataEvent = Event<
|
|
23027
|
+
Line$SelectDataEventParameters,
|
|
23028
|
+
Line
|
|
23029
|
+
>;
|
|
22751
23030
|
|
|
22752
23031
|
export interface Line$ShowTooltipEventParameters {}
|
|
22753
23032
|
|
|
22754
|
-
export type Line$ShowTooltipEvent = Event<
|
|
23033
|
+
export type Line$ShowTooltipEvent = Event<
|
|
23034
|
+
Line$ShowTooltipEventParameters,
|
|
23035
|
+
Line
|
|
23036
|
+
>;
|
|
22755
23037
|
}
|
|
22756
23038
|
|
|
22757
23039
|
declare module "sap/viz/ui5/Pie" {
|
|
@@ -23636,23 +23918,26 @@ declare module "sap/viz/ui5/Pie" {
|
|
|
23636
23918
|
|
|
23637
23919
|
export interface Pie$DeselectDataEventParameters {}
|
|
23638
23920
|
|
|
23639
|
-
export type Pie$DeselectDataEvent = Event<
|
|
23921
|
+
export type Pie$DeselectDataEvent = Event<
|
|
23922
|
+
Pie$DeselectDataEventParameters,
|
|
23923
|
+
Pie
|
|
23924
|
+
>;
|
|
23640
23925
|
|
|
23641
23926
|
export interface Pie$HideTooltipEventParameters {}
|
|
23642
23927
|
|
|
23643
|
-
export type Pie$HideTooltipEvent = Event<Pie$HideTooltipEventParameters>;
|
|
23928
|
+
export type Pie$HideTooltipEvent = Event<Pie$HideTooltipEventParameters, Pie>;
|
|
23644
23929
|
|
|
23645
23930
|
export interface Pie$InitializedEventParameters {}
|
|
23646
23931
|
|
|
23647
|
-
export type Pie$InitializedEvent = Event<Pie$InitializedEventParameters>;
|
|
23932
|
+
export type Pie$InitializedEvent = Event<Pie$InitializedEventParameters, Pie>;
|
|
23648
23933
|
|
|
23649
23934
|
export interface Pie$SelectDataEventParameters {}
|
|
23650
23935
|
|
|
23651
|
-
export type Pie$SelectDataEvent = Event<Pie$SelectDataEventParameters>;
|
|
23936
|
+
export type Pie$SelectDataEvent = Event<Pie$SelectDataEventParameters, Pie>;
|
|
23652
23937
|
|
|
23653
23938
|
export interface Pie$ShowTooltipEventParameters {}
|
|
23654
23939
|
|
|
23655
|
-
export type Pie$ShowTooltipEvent = Event<Pie$ShowTooltipEventParameters>;
|
|
23940
|
+
export type Pie$ShowTooltipEvent = Event<Pie$ShowTooltipEventParameters, Pie>;
|
|
23656
23941
|
}
|
|
23657
23942
|
|
|
23658
23943
|
declare module "sap/viz/ui5/Scatter" {
|
|
@@ -24625,23 +24910,38 @@ declare module "sap/viz/ui5/Scatter" {
|
|
|
24625
24910
|
|
|
24626
24911
|
export interface Scatter$DeselectDataEventParameters {}
|
|
24627
24912
|
|
|
24628
|
-
export type Scatter$DeselectDataEvent = Event<
|
|
24913
|
+
export type Scatter$DeselectDataEvent = Event<
|
|
24914
|
+
Scatter$DeselectDataEventParameters,
|
|
24915
|
+
Scatter
|
|
24916
|
+
>;
|
|
24629
24917
|
|
|
24630
24918
|
export interface Scatter$HideTooltipEventParameters {}
|
|
24631
24919
|
|
|
24632
|
-
export type Scatter$HideTooltipEvent = Event<
|
|
24920
|
+
export type Scatter$HideTooltipEvent = Event<
|
|
24921
|
+
Scatter$HideTooltipEventParameters,
|
|
24922
|
+
Scatter
|
|
24923
|
+
>;
|
|
24633
24924
|
|
|
24634
24925
|
export interface Scatter$InitializedEventParameters {}
|
|
24635
24926
|
|
|
24636
|
-
export type Scatter$InitializedEvent = Event<
|
|
24927
|
+
export type Scatter$InitializedEvent = Event<
|
|
24928
|
+
Scatter$InitializedEventParameters,
|
|
24929
|
+
Scatter
|
|
24930
|
+
>;
|
|
24637
24931
|
|
|
24638
24932
|
export interface Scatter$SelectDataEventParameters {}
|
|
24639
24933
|
|
|
24640
|
-
export type Scatter$SelectDataEvent = Event<
|
|
24934
|
+
export type Scatter$SelectDataEvent = Event<
|
|
24935
|
+
Scatter$SelectDataEventParameters,
|
|
24936
|
+
Scatter
|
|
24937
|
+
>;
|
|
24641
24938
|
|
|
24642
24939
|
export interface Scatter$ShowTooltipEventParameters {}
|
|
24643
24940
|
|
|
24644
|
-
export type Scatter$ShowTooltipEvent = Event<
|
|
24941
|
+
export type Scatter$ShowTooltipEvent = Event<
|
|
24942
|
+
Scatter$ShowTooltipEventParameters,
|
|
24943
|
+
Scatter
|
|
24944
|
+
>;
|
|
24645
24945
|
}
|
|
24646
24946
|
|
|
24647
24947
|
declare module "sap/viz/ui5/StackedColumn" {
|
|
@@ -25584,23 +25884,38 @@ declare module "sap/viz/ui5/StackedColumn" {
|
|
|
25584
25884
|
|
|
25585
25885
|
export interface StackedColumn$DeselectDataEventParameters {}
|
|
25586
25886
|
|
|
25587
|
-
export type StackedColumn$DeselectDataEvent = Event<
|
|
25887
|
+
export type StackedColumn$DeselectDataEvent = Event<
|
|
25888
|
+
StackedColumn$DeselectDataEventParameters,
|
|
25889
|
+
StackedColumn
|
|
25890
|
+
>;
|
|
25588
25891
|
|
|
25589
25892
|
export interface StackedColumn$HideTooltipEventParameters {}
|
|
25590
25893
|
|
|
25591
|
-
export type StackedColumn$HideTooltipEvent = Event<
|
|
25894
|
+
export type StackedColumn$HideTooltipEvent = Event<
|
|
25895
|
+
StackedColumn$HideTooltipEventParameters,
|
|
25896
|
+
StackedColumn
|
|
25897
|
+
>;
|
|
25592
25898
|
|
|
25593
25899
|
export interface StackedColumn$InitializedEventParameters {}
|
|
25594
25900
|
|
|
25595
|
-
export type StackedColumn$InitializedEvent = Event<
|
|
25901
|
+
export type StackedColumn$InitializedEvent = Event<
|
|
25902
|
+
StackedColumn$InitializedEventParameters,
|
|
25903
|
+
StackedColumn
|
|
25904
|
+
>;
|
|
25596
25905
|
|
|
25597
25906
|
export interface StackedColumn$SelectDataEventParameters {}
|
|
25598
25907
|
|
|
25599
|
-
export type StackedColumn$SelectDataEvent = Event<
|
|
25908
|
+
export type StackedColumn$SelectDataEvent = Event<
|
|
25909
|
+
StackedColumn$SelectDataEventParameters,
|
|
25910
|
+
StackedColumn
|
|
25911
|
+
>;
|
|
25600
25912
|
|
|
25601
25913
|
export interface StackedColumn$ShowTooltipEventParameters {}
|
|
25602
25914
|
|
|
25603
|
-
export type StackedColumn$ShowTooltipEvent = Event<
|
|
25915
|
+
export type StackedColumn$ShowTooltipEvent = Event<
|
|
25916
|
+
StackedColumn$ShowTooltipEventParameters,
|
|
25917
|
+
StackedColumn
|
|
25918
|
+
>;
|
|
25604
25919
|
}
|
|
25605
25920
|
|
|
25606
25921
|
declare module "sap/viz/ui5/StackedColumn100" {
|
|
@@ -26543,23 +26858,38 @@ declare module "sap/viz/ui5/StackedColumn100" {
|
|
|
26543
26858
|
|
|
26544
26859
|
export interface StackedColumn100$DeselectDataEventParameters {}
|
|
26545
26860
|
|
|
26546
|
-
export type StackedColumn100$DeselectDataEvent = Event<
|
|
26861
|
+
export type StackedColumn100$DeselectDataEvent = Event<
|
|
26862
|
+
StackedColumn100$DeselectDataEventParameters,
|
|
26863
|
+
StackedColumn100
|
|
26864
|
+
>;
|
|
26547
26865
|
|
|
26548
26866
|
export interface StackedColumn100$HideTooltipEventParameters {}
|
|
26549
26867
|
|
|
26550
|
-
export type StackedColumn100$HideTooltipEvent = Event<
|
|
26868
|
+
export type StackedColumn100$HideTooltipEvent = Event<
|
|
26869
|
+
StackedColumn100$HideTooltipEventParameters,
|
|
26870
|
+
StackedColumn100
|
|
26871
|
+
>;
|
|
26551
26872
|
|
|
26552
26873
|
export interface StackedColumn100$InitializedEventParameters {}
|
|
26553
26874
|
|
|
26554
|
-
export type StackedColumn100$InitializedEvent = Event<
|
|
26875
|
+
export type StackedColumn100$InitializedEvent = Event<
|
|
26876
|
+
StackedColumn100$InitializedEventParameters,
|
|
26877
|
+
StackedColumn100
|
|
26878
|
+
>;
|
|
26555
26879
|
|
|
26556
26880
|
export interface StackedColumn100$SelectDataEventParameters {}
|
|
26557
26881
|
|
|
26558
|
-
export type StackedColumn100$SelectDataEvent = Event<
|
|
26882
|
+
export type StackedColumn100$SelectDataEvent = Event<
|
|
26883
|
+
StackedColumn100$SelectDataEventParameters,
|
|
26884
|
+
StackedColumn100
|
|
26885
|
+
>;
|
|
26559
26886
|
|
|
26560
26887
|
export interface StackedColumn100$ShowTooltipEventParameters {}
|
|
26561
26888
|
|
|
26562
|
-
export type StackedColumn100$ShowTooltipEvent = Event<
|
|
26889
|
+
export type StackedColumn100$ShowTooltipEvent = Event<
|
|
26890
|
+
StackedColumn100$ShowTooltipEventParameters,
|
|
26891
|
+
StackedColumn100
|
|
26892
|
+
>;
|
|
26563
26893
|
}
|
|
26564
26894
|
|
|
26565
26895
|
declare module "sap/viz/ui5/TimeBubble" {
|
|
@@ -27530,23 +27860,38 @@ declare module "sap/viz/ui5/TimeBubble" {
|
|
|
27530
27860
|
|
|
27531
27861
|
export interface TimeBubble$DeselectDataEventParameters {}
|
|
27532
27862
|
|
|
27533
|
-
export type TimeBubble$DeselectDataEvent = Event<
|
|
27863
|
+
export type TimeBubble$DeselectDataEvent = Event<
|
|
27864
|
+
TimeBubble$DeselectDataEventParameters,
|
|
27865
|
+
TimeBubble
|
|
27866
|
+
>;
|
|
27534
27867
|
|
|
27535
27868
|
export interface TimeBubble$HideTooltipEventParameters {}
|
|
27536
27869
|
|
|
27537
|
-
export type TimeBubble$HideTooltipEvent = Event<
|
|
27870
|
+
export type TimeBubble$HideTooltipEvent = Event<
|
|
27871
|
+
TimeBubble$HideTooltipEventParameters,
|
|
27872
|
+
TimeBubble
|
|
27873
|
+
>;
|
|
27538
27874
|
|
|
27539
27875
|
export interface TimeBubble$InitializedEventParameters {}
|
|
27540
27876
|
|
|
27541
|
-
export type TimeBubble$InitializedEvent = Event<
|
|
27877
|
+
export type TimeBubble$InitializedEvent = Event<
|
|
27878
|
+
TimeBubble$InitializedEventParameters,
|
|
27879
|
+
TimeBubble
|
|
27880
|
+
>;
|
|
27542
27881
|
|
|
27543
27882
|
export interface TimeBubble$SelectDataEventParameters {}
|
|
27544
27883
|
|
|
27545
|
-
export type TimeBubble$SelectDataEvent = Event<
|
|
27884
|
+
export type TimeBubble$SelectDataEvent = Event<
|
|
27885
|
+
TimeBubble$SelectDataEventParameters,
|
|
27886
|
+
TimeBubble
|
|
27887
|
+
>;
|
|
27546
27888
|
|
|
27547
27889
|
export interface TimeBubble$ShowTooltipEventParameters {}
|
|
27548
27890
|
|
|
27549
|
-
export type TimeBubble$ShowTooltipEvent = Event<
|
|
27891
|
+
export type TimeBubble$ShowTooltipEvent = Event<
|
|
27892
|
+
TimeBubble$ShowTooltipEventParameters,
|
|
27893
|
+
TimeBubble
|
|
27894
|
+
>;
|
|
27550
27895
|
}
|
|
27551
27896
|
|
|
27552
27897
|
declare module "sap/viz/ui5/Treemap" {
|
|
@@ -28394,23 +28739,38 @@ declare module "sap/viz/ui5/Treemap" {
|
|
|
28394
28739
|
|
|
28395
28740
|
export interface Treemap$DeselectDataEventParameters {}
|
|
28396
28741
|
|
|
28397
|
-
export type Treemap$DeselectDataEvent = Event<
|
|
28742
|
+
export type Treemap$DeselectDataEvent = Event<
|
|
28743
|
+
Treemap$DeselectDataEventParameters,
|
|
28744
|
+
Treemap
|
|
28745
|
+
>;
|
|
28398
28746
|
|
|
28399
28747
|
export interface Treemap$HideTooltipEventParameters {}
|
|
28400
28748
|
|
|
28401
|
-
export type Treemap$HideTooltipEvent = Event<
|
|
28749
|
+
export type Treemap$HideTooltipEvent = Event<
|
|
28750
|
+
Treemap$HideTooltipEventParameters,
|
|
28751
|
+
Treemap
|
|
28752
|
+
>;
|
|
28402
28753
|
|
|
28403
28754
|
export interface Treemap$InitializedEventParameters {}
|
|
28404
28755
|
|
|
28405
|
-
export type Treemap$InitializedEvent = Event<
|
|
28756
|
+
export type Treemap$InitializedEvent = Event<
|
|
28757
|
+
Treemap$InitializedEventParameters,
|
|
28758
|
+
Treemap
|
|
28759
|
+
>;
|
|
28406
28760
|
|
|
28407
28761
|
export interface Treemap$SelectDataEventParameters {}
|
|
28408
28762
|
|
|
28409
|
-
export type Treemap$SelectDataEvent = Event<
|
|
28763
|
+
export type Treemap$SelectDataEvent = Event<
|
|
28764
|
+
Treemap$SelectDataEventParameters,
|
|
28765
|
+
Treemap
|
|
28766
|
+
>;
|
|
28410
28767
|
|
|
28411
28768
|
export interface Treemap$ShowTooltipEventParameters {}
|
|
28412
28769
|
|
|
28413
|
-
export type Treemap$ShowTooltipEvent = Event<
|
|
28770
|
+
export type Treemap$ShowTooltipEvent = Event<
|
|
28771
|
+
Treemap$ShowTooltipEventParameters,
|
|
28772
|
+
Treemap
|
|
28773
|
+
>;
|
|
28414
28774
|
}
|
|
28415
28775
|
|
|
28416
28776
|
declare module "sap/viz/ui5/types/Area" {
|
|
@@ -51452,7 +51812,10 @@ declare module "sap/viz/ui5/VizContainer" {
|
|
|
51452
51812
|
|
|
51453
51813
|
export interface VizContainer$DeselectDataEventParameters {}
|
|
51454
51814
|
|
|
51455
|
-
export type VizContainer$DeselectDataEvent = Event<
|
|
51815
|
+
export type VizContainer$DeselectDataEvent = Event<
|
|
51816
|
+
VizContainer$DeselectDataEventParameters,
|
|
51817
|
+
VizContainer
|
|
51818
|
+
>;
|
|
51456
51819
|
|
|
51457
51820
|
export interface VizContainer$FeedsChangedEventParameters {
|
|
51458
51821
|
/**
|
|
@@ -51461,31 +51824,52 @@ declare module "sap/viz/ui5/VizContainer" {
|
|
|
51461
51824
|
feeds?: FeedItem[];
|
|
51462
51825
|
}
|
|
51463
51826
|
|
|
51464
|
-
export type VizContainer$FeedsChangedEvent = Event<
|
|
51827
|
+
export type VizContainer$FeedsChangedEvent = Event<
|
|
51828
|
+
VizContainer$FeedsChangedEventParameters,
|
|
51829
|
+
VizContainer
|
|
51830
|
+
>;
|
|
51465
51831
|
|
|
51466
51832
|
export interface VizContainer$HideTooltipEventParameters {}
|
|
51467
51833
|
|
|
51468
|
-
export type VizContainer$HideTooltipEvent = Event<
|
|
51834
|
+
export type VizContainer$HideTooltipEvent = Event<
|
|
51835
|
+
VizContainer$HideTooltipEventParameters,
|
|
51836
|
+
VizContainer
|
|
51837
|
+
>;
|
|
51469
51838
|
|
|
51470
51839
|
export interface VizContainer$InitializedEventParameters {}
|
|
51471
51840
|
|
|
51472
|
-
export type VizContainer$InitializedEvent = Event<
|
|
51841
|
+
export type VizContainer$InitializedEvent = Event<
|
|
51842
|
+
VizContainer$InitializedEventParameters,
|
|
51843
|
+
VizContainer
|
|
51844
|
+
>;
|
|
51473
51845
|
|
|
51474
51846
|
export interface VizContainer$SelectDataEventParameters {}
|
|
51475
51847
|
|
|
51476
|
-
export type VizContainer$SelectDataEvent = Event<
|
|
51848
|
+
export type VizContainer$SelectDataEvent = Event<
|
|
51849
|
+
VizContainer$SelectDataEventParameters,
|
|
51850
|
+
VizContainer
|
|
51851
|
+
>;
|
|
51477
51852
|
|
|
51478
51853
|
export interface VizContainer$ShowTooltipEventParameters {}
|
|
51479
51854
|
|
|
51480
|
-
export type VizContainer$ShowTooltipEvent = Event<
|
|
51855
|
+
export type VizContainer$ShowTooltipEvent = Event<
|
|
51856
|
+
VizContainer$ShowTooltipEventParameters,
|
|
51857
|
+
VizContainer
|
|
51858
|
+
>;
|
|
51481
51859
|
|
|
51482
51860
|
export interface VizContainer$VizDefinitionChangedEventParameters {}
|
|
51483
51861
|
|
|
51484
|
-
export type VizContainer$VizDefinitionChangedEvent = Event<
|
|
51862
|
+
export type VizContainer$VizDefinitionChangedEvent = Event<
|
|
51863
|
+
VizContainer$VizDefinitionChangedEventParameters,
|
|
51864
|
+
VizContainer
|
|
51865
|
+
>;
|
|
51485
51866
|
|
|
51486
51867
|
export interface VizContainer$VizTypeChangedEventParameters {}
|
|
51487
51868
|
|
|
51488
|
-
export type VizContainer$VizTypeChangedEvent = Event<
|
|
51869
|
+
export type VizContainer$VizTypeChangedEvent = Event<
|
|
51870
|
+
VizContainer$VizTypeChangedEventParameters,
|
|
51871
|
+
VizContainer
|
|
51872
|
+
>;
|
|
51489
51873
|
}
|
|
51490
51874
|
|
|
51491
51875
|
declare namespace sap {
|