@sapui5/types 1.115.0 → 1.116.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/README.md +5 -3
- package/package.json +1 -1
- package/types/index.d.ts +11 -3
- package/types/sap.apf.d.ts +47 -40
- package/types/sap.ca.ui.d.ts +171 -161
- package/types/sap.chart.d.ts +56 -47
- package/types/sap.collaboration.d.ts +31 -38
- package/types/sap.esh.search.ui.d.ts +112 -109
- package/types/sap.f.d.ts +718 -786
- package/types/sap.fe.core.d.ts +206 -92
- package/types/sap.fe.macros.d.ts +66 -40
- package/types/sap.fe.navigation.d.ts +9 -13
- package/types/sap.fe.placeholder.d.ts +3 -0
- package/types/sap.fe.templates.d.ts +11 -9
- package/types/sap.fe.test.d.ts +40 -69
- package/types/sap.fe.tools.d.ts +3 -0
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1223 -1502
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.landvisz.d.ts +73 -67
- package/types/sap.m.d.ts +6504 -6706
- package/types/sap.makit.d.ts +55 -56
- package/types/sap.me.d.ts +71 -79
- package/types/sap.ndc.d.ts +44 -36
- package/types/sap.ovp.d.ts +25 -8
- package/types/sap.rules.ui.d.ts +38 -51
- package/types/sap.sac.df.d.ts +11 -12
- package/types/sap.suite.ui.commons.d.ts +1180 -1233
- package/types/sap.suite.ui.generic.template.d.ts +75 -82
- package/types/sap.suite.ui.microchart.d.ts +280 -291
- package/types/sap.tnt.d.ts +119 -86
- package/types/sap.ui.codeeditor.d.ts +28 -25
- package/types/sap.ui.commons.d.ts +691 -684
- package/types/sap.ui.comp.d.ts +2247 -2189
- package/types/sap.ui.core.d.ts +2434 -2444
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +38 -33
- package/types/sap.ui.fl.d.ts +55 -82
- package/types/sap.ui.generic.app.d.ts +39 -43
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +401 -292
- package/types/sap.ui.layout.d.ts +369 -420
- package/types/sap.ui.mdc.d.ts +1557 -1344
- package/types/sap.ui.richtexteditor.d.ts +40 -33
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +13 -11
- package/types/sap.ui.support.d.ts +12 -13
- package/types/sap.ui.table.d.ts +366 -368
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +961 -1007
- package/types/sap.ui.ux3.d.ts +663 -653
- package/types/sap.ui.vbm.d.ts +568 -541
- package/types/sap.ui.vk.d.ts +1511 -1834
- package/types/sap.ui.vtm.d.ts +335 -329
- package/types/sap.ui.webc.common.d.ts +7 -9
- package/types/sap.ui.webc.fiori.d.ts +1099 -509
- package/types/sap.ui.webc.main.d.ts +4937 -1323
- package/types/sap.uiext.inbox.d.ts +73 -63
- package/types/sap.ushell.d.ts +492 -1024
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +244 -277
- package/types/sap.viz.d.ts +993 -856
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +7 -12
- package/types/sap.zen.crosstab.d.ts +4 -7
- package/types/sap.zen.dsh.d.ts +133 -157
package/types/sap.ui.vbm.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vbm/library" {
|
|
4
4
|
/**
|
|
@@ -81,18 +81,18 @@ declare module "sap/ui/vbm/library" {
|
|
|
81
81
|
declare module "sap/ui/vbm/Adapter" {
|
|
82
82
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
83
83
|
|
|
84
|
-
import Event from "sap/ui/base/Event";
|
|
85
|
-
|
|
86
84
|
import { ID } from "sap/ui/core/library";
|
|
87
85
|
|
|
88
86
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
89
87
|
|
|
90
88
|
import GeoMap from "sap/ui/vbm/GeoMap";
|
|
91
89
|
|
|
90
|
+
import Event from "sap/ui/base/Event";
|
|
91
|
+
|
|
92
92
|
/**
|
|
93
93
|
* Provides the ability to load VBI JSON into {@link sap.ui.vbm.GeoMap sap.ui.vbm.GeoMap} control.
|
|
94
94
|
*/
|
|
95
|
-
class Adapter extends UI5Element {
|
|
95
|
+
export default class Adapter extends UI5Element {
|
|
96
96
|
/**
|
|
97
97
|
* Constructor for a new GeoMap Adapter.
|
|
98
98
|
*
|
|
@@ -173,7 +173,7 @@ declare module "sap/ui/vbm/Adapter" {
|
|
|
173
173
|
/**
|
|
174
174
|
* The function to be called when the event occurs
|
|
175
175
|
*/
|
|
176
|
-
fnFunction: (p1:
|
|
176
|
+
fnFunction: (p1: Adapter$SubmitEvent) => void,
|
|
177
177
|
/**
|
|
178
178
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Adapter` itself
|
|
179
179
|
*/
|
|
@@ -194,7 +194,7 @@ declare module "sap/ui/vbm/Adapter" {
|
|
|
194
194
|
/**
|
|
195
195
|
* The function to be called when the event occurs
|
|
196
196
|
*/
|
|
197
|
-
fnFunction: (p1:
|
|
197
|
+
fnFunction: (p1: Adapter$SubmitEvent) => void,
|
|
198
198
|
/**
|
|
199
199
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Adapter` itself
|
|
200
200
|
*/
|
|
@@ -211,14 +211,14 @@ declare module "sap/ui/vbm/Adapter" {
|
|
|
211
211
|
/**
|
|
212
212
|
* The function to be called, when the event occurs
|
|
213
213
|
*/
|
|
214
|
-
fnFunction: (p1:
|
|
214
|
+
fnFunction: (p1: Adapter$SubmitEvent) => void,
|
|
215
215
|
/**
|
|
216
216
|
* Context object on which the given function had to be called
|
|
217
217
|
*/
|
|
218
218
|
oListener?: object
|
|
219
219
|
): this;
|
|
220
220
|
/**
|
|
221
|
-
* @
|
|
221
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
222
222
|
*
|
|
223
223
|
* Fires event {@link #event:submit submit} to attached listeners.
|
|
224
224
|
*
|
|
@@ -228,7 +228,7 @@ declare module "sap/ui/vbm/Adapter" {
|
|
|
228
228
|
/**
|
|
229
229
|
* Parameters to pass along with the event
|
|
230
230
|
*/
|
|
231
|
-
mParameters?: $
|
|
231
|
+
mParameters?: Adapter$SubmitEventParameters
|
|
232
232
|
): this;
|
|
233
233
|
/**
|
|
234
234
|
* ID of the element which is the current target of the association {@link #getMap map}, or `null`.
|
|
@@ -258,7 +258,6 @@ declare module "sap/ui/vbm/Adapter" {
|
|
|
258
258
|
oMap: ID | GeoMap
|
|
259
259
|
): this;
|
|
260
260
|
}
|
|
261
|
-
export default Adapter;
|
|
262
261
|
|
|
263
262
|
export interface $AdapterSettings extends $ElementSettings {
|
|
264
263
|
/**
|
|
@@ -271,29 +270,31 @@ declare module "sap/ui/vbm/Adapter" {
|
|
|
271
270
|
* The event is raised when a when the Adapter receives an event from GeoMap control. It is intended to
|
|
272
271
|
* unify the various GeoMap events as provided by VBI.
|
|
273
272
|
*/
|
|
274
|
-
submit?: (oEvent:
|
|
273
|
+
submit?: (oEvent: Adapter$SubmitEvent) => void;
|
|
275
274
|
}
|
|
276
275
|
|
|
277
|
-
export interface $
|
|
276
|
+
export interface Adapter$SubmitEventParameters {
|
|
278
277
|
data?: string;
|
|
279
278
|
}
|
|
279
|
+
|
|
280
|
+
export type Adapter$SubmitEvent = Event<Adapter$SubmitEventParameters>;
|
|
280
281
|
}
|
|
281
282
|
|
|
282
283
|
declare module "sap/ui/vbm/Adapter3D" {
|
|
283
284
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
284
285
|
|
|
285
|
-
import Event from "sap/ui/base/Event";
|
|
286
|
-
|
|
287
286
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
288
287
|
|
|
289
288
|
import { ID } from "sap/ui/core/library";
|
|
290
289
|
|
|
291
290
|
import Viewport from "sap/ui/vbm/Viewport";
|
|
292
291
|
|
|
292
|
+
import Event from "sap/ui/base/Event";
|
|
293
|
+
|
|
293
294
|
/**
|
|
294
295
|
* Provides the ability to load VBI JSON into {@link sap.ui.vbm.Viewport sap.ui.vbm.Viewport} control.
|
|
295
296
|
*/
|
|
296
|
-
class Adapter3D extends UI5Element {
|
|
297
|
+
export default class Adapter3D extends UI5Element {
|
|
297
298
|
/**
|
|
298
299
|
* Constructor for a new Visual Business Adapter 3D.
|
|
299
300
|
*
|
|
@@ -373,7 +374,7 @@ declare module "sap/ui/vbm/Adapter3D" {
|
|
|
373
374
|
/**
|
|
374
375
|
* The function to be called when the event occurs
|
|
375
376
|
*/
|
|
376
|
-
fnFunction: (p1:
|
|
377
|
+
fnFunction: (p1: Adapter3D$SubmitEvent) => void,
|
|
377
378
|
/**
|
|
378
379
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Adapter3D` itself
|
|
379
380
|
*/
|
|
@@ -393,7 +394,7 @@ declare module "sap/ui/vbm/Adapter3D" {
|
|
|
393
394
|
/**
|
|
394
395
|
* The function to be called when the event occurs
|
|
395
396
|
*/
|
|
396
|
-
fnFunction: (p1:
|
|
397
|
+
fnFunction: (p1: Adapter3D$SubmitEvent) => void,
|
|
397
398
|
/**
|
|
398
399
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Adapter3D` itself
|
|
399
400
|
*/
|
|
@@ -410,14 +411,14 @@ declare module "sap/ui/vbm/Adapter3D" {
|
|
|
410
411
|
/**
|
|
411
412
|
* The function to be called, when the event occurs
|
|
412
413
|
*/
|
|
413
|
-
fnFunction: (p1:
|
|
414
|
+
fnFunction: (p1: Adapter3D$SubmitEvent) => void,
|
|
414
415
|
/**
|
|
415
416
|
* Context object on which the given function had to be called
|
|
416
417
|
*/
|
|
417
418
|
oListener?: object
|
|
418
419
|
): this;
|
|
419
420
|
/**
|
|
420
|
-
* @
|
|
421
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
421
422
|
*
|
|
422
423
|
* Fires event {@link #event:submit submit} to attached listeners.
|
|
423
424
|
*
|
|
@@ -427,7 +428,7 @@ declare module "sap/ui/vbm/Adapter3D" {
|
|
|
427
428
|
/**
|
|
428
429
|
* Parameters to pass along with the event
|
|
429
430
|
*/
|
|
430
|
-
mParameters?: $
|
|
431
|
+
mParameters?: Adapter3D$SubmitEventParameters
|
|
431
432
|
): this;
|
|
432
433
|
/**
|
|
433
434
|
* ID of the element which is the current target of the association {@link #getViewport viewport}, or `null`.
|
|
@@ -459,7 +460,6 @@ declare module "sap/ui/vbm/Adapter3D" {
|
|
|
459
460
|
oViewport: ID | Viewport
|
|
460
461
|
): this;
|
|
461
462
|
}
|
|
462
|
-
export default Adapter3D;
|
|
463
463
|
|
|
464
464
|
export interface $Adapter3DSettings extends $ElementSettings {
|
|
465
465
|
/**
|
|
@@ -471,15 +471,17 @@ declare module "sap/ui/vbm/Adapter3D" {
|
|
|
471
471
|
/**
|
|
472
472
|
* This event is fired when interactions in the viewport happen.
|
|
473
473
|
*/
|
|
474
|
-
submit?: (oEvent:
|
|
474
|
+
submit?: (oEvent: Adapter3D$SubmitEvent) => void;
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
-
export interface $
|
|
477
|
+
export interface Adapter3D$SubmitEventParameters {
|
|
478
478
|
/**
|
|
479
479
|
* A string in the VBI JSON format.
|
|
480
480
|
*/
|
|
481
481
|
data?: string;
|
|
482
482
|
}
|
|
483
|
+
|
|
484
|
+
export type Adapter3D$SubmitEvent = Event<Adapter3D$SubmitEventParameters>;
|
|
483
485
|
}
|
|
484
486
|
|
|
485
487
|
declare module "sap/ui/vbm/AnalyticMap" {
|
|
@@ -504,7 +506,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
504
506
|
* By adding Region elements to the regions aggregation it is possible to make feature from the GeoJSON
|
|
505
507
|
* interactive. Region elements need to match by ISO code.
|
|
506
508
|
*/
|
|
507
|
-
class AnalyticMap extends GeoMap {
|
|
509
|
+
export default class AnalyticMap extends GeoMap {
|
|
508
510
|
/**
|
|
509
511
|
* Constructor for a new AnalyticMap.
|
|
510
512
|
*
|
|
@@ -595,7 +597,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
595
597
|
/**
|
|
596
598
|
* The function to be called when the event occurs
|
|
597
599
|
*/
|
|
598
|
-
fnFunction: (p1:
|
|
600
|
+
fnFunction: (p1: AnalyticMap$RegionClickEvent) => void,
|
|
599
601
|
/**
|
|
600
602
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.AnalyticMap` itself
|
|
601
603
|
*/
|
|
@@ -615,7 +617,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
615
617
|
/**
|
|
616
618
|
* The function to be called when the event occurs
|
|
617
619
|
*/
|
|
618
|
-
fnFunction: (p1:
|
|
620
|
+
fnFunction: (p1: AnalyticMap$RegionClickEvent) => void,
|
|
619
621
|
/**
|
|
620
622
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.AnalyticMap` itself
|
|
621
623
|
*/
|
|
@@ -641,9 +643,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
641
643
|
/**
|
|
642
644
|
* The function to be called when the event occurs
|
|
643
645
|
*/
|
|
644
|
-
fnFunction: (
|
|
645
|
-
p1: Event<$AnalyticMapRegionContextMenuEventParameters>
|
|
646
|
-
) => void,
|
|
646
|
+
fnFunction: (p1: AnalyticMap$RegionContextMenuEvent) => void,
|
|
647
647
|
/**
|
|
648
648
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.AnalyticMap` itself
|
|
649
649
|
*/
|
|
@@ -664,9 +664,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
664
664
|
/**
|
|
665
665
|
* The function to be called when the event occurs
|
|
666
666
|
*/
|
|
667
|
-
fnFunction: (
|
|
668
|
-
p1: Event<$AnalyticMapRegionContextMenuEventParameters>
|
|
669
|
-
) => void,
|
|
667
|
+
fnFunction: (p1: AnalyticMap$RegionContextMenuEvent) => void,
|
|
670
668
|
/**
|
|
671
669
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.AnalyticMap` itself
|
|
672
670
|
*/
|
|
@@ -781,7 +779,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
781
779
|
/**
|
|
782
780
|
* The function to be called, when the event occurs
|
|
783
781
|
*/
|
|
784
|
-
fnFunction: (p1:
|
|
782
|
+
fnFunction: (p1: AnalyticMap$RegionClickEvent) => void,
|
|
785
783
|
/**
|
|
786
784
|
* Context object on which the given function had to be called
|
|
787
785
|
*/
|
|
@@ -799,9 +797,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
799
797
|
/**
|
|
800
798
|
* The function to be called, when the event occurs
|
|
801
799
|
*/
|
|
802
|
-
fnFunction: (
|
|
803
|
-
p1: Event<$AnalyticMapRegionContextMenuEventParameters>
|
|
804
|
-
) => void,
|
|
800
|
+
fnFunction: (p1: AnalyticMap$RegionContextMenuEvent) => void,
|
|
805
801
|
/**
|
|
806
802
|
* Context object on which the given function had to be called
|
|
807
803
|
*/
|
|
@@ -843,7 +839,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
843
839
|
oListener?: object
|
|
844
840
|
): this;
|
|
845
841
|
/**
|
|
846
|
-
* @
|
|
842
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
847
843
|
*
|
|
848
844
|
* Fires event {@link #event:regionClick regionClick} to attached listeners.
|
|
849
845
|
*
|
|
@@ -853,10 +849,10 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
853
849
|
/**
|
|
854
850
|
* Parameters to pass along with the event
|
|
855
851
|
*/
|
|
856
|
-
mParameters?: $
|
|
852
|
+
mParameters?: AnalyticMap$RegionClickEventParameters
|
|
857
853
|
): this;
|
|
858
854
|
/**
|
|
859
|
-
* @
|
|
855
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
860
856
|
*
|
|
861
857
|
* Fires event {@link #event:regionContextMenu regionContextMenu} to attached listeners.
|
|
862
858
|
*
|
|
@@ -866,10 +862,10 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
866
862
|
/**
|
|
867
863
|
* Parameters to pass along with the event
|
|
868
864
|
*/
|
|
869
|
-
mParameters?: $
|
|
865
|
+
mParameters?: AnalyticMap$RegionContextMenuEventParameters
|
|
870
866
|
): this;
|
|
871
867
|
/**
|
|
872
|
-
* @
|
|
868
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
873
869
|
*
|
|
874
870
|
* Fires event {@link #event:regionDeselect regionDeselect} to attached listeners.
|
|
875
871
|
*
|
|
@@ -882,7 +878,7 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
882
878
|
mParameters?: object
|
|
883
879
|
): this;
|
|
884
880
|
/**
|
|
885
|
-
* @
|
|
881
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
886
882
|
*
|
|
887
883
|
* Fires event {@link #event:regionSelect regionSelect} to attached listeners.
|
|
888
884
|
*
|
|
@@ -977,7 +973,6 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
977
973
|
oCorr: object
|
|
978
974
|
): void;
|
|
979
975
|
}
|
|
980
|
-
export default AnalyticMap;
|
|
981
976
|
|
|
982
977
|
export interface $AnalyticMapSettings extends $GeoMapSettings {
|
|
983
978
|
/**
|
|
@@ -989,16 +984,12 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
989
984
|
/**
|
|
990
985
|
* The event is raised when there is a click or a tap on a region.
|
|
991
986
|
*/
|
|
992
|
-
regionClick?: (
|
|
993
|
-
oEvent: Event<$AnalyticMapRegionClickEventParameters>
|
|
994
|
-
) => void;
|
|
987
|
+
regionClick?: (oEvent: AnalyticMap$RegionClickEvent) => void;
|
|
995
988
|
|
|
996
989
|
/**
|
|
997
990
|
* The event is raised when there is a right click or a tap and hold action on a region.
|
|
998
991
|
*/
|
|
999
|
-
regionContextMenu?: (
|
|
1000
|
-
oEvent: Event<$AnalyticMapRegionContextMenuEventParameters>
|
|
1001
|
-
) => void;
|
|
992
|
+
regionContextMenu?: (oEvent: AnalyticMap$RegionContextMenuEvent) => void;
|
|
1002
993
|
|
|
1003
994
|
/**
|
|
1004
995
|
* Raised when regions get selected
|
|
@@ -1011,23 +1002,31 @@ declare module "sap/ui/vbm/AnalyticMap" {
|
|
|
1011
1002
|
regionDeselect?: (oEvent: Event) => void;
|
|
1012
1003
|
}
|
|
1013
1004
|
|
|
1014
|
-
export interface $
|
|
1005
|
+
export interface AnalyticMap$RegionClickEventParameters {
|
|
1015
1006
|
/**
|
|
1016
1007
|
* The regions code.
|
|
1017
1008
|
*/
|
|
1018
1009
|
code?: string;
|
|
1019
1010
|
}
|
|
1020
1011
|
|
|
1021
|
-
export
|
|
1012
|
+
export type AnalyticMap$RegionClickEvent = Event<AnalyticMap$RegionClickEventParameters>;
|
|
1013
|
+
|
|
1014
|
+
export interface AnalyticMap$RegionContextMenuEventParameters {
|
|
1022
1015
|
/**
|
|
1023
1016
|
* The regions code.
|
|
1024
1017
|
*/
|
|
1025
1018
|
code?: string;
|
|
1026
1019
|
}
|
|
1027
1020
|
|
|
1028
|
-
export
|
|
1021
|
+
export type AnalyticMap$RegionContextMenuEvent = Event<AnalyticMap$RegionContextMenuEventParameters>;
|
|
1022
|
+
|
|
1023
|
+
export interface AnalyticMap$RegionDeselectEventParameters {}
|
|
1024
|
+
|
|
1025
|
+
export type AnalyticMap$RegionDeselectEvent = Event<AnalyticMap$RegionDeselectEventParameters>;
|
|
1026
|
+
|
|
1027
|
+
export interface AnalyticMap$RegionSelectEventParameters {}
|
|
1029
1028
|
|
|
1030
|
-
export
|
|
1029
|
+
export type AnalyticMap$RegionSelectEvent = Event<AnalyticMap$RegionSelectEventParameters>;
|
|
1031
1030
|
}
|
|
1032
1031
|
|
|
1033
1032
|
declare module "sap/ui/vbm/Area" {
|
|
@@ -1047,7 +1046,7 @@ declare module "sap/ui/vbm/Area" {
|
|
|
1047
1046
|
* Since the actual size of an area depends on the zoom level it might be only partly visible. Thus detail
|
|
1048
1047
|
* windows will open at the click position.
|
|
1049
1048
|
*/
|
|
1050
|
-
class Area extends VoBase {
|
|
1049
|
+
export default class Area extends VoBase {
|
|
1051
1050
|
/**
|
|
1052
1051
|
* Constructor for a new Area.
|
|
1053
1052
|
*
|
|
@@ -1236,7 +1235,7 @@ declare module "sap/ui/vbm/Area" {
|
|
|
1236
1235
|
oListener?: object
|
|
1237
1236
|
): this;
|
|
1238
1237
|
/**
|
|
1239
|
-
* @
|
|
1238
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1240
1239
|
*
|
|
1241
1240
|
* Fires event {@link #event:edgeClick edgeClick} to attached listeners.
|
|
1242
1241
|
*
|
|
@@ -1249,7 +1248,7 @@ declare module "sap/ui/vbm/Area" {
|
|
|
1249
1248
|
mParameters?: object
|
|
1250
1249
|
): this;
|
|
1251
1250
|
/**
|
|
1252
|
-
* @
|
|
1251
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1253
1252
|
*
|
|
1254
1253
|
* Fires event {@link #event:edgeContextMenu edgeContextMenu} to attached listeners.
|
|
1255
1254
|
*
|
|
@@ -1364,7 +1363,6 @@ declare module "sap/ui/vbm/Area" {
|
|
|
1364
1363
|
sPosition?: string
|
|
1365
1364
|
): this;
|
|
1366
1365
|
}
|
|
1367
|
-
export default Area;
|
|
1368
1366
|
|
|
1369
1367
|
export interface $AreaSettings extends $VoBaseSettings {
|
|
1370
1368
|
/**
|
|
@@ -1403,9 +1401,13 @@ declare module "sap/ui/vbm/Area" {
|
|
|
1403
1401
|
edgeContextMenu?: (oEvent: Event) => void;
|
|
1404
1402
|
}
|
|
1405
1403
|
|
|
1406
|
-
export interface $
|
|
1404
|
+
export interface Area$EdgeClickEventParameters {}
|
|
1407
1405
|
|
|
1408
|
-
export
|
|
1406
|
+
export type Area$EdgeClickEvent = Event<Area$EdgeClickEventParameters>;
|
|
1407
|
+
|
|
1408
|
+
export interface Area$EdgeContextMenuEventParameters {}
|
|
1409
|
+
|
|
1410
|
+
export type Area$EdgeContextMenuEvent = Event<Area$EdgeContextMenuEventParameters>;
|
|
1409
1411
|
}
|
|
1410
1412
|
|
|
1411
1413
|
declare module "sap/ui/vbm/Areas" {
|
|
@@ -1416,8 +1418,6 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1416
1418
|
|
|
1417
1419
|
import Area from "sap/ui/vbm/Area";
|
|
1418
1420
|
|
|
1419
|
-
import Event from "sap/ui/base/Event";
|
|
1420
|
-
|
|
1421
1421
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1422
1422
|
|
|
1423
1423
|
import {
|
|
@@ -1425,10 +1425,12 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1425
1425
|
AggregationBindingInfo,
|
|
1426
1426
|
} from "sap/ui/base/ManagedObject";
|
|
1427
1427
|
|
|
1428
|
+
import Event from "sap/ui/base/Event";
|
|
1429
|
+
|
|
1428
1430
|
/**
|
|
1429
1431
|
* Type specific Visual Object aggregation for Area instances.
|
|
1430
1432
|
*/
|
|
1431
|
-
class Areas extends VoAggregation {
|
|
1433
|
+
export default class Areas extends VoAggregation {
|
|
1432
1434
|
/**
|
|
1433
1435
|
* Constructor for a new Areas.
|
|
1434
1436
|
*
|
|
@@ -1519,7 +1521,7 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1519
1521
|
/**
|
|
1520
1522
|
* The function to be called when the event occurs
|
|
1521
1523
|
*/
|
|
1522
|
-
fnFunction: (p1:
|
|
1524
|
+
fnFunction: (p1: Areas$EdgeClickEvent) => void,
|
|
1523
1525
|
/**
|
|
1524
1526
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Areas` itself
|
|
1525
1527
|
*/
|
|
@@ -1539,7 +1541,7 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1539
1541
|
/**
|
|
1540
1542
|
* The function to be called when the event occurs
|
|
1541
1543
|
*/
|
|
1542
|
-
fnFunction: (p1:
|
|
1544
|
+
fnFunction: (p1: Areas$EdgeClickEvent) => void,
|
|
1543
1545
|
/**
|
|
1544
1546
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Areas` itself
|
|
1545
1547
|
*/
|
|
@@ -1565,7 +1567,7 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1565
1567
|
/**
|
|
1566
1568
|
* The function to be called when the event occurs
|
|
1567
1569
|
*/
|
|
1568
|
-
fnFunction: (p1:
|
|
1570
|
+
fnFunction: (p1: Areas$EdgeContextMenuEvent) => void,
|
|
1569
1571
|
/**
|
|
1570
1572
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Areas` itself
|
|
1571
1573
|
*/
|
|
@@ -1586,7 +1588,7 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1586
1588
|
/**
|
|
1587
1589
|
* The function to be called when the event occurs
|
|
1588
1590
|
*/
|
|
1589
|
-
fnFunction: (p1:
|
|
1591
|
+
fnFunction: (p1: Areas$EdgeContextMenuEvent) => void,
|
|
1590
1592
|
/**
|
|
1591
1593
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Areas` itself
|
|
1592
1594
|
*/
|
|
@@ -1609,7 +1611,7 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1609
1611
|
/**
|
|
1610
1612
|
* The function to be called, when the event occurs
|
|
1611
1613
|
*/
|
|
1612
|
-
fnFunction: (p1:
|
|
1614
|
+
fnFunction: (p1: Areas$EdgeClickEvent) => void,
|
|
1613
1615
|
/**
|
|
1614
1616
|
* Context object on which the given function had to be called
|
|
1615
1617
|
*/
|
|
@@ -1627,14 +1629,14 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1627
1629
|
/**
|
|
1628
1630
|
* The function to be called, when the event occurs
|
|
1629
1631
|
*/
|
|
1630
|
-
fnFunction: (p1:
|
|
1632
|
+
fnFunction: (p1: Areas$EdgeContextMenuEvent) => void,
|
|
1631
1633
|
/**
|
|
1632
1634
|
* Context object on which the given function had to be called
|
|
1633
1635
|
*/
|
|
1634
1636
|
oListener?: object
|
|
1635
1637
|
): this;
|
|
1636
1638
|
/**
|
|
1637
|
-
* @
|
|
1639
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1638
1640
|
*
|
|
1639
1641
|
* Fires event {@link #event:edgeClick edgeClick} to attached listeners.
|
|
1640
1642
|
*
|
|
@@ -1644,10 +1646,10 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1644
1646
|
/**
|
|
1645
1647
|
* Parameters to pass along with the event
|
|
1646
1648
|
*/
|
|
1647
|
-
mParameters?: $
|
|
1649
|
+
mParameters?: Areas$EdgeClickEventParameters
|
|
1648
1650
|
): this;
|
|
1649
1651
|
/**
|
|
1650
|
-
* @
|
|
1652
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1651
1653
|
*
|
|
1652
1654
|
* Fires event {@link #event:edgeContextMenu edgeContextMenu} to attached listeners.
|
|
1653
1655
|
*
|
|
@@ -1657,7 +1659,7 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1657
1659
|
/**
|
|
1658
1660
|
* Parameters to pass along with the event
|
|
1659
1661
|
*/
|
|
1660
|
-
mParameters?: $
|
|
1662
|
+
mParameters?: Areas$EdgeContextMenuEventParameters
|
|
1661
1663
|
): this;
|
|
1662
1664
|
/**
|
|
1663
1665
|
* Gets content of aggregation {@link #getItems items}.
|
|
@@ -1743,7 +1745,6 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1743
1745
|
bPosChangeable?: boolean
|
|
1744
1746
|
): this;
|
|
1745
1747
|
}
|
|
1746
|
-
export default Areas;
|
|
1747
1748
|
|
|
1748
1749
|
export interface $AreasSettings extends $VoAggregationSettings {
|
|
1749
1750
|
/**
|
|
@@ -1760,17 +1761,15 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1760
1761
|
/**
|
|
1761
1762
|
* This event is raised when the edge of an Area is clicked.
|
|
1762
1763
|
*/
|
|
1763
|
-
edgeClick?: (oEvent:
|
|
1764
|
+
edgeClick?: (oEvent: Areas$EdgeClickEvent) => void;
|
|
1764
1765
|
|
|
1765
1766
|
/**
|
|
1766
1767
|
* This event is raised when the edge of an Area is right clicked.
|
|
1767
1768
|
*/
|
|
1768
|
-
edgeContextMenu?: (
|
|
1769
|
-
oEvent: Event<$AreasEdgeContextMenuEventParameters>
|
|
1770
|
-
) => void;
|
|
1769
|
+
edgeContextMenu?: (oEvent: Areas$EdgeContextMenuEvent) => void;
|
|
1771
1770
|
}
|
|
1772
1771
|
|
|
1773
|
-
export interface $
|
|
1772
|
+
export interface Areas$EdgeClickEventParameters {
|
|
1774
1773
|
/**
|
|
1775
1774
|
* Clicked instance
|
|
1776
1775
|
*/
|
|
@@ -1783,7 +1782,9 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1783
1782
|
edge?: int;
|
|
1784
1783
|
}
|
|
1785
1784
|
|
|
1786
|
-
export
|
|
1785
|
+
export type Areas$EdgeClickEvent = Event<Areas$EdgeClickEventParameters>;
|
|
1786
|
+
|
|
1787
|
+
export interface Areas$EdgeContextMenuEventParameters {
|
|
1787
1788
|
/**
|
|
1788
1789
|
* Clicked instance
|
|
1789
1790
|
*/
|
|
@@ -1795,6 +1796,8 @@ declare module "sap/ui/vbm/Areas" {
|
|
|
1795
1796
|
*/
|
|
1796
1797
|
edge?: int;
|
|
1797
1798
|
}
|
|
1799
|
+
|
|
1800
|
+
export type Areas$EdgeContextMenuEvent = Event<Areas$EdgeContextMenuEventParameters>;
|
|
1798
1801
|
}
|
|
1799
1802
|
|
|
1800
1803
|
declare module "sap/ui/vbm/Box" {
|
|
@@ -1811,7 +1814,7 @@ declare module "sap/ui/vbm/Box" {
|
|
|
1811
1814
|
* Since the actual size of a box may depend on the zoom level it might be only partly visible. Thus detail
|
|
1812
1815
|
* windows will open at the click position.
|
|
1813
1816
|
*/
|
|
1814
|
-
class Box extends VoBase {
|
|
1817
|
+
export default class Box extends VoBase {
|
|
1815
1818
|
/**
|
|
1816
1819
|
* Constructor for a new Box.
|
|
1817
1820
|
*
|
|
@@ -1981,7 +1984,6 @@ declare module "sap/ui/vbm/Box" {
|
|
|
1981
1984
|
sScale?: string
|
|
1982
1985
|
): this;
|
|
1983
1986
|
}
|
|
1984
|
-
export default Box;
|
|
1985
1987
|
|
|
1986
1988
|
export interface $BoxSettings extends $VoBaseSettings {
|
|
1987
1989
|
/**
|
|
@@ -2024,7 +2026,7 @@ declare module "sap/ui/vbm/Boxes" {
|
|
|
2024
2026
|
/**
|
|
2025
2027
|
* Type specific Visual Object aggregation for Box instances.
|
|
2026
2028
|
*/
|
|
2027
|
-
class Boxes extends VoAggregation {
|
|
2029
|
+
export default class Boxes extends VoAggregation {
|
|
2028
2030
|
/**
|
|
2029
2031
|
* Constructor for a new Boxes.
|
|
2030
2032
|
*
|
|
@@ -2215,7 +2217,6 @@ declare module "sap/ui/vbm/Boxes" {
|
|
|
2215
2217
|
bScaleChangeable?: boolean
|
|
2216
2218
|
): this;
|
|
2217
2219
|
}
|
|
2218
|
-
export default Boxes;
|
|
2219
2220
|
|
|
2220
2221
|
export interface $BoxesSettings extends $VoAggregationSettings {
|
|
2221
2222
|
/**
|
|
@@ -2248,7 +2249,7 @@ declare module "sap/ui/vbm/Circle" {
|
|
|
2248
2249
|
* Specific Visual Object element for an Circle. A Circle is positioned with its centerpoint at the
|
|
2249
2250
|
* given position. The detail window will open at the center of the circle.
|
|
2250
2251
|
*/
|
|
2251
|
-
class Circle extends VoBase {
|
|
2252
|
+
export default class Circle extends VoBase {
|
|
2252
2253
|
/**
|
|
2253
2254
|
* Constructor for a new Circle.
|
|
2254
2255
|
*
|
|
@@ -2441,7 +2442,6 @@ declare module "sap/ui/vbm/Circle" {
|
|
|
2441
2442
|
sSlices?: string
|
|
2442
2443
|
): this;
|
|
2443
2444
|
}
|
|
2444
|
-
export default Circle;
|
|
2445
2445
|
|
|
2446
2446
|
export interface $CircleSettings extends $VoBaseSettings {
|
|
2447
2447
|
/**
|
|
@@ -2489,7 +2489,7 @@ declare module "sap/ui/vbm/Circles" {
|
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Type specific Visual Object aggregation for Circle elements.
|
|
2491
2491
|
*/
|
|
2492
|
-
class Circles extends VoAggregation {
|
|
2492
|
+
export default class Circles extends VoAggregation {
|
|
2493
2493
|
/**
|
|
2494
2494
|
* Constructor for a new Circles.
|
|
2495
2495
|
*
|
|
@@ -2680,7 +2680,6 @@ declare module "sap/ui/vbm/Circles" {
|
|
|
2680
2680
|
bRadiusChangeable?: boolean
|
|
2681
2681
|
): this;
|
|
2682
2682
|
}
|
|
2683
|
-
export default Circles;
|
|
2684
2683
|
|
|
2685
2684
|
export interface $CirclesSettings extends $VoAggregationSettings {
|
|
2686
2685
|
/**
|
|
@@ -2723,7 +2722,7 @@ declare module "sap/ui/vbm/Cluster" {
|
|
|
2723
2722
|
* defined and may overrule the semantic icon; if no icon is defined ( and no type) then the semantic icon
|
|
2724
2723
|
* for type inactive is chosen.
|
|
2725
2724
|
*/
|
|
2726
|
-
class Cluster extends Control {
|
|
2725
|
+
export default class Cluster extends Control {
|
|
2727
2726
|
/**
|
|
2728
2727
|
* Constructor for a new Cluster.
|
|
2729
2728
|
*
|
|
@@ -2883,7 +2882,6 @@ declare module "sap/ui/vbm/Cluster" {
|
|
|
2883
2882
|
sType?: SemanticType | keyof typeof SemanticType
|
|
2884
2883
|
): this;
|
|
2885
2884
|
}
|
|
2886
|
-
export default Cluster;
|
|
2887
2885
|
|
|
2888
2886
|
export interface $ClusterSettings extends $ControlSettings {
|
|
2889
2887
|
/**
|
|
@@ -2915,8 +2913,6 @@ declare module "sap/ui/vbm/Cluster" {
|
|
|
2915
2913
|
declare module "sap/ui/vbm/ClusterBase" {
|
|
2916
2914
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
2917
2915
|
|
|
2918
|
-
import Event from "sap/ui/base/Event";
|
|
2919
|
-
|
|
2920
2916
|
import { CSSColor } from "sap/ui/core/library";
|
|
2921
2917
|
|
|
2922
2918
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -2931,6 +2927,8 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
2931
2927
|
|
|
2932
2928
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2933
2929
|
|
|
2930
|
+
import Event from "sap/ui/base/Event";
|
|
2931
|
+
|
|
2934
2932
|
/**
|
|
2935
2933
|
* Abtract base class for Clustering types. This element implements the common part for all specific Cluster
|
|
2936
2934
|
* elements. It must not be used directly, but is the base for further extension.
|
|
@@ -2947,7 +2945,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
2947
2945
|
* The actual color, font, size, and positioning of the text can be influence via property `textSettings`.
|
|
2948
2946
|
* For interaction with the cluster you can use the events provided by the spot.
|
|
2949
2947
|
*/
|
|
2950
|
-
class ClusterBase extends UI5Element {
|
|
2948
|
+
export default class ClusterBase extends UI5Element {
|
|
2951
2949
|
/**
|
|
2952
2950
|
* Constructor for a new ClusterBase.
|
|
2953
2951
|
*
|
|
@@ -3027,7 +3025,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3027
3025
|
/**
|
|
3028
3026
|
* The function to be called when the event occurs
|
|
3029
3027
|
*/
|
|
3030
|
-
fnFunction: (p1:
|
|
3028
|
+
fnFunction: (p1: ClusterBase$ClickEvent) => void,
|
|
3031
3029
|
/**
|
|
3032
3030
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.ClusterBase` itself
|
|
3033
3031
|
*/
|
|
@@ -3047,7 +3045,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3047
3045
|
/**
|
|
3048
3046
|
* The function to be called when the event occurs
|
|
3049
3047
|
*/
|
|
3050
|
-
fnFunction: (p1:
|
|
3048
|
+
fnFunction: (p1: ClusterBase$ClickEvent) => void,
|
|
3051
3049
|
/**
|
|
3052
3050
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.ClusterBase` itself
|
|
3053
3051
|
*/
|
|
@@ -3072,7 +3070,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3072
3070
|
/**
|
|
3073
3071
|
* The function to be called when the event occurs
|
|
3074
3072
|
*/
|
|
3075
|
-
fnFunction: (p1:
|
|
3073
|
+
fnFunction: (p1: ClusterBase$ContextMenuEvent) => void,
|
|
3076
3074
|
/**
|
|
3077
3075
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.ClusterBase` itself
|
|
3078
3076
|
*/
|
|
@@ -3092,7 +3090,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3092
3090
|
/**
|
|
3093
3091
|
* The function to be called when the event occurs
|
|
3094
3092
|
*/
|
|
3095
|
-
fnFunction: (p1:
|
|
3093
|
+
fnFunction: (p1: ClusterBase$ContextMenuEvent) => void,
|
|
3096
3094
|
/**
|
|
3097
3095
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.ClusterBase` itself
|
|
3098
3096
|
*/
|
|
@@ -3121,7 +3119,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3121
3119
|
/**
|
|
3122
3120
|
* The function to be called, when the event occurs
|
|
3123
3121
|
*/
|
|
3124
|
-
fnFunction: (p1:
|
|
3122
|
+
fnFunction: (p1: ClusterBase$ClickEvent) => void,
|
|
3125
3123
|
/**
|
|
3126
3124
|
* Context object on which the given function had to be called
|
|
3127
3125
|
*/
|
|
@@ -3138,14 +3136,14 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3138
3136
|
/**
|
|
3139
3137
|
* The function to be called, when the event occurs
|
|
3140
3138
|
*/
|
|
3141
|
-
fnFunction: (p1:
|
|
3139
|
+
fnFunction: (p1: ClusterBase$ContextMenuEvent) => void,
|
|
3142
3140
|
/**
|
|
3143
3141
|
* Context object on which the given function had to be called
|
|
3144
3142
|
*/
|
|
3145
3143
|
oListener?: object
|
|
3146
3144
|
): this;
|
|
3147
3145
|
/**
|
|
3148
|
-
* @
|
|
3146
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3149
3147
|
*
|
|
3150
3148
|
* Fires event {@link #event:click click} to attached listeners.
|
|
3151
3149
|
*
|
|
@@ -3155,10 +3153,10 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3155
3153
|
/**
|
|
3156
3154
|
* Parameters to pass along with the event
|
|
3157
3155
|
*/
|
|
3158
|
-
mParameters?: $
|
|
3156
|
+
mParameters?: ClusterBase$ClickEventParameters
|
|
3159
3157
|
): this;
|
|
3160
3158
|
/**
|
|
3161
|
-
* @
|
|
3159
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3162
3160
|
*
|
|
3163
3161
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
3164
3162
|
*
|
|
@@ -3168,7 +3166,7 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3168
3166
|
/**
|
|
3169
3167
|
* Parameters to pass along with the event
|
|
3170
3168
|
*/
|
|
3171
|
-
mParameters?: $
|
|
3169
|
+
mParameters?: ClusterBase$ContextMenuEventParameters
|
|
3172
3170
|
): this;
|
|
3173
3171
|
/**
|
|
3174
3172
|
* Gets current value of property {@link #getAreaAlwaysVisible areaAlwaysVisible}.
|
|
@@ -3402,7 +3400,6 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3402
3400
|
oVizVo: Spot
|
|
3403
3401
|
): this;
|
|
3404
3402
|
}
|
|
3405
|
-
export default ClusterBase;
|
|
3406
3403
|
|
|
3407
3404
|
export interface $ClusterBaseSettings extends $ElementSettings {
|
|
3408
3405
|
/**
|
|
@@ -3451,24 +3448,24 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3451
3448
|
/**
|
|
3452
3449
|
* The event is raised when there is a click action on a Cluster Object.
|
|
3453
3450
|
*/
|
|
3454
|
-
click?: (oEvent:
|
|
3451
|
+
click?: (oEvent: ClusterBase$ClickEvent) => void;
|
|
3455
3452
|
|
|
3456
3453
|
/**
|
|
3457
3454
|
* The event is raised when there is a right click or a tap and hold action on a Cluster.
|
|
3458
3455
|
*/
|
|
3459
|
-
contextMenu?: (
|
|
3460
|
-
oEvent: Event<$ClusterBaseContextMenuEventParameters>
|
|
3461
|
-
) => void;
|
|
3456
|
+
contextMenu?: (oEvent: ClusterBase$ContextMenuEvent) => void;
|
|
3462
3457
|
}
|
|
3463
3458
|
|
|
3464
|
-
export interface $
|
|
3459
|
+
export interface ClusterBase$ClickEventParameters {
|
|
3465
3460
|
/**
|
|
3466
3461
|
* ID of the clicked cluster object. Can serve as input for GeoMap function getInfoForCluster
|
|
3467
3462
|
*/
|
|
3468
3463
|
clusterID?: string;
|
|
3469
3464
|
}
|
|
3470
3465
|
|
|
3471
|
-
export
|
|
3466
|
+
export type ClusterBase$ClickEvent = Event<ClusterBase$ClickEventParameters>;
|
|
3467
|
+
|
|
3468
|
+
export interface ClusterBase$ContextMenuEventParameters {
|
|
3472
3469
|
/**
|
|
3473
3470
|
* ID of the clicked cluster object. Can serve as input for GeoMap function getInfoForCluster
|
|
3474
3471
|
*/
|
|
@@ -3479,6 +3476,8 @@ declare module "sap/ui/vbm/ClusterBase" {
|
|
|
3479
3476
|
*/
|
|
3480
3477
|
menu?: Menu;
|
|
3481
3478
|
}
|
|
3479
|
+
|
|
3480
|
+
export type ClusterBase$ContextMenuEvent = Event<ClusterBase$ContextMenuEventParameters>;
|
|
3482
3481
|
}
|
|
3483
3482
|
|
|
3484
3483
|
declare module "sap/ui/vbm/ClusterContainer" {
|
|
@@ -3498,7 +3497,7 @@ declare module "sap/ui/vbm/ClusterContainer" {
|
|
|
3498
3497
|
* click may only be fired if the aggregated control is not handling them. The properties are not changeable
|
|
3499
3498
|
* as well as the aggregated item. Only read access is possible**
|
|
3500
3499
|
*/
|
|
3501
|
-
class ClusterContainer extends Container {
|
|
3500
|
+
export default class ClusterContainer extends Container {
|
|
3502
3501
|
/**
|
|
3503
3502
|
* Constructor for a new ClusterContainer.
|
|
3504
3503
|
*
|
|
@@ -3566,7 +3565,6 @@ declare module "sap/ui/vbm/ClusterContainer" {
|
|
|
3566
3565
|
*/
|
|
3567
3566
|
static getMetadata(): ElementMetadata;
|
|
3568
3567
|
}
|
|
3569
|
-
export default ClusterContainer;
|
|
3570
3568
|
|
|
3571
3569
|
export interface $ClusterContainerSettings extends $ContainerSettings {}
|
|
3572
3570
|
}
|
|
@@ -3589,7 +3587,7 @@ declare module "sap/ui/vbm/ClusterDistance" {
|
|
|
3589
3587
|
* of gravity of the covered objects. Thus the actual distance between them may vary.
|
|
3590
3588
|
* This clustering is fast, but the results may not be very convincing.
|
|
3591
3589
|
*/
|
|
3592
|
-
class ClusterDistance extends ClusterBase {
|
|
3590
|
+
export default class ClusterDistance extends ClusterBase {
|
|
3593
3591
|
/**
|
|
3594
3592
|
* Constructor for a new ClusterDistance.
|
|
3595
3593
|
*
|
|
@@ -3682,7 +3680,6 @@ declare module "sap/ui/vbm/ClusterDistance" {
|
|
|
3682
3680
|
iDistance?: int
|
|
3683
3681
|
): this;
|
|
3684
3682
|
}
|
|
3685
|
-
export default ClusterDistance;
|
|
3686
3683
|
|
|
3687
3684
|
export interface $ClusterDistanceSettings extends $ClusterBaseSettings {
|
|
3688
3685
|
/**
|
|
@@ -3709,7 +3706,7 @@ declare module "sap/ui/vbm/ClusterGrid" {
|
|
|
3709
3706
|
* is possible to have multiple grid based clusters. The visualization object is placed in the center of
|
|
3710
3707
|
* the grid cell plus a given offset.
|
|
3711
3708
|
*/
|
|
3712
|
-
class ClusterGrid extends ClusterBase {
|
|
3709
|
+
export default class ClusterGrid extends ClusterBase {
|
|
3713
3710
|
/**
|
|
3714
3711
|
* Constructor for a new ClusterGrid.
|
|
3715
3712
|
*
|
|
@@ -3931,7 +3928,6 @@ declare module "sap/ui/vbm/ClusterGrid" {
|
|
|
3931
3928
|
iOrderIndex?: int
|
|
3932
3929
|
): this;
|
|
3933
3930
|
}
|
|
3934
|
-
export default ClusterGrid;
|
|
3935
3931
|
|
|
3936
3932
|
export interface $ClusterGridSettings extends $ClusterBaseSettings {
|
|
3937
3933
|
/**
|
|
@@ -3982,7 +3978,7 @@ declare module "sap/ui/vbm/ClusterTree" {
|
|
|
3982
3978
|
* clustering is based on the areas in the Voronoi diagram and cluster objects get aggregated to a hierarchy
|
|
3983
3979
|
* over several levels of detail.
|
|
3984
3980
|
*/
|
|
3985
|
-
class ClusterTree extends ClusterBase {
|
|
3981
|
+
export default class ClusterTree extends ClusterBase {
|
|
3986
3982
|
/**
|
|
3987
3983
|
* Constructor for a new ClusterTree.
|
|
3988
3984
|
*
|
|
@@ -4071,7 +4067,6 @@ declare module "sap/ui/vbm/ClusterTree" {
|
|
|
4071
4067
|
bAnimateClusterSplit?: boolean
|
|
4072
4068
|
): this;
|
|
4073
4069
|
}
|
|
4074
|
-
export default ClusterTree;
|
|
4075
4070
|
|
|
4076
4071
|
export interface $ClusterTreeSettings extends $ClusterBaseSettings {
|
|
4077
4072
|
/**
|
|
@@ -4097,7 +4092,7 @@ declare module "sap/ui/vbm/Container" {
|
|
|
4097
4092
|
* There is no label, no edit mode, and no drop support. Events like click will only be fired if the aggregated
|
|
4098
4093
|
* control is not handling them.**
|
|
4099
4094
|
*/
|
|
4100
|
-
class Container extends VoBase {
|
|
4095
|
+
export default class Container extends VoBase {
|
|
4101
4096
|
/**
|
|
4102
4097
|
* Constructor for a new Container.
|
|
4103
4098
|
*
|
|
@@ -4236,7 +4231,6 @@ declare module "sap/ui/vbm/Container" {
|
|
|
4236
4231
|
sPosition?: string
|
|
4237
4232
|
): this;
|
|
4238
4233
|
}
|
|
4239
|
-
export default Container;
|
|
4240
4234
|
|
|
4241
4235
|
export interface $ContainerSettings extends $VoBaseSettings {
|
|
4242
4236
|
/**
|
|
@@ -4273,7 +4267,7 @@ declare module "sap/ui/vbm/Containers" {
|
|
|
4273
4267
|
/**
|
|
4274
4268
|
* Type specific Visual Object aggregation for Container instances.
|
|
4275
4269
|
*/
|
|
4276
|
-
class Containers extends VoAggregation {
|
|
4270
|
+
export default class Containers extends VoAggregation {
|
|
4277
4271
|
/**
|
|
4278
4272
|
* Constructor for a new Containers.
|
|
4279
4273
|
*
|
|
@@ -4406,7 +4400,6 @@ declare module "sap/ui/vbm/Containers" {
|
|
|
4406
4400
|
vItem: int | string | Container
|
|
4407
4401
|
): Container | null;
|
|
4408
4402
|
}
|
|
4409
|
-
export default Containers;
|
|
4410
4403
|
|
|
4411
4404
|
export interface $ContainersSettings extends $VoAggregationSettings {
|
|
4412
4405
|
/**
|
|
@@ -4426,7 +4419,7 @@ declare module "sap/ui/vbm/DragSource" {
|
|
|
4426
4419
|
/**
|
|
4427
4420
|
* DragSource Aggregation element
|
|
4428
4421
|
*/
|
|
4429
|
-
class DragSource extends UI5Element {
|
|
4422
|
+
export default class DragSource extends UI5Element {
|
|
4430
4423
|
/**
|
|
4431
4424
|
* Constructor for a new DragSource.
|
|
4432
4425
|
*
|
|
@@ -4511,7 +4504,6 @@ declare module "sap/ui/vbm/DragSource" {
|
|
|
4511
4504
|
sType?: string
|
|
4512
4505
|
): this;
|
|
4513
4506
|
}
|
|
4514
|
-
export default DragSource;
|
|
4515
4507
|
|
|
4516
4508
|
export interface $DragSourceSettings extends $ElementSettings {
|
|
4517
4509
|
/**
|
|
@@ -4531,7 +4523,7 @@ declare module "sap/ui/vbm/DropTarget" {
|
|
|
4531
4523
|
/**
|
|
4532
4524
|
* DropTarget Aggregation element
|
|
4533
4525
|
*/
|
|
4534
|
-
class DropTarget extends UI5Element {
|
|
4526
|
+
export default class DropTarget extends UI5Element {
|
|
4535
4527
|
/**
|
|
4536
4528
|
* Constructor for a new DropTarget.
|
|
4537
4529
|
*
|
|
@@ -4616,7 +4608,6 @@ declare module "sap/ui/vbm/DropTarget" {
|
|
|
4616
4608
|
sType?: string
|
|
4617
4609
|
): this;
|
|
4618
4610
|
}
|
|
4619
|
-
export default DropTarget;
|
|
4620
4611
|
|
|
4621
4612
|
export interface $DropTargetSettings extends $ElementSettings {
|
|
4622
4613
|
/**
|
|
@@ -4643,7 +4634,7 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4643
4634
|
* The Feature element can be added to the items aggregation of a FeatureCollection. By matching
|
|
4644
4635
|
* the id it allows to redefine the color of a GeoJSON feature and adds interactivity.
|
|
4645
4636
|
*/
|
|
4646
|
-
class Feature extends UI5Element {
|
|
4637
|
+
export default class Feature extends UI5Element {
|
|
4647
4638
|
/**
|
|
4648
4639
|
* Constructor for a new Feature.
|
|
4649
4640
|
*
|
|
@@ -4768,7 +4759,7 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4768
4759
|
/**
|
|
4769
4760
|
* The function to be called when the event occurs
|
|
4770
4761
|
*/
|
|
4771
|
-
fnFunction: (p1:
|
|
4762
|
+
fnFunction: (p1: Feature$ContextMenuEvent) => void,
|
|
4772
4763
|
/**
|
|
4773
4764
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Feature` itself
|
|
4774
4765
|
*/
|
|
@@ -4788,7 +4779,7 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4788
4779
|
/**
|
|
4789
4780
|
* The function to be called when the event occurs
|
|
4790
4781
|
*/
|
|
4791
|
-
fnFunction: (p1:
|
|
4782
|
+
fnFunction: (p1: Feature$ContextMenuEvent) => void,
|
|
4792
4783
|
/**
|
|
4793
4784
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Feature` itself
|
|
4794
4785
|
*/
|
|
@@ -4822,14 +4813,14 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4822
4813
|
/**
|
|
4823
4814
|
* The function to be called, when the event occurs
|
|
4824
4815
|
*/
|
|
4825
|
-
fnFunction: (p1:
|
|
4816
|
+
fnFunction: (p1: Feature$ContextMenuEvent) => void,
|
|
4826
4817
|
/**
|
|
4827
4818
|
* Context object on which the given function had to be called
|
|
4828
4819
|
*/
|
|
4829
4820
|
oListener?: object
|
|
4830
4821
|
): this;
|
|
4831
4822
|
/**
|
|
4832
|
-
* @
|
|
4823
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4833
4824
|
*
|
|
4834
4825
|
* Fires event {@link #event:click click} to attached listeners.
|
|
4835
4826
|
*
|
|
@@ -4842,7 +4833,7 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4842
4833
|
mParameters?: object
|
|
4843
4834
|
): this;
|
|
4844
4835
|
/**
|
|
4845
|
-
* @
|
|
4836
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4846
4837
|
*
|
|
4847
4838
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
4848
4839
|
*
|
|
@@ -4852,7 +4843,7 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4852
4843
|
/**
|
|
4853
4844
|
* Parameters to pass along with the event
|
|
4854
4845
|
*/
|
|
4855
|
-
mParameters?: $
|
|
4846
|
+
mParameters?: Feature$ContextMenuEventParameters
|
|
4856
4847
|
): this;
|
|
4857
4848
|
/**
|
|
4858
4849
|
* Gets current value of property {@link #getColor color}.
|
|
@@ -4927,7 +4918,6 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4927
4918
|
sFeatureId?: string
|
|
4928
4919
|
): this;
|
|
4929
4920
|
}
|
|
4930
|
-
export default Feature;
|
|
4931
4921
|
|
|
4932
4922
|
export interface $FeatureSettings extends $ElementSettings {
|
|
4933
4923
|
/**
|
|
@@ -4948,35 +4938,39 @@ declare module "sap/ui/vbm/Feature" {
|
|
|
4948
4938
|
/**
|
|
4949
4939
|
* The event is raised when there is a right click or a tap and hold action on a Feature.
|
|
4950
4940
|
*/
|
|
4951
|
-
contextMenu?: (oEvent:
|
|
4941
|
+
contextMenu?: (oEvent: Feature$ContextMenuEvent) => void;
|
|
4952
4942
|
}
|
|
4953
4943
|
|
|
4954
|
-
export interface $
|
|
4944
|
+
export interface Feature$ClickEventParameters {}
|
|
4945
|
+
|
|
4946
|
+
export type Feature$ClickEvent = Event<Feature$ClickEventParameters>;
|
|
4955
4947
|
|
|
4956
|
-
export interface $
|
|
4948
|
+
export interface Feature$ContextMenuEventParameters {
|
|
4957
4949
|
/**
|
|
4958
4950
|
* Menu object to be used with openContextMenu().
|
|
4959
4951
|
*/
|
|
4960
4952
|
menu?: Menu;
|
|
4961
4953
|
}
|
|
4954
|
+
|
|
4955
|
+
export type Feature$ContextMenuEvent = Event<Feature$ContextMenuEventParameters>;
|
|
4962
4956
|
}
|
|
4963
4957
|
|
|
4964
4958
|
declare module "sap/ui/vbm/FeatureCollection" {
|
|
4965
4959
|
import {
|
|
4966
4960
|
default as GeoJsonLayer,
|
|
4967
4961
|
$GeoJsonLayerSettings,
|
|
4968
|
-
$
|
|
4969
|
-
$
|
|
4962
|
+
GeoJsonLayer$ClickEventParameters,
|
|
4963
|
+
GeoJsonLayer$ContextMenuEventParameters,
|
|
4970
4964
|
} from "sap/ui/vbm/GeoJsonLayer";
|
|
4971
4965
|
|
|
4972
4966
|
import Feature from "sap/ui/vbm/Feature";
|
|
4973
4967
|
|
|
4974
|
-
import Event from "sap/ui/base/Event";
|
|
4975
|
-
|
|
4976
4968
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
4977
4969
|
|
|
4978
4970
|
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4979
4971
|
|
|
4972
|
+
import Event from "sap/ui/base/Event";
|
|
4973
|
+
|
|
4980
4974
|
/**
|
|
4981
4975
|
* FeatureCollection aggregation container. A FeatureCollection can render the content of an assigned GeoJSON.
|
|
4982
4976
|
* The naming is associated to the GeoJSON standard. All features found in the GeoJSON are rendered as separated
|
|
@@ -4988,7 +4982,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
4988
4982
|
* By adding Feature elements to the items aggregation you can make the match (by id) feature from
|
|
4989
4983
|
* the GeoJSON interactive and give it alternative colors.
|
|
4990
4984
|
*/
|
|
4991
|
-
class FeatureCollection extends GeoJsonLayer {
|
|
4985
|
+
export default class FeatureCollection extends GeoJsonLayer {
|
|
4992
4986
|
/**
|
|
4993
4987
|
* Constructor for a new FeatureCollection.
|
|
4994
4988
|
*
|
|
@@ -5080,7 +5074,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5080
5074
|
/**
|
|
5081
5075
|
* The function to be called when the event occurs
|
|
5082
5076
|
*/
|
|
5083
|
-
fnFunction: (p1:
|
|
5077
|
+
fnFunction: (p1: FeatureCollection$ClickEvent) => void,
|
|
5084
5078
|
/**
|
|
5085
5079
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.FeatureCollection` itself
|
|
5086
5080
|
*/
|
|
@@ -5101,7 +5095,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5101
5095
|
/**
|
|
5102
5096
|
* The function to be called when the event occurs
|
|
5103
5097
|
*/
|
|
5104
|
-
fnFunction: (p1:
|
|
5098
|
+
fnFunction: (p1: FeatureCollection$ClickEvent) => void,
|
|
5105
5099
|
/**
|
|
5106
5100
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.FeatureCollection` itself
|
|
5107
5101
|
*/
|
|
@@ -5127,9 +5121,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5127
5121
|
/**
|
|
5128
5122
|
* The function to be called when the event occurs
|
|
5129
5123
|
*/
|
|
5130
|
-
fnFunction: (
|
|
5131
|
-
p1: Event<$FeatureCollectionContextMenuEventParameters>
|
|
5132
|
-
) => void,
|
|
5124
|
+
fnFunction: (p1: FeatureCollection$ContextMenuEvent) => void,
|
|
5133
5125
|
/**
|
|
5134
5126
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.FeatureCollection` itself
|
|
5135
5127
|
*/
|
|
@@ -5150,9 +5142,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5150
5142
|
/**
|
|
5151
5143
|
* The function to be called when the event occurs
|
|
5152
5144
|
*/
|
|
5153
|
-
fnFunction: (
|
|
5154
|
-
p1: Event<$FeatureCollectionContextMenuEventParameters>
|
|
5155
|
-
) => void,
|
|
5145
|
+
fnFunction: (p1: FeatureCollection$ContextMenuEvent) => void,
|
|
5156
5146
|
/**
|
|
5157
5147
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.FeatureCollection` itself
|
|
5158
5148
|
*/
|
|
@@ -5175,7 +5165,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5175
5165
|
/**
|
|
5176
5166
|
* The function to be called, when the event occurs
|
|
5177
5167
|
*/
|
|
5178
|
-
fnFunction: (p1:
|
|
5168
|
+
fnFunction: (p1: FeatureCollection$ClickEvent) => void,
|
|
5179
5169
|
/**
|
|
5180
5170
|
* Context object on which the given function had to be called
|
|
5181
5171
|
*/
|
|
@@ -5192,16 +5182,14 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5192
5182
|
/**
|
|
5193
5183
|
* The function to be called, when the event occurs
|
|
5194
5184
|
*/
|
|
5195
|
-
fnFunction: (
|
|
5196
|
-
p1: Event<$FeatureCollectionContextMenuEventParameters>
|
|
5197
|
-
) => void,
|
|
5185
|
+
fnFunction: (p1: FeatureCollection$ContextMenuEvent) => void,
|
|
5198
5186
|
/**
|
|
5199
5187
|
* Context object on which the given function had to be called
|
|
5200
5188
|
*/
|
|
5201
5189
|
oListener?: object
|
|
5202
5190
|
): this;
|
|
5203
5191
|
/**
|
|
5204
|
-
* @
|
|
5192
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5205
5193
|
*
|
|
5206
5194
|
* Fires event {@link #event:click click} to attached listeners.
|
|
5207
5195
|
*
|
|
@@ -5211,10 +5199,10 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5211
5199
|
/**
|
|
5212
5200
|
* Parameters to pass along with the event
|
|
5213
5201
|
*/
|
|
5214
|
-
mParameters?: $
|
|
5202
|
+
mParameters?: FeatureCollection$ClickEventParameters
|
|
5215
5203
|
): this;
|
|
5216
5204
|
/**
|
|
5217
|
-
* @
|
|
5205
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5218
5206
|
*
|
|
5219
5207
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
5220
5208
|
*
|
|
@@ -5224,7 +5212,7 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5224
5212
|
/**
|
|
5225
5213
|
* Parameters to pass along with the event
|
|
5226
5214
|
*/
|
|
5227
|
-
mParameters?: $
|
|
5215
|
+
mParameters?: FeatureCollection$ContextMenuEventParameters
|
|
5228
5216
|
): this;
|
|
5229
5217
|
/**
|
|
5230
5218
|
* Returns Properties for Features like name, bounding box, and midpoint
|
|
@@ -5294,7 +5282,6 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5294
5282
|
vItem: int | string | Feature
|
|
5295
5283
|
): Feature | null;
|
|
5296
5284
|
}
|
|
5297
|
-
export default FeatureCollection;
|
|
5298
5285
|
|
|
5299
5286
|
export interface $FeatureCollectionSettings extends $GeoJsonLayerSettings {
|
|
5300
5287
|
/**
|
|
@@ -5306,22 +5293,24 @@ declare module "sap/ui/vbm/FeatureCollection" {
|
|
|
5306
5293
|
* The event is raised when there is a click action on an aggregated Feature. Clicks on other Features from
|
|
5307
5294
|
* the GeoJSON are ignored.
|
|
5308
5295
|
*/
|
|
5309
|
-
click?: (oEvent:
|
|
5296
|
+
click?: (oEvent: FeatureCollection$ClickEvent) => void;
|
|
5310
5297
|
|
|
5311
5298
|
/**
|
|
5312
5299
|
* The event is raised when there is a right click or a tap and hold action on an aggregated Feature. Clicks
|
|
5313
5300
|
* on other Features from the GeoJSON are ignored.
|
|
5314
5301
|
*/
|
|
5315
|
-
contextMenu?: (
|
|
5316
|
-
oEvent: Event<$FeatureCollectionContextMenuEventParameters>
|
|
5317
|
-
) => void;
|
|
5302
|
+
contextMenu?: (oEvent: FeatureCollection$ContextMenuEvent) => void;
|
|
5318
5303
|
}
|
|
5319
5304
|
|
|
5320
|
-
export interface $
|
|
5321
|
-
extends $
|
|
5305
|
+
export interface FeatureCollection$ClickEventParameters
|
|
5306
|
+
extends GeoJsonLayer$ClickEventParameters {}
|
|
5322
5307
|
|
|
5323
|
-
export
|
|
5324
|
-
|
|
5308
|
+
export type FeatureCollection$ClickEvent = Event<FeatureCollection$ClickEventParameters>;
|
|
5309
|
+
|
|
5310
|
+
export interface FeatureCollection$ContextMenuEventParameters
|
|
5311
|
+
extends GeoJsonLayer$ContextMenuEventParameters {}
|
|
5312
|
+
|
|
5313
|
+
export type FeatureCollection$ContextMenuEvent = Event<FeatureCollection$ContextMenuEventParameters>;
|
|
5325
5314
|
}
|
|
5326
5315
|
|
|
5327
5316
|
declare module "sap/ui/vbm/GeoCircle" {
|
|
@@ -5336,7 +5325,7 @@ declare module "sap/ui/vbm/GeoCircle" {
|
|
|
5336
5325
|
* at the given position. Since the actual size of a geocircle may depend on the zoom level it might
|
|
5337
5326
|
* be only partly visible. Thus detail windows will open at the click position.
|
|
5338
5327
|
*/
|
|
5339
|
-
class GeoCircle extends VoBase {
|
|
5328
|
+
export default class GeoCircle extends VoBase {
|
|
5340
5329
|
/**
|
|
5341
5330
|
* Constructor for a new GeoCircle.
|
|
5342
5331
|
*
|
|
@@ -5533,7 +5522,6 @@ declare module "sap/ui/vbm/GeoCircle" {
|
|
|
5533
5522
|
sSlices?: string
|
|
5534
5523
|
): this;
|
|
5535
5524
|
}
|
|
5536
|
-
export default GeoCircle;
|
|
5537
5525
|
|
|
5538
5526
|
export interface $GeoCircleSettings extends $VoBaseSettings {
|
|
5539
5527
|
/**
|
|
@@ -5581,7 +5569,7 @@ declare module "sap/ui/vbm/GeoCircles" {
|
|
|
5581
5569
|
/**
|
|
5582
5570
|
* Type specific Visual Object aggregation for GeoCircle elements.
|
|
5583
5571
|
*/
|
|
5584
|
-
class GeoCircles extends VoAggregation {
|
|
5572
|
+
export default class GeoCircles extends VoAggregation {
|
|
5585
5573
|
/**
|
|
5586
5574
|
* Constructor for a new GeoCircles.
|
|
5587
5575
|
*
|
|
@@ -5772,7 +5760,6 @@ declare module "sap/ui/vbm/GeoCircles" {
|
|
|
5772
5760
|
bRadiusChangeable?: boolean
|
|
5773
5761
|
): this;
|
|
5774
5762
|
}
|
|
5775
|
-
export default GeoCircles;
|
|
5776
5763
|
|
|
5777
5764
|
export interface $GeoCirclesSettings extends $VoAggregationSettings {
|
|
5778
5765
|
/**
|
|
@@ -5799,8 +5786,6 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5799
5786
|
|
|
5800
5787
|
import Feature from "sap/ui/vbm/Feature";
|
|
5801
5788
|
|
|
5802
|
-
import Event from "sap/ui/base/Event";
|
|
5803
|
-
|
|
5804
5789
|
import { CSSColor } from "sap/ui/core/library";
|
|
5805
5790
|
|
|
5806
5791
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -5810,6 +5795,8 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5810
5795
|
AggregationBindingInfo,
|
|
5811
5796
|
} from "sap/ui/base/ManagedObject";
|
|
5812
5797
|
|
|
5798
|
+
import Event from "sap/ui/base/Event";
|
|
5799
|
+
|
|
5813
5800
|
/**
|
|
5814
5801
|
* GeoJsonLayer aggregation container. A GeoJsonLayer can render the content of an assigned GeoJSON. The
|
|
5815
5802
|
* naming is associated to the GeoJSON standard. All features found in the GeoJSON are rendered as separated
|
|
@@ -5823,7 +5810,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5823
5810
|
* The GeoJSON can be given as a URL using property srcURL, directly as object using property data,
|
|
5824
5811
|
* or as a combination of both.
|
|
5825
5812
|
*/
|
|
5826
|
-
class GeoJsonLayer extends UI5Element {
|
|
5813
|
+
export default class GeoJsonLayer extends UI5Element {
|
|
5827
5814
|
/**
|
|
5828
5815
|
* Constructor for a new GeoJsonLayer.
|
|
5829
5816
|
*
|
|
@@ -5924,7 +5911,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5924
5911
|
/**
|
|
5925
5912
|
* The function to be called when the event occurs
|
|
5926
5913
|
*/
|
|
5927
|
-
fnFunction: (p1:
|
|
5914
|
+
fnFunction: (p1: GeoJsonLayer$ClickEvent) => void,
|
|
5928
5915
|
/**
|
|
5929
5916
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoJsonLayer` itself
|
|
5930
5917
|
*/
|
|
@@ -5945,7 +5932,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5945
5932
|
/**
|
|
5946
5933
|
* The function to be called when the event occurs
|
|
5947
5934
|
*/
|
|
5948
|
-
fnFunction: (p1:
|
|
5935
|
+
fnFunction: (p1: GeoJsonLayer$ClickEvent) => void,
|
|
5949
5936
|
/**
|
|
5950
5937
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoJsonLayer` itself
|
|
5951
5938
|
*/
|
|
@@ -5971,7 +5958,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5971
5958
|
/**
|
|
5972
5959
|
* The function to be called when the event occurs
|
|
5973
5960
|
*/
|
|
5974
|
-
fnFunction: (p1:
|
|
5961
|
+
fnFunction: (p1: GeoJsonLayer$ContextMenuEvent) => void,
|
|
5975
5962
|
/**
|
|
5976
5963
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoJsonLayer` itself
|
|
5977
5964
|
*/
|
|
@@ -5992,7 +5979,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
5992
5979
|
/**
|
|
5993
5980
|
* The function to be called when the event occurs
|
|
5994
5981
|
*/
|
|
5995
|
-
fnFunction: (p1:
|
|
5982
|
+
fnFunction: (p1: GeoJsonLayer$ContextMenuEvent) => void,
|
|
5996
5983
|
/**
|
|
5997
5984
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoJsonLayer` itself
|
|
5998
5985
|
*/
|
|
@@ -6015,7 +6002,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
6015
6002
|
/**
|
|
6016
6003
|
* The function to be called, when the event occurs
|
|
6017
6004
|
*/
|
|
6018
|
-
fnFunction: (p1:
|
|
6005
|
+
fnFunction: (p1: GeoJsonLayer$ClickEvent) => void,
|
|
6019
6006
|
/**
|
|
6020
6007
|
* Context object on which the given function had to be called
|
|
6021
6008
|
*/
|
|
@@ -6032,14 +6019,14 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
6032
6019
|
/**
|
|
6033
6020
|
* The function to be called, when the event occurs
|
|
6034
6021
|
*/
|
|
6035
|
-
fnFunction: (p1:
|
|
6022
|
+
fnFunction: (p1: GeoJsonLayer$ContextMenuEvent) => void,
|
|
6036
6023
|
/**
|
|
6037
6024
|
* Context object on which the given function had to be called
|
|
6038
6025
|
*/
|
|
6039
6026
|
oListener?: object
|
|
6040
6027
|
): this;
|
|
6041
6028
|
/**
|
|
6042
|
-
* @
|
|
6029
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6043
6030
|
*
|
|
6044
6031
|
* Fires event {@link #event:click click} to attached listeners.
|
|
6045
6032
|
*
|
|
@@ -6049,10 +6036,10 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
6049
6036
|
/**
|
|
6050
6037
|
* Parameters to pass along with the event
|
|
6051
6038
|
*/
|
|
6052
|
-
mParameters?: $
|
|
6039
|
+
mParameters?: GeoJsonLayer$ClickEventParameters
|
|
6053
6040
|
): this;
|
|
6054
6041
|
/**
|
|
6055
|
-
* @
|
|
6042
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6056
6043
|
*
|
|
6057
6044
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
6058
6045
|
*
|
|
@@ -6062,7 +6049,7 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
6062
6049
|
/**
|
|
6063
6050
|
* Parameters to pass along with the event
|
|
6064
6051
|
*/
|
|
6065
|
-
mParameters?: $
|
|
6052
|
+
mParameters?: GeoJsonLayer$ContextMenuEventParameters
|
|
6066
6053
|
): this;
|
|
6067
6054
|
/**
|
|
6068
6055
|
* Gets current value of property {@link #getData data}.
|
|
@@ -6300,7 +6287,6 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
6300
6287
|
sSrcURL?: string
|
|
6301
6288
|
): this;
|
|
6302
6289
|
}
|
|
6303
|
-
export default GeoJsonLayer;
|
|
6304
6290
|
|
|
6305
6291
|
export interface $GeoJsonLayerSettings extends $ElementSettings {
|
|
6306
6292
|
/**
|
|
@@ -6338,30 +6324,32 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
|
|
|
6338
6324
|
* The event is raised when there is a click action on an aggregated Feature. Clicks on other Features from
|
|
6339
6325
|
* the GeoJSON are ignored.
|
|
6340
6326
|
*/
|
|
6341
|
-
click?: (oEvent:
|
|
6327
|
+
click?: (oEvent: GeoJsonLayer$ClickEvent) => void;
|
|
6342
6328
|
|
|
6343
6329
|
/**
|
|
6344
6330
|
* The event is raised when there is a right click or a tap and hold action on an aggregated Feature. Clicks
|
|
6345
6331
|
* on other Features from the GeoJSON are ignored.
|
|
6346
6332
|
*/
|
|
6347
|
-
contextMenu?: (
|
|
6348
|
-
oEvent: Event<$GeoJsonLayerContextMenuEventParameters>
|
|
6349
|
-
) => void;
|
|
6333
|
+
contextMenu?: (oEvent: GeoJsonLayer$ContextMenuEvent) => void;
|
|
6350
6334
|
}
|
|
6351
6335
|
|
|
6352
|
-
export interface $
|
|
6336
|
+
export interface GeoJsonLayer$ClickEventParameters {
|
|
6353
6337
|
/**
|
|
6354
6338
|
* Id of clicked Feature
|
|
6355
6339
|
*/
|
|
6356
6340
|
featureId?: string;
|
|
6357
6341
|
}
|
|
6358
6342
|
|
|
6359
|
-
export
|
|
6343
|
+
export type GeoJsonLayer$ClickEvent = Event<GeoJsonLayer$ClickEventParameters>;
|
|
6344
|
+
|
|
6345
|
+
export interface GeoJsonLayer$ContextMenuEventParameters {
|
|
6360
6346
|
/**
|
|
6361
6347
|
* Id of clicked Feature
|
|
6362
6348
|
*/
|
|
6363
6349
|
featureId?: string;
|
|
6364
6350
|
}
|
|
6351
|
+
|
|
6352
|
+
export type GeoJsonLayer$ContextMenuEvent = Event<GeoJsonLayer$ContextMenuEventParameters>;
|
|
6365
6353
|
}
|
|
6366
6354
|
|
|
6367
6355
|
declare module "sap/ui/vbm/GeoMap" {
|
|
@@ -6408,7 +6396,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6408
6396
|
* an arbitrary number of VO aggregations can be assigned to the vos aggregation.
|
|
6409
6397
|
* The second aggregation featureCollections allows the use of GeoJSON as source for visual objects.
|
|
6410
6398
|
*/
|
|
6411
|
-
class GeoMap extends VBI {
|
|
6399
|
+
export default class GeoMap extends VBI {
|
|
6412
6400
|
/**
|
|
6413
6401
|
* Constructor for a new GeoMap.
|
|
6414
6402
|
*
|
|
@@ -6546,7 +6534,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6546
6534
|
/**
|
|
6547
6535
|
* The function to be called when the event occurs
|
|
6548
6536
|
*/
|
|
6549
|
-
fnFunction: (p1:
|
|
6537
|
+
fnFunction: (p1: GeoMap$CenterChangedEvent) => void,
|
|
6550
6538
|
/**
|
|
6551
6539
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6552
6540
|
*/
|
|
@@ -6566,7 +6554,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6566
6554
|
/**
|
|
6567
6555
|
* The function to be called when the event occurs
|
|
6568
6556
|
*/
|
|
6569
|
-
fnFunction: (p1:
|
|
6557
|
+
fnFunction: (p1: GeoMap$CenterChangedEvent) => void,
|
|
6570
6558
|
/**
|
|
6571
6559
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6572
6560
|
*/
|
|
@@ -6591,7 +6579,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6591
6579
|
/**
|
|
6592
6580
|
* The function to be called when the event occurs
|
|
6593
6581
|
*/
|
|
6594
|
-
fnFunction: (p1:
|
|
6582
|
+
fnFunction: (p1: GeoMap$ClickEvent) => void,
|
|
6595
6583
|
/**
|
|
6596
6584
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6597
6585
|
*/
|
|
@@ -6611,7 +6599,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6611
6599
|
/**
|
|
6612
6600
|
* The function to be called when the event occurs
|
|
6613
6601
|
*/
|
|
6614
|
-
fnFunction: (p1:
|
|
6602
|
+
fnFunction: (p1: GeoMap$ClickEvent) => void,
|
|
6615
6603
|
/**
|
|
6616
6604
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6617
6605
|
*/
|
|
@@ -6636,7 +6624,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6636
6624
|
/**
|
|
6637
6625
|
* The function to be called when the event occurs
|
|
6638
6626
|
*/
|
|
6639
|
-
fnFunction: (p1:
|
|
6627
|
+
fnFunction: (p1: GeoMap$ContextMenuEvent) => void,
|
|
6640
6628
|
/**
|
|
6641
6629
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6642
6630
|
*/
|
|
@@ -6656,7 +6644,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6656
6644
|
/**
|
|
6657
6645
|
* The function to be called when the event occurs
|
|
6658
6646
|
*/
|
|
6659
|
-
fnFunction: (p1:
|
|
6647
|
+
fnFunction: (p1: GeoMap$ContextMenuEvent) => void,
|
|
6660
6648
|
/**
|
|
6661
6649
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6662
6650
|
*/
|
|
@@ -6681,7 +6669,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6681
6669
|
/**
|
|
6682
6670
|
* The function to be called when the event occurs
|
|
6683
6671
|
*/
|
|
6684
|
-
fnFunction: (p1:
|
|
6672
|
+
fnFunction: (p1: GeoMap$DropEvent) => void,
|
|
6685
6673
|
/**
|
|
6686
6674
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6687
6675
|
*/
|
|
@@ -6701,7 +6689,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6701
6689
|
/**
|
|
6702
6690
|
* The function to be called when the event occurs
|
|
6703
6691
|
*/
|
|
6704
|
-
fnFunction: (p1:
|
|
6692
|
+
fnFunction: (p1: GeoMap$DropEvent) => void,
|
|
6705
6693
|
/**
|
|
6706
6694
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6707
6695
|
*/
|
|
@@ -6726,7 +6714,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6726
6714
|
/**
|
|
6727
6715
|
* The function to be called when the event occurs
|
|
6728
6716
|
*/
|
|
6729
|
-
fnFunction: (p1:
|
|
6717
|
+
fnFunction: (p1: GeoMap$KeyDownEvent) => void,
|
|
6730
6718
|
/**
|
|
6731
6719
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6732
6720
|
*/
|
|
@@ -6746,7 +6734,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6746
6734
|
/**
|
|
6747
6735
|
* The function to be called when the event occurs
|
|
6748
6736
|
*/
|
|
6749
|
-
fnFunction: (p1:
|
|
6737
|
+
fnFunction: (p1: GeoMap$KeyDownEvent) => void,
|
|
6750
6738
|
/**
|
|
6751
6739
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6752
6740
|
*/
|
|
@@ -6771,7 +6759,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6771
6759
|
/**
|
|
6772
6760
|
* The function to be called when the event occurs
|
|
6773
6761
|
*/
|
|
6774
|
-
fnFunction: (p1:
|
|
6762
|
+
fnFunction: (p1: GeoMap$KeyPressEvent) => void,
|
|
6775
6763
|
/**
|
|
6776
6764
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6777
6765
|
*/
|
|
@@ -6791,7 +6779,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6791
6779
|
/**
|
|
6792
6780
|
* The function to be called when the event occurs
|
|
6793
6781
|
*/
|
|
6794
|
-
fnFunction: (p1:
|
|
6782
|
+
fnFunction: (p1: GeoMap$KeyPressEvent) => void,
|
|
6795
6783
|
/**
|
|
6796
6784
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6797
6785
|
*/
|
|
@@ -6816,7 +6804,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6816
6804
|
/**
|
|
6817
6805
|
* The function to be called when the event occurs
|
|
6818
6806
|
*/
|
|
6819
|
-
fnFunction: (p1:
|
|
6807
|
+
fnFunction: (p1: GeoMap$KeyUpEvent) => void,
|
|
6820
6808
|
/**
|
|
6821
6809
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6822
6810
|
*/
|
|
@@ -6836,7 +6824,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6836
6824
|
/**
|
|
6837
6825
|
* The function to be called when the event occurs
|
|
6838
6826
|
*/
|
|
6839
|
-
fnFunction: (p1:
|
|
6827
|
+
fnFunction: (p1: GeoMap$KeyUpEvent) => void,
|
|
6840
6828
|
/**
|
|
6841
6829
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6842
6830
|
*/
|
|
@@ -6906,7 +6894,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6906
6894
|
/**
|
|
6907
6895
|
* The function to be called when the event occurs
|
|
6908
6896
|
*/
|
|
6909
|
-
fnFunction: (p1:
|
|
6897
|
+
fnFunction: (p1: GeoMap$ZoomChangedEvent) => void,
|
|
6910
6898
|
/**
|
|
6911
6899
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6912
6900
|
*/
|
|
@@ -6926,7 +6914,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6926
6914
|
/**
|
|
6927
6915
|
* The function to be called when the event occurs
|
|
6928
6916
|
*/
|
|
6929
|
-
fnFunction: (p1:
|
|
6917
|
+
fnFunction: (p1: GeoMap$ZoomChangedEvent) => void,
|
|
6930
6918
|
/**
|
|
6931
6919
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.GeoMap` itself
|
|
6932
6920
|
*/
|
|
@@ -6987,7 +6975,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
6987
6975
|
/**
|
|
6988
6976
|
* The function to be called, when the event occurs
|
|
6989
6977
|
*/
|
|
6990
|
-
fnFunction: (p1:
|
|
6978
|
+
fnFunction: (p1: GeoMap$CenterChangedEvent) => void,
|
|
6991
6979
|
/**
|
|
6992
6980
|
* Context object on which the given function had to be called
|
|
6993
6981
|
*/
|
|
@@ -7004,7 +6992,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7004
6992
|
/**
|
|
7005
6993
|
* The function to be called, when the event occurs
|
|
7006
6994
|
*/
|
|
7007
|
-
fnFunction: (p1:
|
|
6995
|
+
fnFunction: (p1: GeoMap$ClickEvent) => void,
|
|
7008
6996
|
/**
|
|
7009
6997
|
* Context object on which the given function had to be called
|
|
7010
6998
|
*/
|
|
@@ -7021,7 +7009,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7021
7009
|
/**
|
|
7022
7010
|
* The function to be called, when the event occurs
|
|
7023
7011
|
*/
|
|
7024
|
-
fnFunction: (p1:
|
|
7012
|
+
fnFunction: (p1: GeoMap$ContextMenuEvent) => void,
|
|
7025
7013
|
/**
|
|
7026
7014
|
* Context object on which the given function had to be called
|
|
7027
7015
|
*/
|
|
@@ -7038,7 +7026,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7038
7026
|
/**
|
|
7039
7027
|
* The function to be called, when the event occurs
|
|
7040
7028
|
*/
|
|
7041
|
-
fnFunction: (p1:
|
|
7029
|
+
fnFunction: (p1: GeoMap$DropEvent) => void,
|
|
7042
7030
|
/**
|
|
7043
7031
|
* Context object on which the given function had to be called
|
|
7044
7032
|
*/
|
|
@@ -7055,7 +7043,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7055
7043
|
/**
|
|
7056
7044
|
* The function to be called, when the event occurs
|
|
7057
7045
|
*/
|
|
7058
|
-
fnFunction: (p1:
|
|
7046
|
+
fnFunction: (p1: GeoMap$KeyDownEvent) => void,
|
|
7059
7047
|
/**
|
|
7060
7048
|
* Context object on which the given function had to be called
|
|
7061
7049
|
*/
|
|
@@ -7072,7 +7060,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7072
7060
|
/**
|
|
7073
7061
|
* The function to be called, when the event occurs
|
|
7074
7062
|
*/
|
|
7075
|
-
fnFunction: (p1:
|
|
7063
|
+
fnFunction: (p1: GeoMap$KeyPressEvent) => void,
|
|
7076
7064
|
/**
|
|
7077
7065
|
* Context object on which the given function had to be called
|
|
7078
7066
|
*/
|
|
@@ -7089,7 +7077,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7089
7077
|
/**
|
|
7090
7078
|
* The function to be called, when the event occurs
|
|
7091
7079
|
*/
|
|
7092
|
-
fnFunction: (p1:
|
|
7080
|
+
fnFunction: (p1: GeoMap$KeyUpEvent) => void,
|
|
7093
7081
|
/**
|
|
7094
7082
|
* Context object on which the given function had to be called
|
|
7095
7083
|
*/
|
|
@@ -7123,14 +7111,14 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7123
7111
|
/**
|
|
7124
7112
|
* The function to be called, when the event occurs
|
|
7125
7113
|
*/
|
|
7126
|
-
fnFunction: (p1:
|
|
7114
|
+
fnFunction: (p1: GeoMap$ZoomChangedEvent) => void,
|
|
7127
7115
|
/**
|
|
7128
7116
|
* Context object on which the given function had to be called
|
|
7129
7117
|
*/
|
|
7130
7118
|
oListener?: object
|
|
7131
7119
|
): this;
|
|
7132
7120
|
/**
|
|
7133
|
-
* @
|
|
7121
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7134
7122
|
*
|
|
7135
7123
|
* Fires event {@link #event:centerChanged centerChanged} to attached listeners.
|
|
7136
7124
|
*
|
|
@@ -7140,10 +7128,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7140
7128
|
/**
|
|
7141
7129
|
* Parameters to pass along with the event
|
|
7142
7130
|
*/
|
|
7143
|
-
mParameters?: $
|
|
7131
|
+
mParameters?: GeoMap$CenterChangedEventParameters
|
|
7144
7132
|
): this;
|
|
7145
7133
|
/**
|
|
7146
|
-
* @
|
|
7134
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7147
7135
|
*
|
|
7148
7136
|
* Fires event {@link #event:click click} to attached listeners.
|
|
7149
7137
|
*
|
|
@@ -7153,10 +7141,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7153
7141
|
/**
|
|
7154
7142
|
* Parameters to pass along with the event
|
|
7155
7143
|
*/
|
|
7156
|
-
mParameters?: $
|
|
7144
|
+
mParameters?: GeoMap$ClickEventParameters
|
|
7157
7145
|
): this;
|
|
7158
7146
|
/**
|
|
7159
|
-
* @
|
|
7147
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7160
7148
|
*
|
|
7161
7149
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
7162
7150
|
*
|
|
@@ -7166,10 +7154,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7166
7154
|
/**
|
|
7167
7155
|
* Parameters to pass along with the event
|
|
7168
7156
|
*/
|
|
7169
|
-
mParameters?: $
|
|
7157
|
+
mParameters?: GeoMap$ContextMenuEventParameters
|
|
7170
7158
|
): this;
|
|
7171
7159
|
/**
|
|
7172
|
-
* @
|
|
7160
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7173
7161
|
*
|
|
7174
7162
|
* Fires event {@link #event:drop drop} to attached listeners.
|
|
7175
7163
|
*
|
|
@@ -7179,10 +7167,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7179
7167
|
/**
|
|
7180
7168
|
* Parameters to pass along with the event
|
|
7181
7169
|
*/
|
|
7182
|
-
mParameters?: $
|
|
7170
|
+
mParameters?: GeoMap$DropEventParameters
|
|
7183
7171
|
): this;
|
|
7184
7172
|
/**
|
|
7185
|
-
* @
|
|
7173
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7186
7174
|
*
|
|
7187
7175
|
* Fires event {@link #event:keyDown keyDown} to attached listeners.
|
|
7188
7176
|
*
|
|
@@ -7192,10 +7180,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7192
7180
|
/**
|
|
7193
7181
|
* Parameters to pass along with the event
|
|
7194
7182
|
*/
|
|
7195
|
-
mParameters?: $
|
|
7183
|
+
mParameters?: GeoMap$KeyDownEventParameters
|
|
7196
7184
|
): this;
|
|
7197
7185
|
/**
|
|
7198
|
-
* @
|
|
7186
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7199
7187
|
*
|
|
7200
7188
|
* Fires event {@link #event:keyPress keyPress} to attached listeners.
|
|
7201
7189
|
*
|
|
@@ -7205,10 +7193,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7205
7193
|
/**
|
|
7206
7194
|
* Parameters to pass along with the event
|
|
7207
7195
|
*/
|
|
7208
|
-
mParameters?: $
|
|
7196
|
+
mParameters?: GeoMap$KeyPressEventParameters
|
|
7209
7197
|
): this;
|
|
7210
7198
|
/**
|
|
7211
|
-
* @
|
|
7199
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7212
7200
|
*
|
|
7213
7201
|
* Fires event {@link #event:keyUp keyUp} to attached listeners.
|
|
7214
7202
|
*
|
|
@@ -7218,10 +7206,10 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7218
7206
|
/**
|
|
7219
7207
|
* Parameters to pass along with the event
|
|
7220
7208
|
*/
|
|
7221
|
-
mParameters?: $
|
|
7209
|
+
mParameters?: GeoMap$KeyUpEventParameters
|
|
7222
7210
|
): this;
|
|
7223
7211
|
/**
|
|
7224
|
-
* @
|
|
7212
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7225
7213
|
*
|
|
7226
7214
|
* Fires event {@link #event:select select} to attached listeners.
|
|
7227
7215
|
*
|
|
@@ -7234,7 +7222,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7234
7222
|
mParameters?: object
|
|
7235
7223
|
): this;
|
|
7236
7224
|
/**
|
|
7237
|
-
* @
|
|
7225
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7238
7226
|
*
|
|
7239
7227
|
* Fires event {@link #event:zoomChanged zoomChanged} to attached listeners.
|
|
7240
7228
|
*
|
|
@@ -7244,7 +7232,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7244
7232
|
/**
|
|
7245
7233
|
* Parameters to pass along with the event
|
|
7246
7234
|
*/
|
|
7247
|
-
mParameters?: $
|
|
7235
|
+
mParameters?: GeoMap$ZoomChangedEventParameters
|
|
7248
7236
|
): this;
|
|
7249
7237
|
/**
|
|
7250
7238
|
* Retrieves the center position of the current map.
|
|
@@ -7379,7 +7367,7 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
7379
7367
|
*/
|
|
7380
7368
|
getNavcontrolVisible(): boolean;
|
|
7381
7369
|
/**
|
|
7382
|
-
* @
|
|
7370
|
+
* @experimental (since 1.30.0) - This method is experimental and might be modified or removerd in future
|
|
7383
7371
|
* versions.
|
|
7384
7372
|
*
|
|
7385
7373
|
* Trigger the interactive creation mode to get a position or position array.
|
|
@@ -8061,7 +8049,6 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8061
8049
|
correlationFactor: float
|
|
8062
8050
|
): GeoMap;
|
|
8063
8051
|
}
|
|
8064
|
-
export default GeoMap;
|
|
8065
8052
|
|
|
8066
8053
|
export interface $GeoMapSettings extends $VBISettings {
|
|
8067
8054
|
/**
|
|
@@ -8188,17 +8175,17 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8188
8175
|
/**
|
|
8189
8176
|
* Raised when the map is clicked.
|
|
8190
8177
|
*/
|
|
8191
|
-
click?: (oEvent:
|
|
8178
|
+
click?: (oEvent: GeoMap$ClickEvent) => void;
|
|
8192
8179
|
|
|
8193
8180
|
/**
|
|
8194
8181
|
* Raised when the map is right clicked/longPressed(tap and hold).
|
|
8195
8182
|
*/
|
|
8196
|
-
contextMenu?: (oEvent:
|
|
8183
|
+
contextMenu?: (oEvent: GeoMap$ContextMenuEvent) => void;
|
|
8197
8184
|
|
|
8198
8185
|
/**
|
|
8199
8186
|
* Raised when something is dropped on the map.
|
|
8200
8187
|
*/
|
|
8201
|
-
drop?: (oEvent:
|
|
8188
|
+
drop?: (oEvent: GeoMap$DropEvent) => void;
|
|
8202
8189
|
|
|
8203
8190
|
/**
|
|
8204
8191
|
* This event is raised when a multi selection of visual objects has occurred
|
|
@@ -8208,32 +8195,30 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8208
8195
|
/**
|
|
8209
8196
|
* this event is raised on zoom in or zoom out.
|
|
8210
8197
|
*/
|
|
8211
|
-
zoomChanged?: (oEvent:
|
|
8198
|
+
zoomChanged?: (oEvent: GeoMap$ZoomChangedEvent) => void;
|
|
8212
8199
|
|
|
8213
8200
|
/**
|
|
8214
8201
|
* this event is raised on map move.
|
|
8215
8202
|
*/
|
|
8216
|
-
centerChanged?: (
|
|
8217
|
-
oEvent: Event<$GeoMapCenterChangedEventParameters>
|
|
8218
|
-
) => void;
|
|
8203
|
+
centerChanged?: (oEvent: GeoMap$CenterChangedEvent) => void;
|
|
8219
8204
|
|
|
8220
8205
|
/**
|
|
8221
8206
|
* this event is raised on map key down
|
|
8222
8207
|
*/
|
|
8223
|
-
keyDown?: (oEvent:
|
|
8208
|
+
keyDown?: (oEvent: GeoMap$KeyDownEvent) => void;
|
|
8224
8209
|
|
|
8225
8210
|
/**
|
|
8226
8211
|
* this event is raised on map key press
|
|
8227
8212
|
*/
|
|
8228
|
-
keyPress?: (oEvent:
|
|
8213
|
+
keyPress?: (oEvent: GeoMap$KeyPressEvent) => void;
|
|
8229
8214
|
|
|
8230
8215
|
/**
|
|
8231
8216
|
* this event is raised on map key up
|
|
8232
8217
|
*/
|
|
8233
|
-
keyUp?: (oEvent:
|
|
8218
|
+
keyUp?: (oEvent: GeoMap$KeyUpEvent) => void;
|
|
8234
8219
|
}
|
|
8235
8220
|
|
|
8236
|
-
export interface $
|
|
8221
|
+
export interface GeoMap$CenterChangedEventParameters {
|
|
8237
8222
|
/**
|
|
8238
8223
|
* Center point of the map. Format : Lon;Lat;0.0.
|
|
8239
8224
|
*/
|
|
@@ -8250,14 +8235,18 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8250
8235
|
zoomLevel?: int;
|
|
8251
8236
|
}
|
|
8252
8237
|
|
|
8253
|
-
export
|
|
8238
|
+
export type GeoMap$CenterChangedEvent = Event<GeoMap$CenterChangedEventParameters>;
|
|
8239
|
+
|
|
8240
|
+
export interface GeoMap$ClickEventParameters {
|
|
8254
8241
|
/**
|
|
8255
8242
|
* Geo coordinates in format "<longitude>;<latitude>;0"
|
|
8256
8243
|
*/
|
|
8257
8244
|
pos?: string;
|
|
8258
8245
|
}
|
|
8259
8246
|
|
|
8260
|
-
export
|
|
8247
|
+
export type GeoMap$ClickEvent = Event<GeoMap$ClickEventParameters>;
|
|
8248
|
+
|
|
8249
|
+
export interface GeoMap$ContextMenuEventParameters {
|
|
8261
8250
|
/**
|
|
8262
8251
|
* Client coordinate X
|
|
8263
8252
|
*/
|
|
@@ -8274,14 +8263,18 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8274
8263
|
pos?: string;
|
|
8275
8264
|
}
|
|
8276
8265
|
|
|
8277
|
-
export
|
|
8266
|
+
export type GeoMap$ContextMenuEvent = Event<GeoMap$ContextMenuEventParameters>;
|
|
8267
|
+
|
|
8268
|
+
export interface GeoMap$DropEventParameters {
|
|
8278
8269
|
/**
|
|
8279
8270
|
* Geo coordinates in format "<longitude>;<latitude>;0"
|
|
8280
8271
|
*/
|
|
8281
8272
|
pos?: string;
|
|
8282
8273
|
}
|
|
8283
8274
|
|
|
8284
|
-
export
|
|
8275
|
+
export type GeoMap$DropEvent = Event<GeoMap$DropEventParameters>;
|
|
8276
|
+
|
|
8277
|
+
export interface GeoMap$KeyDownEventParameters {
|
|
8285
8278
|
/**
|
|
8286
8279
|
* Key value of the key
|
|
8287
8280
|
*/
|
|
@@ -8313,7 +8306,9 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8313
8306
|
meta?: boolean;
|
|
8314
8307
|
}
|
|
8315
8308
|
|
|
8316
|
-
export
|
|
8309
|
+
export type GeoMap$KeyDownEvent = Event<GeoMap$KeyDownEventParameters>;
|
|
8310
|
+
|
|
8311
|
+
export interface GeoMap$KeyPressEventParameters {
|
|
8317
8312
|
/**
|
|
8318
8313
|
* Key value of the key
|
|
8319
8314
|
*/
|
|
@@ -8345,7 +8340,9 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8345
8340
|
meta?: boolean;
|
|
8346
8341
|
}
|
|
8347
8342
|
|
|
8348
|
-
export
|
|
8343
|
+
export type GeoMap$KeyPressEvent = Event<GeoMap$KeyPressEventParameters>;
|
|
8344
|
+
|
|
8345
|
+
export interface GeoMap$KeyUpEventParameters {
|
|
8349
8346
|
/**
|
|
8350
8347
|
* Key value of the key
|
|
8351
8348
|
*/
|
|
@@ -8377,9 +8374,13 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8377
8374
|
meta?: boolean;
|
|
8378
8375
|
}
|
|
8379
8376
|
|
|
8380
|
-
export
|
|
8377
|
+
export type GeoMap$KeyUpEvent = Event<GeoMap$KeyUpEventParameters>;
|
|
8381
8378
|
|
|
8382
|
-
export interface $
|
|
8379
|
+
export interface GeoMap$SelectEventParameters {}
|
|
8380
|
+
|
|
8381
|
+
export type GeoMap$SelectEvent = Event<GeoMap$SelectEventParameters>;
|
|
8382
|
+
|
|
8383
|
+
export interface GeoMap$ZoomChangedEventParameters {
|
|
8383
8384
|
/**
|
|
8384
8385
|
* Center point of the map. Format : Lon;Lat;0.0.
|
|
8385
8386
|
*/
|
|
@@ -8395,6 +8396,8 @@ declare module "sap/ui/vbm/GeoMap" {
|
|
|
8395
8396
|
*/
|
|
8396
8397
|
zoomLevel?: int;
|
|
8397
8398
|
}
|
|
8399
|
+
|
|
8400
|
+
export type GeoMap$ZoomChangedEvent = Event<GeoMap$ZoomChangedEventParameters>;
|
|
8398
8401
|
}
|
|
8399
8402
|
|
|
8400
8403
|
declare module "sap/ui/vbm/Heatmap" {
|
|
@@ -8415,7 +8418,7 @@ declare module "sap/ui/vbm/Heatmap" {
|
|
|
8415
8418
|
/**
|
|
8416
8419
|
* Type specific Visual Object aggregation for HeatPoint instances.
|
|
8417
8420
|
*/
|
|
8418
|
-
class Heatmap extends VoAbstract {
|
|
8421
|
+
export default class Heatmap extends VoAbstract {
|
|
8419
8422
|
/**
|
|
8420
8423
|
* Constructor for a new Heatmap.
|
|
8421
8424
|
*
|
|
@@ -8761,7 +8764,6 @@ declare module "sap/ui/vbm/Heatmap" {
|
|
|
8761
8764
|
sValueScale?: string
|
|
8762
8765
|
): this;
|
|
8763
8766
|
}
|
|
8764
|
-
export default Heatmap;
|
|
8765
8767
|
|
|
8766
8768
|
export interface $HeatmapSettings extends $VoAbstractSettings {
|
|
8767
8769
|
/**
|
|
@@ -8829,7 +8831,7 @@ declare module "sap/ui/vbm/HeatPoint" {
|
|
|
8829
8831
|
/**
|
|
8830
8832
|
* Specific Visual Object element for a HeatPoint.
|
|
8831
8833
|
*/
|
|
8832
|
-
class HeatPoint extends VoBase {
|
|
8834
|
+
export default class HeatPoint extends VoBase {
|
|
8833
8835
|
/**
|
|
8834
8836
|
* Constructor for a new HeatPoint.
|
|
8835
8837
|
*
|
|
@@ -8964,7 +8966,6 @@ declare module "sap/ui/vbm/HeatPoint" {
|
|
|
8964
8966
|
sValue?: string
|
|
8965
8967
|
): this;
|
|
8966
8968
|
}
|
|
8967
|
-
export default HeatPoint;
|
|
8968
8969
|
|
|
8969
8970
|
export interface $HeatPointSettings extends $VoBaseSettings {
|
|
8970
8971
|
/**
|
|
@@ -8989,8 +8990,6 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
8989
8990
|
|
|
8990
8991
|
import LegendItem from "sap/ui/vbm/LegendItem";
|
|
8991
8992
|
|
|
8992
|
-
import Event from "sap/ui/base/Event";
|
|
8993
|
-
|
|
8994
8993
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8995
8994
|
|
|
8996
8995
|
import {
|
|
@@ -8998,11 +8997,13 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
8998
8997
|
AggregationBindingInfo,
|
|
8999
8998
|
} from "sap/ui/base/ManagedObject";
|
|
9000
8999
|
|
|
9000
|
+
import Event from "sap/ui/base/Event";
|
|
9001
|
+
|
|
9001
9002
|
/**
|
|
9002
9003
|
* The Legend is a window in the GeoMap or AnalyticMap control wich can be used to display color/icon-text
|
|
9003
9004
|
* pairs on a map.
|
|
9004
9005
|
*/
|
|
9005
|
-
class Legend extends UI5Element {
|
|
9006
|
+
export default class Legend extends UI5Element {
|
|
9006
9007
|
/**
|
|
9007
9008
|
* Constructor for a new Legend.
|
|
9008
9009
|
*
|
|
@@ -9093,7 +9094,7 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9093
9094
|
/**
|
|
9094
9095
|
* The function to be called when the event occurs
|
|
9095
9096
|
*/
|
|
9096
|
-
fnFunction: (p1:
|
|
9097
|
+
fnFunction: (p1: Legend$ClickEvent) => void,
|
|
9097
9098
|
/**
|
|
9098
9099
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Legend` itself
|
|
9099
9100
|
*/
|
|
@@ -9113,7 +9114,7 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9113
9114
|
/**
|
|
9114
9115
|
* The function to be called when the event occurs
|
|
9115
9116
|
*/
|
|
9116
|
-
fnFunction: (p1:
|
|
9117
|
+
fnFunction: (p1: Legend$ClickEvent) => void,
|
|
9117
9118
|
/**
|
|
9118
9119
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Legend` itself
|
|
9119
9120
|
*/
|
|
@@ -9136,14 +9137,14 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9136
9137
|
/**
|
|
9137
9138
|
* The function to be called, when the event occurs
|
|
9138
9139
|
*/
|
|
9139
|
-
fnFunction: (p1:
|
|
9140
|
+
fnFunction: (p1: Legend$ClickEvent) => void,
|
|
9140
9141
|
/**
|
|
9141
9142
|
* Context object on which the given function had to be called
|
|
9142
9143
|
*/
|
|
9143
9144
|
oListener?: object
|
|
9144
9145
|
): this;
|
|
9145
9146
|
/**
|
|
9146
|
-
* @
|
|
9147
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9147
9148
|
*
|
|
9148
9149
|
* Fires event {@link #event:click click} to attached listeners.
|
|
9149
9150
|
*
|
|
@@ -9153,7 +9154,7 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9153
9154
|
/**
|
|
9154
9155
|
* Parameters to pass along with the event
|
|
9155
9156
|
*/
|
|
9156
|
-
mParameters?: $
|
|
9157
|
+
mParameters?: Legend$ClickEventParameters
|
|
9157
9158
|
): this;
|
|
9158
9159
|
/**
|
|
9159
9160
|
* Gets current value of property {@link #getCaption caption}.
|
|
@@ -9237,7 +9238,6 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9237
9238
|
sCaption?: string
|
|
9238
9239
|
): this;
|
|
9239
9240
|
}
|
|
9240
|
-
export default Legend;
|
|
9241
9241
|
|
|
9242
9242
|
export interface $LegendSettings extends $ElementSettings {
|
|
9243
9243
|
/**
|
|
@@ -9253,10 +9253,10 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9253
9253
|
/**
|
|
9254
9254
|
* The event is raised when there is a click action on a legend.
|
|
9255
9255
|
*/
|
|
9256
|
-
click?: (oEvent:
|
|
9256
|
+
click?: (oEvent: Legend$ClickEvent) => void;
|
|
9257
9257
|
}
|
|
9258
9258
|
|
|
9259
|
-
export interface $
|
|
9259
|
+
export interface Legend$ClickEventParameters {
|
|
9260
9260
|
/**
|
|
9261
9261
|
* Event data object
|
|
9262
9262
|
*/
|
|
@@ -9287,25 +9287,27 @@ declare module "sap/ui/vbm/Legend" {
|
|
|
9287
9287
|
*/
|
|
9288
9288
|
altKey?: boolean;
|
|
9289
9289
|
}
|
|
9290
|
+
|
|
9291
|
+
export type Legend$ClickEvent = Event<Legend$ClickEventParameters>;
|
|
9290
9292
|
}
|
|
9291
9293
|
|
|
9292
9294
|
declare module "sap/ui/vbm/LegendItem" {
|
|
9293
9295
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
9294
9296
|
|
|
9295
|
-
import Event from "sap/ui/base/Event";
|
|
9296
|
-
|
|
9297
9297
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
9298
9298
|
|
|
9299
9299
|
import { SemanticType } from "sap/ui/vbm/library";
|
|
9300
9300
|
|
|
9301
9301
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
9302
9302
|
|
|
9303
|
+
import Event from "sap/ui/base/Event";
|
|
9304
|
+
|
|
9303
9305
|
/**
|
|
9304
9306
|
* Aggregation element for the Legend. A LegendItem consists of marker and an associated text. The marker
|
|
9305
9307
|
* is either a rectangle in the given color or the given image or a semantic spot type. If no marker but
|
|
9306
9308
|
* only a text is provided then it is shown in italic letters and can be regarded as a header.
|
|
9307
9309
|
*/
|
|
9308
|
-
class LegendItem extends UI5Element {
|
|
9310
|
+
export default class LegendItem extends UI5Element {
|
|
9309
9311
|
/**
|
|
9310
9312
|
* Constructor for a new LegendItem.
|
|
9311
9313
|
*
|
|
@@ -9385,7 +9387,7 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9385
9387
|
/**
|
|
9386
9388
|
* The function to be called when the event occurs
|
|
9387
9389
|
*/
|
|
9388
|
-
fnFunction: (p1:
|
|
9390
|
+
fnFunction: (p1: LegendItem$ClickEvent) => void,
|
|
9389
9391
|
/**
|
|
9390
9392
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.LegendItem` itself
|
|
9391
9393
|
*/
|
|
@@ -9405,7 +9407,7 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9405
9407
|
/**
|
|
9406
9408
|
* The function to be called when the event occurs
|
|
9407
9409
|
*/
|
|
9408
|
-
fnFunction: (p1:
|
|
9410
|
+
fnFunction: (p1: LegendItem$ClickEvent) => void,
|
|
9409
9411
|
/**
|
|
9410
9412
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.LegendItem` itself
|
|
9411
9413
|
*/
|
|
@@ -9422,14 +9424,14 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9422
9424
|
/**
|
|
9423
9425
|
* The function to be called, when the event occurs
|
|
9424
9426
|
*/
|
|
9425
|
-
fnFunction: (p1:
|
|
9427
|
+
fnFunction: (p1: LegendItem$ClickEvent) => void,
|
|
9426
9428
|
/**
|
|
9427
9429
|
* Context object on which the given function had to be called
|
|
9428
9430
|
*/
|
|
9429
9431
|
oListener?: object
|
|
9430
9432
|
): this;
|
|
9431
9433
|
/**
|
|
9432
|
-
* @
|
|
9434
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9433
9435
|
*
|
|
9434
9436
|
* Fires event {@link #event:click click} to attached listeners.
|
|
9435
9437
|
*
|
|
@@ -9439,7 +9441,7 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9439
9441
|
/**
|
|
9440
9442
|
* Parameters to pass along with the event
|
|
9441
9443
|
*/
|
|
9442
|
-
mParameters?: $
|
|
9444
|
+
mParameters?: LegendItem$ClickEventParameters
|
|
9443
9445
|
): this;
|
|
9444
9446
|
/**
|
|
9445
9447
|
* Gets current value of property {@link #getColor color}.
|
|
@@ -9538,7 +9540,6 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9538
9540
|
sText?: string
|
|
9539
9541
|
): this;
|
|
9540
9542
|
}
|
|
9541
|
-
export default LegendItem;
|
|
9542
9543
|
|
|
9543
9544
|
export interface $LegendItemSettings extends $ElementSettings {
|
|
9544
9545
|
/**
|
|
@@ -9567,10 +9568,10 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9567
9568
|
/**
|
|
9568
9569
|
* The event is raised when there is a click action on a legend item.
|
|
9569
9570
|
*/
|
|
9570
|
-
click?: (oEvent:
|
|
9571
|
+
click?: (oEvent: LegendItem$ClickEvent) => void;
|
|
9571
9572
|
}
|
|
9572
9573
|
|
|
9573
|
-
export interface $
|
|
9574
|
+
export interface LegendItem$ClickEventParameters {
|
|
9574
9575
|
/**
|
|
9575
9576
|
* Event data object
|
|
9576
9577
|
*/
|
|
@@ -9596,6 +9597,8 @@ declare module "sap/ui/vbm/LegendItem" {
|
|
|
9596
9597
|
*/
|
|
9597
9598
|
altKey?: boolean;
|
|
9598
9599
|
}
|
|
9600
|
+
|
|
9601
|
+
export type LegendItem$ClickEvent = Event<LegendItem$ClickEventParameters>;
|
|
9599
9602
|
}
|
|
9600
9603
|
|
|
9601
9604
|
declare module "sap/ui/vbm/Pie" {
|
|
@@ -9618,7 +9621,7 @@ declare module "sap/ui/vbm/Pie" {
|
|
|
9618
9621
|
* The property hotDeltaColor borrowed from VoBase is applied only to the hot PieItem and not the
|
|
9619
9622
|
* whole pie.
|
|
9620
9623
|
*/
|
|
9621
|
-
class Pie extends VoBase {
|
|
9624
|
+
export default class Pie extends VoBase {
|
|
9622
9625
|
/**
|
|
9623
9626
|
* Constructor for a new Pie.
|
|
9624
9627
|
*
|
|
@@ -9799,7 +9802,6 @@ declare module "sap/ui/vbm/Pie" {
|
|
|
9799
9802
|
sScale?: string
|
|
9800
9803
|
): this;
|
|
9801
9804
|
}
|
|
9802
|
-
export default Pie;
|
|
9803
9805
|
|
|
9804
9806
|
export interface $PieSettings extends $VoBaseSettings {
|
|
9805
9807
|
/**
|
|
@@ -9832,7 +9834,7 @@ declare module "sap/ui/vbm/PieItem" {
|
|
|
9832
9834
|
/**
|
|
9833
9835
|
* Slice element for a Pie Chart.
|
|
9834
9836
|
*/
|
|
9835
|
-
class PieItem extends UI5Element {
|
|
9837
|
+
export default class PieItem extends UI5Element {
|
|
9836
9838
|
/**
|
|
9837
9839
|
* Constructor for a new PieItem.
|
|
9838
9840
|
*
|
|
@@ -9963,7 +9965,7 @@ declare module "sap/ui/vbm/PieItem" {
|
|
|
9963
9965
|
/**
|
|
9964
9966
|
* @deprecated (since 1.31) - This event should no longer be used. Click event from Pie and Pies now includes
|
|
9965
9967
|
* Pie Item index when event occurs.
|
|
9966
|
-
* @
|
|
9968
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9967
9969
|
*
|
|
9968
9970
|
* Fires event {@link #event:click click} to attached listeners.
|
|
9969
9971
|
*
|
|
@@ -10049,7 +10051,6 @@ declare module "sap/ui/vbm/PieItem" {
|
|
|
10049
10051
|
sValue?: string
|
|
10050
10052
|
): this;
|
|
10051
10053
|
}
|
|
10052
|
-
export default PieItem;
|
|
10053
10054
|
|
|
10054
10055
|
export interface $PieItemSettings extends $ElementSettings {
|
|
10055
10056
|
/**
|
|
@@ -10074,7 +10075,9 @@ declare module "sap/ui/vbm/PieItem" {
|
|
|
10074
10075
|
click?: (oEvent: Event) => void;
|
|
10075
10076
|
}
|
|
10076
10077
|
|
|
10077
|
-
export interface $
|
|
10078
|
+
export interface PieItem$ClickEventParameters {}
|
|
10079
|
+
|
|
10080
|
+
export type PieItem$ClickEvent = Event<PieItem$ClickEventParameters>;
|
|
10078
10081
|
}
|
|
10079
10082
|
|
|
10080
10083
|
declare module "sap/ui/vbm/Pies" {
|
|
@@ -10095,7 +10098,7 @@ declare module "sap/ui/vbm/Pies" {
|
|
|
10095
10098
|
/**
|
|
10096
10099
|
* Type specific Visual Object aggregation for Pie instances.
|
|
10097
10100
|
*/
|
|
10098
|
-
class Pies extends VoAggregation {
|
|
10101
|
+
export default class Pies extends VoAggregation {
|
|
10099
10102
|
/**
|
|
10100
10103
|
* Constructor for a new Pies.
|
|
10101
10104
|
*
|
|
@@ -10286,7 +10289,6 @@ declare module "sap/ui/vbm/Pies" {
|
|
|
10286
10289
|
bScaleChangeable?: boolean
|
|
10287
10290
|
): this;
|
|
10288
10291
|
}
|
|
10289
|
-
export default Pies;
|
|
10290
10292
|
|
|
10291
10293
|
export interface $PiesSettings extends $VoAggregationSettings {
|
|
10292
10294
|
/**
|
|
@@ -10311,8 +10313,6 @@ declare module "sap/ui/vbm/Pies" {
|
|
|
10311
10313
|
declare module "sap/ui/vbm/Region" {
|
|
10312
10314
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
10313
10315
|
|
|
10314
|
-
import Event from "sap/ui/base/Event";
|
|
10315
|
-
|
|
10316
10316
|
import { CSSColor } from "sap/ui/core/library";
|
|
10317
10317
|
|
|
10318
10318
|
import { SemanticType } from "sap/ui/vbm/library";
|
|
@@ -10321,10 +10321,12 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10321
10321
|
|
|
10322
10322
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
10323
10323
|
|
|
10324
|
+
import Event from "sap/ui/base/Event";
|
|
10325
|
+
|
|
10324
10326
|
/**
|
|
10325
10327
|
* Region properties.
|
|
10326
10328
|
*/
|
|
10327
|
-
class Region extends UI5Element {
|
|
10329
|
+
export default class Region extends UI5Element {
|
|
10328
10330
|
/**
|
|
10329
10331
|
* Constructor for a new Region.
|
|
10330
10332
|
*
|
|
@@ -10404,7 +10406,7 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10404
10406
|
/**
|
|
10405
10407
|
* The function to be called when the event occurs
|
|
10406
10408
|
*/
|
|
10407
|
-
fnFunction: (p1:
|
|
10409
|
+
fnFunction: (p1: Region$ClickEvent) => void,
|
|
10408
10410
|
/**
|
|
10409
10411
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Region` itself
|
|
10410
10412
|
*/
|
|
@@ -10424,7 +10426,7 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10424
10426
|
/**
|
|
10425
10427
|
* The function to be called when the event occurs
|
|
10426
10428
|
*/
|
|
10427
|
-
fnFunction: (p1:
|
|
10429
|
+
fnFunction: (p1: Region$ClickEvent) => void,
|
|
10428
10430
|
/**
|
|
10429
10431
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Region` itself
|
|
10430
10432
|
*/
|
|
@@ -10449,7 +10451,7 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10449
10451
|
/**
|
|
10450
10452
|
* The function to be called when the event occurs
|
|
10451
10453
|
*/
|
|
10452
|
-
fnFunction: (p1:
|
|
10454
|
+
fnFunction: (p1: Region$ContextMenuEvent) => void,
|
|
10453
10455
|
/**
|
|
10454
10456
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Region` itself
|
|
10455
10457
|
*/
|
|
@@ -10469,7 +10471,7 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10469
10471
|
/**
|
|
10470
10472
|
* The function to be called when the event occurs
|
|
10471
10473
|
*/
|
|
10472
|
-
fnFunction: (p1:
|
|
10474
|
+
fnFunction: (p1: Region$ContextMenuEvent) => void,
|
|
10473
10475
|
/**
|
|
10474
10476
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Region` itself
|
|
10475
10477
|
*/
|
|
@@ -10486,7 +10488,7 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10486
10488
|
/**
|
|
10487
10489
|
* The function to be called, when the event occurs
|
|
10488
10490
|
*/
|
|
10489
|
-
fnFunction: (p1:
|
|
10491
|
+
fnFunction: (p1: Region$ClickEvent) => void,
|
|
10490
10492
|
/**
|
|
10491
10493
|
* Context object on which the given function had to be called
|
|
10492
10494
|
*/
|
|
@@ -10503,14 +10505,14 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10503
10505
|
/**
|
|
10504
10506
|
* The function to be called, when the event occurs
|
|
10505
10507
|
*/
|
|
10506
|
-
fnFunction: (p1:
|
|
10508
|
+
fnFunction: (p1: Region$ContextMenuEvent) => void,
|
|
10507
10509
|
/**
|
|
10508
10510
|
* Context object on which the given function had to be called
|
|
10509
10511
|
*/
|
|
10510
10512
|
oListener?: object
|
|
10511
10513
|
): this;
|
|
10512
10514
|
/**
|
|
10513
|
-
* @
|
|
10515
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
10514
10516
|
*
|
|
10515
10517
|
* Fires event {@link #event:click click} to attached listeners.
|
|
10516
10518
|
*
|
|
@@ -10520,10 +10522,10 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10520
10522
|
/**
|
|
10521
10523
|
* Parameters to pass along with the event
|
|
10522
10524
|
*/
|
|
10523
|
-
mParameters?: $
|
|
10525
|
+
mParameters?: Region$ClickEventParameters
|
|
10524
10526
|
): this;
|
|
10525
10527
|
/**
|
|
10526
|
-
* @
|
|
10528
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
10527
10529
|
*
|
|
10528
10530
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
10529
10531
|
*
|
|
@@ -10533,7 +10535,7 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10533
10535
|
/**
|
|
10534
10536
|
* Parameters to pass along with the event
|
|
10535
10537
|
*/
|
|
10536
|
-
mParameters?: $
|
|
10538
|
+
mParameters?: Region$ContextMenuEventParameters
|
|
10537
10539
|
): this;
|
|
10538
10540
|
/**
|
|
10539
10541
|
* Gets current value of property {@link #getCode code}.
|
|
@@ -10734,7 +10736,6 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10734
10736
|
bSelect?: boolean
|
|
10735
10737
|
): this;
|
|
10736
10738
|
}
|
|
10737
|
-
export default Region;
|
|
10738
10739
|
|
|
10739
10740
|
export interface $RegionSettings extends $ElementSettings {
|
|
10740
10741
|
/**
|
|
@@ -10775,27 +10776,31 @@ declare module "sap/ui/vbm/Region" {
|
|
|
10775
10776
|
/**
|
|
10776
10777
|
* The event is raised when there is a click action on a region.
|
|
10777
10778
|
*/
|
|
10778
|
-
click?: (oEvent:
|
|
10779
|
+
click?: (oEvent: Region$ClickEvent) => void;
|
|
10779
10780
|
|
|
10780
10781
|
/**
|
|
10781
10782
|
* The event is raised when there is a right click or a tap and hold action on a region.
|
|
10782
10783
|
*/
|
|
10783
|
-
contextMenu?: (oEvent:
|
|
10784
|
+
contextMenu?: (oEvent: Region$ContextMenuEvent) => void;
|
|
10784
10785
|
}
|
|
10785
10786
|
|
|
10786
|
-
export interface $
|
|
10787
|
+
export interface Region$ClickEventParameters {
|
|
10787
10788
|
/**
|
|
10788
10789
|
* The region code.
|
|
10789
10790
|
*/
|
|
10790
10791
|
code?: string;
|
|
10791
10792
|
}
|
|
10792
10793
|
|
|
10793
|
-
export
|
|
10794
|
+
export type Region$ClickEvent = Event<Region$ClickEventParameters>;
|
|
10795
|
+
|
|
10796
|
+
export interface Region$ContextMenuEventParameters {
|
|
10794
10797
|
/**
|
|
10795
10798
|
* The region code.
|
|
10796
10799
|
*/
|
|
10797
10800
|
code?: string;
|
|
10798
10801
|
}
|
|
10802
|
+
|
|
10803
|
+
export type Region$ContextMenuEvent = Event<Region$ContextMenuEventParameters>;
|
|
10799
10804
|
}
|
|
10800
10805
|
|
|
10801
10806
|
declare module "sap/ui/vbm/Resource" {
|
|
@@ -10812,7 +10817,7 @@ declare module "sap/ui/vbm/Resource" {
|
|
|
10812
10817
|
* a Base64 encoded binary. This happens asynchronously and it may require several re-renderings of the
|
|
10813
10818
|
* control until all resource show up correctly.
|
|
10814
10819
|
*/
|
|
10815
|
-
class Resource extends UI5Element {
|
|
10820
|
+
export default class Resource extends UI5Element {
|
|
10816
10821
|
/**
|
|
10817
10822
|
* Constructor for a new Resource.
|
|
10818
10823
|
*
|
|
@@ -10951,7 +10956,6 @@ declare module "sap/ui/vbm/Resource" {
|
|
|
10951
10956
|
sValue?: string
|
|
10952
10957
|
): this;
|
|
10953
10958
|
}
|
|
10954
|
-
export default Resource;
|
|
10955
10959
|
|
|
10956
10960
|
export interface $ResourceSettings extends $ElementSettings {
|
|
10957
10961
|
/**
|
|
@@ -11001,7 +11005,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
11001
11005
|
* types defined on element level apply only for a single element instance, except the element is used as
|
|
11002
11006
|
* template.
|
|
11003
11007
|
*/
|
|
11004
|
-
class Route extends VoBase {
|
|
11008
|
+
export default class Route extends VoBase {
|
|
11005
11009
|
/**
|
|
11006
11010
|
* Constructor for a new Route.
|
|
11007
11011
|
*
|
|
@@ -11211,7 +11215,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
11211
11215
|
*/
|
|
11212
11216
|
getPosition(): string;
|
|
11213
11217
|
/**
|
|
11214
|
-
* @
|
|
11218
|
+
* @experimental (since 1.32.0) - this method is experimental and might be modified or removed in future
|
|
11215
11219
|
* versions.
|
|
11216
11220
|
*
|
|
11217
11221
|
* Gets current value of property {@link #getRoutetype routetype}.
|
|
@@ -11504,7 +11508,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
11504
11508
|
sPosition?: string
|
|
11505
11509
|
): this;
|
|
11506
11510
|
/**
|
|
11507
|
-
* @
|
|
11511
|
+
* @experimental (since 1.32.0) - this method is experimental and might be modified or removed in future
|
|
11508
11512
|
* versions.
|
|
11509
11513
|
*
|
|
11510
11514
|
* Sets a new value for property {@link #getRoutetype routetype}.
|
|
@@ -11543,7 +11547,6 @@ declare module "sap/ui/vbm/Route" {
|
|
|
11543
11547
|
sStart?: string
|
|
11544
11548
|
): this;
|
|
11545
11549
|
}
|
|
11546
|
-
export default Route;
|
|
11547
11550
|
|
|
11548
11551
|
export interface $RouteSettings extends $VoBaseSettings {
|
|
11549
11552
|
/**
|
|
@@ -11604,7 +11607,7 @@ declare module "sap/ui/vbm/Route" {
|
|
|
11604
11607
|
dotwidth?: string | PropertyBindingInfo;
|
|
11605
11608
|
|
|
11606
11609
|
/**
|
|
11607
|
-
* @
|
|
11610
|
+
* @experimental (since 1.32.0) - this method is experimental and might be modified or removed in future
|
|
11608
11611
|
* versions.
|
|
11609
11612
|
*
|
|
11610
11613
|
* Defines the type of the route, default is 'Straight'. Other types are 'Geodesic' which show the shortest
|
|
@@ -11646,9 +11649,9 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
11646
11649
|
import {
|
|
11647
11650
|
default as VoAggregation,
|
|
11648
11651
|
$VoAggregationSettings,
|
|
11649
|
-
$
|
|
11650
|
-
$
|
|
11651
|
-
$
|
|
11652
|
+
VoAggregation$ClickEventParameters,
|
|
11653
|
+
VoAggregation$ContextMenuEventParameters,
|
|
11654
|
+
VoAggregation$DropEventParameters,
|
|
11652
11655
|
} from "sap/ui/vbm/VoAggregation";
|
|
11653
11656
|
|
|
11654
11657
|
import DragSource from "sap/ui/vbm/DragSource";
|
|
@@ -11673,7 +11676,7 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
11673
11676
|
* visual object matches a type in the drop target aggregation of the target vo. If drag source and drop
|
|
11674
11677
|
* target types are defined on aggregation level they apply for all aggregated elements.
|
|
11675
11678
|
*/
|
|
11676
|
-
class Routes extends VoAggregation {
|
|
11679
|
+
export default class Routes extends VoAggregation {
|
|
11677
11680
|
/**
|
|
11678
11681
|
* Constructor for a new Routes.
|
|
11679
11682
|
*
|
|
@@ -11972,7 +11975,7 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
11972
11975
|
oListener?: object
|
|
11973
11976
|
): this;
|
|
11974
11977
|
/**
|
|
11975
|
-
* @
|
|
11978
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
11976
11979
|
*
|
|
11977
11980
|
* Fires event {@link #event:click click} to attached listeners.
|
|
11978
11981
|
*
|
|
@@ -11985,7 +11988,7 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
11985
11988
|
mParameters?: object
|
|
11986
11989
|
): this;
|
|
11987
11990
|
/**
|
|
11988
|
-
* @
|
|
11991
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
11989
11992
|
*
|
|
11990
11993
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
11991
11994
|
*
|
|
@@ -11998,7 +12001,7 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
11998
12001
|
mParameters?: object
|
|
11999
12002
|
): this;
|
|
12000
12003
|
/**
|
|
12001
|
-
* @
|
|
12004
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
12002
12005
|
*
|
|
12003
12006
|
* Fires event {@link #event:drop drop} to attached listeners.
|
|
12004
12007
|
*
|
|
@@ -12202,7 +12205,6 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
12202
12205
|
bPosChangeable?: boolean
|
|
12203
12206
|
): this;
|
|
12204
12207
|
}
|
|
12205
|
-
export default Routes;
|
|
12206
12208
|
|
|
12207
12209
|
export interface $RoutesSettings extends $VoAggregationSettings {
|
|
12208
12210
|
/**
|
|
@@ -12250,14 +12252,20 @@ declare module "sap/ui/vbm/Routes" {
|
|
|
12250
12252
|
drop?: (oEvent: Event) => void;
|
|
12251
12253
|
}
|
|
12252
12254
|
|
|
12253
|
-
export interface $
|
|
12254
|
-
extends $
|
|
12255
|
+
export interface Routes$ClickEventParameters
|
|
12256
|
+
extends VoAggregation$ClickEventParameters {}
|
|
12255
12257
|
|
|
12256
|
-
export
|
|
12257
|
-
extends $VoAggregationContextMenuEventParameters {}
|
|
12258
|
+
export type Routes$ClickEvent = Event<Routes$ClickEventParameters>;
|
|
12258
12259
|
|
|
12259
|
-
export interface $
|
|
12260
|
-
extends $
|
|
12260
|
+
export interface Routes$ContextMenuEventParameters
|
|
12261
|
+
extends VoAggregation$ContextMenuEventParameters {}
|
|
12262
|
+
|
|
12263
|
+
export type Routes$ContextMenuEvent = Event<Routes$ContextMenuEventParameters>;
|
|
12264
|
+
|
|
12265
|
+
export interface Routes$DropEventParameters
|
|
12266
|
+
extends VoAggregation$DropEventParameters {}
|
|
12267
|
+
|
|
12268
|
+
export type Routes$DropEvent = Event<Routes$DropEventParameters>;
|
|
12261
12269
|
}
|
|
12262
12270
|
|
|
12263
12271
|
declare module "sap/ui/vbm/Spot" {
|
|
@@ -12290,7 +12298,7 @@ declare module "sap/ui/vbm/Spot" {
|
|
|
12290
12298
|
* types defined on element level apply only for a single element instance, except the element is used as
|
|
12291
12299
|
* template.
|
|
12292
12300
|
*/
|
|
12293
|
-
class Spot extends VoBase {
|
|
12301
|
+
export default class Spot extends VoBase {
|
|
12294
12302
|
/**
|
|
12295
12303
|
* Constructor for a new Spot.
|
|
12296
12304
|
*
|
|
@@ -12798,7 +12806,6 @@ declare module "sap/ui/vbm/Spot" {
|
|
|
12798
12806
|
sType?: SemanticType | keyof typeof SemanticType
|
|
12799
12807
|
): this;
|
|
12800
12808
|
}
|
|
12801
|
-
export default Spot;
|
|
12802
12809
|
|
|
12803
12810
|
export interface $SpotSettings extends $VoBaseSettings {
|
|
12804
12811
|
/**
|
|
@@ -12914,7 +12921,7 @@ declare module "sap/ui/vbm/Spots" {
|
|
|
12914
12921
|
* visual object matches a type in the drop target aggregation of the target vo. If drag source and drop
|
|
12915
12922
|
* target types are defined on aggregation level they apply for all aggregated elements.
|
|
12916
12923
|
*/
|
|
12917
|
-
class Spots extends VoAggregation {
|
|
12924
|
+
export default class Spots extends VoAggregation {
|
|
12918
12925
|
/**
|
|
12919
12926
|
* Constructor for a new Spots.
|
|
12920
12927
|
*
|
|
@@ -13247,7 +13254,6 @@ declare module "sap/ui/vbm/Spots" {
|
|
|
13247
13254
|
bScaleChangeable?: boolean
|
|
13248
13255
|
): this;
|
|
13249
13256
|
}
|
|
13250
|
-
export default Spots;
|
|
13251
13257
|
|
|
13252
13258
|
export interface $SpotsSettings extends $VoAggregationSettings {
|
|
13253
13259
|
/**
|
|
@@ -13292,14 +13298,14 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13292
13298
|
|
|
13293
13299
|
import { ID, CSSSize } from "sap/ui/core/library";
|
|
13294
13300
|
|
|
13295
|
-
import Event from "sap/ui/base/Event";
|
|
13296
|
-
|
|
13297
13301
|
import { ClusterInfoType } from "sap/ui/vbm/library";
|
|
13298
13302
|
|
|
13299
13303
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
13300
13304
|
|
|
13301
13305
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
13302
13306
|
|
|
13307
|
+
import Event from "sap/ui/base/Event";
|
|
13308
|
+
|
|
13303
13309
|
/**
|
|
13304
13310
|
* The VBI control. This is the Visual Business base control, which is mainly intended to communicate directly
|
|
13305
13311
|
* with the Visual Business Backend API in a proprietary JSON format. This control should not be used directly
|
|
@@ -13312,7 +13318,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13312
13318
|
* Additionally the control offers a low level API made of several events, like render, zoom, move and
|
|
13313
13319
|
* so on, which allow to render application specific content directly on the controls canvas.
|
|
13314
13320
|
*/
|
|
13315
|
-
class VBI extends Control {
|
|
13321
|
+
export default class VBI extends Control {
|
|
13316
13322
|
/**
|
|
13317
13323
|
* Constructor for a new VBI.
|
|
13318
13324
|
*
|
|
@@ -13396,7 +13402,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13396
13402
|
vAriaLabelledBy: ID | Control
|
|
13397
13403
|
): this;
|
|
13398
13404
|
/**
|
|
13399
|
-
* @
|
|
13405
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13400
13406
|
*
|
|
13401
13407
|
* Add dependant child control for rendering.
|
|
13402
13408
|
*/
|
|
@@ -13430,7 +13436,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13430
13436
|
/**
|
|
13431
13437
|
* The function to be called when the event occurs
|
|
13432
13438
|
*/
|
|
13433
|
-
fnFunction: (p1:
|
|
13439
|
+
fnFunction: (p1: VBI$ChangeTrackingModeEvent) => void,
|
|
13434
13440
|
/**
|
|
13435
13441
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13436
13442
|
*/
|
|
@@ -13451,7 +13457,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13451
13457
|
/**
|
|
13452
13458
|
* The function to be called when the event occurs
|
|
13453
13459
|
*/
|
|
13454
|
-
fnFunction: (p1:
|
|
13460
|
+
fnFunction: (p1: VBI$ChangeTrackingModeEvent) => void,
|
|
13455
13461
|
/**
|
|
13456
13462
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13457
13463
|
*/
|
|
@@ -13477,7 +13483,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13477
13483
|
/**
|
|
13478
13484
|
* The function to be called when the event occurs
|
|
13479
13485
|
*/
|
|
13480
|
-
fnFunction: (p1:
|
|
13486
|
+
fnFunction: (p1: VBI$CloseWindowEvent) => void,
|
|
13481
13487
|
/**
|
|
13482
13488
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13483
13489
|
*/
|
|
@@ -13498,7 +13504,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13498
13504
|
/**
|
|
13499
13505
|
* The function to be called when the event occurs
|
|
13500
13506
|
*/
|
|
13501
|
-
fnFunction: (p1:
|
|
13507
|
+
fnFunction: (p1: VBI$CloseWindowEvent) => void,
|
|
13502
13508
|
/**
|
|
13503
13509
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13504
13510
|
*/
|
|
@@ -13525,7 +13531,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13525
13531
|
/**
|
|
13526
13532
|
* The function to be called when the event occurs
|
|
13527
13533
|
*/
|
|
13528
|
-
fnFunction: (p1:
|
|
13534
|
+
fnFunction: (p1: VBI$ContainerCreatedEvent) => void,
|
|
13529
13535
|
/**
|
|
13530
13536
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13531
13537
|
*/
|
|
@@ -13547,7 +13553,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13547
13553
|
/**
|
|
13548
13554
|
* The function to be called when the event occurs
|
|
13549
13555
|
*/
|
|
13550
|
-
fnFunction: (p1:
|
|
13556
|
+
fnFunction: (p1: VBI$ContainerCreatedEvent) => void,
|
|
13551
13557
|
/**
|
|
13552
13558
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13553
13559
|
*/
|
|
@@ -13574,7 +13580,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13574
13580
|
/**
|
|
13575
13581
|
* The function to be called when the event occurs
|
|
13576
13582
|
*/
|
|
13577
|
-
fnFunction: (p1:
|
|
13583
|
+
fnFunction: (p1: VBI$ContainerDestroyedEvent) => void,
|
|
13578
13584
|
/**
|
|
13579
13585
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13580
13586
|
*/
|
|
@@ -13596,7 +13602,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13596
13602
|
/**
|
|
13597
13603
|
* The function to be called when the event occurs
|
|
13598
13604
|
*/
|
|
13599
|
-
fnFunction: (p1:
|
|
13605
|
+
fnFunction: (p1: VBI$ContainerDestroyedEvent) => void,
|
|
13600
13606
|
/**
|
|
13601
13607
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13602
13608
|
*/
|
|
@@ -13621,7 +13627,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13621
13627
|
/**
|
|
13622
13628
|
* The function to be called when the event occurs
|
|
13623
13629
|
*/
|
|
13624
|
-
fnFunction: (p1:
|
|
13630
|
+
fnFunction: (p1: VBI$MoveEvent) => void,
|
|
13625
13631
|
/**
|
|
13626
13632
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13627
13633
|
*/
|
|
@@ -13641,7 +13647,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13641
13647
|
/**
|
|
13642
13648
|
* The function to be called when the event occurs
|
|
13643
13649
|
*/
|
|
13644
|
-
fnFunction: (p1:
|
|
13650
|
+
fnFunction: (p1: VBI$MoveEvent) => void,
|
|
13645
13651
|
/**
|
|
13646
13652
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13647
13653
|
*/
|
|
@@ -13667,7 +13673,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13667
13673
|
/**
|
|
13668
13674
|
* The function to be called when the event occurs
|
|
13669
13675
|
*/
|
|
13670
|
-
fnFunction: (p1:
|
|
13676
|
+
fnFunction: (p1: VBI$OpenWindowEvent) => void,
|
|
13671
13677
|
/**
|
|
13672
13678
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13673
13679
|
*/
|
|
@@ -13688,7 +13694,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13688
13694
|
/**
|
|
13689
13695
|
* The function to be called when the event occurs
|
|
13690
13696
|
*/
|
|
13691
|
-
fnFunction: (p1:
|
|
13697
|
+
fnFunction: (p1: VBI$OpenWindowEvent) => void,
|
|
13692
13698
|
/**
|
|
13693
13699
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13694
13700
|
*/
|
|
@@ -13714,7 +13720,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13714
13720
|
/**
|
|
13715
13721
|
* The function to be called when the event occurs
|
|
13716
13722
|
*/
|
|
13717
|
-
fnFunction: (p1:
|
|
13723
|
+
fnFunction: (p1: VBI$RenderEvent) => void,
|
|
13718
13724
|
/**
|
|
13719
13725
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13720
13726
|
*/
|
|
@@ -13735,7 +13741,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13735
13741
|
/**
|
|
13736
13742
|
* The function to be called when the event occurs
|
|
13737
13743
|
*/
|
|
13738
|
-
fnFunction: (p1:
|
|
13744
|
+
fnFunction: (p1: VBI$RenderEvent) => void,
|
|
13739
13745
|
/**
|
|
13740
13746
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13741
13747
|
*/
|
|
@@ -13760,7 +13766,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13760
13766
|
/**
|
|
13761
13767
|
* The function to be called when the event occurs
|
|
13762
13768
|
*/
|
|
13763
|
-
fnFunction: (p1:
|
|
13769
|
+
fnFunction: (p1: VBI$SubmitEvent) => void,
|
|
13764
13770
|
/**
|
|
13765
13771
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13766
13772
|
*/
|
|
@@ -13780,7 +13786,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13780
13786
|
/**
|
|
13781
13787
|
* The function to be called when the event occurs
|
|
13782
13788
|
*/
|
|
13783
|
-
fnFunction: (p1:
|
|
13789
|
+
fnFunction: (p1: VBI$SubmitEvent) => void,
|
|
13784
13790
|
/**
|
|
13785
13791
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13786
13792
|
*/
|
|
@@ -13806,7 +13812,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13806
13812
|
/**
|
|
13807
13813
|
* The function to be called when the event occurs
|
|
13808
13814
|
*/
|
|
13809
|
-
fnFunction: (p1:
|
|
13815
|
+
fnFunction: (p1: VBI$ThumbnailClickEvent) => void,
|
|
13810
13816
|
/**
|
|
13811
13817
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13812
13818
|
*/
|
|
@@ -13827,7 +13833,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13827
13833
|
/**
|
|
13828
13834
|
* The function to be called when the event occurs
|
|
13829
13835
|
*/
|
|
13830
|
-
fnFunction: (p1:
|
|
13836
|
+
fnFunction: (p1: VBI$ThumbnailClickEvent) => void,
|
|
13831
13837
|
/**
|
|
13832
13838
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13833
13839
|
*/
|
|
@@ -13852,7 +13858,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13852
13858
|
/**
|
|
13853
13859
|
* The function to be called when the event occurs
|
|
13854
13860
|
*/
|
|
13855
|
-
fnFunction: (p1:
|
|
13861
|
+
fnFunction: (p1: VBI$ZoomEvent) => void,
|
|
13856
13862
|
/**
|
|
13857
13863
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13858
13864
|
*/
|
|
@@ -13872,7 +13878,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13872
13878
|
/**
|
|
13873
13879
|
* The function to be called when the event occurs
|
|
13874
13880
|
*/
|
|
13875
|
-
fnFunction: (p1:
|
|
13881
|
+
fnFunction: (p1: VBI$ZoomEvent) => void,
|
|
13876
13882
|
/**
|
|
13877
13883
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VBI` itself
|
|
13878
13884
|
*/
|
|
@@ -13890,7 +13896,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13890
13896
|
/**
|
|
13891
13897
|
* The function to be called, when the event occurs
|
|
13892
13898
|
*/
|
|
13893
|
-
fnFunction: (p1:
|
|
13899
|
+
fnFunction: (p1: VBI$ChangeTrackingModeEvent) => void,
|
|
13894
13900
|
/**
|
|
13895
13901
|
* Context object on which the given function had to be called
|
|
13896
13902
|
*/
|
|
@@ -13907,7 +13913,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13907
13913
|
/**
|
|
13908
13914
|
* The function to be called, when the event occurs
|
|
13909
13915
|
*/
|
|
13910
|
-
fnFunction: (p1:
|
|
13916
|
+
fnFunction: (p1: VBI$CloseWindowEvent) => void,
|
|
13911
13917
|
/**
|
|
13912
13918
|
* Context object on which the given function had to be called
|
|
13913
13919
|
*/
|
|
@@ -13925,7 +13931,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13925
13931
|
/**
|
|
13926
13932
|
* The function to be called, when the event occurs
|
|
13927
13933
|
*/
|
|
13928
|
-
fnFunction: (p1:
|
|
13934
|
+
fnFunction: (p1: VBI$ContainerCreatedEvent) => void,
|
|
13929
13935
|
/**
|
|
13930
13936
|
* Context object on which the given function had to be called
|
|
13931
13937
|
*/
|
|
@@ -13943,7 +13949,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13943
13949
|
/**
|
|
13944
13950
|
* The function to be called, when the event occurs
|
|
13945
13951
|
*/
|
|
13946
|
-
fnFunction: (p1:
|
|
13952
|
+
fnFunction: (p1: VBI$ContainerDestroyedEvent) => void,
|
|
13947
13953
|
/**
|
|
13948
13954
|
* Context object on which the given function had to be called
|
|
13949
13955
|
*/
|
|
@@ -13960,7 +13966,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13960
13966
|
/**
|
|
13961
13967
|
* The function to be called, when the event occurs
|
|
13962
13968
|
*/
|
|
13963
|
-
fnFunction: (p1:
|
|
13969
|
+
fnFunction: (p1: VBI$MoveEvent) => void,
|
|
13964
13970
|
/**
|
|
13965
13971
|
* Context object on which the given function had to be called
|
|
13966
13972
|
*/
|
|
@@ -13977,7 +13983,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13977
13983
|
/**
|
|
13978
13984
|
* The function to be called, when the event occurs
|
|
13979
13985
|
*/
|
|
13980
|
-
fnFunction: (p1:
|
|
13986
|
+
fnFunction: (p1: VBI$OpenWindowEvent) => void,
|
|
13981
13987
|
/**
|
|
13982
13988
|
* Context object on which the given function had to be called
|
|
13983
13989
|
*/
|
|
@@ -13994,7 +14000,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
13994
14000
|
/**
|
|
13995
14001
|
* The function to be called, when the event occurs
|
|
13996
14002
|
*/
|
|
13997
|
-
fnFunction: (p1:
|
|
14003
|
+
fnFunction: (p1: VBI$RenderEvent) => void,
|
|
13998
14004
|
/**
|
|
13999
14005
|
* Context object on which the given function had to be called
|
|
14000
14006
|
*/
|
|
@@ -14011,7 +14017,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14011
14017
|
/**
|
|
14012
14018
|
* The function to be called, when the event occurs
|
|
14013
14019
|
*/
|
|
14014
|
-
fnFunction: (p1:
|
|
14020
|
+
fnFunction: (p1: VBI$SubmitEvent) => void,
|
|
14015
14021
|
/**
|
|
14016
14022
|
* Context object on which the given function had to be called
|
|
14017
14023
|
*/
|
|
@@ -14029,7 +14035,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14029
14035
|
/**
|
|
14030
14036
|
* The function to be called, when the event occurs
|
|
14031
14037
|
*/
|
|
14032
|
-
fnFunction: (p1:
|
|
14038
|
+
fnFunction: (p1: VBI$ThumbnailClickEvent) => void,
|
|
14033
14039
|
/**
|
|
14034
14040
|
* Context object on which the given function had to be called
|
|
14035
14041
|
*/
|
|
@@ -14046,14 +14052,14 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14046
14052
|
/**
|
|
14047
14053
|
* The function to be called, when the event occurs
|
|
14048
14054
|
*/
|
|
14049
|
-
fnFunction: (p1:
|
|
14055
|
+
fnFunction: (p1: VBI$ZoomEvent) => void,
|
|
14050
14056
|
/**
|
|
14051
14057
|
* Context object on which the given function had to be called
|
|
14052
14058
|
*/
|
|
14053
14059
|
oListener?: object
|
|
14054
14060
|
): this;
|
|
14055
14061
|
/**
|
|
14056
|
-
* @
|
|
14062
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14057
14063
|
*
|
|
14058
14064
|
* Fires event {@link #event:changeTrackingMode changeTrackingMode} to attached listeners.
|
|
14059
14065
|
*
|
|
@@ -14063,10 +14069,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14063
14069
|
/**
|
|
14064
14070
|
* Parameters to pass along with the event
|
|
14065
14071
|
*/
|
|
14066
|
-
mParameters?: $
|
|
14072
|
+
mParameters?: VBI$ChangeTrackingModeEventParameters
|
|
14067
14073
|
): this;
|
|
14068
14074
|
/**
|
|
14069
|
-
* @
|
|
14075
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14070
14076
|
*
|
|
14071
14077
|
* Fires event {@link #event:closeWindow closeWindow} to attached listeners.
|
|
14072
14078
|
*
|
|
@@ -14076,10 +14082,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14076
14082
|
/**
|
|
14077
14083
|
* Parameters to pass along with the event
|
|
14078
14084
|
*/
|
|
14079
|
-
mParameters?: $
|
|
14085
|
+
mParameters?: VBI$CloseWindowEventParameters
|
|
14080
14086
|
): this;
|
|
14081
14087
|
/**
|
|
14082
|
-
* @
|
|
14088
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14083
14089
|
*
|
|
14084
14090
|
* Fires event {@link #event:containerCreated containerCreated} to attached listeners.
|
|
14085
14091
|
*
|
|
@@ -14089,10 +14095,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14089
14095
|
/**
|
|
14090
14096
|
* Parameters to pass along with the event
|
|
14091
14097
|
*/
|
|
14092
|
-
mParameters?: $
|
|
14098
|
+
mParameters?: VBI$ContainerCreatedEventParameters
|
|
14093
14099
|
): this;
|
|
14094
14100
|
/**
|
|
14095
|
-
* @
|
|
14101
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14096
14102
|
*
|
|
14097
14103
|
* Fires event {@link #event:containerDestroyed containerDestroyed} to attached listeners.
|
|
14098
14104
|
*
|
|
@@ -14102,10 +14108,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14102
14108
|
/**
|
|
14103
14109
|
* Parameters to pass along with the event
|
|
14104
14110
|
*/
|
|
14105
|
-
mParameters?: $
|
|
14111
|
+
mParameters?: VBI$ContainerDestroyedEventParameters
|
|
14106
14112
|
): this;
|
|
14107
14113
|
/**
|
|
14108
|
-
* @
|
|
14114
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14109
14115
|
*
|
|
14110
14116
|
* Fires event {@link #event:move move} to attached listeners.
|
|
14111
14117
|
*
|
|
@@ -14115,10 +14121,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14115
14121
|
/**
|
|
14116
14122
|
* Parameters to pass along with the event
|
|
14117
14123
|
*/
|
|
14118
|
-
mParameters?: $
|
|
14124
|
+
mParameters?: VBI$MoveEventParameters
|
|
14119
14125
|
): this;
|
|
14120
14126
|
/**
|
|
14121
|
-
* @
|
|
14127
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14122
14128
|
*
|
|
14123
14129
|
* Fires event {@link #event:openWindow openWindow} to attached listeners.
|
|
14124
14130
|
*
|
|
@@ -14128,10 +14134,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14128
14134
|
/**
|
|
14129
14135
|
* Parameters to pass along with the event
|
|
14130
14136
|
*/
|
|
14131
|
-
mParameters?: $
|
|
14137
|
+
mParameters?: VBI$OpenWindowEventParameters
|
|
14132
14138
|
): this;
|
|
14133
14139
|
/**
|
|
14134
|
-
* @
|
|
14140
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14135
14141
|
*
|
|
14136
14142
|
* Fires event {@link #event:render render} to attached listeners.
|
|
14137
14143
|
*
|
|
@@ -14141,10 +14147,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14141
14147
|
/**
|
|
14142
14148
|
* Parameters to pass along with the event
|
|
14143
14149
|
*/
|
|
14144
|
-
mParameters?: $
|
|
14150
|
+
mParameters?: VBI$RenderEventParameters
|
|
14145
14151
|
): this;
|
|
14146
14152
|
/**
|
|
14147
|
-
* @
|
|
14153
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14148
14154
|
*
|
|
14149
14155
|
* Fires event {@link #event:submit submit} to attached listeners.
|
|
14150
14156
|
*
|
|
@@ -14154,10 +14160,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14154
14160
|
/**
|
|
14155
14161
|
* Parameters to pass along with the event
|
|
14156
14162
|
*/
|
|
14157
|
-
mParameters?: $
|
|
14163
|
+
mParameters?: VBI$SubmitEventParameters
|
|
14158
14164
|
): this;
|
|
14159
14165
|
/**
|
|
14160
|
-
* @
|
|
14166
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14161
14167
|
*
|
|
14162
14168
|
* Fires event {@link #event:thumbnailClick thumbnailClick} to attached listeners.
|
|
14163
14169
|
*
|
|
@@ -14167,10 +14173,10 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14167
14173
|
/**
|
|
14168
14174
|
* Parameters to pass along with the event
|
|
14169
14175
|
*/
|
|
14170
|
-
mParameters?: $
|
|
14176
|
+
mParameters?: VBI$ThumbnailClickEventParameters
|
|
14171
14177
|
): this;
|
|
14172
14178
|
/**
|
|
14173
|
-
* @
|
|
14179
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14174
14180
|
*
|
|
14175
14181
|
* Fires event {@link #event:zoom zoom} to attached listeners.
|
|
14176
14182
|
*
|
|
@@ -14180,7 +14186,7 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14180
14186
|
/**
|
|
14181
14187
|
* Parameters to pass along with the event
|
|
14182
14188
|
*/
|
|
14183
|
-
mParameters?: $
|
|
14189
|
+
mParameters?: VBI$ZoomEventParameters
|
|
14184
14190
|
): this;
|
|
14185
14191
|
/**
|
|
14186
14192
|
* Gets current value of property {@link #getAllowKeyEventRepeat allowKeyEventRepeat}.
|
|
@@ -14634,7 +14640,6 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14634
14640
|
iLod: int
|
|
14635
14641
|
): void;
|
|
14636
14642
|
}
|
|
14637
|
-
export default VBI;
|
|
14638
14643
|
|
|
14639
14644
|
export interface $VBISettings extends $ControlSettings {
|
|
14640
14645
|
/**
|
|
@@ -14707,66 +14712,60 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14707
14712
|
/**
|
|
14708
14713
|
* High level API. Submit event is raised.
|
|
14709
14714
|
*/
|
|
14710
|
-
submit?: (oEvent:
|
|
14715
|
+
submit?: (oEvent: VBI$SubmitEvent) => void;
|
|
14711
14716
|
|
|
14712
14717
|
/**
|
|
14713
14718
|
* High level API. ThumbnailClick event is raised.
|
|
14714
14719
|
*/
|
|
14715
|
-
thumbnailClick?: (oEvent:
|
|
14720
|
+
thumbnailClick?: (oEvent: VBI$ThumbnailClickEvent) => void;
|
|
14716
14721
|
|
|
14717
14722
|
/**
|
|
14718
14723
|
* Low level API. Rendering of the canvas content is reqested. This event can be used to do custom rendering
|
|
14719
14724
|
* into the Visual Business overlay canvas. This function is not supported in plugin mode.
|
|
14720
14725
|
*/
|
|
14721
|
-
render?: (oEvent:
|
|
14726
|
+
render?: (oEvent: VBI$RenderEvent) => void;
|
|
14722
14727
|
|
|
14723
14728
|
/**
|
|
14724
14729
|
* Low level API. Tracking mode is set or reset. This function is not supported in plugin mode.
|
|
14725
14730
|
*/
|
|
14726
|
-
changeTrackingMode?: (
|
|
14727
|
-
oEvent: Event<$VBIChangeTrackingModeEventParameters>
|
|
14728
|
-
) => void;
|
|
14731
|
+
changeTrackingMode?: (oEvent: VBI$ChangeTrackingModeEvent) => void;
|
|
14729
14732
|
|
|
14730
14733
|
/**
|
|
14731
14734
|
* Low level API. The canvas is zoomed. This function is not supported in plugin mode.
|
|
14732
14735
|
*/
|
|
14733
|
-
zoom?: (oEvent:
|
|
14736
|
+
zoom?: (oEvent: VBI$ZoomEvent) => void;
|
|
14734
14737
|
|
|
14735
14738
|
/**
|
|
14736
14739
|
* Low level API. The canvas was moved. This function is not supported in plugin mode.
|
|
14737
14740
|
*/
|
|
14738
|
-
move?: (oEvent:
|
|
14741
|
+
move?: (oEvent: VBI$MoveEvent) => void;
|
|
14739
14742
|
|
|
14740
14743
|
/**
|
|
14741
14744
|
* The event is raised before a Visual Business window is opened. It is intended to be used to place arbitrary
|
|
14742
14745
|
* content in e.g. a Detail Window. This event is not supported in plugin mode.
|
|
14743
14746
|
*/
|
|
14744
|
-
openWindow?: (oEvent:
|
|
14747
|
+
openWindow?: (oEvent: VBI$OpenWindowEvent) => void;
|
|
14745
14748
|
|
|
14746
14749
|
/**
|
|
14747
14750
|
* The event is raised before a Visual Business window is closed. This function is not supported in plugin
|
|
14748
14751
|
* mode.
|
|
14749
14752
|
*/
|
|
14750
|
-
closeWindow?: (oEvent:
|
|
14753
|
+
closeWindow?: (oEvent: VBI$CloseWindowEvent) => void;
|
|
14751
14754
|
|
|
14752
14755
|
/**
|
|
14753
14756
|
* The event is raised when a Visual Business container VO instance is created. It is intended to be used
|
|
14754
14757
|
* to place arbitrary content in e.g. other controls. This event is not supported in plugin mode.
|
|
14755
14758
|
*/
|
|
14756
|
-
containerCreated?: (
|
|
14757
|
-
oEvent: Event<$VBIContainerCreatedEventParameters>
|
|
14758
|
-
) => void;
|
|
14759
|
+
containerCreated?: (oEvent: VBI$ContainerCreatedEvent) => void;
|
|
14759
14760
|
|
|
14760
14761
|
/**
|
|
14761
14762
|
* The event is raised before a Visual Business container VO instance is destroyed. This function is not
|
|
14762
14763
|
* supported in plugin mode.
|
|
14763
14764
|
*/
|
|
14764
|
-
containerDestroyed?: (
|
|
14765
|
-
oEvent: Event<$VBIContainerDestroyedEventParameters>
|
|
14766
|
-
) => void;
|
|
14765
|
+
containerDestroyed?: (oEvent: VBI$ContainerDestroyedEvent) => void;
|
|
14767
14766
|
}
|
|
14768
14767
|
|
|
14769
|
-
export interface $
|
|
14768
|
+
export interface VBI$ChangeTrackingModeEventParameters {
|
|
14770
14769
|
/**
|
|
14771
14770
|
* tracking mode to set or reset
|
|
14772
14771
|
*/
|
|
@@ -14778,7 +14777,9 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14778
14777
|
bSet?: boolean;
|
|
14779
14778
|
}
|
|
14780
14779
|
|
|
14781
|
-
export
|
|
14780
|
+
export type VBI$ChangeTrackingModeEvent = Event<VBI$ChangeTrackingModeEventParameters>;
|
|
14781
|
+
|
|
14782
|
+
export interface VBI$CloseWindowEventParameters {
|
|
14782
14783
|
/**
|
|
14783
14784
|
* DomRef of placeholder Div for content.
|
|
14784
14785
|
*/
|
|
@@ -14790,7 +14791,9 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14790
14791
|
id?: string;
|
|
14791
14792
|
}
|
|
14792
14793
|
|
|
14793
|
-
export
|
|
14794
|
+
export type VBI$CloseWindowEvent = Event<VBI$CloseWindowEventParameters>;
|
|
14795
|
+
|
|
14796
|
+
export interface VBI$ContainerCreatedEventParameters {
|
|
14794
14797
|
/**
|
|
14795
14798
|
* DomRef of placeholder Div to render into.
|
|
14796
14799
|
*/
|
|
@@ -14802,7 +14805,9 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14802
14805
|
id?: string;
|
|
14803
14806
|
}
|
|
14804
14807
|
|
|
14805
|
-
export
|
|
14808
|
+
export type VBI$ContainerCreatedEvent = Event<VBI$ContainerCreatedEventParameters>;
|
|
14809
|
+
|
|
14810
|
+
export interface VBI$ContainerDestroyedEventParameters {
|
|
14806
14811
|
/**
|
|
14807
14812
|
* DomRef of placeholder Div of content.
|
|
14808
14813
|
*/
|
|
@@ -14814,14 +14819,18 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14814
14819
|
id?: string;
|
|
14815
14820
|
}
|
|
14816
14821
|
|
|
14817
|
-
export
|
|
14822
|
+
export type VBI$ContainerDestroyedEvent = Event<VBI$ContainerDestroyedEventParameters>;
|
|
14823
|
+
|
|
14824
|
+
export interface VBI$MoveEventParameters {
|
|
14818
14825
|
/**
|
|
14819
14826
|
* Canvas object to render into.
|
|
14820
14827
|
*/
|
|
14821
14828
|
canvas?: object;
|
|
14822
14829
|
}
|
|
14823
14830
|
|
|
14824
|
-
export
|
|
14831
|
+
export type VBI$MoveEvent = Event<VBI$MoveEventParameters>;
|
|
14832
|
+
|
|
14833
|
+
export interface VBI$OpenWindowEventParameters {
|
|
14825
14834
|
/**
|
|
14826
14835
|
* DomRef of placeholder Div to render into.
|
|
14827
14836
|
*/
|
|
@@ -14833,14 +14842,18 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14833
14842
|
id?: string;
|
|
14834
14843
|
}
|
|
14835
14844
|
|
|
14836
|
-
export
|
|
14845
|
+
export type VBI$OpenWindowEvent = Event<VBI$OpenWindowEventParameters>;
|
|
14846
|
+
|
|
14847
|
+
export interface VBI$RenderEventParameters {
|
|
14837
14848
|
/**
|
|
14838
14849
|
* Canvas object to render into.
|
|
14839
14850
|
*/
|
|
14840
14851
|
canvas?: object;
|
|
14841
14852
|
}
|
|
14842
14853
|
|
|
14843
|
-
export
|
|
14854
|
+
export type VBI$RenderEvent = Event<VBI$RenderEventParameters>;
|
|
14855
|
+
|
|
14856
|
+
export interface VBI$SubmitEventParameters {
|
|
14844
14857
|
/**
|
|
14845
14858
|
* JSON (or possibly XML and case the plugin is used) string describing the delta state of Visual Business
|
|
14846
14859
|
* and the information about the event.
|
|
@@ -14848,7 +14861,9 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14848
14861
|
data?: string;
|
|
14849
14862
|
}
|
|
14850
14863
|
|
|
14851
|
-
export
|
|
14864
|
+
export type VBI$SubmitEvent = Event<VBI$SubmitEventParameters>;
|
|
14865
|
+
|
|
14866
|
+
export interface VBI$ThumbnailClickEventParameters {
|
|
14852
14867
|
/**
|
|
14853
14868
|
* Geo coordinates in format "lon;lat;0"
|
|
14854
14869
|
*/
|
|
@@ -14860,29 +14875,33 @@ declare module "sap/ui/vbm/VBI" {
|
|
|
14860
14875
|
zoomLevel?: int;
|
|
14861
14876
|
}
|
|
14862
14877
|
|
|
14863
|
-
export
|
|
14878
|
+
export type VBI$ThumbnailClickEvent = Event<VBI$ThumbnailClickEventParameters>;
|
|
14879
|
+
|
|
14880
|
+
export interface VBI$ZoomEventParameters {
|
|
14864
14881
|
/**
|
|
14865
14882
|
* Canvas object to render into
|
|
14866
14883
|
*/
|
|
14867
14884
|
canvas?: object;
|
|
14868
14885
|
}
|
|
14886
|
+
|
|
14887
|
+
export type VBI$ZoomEvent = Event<VBI$ZoomEventParameters>;
|
|
14869
14888
|
}
|
|
14870
14889
|
|
|
14871
14890
|
declare module "sap/ui/vbm/Viewport" {
|
|
14872
14891
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
14873
14892
|
|
|
14874
|
-
import Event from "sap/ui/base/Event";
|
|
14875
|
-
|
|
14876
14893
|
import { CSSSize } from "sap/ui/core/library";
|
|
14877
14894
|
|
|
14878
14895
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
14879
14896
|
|
|
14880
14897
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
14881
14898
|
|
|
14899
|
+
import Event from "sap/ui/base/Event";
|
|
14900
|
+
|
|
14882
14901
|
/**
|
|
14883
14902
|
* Provides a control for three js canvas.
|
|
14884
14903
|
*/
|
|
14885
|
-
class Viewport extends Control {
|
|
14904
|
+
export default class Viewport extends Control {
|
|
14886
14905
|
/**
|
|
14887
14906
|
* Constructor for a new three js viewport for Adapter3D.
|
|
14888
14907
|
*
|
|
@@ -14940,7 +14959,7 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
14940
14959
|
/**
|
|
14941
14960
|
* The function to be called when the event occurs
|
|
14942
14961
|
*/
|
|
14943
|
-
fnFunction: (p1:
|
|
14962
|
+
fnFunction: (p1: Viewport$CameraChangeEvent) => void,
|
|
14944
14963
|
/**
|
|
14945
14964
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Viewport` itself
|
|
14946
14965
|
*/
|
|
@@ -14960,7 +14979,7 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
14960
14979
|
/**
|
|
14961
14980
|
* The function to be called when the event occurs
|
|
14962
14981
|
*/
|
|
14963
|
-
fnFunction: (p1:
|
|
14982
|
+
fnFunction: (p1: Viewport$CameraChangeEvent) => void,
|
|
14964
14983
|
/**
|
|
14965
14984
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.Viewport` itself
|
|
14966
14985
|
*/
|
|
@@ -14977,14 +14996,14 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
14977
14996
|
/**
|
|
14978
14997
|
* The function to be called, when the event occurs
|
|
14979
14998
|
*/
|
|
14980
|
-
fnFunction: (p1:
|
|
14999
|
+
fnFunction: (p1: Viewport$CameraChangeEvent) => void,
|
|
14981
15000
|
/**
|
|
14982
15001
|
* Context object on which the given function had to be called
|
|
14983
15002
|
*/
|
|
14984
15003
|
oListener?: object
|
|
14985
15004
|
): this;
|
|
14986
15005
|
/**
|
|
14987
|
-
* @
|
|
15006
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14988
15007
|
*
|
|
14989
15008
|
* Fires event {@link #event:cameraChange cameraChange} to attached listeners.
|
|
14990
15009
|
*
|
|
@@ -14994,7 +15013,7 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
14994
15013
|
/**
|
|
14995
15014
|
* Parameters to pass along with the event
|
|
14996
15015
|
*/
|
|
14997
|
-
mParameters?: $
|
|
15016
|
+
mParameters?: Viewport$CameraChangeEventParameters
|
|
14998
15017
|
): this;
|
|
14999
15018
|
/**
|
|
15000
15019
|
* Gets current value of property {@link #getCameraHistoryLength cameraHistoryLength}.
|
|
@@ -15101,7 +15120,6 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
15101
15120
|
sWidth?: CSSSize
|
|
15102
15121
|
): this;
|
|
15103
15122
|
}
|
|
15104
|
-
export default Viewport;
|
|
15105
15123
|
|
|
15106
15124
|
export interface $ViewportSettings extends $ControlSettings {
|
|
15107
15125
|
/**
|
|
@@ -15127,12 +15145,10 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
15127
15145
|
/**
|
|
15128
15146
|
* This event is fired when camera positioning changed (whole movement has been finished)
|
|
15129
15147
|
*/
|
|
15130
|
-
cameraChange?: (
|
|
15131
|
-
oEvent: Event<$ViewportCameraChangeEventParameters>
|
|
15132
|
-
) => void;
|
|
15148
|
+
cameraChange?: (oEvent: Viewport$CameraChangeEvent) => void;
|
|
15133
15149
|
}
|
|
15134
15150
|
|
|
15135
|
-
export interface $
|
|
15151
|
+
export interface Viewport$CameraChangeEventParameters {
|
|
15136
15152
|
/**
|
|
15137
15153
|
* Current position in camera history
|
|
15138
15154
|
*/
|
|
@@ -15143,6 +15159,8 @@ declare module "sap/ui/vbm/Viewport" {
|
|
|
15143
15159
|
*/
|
|
15144
15160
|
historyLength?: int;
|
|
15145
15161
|
}
|
|
15162
|
+
|
|
15163
|
+
export type Viewport$CameraChangeEvent = Event<Viewport$CameraChangeEventParameters>;
|
|
15146
15164
|
}
|
|
15147
15165
|
|
|
15148
15166
|
declare module "sap/ui/vbm/VoAbstract" {
|
|
@@ -15158,7 +15176,7 @@ declare module "sap/ui/vbm/VoAbstract" {
|
|
|
15158
15176
|
* Abstract VO aggregation container. This element implements the common part for VOs. It must not be used
|
|
15159
15177
|
* directly, but is the base for further extension.
|
|
15160
15178
|
*/
|
|
15161
|
-
class VoAbstract extends UI5Element {
|
|
15179
|
+
export default class VoAbstract extends UI5Element {
|
|
15162
15180
|
/**
|
|
15163
15181
|
* Constructor for a new VoAbstract.
|
|
15164
15182
|
*
|
|
@@ -15243,7 +15261,6 @@ declare module "sap/ui/vbm/VoAbstract" {
|
|
|
15243
15261
|
oMenu: Menu
|
|
15244
15262
|
): void;
|
|
15245
15263
|
}
|
|
15246
|
-
export default VoAbstract;
|
|
15247
15264
|
|
|
15248
15265
|
export interface $VoAbstractSettings extends $ElementSettings {}
|
|
15249
15266
|
}
|
|
@@ -15254,14 +15271,14 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15254
15271
|
$VoAbstractSettings,
|
|
15255
15272
|
} from "sap/ui/vbm/VoAbstract";
|
|
15256
15273
|
|
|
15257
|
-
import Event from "sap/ui/base/Event";
|
|
15258
|
-
|
|
15259
15274
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
15260
15275
|
|
|
15261
15276
|
import VoBase from "sap/ui/vbm/VoBase";
|
|
15262
15277
|
|
|
15263
15278
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
15264
15279
|
|
|
15280
|
+
import Event from "sap/ui/base/Event";
|
|
15281
|
+
|
|
15265
15282
|
import Menu from "sap/ui/unified/Menu";
|
|
15266
15283
|
|
|
15267
15284
|
import Spot from "sap/ui/vbm/Spot";
|
|
@@ -15270,7 +15287,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15270
15287
|
* Abstract VO aggregation container. This element implements the common part for all specific VO aggregations
|
|
15271
15288
|
* with selection cardinatities. It must not be used directly, but is the base for further extension.
|
|
15272
15289
|
*/
|
|
15273
|
-
class VoAggregation extends VoAbstract {
|
|
15290
|
+
export default class VoAggregation extends VoAbstract {
|
|
15274
15291
|
/**
|
|
15275
15292
|
* Constructor for a new VoAggregation.
|
|
15276
15293
|
*
|
|
@@ -15350,7 +15367,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15350
15367
|
/**
|
|
15351
15368
|
* The function to be called when the event occurs
|
|
15352
15369
|
*/
|
|
15353
|
-
fnFunction: (p1:
|
|
15370
|
+
fnFunction: (p1: VoAggregation$ClickEvent) => void,
|
|
15354
15371
|
/**
|
|
15355
15372
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15356
15373
|
*/
|
|
@@ -15370,7 +15387,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15370
15387
|
/**
|
|
15371
15388
|
* The function to be called when the event occurs
|
|
15372
15389
|
*/
|
|
15373
|
-
fnFunction: (p1:
|
|
15390
|
+
fnFunction: (p1: VoAggregation$ClickEvent) => void,
|
|
15374
15391
|
/**
|
|
15375
15392
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15376
15393
|
*/
|
|
@@ -15395,7 +15412,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15395
15412
|
/**
|
|
15396
15413
|
* The function to be called when the event occurs
|
|
15397
15414
|
*/
|
|
15398
|
-
fnFunction: (p1:
|
|
15415
|
+
fnFunction: (p1: VoAggregation$ContextMenuEvent) => void,
|
|
15399
15416
|
/**
|
|
15400
15417
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15401
15418
|
*/
|
|
@@ -15415,7 +15432,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15415
15432
|
/**
|
|
15416
15433
|
* The function to be called when the event occurs
|
|
15417
15434
|
*/
|
|
15418
|
-
fnFunction: (p1:
|
|
15435
|
+
fnFunction: (p1: VoAggregation$ContextMenuEvent) => void,
|
|
15419
15436
|
/**
|
|
15420
15437
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15421
15438
|
*/
|
|
@@ -15440,7 +15457,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15440
15457
|
/**
|
|
15441
15458
|
* The function to be called when the event occurs
|
|
15442
15459
|
*/
|
|
15443
|
-
fnFunction: (p1:
|
|
15460
|
+
fnFunction: (p1: VoAggregation$DeselectEvent) => void,
|
|
15444
15461
|
/**
|
|
15445
15462
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15446
15463
|
*/
|
|
@@ -15460,7 +15477,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15460
15477
|
/**
|
|
15461
15478
|
* The function to be called when the event occurs
|
|
15462
15479
|
*/
|
|
15463
|
-
fnFunction: (p1:
|
|
15480
|
+
fnFunction: (p1: VoAggregation$DeselectEvent) => void,
|
|
15464
15481
|
/**
|
|
15465
15482
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15466
15483
|
*/
|
|
@@ -15485,7 +15502,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15485
15502
|
/**
|
|
15486
15503
|
* The function to be called when the event occurs
|
|
15487
15504
|
*/
|
|
15488
|
-
fnFunction: (p1:
|
|
15505
|
+
fnFunction: (p1: VoAggregation$DropEvent) => void,
|
|
15489
15506
|
/**
|
|
15490
15507
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15491
15508
|
*/
|
|
@@ -15505,7 +15522,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15505
15522
|
/**
|
|
15506
15523
|
* The function to be called when the event occurs
|
|
15507
15524
|
*/
|
|
15508
|
-
fnFunction: (p1:
|
|
15525
|
+
fnFunction: (p1: VoAggregation$DropEvent) => void,
|
|
15509
15526
|
/**
|
|
15510
15527
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15511
15528
|
*/
|
|
@@ -15530,7 +15547,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15530
15547
|
/**
|
|
15531
15548
|
* The function to be called when the event occurs
|
|
15532
15549
|
*/
|
|
15533
|
-
fnFunction: (p1:
|
|
15550
|
+
fnFunction: (p1: VoAggregation$HandleClickEvent) => void,
|
|
15534
15551
|
/**
|
|
15535
15552
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15536
15553
|
*/
|
|
@@ -15550,7 +15567,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15550
15567
|
/**
|
|
15551
15568
|
* The function to be called when the event occurs
|
|
15552
15569
|
*/
|
|
15553
|
-
fnFunction: (p1:
|
|
15570
|
+
fnFunction: (p1: VoAggregation$HandleClickEvent) => void,
|
|
15554
15571
|
/**
|
|
15555
15572
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15556
15573
|
*/
|
|
@@ -15576,9 +15593,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15576
15593
|
/**
|
|
15577
15594
|
* The function to be called when the event occurs
|
|
15578
15595
|
*/
|
|
15579
|
-
fnFunction: (
|
|
15580
|
-
p1: Event<$VoAggregationHandleContextMenuEventParameters>
|
|
15581
|
-
) => void,
|
|
15596
|
+
fnFunction: (p1: VoAggregation$HandleContextMenuEvent) => void,
|
|
15582
15597
|
/**
|
|
15583
15598
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15584
15599
|
*/
|
|
@@ -15599,9 +15614,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15599
15614
|
/**
|
|
15600
15615
|
* The function to be called when the event occurs
|
|
15601
15616
|
*/
|
|
15602
|
-
fnFunction: (
|
|
15603
|
-
p1: Event<$VoAggregationHandleContextMenuEventParameters>
|
|
15604
|
-
) => void,
|
|
15617
|
+
fnFunction: (p1: VoAggregation$HandleContextMenuEvent) => void,
|
|
15605
15618
|
/**
|
|
15606
15619
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15607
15620
|
*/
|
|
@@ -15626,7 +15639,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15626
15639
|
/**
|
|
15627
15640
|
* The function to be called when the event occurs
|
|
15628
15641
|
*/
|
|
15629
|
-
fnFunction: (p1:
|
|
15642
|
+
fnFunction: (p1: VoAggregation$HandleMovedEvent) => void,
|
|
15630
15643
|
/**
|
|
15631
15644
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15632
15645
|
*/
|
|
@@ -15646,7 +15659,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15646
15659
|
/**
|
|
15647
15660
|
* The function to be called when the event occurs
|
|
15648
15661
|
*/
|
|
15649
|
-
fnFunction: (p1:
|
|
15662
|
+
fnFunction: (p1: VoAggregation$HandleMovedEvent) => void,
|
|
15650
15663
|
/**
|
|
15651
15664
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15652
15665
|
*/
|
|
@@ -15671,7 +15684,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15671
15684
|
/**
|
|
15672
15685
|
* The function to be called when the event occurs
|
|
15673
15686
|
*/
|
|
15674
|
-
fnFunction: (p1:
|
|
15687
|
+
fnFunction: (p1: VoAggregation$SelectEvent) => void,
|
|
15675
15688
|
/**
|
|
15676
15689
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15677
15690
|
*/
|
|
@@ -15691,7 +15704,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15691
15704
|
/**
|
|
15692
15705
|
* The function to be called when the event occurs
|
|
15693
15706
|
*/
|
|
15694
|
-
fnFunction: (p1:
|
|
15707
|
+
fnFunction: (p1: VoAggregation$SelectEvent) => void,
|
|
15695
15708
|
/**
|
|
15696
15709
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoAggregation` itself
|
|
15697
15710
|
*/
|
|
@@ -15708,7 +15721,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15708
15721
|
/**
|
|
15709
15722
|
* The function to be called, when the event occurs
|
|
15710
15723
|
*/
|
|
15711
|
-
fnFunction: (p1:
|
|
15724
|
+
fnFunction: (p1: VoAggregation$ClickEvent) => void,
|
|
15712
15725
|
/**
|
|
15713
15726
|
* Context object on which the given function had to be called
|
|
15714
15727
|
*/
|
|
@@ -15725,7 +15738,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15725
15738
|
/**
|
|
15726
15739
|
* The function to be called, when the event occurs
|
|
15727
15740
|
*/
|
|
15728
|
-
fnFunction: (p1:
|
|
15741
|
+
fnFunction: (p1: VoAggregation$ContextMenuEvent) => void,
|
|
15729
15742
|
/**
|
|
15730
15743
|
* Context object on which the given function had to be called
|
|
15731
15744
|
*/
|
|
@@ -15742,7 +15755,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15742
15755
|
/**
|
|
15743
15756
|
* The function to be called, when the event occurs
|
|
15744
15757
|
*/
|
|
15745
|
-
fnFunction: (p1:
|
|
15758
|
+
fnFunction: (p1: VoAggregation$DeselectEvent) => void,
|
|
15746
15759
|
/**
|
|
15747
15760
|
* Context object on which the given function had to be called
|
|
15748
15761
|
*/
|
|
@@ -15759,7 +15772,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15759
15772
|
/**
|
|
15760
15773
|
* The function to be called, when the event occurs
|
|
15761
15774
|
*/
|
|
15762
|
-
fnFunction: (p1:
|
|
15775
|
+
fnFunction: (p1: VoAggregation$DropEvent) => void,
|
|
15763
15776
|
/**
|
|
15764
15777
|
* Context object on which the given function had to be called
|
|
15765
15778
|
*/
|
|
@@ -15776,7 +15789,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15776
15789
|
/**
|
|
15777
15790
|
* The function to be called, when the event occurs
|
|
15778
15791
|
*/
|
|
15779
|
-
fnFunction: (p1:
|
|
15792
|
+
fnFunction: (p1: VoAggregation$HandleClickEvent) => void,
|
|
15780
15793
|
/**
|
|
15781
15794
|
* Context object on which the given function had to be called
|
|
15782
15795
|
*/
|
|
@@ -15794,9 +15807,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15794
15807
|
/**
|
|
15795
15808
|
* The function to be called, when the event occurs
|
|
15796
15809
|
*/
|
|
15797
|
-
fnFunction: (
|
|
15798
|
-
p1: Event<$VoAggregationHandleContextMenuEventParameters>
|
|
15799
|
-
) => void,
|
|
15810
|
+
fnFunction: (p1: VoAggregation$HandleContextMenuEvent) => void,
|
|
15800
15811
|
/**
|
|
15801
15812
|
* Context object on which the given function had to be called
|
|
15802
15813
|
*/
|
|
@@ -15813,7 +15824,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15813
15824
|
/**
|
|
15814
15825
|
* The function to be called, when the event occurs
|
|
15815
15826
|
*/
|
|
15816
|
-
fnFunction: (p1:
|
|
15827
|
+
fnFunction: (p1: VoAggregation$HandleMovedEvent) => void,
|
|
15817
15828
|
/**
|
|
15818
15829
|
* Context object on which the given function had to be called
|
|
15819
15830
|
*/
|
|
@@ -15830,14 +15841,14 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15830
15841
|
/**
|
|
15831
15842
|
* The function to be called, when the event occurs
|
|
15832
15843
|
*/
|
|
15833
|
-
fnFunction: (p1:
|
|
15844
|
+
fnFunction: (p1: VoAggregation$SelectEvent) => void,
|
|
15834
15845
|
/**
|
|
15835
15846
|
* Context object on which the given function had to be called
|
|
15836
15847
|
*/
|
|
15837
15848
|
oListener?: object
|
|
15838
15849
|
): this;
|
|
15839
15850
|
/**
|
|
15840
|
-
* @
|
|
15851
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15841
15852
|
*
|
|
15842
15853
|
* Fires event {@link #event:click click} to attached listeners.
|
|
15843
15854
|
*
|
|
@@ -15847,10 +15858,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15847
15858
|
/**
|
|
15848
15859
|
* Parameters to pass along with the event
|
|
15849
15860
|
*/
|
|
15850
|
-
mParameters?: $
|
|
15861
|
+
mParameters?: VoAggregation$ClickEventParameters
|
|
15851
15862
|
): this;
|
|
15852
15863
|
/**
|
|
15853
|
-
* @
|
|
15864
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15854
15865
|
*
|
|
15855
15866
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
15856
15867
|
*
|
|
@@ -15860,10 +15871,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15860
15871
|
/**
|
|
15861
15872
|
* Parameters to pass along with the event
|
|
15862
15873
|
*/
|
|
15863
|
-
mParameters?: $
|
|
15874
|
+
mParameters?: VoAggregation$ContextMenuEventParameters
|
|
15864
15875
|
): this;
|
|
15865
15876
|
/**
|
|
15866
|
-
* @
|
|
15877
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15867
15878
|
*
|
|
15868
15879
|
* Fires event {@link #event:deselect deselect} to attached listeners.
|
|
15869
15880
|
*
|
|
@@ -15873,10 +15884,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15873
15884
|
/**
|
|
15874
15885
|
* Parameters to pass along with the event
|
|
15875
15886
|
*/
|
|
15876
|
-
mParameters?: $
|
|
15887
|
+
mParameters?: VoAggregation$DeselectEventParameters
|
|
15877
15888
|
): this;
|
|
15878
15889
|
/**
|
|
15879
|
-
* @
|
|
15890
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15880
15891
|
*
|
|
15881
15892
|
* Fires event {@link #event:drop drop} to attached listeners.
|
|
15882
15893
|
*
|
|
@@ -15886,10 +15897,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15886
15897
|
/**
|
|
15887
15898
|
* Parameters to pass along with the event
|
|
15888
15899
|
*/
|
|
15889
|
-
mParameters?: $
|
|
15900
|
+
mParameters?: VoAggregation$DropEventParameters
|
|
15890
15901
|
): this;
|
|
15891
15902
|
/**
|
|
15892
|
-
* @
|
|
15903
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15893
15904
|
*
|
|
15894
15905
|
* Fires event {@link #event:handleClick handleClick} to attached listeners.
|
|
15895
15906
|
*
|
|
@@ -15899,10 +15910,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15899
15910
|
/**
|
|
15900
15911
|
* Parameters to pass along with the event
|
|
15901
15912
|
*/
|
|
15902
|
-
mParameters?: $
|
|
15913
|
+
mParameters?: VoAggregation$HandleClickEventParameters
|
|
15903
15914
|
): this;
|
|
15904
15915
|
/**
|
|
15905
|
-
* @
|
|
15916
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15906
15917
|
*
|
|
15907
15918
|
* Fires event {@link #event:handleContextMenu handleContextMenu} to attached listeners.
|
|
15908
15919
|
*
|
|
@@ -15912,10 +15923,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15912
15923
|
/**
|
|
15913
15924
|
* Parameters to pass along with the event
|
|
15914
15925
|
*/
|
|
15915
|
-
mParameters?: $
|
|
15926
|
+
mParameters?: VoAggregation$HandleContextMenuEventParameters
|
|
15916
15927
|
): this;
|
|
15917
15928
|
/**
|
|
15918
|
-
* @
|
|
15929
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15919
15930
|
*
|
|
15920
15931
|
* Fires event {@link #event:handleMoved handleMoved} to attached listeners.
|
|
15921
15932
|
*
|
|
@@ -15925,10 +15936,10 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15925
15936
|
/**
|
|
15926
15937
|
* Parameters to pass along with the event
|
|
15927
15938
|
*/
|
|
15928
|
-
mParameters?: $
|
|
15939
|
+
mParameters?: VoAggregation$HandleMovedEventParameters
|
|
15929
15940
|
): this;
|
|
15930
15941
|
/**
|
|
15931
|
-
* @
|
|
15942
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15932
15943
|
*
|
|
15933
15944
|
* Fires event {@link #event:select select} to attached listeners.
|
|
15934
15945
|
*
|
|
@@ -15938,7 +15949,7 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
15938
15949
|
/**
|
|
15939
15950
|
* Parameters to pass along with the event
|
|
15940
15951
|
*/
|
|
15941
|
-
mParameters?: $
|
|
15952
|
+
mParameters?: VoAggregation$SelectEventParameters
|
|
15942
15953
|
): this;
|
|
15943
15954
|
/**
|
|
15944
15955
|
* Gets current value of property {@link #getCustomProperties customProperties}.
|
|
@@ -16050,7 +16061,6 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16050
16061
|
sMinSel?: string
|
|
16051
16062
|
): this;
|
|
16052
16063
|
}
|
|
16053
|
-
export default VoAggregation;
|
|
16054
16064
|
|
|
16055
16065
|
export interface $VoAggregationSettings extends $VoAbstractSettings {
|
|
16056
16066
|
/**
|
|
@@ -16072,60 +16082,54 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16072
16082
|
/**
|
|
16073
16083
|
* This event is raised when a Design handle is moved.
|
|
16074
16084
|
*/
|
|
16075
|
-
handleMoved?: (
|
|
16076
|
-
oEvent: Event<$VoAggregationHandleMovedEventParameters>
|
|
16077
|
-
) => void;
|
|
16085
|
+
handleMoved?: (oEvent: VoAggregation$HandleMovedEvent) => void;
|
|
16078
16086
|
|
|
16079
16087
|
/**
|
|
16080
16088
|
* This event is raised when a Design handle is right clicked.
|
|
16081
16089
|
*/
|
|
16082
|
-
handleContextMenu?: (
|
|
16083
|
-
oEvent: Event<$VoAggregationHandleContextMenuEventParameters>
|
|
16084
|
-
) => void;
|
|
16090
|
+
handleContextMenu?: (oEvent: VoAggregation$HandleContextMenuEvent) => void;
|
|
16085
16091
|
|
|
16086
16092
|
/**
|
|
16087
16093
|
* This event is raised when a Design handle is clicked.
|
|
16088
16094
|
*/
|
|
16089
|
-
handleClick?: (
|
|
16090
|
-
oEvent: Event<$VoAggregationHandleClickEventParameters>
|
|
16091
|
-
) => void;
|
|
16095
|
+
handleClick?: (oEvent: VoAggregation$HandleClickEvent) => void;
|
|
16092
16096
|
|
|
16093
16097
|
/**
|
|
16094
16098
|
* This event is raised when aggregated elements get selected
|
|
16095
16099
|
*/
|
|
16096
|
-
select?: (oEvent:
|
|
16100
|
+
select?: (oEvent: VoAggregation$SelectEvent) => void;
|
|
16097
16101
|
|
|
16098
16102
|
/**
|
|
16099
16103
|
* This event is raised when aggregated elements get deselected
|
|
16100
16104
|
*/
|
|
16101
|
-
deselect?: (oEvent:
|
|
16105
|
+
deselect?: (oEvent: VoAggregation$DeselectEvent) => void;
|
|
16102
16106
|
|
|
16103
16107
|
/**
|
|
16104
16108
|
* The event is raised when there is a click action on a VO.
|
|
16105
16109
|
*/
|
|
16106
|
-
click?: (oEvent:
|
|
16110
|
+
click?: (oEvent: VoAggregation$ClickEvent) => void;
|
|
16107
16111
|
|
|
16108
16112
|
/**
|
|
16109
16113
|
* The event is raised when there is a right click or a tap and hold action on a VO.
|
|
16110
16114
|
*/
|
|
16111
|
-
contextMenu?: (
|
|
16112
|
-
oEvent: Event<$VoAggregationContextMenuEventParameters>
|
|
16113
|
-
) => void;
|
|
16115
|
+
contextMenu?: (oEvent: VoAggregation$ContextMenuEvent) => void;
|
|
16114
16116
|
|
|
16115
16117
|
/**
|
|
16116
16118
|
* The event is raised when something is dropped on a VO.
|
|
16117
16119
|
*/
|
|
16118
|
-
drop?: (oEvent:
|
|
16120
|
+
drop?: (oEvent: VoAggregation$DropEvent) => void;
|
|
16119
16121
|
}
|
|
16120
16122
|
|
|
16121
|
-
export interface $
|
|
16123
|
+
export interface VoAggregation$ClickEventParameters {
|
|
16122
16124
|
/**
|
|
16123
16125
|
* Clicked instance
|
|
16124
16126
|
*/
|
|
16125
16127
|
instance?: VoBase;
|
|
16126
16128
|
}
|
|
16127
16129
|
|
|
16128
|
-
export
|
|
16130
|
+
export type VoAggregation$ClickEvent = Event<VoAggregation$ClickEventParameters>;
|
|
16131
|
+
|
|
16132
|
+
export interface VoAggregation$ContextMenuEventParameters {
|
|
16129
16133
|
/**
|
|
16130
16134
|
* Clicked instance
|
|
16131
16135
|
*/
|
|
@@ -16137,14 +16141,18 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16137
16141
|
menu?: Menu;
|
|
16138
16142
|
}
|
|
16139
16143
|
|
|
16140
|
-
export
|
|
16144
|
+
export type VoAggregation$ContextMenuEvent = Event<VoAggregation$ContextMenuEventParameters>;
|
|
16145
|
+
|
|
16146
|
+
export interface VoAggregation$DeselectEventParameters {
|
|
16141
16147
|
/**
|
|
16142
16148
|
* Array of deselected VOs
|
|
16143
16149
|
*/
|
|
16144
16150
|
deselected?: any[];
|
|
16145
16151
|
}
|
|
16146
16152
|
|
|
16147
|
-
export
|
|
16153
|
+
export type VoAggregation$DeselectEvent = Event<VoAggregation$DeselectEventParameters>;
|
|
16154
|
+
|
|
16155
|
+
export interface VoAggregation$DropEventParameters {
|
|
16148
16156
|
/**
|
|
16149
16157
|
* Drop target instance
|
|
16150
16158
|
*/
|
|
@@ -16156,7 +16164,9 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16156
16164
|
dragSource?: VoBase;
|
|
16157
16165
|
}
|
|
16158
16166
|
|
|
16159
|
-
export
|
|
16167
|
+
export type VoAggregation$DropEvent = Event<VoAggregation$DropEventParameters>;
|
|
16168
|
+
|
|
16169
|
+
export interface VoAggregation$HandleClickEventParameters {
|
|
16160
16170
|
/**
|
|
16161
16171
|
* Clicked instance
|
|
16162
16172
|
*/
|
|
@@ -16168,7 +16178,9 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16168
16178
|
handle?: int;
|
|
16169
16179
|
}
|
|
16170
16180
|
|
|
16171
|
-
export
|
|
16181
|
+
export type VoAggregation$HandleClickEvent = Event<VoAggregation$HandleClickEventParameters>;
|
|
16182
|
+
|
|
16183
|
+
export interface VoAggregation$HandleContextMenuEventParameters {
|
|
16172
16184
|
/**
|
|
16173
16185
|
* Clicked instance
|
|
16174
16186
|
*/
|
|
@@ -16185,7 +16197,9 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16185
16197
|
handle?: int;
|
|
16186
16198
|
}
|
|
16187
16199
|
|
|
16188
|
-
export
|
|
16200
|
+
export type VoAggregation$HandleContextMenuEvent = Event<VoAggregation$HandleContextMenuEventParameters>;
|
|
16201
|
+
|
|
16202
|
+
export interface VoAggregation$HandleMovedEventParameters {
|
|
16189
16203
|
/**
|
|
16190
16204
|
* Clicked instance
|
|
16191
16205
|
*/
|
|
@@ -16197,12 +16211,16 @@ declare module "sap/ui/vbm/VoAggregation" {
|
|
|
16197
16211
|
handle?: int;
|
|
16198
16212
|
}
|
|
16199
16213
|
|
|
16200
|
-
export
|
|
16214
|
+
export type VoAggregation$HandleMovedEvent = Event<VoAggregation$HandleMovedEventParameters>;
|
|
16215
|
+
|
|
16216
|
+
export interface VoAggregation$SelectEventParameters {
|
|
16201
16217
|
/**
|
|
16202
16218
|
* Array of selected VOs
|
|
16203
16219
|
*/
|
|
16204
16220
|
selected?: any[];
|
|
16205
16221
|
}
|
|
16222
|
+
|
|
16223
|
+
export type VoAggregation$SelectEvent = Event<VoAggregation$SelectEventParameters>;
|
|
16206
16224
|
}
|
|
16207
16225
|
|
|
16208
16226
|
declare module "sap/ui/vbm/VoBase" {
|
|
@@ -16228,7 +16246,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16228
16246
|
* - A freestyle mode, providing the full control on colors and layout. Further all visual objects
|
|
16229
16247
|
* have common edit capabilities and it is possible to drop content on visual objects.
|
|
16230
16248
|
*/
|
|
16231
|
-
class VoBase extends UI5Element {
|
|
16249
|
+
export default class VoBase extends UI5Element {
|
|
16232
16250
|
/**
|
|
16233
16251
|
* Constructor for a new VoBase.
|
|
16234
16252
|
*
|
|
@@ -16353,7 +16371,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16353
16371
|
/**
|
|
16354
16372
|
* The function to be called when the event occurs
|
|
16355
16373
|
*/
|
|
16356
|
-
fnFunction: (p1:
|
|
16374
|
+
fnFunction: (p1: VoBase$ContextMenuEvent) => void,
|
|
16357
16375
|
/**
|
|
16358
16376
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16359
16377
|
*/
|
|
@@ -16373,7 +16391,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16373
16391
|
/**
|
|
16374
16392
|
* The function to be called when the event occurs
|
|
16375
16393
|
*/
|
|
16376
|
-
fnFunction: (p1:
|
|
16394
|
+
fnFunction: (p1: VoBase$ContextMenuEvent) => void,
|
|
16377
16395
|
/**
|
|
16378
16396
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16379
16397
|
*/
|
|
@@ -16398,7 +16416,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16398
16416
|
/**
|
|
16399
16417
|
* The function to be called when the event occurs
|
|
16400
16418
|
*/
|
|
16401
|
-
fnFunction: (p1:
|
|
16419
|
+
fnFunction: (p1: VoBase$DropEvent) => void,
|
|
16402
16420
|
/**
|
|
16403
16421
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16404
16422
|
*/
|
|
@@ -16418,7 +16436,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16418
16436
|
/**
|
|
16419
16437
|
* The function to be called when the event occurs
|
|
16420
16438
|
*/
|
|
16421
|
-
fnFunction: (p1:
|
|
16439
|
+
fnFunction: (p1: VoBase$DropEvent) => void,
|
|
16422
16440
|
/**
|
|
16423
16441
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16424
16442
|
*/
|
|
@@ -16443,7 +16461,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16443
16461
|
/**
|
|
16444
16462
|
* The function to be called when the event occurs
|
|
16445
16463
|
*/
|
|
16446
|
-
fnFunction: (p1:
|
|
16464
|
+
fnFunction: (p1: VoBase$HandleClickEvent) => void,
|
|
16447
16465
|
/**
|
|
16448
16466
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16449
16467
|
*/
|
|
@@ -16463,7 +16481,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16463
16481
|
/**
|
|
16464
16482
|
* The function to be called when the event occurs
|
|
16465
16483
|
*/
|
|
16466
|
-
fnFunction: (p1:
|
|
16484
|
+
fnFunction: (p1: VoBase$HandleClickEvent) => void,
|
|
16467
16485
|
/**
|
|
16468
16486
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16469
16487
|
*/
|
|
@@ -16489,7 +16507,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16489
16507
|
/**
|
|
16490
16508
|
* The function to be called when the event occurs
|
|
16491
16509
|
*/
|
|
16492
|
-
fnFunction: (p1:
|
|
16510
|
+
fnFunction: (p1: VoBase$HandleContextMenuEvent) => void,
|
|
16493
16511
|
/**
|
|
16494
16512
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16495
16513
|
*/
|
|
@@ -16510,7 +16528,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16510
16528
|
/**
|
|
16511
16529
|
* The function to be called when the event occurs
|
|
16512
16530
|
*/
|
|
16513
|
-
fnFunction: (p1:
|
|
16531
|
+
fnFunction: (p1: VoBase$HandleContextMenuEvent) => void,
|
|
16514
16532
|
/**
|
|
16515
16533
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16516
16534
|
*/
|
|
@@ -16535,7 +16553,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16535
16553
|
/**
|
|
16536
16554
|
* The function to be called when the event occurs
|
|
16537
16555
|
*/
|
|
16538
|
-
fnFunction: (p1:
|
|
16556
|
+
fnFunction: (p1: VoBase$HandleMovedEvent) => void,
|
|
16539
16557
|
/**
|
|
16540
16558
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16541
16559
|
*/
|
|
@@ -16555,7 +16573,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16555
16573
|
/**
|
|
16556
16574
|
* The function to be called when the event occurs
|
|
16557
16575
|
*/
|
|
16558
|
-
fnFunction: (p1:
|
|
16576
|
+
fnFunction: (p1: VoBase$HandleMovedEvent) => void,
|
|
16559
16577
|
/**
|
|
16560
16578
|
* Context object to call the event handler with. Defaults to this `sap.ui.vbm.VoBase` itself
|
|
16561
16579
|
*/
|
|
@@ -16589,7 +16607,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16589
16607
|
/**
|
|
16590
16608
|
* The function to be called, when the event occurs
|
|
16591
16609
|
*/
|
|
16592
|
-
fnFunction: (p1:
|
|
16610
|
+
fnFunction: (p1: VoBase$ContextMenuEvent) => void,
|
|
16593
16611
|
/**
|
|
16594
16612
|
* Context object on which the given function had to be called
|
|
16595
16613
|
*/
|
|
@@ -16606,7 +16624,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16606
16624
|
/**
|
|
16607
16625
|
* The function to be called, when the event occurs
|
|
16608
16626
|
*/
|
|
16609
|
-
fnFunction: (p1:
|
|
16627
|
+
fnFunction: (p1: VoBase$DropEvent) => void,
|
|
16610
16628
|
/**
|
|
16611
16629
|
* Context object on which the given function had to be called
|
|
16612
16630
|
*/
|
|
@@ -16623,7 +16641,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16623
16641
|
/**
|
|
16624
16642
|
* The function to be called, when the event occurs
|
|
16625
16643
|
*/
|
|
16626
|
-
fnFunction: (p1:
|
|
16644
|
+
fnFunction: (p1: VoBase$HandleClickEvent) => void,
|
|
16627
16645
|
/**
|
|
16628
16646
|
* Context object on which the given function had to be called
|
|
16629
16647
|
*/
|
|
@@ -16641,7 +16659,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16641
16659
|
/**
|
|
16642
16660
|
* The function to be called, when the event occurs
|
|
16643
16661
|
*/
|
|
16644
|
-
fnFunction: (p1:
|
|
16662
|
+
fnFunction: (p1: VoBase$HandleContextMenuEvent) => void,
|
|
16645
16663
|
/**
|
|
16646
16664
|
* Context object on which the given function had to be called
|
|
16647
16665
|
*/
|
|
@@ -16658,14 +16676,14 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16658
16676
|
/**
|
|
16659
16677
|
* The function to be called, when the event occurs
|
|
16660
16678
|
*/
|
|
16661
|
-
fnFunction: (p1:
|
|
16679
|
+
fnFunction: (p1: VoBase$HandleMovedEvent) => void,
|
|
16662
16680
|
/**
|
|
16663
16681
|
* Context object on which the given function had to be called
|
|
16664
16682
|
*/
|
|
16665
16683
|
oListener?: object
|
|
16666
16684
|
): this;
|
|
16667
16685
|
/**
|
|
16668
|
-
* @
|
|
16686
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16669
16687
|
*
|
|
16670
16688
|
* Fires event {@link #event:click click} to attached listeners.
|
|
16671
16689
|
*
|
|
@@ -16678,7 +16696,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16678
16696
|
mParameters?: object
|
|
16679
16697
|
): this;
|
|
16680
16698
|
/**
|
|
16681
|
-
* @
|
|
16699
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16682
16700
|
*
|
|
16683
16701
|
* Fires event {@link #event:contextMenu contextMenu} to attached listeners.
|
|
16684
16702
|
*
|
|
@@ -16688,10 +16706,10 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16688
16706
|
/**
|
|
16689
16707
|
* Parameters to pass along with the event
|
|
16690
16708
|
*/
|
|
16691
|
-
mParameters?: $
|
|
16709
|
+
mParameters?: VoBase$ContextMenuEventParameters
|
|
16692
16710
|
): this;
|
|
16693
16711
|
/**
|
|
16694
|
-
* @
|
|
16712
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16695
16713
|
*
|
|
16696
16714
|
* Fires event {@link #event:drop drop} to attached listeners.
|
|
16697
16715
|
*
|
|
@@ -16701,10 +16719,10 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16701
16719
|
/**
|
|
16702
16720
|
* Parameters to pass along with the event
|
|
16703
16721
|
*/
|
|
16704
|
-
mParameters?: $
|
|
16722
|
+
mParameters?: VoBase$DropEventParameters
|
|
16705
16723
|
): this;
|
|
16706
16724
|
/**
|
|
16707
|
-
* @
|
|
16725
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16708
16726
|
*
|
|
16709
16727
|
* Fires event {@link #event:handleClick handleClick} to attached listeners.
|
|
16710
16728
|
*
|
|
@@ -16714,10 +16732,10 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16714
16732
|
/**
|
|
16715
16733
|
* Parameters to pass along with the event
|
|
16716
16734
|
*/
|
|
16717
|
-
mParameters?: $
|
|
16735
|
+
mParameters?: VoBase$HandleClickEventParameters
|
|
16718
16736
|
): this;
|
|
16719
16737
|
/**
|
|
16720
|
-
* @
|
|
16738
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16721
16739
|
*
|
|
16722
16740
|
* Fires event {@link #event:handleContextMenu handleContextMenu} to attached listeners.
|
|
16723
16741
|
*
|
|
@@ -16727,10 +16745,10 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16727
16745
|
/**
|
|
16728
16746
|
* Parameters to pass along with the event
|
|
16729
16747
|
*/
|
|
16730
|
-
mParameters?: $
|
|
16748
|
+
mParameters?: VoBase$HandleContextMenuEventParameters
|
|
16731
16749
|
): this;
|
|
16732
16750
|
/**
|
|
16733
|
-
* @
|
|
16751
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16734
16752
|
*
|
|
16735
16753
|
* Fires event {@link #event:handleMoved handleMoved} to attached listeners.
|
|
16736
16754
|
*
|
|
@@ -16740,7 +16758,7 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
16740
16758
|
/**
|
|
16741
16759
|
* Parameters to pass along with the event
|
|
16742
16760
|
*/
|
|
16743
|
-
mParameters?: $
|
|
16761
|
+
mParameters?: VoBase$HandleMovedEventParameters
|
|
16744
16762
|
): this;
|
|
16745
16763
|
/**
|
|
16746
16764
|
* Gets current value of property {@link #getChangeable changeable}.
|
|
@@ -17229,7 +17247,6 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
17229
17247
|
sSelectColor?: string
|
|
17230
17248
|
): this;
|
|
17231
17249
|
}
|
|
17232
|
-
export default VoBase;
|
|
17233
17250
|
|
|
17234
17251
|
export interface $VoBaseSettings extends $ElementSettings {
|
|
17235
17252
|
/**
|
|
@@ -17348,55 +17365,61 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
17348
17365
|
/**
|
|
17349
17366
|
* The event is raised when there is a right click or a tap and hold action on a visual object.
|
|
17350
17367
|
*/
|
|
17351
|
-
contextMenu?: (oEvent:
|
|
17368
|
+
contextMenu?: (oEvent: VoBase$ContextMenuEvent) => void;
|
|
17352
17369
|
|
|
17353
17370
|
/**
|
|
17354
17371
|
* This event is raised when the design handle is moved.
|
|
17355
17372
|
*/
|
|
17356
|
-
handleMoved?: (oEvent:
|
|
17373
|
+
handleMoved?: (oEvent: VoBase$HandleMovedEvent) => void;
|
|
17357
17374
|
|
|
17358
17375
|
/**
|
|
17359
17376
|
* This event is raised when the design handle is right clicked.
|
|
17360
17377
|
*/
|
|
17361
|
-
handleContextMenu?: (
|
|
17362
|
-
oEvent: Event<$VoBaseHandleContextMenuEventParameters>
|
|
17363
|
-
) => void;
|
|
17378
|
+
handleContextMenu?: (oEvent: VoBase$HandleContextMenuEvent) => void;
|
|
17364
17379
|
|
|
17365
17380
|
/**
|
|
17366
17381
|
* This event is raised when the design handle is clicked.
|
|
17367
17382
|
*/
|
|
17368
|
-
handleClick?: (oEvent:
|
|
17383
|
+
handleClick?: (oEvent: VoBase$HandleClickEvent) => void;
|
|
17369
17384
|
|
|
17370
17385
|
/**
|
|
17371
17386
|
* The event is raised when something is dropped on the object.
|
|
17372
17387
|
*/
|
|
17373
|
-
drop?: (oEvent:
|
|
17388
|
+
drop?: (oEvent: VoBase$DropEvent) => void;
|
|
17374
17389
|
}
|
|
17375
17390
|
|
|
17376
|
-
export interface $
|
|
17391
|
+
export interface VoBase$ClickEventParameters {}
|
|
17377
17392
|
|
|
17378
|
-
export
|
|
17393
|
+
export type VoBase$ClickEvent = Event<VoBase$ClickEventParameters>;
|
|
17394
|
+
|
|
17395
|
+
export interface VoBase$ContextMenuEventParameters {
|
|
17379
17396
|
/**
|
|
17380
17397
|
* Menu to open
|
|
17381
17398
|
*/
|
|
17382
17399
|
menu?: Menu;
|
|
17383
17400
|
}
|
|
17384
17401
|
|
|
17385
|
-
export
|
|
17402
|
+
export type VoBase$ContextMenuEvent = Event<VoBase$ContextMenuEventParameters>;
|
|
17403
|
+
|
|
17404
|
+
export interface VoBase$DropEventParameters {
|
|
17386
17405
|
/**
|
|
17387
17406
|
* Dragged instance
|
|
17388
17407
|
*/
|
|
17389
17408
|
dragSource?: VoBase;
|
|
17390
17409
|
}
|
|
17391
17410
|
|
|
17392
|
-
export
|
|
17411
|
+
export type VoBase$DropEvent = Event<VoBase$DropEventParameters>;
|
|
17412
|
+
|
|
17413
|
+
export interface VoBase$HandleClickEventParameters {
|
|
17393
17414
|
/**
|
|
17394
17415
|
* The number of the handle where the click occured. Handles are numbered zero based.
|
|
17395
17416
|
*/
|
|
17396
17417
|
handle?: int;
|
|
17397
17418
|
}
|
|
17398
17419
|
|
|
17399
|
-
export
|
|
17420
|
+
export type VoBase$HandleClickEvent = Event<VoBase$HandleClickEventParameters>;
|
|
17421
|
+
|
|
17422
|
+
export interface VoBase$HandleContextMenuEventParameters {
|
|
17400
17423
|
/**
|
|
17401
17424
|
* The number of the handle where the click occured. Handles are numbered zero based.
|
|
17402
17425
|
*/
|
|
@@ -17408,12 +17431,16 @@ declare module "sap/ui/vbm/VoBase" {
|
|
|
17408
17431
|
menu?: Menu;
|
|
17409
17432
|
}
|
|
17410
17433
|
|
|
17411
|
-
export
|
|
17434
|
+
export type VoBase$HandleContextMenuEvent = Event<VoBase$HandleContextMenuEventParameters>;
|
|
17435
|
+
|
|
17436
|
+
export interface VoBase$HandleMovedEventParameters {
|
|
17412
17437
|
/**
|
|
17413
17438
|
* The number of the handle where the click occured. Handles are numbered zero based.
|
|
17414
17439
|
*/
|
|
17415
17440
|
handle?: int;
|
|
17416
17441
|
}
|
|
17442
|
+
|
|
17443
|
+
export type VoBase$HandleMovedEvent = Event<VoBase$HandleMovedEventParameters>;
|
|
17417
17444
|
}
|
|
17418
17445
|
|
|
17419
17446
|
declare namespace sap {
|