@sapui5/ts-types 1.120.42 → 1.120.44
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.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +115 -1
- package/types/sap.m.d.ts +1 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +3 -2
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +20 -3
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +553 -2
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.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 +1 -1
package/types/sap.ui.vbm.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -6,6 +6,9 @@ declare namespace sap {
|
|
|
6
6
|
* SAP UI library: sap.ui.vbm
|
|
7
7
|
*/
|
|
8
8
|
namespace vbm {
|
|
9
|
+
/**
|
|
10
|
+
* Describes the settings that can be provided to the Adapter constructor.
|
|
11
|
+
*/
|
|
9
12
|
interface $AdapterSettings extends sap.ui.core.$ElementSettings {
|
|
10
13
|
/**
|
|
11
14
|
* The GeoMap control associated with the Adapter. The adapter would invoke methods and subscribe to events
|
|
@@ -20,6 +23,9 @@ declare namespace sap {
|
|
|
20
23
|
submit?: (oEvent: Adapter$SubmitEvent) => void;
|
|
21
24
|
}
|
|
22
25
|
|
|
26
|
+
/**
|
|
27
|
+
* Describes the settings that can be provided to the Adapter3D constructor.
|
|
28
|
+
*/
|
|
23
29
|
interface $Adapter3DSettings extends sap.ui.core.$ElementSettings {
|
|
24
30
|
/**
|
|
25
31
|
* The {@link sap.ui.vbm.Viewport Viewport} control associated with the Adapter3D. The Adapter3D would invoke
|
|
@@ -33,6 +39,9 @@ declare namespace sap {
|
|
|
33
39
|
submit?: (oEvent: Adapter3D$SubmitEvent) => void;
|
|
34
40
|
}
|
|
35
41
|
|
|
42
|
+
/**
|
|
43
|
+
* Describes the settings that can be provided to the AnalyticMap constructor.
|
|
44
|
+
*/
|
|
36
45
|
interface $AnalyticMapSettings extends sap.ui.vbm.$GeoMapSettings {
|
|
37
46
|
/**
|
|
38
47
|
* Regions that are different from the defaults. It is possible to specify the tooltip and color for regions.
|
|
@@ -67,6 +76,9 @@ declare namespace sap {
|
|
|
67
76
|
regionDeselect?: (oEvent: sap.ui.base.Event) => void;
|
|
68
77
|
}
|
|
69
78
|
|
|
79
|
+
/**
|
|
80
|
+
* Describes the settings that can be provided to the Area constructor.
|
|
81
|
+
*/
|
|
70
82
|
interface $AreaSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
71
83
|
/**
|
|
72
84
|
* The position array for the Area. For single part areas the format is "lon0;lat0;0.0;...;lonN,latN,0.0".
|
|
@@ -104,6 +116,9 @@ declare namespace sap {
|
|
|
104
116
|
edgeContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
105
117
|
}
|
|
106
118
|
|
|
119
|
+
/**
|
|
120
|
+
* Describes the settings that can be provided to the Areas constructor.
|
|
121
|
+
*/
|
|
107
122
|
interface $AreasSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
108
123
|
/**
|
|
109
124
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -134,6 +149,9 @@ declare namespace sap {
|
|
|
134
149
|
edgeContextMenu?: (oEvent: Areas$EdgeContextMenuEvent) => void;
|
|
135
150
|
}
|
|
136
151
|
|
|
152
|
+
/**
|
|
153
|
+
* Describes the settings that can be provided to the Box constructor.
|
|
154
|
+
*/
|
|
137
155
|
interface $BoxSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
138
156
|
/**
|
|
139
157
|
* The position of the Box. The format is "lon;lat;0".
|
|
@@ -156,6 +174,9 @@ declare namespace sap {
|
|
|
156
174
|
colorBorder?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
157
175
|
}
|
|
158
176
|
|
|
177
|
+
/**
|
|
178
|
+
* Describes the settings that can be provided to the Boxes constructor.
|
|
179
|
+
*/
|
|
159
180
|
interface $BoxesSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
160
181
|
/**
|
|
161
182
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -185,6 +206,9 @@ declare namespace sap {
|
|
|
185
206
|
| `{${string}}`;
|
|
186
207
|
}
|
|
187
208
|
|
|
209
|
+
/**
|
|
210
|
+
* Describes the settings that can be provided to the Circle constructor.
|
|
211
|
+
*/
|
|
188
212
|
interface $CircleSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
189
213
|
/**
|
|
190
214
|
* The position of the circle.
|
|
@@ -212,6 +236,9 @@ declare namespace sap {
|
|
|
212
236
|
slices?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
213
237
|
}
|
|
214
238
|
|
|
239
|
+
/**
|
|
240
|
+
* Describes the settings that can be provided to the Circles constructor.
|
|
241
|
+
*/
|
|
215
242
|
interface $CirclesSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
216
243
|
/**
|
|
217
244
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -241,6 +268,9 @@ declare namespace sap {
|
|
|
241
268
|
| `{${string}}`;
|
|
242
269
|
}
|
|
243
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Describes the settings that can be provided to the Cluster constructor.
|
|
273
|
+
*/
|
|
244
274
|
interface $ClusterSettings extends sap.ui.core.$ControlSettings {
|
|
245
275
|
/**
|
|
246
276
|
* Set the color of the control. If a type is set then the semantic color of the type is taken instead.
|
|
@@ -270,6 +300,9 @@ declare namespace sap {
|
|
|
270
300
|
| `{${string}}`;
|
|
271
301
|
}
|
|
272
302
|
|
|
303
|
+
/**
|
|
304
|
+
* Describes the settings that can be provided to the ClusterBase constructor.
|
|
305
|
+
*/
|
|
273
306
|
interface $ClusterBaseSettings extends sap.ui.core.$ElementSettings {
|
|
274
307
|
/**
|
|
275
308
|
* Flag controlling the visibility of the area convered by a cluster object.
|
|
@@ -337,9 +370,15 @@ declare namespace sap {
|
|
|
337
370
|
contextMenu?: (oEvent: ClusterBase$ContextMenuEvent) => void;
|
|
338
371
|
}
|
|
339
372
|
|
|
373
|
+
/**
|
|
374
|
+
* Describes the settings that can be provided to the ClusterContainer constructor.
|
|
375
|
+
*/
|
|
340
376
|
interface $ClusterContainerSettings
|
|
341
377
|
extends sap.ui.vbm.$ContainerSettings {}
|
|
342
378
|
|
|
379
|
+
/**
|
|
380
|
+
* Describes the settings that can be provided to the ClusterDistance constructor.
|
|
381
|
+
*/
|
|
343
382
|
interface $ClusterDistanceSettings
|
|
344
383
|
extends sap.ui.vbm.$ClusterBaseSettings {
|
|
345
384
|
/**
|
|
@@ -353,6 +392,9 @@ declare namespace sap {
|
|
|
353
392
|
| `{${string}}`;
|
|
354
393
|
}
|
|
355
394
|
|
|
395
|
+
/**
|
|
396
|
+
* Describes the settings that can be provided to the ClusterGrid constructor.
|
|
397
|
+
*/
|
|
356
398
|
interface $ClusterGridSettings extends sap.ui.vbm.$ClusterBaseSettings {
|
|
357
399
|
/**
|
|
358
400
|
* Size of grid cells in pixels. Format is "distanceX;distanceY"
|
|
@@ -398,6 +440,9 @@ declare namespace sap {
|
|
|
398
440
|
| `{${string}}`;
|
|
399
441
|
}
|
|
400
442
|
|
|
443
|
+
/**
|
|
444
|
+
* Describes the settings that can be provided to the ClusterTree constructor.
|
|
445
|
+
*/
|
|
401
446
|
interface $ClusterTreeSettings extends sap.ui.vbm.$ClusterBaseSettings {
|
|
402
447
|
/**
|
|
403
448
|
* Indicates whether the split of a cluster object into sub clusterers or visual objects should be animated
|
|
@@ -408,6 +453,9 @@ declare namespace sap {
|
|
|
408
453
|
| `{${string}}`;
|
|
409
454
|
}
|
|
410
455
|
|
|
456
|
+
/**
|
|
457
|
+
* Describes the settings that can be provided to the Container constructor.
|
|
458
|
+
*/
|
|
411
459
|
interface $ContainerSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
412
460
|
/**
|
|
413
461
|
* The position for the Container. The format is "lon;lat;0".
|
|
@@ -427,6 +475,9 @@ declare namespace sap {
|
|
|
427
475
|
item?: sap.ui.core.Control;
|
|
428
476
|
}
|
|
429
477
|
|
|
478
|
+
/**
|
|
479
|
+
* Describes the settings that can be provided to the ContainerBase constructor.
|
|
480
|
+
*/
|
|
430
481
|
interface $ContainerBaseSettings extends sap.ui.core.$ControlSettings {
|
|
431
482
|
/**
|
|
432
483
|
* Show fullscreen toggle button in toolbar
|
|
@@ -494,6 +545,9 @@ declare namespace sap {
|
|
|
494
545
|
settingsPressed?: (oEvent: sap.ui.base.Event) => void;
|
|
495
546
|
}
|
|
496
547
|
|
|
548
|
+
/**
|
|
549
|
+
* Describes the settings that can be provided to the ContainerContent constructor.
|
|
550
|
+
*/
|
|
497
551
|
interface $ContainerContentSettings extends sap.ui.core.$ControlSettings {
|
|
498
552
|
/**
|
|
499
553
|
* Icon to show up in the toolbar
|
|
@@ -508,6 +562,9 @@ declare namespace sap {
|
|
|
508
562
|
content?: sap.ui.core.Control;
|
|
509
563
|
}
|
|
510
564
|
|
|
565
|
+
/**
|
|
566
|
+
* Describes the settings that can be provided to the Containers constructor.
|
|
567
|
+
*/
|
|
511
568
|
interface $ContainersSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
512
569
|
/**
|
|
513
570
|
* Container object aggregation
|
|
@@ -519,6 +576,9 @@ declare namespace sap {
|
|
|
519
576
|
| `{${string}}`;
|
|
520
577
|
}
|
|
521
578
|
|
|
579
|
+
/**
|
|
580
|
+
* Describes the settings that can be provided to the DragSource constructor.
|
|
581
|
+
*/
|
|
522
582
|
interface $DragSourceSettings extends sap.ui.core.$ElementSettings {
|
|
523
583
|
/**
|
|
524
584
|
* Drag type
|
|
@@ -526,6 +586,9 @@ declare namespace sap {
|
|
|
526
586
|
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
527
587
|
}
|
|
528
588
|
|
|
589
|
+
/**
|
|
590
|
+
* Describes the settings that can be provided to the DropTarget constructor.
|
|
591
|
+
*/
|
|
529
592
|
interface $DropTargetSettings extends sap.ui.core.$ElementSettings {
|
|
530
593
|
/**
|
|
531
594
|
* Drop type
|
|
@@ -533,6 +596,9 @@ declare namespace sap {
|
|
|
533
596
|
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
534
597
|
}
|
|
535
598
|
|
|
599
|
+
/**
|
|
600
|
+
* Describes the settings that can be provided to the Feature constructor.
|
|
601
|
+
*/
|
|
536
602
|
interface $FeatureSettings extends sap.ui.core.$ElementSettings {
|
|
537
603
|
/**
|
|
538
604
|
* The color, this should be provided in the rgba(r,g,b,a) format.
|
|
@@ -558,6 +624,9 @@ declare namespace sap {
|
|
|
558
624
|
contextMenu?: (oEvent: Feature$ContextMenuEvent) => void;
|
|
559
625
|
}
|
|
560
626
|
|
|
627
|
+
/**
|
|
628
|
+
* Describes the settings that can be provided to the FeatureCollection constructor.
|
|
629
|
+
*/
|
|
561
630
|
interface $FeatureCollectionSettings
|
|
562
631
|
extends sap.ui.vbm.$GeoJsonLayerSettings {
|
|
563
632
|
/**
|
|
@@ -582,6 +651,9 @@ declare namespace sap {
|
|
|
582
651
|
contextMenu?: (oEvent: FeatureCollection$ContextMenuEvent) => void;
|
|
583
652
|
}
|
|
584
653
|
|
|
654
|
+
/**
|
|
655
|
+
* Describes the settings that can be provided to the GeoCircle constructor.
|
|
656
|
+
*/
|
|
585
657
|
interface $GeoCircleSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
586
658
|
/**
|
|
587
659
|
* The position of the geocircle. The format is "lon;lat;0".
|
|
@@ -609,6 +681,9 @@ declare namespace sap {
|
|
|
609
681
|
slices?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
610
682
|
}
|
|
611
683
|
|
|
684
|
+
/**
|
|
685
|
+
* Describes the settings that can be provided to the GeoCircles constructor.
|
|
686
|
+
*/
|
|
612
687
|
interface $GeoCirclesSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
613
688
|
/**
|
|
614
689
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -638,6 +713,9 @@ declare namespace sap {
|
|
|
638
713
|
| `{${string}}`;
|
|
639
714
|
}
|
|
640
715
|
|
|
716
|
+
/**
|
|
717
|
+
* Describes the settings that can be provided to the GeoJsonLayer constructor.
|
|
718
|
+
*/
|
|
641
719
|
interface $GeoJsonLayerSettings extends sap.ui.core.$ElementSettings {
|
|
642
720
|
/**
|
|
643
721
|
* Source URL for GeoJSON
|
|
@@ -699,6 +777,9 @@ declare namespace sap {
|
|
|
699
777
|
contextMenu?: (oEvent: GeoJsonLayer$ContextMenuEvent) => void;
|
|
700
778
|
}
|
|
701
779
|
|
|
780
|
+
/**
|
|
781
|
+
* Describes the settings that can be provided to the GeoMap constructor.
|
|
782
|
+
*/
|
|
702
783
|
interface $GeoMapSettings extends sap.ui.vbm.$VBISettings {
|
|
703
784
|
/**
|
|
704
785
|
* This is the map configuration for the geo map. The map configuration defines the used maps, the layering
|
|
@@ -909,6 +990,9 @@ declare namespace sap {
|
|
|
909
990
|
keyUp?: (oEvent: GeoMap$KeyUpEvent) => void;
|
|
910
991
|
}
|
|
911
992
|
|
|
993
|
+
/**
|
|
994
|
+
* Describes the settings that can be provided to the Heatmap constructor.
|
|
995
|
+
*/
|
|
912
996
|
interface $HeatmapSettings extends sap.ui.vbm.$VoAbstractSettings {
|
|
913
997
|
/**
|
|
914
998
|
* Gradient Definition. Can be either provided as Ressource - then it is type string.
|
|
@@ -971,6 +1055,9 @@ declare namespace sap {
|
|
|
971
1055
|
| `{${string}}`;
|
|
972
1056
|
}
|
|
973
1057
|
|
|
1058
|
+
/**
|
|
1059
|
+
* Describes the settings that can be provided to the HeatPoint constructor.
|
|
1060
|
+
*/
|
|
974
1061
|
interface $HeatPointSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
975
1062
|
/**
|
|
976
1063
|
* The position of a sample element of the heatmap. Should be bound. The format is "lon;lat;0"
|
|
@@ -988,6 +1075,9 @@ declare namespace sap {
|
|
|
988
1075
|
radius?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
989
1076
|
}
|
|
990
1077
|
|
|
1078
|
+
/**
|
|
1079
|
+
* Describes the settings that can be provided to the Legend constructor.
|
|
1080
|
+
*/
|
|
991
1081
|
interface $LegendSettings extends sap.ui.core.$ElementSettings {
|
|
992
1082
|
/**
|
|
993
1083
|
* The caption of the legend.
|
|
@@ -1009,6 +1099,9 @@ declare namespace sap {
|
|
|
1009
1099
|
click?: (oEvent: Legend$ClickEvent) => void;
|
|
1010
1100
|
}
|
|
1011
1101
|
|
|
1102
|
+
/**
|
|
1103
|
+
* Describes the settings that can be provided to the LegendItem constructor.
|
|
1104
|
+
*/
|
|
1012
1105
|
interface $LegendItemSettings extends sap.ui.core.$ElementSettings {
|
|
1013
1106
|
/**
|
|
1014
1107
|
* The color of the legend marker.
|
|
@@ -1039,6 +1132,12 @@ declare namespace sap {
|
|
|
1039
1132
|
click?: (oEvent: LegendItem$ClickEvent) => void;
|
|
1040
1133
|
}
|
|
1041
1134
|
|
|
1135
|
+
/**
|
|
1136
|
+
* Describes the settings that can be provided to the ListPanel constructor.
|
|
1137
|
+
*
|
|
1138
|
+
* @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
|
|
1139
|
+
* versions.
|
|
1140
|
+
*/
|
|
1042
1141
|
interface $ListPanelSettings extends sap.ui.core.$ControlSettings {
|
|
1043
1142
|
/**
|
|
1044
1143
|
* Header text
|
|
@@ -1107,6 +1206,12 @@ declare namespace sap {
|
|
|
1107
1206
|
itemPress?: (oEvent: ListPanel$ItemPressEvent) => void;
|
|
1108
1207
|
}
|
|
1109
1208
|
|
|
1209
|
+
/**
|
|
1210
|
+
* Describes the settings that can be provided to the ListPanelStack constructor.
|
|
1211
|
+
*
|
|
1212
|
+
* @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
|
|
1213
|
+
* versions.
|
|
1214
|
+
*/
|
|
1110
1215
|
interface $ListPanelStackSettings extends sap.ui.core.$ControlSettings {
|
|
1111
1216
|
/**
|
|
1112
1217
|
* Control width
|
|
@@ -1147,6 +1252,9 @@ declare namespace sap {
|
|
|
1147
1252
|
| `{${string}}`;
|
|
1148
1253
|
}
|
|
1149
1254
|
|
|
1255
|
+
/**
|
|
1256
|
+
* Describes the settings that can be provided to the MapContainer constructor.
|
|
1257
|
+
*/
|
|
1150
1258
|
interface $MapContainerSettings
|
|
1151
1259
|
extends sap.ui.vbm.$ContainerBaseSettings {
|
|
1152
1260
|
/**
|
|
@@ -1195,6 +1303,9 @@ declare namespace sap {
|
|
|
1195
1303
|
listPanelStack?: /* was: sap.ui.vk.ListPanelStack */ any;
|
|
1196
1304
|
}
|
|
1197
1305
|
|
|
1306
|
+
/**
|
|
1307
|
+
* Describes the settings that can be provided to the Pie constructor.
|
|
1308
|
+
*/
|
|
1198
1309
|
interface $PieSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
1199
1310
|
/**
|
|
1200
1311
|
* The position of the Pie.
|
|
@@ -1217,6 +1328,9 @@ declare namespace sap {
|
|
|
1217
1328
|
| `{${string}}`;
|
|
1218
1329
|
}
|
|
1219
1330
|
|
|
1331
|
+
/**
|
|
1332
|
+
* Describes the settings that can be provided to the PieItem constructor.
|
|
1333
|
+
*/
|
|
1220
1334
|
interface $PieItemSettings extends sap.ui.core.$ElementSettings {
|
|
1221
1335
|
/**
|
|
1222
1336
|
* The name of the Pie item.
|
|
@@ -1240,6 +1354,9 @@ declare namespace sap {
|
|
|
1240
1354
|
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1241
1355
|
}
|
|
1242
1356
|
|
|
1357
|
+
/**
|
|
1358
|
+
* Describes the settings that can be provided to the Pies constructor.
|
|
1359
|
+
*/
|
|
1243
1360
|
interface $PiesSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
1244
1361
|
/**
|
|
1245
1362
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -1269,6 +1386,9 @@ declare namespace sap {
|
|
|
1269
1386
|
| `{${string}}`;
|
|
1270
1387
|
}
|
|
1271
1388
|
|
|
1389
|
+
/**
|
|
1390
|
+
* Describes the settings that can be provided to the Region constructor.
|
|
1391
|
+
*/
|
|
1272
1392
|
interface $RegionSettings extends sap.ui.core.$ElementSettings {
|
|
1273
1393
|
/**
|
|
1274
1394
|
* The color, this must be provided in the rgba(r,g,b,a) format.
|
|
@@ -1327,6 +1447,9 @@ declare namespace sap {
|
|
|
1327
1447
|
contextMenu?: (oEvent: Region$ContextMenuEvent) => void;
|
|
1328
1448
|
}
|
|
1329
1449
|
|
|
1450
|
+
/**
|
|
1451
|
+
* Describes the settings that can be provided to the Resource constructor.
|
|
1452
|
+
*/
|
|
1330
1453
|
interface $ResourceSettings extends sap.ui.core.$ElementSettings {
|
|
1331
1454
|
/**
|
|
1332
1455
|
* Value of the resource. Base64 endode binary.
|
|
@@ -1346,6 +1469,9 @@ declare namespace sap {
|
|
|
1346
1469
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1347
1470
|
}
|
|
1348
1471
|
|
|
1472
|
+
/**
|
|
1473
|
+
* Describes the settings that can be provided to the Route constructor.
|
|
1474
|
+
*/
|
|
1349
1475
|
interface $RouteSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
1350
1476
|
/**
|
|
1351
1477
|
* The position array of the route. The format is "lon0;lat0;0;...lonN;latN;0".
|
|
@@ -1445,6 +1571,9 @@ declare namespace sap {
|
|
|
1445
1571
|
| `{${string}}`;
|
|
1446
1572
|
}
|
|
1447
1573
|
|
|
1574
|
+
/**
|
|
1575
|
+
* Describes the settings that can be provided to the Routes constructor.
|
|
1576
|
+
*/
|
|
1448
1577
|
interface $RoutesSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
1449
1578
|
/**
|
|
1450
1579
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -1498,6 +1627,9 @@ declare namespace sap {
|
|
|
1498
1627
|
drop?: (oEvent: sap.ui.base.Event) => void;
|
|
1499
1628
|
}
|
|
1500
1629
|
|
|
1630
|
+
/**
|
|
1631
|
+
* Describes the settings that can be provided to the Spot constructor.
|
|
1632
|
+
*/
|
|
1501
1633
|
interface $SpotSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
1502
1634
|
/**
|
|
1503
1635
|
* The position of the spot. The format is "lon;lat;0"
|
|
@@ -1585,6 +1717,9 @@ declare namespace sap {
|
|
|
1585
1717
|
| `{${string}}`;
|
|
1586
1718
|
}
|
|
1587
1719
|
|
|
1720
|
+
/**
|
|
1721
|
+
* Describes the settings that can be provided to the Spots constructor.
|
|
1722
|
+
*/
|
|
1588
1723
|
interface $SpotsSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
1589
1724
|
/**
|
|
1590
1725
|
* Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
|
|
@@ -1632,6 +1767,9 @@ declare namespace sap {
|
|
|
1632
1767
|
| `{${string}}`;
|
|
1633
1768
|
}
|
|
1634
1769
|
|
|
1770
|
+
/**
|
|
1771
|
+
* Describes the settings that can be provided to the VBI constructor.
|
|
1772
|
+
*/
|
|
1635
1773
|
interface $VBISettings extends sap.ui.core.$ControlSettings {
|
|
1636
1774
|
/**
|
|
1637
1775
|
* Set the width of the control.
|
|
@@ -1786,6 +1924,9 @@ declare namespace sap {
|
|
|
1786
1924
|
containerDestroyed?: (oEvent: VBI$ContainerDestroyedEvent) => void;
|
|
1787
1925
|
}
|
|
1788
1926
|
|
|
1927
|
+
/**
|
|
1928
|
+
* Describes the settings that can be provided to the Viewport constructor.
|
|
1929
|
+
*/
|
|
1789
1930
|
interface $ViewportSettings extends sap.ui.core.$ControlSettings {
|
|
1790
1931
|
/**
|
|
1791
1932
|
* Viewport width
|
|
@@ -1825,8 +1966,14 @@ declare namespace sap {
|
|
|
1825
1966
|
cameraChange?: (oEvent: Viewport$CameraChangeEvent) => void;
|
|
1826
1967
|
}
|
|
1827
1968
|
|
|
1969
|
+
/**
|
|
1970
|
+
* Describes the settings that can be provided to the VoAbstract constructor.
|
|
1971
|
+
*/
|
|
1828
1972
|
interface $VoAbstractSettings extends sap.ui.core.$ElementSettings {}
|
|
1829
1973
|
|
|
1974
|
+
/**
|
|
1975
|
+
* Describes the settings that can be provided to the VoAggregation constructor.
|
|
1976
|
+
*/
|
|
1830
1977
|
interface $VoAggregationSettings extends sap.ui.vbm.$VoAbstractSettings {
|
|
1831
1978
|
/**
|
|
1832
1979
|
* Selection cardinality: minimum selected elements ("0" or "1" )
|
|
@@ -1890,6 +2037,9 @@ declare namespace sap {
|
|
|
1890
2037
|
drop?: (oEvent: VoAggregation$DropEvent) => void;
|
|
1891
2038
|
}
|
|
1892
2039
|
|
|
2040
|
+
/**
|
|
2041
|
+
* Describes the settings that can be provided to the VoBase constructor.
|
|
2042
|
+
*/
|
|
1893
2043
|
interface $VoBaseSettings extends sap.ui.core.$ElementSettings {
|
|
1894
2044
|
/**
|
|
1895
2045
|
* Unique identifier for the object. This is optional. If not provided the default identifier sId is used.
|
|
@@ -2041,10 +2191,16 @@ declare namespace sap {
|
|
|
2041
2191
|
drop?: (oEvent: VoBase$DropEvent) => void;
|
|
2042
2192
|
}
|
|
2043
2193
|
|
|
2194
|
+
/**
|
|
2195
|
+
* Parameters of the Adapter#submit event.
|
|
2196
|
+
*/
|
|
2044
2197
|
interface Adapter$SubmitEventParameters {
|
|
2045
2198
|
data?: string;
|
|
2046
2199
|
}
|
|
2047
2200
|
|
|
2201
|
+
/**
|
|
2202
|
+
* Parameters of the Adapter3D#submit event.
|
|
2203
|
+
*/
|
|
2048
2204
|
interface Adapter3D$SubmitEventParameters {
|
|
2049
2205
|
/**
|
|
2050
2206
|
* A string in the VBI JSON format.
|
|
@@ -2052,6 +2208,9 @@ declare namespace sap {
|
|
|
2052
2208
|
data?: string;
|
|
2053
2209
|
}
|
|
2054
2210
|
|
|
2211
|
+
/**
|
|
2212
|
+
* Parameters of the AnalyticMap#regionClick event.
|
|
2213
|
+
*/
|
|
2055
2214
|
interface AnalyticMap$RegionClickEventParameters {
|
|
2056
2215
|
/**
|
|
2057
2216
|
* The regions code.
|
|
@@ -2059,6 +2218,9 @@ declare namespace sap {
|
|
|
2059
2218
|
code?: string;
|
|
2060
2219
|
}
|
|
2061
2220
|
|
|
2221
|
+
/**
|
|
2222
|
+
* Parameters of the AnalyticMap#regionContextMenu event.
|
|
2223
|
+
*/
|
|
2062
2224
|
interface AnalyticMap$RegionContextMenuEventParameters {
|
|
2063
2225
|
/**
|
|
2064
2226
|
* The regions code.
|
|
@@ -2066,14 +2228,29 @@ declare namespace sap {
|
|
|
2066
2228
|
code?: string;
|
|
2067
2229
|
}
|
|
2068
2230
|
|
|
2231
|
+
/**
|
|
2232
|
+
* Parameters of the AnalyticMap#regionDeselect event.
|
|
2233
|
+
*/
|
|
2069
2234
|
interface AnalyticMap$RegionDeselectEventParameters {}
|
|
2070
2235
|
|
|
2236
|
+
/**
|
|
2237
|
+
* Parameters of the AnalyticMap#regionSelect event.
|
|
2238
|
+
*/
|
|
2071
2239
|
interface AnalyticMap$RegionSelectEventParameters {}
|
|
2072
2240
|
|
|
2241
|
+
/**
|
|
2242
|
+
* Parameters of the Area#edgeClick event.
|
|
2243
|
+
*/
|
|
2073
2244
|
interface Area$EdgeClickEventParameters {}
|
|
2074
2245
|
|
|
2246
|
+
/**
|
|
2247
|
+
* Parameters of the Area#edgeContextMenu event.
|
|
2248
|
+
*/
|
|
2075
2249
|
interface Area$EdgeContextMenuEventParameters {}
|
|
2076
2250
|
|
|
2251
|
+
/**
|
|
2252
|
+
* Parameters of the Areas#edgeClick event.
|
|
2253
|
+
*/
|
|
2077
2254
|
interface Areas$EdgeClickEventParameters {
|
|
2078
2255
|
/**
|
|
2079
2256
|
* Clicked instance
|
|
@@ -2087,6 +2264,9 @@ declare namespace sap {
|
|
|
2087
2264
|
edge?: int;
|
|
2088
2265
|
}
|
|
2089
2266
|
|
|
2267
|
+
/**
|
|
2268
|
+
* Parameters of the Areas#edgeContextMenu event.
|
|
2269
|
+
*/
|
|
2090
2270
|
interface Areas$EdgeContextMenuEventParameters {
|
|
2091
2271
|
/**
|
|
2092
2272
|
* Clicked instance
|
|
@@ -2100,6 +2280,9 @@ declare namespace sap {
|
|
|
2100
2280
|
edge?: int;
|
|
2101
2281
|
}
|
|
2102
2282
|
|
|
2283
|
+
/**
|
|
2284
|
+
* Parameters of the ClusterBase#click event.
|
|
2285
|
+
*/
|
|
2103
2286
|
interface ClusterBase$ClickEventParameters {
|
|
2104
2287
|
/**
|
|
2105
2288
|
* ID of the clicked cluster object. Can serve as input for GeoMap function getInfoForCluster
|
|
@@ -2107,6 +2290,9 @@ declare namespace sap {
|
|
|
2107
2290
|
clusterID?: string;
|
|
2108
2291
|
}
|
|
2109
2292
|
|
|
2293
|
+
/**
|
|
2294
|
+
* Parameters of the ClusterBase#contextMenu event.
|
|
2295
|
+
*/
|
|
2110
2296
|
interface ClusterBase$ContextMenuEventParameters {
|
|
2111
2297
|
/**
|
|
2112
2298
|
* ID of the clicked cluster object. Can serve as input for GeoMap function getInfoForCluster
|
|
@@ -2119,14 +2305,26 @@ declare namespace sap {
|
|
|
2119
2305
|
menu?: sap.ui.unified.Menu;
|
|
2120
2306
|
}
|
|
2121
2307
|
|
|
2308
|
+
/**
|
|
2309
|
+
* Parameters of the ContainerBase#contentChange event.
|
|
2310
|
+
*/
|
|
2122
2311
|
interface ContainerBase$ContentChangeEventParameters {
|
|
2123
2312
|
selectedItemId?: string;
|
|
2124
2313
|
}
|
|
2125
2314
|
|
|
2315
|
+
/**
|
|
2316
|
+
* Parameters of the ContainerBase#settingsPressed event.
|
|
2317
|
+
*/
|
|
2126
2318
|
interface ContainerBase$SettingsPressedEventParameters {}
|
|
2127
2319
|
|
|
2320
|
+
/**
|
|
2321
|
+
* Parameters of the Feature#click event.
|
|
2322
|
+
*/
|
|
2128
2323
|
interface Feature$ClickEventParameters {}
|
|
2129
2324
|
|
|
2325
|
+
/**
|
|
2326
|
+
* Parameters of the Feature#contextMenu event.
|
|
2327
|
+
*/
|
|
2130
2328
|
interface Feature$ContextMenuEventParameters {
|
|
2131
2329
|
/**
|
|
2132
2330
|
* Menu object to be used with openContextMenu().
|
|
@@ -2134,12 +2332,21 @@ declare namespace sap {
|
|
|
2134
2332
|
menu?: sap.ui.unified.Menu;
|
|
2135
2333
|
}
|
|
2136
2334
|
|
|
2335
|
+
/**
|
|
2336
|
+
* Parameters of the FeatureCollection#click event.
|
|
2337
|
+
*/
|
|
2137
2338
|
interface FeatureCollection$ClickEventParameters
|
|
2138
2339
|
extends sap.ui.vbm.GeoJsonLayer$ClickEventParameters {}
|
|
2139
2340
|
|
|
2341
|
+
/**
|
|
2342
|
+
* Parameters of the FeatureCollection#contextMenu event.
|
|
2343
|
+
*/
|
|
2140
2344
|
interface FeatureCollection$ContextMenuEventParameters
|
|
2141
2345
|
extends sap.ui.vbm.GeoJsonLayer$ContextMenuEventParameters {}
|
|
2142
2346
|
|
|
2347
|
+
/**
|
|
2348
|
+
* Parameters of the GeoJsonLayer#click event.
|
|
2349
|
+
*/
|
|
2143
2350
|
interface GeoJsonLayer$ClickEventParameters {
|
|
2144
2351
|
/**
|
|
2145
2352
|
* Id of clicked Feature
|
|
@@ -2147,6 +2354,9 @@ declare namespace sap {
|
|
|
2147
2354
|
featureId?: string;
|
|
2148
2355
|
}
|
|
2149
2356
|
|
|
2357
|
+
/**
|
|
2358
|
+
* Parameters of the GeoJsonLayer#contextMenu event.
|
|
2359
|
+
*/
|
|
2150
2360
|
interface GeoJsonLayer$ContextMenuEventParameters {
|
|
2151
2361
|
/**
|
|
2152
2362
|
* Id of clicked Feature
|
|
@@ -2154,6 +2364,9 @@ declare namespace sap {
|
|
|
2154
2364
|
featureId?: string;
|
|
2155
2365
|
}
|
|
2156
2366
|
|
|
2367
|
+
/**
|
|
2368
|
+
* Parameters of the GeoMap#centerChanged event.
|
|
2369
|
+
*/
|
|
2157
2370
|
interface GeoMap$CenterChangedEventParameters {
|
|
2158
2371
|
/**
|
|
2159
2372
|
* Center point of the map. Format : Lon;Lat;0.0.
|
|
@@ -2171,6 +2384,9 @@ declare namespace sap {
|
|
|
2171
2384
|
zoomLevel?: int;
|
|
2172
2385
|
}
|
|
2173
2386
|
|
|
2387
|
+
/**
|
|
2388
|
+
* Parameters of the GeoMap#click event.
|
|
2389
|
+
*/
|
|
2174
2390
|
interface GeoMap$ClickEventParameters {
|
|
2175
2391
|
/**
|
|
2176
2392
|
* Geo coordinates in format "<longitude>;<latitude>;0"
|
|
@@ -2178,6 +2394,9 @@ declare namespace sap {
|
|
|
2178
2394
|
pos?: string;
|
|
2179
2395
|
}
|
|
2180
2396
|
|
|
2397
|
+
/**
|
|
2398
|
+
* Parameters of the GeoMap#contextMenu event.
|
|
2399
|
+
*/
|
|
2181
2400
|
interface GeoMap$ContextMenuEventParameters {
|
|
2182
2401
|
/**
|
|
2183
2402
|
* Client coordinate X
|
|
@@ -2195,6 +2414,9 @@ declare namespace sap {
|
|
|
2195
2414
|
pos?: string;
|
|
2196
2415
|
}
|
|
2197
2416
|
|
|
2417
|
+
/**
|
|
2418
|
+
* Parameters of the GeoMap#drop event.
|
|
2419
|
+
*/
|
|
2198
2420
|
interface GeoMap$DropEventParameters {
|
|
2199
2421
|
/**
|
|
2200
2422
|
* Geo coordinates in format "<longitude>;<latitude>;0"
|
|
@@ -2202,6 +2424,9 @@ declare namespace sap {
|
|
|
2202
2424
|
pos?: string;
|
|
2203
2425
|
}
|
|
2204
2426
|
|
|
2427
|
+
/**
|
|
2428
|
+
* Parameters of the GeoMap#keyDown event.
|
|
2429
|
+
*/
|
|
2205
2430
|
interface GeoMap$KeyDownEventParameters {
|
|
2206
2431
|
/**
|
|
2207
2432
|
* Key value of the key
|
|
@@ -2234,6 +2459,9 @@ declare namespace sap {
|
|
|
2234
2459
|
meta?: boolean;
|
|
2235
2460
|
}
|
|
2236
2461
|
|
|
2462
|
+
/**
|
|
2463
|
+
* Parameters of the GeoMap#keyPress event.
|
|
2464
|
+
*/
|
|
2237
2465
|
interface GeoMap$KeyPressEventParameters {
|
|
2238
2466
|
/**
|
|
2239
2467
|
* Key value of the key
|
|
@@ -2266,6 +2494,9 @@ declare namespace sap {
|
|
|
2266
2494
|
meta?: boolean;
|
|
2267
2495
|
}
|
|
2268
2496
|
|
|
2497
|
+
/**
|
|
2498
|
+
* Parameters of the GeoMap#keyUp event.
|
|
2499
|
+
*/
|
|
2269
2500
|
interface GeoMap$KeyUpEventParameters {
|
|
2270
2501
|
/**
|
|
2271
2502
|
* Key value of the key
|
|
@@ -2298,8 +2529,14 @@ declare namespace sap {
|
|
|
2298
2529
|
meta?: boolean;
|
|
2299
2530
|
}
|
|
2300
2531
|
|
|
2532
|
+
/**
|
|
2533
|
+
* Parameters of the GeoMap#select event.
|
|
2534
|
+
*/
|
|
2301
2535
|
interface GeoMap$SelectEventParameters {}
|
|
2302
2536
|
|
|
2537
|
+
/**
|
|
2538
|
+
* Parameters of the GeoMap#zoomChanged event.
|
|
2539
|
+
*/
|
|
2303
2540
|
interface GeoMap$ZoomChangedEventParameters {
|
|
2304
2541
|
/**
|
|
2305
2542
|
* Center point of the map. Format : Lon;Lat;0.0.
|
|
@@ -2317,6 +2554,9 @@ declare namespace sap {
|
|
|
2317
2554
|
zoomLevel?: int;
|
|
2318
2555
|
}
|
|
2319
2556
|
|
|
2557
|
+
/**
|
|
2558
|
+
* Parameters of the Legend#click event.
|
|
2559
|
+
*/
|
|
2320
2560
|
interface Legend$ClickEventParameters {
|
|
2321
2561
|
/**
|
|
2322
2562
|
* Event data object
|
|
@@ -2349,6 +2589,9 @@ declare namespace sap {
|
|
|
2349
2589
|
altKey?: boolean;
|
|
2350
2590
|
}
|
|
2351
2591
|
|
|
2592
|
+
/**
|
|
2593
|
+
* Parameters of the LegendItem#click event.
|
|
2594
|
+
*/
|
|
2352
2595
|
interface LegendItem$ClickEventParameters {
|
|
2353
2596
|
/**
|
|
2354
2597
|
* Event data object
|
|
@@ -2376,10 +2619,19 @@ declare namespace sap {
|
|
|
2376
2619
|
altKey?: boolean;
|
|
2377
2620
|
}
|
|
2378
2621
|
|
|
2622
|
+
/**
|
|
2623
|
+
* Parameters of the ListPanel#expand event.
|
|
2624
|
+
*/
|
|
2379
2625
|
interface ListPanel$ExpandEventParameters {}
|
|
2380
2626
|
|
|
2627
|
+
/**
|
|
2628
|
+
* Parameters of the ListPanel#headerIconPress event.
|
|
2629
|
+
*/
|
|
2381
2630
|
interface ListPanel$HeaderIconPressEventParameters {}
|
|
2382
2631
|
|
|
2632
|
+
/**
|
|
2633
|
+
* Parameters of the ListPanel#itemPress event.
|
|
2634
|
+
*/
|
|
2383
2635
|
interface ListPanel$ItemPressEventParameters {
|
|
2384
2636
|
/**
|
|
2385
2637
|
* The item which fired the pressed event.
|
|
@@ -2392,6 +2644,9 @@ declare namespace sap {
|
|
|
2392
2644
|
srcControl?: sap.ui.core.Control;
|
|
2393
2645
|
}
|
|
2394
2646
|
|
|
2647
|
+
/**
|
|
2648
|
+
* Parameters of the ListPanel#selectionChange event.
|
|
2649
|
+
*/
|
|
2395
2650
|
interface ListPanel$SelectionChangeEventParameters {
|
|
2396
2651
|
/**
|
|
2397
2652
|
* The item whose selection has changed. In `MultiSelect` mode, only the up-most selected item is returned.
|
|
@@ -2410,8 +2665,17 @@ declare namespace sap {
|
|
|
2410
2665
|
selected?: boolean;
|
|
2411
2666
|
}
|
|
2412
2667
|
|
|
2668
|
+
/**
|
|
2669
|
+
* Parameters of the PieItem#click event.
|
|
2670
|
+
*
|
|
2671
|
+
* @deprecated (since 1.31) - This event should no longer be used. Click event from Pie and Pies now includes
|
|
2672
|
+
* Pie Item index when event occurs.
|
|
2673
|
+
*/
|
|
2413
2674
|
interface PieItem$ClickEventParameters {}
|
|
2414
2675
|
|
|
2676
|
+
/**
|
|
2677
|
+
* Parameters of the Region#click event.
|
|
2678
|
+
*/
|
|
2415
2679
|
interface Region$ClickEventParameters {
|
|
2416
2680
|
/**
|
|
2417
2681
|
* The region code.
|
|
@@ -2419,6 +2683,9 @@ declare namespace sap {
|
|
|
2419
2683
|
code?: string;
|
|
2420
2684
|
}
|
|
2421
2685
|
|
|
2686
|
+
/**
|
|
2687
|
+
* Parameters of the Region#contextMenu event.
|
|
2688
|
+
*/
|
|
2422
2689
|
interface Region$ContextMenuEventParameters {
|
|
2423
2690
|
/**
|
|
2424
2691
|
* The region code.
|
|
@@ -2426,15 +2693,27 @@ declare namespace sap {
|
|
|
2426
2693
|
code?: string;
|
|
2427
2694
|
}
|
|
2428
2695
|
|
|
2696
|
+
/**
|
|
2697
|
+
* Parameters of the Routes#click event.
|
|
2698
|
+
*/
|
|
2429
2699
|
interface Routes$ClickEventParameters
|
|
2430
2700
|
extends sap.ui.vbm.VoAggregation$ClickEventParameters {}
|
|
2431
2701
|
|
|
2702
|
+
/**
|
|
2703
|
+
* Parameters of the Routes#contextMenu event.
|
|
2704
|
+
*/
|
|
2432
2705
|
interface Routes$ContextMenuEventParameters
|
|
2433
2706
|
extends sap.ui.vbm.VoAggregation$ContextMenuEventParameters {}
|
|
2434
2707
|
|
|
2708
|
+
/**
|
|
2709
|
+
* Parameters of the Routes#drop event.
|
|
2710
|
+
*/
|
|
2435
2711
|
interface Routes$DropEventParameters
|
|
2436
2712
|
extends sap.ui.vbm.VoAggregation$DropEventParameters {}
|
|
2437
2713
|
|
|
2714
|
+
/**
|
|
2715
|
+
* Parameters of the VBI#changeTrackingMode event.
|
|
2716
|
+
*/
|
|
2438
2717
|
interface VBI$ChangeTrackingModeEventParameters {
|
|
2439
2718
|
/**
|
|
2440
2719
|
* tracking mode to set or reset
|
|
@@ -2447,6 +2726,9 @@ declare namespace sap {
|
|
|
2447
2726
|
bSet?: boolean;
|
|
2448
2727
|
}
|
|
2449
2728
|
|
|
2729
|
+
/**
|
|
2730
|
+
* Parameters of the VBI#closeWindow event.
|
|
2731
|
+
*/
|
|
2450
2732
|
interface VBI$CloseWindowEventParameters {
|
|
2451
2733
|
/**
|
|
2452
2734
|
* DomRef of placeholder Div for content.
|
|
@@ -2459,6 +2741,9 @@ declare namespace sap {
|
|
|
2459
2741
|
id?: string;
|
|
2460
2742
|
}
|
|
2461
2743
|
|
|
2744
|
+
/**
|
|
2745
|
+
* Parameters of the VBI#containerCreated event.
|
|
2746
|
+
*/
|
|
2462
2747
|
interface VBI$ContainerCreatedEventParameters {
|
|
2463
2748
|
/**
|
|
2464
2749
|
* DomRef of placeholder Div to render into.
|
|
@@ -2471,6 +2756,9 @@ declare namespace sap {
|
|
|
2471
2756
|
id?: string;
|
|
2472
2757
|
}
|
|
2473
2758
|
|
|
2759
|
+
/**
|
|
2760
|
+
* Parameters of the VBI#containerDestroyed event.
|
|
2761
|
+
*/
|
|
2474
2762
|
interface VBI$ContainerDestroyedEventParameters {
|
|
2475
2763
|
/**
|
|
2476
2764
|
* DomRef of placeholder Div of content.
|
|
@@ -2483,6 +2771,9 @@ declare namespace sap {
|
|
|
2483
2771
|
id?: string;
|
|
2484
2772
|
}
|
|
2485
2773
|
|
|
2774
|
+
/**
|
|
2775
|
+
* Parameters of the VBI#move event.
|
|
2776
|
+
*/
|
|
2486
2777
|
interface VBI$MoveEventParameters {
|
|
2487
2778
|
/**
|
|
2488
2779
|
* Canvas object to render into.
|
|
@@ -2490,6 +2781,9 @@ declare namespace sap {
|
|
|
2490
2781
|
canvas?: object;
|
|
2491
2782
|
}
|
|
2492
2783
|
|
|
2784
|
+
/**
|
|
2785
|
+
* Parameters of the VBI#openWindow event.
|
|
2786
|
+
*/
|
|
2493
2787
|
interface VBI$OpenWindowEventParameters {
|
|
2494
2788
|
/**
|
|
2495
2789
|
* DomRef of placeholder Div to render into.
|
|
@@ -2502,6 +2796,9 @@ declare namespace sap {
|
|
|
2502
2796
|
id?: string;
|
|
2503
2797
|
}
|
|
2504
2798
|
|
|
2799
|
+
/**
|
|
2800
|
+
* Parameters of the VBI#render event.
|
|
2801
|
+
*/
|
|
2505
2802
|
interface VBI$RenderEventParameters {
|
|
2506
2803
|
/**
|
|
2507
2804
|
* Canvas object to render into.
|
|
@@ -2509,6 +2806,9 @@ declare namespace sap {
|
|
|
2509
2806
|
canvas?: object;
|
|
2510
2807
|
}
|
|
2511
2808
|
|
|
2809
|
+
/**
|
|
2810
|
+
* Parameters of the VBI#submit event.
|
|
2811
|
+
*/
|
|
2512
2812
|
interface VBI$SubmitEventParameters {
|
|
2513
2813
|
/**
|
|
2514
2814
|
* JSON (or possibly XML and case the plugin is used) string describing the delta state of Visual Business
|
|
@@ -2517,6 +2817,9 @@ declare namespace sap {
|
|
|
2517
2817
|
data?: string;
|
|
2518
2818
|
}
|
|
2519
2819
|
|
|
2820
|
+
/**
|
|
2821
|
+
* Parameters of the VBI#thumbnailClick event.
|
|
2822
|
+
*/
|
|
2520
2823
|
interface VBI$ThumbnailClickEventParameters {
|
|
2521
2824
|
/**
|
|
2522
2825
|
* Geo coordinates in format "lon;lat;0"
|
|
@@ -2529,6 +2832,9 @@ declare namespace sap {
|
|
|
2529
2832
|
zoomLevel?: int;
|
|
2530
2833
|
}
|
|
2531
2834
|
|
|
2835
|
+
/**
|
|
2836
|
+
* Parameters of the VBI#zoom event.
|
|
2837
|
+
*/
|
|
2532
2838
|
interface VBI$ZoomEventParameters {
|
|
2533
2839
|
/**
|
|
2534
2840
|
* Canvas object to render into
|
|
@@ -2536,6 +2842,9 @@ declare namespace sap {
|
|
|
2536
2842
|
canvas?: object;
|
|
2537
2843
|
}
|
|
2538
2844
|
|
|
2845
|
+
/**
|
|
2846
|
+
* Parameters of the Viewport#cameraChange event.
|
|
2847
|
+
*/
|
|
2539
2848
|
interface Viewport$CameraChangeEventParameters {
|
|
2540
2849
|
/**
|
|
2541
2850
|
* Current position in camera history
|
|
@@ -2548,6 +2857,9 @@ declare namespace sap {
|
|
|
2548
2857
|
historyLength?: int;
|
|
2549
2858
|
}
|
|
2550
2859
|
|
|
2860
|
+
/**
|
|
2861
|
+
* Parameters of the VoAggregation#click event.
|
|
2862
|
+
*/
|
|
2551
2863
|
interface VoAggregation$ClickEventParameters {
|
|
2552
2864
|
/**
|
|
2553
2865
|
* Clicked instance
|
|
@@ -2555,6 +2867,9 @@ declare namespace sap {
|
|
|
2555
2867
|
instance?: sap.ui.vbm.VoBase;
|
|
2556
2868
|
}
|
|
2557
2869
|
|
|
2870
|
+
/**
|
|
2871
|
+
* Parameters of the VoAggregation#contextMenu event.
|
|
2872
|
+
*/
|
|
2558
2873
|
interface VoAggregation$ContextMenuEventParameters {
|
|
2559
2874
|
/**
|
|
2560
2875
|
* Clicked instance
|
|
@@ -2567,6 +2882,9 @@ declare namespace sap {
|
|
|
2567
2882
|
menu?: sap.ui.unified.Menu;
|
|
2568
2883
|
}
|
|
2569
2884
|
|
|
2885
|
+
/**
|
|
2886
|
+
* Parameters of the VoAggregation#deselect event.
|
|
2887
|
+
*/
|
|
2570
2888
|
interface VoAggregation$DeselectEventParameters {
|
|
2571
2889
|
/**
|
|
2572
2890
|
* Array of deselected VOs
|
|
@@ -2574,6 +2892,9 @@ declare namespace sap {
|
|
|
2574
2892
|
deselected?: any[];
|
|
2575
2893
|
}
|
|
2576
2894
|
|
|
2895
|
+
/**
|
|
2896
|
+
* Parameters of the VoAggregation#drop event.
|
|
2897
|
+
*/
|
|
2577
2898
|
interface VoAggregation$DropEventParameters {
|
|
2578
2899
|
/**
|
|
2579
2900
|
* Drop target instance
|
|
@@ -2586,6 +2907,9 @@ declare namespace sap {
|
|
|
2586
2907
|
dragSource?: sap.ui.vbm.VoBase;
|
|
2587
2908
|
}
|
|
2588
2909
|
|
|
2910
|
+
/**
|
|
2911
|
+
* Parameters of the VoAggregation#handleClick event.
|
|
2912
|
+
*/
|
|
2589
2913
|
interface VoAggregation$HandleClickEventParameters {
|
|
2590
2914
|
/**
|
|
2591
2915
|
* Clicked instance
|
|
@@ -2598,6 +2922,9 @@ declare namespace sap {
|
|
|
2598
2922
|
handle?: int;
|
|
2599
2923
|
}
|
|
2600
2924
|
|
|
2925
|
+
/**
|
|
2926
|
+
* Parameters of the VoAggregation#handleContextMenu event.
|
|
2927
|
+
*/
|
|
2601
2928
|
interface VoAggregation$HandleContextMenuEventParameters {
|
|
2602
2929
|
/**
|
|
2603
2930
|
* Clicked instance
|
|
@@ -2615,6 +2942,9 @@ declare namespace sap {
|
|
|
2615
2942
|
handle?: int;
|
|
2616
2943
|
}
|
|
2617
2944
|
|
|
2945
|
+
/**
|
|
2946
|
+
* Parameters of the VoAggregation#handleMoved event.
|
|
2947
|
+
*/
|
|
2618
2948
|
interface VoAggregation$HandleMovedEventParameters {
|
|
2619
2949
|
/**
|
|
2620
2950
|
* Clicked instance
|
|
@@ -2627,6 +2957,9 @@ declare namespace sap {
|
|
|
2627
2957
|
handle?: int;
|
|
2628
2958
|
}
|
|
2629
2959
|
|
|
2960
|
+
/**
|
|
2961
|
+
* Parameters of the VoAggregation#select event.
|
|
2962
|
+
*/
|
|
2630
2963
|
interface VoAggregation$SelectEventParameters {
|
|
2631
2964
|
/**
|
|
2632
2965
|
* Array of selected VOs
|
|
@@ -2634,8 +2967,14 @@ declare namespace sap {
|
|
|
2634
2967
|
selected?: any[];
|
|
2635
2968
|
}
|
|
2636
2969
|
|
|
2970
|
+
/**
|
|
2971
|
+
* Parameters of the VoBase#click event.
|
|
2972
|
+
*/
|
|
2637
2973
|
interface VoBase$ClickEventParameters {}
|
|
2638
2974
|
|
|
2975
|
+
/**
|
|
2976
|
+
* Parameters of the VoBase#contextMenu event.
|
|
2977
|
+
*/
|
|
2639
2978
|
interface VoBase$ContextMenuEventParameters {
|
|
2640
2979
|
/**
|
|
2641
2980
|
* Menu to open
|
|
@@ -2643,6 +2982,9 @@ declare namespace sap {
|
|
|
2643
2982
|
menu?: sap.ui.unified.Menu;
|
|
2644
2983
|
}
|
|
2645
2984
|
|
|
2985
|
+
/**
|
|
2986
|
+
* Parameters of the VoBase#drop event.
|
|
2987
|
+
*/
|
|
2646
2988
|
interface VoBase$DropEventParameters {
|
|
2647
2989
|
/**
|
|
2648
2990
|
* Dragged instance
|
|
@@ -2650,6 +2992,9 @@ declare namespace sap {
|
|
|
2650
2992
|
dragSource?: sap.ui.vbm.VoBase;
|
|
2651
2993
|
}
|
|
2652
2994
|
|
|
2995
|
+
/**
|
|
2996
|
+
* Parameters of the VoBase#handleClick event.
|
|
2997
|
+
*/
|
|
2653
2998
|
interface VoBase$HandleClickEventParameters {
|
|
2654
2999
|
/**
|
|
2655
3000
|
* The number of the handle where the click occured. Handles are numbered zero based.
|
|
@@ -2657,6 +3002,9 @@ declare namespace sap {
|
|
|
2657
3002
|
handle?: int;
|
|
2658
3003
|
}
|
|
2659
3004
|
|
|
3005
|
+
/**
|
|
3006
|
+
* Parameters of the VoBase#handleContextMenu event.
|
|
3007
|
+
*/
|
|
2660
3008
|
interface VoBase$HandleContextMenuEventParameters {
|
|
2661
3009
|
/**
|
|
2662
3010
|
* The number of the handle where the click occured. Handles are numbered zero based.
|
|
@@ -2669,6 +3017,9 @@ declare namespace sap {
|
|
|
2669
3017
|
menu?: sap.ui.unified.Menu;
|
|
2670
3018
|
}
|
|
2671
3019
|
|
|
3020
|
+
/**
|
|
3021
|
+
* Parameters of the VoBase#handleMoved event.
|
|
3022
|
+
*/
|
|
2672
3023
|
interface VoBase$HandleMovedEventParameters {
|
|
2673
3024
|
/**
|
|
2674
3025
|
* The number of the handle where the click occured. Handles are numbered zero based.
|
|
@@ -20002,320 +20353,520 @@ declare namespace sap {
|
|
|
20002
20353
|
*/
|
|
20003
20354
|
Warning = "Warning",
|
|
20004
20355
|
}
|
|
20005
|
-
|
|
20356
|
+
/**
|
|
20357
|
+
* Event object of the Adapter#submit event.
|
|
20358
|
+
*/
|
|
20006
20359
|
type Adapter$SubmitEvent = sap.ui.base.Event<
|
|
20007
20360
|
Adapter$SubmitEventParameters,
|
|
20008
20361
|
Adapter
|
|
20009
20362
|
>;
|
|
20010
20363
|
|
|
20364
|
+
/**
|
|
20365
|
+
* Event object of the Adapter3D#submit event.
|
|
20366
|
+
*/
|
|
20011
20367
|
type Adapter3D$SubmitEvent = sap.ui.base.Event<
|
|
20012
20368
|
Adapter3D$SubmitEventParameters,
|
|
20013
20369
|
Adapter3D
|
|
20014
20370
|
>;
|
|
20015
20371
|
|
|
20372
|
+
/**
|
|
20373
|
+
* Event object of the AnalyticMap#regionClick event.
|
|
20374
|
+
*/
|
|
20016
20375
|
type AnalyticMap$RegionClickEvent = sap.ui.base.Event<
|
|
20017
20376
|
AnalyticMap$RegionClickEventParameters,
|
|
20018
20377
|
AnalyticMap
|
|
20019
20378
|
>;
|
|
20020
20379
|
|
|
20380
|
+
/**
|
|
20381
|
+
* Event object of the AnalyticMap#regionContextMenu event.
|
|
20382
|
+
*/
|
|
20021
20383
|
type AnalyticMap$RegionContextMenuEvent = sap.ui.base.Event<
|
|
20022
20384
|
AnalyticMap$RegionContextMenuEventParameters,
|
|
20023
20385
|
AnalyticMap
|
|
20024
20386
|
>;
|
|
20025
20387
|
|
|
20388
|
+
/**
|
|
20389
|
+
* Event object of the AnalyticMap#regionDeselect event.
|
|
20390
|
+
*/
|
|
20026
20391
|
type AnalyticMap$RegionDeselectEvent = sap.ui.base.Event<
|
|
20027
20392
|
AnalyticMap$RegionDeselectEventParameters,
|
|
20028
20393
|
AnalyticMap
|
|
20029
20394
|
>;
|
|
20030
20395
|
|
|
20396
|
+
/**
|
|
20397
|
+
* Event object of the AnalyticMap#regionSelect event.
|
|
20398
|
+
*/
|
|
20031
20399
|
type AnalyticMap$RegionSelectEvent = sap.ui.base.Event<
|
|
20032
20400
|
AnalyticMap$RegionSelectEventParameters,
|
|
20033
20401
|
AnalyticMap
|
|
20034
20402
|
>;
|
|
20035
20403
|
|
|
20404
|
+
/**
|
|
20405
|
+
* Event object of the Area#edgeClick event.
|
|
20406
|
+
*/
|
|
20036
20407
|
type Area$EdgeClickEvent = sap.ui.base.Event<
|
|
20037
20408
|
Area$EdgeClickEventParameters,
|
|
20038
20409
|
Area
|
|
20039
20410
|
>;
|
|
20040
20411
|
|
|
20412
|
+
/**
|
|
20413
|
+
* Event object of the Area#edgeContextMenu event.
|
|
20414
|
+
*/
|
|
20041
20415
|
type Area$EdgeContextMenuEvent = sap.ui.base.Event<
|
|
20042
20416
|
Area$EdgeContextMenuEventParameters,
|
|
20043
20417
|
Area
|
|
20044
20418
|
>;
|
|
20045
20419
|
|
|
20420
|
+
/**
|
|
20421
|
+
* Event object of the Areas#edgeClick event.
|
|
20422
|
+
*/
|
|
20046
20423
|
type Areas$EdgeClickEvent = sap.ui.base.Event<
|
|
20047
20424
|
Areas$EdgeClickEventParameters,
|
|
20048
20425
|
Areas
|
|
20049
20426
|
>;
|
|
20050
20427
|
|
|
20428
|
+
/**
|
|
20429
|
+
* Event object of the Areas#edgeContextMenu event.
|
|
20430
|
+
*/
|
|
20051
20431
|
type Areas$EdgeContextMenuEvent = sap.ui.base.Event<
|
|
20052
20432
|
Areas$EdgeContextMenuEventParameters,
|
|
20053
20433
|
Areas
|
|
20054
20434
|
>;
|
|
20055
20435
|
|
|
20436
|
+
/**
|
|
20437
|
+
* Event object of the ClusterBase#click event.
|
|
20438
|
+
*/
|
|
20056
20439
|
type ClusterBase$ClickEvent = sap.ui.base.Event<
|
|
20057
20440
|
ClusterBase$ClickEventParameters,
|
|
20058
20441
|
ClusterBase
|
|
20059
20442
|
>;
|
|
20060
20443
|
|
|
20444
|
+
/**
|
|
20445
|
+
* Event object of the ClusterBase#contextMenu event.
|
|
20446
|
+
*/
|
|
20061
20447
|
type ClusterBase$ContextMenuEvent = sap.ui.base.Event<
|
|
20062
20448
|
ClusterBase$ContextMenuEventParameters,
|
|
20063
20449
|
ClusterBase
|
|
20064
20450
|
>;
|
|
20065
20451
|
|
|
20452
|
+
/**
|
|
20453
|
+
* Event object of the ContainerBase#contentChange event.
|
|
20454
|
+
*/
|
|
20066
20455
|
type ContainerBase$ContentChangeEvent = sap.ui.base.Event<
|
|
20067
20456
|
ContainerBase$ContentChangeEventParameters,
|
|
20068
20457
|
ContainerBase
|
|
20069
20458
|
>;
|
|
20070
20459
|
|
|
20460
|
+
/**
|
|
20461
|
+
* Event object of the ContainerBase#settingsPressed event.
|
|
20462
|
+
*/
|
|
20071
20463
|
type ContainerBase$SettingsPressedEvent = sap.ui.base.Event<
|
|
20072
20464
|
ContainerBase$SettingsPressedEventParameters,
|
|
20073
20465
|
ContainerBase
|
|
20074
20466
|
>;
|
|
20075
20467
|
|
|
20468
|
+
/**
|
|
20469
|
+
* Event object of the Feature#click event.
|
|
20470
|
+
*/
|
|
20076
20471
|
type Feature$ClickEvent = sap.ui.base.Event<
|
|
20077
20472
|
Feature$ClickEventParameters,
|
|
20078
20473
|
Feature
|
|
20079
20474
|
>;
|
|
20080
20475
|
|
|
20476
|
+
/**
|
|
20477
|
+
* Event object of the Feature#contextMenu event.
|
|
20478
|
+
*/
|
|
20081
20479
|
type Feature$ContextMenuEvent = sap.ui.base.Event<
|
|
20082
20480
|
Feature$ContextMenuEventParameters,
|
|
20083
20481
|
Feature
|
|
20084
20482
|
>;
|
|
20085
20483
|
|
|
20484
|
+
/**
|
|
20485
|
+
* Event object of the FeatureCollection#click event.
|
|
20486
|
+
*/
|
|
20086
20487
|
type FeatureCollection$ClickEvent = sap.ui.base.Event<
|
|
20087
20488
|
FeatureCollection$ClickEventParameters,
|
|
20088
20489
|
FeatureCollection
|
|
20089
20490
|
>;
|
|
20090
20491
|
|
|
20492
|
+
/**
|
|
20493
|
+
* Event object of the FeatureCollection#contextMenu event.
|
|
20494
|
+
*/
|
|
20091
20495
|
type FeatureCollection$ContextMenuEvent = sap.ui.base.Event<
|
|
20092
20496
|
FeatureCollection$ContextMenuEventParameters,
|
|
20093
20497
|
FeatureCollection
|
|
20094
20498
|
>;
|
|
20095
20499
|
|
|
20500
|
+
/**
|
|
20501
|
+
* Event object of the GeoJsonLayer#click event.
|
|
20502
|
+
*/
|
|
20096
20503
|
type GeoJsonLayer$ClickEvent = sap.ui.base.Event<
|
|
20097
20504
|
GeoJsonLayer$ClickEventParameters,
|
|
20098
20505
|
GeoJsonLayer
|
|
20099
20506
|
>;
|
|
20100
20507
|
|
|
20508
|
+
/**
|
|
20509
|
+
* Event object of the GeoJsonLayer#contextMenu event.
|
|
20510
|
+
*/
|
|
20101
20511
|
type GeoJsonLayer$ContextMenuEvent = sap.ui.base.Event<
|
|
20102
20512
|
GeoJsonLayer$ContextMenuEventParameters,
|
|
20103
20513
|
GeoJsonLayer
|
|
20104
20514
|
>;
|
|
20105
20515
|
|
|
20516
|
+
/**
|
|
20517
|
+
* Event object of the GeoMap#centerChanged event.
|
|
20518
|
+
*/
|
|
20106
20519
|
type GeoMap$CenterChangedEvent = sap.ui.base.Event<
|
|
20107
20520
|
GeoMap$CenterChangedEventParameters,
|
|
20108
20521
|
GeoMap
|
|
20109
20522
|
>;
|
|
20110
20523
|
|
|
20524
|
+
/**
|
|
20525
|
+
* Event object of the GeoMap#click event.
|
|
20526
|
+
*/
|
|
20111
20527
|
type GeoMap$ClickEvent = sap.ui.base.Event<
|
|
20112
20528
|
GeoMap$ClickEventParameters,
|
|
20113
20529
|
GeoMap
|
|
20114
20530
|
>;
|
|
20115
20531
|
|
|
20532
|
+
/**
|
|
20533
|
+
* Event object of the GeoMap#contextMenu event.
|
|
20534
|
+
*/
|
|
20116
20535
|
type GeoMap$ContextMenuEvent = sap.ui.base.Event<
|
|
20117
20536
|
GeoMap$ContextMenuEventParameters,
|
|
20118
20537
|
GeoMap
|
|
20119
20538
|
>;
|
|
20120
20539
|
|
|
20540
|
+
/**
|
|
20541
|
+
* Event object of the GeoMap#drop event.
|
|
20542
|
+
*/
|
|
20121
20543
|
type GeoMap$DropEvent = sap.ui.base.Event<
|
|
20122
20544
|
GeoMap$DropEventParameters,
|
|
20123
20545
|
GeoMap
|
|
20124
20546
|
>;
|
|
20125
20547
|
|
|
20548
|
+
/**
|
|
20549
|
+
* Event object of the GeoMap#keyDown event.
|
|
20550
|
+
*/
|
|
20126
20551
|
type GeoMap$KeyDownEvent = sap.ui.base.Event<
|
|
20127
20552
|
GeoMap$KeyDownEventParameters,
|
|
20128
20553
|
GeoMap
|
|
20129
20554
|
>;
|
|
20130
20555
|
|
|
20556
|
+
/**
|
|
20557
|
+
* Event object of the GeoMap#keyPress event.
|
|
20558
|
+
*/
|
|
20131
20559
|
type GeoMap$KeyPressEvent = sap.ui.base.Event<
|
|
20132
20560
|
GeoMap$KeyPressEventParameters,
|
|
20133
20561
|
GeoMap
|
|
20134
20562
|
>;
|
|
20135
20563
|
|
|
20564
|
+
/**
|
|
20565
|
+
* Event object of the GeoMap#keyUp event.
|
|
20566
|
+
*/
|
|
20136
20567
|
type GeoMap$KeyUpEvent = sap.ui.base.Event<
|
|
20137
20568
|
GeoMap$KeyUpEventParameters,
|
|
20138
20569
|
GeoMap
|
|
20139
20570
|
>;
|
|
20140
20571
|
|
|
20572
|
+
/**
|
|
20573
|
+
* Event object of the GeoMap#select event.
|
|
20574
|
+
*/
|
|
20141
20575
|
type GeoMap$SelectEvent = sap.ui.base.Event<
|
|
20142
20576
|
GeoMap$SelectEventParameters,
|
|
20143
20577
|
GeoMap
|
|
20144
20578
|
>;
|
|
20145
20579
|
|
|
20580
|
+
/**
|
|
20581
|
+
* Event object of the GeoMap#zoomChanged event.
|
|
20582
|
+
*/
|
|
20146
20583
|
type GeoMap$ZoomChangedEvent = sap.ui.base.Event<
|
|
20147
20584
|
GeoMap$ZoomChangedEventParameters,
|
|
20148
20585
|
GeoMap
|
|
20149
20586
|
>;
|
|
20150
20587
|
|
|
20588
|
+
/**
|
|
20589
|
+
* Event object of the Legend#click event.
|
|
20590
|
+
*/
|
|
20151
20591
|
type Legend$ClickEvent = sap.ui.base.Event<
|
|
20152
20592
|
Legend$ClickEventParameters,
|
|
20153
20593
|
Legend
|
|
20154
20594
|
>;
|
|
20155
20595
|
|
|
20596
|
+
/**
|
|
20597
|
+
* Event object of the LegendItem#click event.
|
|
20598
|
+
*/
|
|
20156
20599
|
type LegendItem$ClickEvent = sap.ui.base.Event<
|
|
20157
20600
|
LegendItem$ClickEventParameters,
|
|
20158
20601
|
LegendItem
|
|
20159
20602
|
>;
|
|
20160
20603
|
|
|
20604
|
+
/**
|
|
20605
|
+
* Event object of the ListPanel#expand event.
|
|
20606
|
+
*/
|
|
20161
20607
|
type ListPanel$ExpandEvent = sap.ui.base.Event<
|
|
20162
20608
|
ListPanel$ExpandEventParameters,
|
|
20163
20609
|
ListPanel
|
|
20164
20610
|
>;
|
|
20165
20611
|
|
|
20612
|
+
/**
|
|
20613
|
+
* Event object of the ListPanel#headerIconPress event.
|
|
20614
|
+
*/
|
|
20166
20615
|
type ListPanel$HeaderIconPressEvent = sap.ui.base.Event<
|
|
20167
20616
|
ListPanel$HeaderIconPressEventParameters,
|
|
20168
20617
|
ListPanel
|
|
20169
20618
|
>;
|
|
20170
20619
|
|
|
20620
|
+
/**
|
|
20621
|
+
* Event object of the ListPanel#itemPress event.
|
|
20622
|
+
*/
|
|
20171
20623
|
type ListPanel$ItemPressEvent = sap.ui.base.Event<
|
|
20172
20624
|
ListPanel$ItemPressEventParameters,
|
|
20173
20625
|
ListPanel
|
|
20174
20626
|
>;
|
|
20175
20627
|
|
|
20628
|
+
/**
|
|
20629
|
+
* Event object of the ListPanel#selectionChange event.
|
|
20630
|
+
*/
|
|
20176
20631
|
type ListPanel$SelectionChangeEvent = sap.ui.base.Event<
|
|
20177
20632
|
ListPanel$SelectionChangeEventParameters,
|
|
20178
20633
|
ListPanel
|
|
20179
20634
|
>;
|
|
20180
20635
|
|
|
20636
|
+
/**
|
|
20637
|
+
* Event object of the PieItem#click event.
|
|
20638
|
+
*
|
|
20639
|
+
* @deprecated (since 1.31) - This event should no longer be used. Click event from Pie and Pies now includes
|
|
20640
|
+
* Pie Item index when event occurs.
|
|
20641
|
+
*/
|
|
20181
20642
|
type PieItem$ClickEvent = sap.ui.base.Event<
|
|
20182
20643
|
PieItem$ClickEventParameters,
|
|
20183
20644
|
PieItem
|
|
20184
20645
|
>;
|
|
20185
20646
|
|
|
20647
|
+
/**
|
|
20648
|
+
* Event object of the Region#click event.
|
|
20649
|
+
*/
|
|
20186
20650
|
type Region$ClickEvent = sap.ui.base.Event<
|
|
20187
20651
|
Region$ClickEventParameters,
|
|
20188
20652
|
Region
|
|
20189
20653
|
>;
|
|
20190
20654
|
|
|
20655
|
+
/**
|
|
20656
|
+
* Event object of the Region#contextMenu event.
|
|
20657
|
+
*/
|
|
20191
20658
|
type Region$ContextMenuEvent = sap.ui.base.Event<
|
|
20192
20659
|
Region$ContextMenuEventParameters,
|
|
20193
20660
|
Region
|
|
20194
20661
|
>;
|
|
20195
20662
|
|
|
20663
|
+
/**
|
|
20664
|
+
* Event object of the Routes#click event.
|
|
20665
|
+
*/
|
|
20196
20666
|
type Routes$ClickEvent = sap.ui.base.Event<
|
|
20197
20667
|
Routes$ClickEventParameters,
|
|
20198
20668
|
Routes
|
|
20199
20669
|
>;
|
|
20200
20670
|
|
|
20671
|
+
/**
|
|
20672
|
+
* Event object of the Routes#contextMenu event.
|
|
20673
|
+
*/
|
|
20201
20674
|
type Routes$ContextMenuEvent = sap.ui.base.Event<
|
|
20202
20675
|
Routes$ContextMenuEventParameters,
|
|
20203
20676
|
Routes
|
|
20204
20677
|
>;
|
|
20205
20678
|
|
|
20679
|
+
/**
|
|
20680
|
+
* Event object of the Routes#drop event.
|
|
20681
|
+
*/
|
|
20206
20682
|
type Routes$DropEvent = sap.ui.base.Event<
|
|
20207
20683
|
Routes$DropEventParameters,
|
|
20208
20684
|
Routes
|
|
20209
20685
|
>;
|
|
20210
20686
|
|
|
20687
|
+
/**
|
|
20688
|
+
* Event object of the VBI#changeTrackingMode event.
|
|
20689
|
+
*/
|
|
20211
20690
|
type VBI$ChangeTrackingModeEvent = sap.ui.base.Event<
|
|
20212
20691
|
VBI$ChangeTrackingModeEventParameters,
|
|
20213
20692
|
VBI
|
|
20214
20693
|
>;
|
|
20215
20694
|
|
|
20695
|
+
/**
|
|
20696
|
+
* Event object of the VBI#closeWindow event.
|
|
20697
|
+
*/
|
|
20216
20698
|
type VBI$CloseWindowEvent = sap.ui.base.Event<
|
|
20217
20699
|
VBI$CloseWindowEventParameters,
|
|
20218
20700
|
VBI
|
|
20219
20701
|
>;
|
|
20220
20702
|
|
|
20703
|
+
/**
|
|
20704
|
+
* Event object of the VBI#containerCreated event.
|
|
20705
|
+
*/
|
|
20221
20706
|
type VBI$ContainerCreatedEvent = sap.ui.base.Event<
|
|
20222
20707
|
VBI$ContainerCreatedEventParameters,
|
|
20223
20708
|
VBI
|
|
20224
20709
|
>;
|
|
20225
20710
|
|
|
20711
|
+
/**
|
|
20712
|
+
* Event object of the VBI#containerDestroyed event.
|
|
20713
|
+
*/
|
|
20226
20714
|
type VBI$ContainerDestroyedEvent = sap.ui.base.Event<
|
|
20227
20715
|
VBI$ContainerDestroyedEventParameters,
|
|
20228
20716
|
VBI
|
|
20229
20717
|
>;
|
|
20230
20718
|
|
|
20719
|
+
/**
|
|
20720
|
+
* Event object of the VBI#move event.
|
|
20721
|
+
*/
|
|
20231
20722
|
type VBI$MoveEvent = sap.ui.base.Event<VBI$MoveEventParameters, VBI>;
|
|
20232
20723
|
|
|
20724
|
+
/**
|
|
20725
|
+
* Event object of the VBI#openWindow event.
|
|
20726
|
+
*/
|
|
20233
20727
|
type VBI$OpenWindowEvent = sap.ui.base.Event<
|
|
20234
20728
|
VBI$OpenWindowEventParameters,
|
|
20235
20729
|
VBI
|
|
20236
20730
|
>;
|
|
20237
20731
|
|
|
20732
|
+
/**
|
|
20733
|
+
* Event object of the VBI#render event.
|
|
20734
|
+
*/
|
|
20238
20735
|
type VBI$RenderEvent = sap.ui.base.Event<VBI$RenderEventParameters, VBI>;
|
|
20239
20736
|
|
|
20737
|
+
/**
|
|
20738
|
+
* Event object of the VBI#submit event.
|
|
20739
|
+
*/
|
|
20240
20740
|
type VBI$SubmitEvent = sap.ui.base.Event<VBI$SubmitEventParameters, VBI>;
|
|
20241
20741
|
|
|
20742
|
+
/**
|
|
20743
|
+
* Event object of the VBI#thumbnailClick event.
|
|
20744
|
+
*/
|
|
20242
20745
|
type VBI$ThumbnailClickEvent = sap.ui.base.Event<
|
|
20243
20746
|
VBI$ThumbnailClickEventParameters,
|
|
20244
20747
|
VBI
|
|
20245
20748
|
>;
|
|
20246
20749
|
|
|
20750
|
+
/**
|
|
20751
|
+
* Event object of the VBI#zoom event.
|
|
20752
|
+
*/
|
|
20247
20753
|
type VBI$ZoomEvent = sap.ui.base.Event<VBI$ZoomEventParameters, VBI>;
|
|
20248
20754
|
|
|
20755
|
+
/**
|
|
20756
|
+
* Event object of the Viewport#cameraChange event.
|
|
20757
|
+
*/
|
|
20249
20758
|
type Viewport$CameraChangeEvent = sap.ui.base.Event<
|
|
20250
20759
|
Viewport$CameraChangeEventParameters,
|
|
20251
20760
|
Viewport
|
|
20252
20761
|
>;
|
|
20253
20762
|
|
|
20763
|
+
/**
|
|
20764
|
+
* Event object of the VoAggregation#click event.
|
|
20765
|
+
*/
|
|
20254
20766
|
type VoAggregation$ClickEvent = sap.ui.base.Event<
|
|
20255
20767
|
VoAggregation$ClickEventParameters,
|
|
20256
20768
|
VoAggregation
|
|
20257
20769
|
>;
|
|
20258
20770
|
|
|
20771
|
+
/**
|
|
20772
|
+
* Event object of the VoAggregation#contextMenu event.
|
|
20773
|
+
*/
|
|
20259
20774
|
type VoAggregation$ContextMenuEvent = sap.ui.base.Event<
|
|
20260
20775
|
VoAggregation$ContextMenuEventParameters,
|
|
20261
20776
|
VoAggregation
|
|
20262
20777
|
>;
|
|
20263
20778
|
|
|
20779
|
+
/**
|
|
20780
|
+
* Event object of the VoAggregation#deselect event.
|
|
20781
|
+
*/
|
|
20264
20782
|
type VoAggregation$DeselectEvent = sap.ui.base.Event<
|
|
20265
20783
|
VoAggregation$DeselectEventParameters,
|
|
20266
20784
|
VoAggregation
|
|
20267
20785
|
>;
|
|
20268
20786
|
|
|
20787
|
+
/**
|
|
20788
|
+
* Event object of the VoAggregation#drop event.
|
|
20789
|
+
*/
|
|
20269
20790
|
type VoAggregation$DropEvent = sap.ui.base.Event<
|
|
20270
20791
|
VoAggregation$DropEventParameters,
|
|
20271
20792
|
VoAggregation
|
|
20272
20793
|
>;
|
|
20273
20794
|
|
|
20795
|
+
/**
|
|
20796
|
+
* Event object of the VoAggregation#handleClick event.
|
|
20797
|
+
*/
|
|
20274
20798
|
type VoAggregation$HandleClickEvent = sap.ui.base.Event<
|
|
20275
20799
|
VoAggregation$HandleClickEventParameters,
|
|
20276
20800
|
VoAggregation
|
|
20277
20801
|
>;
|
|
20278
20802
|
|
|
20803
|
+
/**
|
|
20804
|
+
* Event object of the VoAggregation#handleContextMenu event.
|
|
20805
|
+
*/
|
|
20279
20806
|
type VoAggregation$HandleContextMenuEvent = sap.ui.base.Event<
|
|
20280
20807
|
VoAggregation$HandleContextMenuEventParameters,
|
|
20281
20808
|
VoAggregation
|
|
20282
20809
|
>;
|
|
20283
20810
|
|
|
20811
|
+
/**
|
|
20812
|
+
* Event object of the VoAggregation#handleMoved event.
|
|
20813
|
+
*/
|
|
20284
20814
|
type VoAggregation$HandleMovedEvent = sap.ui.base.Event<
|
|
20285
20815
|
VoAggregation$HandleMovedEventParameters,
|
|
20286
20816
|
VoAggregation
|
|
20287
20817
|
>;
|
|
20288
20818
|
|
|
20819
|
+
/**
|
|
20820
|
+
* Event object of the VoAggregation#select event.
|
|
20821
|
+
*/
|
|
20289
20822
|
type VoAggregation$SelectEvent = sap.ui.base.Event<
|
|
20290
20823
|
VoAggregation$SelectEventParameters,
|
|
20291
20824
|
VoAggregation
|
|
20292
20825
|
>;
|
|
20293
20826
|
|
|
20827
|
+
/**
|
|
20828
|
+
* Event object of the VoBase#click event.
|
|
20829
|
+
*/
|
|
20294
20830
|
type VoBase$ClickEvent = sap.ui.base.Event<
|
|
20295
20831
|
VoBase$ClickEventParameters,
|
|
20296
20832
|
VoBase
|
|
20297
20833
|
>;
|
|
20298
20834
|
|
|
20835
|
+
/**
|
|
20836
|
+
* Event object of the VoBase#contextMenu event.
|
|
20837
|
+
*/
|
|
20299
20838
|
type VoBase$ContextMenuEvent = sap.ui.base.Event<
|
|
20300
20839
|
VoBase$ContextMenuEventParameters,
|
|
20301
20840
|
VoBase
|
|
20302
20841
|
>;
|
|
20303
20842
|
|
|
20843
|
+
/**
|
|
20844
|
+
* Event object of the VoBase#drop event.
|
|
20845
|
+
*/
|
|
20304
20846
|
type VoBase$DropEvent = sap.ui.base.Event<
|
|
20305
20847
|
VoBase$DropEventParameters,
|
|
20306
20848
|
VoBase
|
|
20307
20849
|
>;
|
|
20308
20850
|
|
|
20851
|
+
/**
|
|
20852
|
+
* Event object of the VoBase#handleClick event.
|
|
20853
|
+
*/
|
|
20309
20854
|
type VoBase$HandleClickEvent = sap.ui.base.Event<
|
|
20310
20855
|
VoBase$HandleClickEventParameters,
|
|
20311
20856
|
VoBase
|
|
20312
20857
|
>;
|
|
20313
20858
|
|
|
20859
|
+
/**
|
|
20860
|
+
* Event object of the VoBase#handleContextMenu event.
|
|
20861
|
+
*/
|
|
20314
20862
|
type VoBase$HandleContextMenuEvent = sap.ui.base.Event<
|
|
20315
20863
|
VoBase$HandleContextMenuEventParameters,
|
|
20316
20864
|
VoBase
|
|
20317
20865
|
>;
|
|
20318
20866
|
|
|
20867
|
+
/**
|
|
20868
|
+
* Event object of the VoBase#handleMoved event.
|
|
20869
|
+
*/
|
|
20319
20870
|
type VoBase$HandleMovedEvent = sap.ui.base.Event<
|
|
20320
20871
|
VoBase$HandleMovedEventParameters,
|
|
20321
20872
|
VoBase
|