@sapui5/ts-types 1.92.2 → 1.93.3
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 +3 -1
- package/package.json +1 -1
- package/types/index.d.ts +2 -1
- package/types/sap.apf.d.ts +1 -44
- package/types/sap.ca.ui.d.ts +649 -651
- package/types/sap.chart.d.ts +49 -49
- package/types/sap.collaboration.d.ts +756 -762
- package/types/sap.esh.search.ui.d.ts +241 -0
- package/types/sap.f.d.ts +623 -468
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +101 -75
- package/types/sap.fe.macros.d.ts +55 -8
- package/types/sap.fe.navigation.d.ts +5 -14
- package/types/sap.fe.placeholder-1.93.1-d.ts +3 -0
- package/types/sap.fe.plugins.d.ts +2 -4
- package/types/sap.fe.templates.d.ts +1 -16
- package/types/sap.fe.test.d.ts +44 -115
- package/types/sap.fe.tools.d.ts +2 -4
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1321 -1191
- package/types/sap.landvisz.d.ts +345 -345
- package/types/sap.m.d.ts +5498 -4814
- package/types/sap.makit.d.ts +123 -123
- package/types/sap.me.d.ts +137 -153
- package/types/sap.ndc.d.ts +29 -29
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +170 -124
- package/types/sap.suite.ui.commons.d.ts +1593 -1612
- package/types/sap.suite.ui.generic.template.d.ts +285 -165
- package/types/sap.suite.ui.microchart.d.ts +742 -508
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1387 -1387
- package/types/sap.ui.comp.d.ts +1013 -1013
- package/types/sap.ui.core.d.ts +3852 -3973
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +138 -147
- package/types/sap.ui.generic.template.d.ts +2 -4
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +593 -586
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.richtexteditor.d.ts +30 -30
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +248 -248
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -713
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.vbm.d.ts +784 -784
- package/types/sap.ui.vk.d.ts +3130 -2251
- package/types/sap.ui.vtm.d.ts +240 -240
- package/types/sap.uiext.inbox.d.ts +222 -222
- package/types/sap.ushell.d.ts +340 -377
- package/types/sap.ushell_abap.d.ts +127 -129
- package/types/sap.uxap.d.ts +384 -220
- package/types/sap.viz.d.ts +1527 -1527
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +188 -222
- package/types/sap.zen.crosstab.d.ts +15 -17
- package/types/sap.zen.dsh.d.ts +176 -211
- package/types/sap.fe.placeholder.d.ts +0 -5
package/types/sap.ui.vbm.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -17,7 +17,7 @@ declare namespace sap {
|
|
|
17
17
|
* The event is raised when a when the Adapter receives an event from GeoMap control. It is intended to
|
|
18
18
|
* unify the various GeoMap events as provided by VBI.
|
|
19
19
|
*/
|
|
20
|
-
submit?:
|
|
20
|
+
submit?: (oEvent: sap.ui.base.Event) => void;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
interface $Adapter3DSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -30,7 +30,7 @@ declare namespace sap {
|
|
|
30
30
|
/**
|
|
31
31
|
* This event is fired when interactions in the viewport happen.
|
|
32
32
|
*/
|
|
33
|
-
submit?:
|
|
33
|
+
submit?: (oEvent: sap.ui.base.Event) => void;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
interface $AnalyticMapSettings extends sap.ui.vbm.$GeoMapSettings {
|
|
@@ -46,22 +46,22 @@ declare namespace sap {
|
|
|
46
46
|
/**
|
|
47
47
|
* The event is raised when there is a click or a tap on a region.
|
|
48
48
|
*/
|
|
49
|
-
regionClick?:
|
|
49
|
+
regionClick?: (oEvent: sap.ui.base.Event) => void;
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
52
|
* The event is raised when there is a right click or a tap and hold action on a region.
|
|
53
53
|
*/
|
|
54
|
-
regionContextMenu?:
|
|
54
|
+
regionContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
57
|
* Raised when regions get selected
|
|
58
58
|
*/
|
|
59
|
-
regionSelect?:
|
|
59
|
+
regionSelect?: (oEvent: sap.ui.base.Event) => void;
|
|
60
60
|
|
|
61
61
|
/**
|
|
62
62
|
* Event is raised when regions get deselected
|
|
63
63
|
*/
|
|
64
|
-
regionDeselect?:
|
|
64
|
+
regionDeselect?: (oEvent: sap.ui.base.Event) => void;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
interface $AreaSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
@@ -93,12 +93,12 @@ declare namespace sap {
|
|
|
93
93
|
/**
|
|
94
94
|
* This event is raised when the edge of an Area is clicked.
|
|
95
95
|
*/
|
|
96
|
-
edgeClick?:
|
|
96
|
+
edgeClick?: (oEvent: sap.ui.base.Event) => void;
|
|
97
97
|
|
|
98
98
|
/**
|
|
99
99
|
* This event is raised when the edge of an Area is right clicked.
|
|
100
100
|
*/
|
|
101
|
-
edgeContextMenu?:
|
|
101
|
+
edgeContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
interface $AreasSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
@@ -119,12 +119,12 @@ declare namespace sap {
|
|
|
119
119
|
/**
|
|
120
120
|
* This event is raised when the edge of an Area is clicked.
|
|
121
121
|
*/
|
|
122
|
-
edgeClick?:
|
|
122
|
+
edgeClick?: (oEvent: sap.ui.base.Event) => void;
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
125
|
* This event is raised when the edge of an Area is right clicked.
|
|
126
126
|
*/
|
|
127
|
-
edgeContextMenu?:
|
|
127
|
+
edgeContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
interface $BoxSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
@@ -320,12 +320,12 @@ declare namespace sap {
|
|
|
320
320
|
/**
|
|
321
321
|
* The event is raised when there is a click action on a Cluster Object.
|
|
322
322
|
*/
|
|
323
|
-
click?:
|
|
323
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
324
324
|
|
|
325
325
|
/**
|
|
326
326
|
* The event is raised when there is a right click or a tap and hold action on a Cluster.
|
|
327
327
|
*/
|
|
328
|
-
contextMenu?:
|
|
328
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
interface $ClusterContainerSettings
|
|
@@ -442,12 +442,12 @@ declare namespace sap {
|
|
|
442
442
|
/**
|
|
443
443
|
* The event is raised when there is a click action on a Feature.
|
|
444
444
|
*/
|
|
445
|
-
click?:
|
|
445
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
446
446
|
|
|
447
447
|
/**
|
|
448
448
|
* The event is raised when there is a right click or a tap and hold action on a Feature.
|
|
449
449
|
*/
|
|
450
|
-
contextMenu?:
|
|
450
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
451
451
|
}
|
|
452
452
|
|
|
453
453
|
interface $FeatureCollectionSettings
|
|
@@ -464,13 +464,13 @@ declare namespace sap {
|
|
|
464
464
|
* The event is raised when there is a click action on an aggregated Feature. Clicks on other Features from
|
|
465
465
|
* the GeoJSON are ignored.
|
|
466
466
|
*/
|
|
467
|
-
click?:
|
|
467
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
468
468
|
|
|
469
469
|
/**
|
|
470
470
|
* The event is raised when there is a right click or a tap and hold action on an aggregated Feature. Clicks
|
|
471
471
|
* on other Features from the GeoJSON are ignored.
|
|
472
472
|
*/
|
|
473
|
-
contextMenu?:
|
|
473
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
interface $GeoCircleSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
@@ -567,13 +567,13 @@ declare namespace sap {
|
|
|
567
567
|
* The event is raised when there is a click action on an aggregated Feature. Clicks on other Features from
|
|
568
568
|
* the GeoJSON are ignored.
|
|
569
569
|
*/
|
|
570
|
-
click?:
|
|
570
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
571
571
|
|
|
572
572
|
/**
|
|
573
573
|
* The event is raised when there is a right click or a tap and hold action on an aggregated Feature. Clicks
|
|
574
574
|
* on other Features from the GeoJSON are ignored.
|
|
575
575
|
*/
|
|
576
|
-
contextMenu?:
|
|
576
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
interface $GeoMapSettings extends sap.ui.vbm.$VBISettings {
|
|
@@ -714,47 +714,47 @@ declare namespace sap {
|
|
|
714
714
|
/**
|
|
715
715
|
* Raised when the map is clicked.
|
|
716
716
|
*/
|
|
717
|
-
click?:
|
|
717
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
718
718
|
|
|
719
719
|
/**
|
|
720
720
|
* Raised when the map is right clicked/longPressed(tap and hold).
|
|
721
721
|
*/
|
|
722
|
-
contextMenu?:
|
|
722
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
723
723
|
|
|
724
724
|
/**
|
|
725
725
|
* Raised when something is dropped on the map.
|
|
726
726
|
*/
|
|
727
|
-
drop?:
|
|
727
|
+
drop?: (oEvent: sap.ui.base.Event) => void;
|
|
728
728
|
|
|
729
729
|
/**
|
|
730
730
|
* This event is raised when a multi selection of visual objects has occurred
|
|
731
731
|
*/
|
|
732
|
-
select?:
|
|
732
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
733
733
|
|
|
734
734
|
/**
|
|
735
735
|
* this event is raised on zoom in or zoom out.
|
|
736
736
|
*/
|
|
737
|
-
zoomChanged?:
|
|
737
|
+
zoomChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
738
738
|
|
|
739
739
|
/**
|
|
740
740
|
* this event is raised on map move.
|
|
741
741
|
*/
|
|
742
|
-
centerChanged?:
|
|
742
|
+
centerChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
743
743
|
|
|
744
744
|
/**
|
|
745
745
|
* this event is raised on map key down
|
|
746
746
|
*/
|
|
747
|
-
keyDown?:
|
|
747
|
+
keyDown?: (oEvent: sap.ui.base.Event) => void;
|
|
748
748
|
|
|
749
749
|
/**
|
|
750
750
|
* this event is raised on map key press
|
|
751
751
|
*/
|
|
752
|
-
keyPress?:
|
|
752
|
+
keyPress?: (oEvent: sap.ui.base.Event) => void;
|
|
753
753
|
|
|
754
754
|
/**
|
|
755
755
|
* this event is raised on map key up
|
|
756
756
|
*/
|
|
757
|
-
keyUp?:
|
|
757
|
+
keyUp?: (oEvent: sap.ui.base.Event) => void;
|
|
758
758
|
}
|
|
759
759
|
|
|
760
760
|
interface $HeatmapSettings extends sap.ui.vbm.$VoAbstractSettings {
|
|
@@ -849,7 +849,7 @@ declare namespace sap {
|
|
|
849
849
|
/**
|
|
850
850
|
* The event is raised when there is a click action on a legend.
|
|
851
851
|
*/
|
|
852
|
-
click?:
|
|
852
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
853
853
|
}
|
|
854
854
|
|
|
855
855
|
interface $LegendItemSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -878,7 +878,7 @@ declare namespace sap {
|
|
|
878
878
|
/**
|
|
879
879
|
* The event is raised when there is a click action on a legend item.
|
|
880
880
|
*/
|
|
881
|
-
click?:
|
|
881
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
882
882
|
}
|
|
883
883
|
|
|
884
884
|
interface $PieSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
@@ -922,7 +922,7 @@ declare namespace sap {
|
|
|
922
922
|
* @deprecated - This event should no longer be used. Click event from Pie and Pies now includes Pie Item
|
|
923
923
|
* index when event occurs.
|
|
924
924
|
*/
|
|
925
|
-
click?:
|
|
925
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
926
926
|
}
|
|
927
927
|
|
|
928
928
|
interface $PiesSettings extends sap.ui.vbm.$VoAggregationSettings {
|
|
@@ -991,12 +991,12 @@ declare namespace sap {
|
|
|
991
991
|
/**
|
|
992
992
|
* The event is raised when there is a click action on a region.
|
|
993
993
|
*/
|
|
994
|
-
click?:
|
|
994
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
995
995
|
|
|
996
996
|
/**
|
|
997
997
|
* The event is raised when there is a right click or a tap and hold action on a region.
|
|
998
998
|
*/
|
|
999
|
-
contextMenu?:
|
|
999
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
1000
1000
|
}
|
|
1001
1001
|
|
|
1002
1002
|
interface $ResourceSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -1146,17 +1146,17 @@ declare namespace sap {
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* The event is raised when there is a click action on a Route.
|
|
1148
1148
|
*/
|
|
1149
|
-
click?:
|
|
1149
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1150
1150
|
|
|
1151
1151
|
/**
|
|
1152
1152
|
* The event is raised when there is a right click or a tap and hold action on a Route.
|
|
1153
1153
|
*/
|
|
1154
|
-
contextMenu?:
|
|
1154
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
1155
1155
|
|
|
1156
1156
|
/**
|
|
1157
1157
|
* The event is raised when something is dropped on a Route.
|
|
1158
1158
|
*/
|
|
1159
|
-
drop?:
|
|
1159
|
+
drop?: (oEvent: sap.ui.base.Event) => void;
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
1162
1162
|
interface $SpotSettings extends sap.ui.vbm.$VoBaseSettings {
|
|
@@ -1365,57 +1365,57 @@ declare namespace sap {
|
|
|
1365
1365
|
/**
|
|
1366
1366
|
* High level API. Submit event is raised.
|
|
1367
1367
|
*/
|
|
1368
|
-
submit?:
|
|
1368
|
+
submit?: (oEvent: sap.ui.base.Event) => void;
|
|
1369
1369
|
|
|
1370
1370
|
/**
|
|
1371
1371
|
* High level API. ThumbnailClick event is raised.
|
|
1372
1372
|
*/
|
|
1373
|
-
thumbnailClick?:
|
|
1373
|
+
thumbnailClick?: (oEvent: sap.ui.base.Event) => void;
|
|
1374
1374
|
|
|
1375
1375
|
/**
|
|
1376
1376
|
* Low level API. Rendering of the canvas content is reqested. This event can be used to do custom rendering
|
|
1377
1377
|
* into the Visual Business overlay canvas. This function is not supported in plugin mode.
|
|
1378
1378
|
*/
|
|
1379
|
-
render?:
|
|
1379
|
+
render?: (oEvent: sap.ui.base.Event) => void;
|
|
1380
1380
|
|
|
1381
1381
|
/**
|
|
1382
1382
|
* Low level API. Tracking mode is set or reset. This function is not supported in plugin mode.
|
|
1383
1383
|
*/
|
|
1384
|
-
changeTrackingMode?:
|
|
1384
|
+
changeTrackingMode?: (oEvent: sap.ui.base.Event) => void;
|
|
1385
1385
|
|
|
1386
1386
|
/**
|
|
1387
1387
|
* Low level API. The canvas is zoomed. This function is not supported in plugin mode.
|
|
1388
1388
|
*/
|
|
1389
|
-
zoom?:
|
|
1389
|
+
zoom?: (oEvent: sap.ui.base.Event) => void;
|
|
1390
1390
|
|
|
1391
1391
|
/**
|
|
1392
1392
|
* Low level API. The canvas was moved. This function is not supported in plugin mode.
|
|
1393
1393
|
*/
|
|
1394
|
-
move?:
|
|
1394
|
+
move?: (oEvent: sap.ui.base.Event) => void;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
1397
|
* The event is raised before a Visual Business window is opened. It is intended to be used to place arbitrary
|
|
1398
1398
|
* content in e.g. a Detail Window. This event is not supported in plugin mode.
|
|
1399
1399
|
*/
|
|
1400
|
-
openWindow?:
|
|
1400
|
+
openWindow?: (oEvent: sap.ui.base.Event) => void;
|
|
1401
1401
|
|
|
1402
1402
|
/**
|
|
1403
1403
|
* The event is raised before a Visual Business window is closed. This function is not supported in plugin
|
|
1404
1404
|
* mode.
|
|
1405
1405
|
*/
|
|
1406
|
-
closeWindow?:
|
|
1406
|
+
closeWindow?: (oEvent: sap.ui.base.Event) => void;
|
|
1407
1407
|
|
|
1408
1408
|
/**
|
|
1409
1409
|
* The event is raised when a Visual Business container VO instance is created. It is intended to be used
|
|
1410
1410
|
* to place arbitrary content in e.g. other controls. This event is not supported in plugin mode.
|
|
1411
1411
|
*/
|
|
1412
|
-
containerCreated?:
|
|
1412
|
+
containerCreated?: (oEvent: sap.ui.base.Event) => void;
|
|
1413
1413
|
|
|
1414
1414
|
/**
|
|
1415
1415
|
* The event is raised before a Visual Business container VO instance is destroyed. This function is not
|
|
1416
1416
|
* supported in plugin mode.
|
|
1417
1417
|
*/
|
|
1418
|
-
containerDestroyed?:
|
|
1418
|
+
containerDestroyed?: (oEvent: sap.ui.base.Event) => void;
|
|
1419
1419
|
}
|
|
1420
1420
|
|
|
1421
1421
|
interface $ViewportSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -1448,7 +1448,7 @@ declare namespace sap {
|
|
|
1448
1448
|
/**
|
|
1449
1449
|
* This event is fired when camera positioning changed (whole movement has been finished)
|
|
1450
1450
|
*/
|
|
1451
|
-
cameraChange?:
|
|
1451
|
+
cameraChange?: (oEvent: sap.ui.base.Event) => void;
|
|
1452
1452
|
}
|
|
1453
1453
|
|
|
1454
1454
|
interface $VoAbstractSettings extends sap.ui.core.$ElementSettings {}
|
|
@@ -1475,42 +1475,42 @@ declare namespace sap {
|
|
|
1475
1475
|
/**
|
|
1476
1476
|
* This event is raised when a Design handle is moved.
|
|
1477
1477
|
*/
|
|
1478
|
-
handleMoved?:
|
|
1478
|
+
handleMoved?: (oEvent: sap.ui.base.Event) => void;
|
|
1479
1479
|
|
|
1480
1480
|
/**
|
|
1481
1481
|
* This event is raised when a Design handle is right clicked.
|
|
1482
1482
|
*/
|
|
1483
|
-
handleContextMenu?:
|
|
1483
|
+
handleContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
1484
1484
|
|
|
1485
1485
|
/**
|
|
1486
1486
|
* This event is raised when a Design handle is clicked.
|
|
1487
1487
|
*/
|
|
1488
|
-
handleClick?:
|
|
1488
|
+
handleClick?: (oEvent: sap.ui.base.Event) => void;
|
|
1489
1489
|
|
|
1490
1490
|
/**
|
|
1491
1491
|
* This event is raised when aggregated elements get selected
|
|
1492
1492
|
*/
|
|
1493
|
-
select?:
|
|
1493
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
1494
1494
|
|
|
1495
1495
|
/**
|
|
1496
1496
|
* This event is raised when aggregated elements get deselected
|
|
1497
1497
|
*/
|
|
1498
|
-
deselect?:
|
|
1498
|
+
deselect?: (oEvent: sap.ui.base.Event) => void;
|
|
1499
1499
|
|
|
1500
1500
|
/**
|
|
1501
1501
|
* The event is raised when there is a click action on a VO.
|
|
1502
1502
|
*/
|
|
1503
|
-
click?:
|
|
1503
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1504
1504
|
|
|
1505
1505
|
/**
|
|
1506
1506
|
* The event is raised when there is a right click or a tap and hold action on a VO.
|
|
1507
1507
|
*/
|
|
1508
|
-
contextMenu?:
|
|
1508
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
1509
1509
|
|
|
1510
1510
|
/**
|
|
1511
1511
|
* The event is raised when something is dropped on a VO.
|
|
1512
1512
|
*/
|
|
1513
|
-
drop?:
|
|
1513
|
+
drop?: (oEvent: sap.ui.base.Event) => void;
|
|
1514
1514
|
}
|
|
1515
1515
|
|
|
1516
1516
|
interface $VoBaseSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -1626,32 +1626,32 @@ declare namespace sap {
|
|
|
1626
1626
|
/**
|
|
1627
1627
|
* The event is raised when there is a click action on a visual object.
|
|
1628
1628
|
*/
|
|
1629
|
-
click?:
|
|
1629
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1630
1630
|
|
|
1631
1631
|
/**
|
|
1632
1632
|
* The event is raised when there is a right click or a tap and hold action on a visual object.
|
|
1633
1633
|
*/
|
|
1634
|
-
contextMenu?:
|
|
1634
|
+
contextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
1635
1635
|
|
|
1636
1636
|
/**
|
|
1637
1637
|
* This event is raised when the design handle is moved.
|
|
1638
1638
|
*/
|
|
1639
|
-
handleMoved?:
|
|
1639
|
+
handleMoved?: (oEvent: sap.ui.base.Event) => void;
|
|
1640
1640
|
|
|
1641
1641
|
/**
|
|
1642
1642
|
* This event is raised when the design handle is right clicked.
|
|
1643
1643
|
*/
|
|
1644
|
-
handleContextMenu?:
|
|
1644
|
+
handleContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
1645
1645
|
|
|
1646
1646
|
/**
|
|
1647
1647
|
* This event is raised when the design handle is clicked.
|
|
1648
1648
|
*/
|
|
1649
|
-
handleClick?:
|
|
1649
|
+
handleClick?: (oEvent: sap.ui.base.Event) => void;
|
|
1650
1650
|
|
|
1651
1651
|
/**
|
|
1652
1652
|
* The event is raised when something is dropped on the object.
|
|
1653
1653
|
*/
|
|
1654
|
-
drop?:
|
|
1654
|
+
drop?: (oEvent: sap.ui.base.Event) => void;
|
|
1655
1655
|
}
|
|
1656
1656
|
|
|
1657
1657
|
/**
|
|
@@ -1691,6 +1691,31 @@ declare namespace sap {
|
|
|
1691
1691
|
mSettings?: sap.ui.vbm.$AdapterSettings
|
|
1692
1692
|
);
|
|
1693
1693
|
|
|
1694
|
+
/**
|
|
1695
|
+
* Creates a new subclass of class sap.ui.vbm.Adapter with name `sClassName` and enriches it with the information
|
|
1696
|
+
* contained in `oClassInfo`.
|
|
1697
|
+
*
|
|
1698
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1699
|
+
*/
|
|
1700
|
+
static extend<T extends Record<string, unknown>>(
|
|
1701
|
+
/**
|
|
1702
|
+
* Name of the class being created
|
|
1703
|
+
*/
|
|
1704
|
+
sClassName: string,
|
|
1705
|
+
/**
|
|
1706
|
+
* Object literal with information about the class
|
|
1707
|
+
*/
|
|
1708
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Adapter>,
|
|
1709
|
+
/**
|
|
1710
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1711
|
+
* used by this class
|
|
1712
|
+
*/
|
|
1713
|
+
FNMetaImpl?: Function
|
|
1714
|
+
): Function;
|
|
1715
|
+
/**
|
|
1716
|
+
* Returns a metadata object for class sap.ui.vbm.Adapter.
|
|
1717
|
+
*/
|
|
1718
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1694
1719
|
/**
|
|
1695
1720
|
* Attaches event handler `fnFunction` to the {@link #event:submit submit} event of this `sap.ui.vbm.Adapter`.
|
|
1696
1721
|
*
|
|
@@ -1749,27 +1774,6 @@ declare namespace sap {
|
|
|
1749
1774
|
*/
|
|
1750
1775
|
oListener?: object
|
|
1751
1776
|
): this;
|
|
1752
|
-
/**
|
|
1753
|
-
* Creates a new subclass of class sap.ui.vbm.Adapter with name `sClassName` and enriches it with the information
|
|
1754
|
-
* contained in `oClassInfo`.
|
|
1755
|
-
*
|
|
1756
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1757
|
-
*/
|
|
1758
|
-
static extend<T extends Record<string, unknown>>(
|
|
1759
|
-
/**
|
|
1760
|
-
* Name of the class being created
|
|
1761
|
-
*/
|
|
1762
|
-
sClassName: string,
|
|
1763
|
-
/**
|
|
1764
|
-
* Object literal with information about the class
|
|
1765
|
-
*/
|
|
1766
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Adapter>,
|
|
1767
|
-
/**
|
|
1768
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1769
|
-
* used by this class
|
|
1770
|
-
*/
|
|
1771
|
-
FNMetaImpl?: Function
|
|
1772
|
-
): Function;
|
|
1773
1777
|
/**
|
|
1774
1778
|
* Fires event {@link #event:submit submit} to attached listeners.
|
|
1775
1779
|
*/
|
|
@@ -1785,10 +1789,6 @@ declare namespace sap {
|
|
|
1785
1789
|
* ID of the element which is the current target of the association {@link #getMap map}, or `null`.
|
|
1786
1790
|
*/
|
|
1787
1791
|
getMap(): sap.ui.core.ID;
|
|
1788
|
-
/**
|
|
1789
|
-
* Returns a metadata object for class sap.ui.vbm.Adapter.
|
|
1790
|
-
*/
|
|
1791
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1792
1792
|
/**
|
|
1793
1793
|
* Parses and process sections of the VBI JSON and loads them into JSON Model bound to the GeoMap
|
|
1794
1794
|
*/
|
|
@@ -1844,6 +1844,31 @@ declare namespace sap {
|
|
|
1844
1844
|
mSettings?: sap.ui.vbm.$Adapter3DSettings
|
|
1845
1845
|
);
|
|
1846
1846
|
|
|
1847
|
+
/**
|
|
1848
|
+
* Creates a new subclass of class sap.ui.vbm.Adapter3D with name `sClassName` and enriches it with the
|
|
1849
|
+
* information contained in `oClassInfo`.
|
|
1850
|
+
*
|
|
1851
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1852
|
+
*/
|
|
1853
|
+
static extend<T extends Record<string, unknown>>(
|
|
1854
|
+
/**
|
|
1855
|
+
* Name of the class being created
|
|
1856
|
+
*/
|
|
1857
|
+
sClassName: string,
|
|
1858
|
+
/**
|
|
1859
|
+
* Object literal with information about the class
|
|
1860
|
+
*/
|
|
1861
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Adapter3D>,
|
|
1862
|
+
/**
|
|
1863
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1864
|
+
* used by this class
|
|
1865
|
+
*/
|
|
1866
|
+
FNMetaImpl?: Function
|
|
1867
|
+
): Function;
|
|
1868
|
+
/**
|
|
1869
|
+
* Returns a metadata object for class sap.ui.vbm.Adapter3D.
|
|
1870
|
+
*/
|
|
1871
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1847
1872
|
/**
|
|
1848
1873
|
* Attaches event handler `fnFunction` to the {@link #event:submit submit} event of this `sap.ui.vbm.Adapter3D`.
|
|
1849
1874
|
*
|
|
@@ -1900,27 +1925,6 @@ declare namespace sap {
|
|
|
1900
1925
|
*/
|
|
1901
1926
|
oListener?: object
|
|
1902
1927
|
): this;
|
|
1903
|
-
/**
|
|
1904
|
-
* Creates a new subclass of class sap.ui.vbm.Adapter3D with name `sClassName` and enriches it with the
|
|
1905
|
-
* information contained in `oClassInfo`.
|
|
1906
|
-
*
|
|
1907
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1908
|
-
*/
|
|
1909
|
-
static extend<T extends Record<string, unknown>>(
|
|
1910
|
-
/**
|
|
1911
|
-
* Name of the class being created
|
|
1912
|
-
*/
|
|
1913
|
-
sClassName: string,
|
|
1914
|
-
/**
|
|
1915
|
-
* Object literal with information about the class
|
|
1916
|
-
*/
|
|
1917
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Adapter3D>,
|
|
1918
|
-
/**
|
|
1919
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1920
|
-
* used by this class
|
|
1921
|
-
*/
|
|
1922
|
-
FNMetaImpl?: Function
|
|
1923
|
-
): Function;
|
|
1924
1928
|
/**
|
|
1925
1929
|
* Fires event {@link #event:submit submit} to attached listeners.
|
|
1926
1930
|
*/
|
|
@@ -1935,10 +1939,6 @@ declare namespace sap {
|
|
|
1935
1939
|
data?: string;
|
|
1936
1940
|
}
|
|
1937
1941
|
): this;
|
|
1938
|
-
/**
|
|
1939
|
-
* Returns a metadata object for class sap.ui.vbm.Adapter3D.
|
|
1940
|
-
*/
|
|
1941
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1942
1942
|
/**
|
|
1943
1943
|
* ID of the element which is the current target of the association {@link #getViewport viewport}, or `null`.
|
|
1944
1944
|
*/
|
|
@@ -2008,6 +2008,31 @@ declare namespace sap {
|
|
|
2008
2008
|
mSettings?: sap.ui.vbm.$AnalyticMapSettings
|
|
2009
2009
|
);
|
|
2010
2010
|
|
|
2011
|
+
/**
|
|
2012
|
+
* Creates a new subclass of class sap.ui.vbm.AnalyticMap with name `sClassName` and enriches it with the
|
|
2013
|
+
* information contained in `oClassInfo`.
|
|
2014
|
+
*
|
|
2015
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.GeoMap.extend}.
|
|
2016
|
+
*/
|
|
2017
|
+
static extend<T extends Record<string, unknown>>(
|
|
2018
|
+
/**
|
|
2019
|
+
* Name of the class being created
|
|
2020
|
+
*/
|
|
2021
|
+
sClassName: string,
|
|
2022
|
+
/**
|
|
2023
|
+
* Object literal with information about the class
|
|
2024
|
+
*/
|
|
2025
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.AnalyticMap>,
|
|
2026
|
+
/**
|
|
2027
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2028
|
+
* used by this class
|
|
2029
|
+
*/
|
|
2030
|
+
FNMetaImpl?: Function
|
|
2031
|
+
): Function;
|
|
2032
|
+
/**
|
|
2033
|
+
* Returns a metadata object for class sap.ui.vbm.AnalyticMap.
|
|
2034
|
+
*/
|
|
2035
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2011
2036
|
/**
|
|
2012
2037
|
* Adds some region to the aggregation {@link #getRegions regions}.
|
|
2013
2038
|
*/
|
|
@@ -2251,27 +2276,6 @@ declare namespace sap {
|
|
|
2251
2276
|
*/
|
|
2252
2277
|
oListener?: object
|
|
2253
2278
|
): this;
|
|
2254
|
-
/**
|
|
2255
|
-
* Creates a new subclass of class sap.ui.vbm.AnalyticMap with name `sClassName` and enriches it with the
|
|
2256
|
-
* information contained in `oClassInfo`.
|
|
2257
|
-
*
|
|
2258
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.GeoMap.extend}.
|
|
2259
|
-
*/
|
|
2260
|
-
static extend<T extends Record<string, unknown>>(
|
|
2261
|
-
/**
|
|
2262
|
-
* Name of the class being created
|
|
2263
|
-
*/
|
|
2264
|
-
sClassName: string,
|
|
2265
|
-
/**
|
|
2266
|
-
* Object literal with information about the class
|
|
2267
|
-
*/
|
|
2268
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.AnalyticMap>,
|
|
2269
|
-
/**
|
|
2270
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2271
|
-
* used by this class
|
|
2272
|
-
*/
|
|
2273
|
-
FNMetaImpl?: Function
|
|
2274
|
-
): Function;
|
|
2275
2279
|
/**
|
|
2276
2280
|
* Fires event {@link #event:regionClick regionClick} to attached listeners.
|
|
2277
2281
|
*/
|
|
@@ -2318,10 +2322,6 @@ declare namespace sap {
|
|
|
2318
2322
|
*/
|
|
2319
2323
|
mParameters?: object
|
|
2320
2324
|
): this;
|
|
2321
|
-
/**
|
|
2322
|
-
* Returns a metadata object for class sap.ui.vbm.AnalyticMap.
|
|
2323
|
-
*/
|
|
2324
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2325
2325
|
/**
|
|
2326
2326
|
* Gets content of aggregation {@link #getRegions regions}.
|
|
2327
2327
|
*
|
|
@@ -2433,6 +2433,31 @@ declare namespace sap {
|
|
|
2433
2433
|
mSettings?: sap.ui.vbm.$AreaSettings
|
|
2434
2434
|
);
|
|
2435
2435
|
|
|
2436
|
+
/**
|
|
2437
|
+
* Creates a new subclass of class sap.ui.vbm.Area with name `sClassName` and enriches it with the information
|
|
2438
|
+
* contained in `oClassInfo`.
|
|
2439
|
+
*
|
|
2440
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoBase.extend}.
|
|
2441
|
+
*/
|
|
2442
|
+
static extend<T extends Record<string, unknown>>(
|
|
2443
|
+
/**
|
|
2444
|
+
* Name of the class being created
|
|
2445
|
+
*/
|
|
2446
|
+
sClassName: string,
|
|
2447
|
+
/**
|
|
2448
|
+
* Object literal with information about the class
|
|
2449
|
+
*/
|
|
2450
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Area>,
|
|
2451
|
+
/**
|
|
2452
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2453
|
+
* used by this class
|
|
2454
|
+
*/
|
|
2455
|
+
FNMetaImpl?: Function
|
|
2456
|
+
): Function;
|
|
2457
|
+
/**
|
|
2458
|
+
* Returns a metadata object for class sap.ui.vbm.Area.
|
|
2459
|
+
*/
|
|
2460
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2436
2461
|
/**
|
|
2437
2462
|
* Attaches event handler `fnFunction` to the {@link #event:edgeClick edgeClick} event of this `sap.ui.vbm.Area`.
|
|
2438
2463
|
*
|
|
@@ -2548,27 +2573,6 @@ declare namespace sap {
|
|
|
2548
2573
|
*/
|
|
2549
2574
|
oListener?: object
|
|
2550
2575
|
): this;
|
|
2551
|
-
/**
|
|
2552
|
-
* Creates a new subclass of class sap.ui.vbm.Area with name `sClassName` and enriches it with the information
|
|
2553
|
-
* contained in `oClassInfo`.
|
|
2554
|
-
*
|
|
2555
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoBase.extend}.
|
|
2556
|
-
*/
|
|
2557
|
-
static extend<T extends Record<string, unknown>>(
|
|
2558
|
-
/**
|
|
2559
|
-
* Name of the class being created
|
|
2560
|
-
*/
|
|
2561
|
-
sClassName: string,
|
|
2562
|
-
/**
|
|
2563
|
-
* Object literal with information about the class
|
|
2564
|
-
*/
|
|
2565
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Area>,
|
|
2566
|
-
/**
|
|
2567
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2568
|
-
* used by this class
|
|
2569
|
-
*/
|
|
2570
|
-
FNMetaImpl?: Function
|
|
2571
|
-
): Function;
|
|
2572
2576
|
/**
|
|
2573
2577
|
* Fires event {@link #event:edgeClick edgeClick} to attached listeners.
|
|
2574
2578
|
*/
|
|
@@ -2605,10 +2609,6 @@ declare namespace sap {
|
|
|
2605
2609
|
* The border color of the Area.
|
|
2606
2610
|
*/
|
|
2607
2611
|
getColorBorder(): string;
|
|
2608
|
-
/**
|
|
2609
|
-
* Returns a metadata object for class sap.ui.vbm.Area.
|
|
2610
|
-
*/
|
|
2611
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2612
2612
|
/**
|
|
2613
2613
|
* Gets current value of property {@link #getPosition position}.
|
|
2614
2614
|
*
|
|
@@ -2713,6 +2713,31 @@ declare namespace sap {
|
|
|
2713
2713
|
mSettings?: sap.ui.vbm.$AreasSettings
|
|
2714
2714
|
);
|
|
2715
2715
|
|
|
2716
|
+
/**
|
|
2717
|
+
* Creates a new subclass of class sap.ui.vbm.Areas with name `sClassName` and enriches it with the information
|
|
2718
|
+
* contained in `oClassInfo`.
|
|
2719
|
+
*
|
|
2720
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAggregation.extend}.
|
|
2721
|
+
*/
|
|
2722
|
+
static extend<T extends Record<string, unknown>>(
|
|
2723
|
+
/**
|
|
2724
|
+
* Name of the class being created
|
|
2725
|
+
*/
|
|
2726
|
+
sClassName: string,
|
|
2727
|
+
/**
|
|
2728
|
+
* Object literal with information about the class
|
|
2729
|
+
*/
|
|
2730
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Areas>,
|
|
2731
|
+
/**
|
|
2732
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2733
|
+
* used by this class
|
|
2734
|
+
*/
|
|
2735
|
+
FNMetaImpl?: Function
|
|
2736
|
+
): Function;
|
|
2737
|
+
/**
|
|
2738
|
+
* Returns a metadata object for class sap.ui.vbm.Areas.
|
|
2739
|
+
*/
|
|
2740
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2716
2741
|
/**
|
|
2717
2742
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
2718
2743
|
*/
|
|
@@ -2841,27 +2866,6 @@ declare namespace sap {
|
|
|
2841
2866
|
*/
|
|
2842
2867
|
oListener?: object
|
|
2843
2868
|
): this;
|
|
2844
|
-
/**
|
|
2845
|
-
* Creates a new subclass of class sap.ui.vbm.Areas with name `sClassName` and enriches it with the information
|
|
2846
|
-
* contained in `oClassInfo`.
|
|
2847
|
-
*
|
|
2848
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAggregation.extend}.
|
|
2849
|
-
*/
|
|
2850
|
-
static extend<T extends Record<string, unknown>>(
|
|
2851
|
-
/**
|
|
2852
|
-
* Name of the class being created
|
|
2853
|
-
*/
|
|
2854
|
-
sClassName: string,
|
|
2855
|
-
/**
|
|
2856
|
-
* Object literal with information about the class
|
|
2857
|
-
*/
|
|
2858
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Areas>,
|
|
2859
|
-
/**
|
|
2860
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2861
|
-
* used by this class
|
|
2862
|
-
*/
|
|
2863
|
-
FNMetaImpl?: Function
|
|
2864
|
-
): Function;
|
|
2865
2869
|
/**
|
|
2866
2870
|
* Fires event {@link #event:edgeClick edgeClick} to attached listeners.
|
|
2867
2871
|
*/
|
|
@@ -2906,10 +2910,6 @@ declare namespace sap {
|
|
|
2906
2910
|
* Area object aggregation
|
|
2907
2911
|
*/
|
|
2908
2912
|
getItems(): sap.ui.vbm.Area[];
|
|
2909
|
-
/**
|
|
2910
|
-
* Returns a metadata object for class sap.ui.vbm.Areas.
|
|
2911
|
-
*/
|
|
2912
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
2915
2915
|
*
|
|
@@ -3036,6 +3036,10 @@ declare namespace sap {
|
|
|
3036
3036
|
*/
|
|
3037
3037
|
FNMetaImpl?: Function
|
|
3038
3038
|
): Function;
|
|
3039
|
+
/**
|
|
3040
|
+
* Returns a metadata object for class sap.ui.vbm.Box.
|
|
3041
|
+
*/
|
|
3042
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3039
3043
|
/**
|
|
3040
3044
|
* Gets current value of property {@link #getColor color}.
|
|
3041
3045
|
*
|
|
@@ -3052,10 +3056,6 @@ declare namespace sap {
|
|
|
3052
3056
|
* Default value is `'RGB(255;0;0)'`.
|
|
3053
3057
|
*/
|
|
3054
3058
|
getColorBorder(): string;
|
|
3055
|
-
/**
|
|
3056
|
-
* Returns a metadata object for class sap.ui.vbm.Box.
|
|
3057
|
-
*/
|
|
3058
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3059
3059
|
/**
|
|
3060
3060
|
* Gets current value of property {@link #getPosition position}.
|
|
3061
3061
|
*
|
|
@@ -3168,19 +3168,6 @@ declare namespace sap {
|
|
|
3168
3168
|
mSettings?: sap.ui.vbm.$BoxesSettings
|
|
3169
3169
|
);
|
|
3170
3170
|
|
|
3171
|
-
/**
|
|
3172
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
3173
|
-
*/
|
|
3174
|
-
addItem(
|
|
3175
|
-
/**
|
|
3176
|
-
* The item to add; if empty, nothing is inserted
|
|
3177
|
-
*/
|
|
3178
|
-
oItem: sap.ui.vbm.Box
|
|
3179
|
-
): this;
|
|
3180
|
-
/**
|
|
3181
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
3182
|
-
*/
|
|
3183
|
-
destroyItems(): this;
|
|
3184
3171
|
/**
|
|
3185
3172
|
* Creates a new subclass of class sap.ui.vbm.Boxes with name `sClassName` and enriches it with the information
|
|
3186
3173
|
* contained in `oClassInfo`.
|
|
@@ -3202,16 +3189,29 @@ declare namespace sap {
|
|
|
3202
3189
|
*/
|
|
3203
3190
|
FNMetaImpl?: Function
|
|
3204
3191
|
): Function;
|
|
3192
|
+
/**
|
|
3193
|
+
* Returns a metadata object for class sap.ui.vbm.Boxes.
|
|
3194
|
+
*/
|
|
3195
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3196
|
+
/**
|
|
3197
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
3198
|
+
*/
|
|
3199
|
+
addItem(
|
|
3200
|
+
/**
|
|
3201
|
+
* The item to add; if empty, nothing is inserted
|
|
3202
|
+
*/
|
|
3203
|
+
oItem: sap.ui.vbm.Box
|
|
3204
|
+
): this;
|
|
3205
|
+
/**
|
|
3206
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
3207
|
+
*/
|
|
3208
|
+
destroyItems(): this;
|
|
3205
3209
|
/**
|
|
3206
3210
|
* Gets content of aggregation {@link #getItems items}.
|
|
3207
3211
|
*
|
|
3208
3212
|
* Box object aggregation
|
|
3209
3213
|
*/
|
|
3210
3214
|
getItems(): sap.ui.vbm.Box[];
|
|
3211
|
-
/**
|
|
3212
|
-
* Returns a metadata object for class sap.ui.vbm.Boxes.
|
|
3213
|
-
*/
|
|
3214
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
3217
3217
|
*
|
|
@@ -3360,6 +3360,10 @@ declare namespace sap {
|
|
|
3360
3360
|
*/
|
|
3361
3361
|
FNMetaImpl?: Function
|
|
3362
3362
|
): Function;
|
|
3363
|
+
/**
|
|
3364
|
+
* Returns a metadata object for class sap.ui.vbm.Circle.
|
|
3365
|
+
*/
|
|
3366
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3363
3367
|
/**
|
|
3364
3368
|
* Gets current value of property {@link #getColor color}.
|
|
3365
3369
|
*
|
|
@@ -3376,10 +3380,6 @@ declare namespace sap {
|
|
|
3376
3380
|
* Default value is `'RGB(0,0,0)'`.
|
|
3377
3381
|
*/
|
|
3378
3382
|
getColorBorder(): string;
|
|
3379
|
-
/**
|
|
3380
|
-
* Returns a metadata object for class sap.ui.vbm.Circle.
|
|
3381
|
-
*/
|
|
3382
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3383
3383
|
/**
|
|
3384
3384
|
* Gets current value of property {@link #getPosition position}.
|
|
3385
3385
|
*
|
|
@@ -3511,19 +3511,6 @@ declare namespace sap {
|
|
|
3511
3511
|
mSettings?: sap.ui.vbm.$CirclesSettings
|
|
3512
3512
|
);
|
|
3513
3513
|
|
|
3514
|
-
/**
|
|
3515
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
3516
|
-
*/
|
|
3517
|
-
addItem(
|
|
3518
|
-
/**
|
|
3519
|
-
* The item to add; if empty, nothing is inserted
|
|
3520
|
-
*/
|
|
3521
|
-
oItem: sap.ui.vbm.Circle
|
|
3522
|
-
): this;
|
|
3523
|
-
/**
|
|
3524
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
3525
|
-
*/
|
|
3526
|
-
destroyItems(): this;
|
|
3527
3514
|
/**
|
|
3528
3515
|
* Creates a new subclass of class sap.ui.vbm.Circles with name `sClassName` and enriches it with the information
|
|
3529
3516
|
* contained in `oClassInfo`.
|
|
@@ -3545,16 +3532,29 @@ declare namespace sap {
|
|
|
3545
3532
|
*/
|
|
3546
3533
|
FNMetaImpl?: Function
|
|
3547
3534
|
): Function;
|
|
3535
|
+
/**
|
|
3536
|
+
* Returns a metadata object for class sap.ui.vbm.Circles.
|
|
3537
|
+
*/
|
|
3538
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3539
|
+
/**
|
|
3540
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
3541
|
+
*/
|
|
3542
|
+
addItem(
|
|
3543
|
+
/**
|
|
3544
|
+
* The item to add; if empty, nothing is inserted
|
|
3545
|
+
*/
|
|
3546
|
+
oItem: sap.ui.vbm.Circle
|
|
3547
|
+
): this;
|
|
3548
|
+
/**
|
|
3549
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
3550
|
+
*/
|
|
3551
|
+
destroyItems(): this;
|
|
3548
3552
|
/**
|
|
3549
3553
|
* Gets content of aggregation {@link #getItems items}.
|
|
3550
3554
|
*
|
|
3551
3555
|
* circle object aggregation
|
|
3552
3556
|
*/
|
|
3553
3557
|
getItems(): sap.ui.vbm.Circle[];
|
|
3554
|
-
/**
|
|
3555
|
-
* Returns a metadata object for class sap.ui.vbm.Circles.
|
|
3556
|
-
*/
|
|
3557
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3558
3558
|
/**
|
|
3559
3559
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
3560
3560
|
*
|
|
@@ -3709,6 +3709,10 @@ declare namespace sap {
|
|
|
3709
3709
|
*/
|
|
3710
3710
|
FNMetaImpl?: Function
|
|
3711
3711
|
): Function;
|
|
3712
|
+
/**
|
|
3713
|
+
* Returns a metadata object for class sap.ui.vbm.Cluster.
|
|
3714
|
+
*/
|
|
3715
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3712
3716
|
/**
|
|
3713
3717
|
* Gets current value of property {@link #getColor color}.
|
|
3714
3718
|
*
|
|
@@ -3722,10 +3726,6 @@ declare namespace sap {
|
|
|
3722
3726
|
* this property. If no icon and no type is set then the icon for the semantic type 'inactive' is taken.
|
|
3723
3727
|
*/
|
|
3724
3728
|
getIcon(): string;
|
|
3725
|
-
/**
|
|
3726
|
-
* Returns a metadata object for class sap.ui.vbm.Cluster.
|
|
3727
|
-
*/
|
|
3728
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3729
3729
|
/**
|
|
3730
3730
|
* Gets current value of property {@link #getText text}.
|
|
3731
3731
|
*
|
|
@@ -3844,6 +3844,31 @@ declare namespace sap {
|
|
|
3844
3844
|
mSettings?: sap.ui.vbm.$ClusterBaseSettings
|
|
3845
3845
|
);
|
|
3846
3846
|
|
|
3847
|
+
/**
|
|
3848
|
+
* Creates a new subclass of class sap.ui.vbm.ClusterBase with name `sClassName` and enriches it with the
|
|
3849
|
+
* information contained in `oClassInfo`.
|
|
3850
|
+
*
|
|
3851
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3852
|
+
*/
|
|
3853
|
+
static extend<T extends Record<string, unknown>>(
|
|
3854
|
+
/**
|
|
3855
|
+
* Name of the class being created
|
|
3856
|
+
*/
|
|
3857
|
+
sClassName: string,
|
|
3858
|
+
/**
|
|
3859
|
+
* Object literal with information about the class
|
|
3860
|
+
*/
|
|
3861
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.ClusterBase>,
|
|
3862
|
+
/**
|
|
3863
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3864
|
+
* used by this class
|
|
3865
|
+
*/
|
|
3866
|
+
FNMetaImpl?: Function
|
|
3867
|
+
): Function;
|
|
3868
|
+
/**
|
|
3869
|
+
* Returns a metadata object for class sap.ui.vbm.ClusterBase.
|
|
3870
|
+
*/
|
|
3871
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3847
3872
|
/**
|
|
3848
3873
|
* Adds some clusterContainer to the aggregation {@link #getClusterContainers clusterContainers}.
|
|
3849
3874
|
*/
|
|
@@ -3990,27 +4015,6 @@ declare namespace sap {
|
|
|
3990
4015
|
*/
|
|
3991
4016
|
oListener?: object
|
|
3992
4017
|
): this;
|
|
3993
|
-
/**
|
|
3994
|
-
* Creates a new subclass of class sap.ui.vbm.ClusterBase with name `sClassName` and enriches it with the
|
|
3995
|
-
* information contained in `oClassInfo`.
|
|
3996
|
-
*
|
|
3997
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3998
|
-
*/
|
|
3999
|
-
static extend<T extends Record<string, unknown>>(
|
|
4000
|
-
/**
|
|
4001
|
-
* Name of the class being created
|
|
4002
|
-
*/
|
|
4003
|
-
sClassName: string,
|
|
4004
|
-
/**
|
|
4005
|
-
* Object literal with information about the class
|
|
4006
|
-
*/
|
|
4007
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.ClusterBase>,
|
|
4008
|
-
/**
|
|
4009
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4010
|
-
* used by this class
|
|
4011
|
-
*/
|
|
4012
|
-
FNMetaImpl?: Function
|
|
4013
|
-
): Function;
|
|
4014
4018
|
/**
|
|
4015
4019
|
* Fires event {@link #event:click click} to attached listeners.
|
|
4016
4020
|
*/
|
|
@@ -4079,10 +4083,6 @@ declare namespace sap {
|
|
|
4079
4083
|
* Hidden aggregation for cluster visualization controls
|
|
4080
4084
|
*/
|
|
4081
4085
|
getClusterVos(): sap.ui.core.Control[];
|
|
4082
|
-
/**
|
|
4083
|
-
* Returns a metadata object for class sap.ui.vbm.ClusterBase.
|
|
4084
|
-
*/
|
|
4085
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4086
4086
|
/**
|
|
4087
4087
|
* Gets current value of property {@link #getRule rule}.
|
|
4088
4088
|
*
|
|
@@ -4477,6 +4477,10 @@ declare namespace sap {
|
|
|
4477
4477
|
*/
|
|
4478
4478
|
FNMetaImpl?: Function
|
|
4479
4479
|
): Function;
|
|
4480
|
+
/**
|
|
4481
|
+
* Returns a metadata object for class sap.ui.vbm.ClusterDistance.
|
|
4482
|
+
*/
|
|
4483
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4480
4484
|
/**
|
|
4481
4485
|
* Gets current value of property {@link #getDistance distance}.
|
|
4482
4486
|
*
|
|
@@ -4487,10 +4491,6 @@ declare namespace sap {
|
|
|
4487
4491
|
* Default value is `"128"`.
|
|
4488
4492
|
*/
|
|
4489
4493
|
getDistance(): int;
|
|
4490
|
-
/**
|
|
4491
|
-
* Returns a metadata object for class sap.ui.vbm.ClusterDistance.
|
|
4492
|
-
*/
|
|
4493
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4494
4494
|
/**
|
|
4495
4495
|
* Sets a new value for property {@link #getDistance distance}.
|
|
4496
4496
|
*
|
|
@@ -4567,6 +4567,10 @@ declare namespace sap {
|
|
|
4567
4567
|
*/
|
|
4568
4568
|
FNMetaImpl?: Function
|
|
4569
4569
|
): Function;
|
|
4570
|
+
/**
|
|
4571
|
+
* Returns a metadata object for class sap.ui.vbm.ClusterGrid.
|
|
4572
|
+
*/
|
|
4573
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4570
4574
|
/**
|
|
4571
4575
|
* Gets current value of property {@link #getCellSpacing cellSpacing}.
|
|
4572
4576
|
*
|
|
@@ -4599,10 +4603,6 @@ declare namespace sap {
|
|
|
4599
4603
|
* Default value is `2`.
|
|
4600
4604
|
*/
|
|
4601
4605
|
getLimitTotal(): int;
|
|
4602
|
-
/**
|
|
4603
|
-
* Returns a metadata object for class sap.ui.vbm.ClusterGrid.
|
|
4604
|
-
*/
|
|
4605
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4606
4606
|
/**
|
|
4607
4607
|
* Gets current value of property {@link #getOffset offset}.
|
|
4608
4608
|
*
|
|
@@ -4766,6 +4766,10 @@ declare namespace sap {
|
|
|
4766
4766
|
*/
|
|
4767
4767
|
FNMetaImpl?: Function
|
|
4768
4768
|
): Function;
|
|
4769
|
+
/**
|
|
4770
|
+
* Returns a metadata object for class sap.ui.vbm.ClusterTree.
|
|
4771
|
+
*/
|
|
4772
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4769
4773
|
/**
|
|
4770
4774
|
* Gets current value of property {@link #getAnimateClusterSplit animateClusterSplit}.
|
|
4771
4775
|
*
|
|
@@ -4774,10 +4778,6 @@ declare namespace sap {
|
|
|
4774
4778
|
* Default value is `true`.
|
|
4775
4779
|
*/
|
|
4776
4780
|
getAnimateClusterSplit(): boolean;
|
|
4777
|
-
/**
|
|
4778
|
-
* Returns a metadata object for class sap.ui.vbm.ClusterTree.
|
|
4779
|
-
*/
|
|
4780
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4781
4781
|
/**
|
|
4782
4782
|
* Sets a new value for property {@link #getAnimateClusterSplit animateClusterSplit}.
|
|
4783
4783
|
*
|
|
@@ -4831,12 +4831,8 @@ declare namespace sap {
|
|
|
4831
4831
|
* initial settings for the new control
|
|
4832
4832
|
*/
|
|
4833
4833
|
mSettings?: sap.ui.vbm.$ContainerSettings
|
|
4834
|
-
);
|
|
4835
|
-
|
|
4836
|
-
/**
|
|
4837
|
-
* Destroys the item in the aggregation {@link #getItem item}.
|
|
4838
|
-
*/
|
|
4839
|
-
destroyItem(): this;
|
|
4834
|
+
);
|
|
4835
|
+
|
|
4840
4836
|
/**
|
|
4841
4837
|
* Creates a new subclass of class sap.ui.vbm.Container with name `sClassName` and enriches it with the
|
|
4842
4838
|
* information contained in `oClassInfo`.
|
|
@@ -4858,6 +4854,14 @@ declare namespace sap {
|
|
|
4858
4854
|
*/
|
|
4859
4855
|
FNMetaImpl?: Function
|
|
4860
4856
|
): Function;
|
|
4857
|
+
/**
|
|
4858
|
+
* Returns a metadata object for class sap.ui.vbm.Container.
|
|
4859
|
+
*/
|
|
4860
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4861
|
+
/**
|
|
4862
|
+
* Destroys the item in the aggregation {@link #getItem item}.
|
|
4863
|
+
*/
|
|
4864
|
+
destroyItem(): this;
|
|
4861
4865
|
/**
|
|
4862
4866
|
* Gets current value of property {@link #getAlignment alignment}.
|
|
4863
4867
|
*
|
|
@@ -4874,10 +4878,6 @@ declare namespace sap {
|
|
|
4874
4878
|
* The control that should be placed in the container.
|
|
4875
4879
|
*/
|
|
4876
4880
|
getItem(): sap.ui.core.Control;
|
|
4877
|
-
/**
|
|
4878
|
-
* Returns a metadata object for class sap.ui.vbm.Container.
|
|
4879
|
-
*/
|
|
4880
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4881
4881
|
/**
|
|
4882
4882
|
* Gets current value of property {@link #getPosition position}.
|
|
4883
4883
|
*
|
|
@@ -4959,19 +4959,6 @@ declare namespace sap {
|
|
|
4959
4959
|
mSettings?: sap.ui.vbm.$ContainersSettings
|
|
4960
4960
|
);
|
|
4961
4961
|
|
|
4962
|
-
/**
|
|
4963
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
4964
|
-
*/
|
|
4965
|
-
addItem(
|
|
4966
|
-
/**
|
|
4967
|
-
* The item to add; if empty, nothing is inserted
|
|
4968
|
-
*/
|
|
4969
|
-
oItem: sap.ui.vbm.Container
|
|
4970
|
-
): this;
|
|
4971
|
-
/**
|
|
4972
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
4973
|
-
*/
|
|
4974
|
-
destroyItems(): this;
|
|
4975
4962
|
/**
|
|
4976
4963
|
* Creates a new subclass of class sap.ui.vbm.Containers with name `sClassName` and enriches it with the
|
|
4977
4964
|
* information contained in `oClassInfo`.
|
|
@@ -4993,16 +4980,29 @@ declare namespace sap {
|
|
|
4993
4980
|
*/
|
|
4994
4981
|
FNMetaImpl?: Function
|
|
4995
4982
|
): Function;
|
|
4983
|
+
/**
|
|
4984
|
+
* Returns a metadata object for class sap.ui.vbm.Containers.
|
|
4985
|
+
*/
|
|
4986
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4987
|
+
/**
|
|
4988
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
4989
|
+
*/
|
|
4990
|
+
addItem(
|
|
4991
|
+
/**
|
|
4992
|
+
* The item to add; if empty, nothing is inserted
|
|
4993
|
+
*/
|
|
4994
|
+
oItem: sap.ui.vbm.Container
|
|
4995
|
+
): this;
|
|
4996
|
+
/**
|
|
4997
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
4998
|
+
*/
|
|
4999
|
+
destroyItems(): this;
|
|
4996
5000
|
/**
|
|
4997
5001
|
* Gets content of aggregation {@link #getItems items}.
|
|
4998
5002
|
*
|
|
4999
5003
|
* Container object aggregation
|
|
5000
5004
|
*/
|
|
5001
5005
|
getItems(): sap.ui.vbm.Container[];
|
|
5002
|
-
/**
|
|
5003
|
-
* Returns a metadata object for class sap.ui.vbm.Containers.
|
|
5004
|
-
*/
|
|
5005
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5006
5006
|
/**
|
|
5007
5007
|
* Checks for the provided `sap.ui.vbm.Container` in the aggregation {@link #getItems items}. and returns
|
|
5008
5008
|
* its index if found or -1 otherwise.
|
|
@@ -5240,6 +5240,31 @@ declare namespace sap {
|
|
|
5240
5240
|
mSettings?: sap.ui.vbm.$FeatureSettings
|
|
5241
5241
|
);
|
|
5242
5242
|
|
|
5243
|
+
/**
|
|
5244
|
+
* Creates a new subclass of class sap.ui.vbm.Feature with name `sClassName` and enriches it with the information
|
|
5245
|
+
* contained in `oClassInfo`.
|
|
5246
|
+
*
|
|
5247
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
5248
|
+
*/
|
|
5249
|
+
static extend<T extends Record<string, unknown>>(
|
|
5250
|
+
/**
|
|
5251
|
+
* Name of the class being created
|
|
5252
|
+
*/
|
|
5253
|
+
sClassName: string,
|
|
5254
|
+
/**
|
|
5255
|
+
* Object literal with information about the class
|
|
5256
|
+
*/
|
|
5257
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Feature>,
|
|
5258
|
+
/**
|
|
5259
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5260
|
+
* used by this class
|
|
5261
|
+
*/
|
|
5262
|
+
FNMetaImpl?: Function
|
|
5263
|
+
): Function;
|
|
5264
|
+
/**
|
|
5265
|
+
* Returns a metadata object for class sap.ui.vbm.Feature.
|
|
5266
|
+
*/
|
|
5267
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5243
5268
|
/**
|
|
5244
5269
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.vbm.Feature`.
|
|
5245
5270
|
*
|
|
@@ -5352,27 +5377,6 @@ declare namespace sap {
|
|
|
5352
5377
|
*/
|
|
5353
5378
|
oListener?: object
|
|
5354
5379
|
): this;
|
|
5355
|
-
/**
|
|
5356
|
-
* Creates a new subclass of class sap.ui.vbm.Feature with name `sClassName` and enriches it with the information
|
|
5357
|
-
* contained in `oClassInfo`.
|
|
5358
|
-
*
|
|
5359
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
5360
|
-
*/
|
|
5361
|
-
static extend<T extends Record<string, unknown>>(
|
|
5362
|
-
/**
|
|
5363
|
-
* Name of the class being created
|
|
5364
|
-
*/
|
|
5365
|
-
sClassName: string,
|
|
5366
|
-
/**
|
|
5367
|
-
* Object literal with information about the class
|
|
5368
|
-
*/
|
|
5369
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Feature>,
|
|
5370
|
-
/**
|
|
5371
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5372
|
-
* used by this class
|
|
5373
|
-
*/
|
|
5374
|
-
FNMetaImpl?: Function
|
|
5375
|
-
): Function;
|
|
5376
5380
|
/**
|
|
5377
5381
|
* Fires event {@link #event:click click} to attached listeners.
|
|
5378
5382
|
*/
|
|
@@ -5408,10 +5412,6 @@ declare namespace sap {
|
|
|
5408
5412
|
* The Feature ID. Used to match with the feature in the GeoJSON given to the parent (FeatureCollection).
|
|
5409
5413
|
*/
|
|
5410
5414
|
getFeatureId(): string;
|
|
5411
|
-
/**
|
|
5412
|
-
* Returns a metadata object for class sap.ui.vbm.Feature.
|
|
5413
|
-
*/
|
|
5414
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5415
5415
|
/**
|
|
5416
5416
|
* Open the context menu
|
|
5417
5417
|
*/
|
|
@@ -5508,6 +5508,31 @@ declare namespace sap {
|
|
|
5508
5508
|
mSettings?: sap.ui.vbm.$FeatureCollectionSettings
|
|
5509
5509
|
);
|
|
5510
5510
|
|
|
5511
|
+
/**
|
|
5512
|
+
* Creates a new subclass of class sap.ui.vbm.FeatureCollection with name `sClassName` and enriches it with
|
|
5513
|
+
* the information contained in `oClassInfo`.
|
|
5514
|
+
*
|
|
5515
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.GeoJsonLayer.extend}.
|
|
5516
|
+
*/
|
|
5517
|
+
static extend<T extends Record<string, unknown>>(
|
|
5518
|
+
/**
|
|
5519
|
+
* Name of the class being created
|
|
5520
|
+
*/
|
|
5521
|
+
sClassName: string,
|
|
5522
|
+
/**
|
|
5523
|
+
* Object literal with information about the class
|
|
5524
|
+
*/
|
|
5525
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.FeatureCollection>,
|
|
5526
|
+
/**
|
|
5527
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5528
|
+
* used by this class
|
|
5529
|
+
*/
|
|
5530
|
+
FNMetaImpl?: Function
|
|
5531
|
+
): Function;
|
|
5532
|
+
/**
|
|
5533
|
+
* Returns a metadata object for class sap.ui.vbm.FeatureCollection.
|
|
5534
|
+
*/
|
|
5535
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5511
5536
|
/**
|
|
5512
5537
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
5513
5538
|
*/
|
|
@@ -5637,27 +5662,6 @@ declare namespace sap {
|
|
|
5637
5662
|
*/
|
|
5638
5663
|
oListener?: object
|
|
5639
5664
|
): this;
|
|
5640
|
-
/**
|
|
5641
|
-
* Creates a new subclass of class sap.ui.vbm.FeatureCollection with name `sClassName` and enriches it with
|
|
5642
|
-
* the information contained in `oClassInfo`.
|
|
5643
|
-
*
|
|
5644
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.GeoJsonLayer.extend}.
|
|
5645
|
-
*/
|
|
5646
|
-
static extend<T extends Record<string, unknown>>(
|
|
5647
|
-
/**
|
|
5648
|
-
* Name of the class being created
|
|
5649
|
-
*/
|
|
5650
|
-
sClassName: string,
|
|
5651
|
-
/**
|
|
5652
|
-
* Object literal with information about the class
|
|
5653
|
-
*/
|
|
5654
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.FeatureCollection>,
|
|
5655
|
-
/**
|
|
5656
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5657
|
-
* used by this class
|
|
5658
|
-
*/
|
|
5659
|
-
FNMetaImpl?: Function
|
|
5660
|
-
): Function;
|
|
5661
5665
|
/**
|
|
5662
5666
|
* Fires event {@link #event:click click} to attached listeners.
|
|
5663
5667
|
*/
|
|
@@ -5701,10 +5705,6 @@ declare namespace sap {
|
|
|
5701
5705
|
* Feature object aggregation
|
|
5702
5706
|
*/
|
|
5703
5707
|
getItems(): sap.ui.vbm.Feature[];
|
|
5704
|
-
/**
|
|
5705
|
-
* Returns a metadata object for class sap.ui.vbm.FeatureCollection.
|
|
5706
|
-
*/
|
|
5707
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5708
5708
|
/**
|
|
5709
5709
|
* Checks for the provided `sap.ui.vbm.Feature` in the aggregation {@link #getItems items}. and returns
|
|
5710
5710
|
* its index if found or -1 otherwise.
|
|
@@ -5804,6 +5804,10 @@ declare namespace sap {
|
|
|
5804
5804
|
*/
|
|
5805
5805
|
FNMetaImpl?: Function
|
|
5806
5806
|
): Function;
|
|
5807
|
+
/**
|
|
5808
|
+
* Returns a metadata object for class sap.ui.vbm.GeoCircle.
|
|
5809
|
+
*/
|
|
5810
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5807
5811
|
/**
|
|
5808
5812
|
* Gets current value of property {@link #getColor color}.
|
|
5809
5813
|
*
|
|
@@ -5820,10 +5824,6 @@ declare namespace sap {
|
|
|
5820
5824
|
* Default value is `'RGB(0,0,0)'`.
|
|
5821
5825
|
*/
|
|
5822
5826
|
getColorBorder(): string;
|
|
5823
|
-
/**
|
|
5824
|
-
* Returns a metadata object for class sap.ui.vbm.GeoCircle.
|
|
5825
|
-
*/
|
|
5826
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5827
5827
|
/**
|
|
5828
5828
|
* Gets current value of property {@link #getPosition position}.
|
|
5829
5829
|
*
|
|
@@ -5959,19 +5959,6 @@ declare namespace sap {
|
|
|
5959
5959
|
mSettings?: sap.ui.vbm.$GeoCirclesSettings
|
|
5960
5960
|
);
|
|
5961
5961
|
|
|
5962
|
-
/**
|
|
5963
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
5964
|
-
*/
|
|
5965
|
-
addItem(
|
|
5966
|
-
/**
|
|
5967
|
-
* The item to add; if empty, nothing is inserted
|
|
5968
|
-
*/
|
|
5969
|
-
oItem: sap.ui.vbm.GeoCircle
|
|
5970
|
-
): this;
|
|
5971
|
-
/**
|
|
5972
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
5973
|
-
*/
|
|
5974
|
-
destroyItems(): this;
|
|
5975
5962
|
/**
|
|
5976
5963
|
* Creates a new subclass of class sap.ui.vbm.GeoCircles with name `sClassName` and enriches it with the
|
|
5977
5964
|
* information contained in `oClassInfo`.
|
|
@@ -5993,16 +5980,29 @@ declare namespace sap {
|
|
|
5993
5980
|
*/
|
|
5994
5981
|
FNMetaImpl?: Function
|
|
5995
5982
|
): Function;
|
|
5983
|
+
/**
|
|
5984
|
+
* Returns a metadata object for class sap.ui.vbm.GeoCircles.
|
|
5985
|
+
*/
|
|
5986
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5987
|
+
/**
|
|
5988
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
5989
|
+
*/
|
|
5990
|
+
addItem(
|
|
5991
|
+
/**
|
|
5992
|
+
* The item to add; if empty, nothing is inserted
|
|
5993
|
+
*/
|
|
5994
|
+
oItem: sap.ui.vbm.GeoCircle
|
|
5995
|
+
): this;
|
|
5996
|
+
/**
|
|
5997
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
5998
|
+
*/
|
|
5999
|
+
destroyItems(): this;
|
|
5996
6000
|
/**
|
|
5997
6001
|
* Gets content of aggregation {@link #getItems items}.
|
|
5998
6002
|
*
|
|
5999
6003
|
* GeoCircle element aggregation
|
|
6000
6004
|
*/
|
|
6001
6005
|
getItems(): sap.ui.vbm.GeoCircle[];
|
|
6002
|
-
/**
|
|
6003
|
-
* Returns a metadata object for class sap.ui.vbm.GeoCircles.
|
|
6004
|
-
*/
|
|
6005
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6006
6006
|
/**
|
|
6007
6007
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
6008
6008
|
*
|
|
@@ -6139,6 +6139,31 @@ declare namespace sap {
|
|
|
6139
6139
|
mSettings?: sap.ui.vbm.$GeoJsonLayerSettings
|
|
6140
6140
|
);
|
|
6141
6141
|
|
|
6142
|
+
/**
|
|
6143
|
+
* Creates a new subclass of class sap.ui.vbm.GeoJsonLayer with name `sClassName` and enriches it with the
|
|
6144
|
+
* information contained in `oClassInfo`.
|
|
6145
|
+
*
|
|
6146
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
6147
|
+
*/
|
|
6148
|
+
static extend<T extends Record<string, unknown>>(
|
|
6149
|
+
/**
|
|
6150
|
+
* Name of the class being created
|
|
6151
|
+
*/
|
|
6152
|
+
sClassName: string,
|
|
6153
|
+
/**
|
|
6154
|
+
* Object literal with information about the class
|
|
6155
|
+
*/
|
|
6156
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.GeoJsonLayer>,
|
|
6157
|
+
/**
|
|
6158
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6159
|
+
* used by this class
|
|
6160
|
+
*/
|
|
6161
|
+
FNMetaImpl?: Function
|
|
6162
|
+
): Function;
|
|
6163
|
+
/**
|
|
6164
|
+
* Returns a metadata object for class sap.ui.vbm.GeoJsonLayer.
|
|
6165
|
+
*/
|
|
6166
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6142
6167
|
/**
|
|
6143
6168
|
* Add GeoJSON object to the layer
|
|
6144
6169
|
*/
|
|
@@ -6277,27 +6302,6 @@ declare namespace sap {
|
|
|
6277
6302
|
*/
|
|
6278
6303
|
oListener?: object
|
|
6279
6304
|
): this;
|
|
6280
|
-
/**
|
|
6281
|
-
* Creates a new subclass of class sap.ui.vbm.GeoJsonLayer with name `sClassName` and enriches it with the
|
|
6282
|
-
* information contained in `oClassInfo`.
|
|
6283
|
-
*
|
|
6284
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
6285
|
-
*/
|
|
6286
|
-
static extend<T extends Record<string, unknown>>(
|
|
6287
|
-
/**
|
|
6288
|
-
* Name of the class being created
|
|
6289
|
-
*/
|
|
6290
|
-
sClassName: string,
|
|
6291
|
-
/**
|
|
6292
|
-
* Object literal with information about the class
|
|
6293
|
-
*/
|
|
6294
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.GeoJsonLayer>,
|
|
6295
|
-
/**
|
|
6296
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6297
|
-
* used by this class
|
|
6298
|
-
*/
|
|
6299
|
-
FNMetaImpl?: Function
|
|
6300
|
-
): Function;
|
|
6301
6305
|
/**
|
|
6302
6306
|
* Fires event {@link #event:click click} to attached listeners.
|
|
6303
6307
|
*/
|
|
@@ -6372,10 +6376,6 @@ declare namespace sap {
|
|
|
6372
6376
|
* Feature object aggregation
|
|
6373
6377
|
*/
|
|
6374
6378
|
getItems(): sap.ui.vbm.Feature[];
|
|
6375
|
-
/**
|
|
6376
|
-
* Returns a metadata object for class sap.ui.vbm.GeoJsonLayer.
|
|
6377
|
-
*/
|
|
6378
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6379
6379
|
/**
|
|
6380
6380
|
* Gets current value of property {@link #getSrcURL srcURL}.
|
|
6381
6381
|
*
|
|
@@ -6571,15 +6571,40 @@ declare namespace sap {
|
|
|
6571
6571
|
*/
|
|
6572
6572
|
constructor(
|
|
6573
6573
|
/**
|
|
6574
|
-
* id for the new control, generated automatically if no id is given
|
|
6574
|
+
* id for the new control, generated automatically if no id is given
|
|
6575
|
+
*/
|
|
6576
|
+
sId?: string,
|
|
6577
|
+
/**
|
|
6578
|
+
* initial settings for the new control
|
|
6579
|
+
*/
|
|
6580
|
+
mSettings?: sap.ui.vbm.$GeoMapSettings
|
|
6581
|
+
);
|
|
6582
|
+
|
|
6583
|
+
/**
|
|
6584
|
+
* Creates a new subclass of class sap.ui.vbm.GeoMap with name `sClassName` and enriches it with the information
|
|
6585
|
+
* contained in `oClassInfo`.
|
|
6586
|
+
*
|
|
6587
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VBI.extend}.
|
|
6588
|
+
*/
|
|
6589
|
+
static extend<T extends Record<string, unknown>>(
|
|
6590
|
+
/**
|
|
6591
|
+
* Name of the class being created
|
|
6575
6592
|
*/
|
|
6576
|
-
|
|
6593
|
+
sClassName: string,
|
|
6577
6594
|
/**
|
|
6578
|
-
*
|
|
6595
|
+
* Object literal with information about the class
|
|
6579
6596
|
*/
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6597
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.GeoMap>,
|
|
6598
|
+
/**
|
|
6599
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6600
|
+
* used by this class
|
|
6601
|
+
*/
|
|
6602
|
+
FNMetaImpl?: Function
|
|
6603
|
+
): Function;
|
|
6604
|
+
/**
|
|
6605
|
+
* Returns a metadata object for class sap.ui.vbm.GeoMap.
|
|
6606
|
+
*/
|
|
6607
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6583
6608
|
/**
|
|
6584
6609
|
* Adds some cluster to the aggregation {@link #getClusters clusters}.
|
|
6585
6610
|
*/
|
|
@@ -7164,27 +7189,6 @@ declare namespace sap {
|
|
|
7164
7189
|
*/
|
|
7165
7190
|
oListener?: object
|
|
7166
7191
|
): this;
|
|
7167
|
-
/**
|
|
7168
|
-
* Creates a new subclass of class sap.ui.vbm.GeoMap with name `sClassName` and enriches it with the information
|
|
7169
|
-
* contained in `oClassInfo`.
|
|
7170
|
-
*
|
|
7171
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VBI.extend}.
|
|
7172
|
-
*/
|
|
7173
|
-
static extend<T extends Record<string, unknown>>(
|
|
7174
|
-
/**
|
|
7175
|
-
* Name of the class being created
|
|
7176
|
-
*/
|
|
7177
|
-
sClassName: string,
|
|
7178
|
-
/**
|
|
7179
|
-
* Object literal with information about the class
|
|
7180
|
-
*/
|
|
7181
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.GeoMap>,
|
|
7182
|
-
/**
|
|
7183
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7184
|
-
* used by this class
|
|
7185
|
-
*/
|
|
7186
|
-
FNMetaImpl?: Function
|
|
7187
|
-
): Function;
|
|
7188
7192
|
/**
|
|
7189
7193
|
* Fires event {@link #event:centerChanged centerChanged} to attached listeners.
|
|
7190
7194
|
*/
|
|
@@ -7492,10 +7496,6 @@ declare namespace sap {
|
|
|
7492
7496
|
* of the maps and the servers that can be used to request the map tiles.
|
|
7493
7497
|
*/
|
|
7494
7498
|
getMapConfiguration(): object;
|
|
7495
|
-
/**
|
|
7496
|
-
* Returns a metadata object for class sap.ui.vbm.GeoMap.
|
|
7497
|
-
*/
|
|
7498
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7499
7499
|
/**
|
|
7500
7500
|
* Gets current value of property {@link #getNavcontrolVisible navcontrolVisible}.
|
|
7501
7501
|
*
|
|
@@ -8131,19 +8131,6 @@ declare namespace sap {
|
|
|
8131
8131
|
mSettings?: sap.ui.vbm.$HeatmapSettings
|
|
8132
8132
|
);
|
|
8133
8133
|
|
|
8134
|
-
/**
|
|
8135
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
8136
|
-
*/
|
|
8137
|
-
addItem(
|
|
8138
|
-
/**
|
|
8139
|
-
* The item to add; if empty, nothing is inserted
|
|
8140
|
-
*/
|
|
8141
|
-
oItem: sap.ui.vbm.HeatPoint
|
|
8142
|
-
): this;
|
|
8143
|
-
/**
|
|
8144
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
8145
|
-
*/
|
|
8146
|
-
destroyItems(): this;
|
|
8147
8134
|
/**
|
|
8148
8135
|
* Creates a new subclass of class sap.ui.vbm.Heatmap with name `sClassName` and enriches it with the information
|
|
8149
8136
|
* contained in `oClassInfo`.
|
|
@@ -8165,6 +8152,23 @@ declare namespace sap {
|
|
|
8165
8152
|
*/
|
|
8166
8153
|
FNMetaImpl?: Function
|
|
8167
8154
|
): Function;
|
|
8155
|
+
/**
|
|
8156
|
+
* Returns a metadata object for class sap.ui.vbm.Heatmap.
|
|
8157
|
+
*/
|
|
8158
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8159
|
+
/**
|
|
8160
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
8161
|
+
*/
|
|
8162
|
+
addItem(
|
|
8163
|
+
/**
|
|
8164
|
+
* The item to add; if empty, nothing is inserted
|
|
8165
|
+
*/
|
|
8166
|
+
oItem: sap.ui.vbm.HeatPoint
|
|
8167
|
+
): this;
|
|
8168
|
+
/**
|
|
8169
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
8170
|
+
*/
|
|
8171
|
+
destroyItems(): this;
|
|
8168
8172
|
/**
|
|
8169
8173
|
* Gets current value of property {@link #getAlphaExponent alphaExponent}.
|
|
8170
8174
|
*
|
|
@@ -8215,10 +8219,6 @@ declare namespace sap {
|
|
|
8215
8219
|
* HeatPoint object aggregation
|
|
8216
8220
|
*/
|
|
8217
8221
|
getItems(): sap.ui.vbm.HeatPoint[];
|
|
8218
|
-
/**
|
|
8219
|
-
* Returns a metadata object for class sap.ui.vbm.Heatmap.
|
|
8220
|
-
*/
|
|
8221
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8222
8222
|
/**
|
|
8223
8223
|
* Gets current value of property {@link #getOpacity opacity}.
|
|
8224
8224
|
*
|
|
@@ -8559,6 +8559,31 @@ declare namespace sap {
|
|
|
8559
8559
|
mSettings?: sap.ui.vbm.$LegendSettings
|
|
8560
8560
|
);
|
|
8561
8561
|
|
|
8562
|
+
/**
|
|
8563
|
+
* Creates a new subclass of class sap.ui.vbm.Legend with name `sClassName` and enriches it with the information
|
|
8564
|
+
* contained in `oClassInfo`.
|
|
8565
|
+
*
|
|
8566
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
8567
|
+
*/
|
|
8568
|
+
static extend<T extends Record<string, unknown>>(
|
|
8569
|
+
/**
|
|
8570
|
+
* Name of the class being created
|
|
8571
|
+
*/
|
|
8572
|
+
sClassName: string,
|
|
8573
|
+
/**
|
|
8574
|
+
* Object literal with information about the class
|
|
8575
|
+
*/
|
|
8576
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Legend>,
|
|
8577
|
+
/**
|
|
8578
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8579
|
+
* used by this class
|
|
8580
|
+
*/
|
|
8581
|
+
FNMetaImpl?: Function
|
|
8582
|
+
): Function;
|
|
8583
|
+
/**
|
|
8584
|
+
* Returns a metadata object for class sap.ui.vbm.Legend.
|
|
8585
|
+
*/
|
|
8586
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8562
8587
|
/**
|
|
8563
8588
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
8564
8589
|
*/
|
|
@@ -8628,27 +8653,6 @@ declare namespace sap {
|
|
|
8628
8653
|
*/
|
|
8629
8654
|
oListener?: object
|
|
8630
8655
|
): this;
|
|
8631
|
-
/**
|
|
8632
|
-
* Creates a new subclass of class sap.ui.vbm.Legend with name `sClassName` and enriches it with the information
|
|
8633
|
-
* contained in `oClassInfo`.
|
|
8634
|
-
*
|
|
8635
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
8636
|
-
*/
|
|
8637
|
-
static extend<T extends Record<string, unknown>>(
|
|
8638
|
-
/**
|
|
8639
|
-
* Name of the class being created
|
|
8640
|
-
*/
|
|
8641
|
-
sClassName: string,
|
|
8642
|
-
/**
|
|
8643
|
-
* Object literal with information about the class
|
|
8644
|
-
*/
|
|
8645
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Legend>,
|
|
8646
|
-
/**
|
|
8647
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8648
|
-
* used by this class
|
|
8649
|
-
*/
|
|
8650
|
-
FNMetaImpl?: Function
|
|
8651
|
-
): Function;
|
|
8652
8656
|
/**
|
|
8653
8657
|
* Fires event {@link #event:click click} to attached listeners.
|
|
8654
8658
|
*/
|
|
@@ -8697,10 +8701,6 @@ declare namespace sap {
|
|
|
8697
8701
|
* LegendItem object aggregation
|
|
8698
8702
|
*/
|
|
8699
8703
|
getItems(): sap.ui.vbm.LegendItem[];
|
|
8700
|
-
/**
|
|
8701
|
-
* Returns a metadata object for class sap.ui.vbm.Legend.
|
|
8702
|
-
*/
|
|
8703
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8704
8704
|
/**
|
|
8705
8705
|
* Checks for the provided `sap.ui.vbm.LegendItem` in the aggregation {@link #getItems items}. and returns
|
|
8706
8706
|
* its index if found or -1 otherwise.
|
|
@@ -8794,6 +8794,31 @@ declare namespace sap {
|
|
|
8794
8794
|
mSettings?: sap.ui.vbm.$LegendItemSettings
|
|
8795
8795
|
);
|
|
8796
8796
|
|
|
8797
|
+
/**
|
|
8798
|
+
* Creates a new subclass of class sap.ui.vbm.LegendItem with name `sClassName` and enriches it with the
|
|
8799
|
+
* information contained in `oClassInfo`.
|
|
8800
|
+
*
|
|
8801
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
8802
|
+
*/
|
|
8803
|
+
static extend<T extends Record<string, unknown>>(
|
|
8804
|
+
/**
|
|
8805
|
+
* Name of the class being created
|
|
8806
|
+
*/
|
|
8807
|
+
sClassName: string,
|
|
8808
|
+
/**
|
|
8809
|
+
* Object literal with information about the class
|
|
8810
|
+
*/
|
|
8811
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.LegendItem>,
|
|
8812
|
+
/**
|
|
8813
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8814
|
+
* used by this class
|
|
8815
|
+
*/
|
|
8816
|
+
FNMetaImpl?: Function
|
|
8817
|
+
): Function;
|
|
8818
|
+
/**
|
|
8819
|
+
* Returns a metadata object for class sap.ui.vbm.LegendItem.
|
|
8820
|
+
*/
|
|
8821
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8797
8822
|
/**
|
|
8798
8823
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.vbm.LegendItem`.
|
|
8799
8824
|
*
|
|
@@ -8850,27 +8875,6 @@ declare namespace sap {
|
|
|
8850
8875
|
*/
|
|
8851
8876
|
oListener?: object
|
|
8852
8877
|
): this;
|
|
8853
|
-
/**
|
|
8854
|
-
* Creates a new subclass of class sap.ui.vbm.LegendItem with name `sClassName` and enriches it with the
|
|
8855
|
-
* information contained in `oClassInfo`.
|
|
8856
|
-
*
|
|
8857
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
8858
|
-
*/
|
|
8859
|
-
static extend<T extends Record<string, unknown>>(
|
|
8860
|
-
/**
|
|
8861
|
-
* Name of the class being created
|
|
8862
|
-
*/
|
|
8863
|
-
sClassName: string,
|
|
8864
|
-
/**
|
|
8865
|
-
* Object literal with information about the class
|
|
8866
|
-
*/
|
|
8867
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.LegendItem>,
|
|
8868
|
-
/**
|
|
8869
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8870
|
-
* used by this class
|
|
8871
|
-
*/
|
|
8872
|
-
FNMetaImpl?: Function
|
|
8873
|
-
): Function;
|
|
8874
8878
|
/**
|
|
8875
8879
|
* Fires event {@link #event:click click} to attached listeners.
|
|
8876
8880
|
*/
|
|
@@ -8915,10 +8919,6 @@ declare namespace sap {
|
|
|
8915
8919
|
* The image for the legend marker.
|
|
8916
8920
|
*/
|
|
8917
8921
|
getImage(): string;
|
|
8918
|
-
/**
|
|
8919
|
-
* Returns a metadata object for class sap.ui.vbm.LegendItem.
|
|
8920
|
-
*/
|
|
8921
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8922
8922
|
/**
|
|
8923
8923
|
* Gets current value of property {@link #getSemanticSpotType semanticSpotType}.
|
|
8924
8924
|
*
|
|
@@ -9026,19 +9026,6 @@ declare namespace sap {
|
|
|
9026
9026
|
mSettings?: sap.ui.vbm.$PieSettings
|
|
9027
9027
|
);
|
|
9028
9028
|
|
|
9029
|
-
/**
|
|
9030
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
9031
|
-
*/
|
|
9032
|
-
addItem(
|
|
9033
|
-
/**
|
|
9034
|
-
* The item to add; if empty, nothing is inserted
|
|
9035
|
-
*/
|
|
9036
|
-
oItem: sap.ui.vbm.PieItem
|
|
9037
|
-
): this;
|
|
9038
|
-
/**
|
|
9039
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
9040
|
-
*/
|
|
9041
|
-
destroyItems(): this;
|
|
9042
9029
|
/**
|
|
9043
9030
|
* Creates a new subclass of class sap.ui.vbm.Pie with name `sClassName` and enriches it with the information
|
|
9044
9031
|
* contained in `oClassInfo`.
|
|
@@ -9060,16 +9047,29 @@ declare namespace sap {
|
|
|
9060
9047
|
*/
|
|
9061
9048
|
FNMetaImpl?: Function
|
|
9062
9049
|
): Function;
|
|
9050
|
+
/**
|
|
9051
|
+
* Returns a metadata object for class sap.ui.vbm.Pie.
|
|
9052
|
+
*/
|
|
9053
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9054
|
+
/**
|
|
9055
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
9056
|
+
*/
|
|
9057
|
+
addItem(
|
|
9058
|
+
/**
|
|
9059
|
+
* The item to add; if empty, nothing is inserted
|
|
9060
|
+
*/
|
|
9061
|
+
oItem: sap.ui.vbm.PieItem
|
|
9062
|
+
): this;
|
|
9063
|
+
/**
|
|
9064
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
9065
|
+
*/
|
|
9066
|
+
destroyItems(): this;
|
|
9063
9067
|
/**
|
|
9064
9068
|
* Gets content of aggregation {@link #getItems items}.
|
|
9065
9069
|
*
|
|
9066
9070
|
* PieItem object aggregation. A PieItem holds the data for one slice in a Pie.
|
|
9067
9071
|
*/
|
|
9068
9072
|
getItems(): sap.ui.vbm.PieItem[];
|
|
9069
|
-
/**
|
|
9070
|
-
* Returns a metadata object for class sap.ui.vbm.Pie.
|
|
9071
|
-
*/
|
|
9072
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9073
9073
|
/**
|
|
9074
9074
|
* Gets current value of property {@link #getPosition position}.
|
|
9075
9075
|
*
|
|
@@ -9186,6 +9186,31 @@ declare namespace sap {
|
|
|
9186
9186
|
mSettings?: sap.ui.vbm.$PieItemSettings
|
|
9187
9187
|
);
|
|
9188
9188
|
|
|
9189
|
+
/**
|
|
9190
|
+
* Creates a new subclass of class sap.ui.vbm.PieItem with name `sClassName` and enriches it with the information
|
|
9191
|
+
* contained in `oClassInfo`.
|
|
9192
|
+
*
|
|
9193
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
9194
|
+
*/
|
|
9195
|
+
static extend<T extends Record<string, unknown>>(
|
|
9196
|
+
/**
|
|
9197
|
+
* Name of the class being created
|
|
9198
|
+
*/
|
|
9199
|
+
sClassName: string,
|
|
9200
|
+
/**
|
|
9201
|
+
* Object literal with information about the class
|
|
9202
|
+
*/
|
|
9203
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.PieItem>,
|
|
9204
|
+
/**
|
|
9205
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9206
|
+
* used by this class
|
|
9207
|
+
*/
|
|
9208
|
+
FNMetaImpl?: Function
|
|
9209
|
+
): Function;
|
|
9210
|
+
/**
|
|
9211
|
+
* Returns a metadata object for class sap.ui.vbm.PieItem.
|
|
9212
|
+
*/
|
|
9213
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9189
9214
|
/**
|
|
9190
9215
|
* @deprecated - This event should no longer be used. Click event from Pie and Pies now includes Pie Item
|
|
9191
9216
|
* index when event occurs.
|
|
@@ -9233,41 +9258,20 @@ declare namespace sap {
|
|
|
9233
9258
|
* @deprecated - This event should no longer be used. Click event from Pie and Pies now includes Pie Item
|
|
9234
9259
|
* index when event occurs.
|
|
9235
9260
|
*
|
|
9236
|
-
* Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.vbm.PieItem`.
|
|
9237
|
-
*
|
|
9238
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
9239
|
-
*/
|
|
9240
|
-
detachClick(
|
|
9241
|
-
/**
|
|
9242
|
-
* The function to be called, when the event occurs
|
|
9243
|
-
*/
|
|
9244
|
-
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9245
|
-
/**
|
|
9246
|
-
* Context object on which the given function had to be called
|
|
9247
|
-
*/
|
|
9248
|
-
oListener?: object
|
|
9249
|
-
): this;
|
|
9250
|
-
/**
|
|
9251
|
-
* Creates a new subclass of class sap.ui.vbm.PieItem with name `sClassName` and enriches it with the information
|
|
9252
|
-
* contained in `oClassInfo`.
|
|
9261
|
+
* Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.vbm.PieItem`.
|
|
9253
9262
|
*
|
|
9254
|
-
*
|
|
9263
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
9255
9264
|
*/
|
|
9256
|
-
|
|
9257
|
-
/**
|
|
9258
|
-
* Name of the class being created
|
|
9259
|
-
*/
|
|
9260
|
-
sClassName: string,
|
|
9265
|
+
detachClick(
|
|
9261
9266
|
/**
|
|
9262
|
-
*
|
|
9267
|
+
* The function to be called, when the event occurs
|
|
9263
9268
|
*/
|
|
9264
|
-
|
|
9269
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9265
9270
|
/**
|
|
9266
|
-
*
|
|
9267
|
-
* used by this class
|
|
9271
|
+
* Context object on which the given function had to be called
|
|
9268
9272
|
*/
|
|
9269
|
-
|
|
9270
|
-
):
|
|
9273
|
+
oListener?: object
|
|
9274
|
+
): this;
|
|
9271
9275
|
/**
|
|
9272
9276
|
* @deprecated - This event should no longer be used. Click event from Pie and Pies now includes Pie Item
|
|
9273
9277
|
* index when event occurs.
|
|
@@ -9286,10 +9290,6 @@ declare namespace sap {
|
|
|
9286
9290
|
* The color of the Pie Item.
|
|
9287
9291
|
*/
|
|
9288
9292
|
getColor(): string;
|
|
9289
|
-
/**
|
|
9290
|
-
* Returns a metadata object for class sap.ui.vbm.PieItem.
|
|
9291
|
-
*/
|
|
9292
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9293
9293
|
/**
|
|
9294
9294
|
* Gets current value of property {@link #getName name}.
|
|
9295
9295
|
*
|
|
@@ -9381,19 +9381,6 @@ declare namespace sap {
|
|
|
9381
9381
|
mSettings?: sap.ui.vbm.$PiesSettings
|
|
9382
9382
|
);
|
|
9383
9383
|
|
|
9384
|
-
/**
|
|
9385
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
9386
|
-
*/
|
|
9387
|
-
addItem(
|
|
9388
|
-
/**
|
|
9389
|
-
* The item to add; if empty, nothing is inserted
|
|
9390
|
-
*/
|
|
9391
|
-
oItem: sap.ui.vbm.Pie
|
|
9392
|
-
): this;
|
|
9393
|
-
/**
|
|
9394
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
9395
|
-
*/
|
|
9396
|
-
destroyItems(): this;
|
|
9397
9384
|
/**
|
|
9398
9385
|
* Creates a new subclass of class sap.ui.vbm.Pies with name `sClassName` and enriches it with the information
|
|
9399
9386
|
* contained in `oClassInfo`.
|
|
@@ -9415,16 +9402,29 @@ declare namespace sap {
|
|
|
9415
9402
|
*/
|
|
9416
9403
|
FNMetaImpl?: Function
|
|
9417
9404
|
): Function;
|
|
9405
|
+
/**
|
|
9406
|
+
* Returns a metadata object for class sap.ui.vbm.Pies.
|
|
9407
|
+
*/
|
|
9408
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9409
|
+
/**
|
|
9410
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
9411
|
+
*/
|
|
9412
|
+
addItem(
|
|
9413
|
+
/**
|
|
9414
|
+
* The item to add; if empty, nothing is inserted
|
|
9415
|
+
*/
|
|
9416
|
+
oItem: sap.ui.vbm.Pie
|
|
9417
|
+
): this;
|
|
9418
|
+
/**
|
|
9419
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
9420
|
+
*/
|
|
9421
|
+
destroyItems(): this;
|
|
9418
9422
|
/**
|
|
9419
9423
|
* Gets content of aggregation {@link #getItems items}.
|
|
9420
9424
|
*
|
|
9421
9425
|
* Pie object aggregation
|
|
9422
9426
|
*/
|
|
9423
9427
|
getItems(): sap.ui.vbm.Pie[];
|
|
9424
|
-
/**
|
|
9425
|
-
* Returns a metadata object for class sap.ui.vbm.Pies.
|
|
9426
|
-
*/
|
|
9427
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9428
9428
|
/**
|
|
9429
9429
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
9430
9430
|
*
|
|
@@ -9551,6 +9551,31 @@ declare namespace sap {
|
|
|
9551
9551
|
mSettings?: sap.ui.vbm.$RegionSettings
|
|
9552
9552
|
);
|
|
9553
9553
|
|
|
9554
|
+
/**
|
|
9555
|
+
* Creates a new subclass of class sap.ui.vbm.Region with name `sClassName` and enriches it with the information
|
|
9556
|
+
* contained in `oClassInfo`.
|
|
9557
|
+
*
|
|
9558
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
9559
|
+
*/
|
|
9560
|
+
static extend<T extends Record<string, unknown>>(
|
|
9561
|
+
/**
|
|
9562
|
+
* Name of the class being created
|
|
9563
|
+
*/
|
|
9564
|
+
sClassName: string,
|
|
9565
|
+
/**
|
|
9566
|
+
* Object literal with information about the class
|
|
9567
|
+
*/
|
|
9568
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Region>,
|
|
9569
|
+
/**
|
|
9570
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9571
|
+
* used by this class
|
|
9572
|
+
*/
|
|
9573
|
+
FNMetaImpl?: Function
|
|
9574
|
+
): Function;
|
|
9575
|
+
/**
|
|
9576
|
+
* Returns a metadata object for class sap.ui.vbm.Region.
|
|
9577
|
+
*/
|
|
9578
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9554
9579
|
/**
|
|
9555
9580
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.vbm.Region`.
|
|
9556
9581
|
*
|
|
@@ -9663,27 +9688,6 @@ declare namespace sap {
|
|
|
9663
9688
|
*/
|
|
9664
9689
|
oListener?: object
|
|
9665
9690
|
): this;
|
|
9666
|
-
/**
|
|
9667
|
-
* Creates a new subclass of class sap.ui.vbm.Region with name `sClassName` and enriches it with the information
|
|
9668
|
-
* contained in `oClassInfo`.
|
|
9669
|
-
*
|
|
9670
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
9671
|
-
*/
|
|
9672
|
-
static extend<T extends Record<string, unknown>>(
|
|
9673
|
-
/**
|
|
9674
|
-
* Name of the class being created
|
|
9675
|
-
*/
|
|
9676
|
-
sClassName: string,
|
|
9677
|
-
/**
|
|
9678
|
-
* Object literal with information about the class
|
|
9679
|
-
*/
|
|
9680
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Region>,
|
|
9681
|
-
/**
|
|
9682
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9683
|
-
* used by this class
|
|
9684
|
-
*/
|
|
9685
|
-
FNMetaImpl?: Function
|
|
9686
|
-
): Function;
|
|
9687
9691
|
/**
|
|
9688
9692
|
* Fires event {@link #event:click click} to attached listeners.
|
|
9689
9693
|
*/
|
|
@@ -9759,10 +9763,6 @@ declare namespace sap {
|
|
|
9759
9763
|
* Default value is `None`.
|
|
9760
9764
|
*/
|
|
9761
9765
|
getLabelType(): sap.ui.vbm.SemanticType;
|
|
9762
|
-
/**
|
|
9763
|
-
* Returns a metadata object for class sap.ui.vbm.Region.
|
|
9764
|
-
*/
|
|
9765
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9766
9766
|
/**
|
|
9767
9767
|
* Gets current value of property {@link #getSelect select}.
|
|
9768
9768
|
*
|
|
@@ -10053,6 +10053,31 @@ declare namespace sap {
|
|
|
10053
10053
|
mSettings?: sap.ui.vbm.$RouteSettings
|
|
10054
10054
|
);
|
|
10055
10055
|
|
|
10056
|
+
/**
|
|
10057
|
+
* Creates a new subclass of class sap.ui.vbm.Route with name `sClassName` and enriches it with the information
|
|
10058
|
+
* contained in `oClassInfo`.
|
|
10059
|
+
*
|
|
10060
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoBase.extend}.
|
|
10061
|
+
*/
|
|
10062
|
+
static extend<T extends Record<string, unknown>>(
|
|
10063
|
+
/**
|
|
10064
|
+
* Name of the class being created
|
|
10065
|
+
*/
|
|
10066
|
+
sClassName: string,
|
|
10067
|
+
/**
|
|
10068
|
+
* Object literal with information about the class
|
|
10069
|
+
*/
|
|
10070
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Route>,
|
|
10071
|
+
/**
|
|
10072
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10073
|
+
* used by this class
|
|
10074
|
+
*/
|
|
10075
|
+
FNMetaImpl?: Function
|
|
10076
|
+
): Function;
|
|
10077
|
+
/**
|
|
10078
|
+
* Returns a metadata object for class sap.ui.vbm.Route.
|
|
10079
|
+
*/
|
|
10080
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10056
10081
|
/**
|
|
10057
10082
|
* Adds some dragSource to the aggregation {@link #getDragSource dragSource}.
|
|
10058
10083
|
*/
|
|
@@ -10079,27 +10104,6 @@ declare namespace sap {
|
|
|
10079
10104
|
* Destroys all the dropTarget in the aggregation {@link #getDropTarget dropTarget}.
|
|
10080
10105
|
*/
|
|
10081
10106
|
destroyDropTarget(): this;
|
|
10082
|
-
/**
|
|
10083
|
-
* Creates a new subclass of class sap.ui.vbm.Route with name `sClassName` and enriches it with the information
|
|
10084
|
-
* contained in `oClassInfo`.
|
|
10085
|
-
*
|
|
10086
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoBase.extend}.
|
|
10087
|
-
*/
|
|
10088
|
-
static extend<T extends Record<string, unknown>>(
|
|
10089
|
-
/**
|
|
10090
|
-
* Name of the class being created
|
|
10091
|
-
*/
|
|
10092
|
-
sClassName: string,
|
|
10093
|
-
/**
|
|
10094
|
-
* Object literal with information about the class
|
|
10095
|
-
*/
|
|
10096
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Route>,
|
|
10097
|
-
/**
|
|
10098
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10099
|
-
* used by this class
|
|
10100
|
-
*/
|
|
10101
|
-
FNMetaImpl?: Function
|
|
10102
|
-
): Function;
|
|
10103
10107
|
/**
|
|
10104
10108
|
* Gets current value of property {@link #getColor color}.
|
|
10105
10109
|
*
|
|
@@ -10188,10 +10192,6 @@ declare namespace sap {
|
|
|
10188
10192
|
* Default value is `'3'`.
|
|
10189
10193
|
*/
|
|
10190
10194
|
getLinewidth(): string;
|
|
10191
|
-
/**
|
|
10192
|
-
* Returns a metadata object for class sap.ui.vbm.Route.
|
|
10193
|
-
*/
|
|
10194
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10195
10195
|
/**
|
|
10196
10196
|
* Gets current value of property {@link #getPosition position}.
|
|
10197
10197
|
*
|
|
@@ -10524,6 +10524,31 @@ declare namespace sap {
|
|
|
10524
10524
|
mSettings?: sap.ui.vbm.$RoutesSettings
|
|
10525
10525
|
);
|
|
10526
10526
|
|
|
10527
|
+
/**
|
|
10528
|
+
* Creates a new subclass of class sap.ui.vbm.Routes with name `sClassName` and enriches it with the information
|
|
10529
|
+
* contained in `oClassInfo`.
|
|
10530
|
+
*
|
|
10531
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAggregation.extend}.
|
|
10532
|
+
*/
|
|
10533
|
+
static extend<T extends Record<string, unknown>>(
|
|
10534
|
+
/**
|
|
10535
|
+
* Name of the class being created
|
|
10536
|
+
*/
|
|
10537
|
+
sClassName: string,
|
|
10538
|
+
/**
|
|
10539
|
+
* Object literal with information about the class
|
|
10540
|
+
*/
|
|
10541
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Routes>,
|
|
10542
|
+
/**
|
|
10543
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10544
|
+
* used by this class
|
|
10545
|
+
*/
|
|
10546
|
+
FNMetaImpl?: Function
|
|
10547
|
+
): Function;
|
|
10548
|
+
/**
|
|
10549
|
+
* Returns a metadata object for class sap.ui.vbm.Routes.
|
|
10550
|
+
*/
|
|
10551
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10527
10552
|
/**
|
|
10528
10553
|
* Adds some dragSource to the aggregation {@link #getDragSource dragSource}.
|
|
10529
10554
|
*/
|
|
@@ -10731,27 +10756,6 @@ declare namespace sap {
|
|
|
10731
10756
|
*/
|
|
10732
10757
|
oListener?: object
|
|
10733
10758
|
): this;
|
|
10734
|
-
/**
|
|
10735
|
-
* Creates a new subclass of class sap.ui.vbm.Routes with name `sClassName` and enriches it with the information
|
|
10736
|
-
* contained in `oClassInfo`.
|
|
10737
|
-
*
|
|
10738
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAggregation.extend}.
|
|
10739
|
-
*/
|
|
10740
|
-
static extend<T extends Record<string, unknown>>(
|
|
10741
|
-
/**
|
|
10742
|
-
* Name of the class being created
|
|
10743
|
-
*/
|
|
10744
|
-
sClassName: string,
|
|
10745
|
-
/**
|
|
10746
|
-
* Object literal with information about the class
|
|
10747
|
-
*/
|
|
10748
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Routes>,
|
|
10749
|
-
/**
|
|
10750
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10751
|
-
* used by this class
|
|
10752
|
-
*/
|
|
10753
|
-
FNMetaImpl?: Function
|
|
10754
|
-
): Function;
|
|
10755
10759
|
/**
|
|
10756
10760
|
* Fires event {@link #event:click click} to attached listeners.
|
|
10757
10761
|
*/
|
|
@@ -10797,10 +10801,6 @@ declare namespace sap {
|
|
|
10797
10801
|
* Route object aggregation
|
|
10798
10802
|
*/
|
|
10799
10803
|
getItems(): sap.ui.vbm.Route[];
|
|
10800
|
-
/**
|
|
10801
|
-
* Returns a metadata object for class sap.ui.vbm.Routes.
|
|
10802
|
-
*/
|
|
10803
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10804
10804
|
/**
|
|
10805
10805
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
10806
10806
|
*
|
|
@@ -10993,6 +10993,31 @@ declare namespace sap {
|
|
|
10993
10993
|
mSettings?: sap.ui.vbm.$SpotSettings
|
|
10994
10994
|
);
|
|
10995
10995
|
|
|
10996
|
+
/**
|
|
10997
|
+
* Creates a new subclass of class sap.ui.vbm.Spot with name `sClassName` and enriches it with the information
|
|
10998
|
+
* contained in `oClassInfo`.
|
|
10999
|
+
*
|
|
11000
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoBase.extend}.
|
|
11001
|
+
*/
|
|
11002
|
+
static extend<T extends Record<string, unknown>>(
|
|
11003
|
+
/**
|
|
11004
|
+
* Name of the class being created
|
|
11005
|
+
*/
|
|
11006
|
+
sClassName: string,
|
|
11007
|
+
/**
|
|
11008
|
+
* Object literal with information about the class
|
|
11009
|
+
*/
|
|
11010
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Spot>,
|
|
11011
|
+
/**
|
|
11012
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11013
|
+
* used by this class
|
|
11014
|
+
*/
|
|
11015
|
+
FNMetaImpl?: Function
|
|
11016
|
+
): Function;
|
|
11017
|
+
/**
|
|
11018
|
+
* Returns a metadata object for class sap.ui.vbm.Spot.
|
|
11019
|
+
*/
|
|
11020
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10996
11021
|
/**
|
|
10997
11022
|
* Adds some dragSource to the aggregation {@link #getDragSource dragSource}.
|
|
10998
11023
|
*/
|
|
@@ -11017,29 +11042,8 @@ declare namespace sap {
|
|
|
11017
11042
|
destroyDragSource(): this;
|
|
11018
11043
|
/**
|
|
11019
11044
|
* Destroys all the dropTarget in the aggregation {@link #getDropTarget dropTarget}.
|
|
11020
|
-
*/
|
|
11021
|
-
destroyDropTarget(): this;
|
|
11022
|
-
/**
|
|
11023
|
-
* Creates a new subclass of class sap.ui.vbm.Spot with name `sClassName` and enriches it with the information
|
|
11024
|
-
* contained in `oClassInfo`.
|
|
11025
|
-
*
|
|
11026
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoBase.extend}.
|
|
11027
|
-
*/
|
|
11028
|
-
static extend<T extends Record<string, unknown>>(
|
|
11029
|
-
/**
|
|
11030
|
-
* Name of the class being created
|
|
11031
|
-
*/
|
|
11032
|
-
sClassName: string,
|
|
11033
|
-
/**
|
|
11034
|
-
* Object literal with information about the class
|
|
11035
|
-
*/
|
|
11036
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Spot>,
|
|
11037
|
-
/**
|
|
11038
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11039
|
-
* used by this class
|
|
11040
|
-
*/
|
|
11041
|
-
FNMetaImpl?: Function
|
|
11042
|
-
): Function;
|
|
11045
|
+
*/
|
|
11046
|
+
destroyDropTarget(): this;
|
|
11043
11047
|
/**
|
|
11044
11048
|
* Gets current value of property {@link #getAlignment alignment}.
|
|
11045
11049
|
*
|
|
@@ -11109,10 +11113,6 @@ declare namespace sap {
|
|
|
11109
11113
|
* The image for the spot when selected. This must be a reference to a resource.
|
|
11110
11114
|
*/
|
|
11111
11115
|
getImageSelected(): string;
|
|
11112
|
-
/**
|
|
11113
|
-
* Returns a metadata object for class sap.ui.vbm.Spot.
|
|
11114
|
-
*/
|
|
11115
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11116
11116
|
/**
|
|
11117
11117
|
* Gets current value of property {@link #getPosition position}.
|
|
11118
11118
|
*
|
|
@@ -11432,6 +11432,31 @@ declare namespace sap {
|
|
|
11432
11432
|
mSettings?: sap.ui.vbm.$SpotsSettings
|
|
11433
11433
|
);
|
|
11434
11434
|
|
|
11435
|
+
/**
|
|
11436
|
+
* Creates a new subclass of class sap.ui.vbm.Spots with name `sClassName` and enriches it with the information
|
|
11437
|
+
* contained in `oClassInfo`.
|
|
11438
|
+
*
|
|
11439
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAggregation.extend}.
|
|
11440
|
+
*/
|
|
11441
|
+
static extend<T extends Record<string, unknown>>(
|
|
11442
|
+
/**
|
|
11443
|
+
* Name of the class being created
|
|
11444
|
+
*/
|
|
11445
|
+
sClassName: string,
|
|
11446
|
+
/**
|
|
11447
|
+
* Object literal with information about the class
|
|
11448
|
+
*/
|
|
11449
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Spots>,
|
|
11450
|
+
/**
|
|
11451
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11452
|
+
* used by this class
|
|
11453
|
+
*/
|
|
11454
|
+
FNMetaImpl?: Function
|
|
11455
|
+
): Function;
|
|
11456
|
+
/**
|
|
11457
|
+
* Returns a metadata object for class sap.ui.vbm.Spots.
|
|
11458
|
+
*/
|
|
11459
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11435
11460
|
/**
|
|
11436
11461
|
* Adds some dragSource to the aggregation {@link #getDragSource dragSource}.
|
|
11437
11462
|
*/
|
|
@@ -11471,27 +11496,6 @@ declare namespace sap {
|
|
|
11471
11496
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
11472
11497
|
*/
|
|
11473
11498
|
destroyItems(): this;
|
|
11474
|
-
/**
|
|
11475
|
-
* Creates a new subclass of class sap.ui.vbm.Spots with name `sClassName` and enriches it with the information
|
|
11476
|
-
* contained in `oClassInfo`.
|
|
11477
|
-
*
|
|
11478
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAggregation.extend}.
|
|
11479
|
-
*/
|
|
11480
|
-
static extend<T extends Record<string, unknown>>(
|
|
11481
|
-
/**
|
|
11482
|
-
* Name of the class being created
|
|
11483
|
-
*/
|
|
11484
|
-
sClassName: string,
|
|
11485
|
-
/**
|
|
11486
|
-
* Object literal with information about the class
|
|
11487
|
-
*/
|
|
11488
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Spots>,
|
|
11489
|
-
/**
|
|
11490
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11491
|
-
* used by this class
|
|
11492
|
-
*/
|
|
11493
|
-
FNMetaImpl?: Function
|
|
11494
|
-
): Function;
|
|
11495
11499
|
/**
|
|
11496
11500
|
* Gets content of aggregation {@link #getDragSource dragSource}.
|
|
11497
11501
|
*
|
|
@@ -11510,10 +11514,6 @@ declare namespace sap {
|
|
|
11510
11514
|
* spot object aggregation
|
|
11511
11515
|
*/
|
|
11512
11516
|
getItems(): sap.ui.vbm.Spot[];
|
|
11513
|
-
/**
|
|
11514
|
-
* Returns a metadata object for class sap.ui.vbm.Spots.
|
|
11515
|
-
*/
|
|
11516
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11517
11517
|
/**
|
|
11518
11518
|
* Gets current value of property {@link #getPosChangeable posChangeable}.
|
|
11519
11519
|
*
|
|
@@ -11729,6 +11729,31 @@ declare namespace sap {
|
|
|
11729
11729
|
mSettings?: sap.ui.vbm.$VBISettings
|
|
11730
11730
|
);
|
|
11731
11731
|
|
|
11732
|
+
/**
|
|
11733
|
+
* Creates a new subclass of class sap.ui.vbm.VBI with name `sClassName` and enriches it with the information
|
|
11734
|
+
* contained in `oClassInfo`.
|
|
11735
|
+
*
|
|
11736
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11737
|
+
*/
|
|
11738
|
+
static extend<T extends Record<string, unknown>>(
|
|
11739
|
+
/**
|
|
11740
|
+
* Name of the class being created
|
|
11741
|
+
*/
|
|
11742
|
+
sClassName: string,
|
|
11743
|
+
/**
|
|
11744
|
+
* Object literal with information about the class
|
|
11745
|
+
*/
|
|
11746
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.VBI>,
|
|
11747
|
+
/**
|
|
11748
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11749
|
+
* used by this class
|
|
11750
|
+
*/
|
|
11751
|
+
FNMetaImpl?: Function
|
|
11752
|
+
): Function;
|
|
11753
|
+
/**
|
|
11754
|
+
* Returns a metadata object for class sap.ui.vbm.VBI.
|
|
11755
|
+
*/
|
|
11756
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11732
11757
|
/**
|
|
11733
11758
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
11734
11759
|
*/
|
|
@@ -12342,27 +12367,6 @@ declare namespace sap {
|
|
|
12342
12367
|
*/
|
|
12343
12368
|
oListener?: object
|
|
12344
12369
|
): this;
|
|
12345
|
-
/**
|
|
12346
|
-
* Creates a new subclass of class sap.ui.vbm.VBI with name `sClassName` and enriches it with the information
|
|
12347
|
-
* contained in `oClassInfo`.
|
|
12348
|
-
*
|
|
12349
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12350
|
-
*/
|
|
12351
|
-
static extend<T extends Record<string, unknown>>(
|
|
12352
|
-
/**
|
|
12353
|
-
* Name of the class being created
|
|
12354
|
-
*/
|
|
12355
|
-
sClassName: string,
|
|
12356
|
-
/**
|
|
12357
|
-
* Object literal with information about the class
|
|
12358
|
-
*/
|
|
12359
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.VBI>,
|
|
12360
|
-
/**
|
|
12361
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12362
|
-
* used by this class
|
|
12363
|
-
*/
|
|
12364
|
-
FNMetaImpl?: Function
|
|
12365
|
-
): Function;
|
|
12366
12370
|
/**
|
|
12367
12371
|
* Fires event {@link #event:changeTrackingMode changeTrackingMode} to attached listeners.
|
|
12368
12372
|
*/
|
|
@@ -12610,10 +12614,6 @@ declare namespace sap {
|
|
|
12610
12614
|
* Default value is `false`.
|
|
12611
12615
|
*/
|
|
12612
12616
|
getLassoSelection(): boolean;
|
|
12613
|
-
/**
|
|
12614
|
-
* Returns a metadata object for class sap.ui.vbm.VBI.
|
|
12615
|
-
*/
|
|
12616
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12617
12617
|
/**
|
|
12618
12618
|
* Returns a Screenshot of the Overlay. Please note that the map cannot be included due to browser restrictions.
|
|
12619
12619
|
* Function returns the visible part of the Canvas excluding map, copyright info, navigation control, scaler,
|
|
@@ -12941,6 +12941,31 @@ declare namespace sap {
|
|
|
12941
12941
|
*/
|
|
12942
12942
|
constructor();
|
|
12943
12943
|
|
|
12944
|
+
/**
|
|
12945
|
+
* Creates a new subclass of class sap.ui.vbm.Viewport with name `sClassName` and enriches it with the information
|
|
12946
|
+
* contained in `oClassInfo`.
|
|
12947
|
+
*
|
|
12948
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12949
|
+
*/
|
|
12950
|
+
static extend<T extends Record<string, unknown>>(
|
|
12951
|
+
/**
|
|
12952
|
+
* Name of the class being created
|
|
12953
|
+
*/
|
|
12954
|
+
sClassName: string,
|
|
12955
|
+
/**
|
|
12956
|
+
* Object literal with information about the class
|
|
12957
|
+
*/
|
|
12958
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Viewport>,
|
|
12959
|
+
/**
|
|
12960
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12961
|
+
* used by this class
|
|
12962
|
+
*/
|
|
12963
|
+
FNMetaImpl?: Function
|
|
12964
|
+
): Function;
|
|
12965
|
+
/**
|
|
12966
|
+
* Returns a metadata object for class sap.ui.vbm.Viewport.
|
|
12967
|
+
*/
|
|
12968
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12944
12969
|
/**
|
|
12945
12970
|
* Attaches event handler `fnFunction` to the {@link #event:cameraChange cameraChange} event of this `sap.ui.vbm.Viewport`.
|
|
12946
12971
|
*
|
|
@@ -12997,27 +13022,6 @@ declare namespace sap {
|
|
|
12997
13022
|
*/
|
|
12998
13023
|
oListener?: object
|
|
12999
13024
|
): this;
|
|
13000
|
-
/**
|
|
13001
|
-
* Creates a new subclass of class sap.ui.vbm.Viewport with name `sClassName` and enriches it with the information
|
|
13002
|
-
* contained in `oClassInfo`.
|
|
13003
|
-
*
|
|
13004
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
13005
|
-
*/
|
|
13006
|
-
static extend<T extends Record<string, unknown>>(
|
|
13007
|
-
/**
|
|
13008
|
-
* Name of the class being created
|
|
13009
|
-
*/
|
|
13010
|
-
sClassName: string,
|
|
13011
|
-
/**
|
|
13012
|
-
* Object literal with information about the class
|
|
13013
|
-
*/
|
|
13014
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.Viewport>,
|
|
13015
|
-
/**
|
|
13016
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13017
|
-
* used by this class
|
|
13018
|
-
*/
|
|
13019
|
-
FNMetaImpl?: Function
|
|
13020
|
-
): Function;
|
|
13021
13025
|
/**
|
|
13022
13026
|
* Fires event {@link #event:cameraChange cameraChange} to attached listeners.
|
|
13023
13027
|
*/
|
|
@@ -13058,10 +13062,6 @@ declare namespace sap {
|
|
|
13058
13062
|
* Default value is `"100%"`.
|
|
13059
13063
|
*/
|
|
13060
13064
|
getHeight(): sap.ui.core.CSSSize;
|
|
13061
|
-
/**
|
|
13062
|
-
* Returns a metadata object for class sap.ui.vbm.Viewport.
|
|
13063
|
-
*/
|
|
13064
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13065
13065
|
/**
|
|
13066
13066
|
* Gets current value of property {@link #getWidth width}.
|
|
13067
13067
|
*
|
|
@@ -13250,6 +13250,31 @@ declare namespace sap {
|
|
|
13250
13250
|
mSettings?: sap.ui.vbm.$VoAggregationSettings
|
|
13251
13251
|
);
|
|
13252
13252
|
|
|
13253
|
+
/**
|
|
13254
|
+
* Creates a new subclass of class sap.ui.vbm.VoAggregation with name `sClassName` and enriches it with
|
|
13255
|
+
* the information contained in `oClassInfo`.
|
|
13256
|
+
*
|
|
13257
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAbstract.extend}.
|
|
13258
|
+
*/
|
|
13259
|
+
static extend<T extends Record<string, unknown>>(
|
|
13260
|
+
/**
|
|
13261
|
+
* Name of the class being created
|
|
13262
|
+
*/
|
|
13263
|
+
sClassName: string,
|
|
13264
|
+
/**
|
|
13265
|
+
* Object literal with information about the class
|
|
13266
|
+
*/
|
|
13267
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.VoAggregation>,
|
|
13268
|
+
/**
|
|
13269
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13270
|
+
* used by this class
|
|
13271
|
+
*/
|
|
13272
|
+
FNMetaImpl?: Function
|
|
13273
|
+
): Function;
|
|
13274
|
+
/**
|
|
13275
|
+
* Returns a metadata object for class sap.ui.vbm.VoAggregation.
|
|
13276
|
+
*/
|
|
13277
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13253
13278
|
/**
|
|
13254
13279
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.vbm.VoAggregation`.
|
|
13255
13280
|
*
|
|
@@ -13701,27 +13726,6 @@ declare namespace sap {
|
|
|
13701
13726
|
*/
|
|
13702
13727
|
oListener?: object
|
|
13703
13728
|
): this;
|
|
13704
|
-
/**
|
|
13705
|
-
* Creates a new subclass of class sap.ui.vbm.VoAggregation with name `sClassName` and enriches it with
|
|
13706
|
-
* the information contained in `oClassInfo`.
|
|
13707
|
-
*
|
|
13708
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vbm.VoAbstract.extend}.
|
|
13709
|
-
*/
|
|
13710
|
-
static extend<T extends Record<string, unknown>>(
|
|
13711
|
-
/**
|
|
13712
|
-
* Name of the class being created
|
|
13713
|
-
*/
|
|
13714
|
-
sClassName: string,
|
|
13715
|
-
/**
|
|
13716
|
-
* Object literal with information about the class
|
|
13717
|
-
*/
|
|
13718
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.VoAggregation>,
|
|
13719
|
-
/**
|
|
13720
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13721
|
-
* used by this class
|
|
13722
|
-
*/
|
|
13723
|
-
FNMetaImpl?: Function
|
|
13724
|
-
): Function;
|
|
13725
13729
|
/**
|
|
13726
13730
|
* Fires event {@link #event:click click} to attached listeners.
|
|
13727
13731
|
*/
|
|
@@ -13873,10 +13877,6 @@ declare namespace sap {
|
|
|
13873
13877
|
* Default value is `"n"`.
|
|
13874
13878
|
*/
|
|
13875
13879
|
getMaxSel(): string;
|
|
13876
|
-
/**
|
|
13877
|
-
* Returns a metadata object for class sap.ui.vbm.VoAggregation.
|
|
13878
|
-
*/
|
|
13879
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13880
13880
|
/**
|
|
13881
13881
|
* Gets current value of property {@link #getMinSel minSel}.
|
|
13882
13882
|
*
|
|
@@ -14002,6 +14002,31 @@ declare namespace sap {
|
|
|
14002
14002
|
mSettings?: sap.ui.vbm.$VoBaseSettings
|
|
14003
14003
|
);
|
|
14004
14004
|
|
|
14005
|
+
/**
|
|
14006
|
+
* Creates a new subclass of class sap.ui.vbm.VoBase with name `sClassName` and enriches it with the information
|
|
14007
|
+
* contained in `oClassInfo`.
|
|
14008
|
+
*
|
|
14009
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
14010
|
+
*/
|
|
14011
|
+
static extend<T extends Record<string, unknown>>(
|
|
14012
|
+
/**
|
|
14013
|
+
* Name of the class being created
|
|
14014
|
+
*/
|
|
14015
|
+
sClassName: string,
|
|
14016
|
+
/**
|
|
14017
|
+
* Object literal with information about the class
|
|
14018
|
+
*/
|
|
14019
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.VoBase>,
|
|
14020
|
+
/**
|
|
14021
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14022
|
+
* used by this class
|
|
14023
|
+
*/
|
|
14024
|
+
FNMetaImpl?: Function
|
|
14025
|
+
): Function;
|
|
14026
|
+
/**
|
|
14027
|
+
* Returns a metadata object for class sap.ui.vbm.VoBase.
|
|
14028
|
+
*/
|
|
14029
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14005
14030
|
/**
|
|
14006
14031
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.vbm.VoBase`.
|
|
14007
14032
|
*
|
|
@@ -14341,27 +14366,6 @@ declare namespace sap {
|
|
|
14341
14366
|
*/
|
|
14342
14367
|
oListener?: object
|
|
14343
14368
|
): this;
|
|
14344
|
-
/**
|
|
14345
|
-
* Creates a new subclass of class sap.ui.vbm.VoBase with name `sClassName` and enriches it with the information
|
|
14346
|
-
* contained in `oClassInfo`.
|
|
14347
|
-
*
|
|
14348
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
14349
|
-
*/
|
|
14350
|
-
static extend<T extends Record<string, unknown>>(
|
|
14351
|
-
/**
|
|
14352
|
-
* Name of the class being created
|
|
14353
|
-
*/
|
|
14354
|
-
sClassName: string,
|
|
14355
|
-
/**
|
|
14356
|
-
* Object literal with information about the class
|
|
14357
|
-
*/
|
|
14358
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.vbm.VoBase>,
|
|
14359
|
-
/**
|
|
14360
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14361
|
-
* used by this class
|
|
14362
|
-
*/
|
|
14363
|
-
FNMetaImpl?: Function
|
|
14364
|
-
): Function;
|
|
14365
14369
|
/**
|
|
14366
14370
|
* Fires event {@link #event:click click} to attached listeners.
|
|
14367
14371
|
*/
|
|
@@ -14570,10 +14574,6 @@ declare namespace sap {
|
|
|
14570
14574
|
* Default value is `None`.
|
|
14571
14575
|
*/
|
|
14572
14576
|
getLabelType(): sap.ui.vbm.SemanticType;
|
|
14573
|
-
/**
|
|
14574
|
-
* Returns a metadata object for class sap.ui.vbm.VoBase.
|
|
14575
|
-
*/
|
|
14576
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14577
14577
|
/**
|
|
14578
14578
|
* Gets current value of property {@link #getSelect select}.
|
|
14579
14579
|
*
|