@sapui5/types 1.122.2 → 1.123.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +408 -32
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.collaboration.d.ts +52 -9
  6. package/types/sap.esh.search.ui.d.ts +2066 -2
  7. package/types/sap.f.d.ts +435 -98
  8. package/types/sap.fe.core.d.ts +9 -3
  9. package/types/sap.fe.macros.d.ts +1075 -70
  10. package/types/sap.fe.navigation.d.ts +1 -1
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +8 -6
  14. package/types/sap.fe.test.d.ts +309 -7
  15. package/types/sap.fe.tools.d.ts +1 -1
  16. package/types/sap.feedback.ui.d.ts +1 -1
  17. package/types/sap.gantt.d.ts +1066 -146
  18. package/types/sap.insights.d.ts +4 -2
  19. package/types/sap.m.d.ts +3961 -399
  20. package/types/sap.makit.d.ts +115 -14
  21. package/types/sap.me.d.ts +84 -7
  22. package/types/sap.ndc.d.ts +22 -2
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +44 -11
  25. package/types/sap.sac.df.d.ts +119 -67
  26. package/types/sap.suite.ui.commons.d.ts +1146 -2474
  27. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  28. package/types/sap.suite.ui.microchart.d.ts +190 -28
  29. package/types/sap.tnt.d.ts +46 -10
  30. package/types/sap.ui.codeeditor.d.ts +16 -2
  31. package/types/sap.ui.commons.d.ts +797 -121
  32. package/types/sap.ui.comp.d.ts +964 -124
  33. package/types/sap.ui.core.d.ts +13204 -12618
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +22 -5
  36. package/types/sap.ui.fl.d.ts +40 -3
  37. package/types/sap.ui.generic.app.d.ts +217 -201
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +147 -9
  40. package/types/sap.ui.layout.d.ts +171 -47
  41. package/types/sap.ui.mdc.d.ts +554 -71
  42. package/types/sap.ui.richtexteditor.d.ts +28 -2
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +27 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +278 -74
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +481 -42
  49. package/types/sap.ui.ux3.d.ts +527 -34
  50. package/types/sap.ui.vbm.d.ts +544 -48
  51. package/types/sap.ui.vk.d.ts +1588 -133
  52. package/types/sap.ui.vtm.d.ts +373 -27
  53. package/types/sap.ui.webc.common.d.ts +7 -1
  54. package/types/sap.ui.webc.fiori.d.ts +351 -29
  55. package/types/sap.ui.webc.main.d.ts +1035 -83
  56. package/types/sap.uiext.inbox.d.ts +124 -13
  57. package/types/sap.ushell.d.ts +1081 -383
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +123 -23
  60. package/types/sap.viz.d.ts +2619 -130
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +35 -15
  63. package/types/sap.zen.crosstab.d.ts +22 -10
  64. package/types/sap.zen.dsh.d.ts +64 -9
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.0
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/ui/vbm/library" {
4
4
  /**
@@ -271,7 +271,9 @@ declare module "sap/ui/vbm/Adapter" {
271
271
  oMap: ID | GeoMap
272
272
  ): this;
273
273
  }
274
-
274
+ /**
275
+ * Describes the settings that can be provided to the Adapter constructor.
276
+ */
275
277
  export interface $AdapterSettings extends $ElementSettings {
276
278
  /**
277
279
  * The GeoMap control associated with the Adapter. The adapter would invoke methods and subscribe to events
@@ -286,10 +288,16 @@ declare module "sap/ui/vbm/Adapter" {
286
288
  submit?: (oEvent: Adapter$SubmitEvent) => void;
287
289
  }
288
290
 
291
+ /**
292
+ * Parameters of the Adapter#submit event.
293
+ */
289
294
  export interface Adapter$SubmitEventParameters {
290
295
  data?: string;
291
296
  }
292
297
 
298
+ /**
299
+ * Event object of the Adapter#submit event.
300
+ */
293
301
  export type Adapter$SubmitEvent = Event<
294
302
  Adapter$SubmitEventParameters,
295
303
  Adapter
@@ -483,7 +491,9 @@ declare module "sap/ui/vbm/Adapter3D" {
483
491
  oViewport: ID | Viewport
484
492
  ): this;
485
493
  }
486
-
494
+ /**
495
+ * Describes the settings that can be provided to the Adapter3D constructor.
496
+ */
487
497
  export interface $Adapter3DSettings extends $ElementSettings {
488
498
  /**
489
499
  * The {@link sap.ui.vbm.Viewport Viewport} control associated with the Adapter3D. The Adapter3D would invoke
@@ -497,6 +507,9 @@ declare module "sap/ui/vbm/Adapter3D" {
497
507
  submit?: (oEvent: Adapter3D$SubmitEvent) => void;
498
508
  }
499
509
 
510
+ /**
511
+ * Parameters of the Adapter3D#submit event.
512
+ */
500
513
  export interface Adapter3D$SubmitEventParameters {
501
514
  /**
502
515
  * A string in the VBI JSON format.
@@ -504,6 +517,9 @@ declare module "sap/ui/vbm/Adapter3D" {
504
517
  data?: string;
505
518
  }
506
519
 
520
+ /**
521
+ * Event object of the Adapter3D#submit event.
522
+ */
507
523
  export type Adapter3D$SubmitEvent = Event<
508
524
  Adapter3D$SubmitEventParameters,
509
525
  Adapter3D
@@ -1020,7 +1036,9 @@ declare module "sap/ui/vbm/AnalyticMap" {
1020
1036
  oCorr: object
1021
1037
  ): void;
1022
1038
  }
1023
-
1039
+ /**
1040
+ * Describes the settings that can be provided to the AnalyticMap constructor.
1041
+ */
1024
1042
  export interface $AnalyticMapSettings extends $GeoMapSettings {
1025
1043
  /**
1026
1044
  * Regions that are different from the defaults. It is possible to specify the tooltip and color for regions.
@@ -1049,6 +1067,9 @@ declare module "sap/ui/vbm/AnalyticMap" {
1049
1067
  regionDeselect?: (oEvent: Event) => void;
1050
1068
  }
1051
1069
 
1070
+ /**
1071
+ * Parameters of the AnalyticMap#regionClick event.
1072
+ */
1052
1073
  export interface AnalyticMap$RegionClickEventParameters {
1053
1074
  /**
1054
1075
  * The regions code.
@@ -1056,11 +1077,17 @@ declare module "sap/ui/vbm/AnalyticMap" {
1056
1077
  code?: string;
1057
1078
  }
1058
1079
 
1080
+ /**
1081
+ * Event object of the AnalyticMap#regionClick event.
1082
+ */
1059
1083
  export type AnalyticMap$RegionClickEvent = Event<
1060
1084
  AnalyticMap$RegionClickEventParameters,
1061
1085
  AnalyticMap
1062
1086
  >;
1063
1087
 
1088
+ /**
1089
+ * Parameters of the AnalyticMap#regionContextMenu event.
1090
+ */
1064
1091
  export interface AnalyticMap$RegionContextMenuEventParameters {
1065
1092
  /**
1066
1093
  * The regions code.
@@ -1068,20 +1095,35 @@ declare module "sap/ui/vbm/AnalyticMap" {
1068
1095
  code?: string;
1069
1096
  }
1070
1097
 
1098
+ /**
1099
+ * Event object of the AnalyticMap#regionContextMenu event.
1100
+ */
1071
1101
  export type AnalyticMap$RegionContextMenuEvent = Event<
1072
1102
  AnalyticMap$RegionContextMenuEventParameters,
1073
1103
  AnalyticMap
1074
1104
  >;
1075
1105
 
1106
+ /**
1107
+ * Parameters of the AnalyticMap#regionDeselect event.
1108
+ */
1076
1109
  export interface AnalyticMap$RegionDeselectEventParameters {}
1077
1110
 
1111
+ /**
1112
+ * Event object of the AnalyticMap#regionDeselect event.
1113
+ */
1078
1114
  export type AnalyticMap$RegionDeselectEvent = Event<
1079
1115
  AnalyticMap$RegionDeselectEventParameters,
1080
1116
  AnalyticMap
1081
1117
  >;
1082
1118
 
1119
+ /**
1120
+ * Parameters of the AnalyticMap#regionSelect event.
1121
+ */
1083
1122
  export interface AnalyticMap$RegionSelectEventParameters {}
1084
1123
 
1124
+ /**
1125
+ * Event object of the AnalyticMap#regionSelect event.
1126
+ */
1085
1127
  export type AnalyticMap$RegionSelectEvent = Event<
1086
1128
  AnalyticMap$RegionSelectEventParameters,
1087
1129
  AnalyticMap
@@ -1438,7 +1480,9 @@ declare module "sap/ui/vbm/Area" {
1438
1480
  sPosition?: string
1439
1481
  ): this;
1440
1482
  }
1441
-
1483
+ /**
1484
+ * Describes the settings that can be provided to the Area constructor.
1485
+ */
1442
1486
  export interface $AreaSettings extends $VoBaseSettings {
1443
1487
  /**
1444
1488
  * The position array for the Area. For single part areas the format is "lon0;lat0;0.0;...;lonN,latN,0.0".
@@ -1476,12 +1520,24 @@ declare module "sap/ui/vbm/Area" {
1476
1520
  edgeContextMenu?: (oEvent: Event) => void;
1477
1521
  }
1478
1522
 
1523
+ /**
1524
+ * Parameters of the Area#edgeClick event.
1525
+ */
1479
1526
  export interface Area$EdgeClickEventParameters {}
1480
1527
 
1528
+ /**
1529
+ * Event object of the Area#edgeClick event.
1530
+ */
1481
1531
  export type Area$EdgeClickEvent = Event<Area$EdgeClickEventParameters, Area>;
1482
1532
 
1533
+ /**
1534
+ * Parameters of the Area#edgeContextMenu event.
1535
+ */
1483
1536
  export interface Area$EdgeContextMenuEventParameters {}
1484
1537
 
1538
+ /**
1539
+ * Event object of the Area#edgeContextMenu event.
1540
+ */
1485
1541
  export type Area$EdgeContextMenuEvent = Event<
1486
1542
  Area$EdgeContextMenuEventParameters,
1487
1543
  Area
@@ -1839,7 +1895,9 @@ declare module "sap/ui/vbm/Areas" {
1839
1895
  bPosChangeable?: boolean
1840
1896
  ): this;
1841
1897
  }
1842
-
1898
+ /**
1899
+ * Describes the settings that can be provided to the Areas constructor.
1900
+ */
1843
1901
  export interface $AreasSettings extends $VoAggregationSettings {
1844
1902
  /**
1845
1903
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -1863,6 +1921,9 @@ declare module "sap/ui/vbm/Areas" {
1863
1921
  edgeContextMenu?: (oEvent: Areas$EdgeContextMenuEvent) => void;
1864
1922
  }
1865
1923
 
1924
+ /**
1925
+ * Parameters of the Areas#edgeClick event.
1926
+ */
1866
1927
  export interface Areas$EdgeClickEventParameters {
1867
1928
  /**
1868
1929
  * Clicked instance
@@ -1876,11 +1937,17 @@ declare module "sap/ui/vbm/Areas" {
1876
1937
  edge?: int;
1877
1938
  }
1878
1939
 
1940
+ /**
1941
+ * Event object of the Areas#edgeClick event.
1942
+ */
1879
1943
  export type Areas$EdgeClickEvent = Event<
1880
1944
  Areas$EdgeClickEventParameters,
1881
1945
  Areas
1882
1946
  >;
1883
1947
 
1948
+ /**
1949
+ * Parameters of the Areas#edgeContextMenu event.
1950
+ */
1884
1951
  export interface Areas$EdgeContextMenuEventParameters {
1885
1952
  /**
1886
1953
  * Clicked instance
@@ -1894,6 +1961,9 @@ declare module "sap/ui/vbm/Areas" {
1894
1961
  edge?: int;
1895
1962
  }
1896
1963
 
1964
+ /**
1965
+ * Event object of the Areas#edgeContextMenu event.
1966
+ */
1897
1967
  export type Areas$EdgeContextMenuEvent = Event<
1898
1968
  Areas$EdgeContextMenuEventParameters,
1899
1969
  Areas
@@ -2094,7 +2164,9 @@ declare module "sap/ui/vbm/Box" {
2094
2164
  sScale?: string
2095
2165
  ): this;
2096
2166
  }
2097
-
2167
+ /**
2168
+ * Describes the settings that can be provided to the Box constructor.
2169
+ */
2098
2170
  export interface $BoxSettings extends $VoBaseSettings {
2099
2171
  /**
2100
2172
  * The position of the Box. The format is "lon;lat;0".
@@ -2339,7 +2411,9 @@ declare module "sap/ui/vbm/Boxes" {
2339
2411
  bScaleChangeable?: boolean
2340
2412
  ): this;
2341
2413
  }
2342
-
2414
+ /**
2415
+ * Describes the settings that can be provided to the Boxes constructor.
2416
+ */
2343
2417
  export interface $BoxesSettings extends $VoAggregationSettings {
2344
2418
  /**
2345
2419
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -2576,7 +2650,9 @@ declare module "sap/ui/vbm/Circle" {
2576
2650
  sSlices?: string
2577
2651
  ): this;
2578
2652
  }
2579
-
2653
+ /**
2654
+ * Describes the settings that can be provided to the Circle constructor.
2655
+ */
2580
2656
  export interface $CircleSettings extends $VoBaseSettings {
2581
2657
  /**
2582
2658
  * The position of the circle.
@@ -2826,7 +2902,9 @@ declare module "sap/ui/vbm/Circles" {
2826
2902
  bRadiusChangeable?: boolean
2827
2903
  ): this;
2828
2904
  }
2829
-
2905
+ /**
2906
+ * Describes the settings that can be provided to the Circles constructor.
2907
+ */
2830
2908
  export interface $CirclesSettings extends $VoAggregationSettings {
2831
2909
  /**
2832
2910
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -3038,7 +3116,9 @@ declare module "sap/ui/vbm/Cluster" {
3038
3116
  sType?: SemanticType | keyof typeof SemanticType
3039
3117
  ): this;
3040
3118
  }
3041
-
3119
+ /**
3120
+ * Describes the settings that can be provided to the Cluster constructor.
3121
+ */
3042
3122
  export interface $ClusterSettings extends $ControlSettings {
3043
3123
  /**
3044
3124
  * Set the color of the control. If a type is set then the semantic color of the type is taken instead.
@@ -3580,7 +3660,9 @@ declare module "sap/ui/vbm/ClusterBase" {
3580
3660
  oVizVo: Spot
3581
3661
  ): this;
3582
3662
  }
3583
-
3663
+ /**
3664
+ * Describes the settings that can be provided to the ClusterBase constructor.
3665
+ */
3584
3666
  export interface $ClusterBaseSettings extends $ElementSettings {
3585
3667
  /**
3586
3668
  * Flag controlling the visibility of the area convered by a cluster object.
@@ -3636,6 +3718,9 @@ declare module "sap/ui/vbm/ClusterBase" {
3636
3718
  contextMenu?: (oEvent: ClusterBase$ContextMenuEvent) => void;
3637
3719
  }
3638
3720
 
3721
+ /**
3722
+ * Parameters of the ClusterBase#click event.
3723
+ */
3639
3724
  export interface ClusterBase$ClickEventParameters {
3640
3725
  /**
3641
3726
  * ID of the clicked cluster object. Can serve as input for GeoMap function getInfoForCluster
@@ -3643,11 +3728,17 @@ declare module "sap/ui/vbm/ClusterBase" {
3643
3728
  clusterID?: string;
3644
3729
  }
3645
3730
 
3731
+ /**
3732
+ * Event object of the ClusterBase#click event.
3733
+ */
3646
3734
  export type ClusterBase$ClickEvent = Event<
3647
3735
  ClusterBase$ClickEventParameters,
3648
3736
  ClusterBase
3649
3737
  >;
3650
3738
 
3739
+ /**
3740
+ * Parameters of the ClusterBase#contextMenu event.
3741
+ */
3651
3742
  export interface ClusterBase$ContextMenuEventParameters {
3652
3743
  /**
3653
3744
  * ID of the clicked cluster object. Can serve as input for GeoMap function getInfoForCluster
@@ -3660,6 +3751,9 @@ declare module "sap/ui/vbm/ClusterBase" {
3660
3751
  menu?: Menu;
3661
3752
  }
3662
3753
 
3754
+ /**
3755
+ * Event object of the ClusterBase#contextMenu event.
3756
+ */
3663
3757
  export type ClusterBase$ContextMenuEvent = Event<
3664
3758
  ClusterBase$ContextMenuEventParameters,
3665
3759
  ClusterBase
@@ -3753,7 +3847,9 @@ declare module "sap/ui/vbm/ClusterContainer" {
3753
3847
  */
3754
3848
  static getMetadata(): ElementMetadata;
3755
3849
  }
3756
-
3850
+ /**
3851
+ * Describes the settings that can be provided to the ClusterContainer constructor.
3852
+ */
3757
3853
  export interface $ClusterContainerSettings extends $ContainerSettings {}
3758
3854
  }
3759
3855
 
@@ -3872,7 +3968,9 @@ declare module "sap/ui/vbm/ClusterDistance" {
3872
3968
  iDistance?: int
3873
3969
  ): this;
3874
3970
  }
3875
-
3971
+ /**
3972
+ * Describes the settings that can be provided to the ClusterDistance constructor.
3973
+ */
3876
3974
  export interface $ClusterDistanceSettings extends $ClusterBaseSettings {
3877
3975
  /**
3878
3976
  * Distance in pixels between cluster objects. This distance is used as parameter during the clustering.
@@ -4134,7 +4232,9 @@ declare module "sap/ui/vbm/ClusterGrid" {
4134
4232
  iOrderIndex?: int
4135
4233
  ): this;
4136
4234
  }
4137
-
4235
+ /**
4236
+ * Describes the settings that can be provided to the ClusterGrid constructor.
4237
+ */
4138
4238
  export interface $ClusterGridSettings extends $ClusterBaseSettings {
4139
4239
  /**
4140
4240
  * Size of grid cells in pixels. Format is "distanceX;distanceY"
@@ -4277,7 +4377,9 @@ declare module "sap/ui/vbm/ClusterTree" {
4277
4377
  bAnimateClusterSplit?: boolean
4278
4378
  ): this;
4279
4379
  }
4280
-
4380
+ /**
4381
+ * Describes the settings that can be provided to the ClusterTree constructor.
4382
+ */
4281
4383
  export interface $ClusterTreeSettings extends $ClusterBaseSettings {
4282
4384
  /**
4283
4385
  * Indicates whether the split of a cluster object into sub clusterers or visual objects should be animated
@@ -4449,7 +4551,9 @@ declare module "sap/ui/vbm/Container" {
4449
4551
  sPosition?: string
4450
4552
  ): this;
4451
4553
  }
4452
-
4554
+ /**
4555
+ * Describes the settings that can be provided to the Container constructor.
4556
+ */
4453
4557
  export interface $ContainerSettings extends $VoBaseSettings {
4454
4558
  /**
4455
4559
  * The position for the Container. The format is "lon;lat;0".
@@ -5033,7 +5137,9 @@ declare module "sap/ui/vbm/ContainerBase" {
5033
5137
  */
5034
5138
  updateContainer(): void;
5035
5139
  }
5036
-
5140
+ /**
5141
+ * Describes the settings that can be provided to the ContainerBase constructor.
5142
+ */
5037
5143
  export interface $ContainerBaseSettings extends $ControlSettings {
5038
5144
  /**
5039
5145
  * Show fullscreen toggle button in toolbar
@@ -5086,17 +5192,29 @@ declare module "sap/ui/vbm/ContainerBase" {
5086
5192
  settingsPressed?: (oEvent: Event) => void;
5087
5193
  }
5088
5194
 
5195
+ /**
5196
+ * Parameters of the ContainerBase#contentChange event.
5197
+ */
5089
5198
  export interface ContainerBase$ContentChangeEventParameters {
5090
5199
  selectedItemId?: string;
5091
5200
  }
5092
5201
 
5202
+ /**
5203
+ * Event object of the ContainerBase#contentChange event.
5204
+ */
5093
5205
  export type ContainerBase$ContentChangeEvent = Event<
5094
5206
  ContainerBase$ContentChangeEventParameters,
5095
5207
  ContainerBase
5096
5208
  >;
5097
5209
 
5210
+ /**
5211
+ * Parameters of the ContainerBase#settingsPressed event.
5212
+ */
5098
5213
  export interface ContainerBase$SettingsPressedEventParameters {}
5099
5214
 
5215
+ /**
5216
+ * Event object of the ContainerBase#settingsPressed event.
5217
+ */
5100
5218
  export type ContainerBase$SettingsPressedEvent = Event<
5101
5219
  ContainerBase$SettingsPressedEventParameters,
5102
5220
  ContainerBase
@@ -5252,7 +5370,9 @@ declare module "sap/ui/vbm/ContainerContent" {
5252
5370
  sTitle?: string
5253
5371
  ): this;
5254
5372
  }
5255
-
5373
+ /**
5374
+ * Describes the settings that can be provided to the ContainerContent constructor.
5375
+ */
5256
5376
  export interface $ContainerContentSettings extends $ControlSettings {
5257
5377
  /**
5258
5378
  * Icon to show up in the toolbar
@@ -5541,7 +5661,9 @@ declare module "sap/ui/vbm/Containers" {
5541
5661
  vItem: int | string | Container
5542
5662
  ): Container | null;
5543
5663
  }
5544
-
5664
+ /**
5665
+ * Describes the settings that can be provided to the Containers constructor.
5666
+ */
5545
5667
  export interface $ContainersSettings extends $VoAggregationSettings {
5546
5668
  /**
5547
5669
  * Container object aggregation
@@ -5649,7 +5771,9 @@ declare module "sap/ui/vbm/DragSource" {
5649
5771
  sType?: string
5650
5772
  ): this;
5651
5773
  }
5652
-
5774
+ /**
5775
+ * Describes the settings that can be provided to the DragSource constructor.
5776
+ */
5653
5777
  export interface $DragSourceSettings extends $ElementSettings {
5654
5778
  /**
5655
5779
  * Drag type
@@ -5757,7 +5881,9 @@ declare module "sap/ui/vbm/DropTarget" {
5757
5881
  sType?: string
5758
5882
  ): this;
5759
5883
  }
5760
-
5884
+ /**
5885
+ * Describes the settings that can be provided to the DropTarget constructor.
5886
+ */
5761
5887
  export interface $DropTargetSettings extends $ElementSettings {
5762
5888
  /**
5763
5889
  * Drop type
@@ -6079,7 +6205,9 @@ declare module "sap/ui/vbm/Feature" {
6079
6205
  sFeatureId?: string
6080
6206
  ): this;
6081
6207
  }
6082
-
6208
+ /**
6209
+ * Describes the settings that can be provided to the Feature constructor.
6210
+ */
6083
6211
  export interface $FeatureSettings extends $ElementSettings {
6084
6212
  /**
6085
6213
  * The color, this should be provided in the rgba(r,g,b,a) format.
@@ -6102,10 +6230,19 @@ declare module "sap/ui/vbm/Feature" {
6102
6230
  contextMenu?: (oEvent: Feature$ContextMenuEvent) => void;
6103
6231
  }
6104
6232
 
6233
+ /**
6234
+ * Parameters of the Feature#click event.
6235
+ */
6105
6236
  export interface Feature$ClickEventParameters {}
6106
6237
 
6238
+ /**
6239
+ * Event object of the Feature#click event.
6240
+ */
6107
6241
  export type Feature$ClickEvent = Event<Feature$ClickEventParameters, Feature>;
6108
6242
 
6243
+ /**
6244
+ * Parameters of the Feature#contextMenu event.
6245
+ */
6109
6246
  export interface Feature$ContextMenuEventParameters {
6110
6247
  /**
6111
6248
  * Menu object to be used with openContextMenu().
@@ -6113,6 +6250,9 @@ declare module "sap/ui/vbm/Feature" {
6113
6250
  menu?: Menu;
6114
6251
  }
6115
6252
 
6253
+ /**
6254
+ * Event object of the Feature#contextMenu event.
6255
+ */
6116
6256
  export type Feature$ContextMenuEvent = Event<
6117
6257
  Feature$ContextMenuEventParameters,
6118
6258
  Feature
@@ -6461,7 +6601,9 @@ declare module "sap/ui/vbm/FeatureCollection" {
6461
6601
  vItem: int | string | Feature
6462
6602
  ): Feature | null;
6463
6603
  }
6464
-
6604
+ /**
6605
+ * Describes the settings that can be provided to the FeatureCollection constructor.
6606
+ */
6465
6607
  export interface $FeatureCollectionSettings extends $GeoJsonLayerSettings {
6466
6608
  /**
6467
6609
  * Feature object aggregation
@@ -6481,17 +6623,29 @@ declare module "sap/ui/vbm/FeatureCollection" {
6481
6623
  contextMenu?: (oEvent: FeatureCollection$ContextMenuEvent) => void;
6482
6624
  }
6483
6625
 
6626
+ /**
6627
+ * Parameters of the FeatureCollection#click event.
6628
+ */
6484
6629
  export interface FeatureCollection$ClickEventParameters
6485
6630
  extends GeoJsonLayer$ClickEventParameters {}
6486
6631
 
6632
+ /**
6633
+ * Event object of the FeatureCollection#click event.
6634
+ */
6487
6635
  export type FeatureCollection$ClickEvent = Event<
6488
6636
  FeatureCollection$ClickEventParameters,
6489
6637
  FeatureCollection
6490
6638
  >;
6491
6639
 
6640
+ /**
6641
+ * Parameters of the FeatureCollection#contextMenu event.
6642
+ */
6492
6643
  export interface FeatureCollection$ContextMenuEventParameters
6493
6644
  extends GeoJsonLayer$ContextMenuEventParameters {}
6494
6645
 
6646
+ /**
6647
+ * Event object of the FeatureCollection#contextMenu event.
6648
+ */
6495
6649
  export type FeatureCollection$ContextMenuEvent = Event<
6496
6650
  FeatureCollection$ContextMenuEventParameters,
6497
6651
  FeatureCollection
@@ -6719,7 +6873,9 @@ declare module "sap/ui/vbm/GeoCircle" {
6719
6873
  sSlices?: string
6720
6874
  ): this;
6721
6875
  }
6722
-
6876
+ /**
6877
+ * Describes the settings that can be provided to the GeoCircle constructor.
6878
+ */
6723
6879
  export interface $GeoCircleSettings extends $VoBaseSettings {
6724
6880
  /**
6725
6881
  * The position of the geocircle. The format is "lon;lat;0".
@@ -6969,7 +7125,9 @@ declare module "sap/ui/vbm/GeoCircles" {
6969
7125
  bRadiusChangeable?: boolean
6970
7126
  ): this;
6971
7127
  }
6972
-
7128
+ /**
7129
+ * Describes the settings that can be provided to the GeoCircles constructor.
7130
+ */
6973
7131
  export interface $GeoCirclesSettings extends $VoAggregationSettings {
6974
7132
  /**
6975
7133
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -7521,7 +7679,9 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
7521
7679
  sSrcURL?: string
7522
7680
  ): this;
7523
7681
  }
7524
-
7682
+ /**
7683
+ * Describes the settings that can be provided to the GeoJsonLayer constructor.
7684
+ */
7525
7685
  export interface $GeoJsonLayerSettings extends $ElementSettings {
7526
7686
  /**
7527
7687
  * Source URL for GeoJSON
@@ -7567,6 +7727,9 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
7567
7727
  contextMenu?: (oEvent: GeoJsonLayer$ContextMenuEvent) => void;
7568
7728
  }
7569
7729
 
7730
+ /**
7731
+ * Parameters of the GeoJsonLayer#click event.
7732
+ */
7570
7733
  export interface GeoJsonLayer$ClickEventParameters {
7571
7734
  /**
7572
7735
  * Id of clicked Feature
@@ -7574,11 +7737,17 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
7574
7737
  featureId?: string;
7575
7738
  }
7576
7739
 
7740
+ /**
7741
+ * Event object of the GeoJsonLayer#click event.
7742
+ */
7577
7743
  export type GeoJsonLayer$ClickEvent = Event<
7578
7744
  GeoJsonLayer$ClickEventParameters,
7579
7745
  GeoJsonLayer
7580
7746
  >;
7581
7747
 
7748
+ /**
7749
+ * Parameters of the GeoJsonLayer#contextMenu event.
7750
+ */
7582
7751
  export interface GeoJsonLayer$ContextMenuEventParameters {
7583
7752
  /**
7584
7753
  * Id of clicked Feature
@@ -7586,6 +7755,9 @@ declare module "sap/ui/vbm/GeoJsonLayer" {
7586
7755
  featureId?: string;
7587
7756
  }
7588
7757
 
7758
+ /**
7759
+ * Event object of the GeoJsonLayer#contextMenu event.
7760
+ */
7589
7761
  export type GeoJsonLayer$ContextMenuEvent = Event<
7590
7762
  GeoJsonLayer$ContextMenuEventParameters,
7591
7763
  GeoJsonLayer
@@ -9374,7 +9546,9 @@ declare module "sap/ui/vbm/GeoMap" {
9374
9546
  correlationFactor: float
9375
9547
  ): GeoMap;
9376
9548
  }
9377
-
9549
+ /**
9550
+ * Describes the settings that can be provided to the GeoMap constructor.
9551
+ */
9378
9552
  export interface $GeoMapSettings extends $VBISettings {
9379
9553
  /**
9380
9554
  * This is the map configuration for the geo map. The map configuration defines the used maps, the layering
@@ -9543,6 +9717,9 @@ declare module "sap/ui/vbm/GeoMap" {
9543
9717
  keyUp?: (oEvent: GeoMap$KeyUpEvent) => void;
9544
9718
  }
9545
9719
 
9720
+ /**
9721
+ * Parameters of the GeoMap#centerChanged event.
9722
+ */
9546
9723
  export interface GeoMap$CenterChangedEventParameters {
9547
9724
  /**
9548
9725
  * Center point of the map. Format : Lon;Lat;0.0.
@@ -9560,11 +9737,17 @@ declare module "sap/ui/vbm/GeoMap" {
9560
9737
  zoomLevel?: int;
9561
9738
  }
9562
9739
 
9740
+ /**
9741
+ * Event object of the GeoMap#centerChanged event.
9742
+ */
9563
9743
  export type GeoMap$CenterChangedEvent = Event<
9564
9744
  GeoMap$CenterChangedEventParameters,
9565
9745
  GeoMap
9566
9746
  >;
9567
9747
 
9748
+ /**
9749
+ * Parameters of the GeoMap#click event.
9750
+ */
9568
9751
  export interface GeoMap$ClickEventParameters {
9569
9752
  /**
9570
9753
  * Geo coordinates in format "<longitude>;<latitude>;0"
@@ -9572,8 +9755,14 @@ declare module "sap/ui/vbm/GeoMap" {
9572
9755
  pos?: string;
9573
9756
  }
9574
9757
 
9758
+ /**
9759
+ * Event object of the GeoMap#click event.
9760
+ */
9575
9761
  export type GeoMap$ClickEvent = Event<GeoMap$ClickEventParameters, GeoMap>;
9576
9762
 
9763
+ /**
9764
+ * Parameters of the GeoMap#contextMenu event.
9765
+ */
9577
9766
  export interface GeoMap$ContextMenuEventParameters {
9578
9767
  /**
9579
9768
  * Client coordinate X
@@ -9591,11 +9780,17 @@ declare module "sap/ui/vbm/GeoMap" {
9591
9780
  pos?: string;
9592
9781
  }
9593
9782
 
9783
+ /**
9784
+ * Event object of the GeoMap#contextMenu event.
9785
+ */
9594
9786
  export type GeoMap$ContextMenuEvent = Event<
9595
9787
  GeoMap$ContextMenuEventParameters,
9596
9788
  GeoMap
9597
9789
  >;
9598
9790
 
9791
+ /**
9792
+ * Parameters of the GeoMap#drop event.
9793
+ */
9599
9794
  export interface GeoMap$DropEventParameters {
9600
9795
  /**
9601
9796
  * Geo coordinates in format "<longitude>;<latitude>;0"
@@ -9603,8 +9798,14 @@ declare module "sap/ui/vbm/GeoMap" {
9603
9798
  pos?: string;
9604
9799
  }
9605
9800
 
9801
+ /**
9802
+ * Event object of the GeoMap#drop event.
9803
+ */
9606
9804
  export type GeoMap$DropEvent = Event<GeoMap$DropEventParameters, GeoMap>;
9607
9805
 
9806
+ /**
9807
+ * Parameters of the GeoMap#keyDown event.
9808
+ */
9608
9809
  export interface GeoMap$KeyDownEventParameters {
9609
9810
  /**
9610
9811
  * Key value of the key
@@ -9637,11 +9838,17 @@ declare module "sap/ui/vbm/GeoMap" {
9637
9838
  meta?: boolean;
9638
9839
  }
9639
9840
 
9841
+ /**
9842
+ * Event object of the GeoMap#keyDown event.
9843
+ */
9640
9844
  export type GeoMap$KeyDownEvent = Event<
9641
9845
  GeoMap$KeyDownEventParameters,
9642
9846
  GeoMap
9643
9847
  >;
9644
9848
 
9849
+ /**
9850
+ * Parameters of the GeoMap#keyPress event.
9851
+ */
9645
9852
  export interface GeoMap$KeyPressEventParameters {
9646
9853
  /**
9647
9854
  * Key value of the key
@@ -9674,11 +9881,17 @@ declare module "sap/ui/vbm/GeoMap" {
9674
9881
  meta?: boolean;
9675
9882
  }
9676
9883
 
9884
+ /**
9885
+ * Event object of the GeoMap#keyPress event.
9886
+ */
9677
9887
  export type GeoMap$KeyPressEvent = Event<
9678
9888
  GeoMap$KeyPressEventParameters,
9679
9889
  GeoMap
9680
9890
  >;
9681
9891
 
9892
+ /**
9893
+ * Parameters of the GeoMap#keyUp event.
9894
+ */
9682
9895
  export interface GeoMap$KeyUpEventParameters {
9683
9896
  /**
9684
9897
  * Key value of the key
@@ -9711,12 +9924,24 @@ declare module "sap/ui/vbm/GeoMap" {
9711
9924
  meta?: boolean;
9712
9925
  }
9713
9926
 
9927
+ /**
9928
+ * Event object of the GeoMap#keyUp event.
9929
+ */
9714
9930
  export type GeoMap$KeyUpEvent = Event<GeoMap$KeyUpEventParameters, GeoMap>;
9715
9931
 
9932
+ /**
9933
+ * Parameters of the GeoMap#select event.
9934
+ */
9716
9935
  export interface GeoMap$SelectEventParameters {}
9717
9936
 
9937
+ /**
9938
+ * Event object of the GeoMap#select event.
9939
+ */
9718
9940
  export type GeoMap$SelectEvent = Event<GeoMap$SelectEventParameters, GeoMap>;
9719
9941
 
9942
+ /**
9943
+ * Parameters of the GeoMap#zoomChanged event.
9944
+ */
9720
9945
  export interface GeoMap$ZoomChangedEventParameters {
9721
9946
  /**
9722
9947
  * Center point of the map. Format : Lon;Lat;0.0.
@@ -9734,6 +9959,9 @@ declare module "sap/ui/vbm/GeoMap" {
9734
9959
  zoomLevel?: int;
9735
9960
  }
9736
9961
 
9962
+ /**
9963
+ * Event object of the GeoMap#zoomChanged event.
9964
+ */
9737
9965
  export type GeoMap$ZoomChangedEvent = Event<
9738
9966
  GeoMap$ZoomChangedEventParameters,
9739
9967
  GeoMap
@@ -10126,7 +10354,9 @@ declare module "sap/ui/vbm/Heatmap" {
10126
10354
  sValueScale?: string
10127
10355
  ): this;
10128
10356
  }
10129
-
10357
+ /**
10358
+ * Describes the settings that can be provided to the Heatmap constructor.
10359
+ */
10130
10360
  export interface $HeatmapSettings extends $VoAbstractSettings {
10131
10361
  /**
10132
10362
  * Gradient Definition. Can be either provided as Ressource - then it is type string.
@@ -10336,7 +10566,9 @@ declare module "sap/ui/vbm/HeatPoint" {
10336
10566
  sValue?: string
10337
10567
  ): this;
10338
10568
  }
10339
-
10569
+ /**
10570
+ * Describes the settings that can be provided to the HeatPoint constructor.
10571
+ */
10340
10572
  export interface $HeatPointSettings extends $VoBaseSettings {
10341
10573
  /**
10342
10574
  * The position of a sample element of the heatmap. Should be bound. The format is "lon;lat;0"
@@ -10617,7 +10849,9 @@ declare module "sap/ui/vbm/LegendItem" {
10617
10849
  sText?: string
10618
10850
  ): this;
10619
10851
  }
10620
-
10852
+ /**
10853
+ * Describes the settings that can be provided to the LegendItem constructor.
10854
+ */
10621
10855
  export interface $LegendItemSettings extends $ElementSettings {
10622
10856
  /**
10623
10857
  * The color of the legend marker.
@@ -10648,6 +10882,9 @@ declare module "sap/ui/vbm/LegendItem" {
10648
10882
  click?: (oEvent: LegendItem$ClickEvent) => void;
10649
10883
  }
10650
10884
 
10885
+ /**
10886
+ * Parameters of the LegendItem#click event.
10887
+ */
10651
10888
  export interface LegendItem$ClickEventParameters {
10652
10889
  /**
10653
10890
  * Event data object
@@ -10675,6 +10912,9 @@ declare module "sap/ui/vbm/LegendItem" {
10675
10912
  altKey?: boolean;
10676
10913
  }
10677
10914
 
10915
+ /**
10916
+ * Event object of the LegendItem#click event.
10917
+ */
10678
10918
  export type LegendItem$ClickEvent = Event<
10679
10919
  LegendItem$ClickEventParameters,
10680
10920
  LegendItem
@@ -11329,7 +11569,12 @@ declare module "sap/ui/vbm/ListPanel" {
11329
11569
  sSelectionMode?: /* was: sap.m.ListMode */ any
11330
11570
  ): this;
11331
11571
  }
11332
-
11572
+ /**
11573
+ * Describes the settings that can be provided to the ListPanel constructor.
11574
+ *
11575
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
11576
+ * versions.
11577
+ */
11333
11578
  export interface $ListPanelSettings extends $ControlSettings {
11334
11579
  /**
11335
11580
  * Header text
@@ -11389,20 +11634,35 @@ declare module "sap/ui/vbm/ListPanel" {
11389
11634
  itemPress?: (oEvent: ListPanel$ItemPressEvent) => void;
11390
11635
  }
11391
11636
 
11637
+ /**
11638
+ * Parameters of the ListPanel#expand event.
11639
+ */
11392
11640
  export interface ListPanel$ExpandEventParameters {}
11393
11641
 
11642
+ /**
11643
+ * Event object of the ListPanel#expand event.
11644
+ */
11394
11645
  export type ListPanel$ExpandEvent = Event<
11395
11646
  ListPanel$ExpandEventParameters,
11396
11647
  ListPanel
11397
11648
  >;
11398
11649
 
11650
+ /**
11651
+ * Parameters of the ListPanel#headerIconPress event.
11652
+ */
11399
11653
  export interface ListPanel$HeaderIconPressEventParameters {}
11400
11654
 
11655
+ /**
11656
+ * Event object of the ListPanel#headerIconPress event.
11657
+ */
11401
11658
  export type ListPanel$HeaderIconPressEvent = Event<
11402
11659
  ListPanel$HeaderIconPressEventParameters,
11403
11660
  ListPanel
11404
11661
  >;
11405
11662
 
11663
+ /**
11664
+ * Parameters of the ListPanel#itemPress event.
11665
+ */
11406
11666
  export interface ListPanel$ItemPressEventParameters {
11407
11667
  /**
11408
11668
  * The item which fired the pressed event.
@@ -11415,11 +11675,17 @@ declare module "sap/ui/vbm/ListPanel" {
11415
11675
  srcControl?: Control;
11416
11676
  }
11417
11677
 
11678
+ /**
11679
+ * Event object of the ListPanel#itemPress event.
11680
+ */
11418
11681
  export type ListPanel$ItemPressEvent = Event<
11419
11682
  ListPanel$ItemPressEventParameters,
11420
11683
  ListPanel
11421
11684
  >;
11422
11685
 
11686
+ /**
11687
+ * Parameters of the ListPanel#selectionChange event.
11688
+ */
11423
11689
  export interface ListPanel$SelectionChangeEventParameters {
11424
11690
  /**
11425
11691
  * The item whose selection has changed. In `MultiSelect` mode, only the up-most selected item is returned.
@@ -11438,6 +11704,9 @@ declare module "sap/ui/vbm/ListPanel" {
11438
11704
  selected?: boolean;
11439
11705
  }
11440
11706
 
11707
+ /**
11708
+ * Event object of the ListPanel#selectionChange event.
11709
+ */
11441
11710
  export type ListPanel$SelectionChangeEvent = Event<
11442
11711
  ListPanel$SelectionChangeEventParameters,
11443
11712
  ListPanel
@@ -11719,7 +11988,12 @@ declare module "sap/ui/vbm/ListPanelStack" {
11719
11988
  sWidth?: CSSSize
11720
11989
  ): this;
11721
11990
  }
11722
-
11991
+ /**
11992
+ * Describes the settings that can be provided to the ListPanelStack constructor.
11993
+ *
11994
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
11995
+ * versions.
11996
+ */
11723
11997
  export interface $ListPanelStackSettings extends $ControlSettings {
11724
11998
  /**
11725
11999
  * Control width
@@ -12058,7 +12332,9 @@ declare module "sap/ui/vbm/MapContainer" {
12058
12332
  }
12059
12333
  ): object;
12060
12334
  }
12061
-
12335
+ /**
12336
+ * Describes the settings that can be provided to the MapContainer constructor.
12337
+ */
12062
12338
  export interface $MapContainerSettings extends $ContainerBaseSettings {
12063
12339
  /**
12064
12340
  * Show navbar
@@ -12317,7 +12593,9 @@ declare module "sap/ui/vbm/Pie" {
12317
12593
  sScale?: string
12318
12594
  ): this;
12319
12595
  }
12320
-
12596
+ /**
12597
+ * Describes the settings that can be provided to the Pie constructor.
12598
+ */
12321
12599
  export interface $PieSettings extends $VoBaseSettings {
12322
12600
  /**
12323
12601
  * The position of the Pie.
@@ -12574,7 +12852,9 @@ declare module "sap/ui/vbm/PieItem" {
12574
12852
  sValue?: string
12575
12853
  ): this;
12576
12854
  }
12577
-
12855
+ /**
12856
+ * Describes the settings that can be provided to the PieItem constructor.
12857
+ */
12578
12858
  export interface $PieItemSettings extends $ElementSettings {
12579
12859
  /**
12580
12860
  * The name of the Pie item.
@@ -12598,8 +12878,20 @@ declare module "sap/ui/vbm/PieItem" {
12598
12878
  click?: (oEvent: Event) => void;
12599
12879
  }
12600
12880
 
12881
+ /**
12882
+ * Parameters of the PieItem#click event.
12883
+ *
12884
+ * @deprecated (since 1.31) - This event should no longer be used. Click event from Pie and Pies now includes
12885
+ * Pie Item index when event occurs.
12886
+ */
12601
12887
  export interface PieItem$ClickEventParameters {}
12602
12888
 
12889
+ /**
12890
+ * Event object of the PieItem#click event.
12891
+ *
12892
+ * @deprecated (since 1.31) - This event should no longer be used. Click event from Pie and Pies now includes
12893
+ * Pie Item index when event occurs.
12894
+ */
12603
12895
  export type PieItem$ClickEvent = Event<PieItem$ClickEventParameters, PieItem>;
12604
12896
  }
12605
12897
 
@@ -12824,7 +13116,9 @@ declare module "sap/ui/vbm/Pies" {
12824
13116
  bScaleChangeable?: boolean
12825
13117
  ): this;
12826
13118
  }
12827
-
13119
+ /**
13120
+ * Describes the settings that can be provided to the Pies constructor.
13121
+ */
12828
13122
  export interface $PiesSettings extends $VoAggregationSettings {
12829
13123
  /**
12830
13124
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -13296,7 +13590,9 @@ declare module "sap/ui/vbm/Region" {
13296
13590
  bSelect?: boolean
13297
13591
  ): this;
13298
13592
  }
13299
-
13593
+ /**
13594
+ * Describes the settings that can be provided to the Region constructor.
13595
+ */
13300
13596
  export interface $RegionSettings extends $ElementSettings {
13301
13597
  /**
13302
13598
  * The color, this must be provided in the rgba(r,g,b,a) format.
@@ -13344,6 +13640,9 @@ declare module "sap/ui/vbm/Region" {
13344
13640
  contextMenu?: (oEvent: Region$ContextMenuEvent) => void;
13345
13641
  }
13346
13642
 
13643
+ /**
13644
+ * Parameters of the Region#click event.
13645
+ */
13347
13646
  export interface Region$ClickEventParameters {
13348
13647
  /**
13349
13648
  * The region code.
@@ -13351,8 +13650,14 @@ declare module "sap/ui/vbm/Region" {
13351
13650
  code?: string;
13352
13651
  }
13353
13652
 
13653
+ /**
13654
+ * Event object of the Region#click event.
13655
+ */
13354
13656
  export type Region$ClickEvent = Event<Region$ClickEventParameters, Region>;
13355
13657
 
13658
+ /**
13659
+ * Parameters of the Region#contextMenu event.
13660
+ */
13356
13661
  export interface Region$ContextMenuEventParameters {
13357
13662
  /**
13358
13663
  * The region code.
@@ -13360,6 +13665,9 @@ declare module "sap/ui/vbm/Region" {
13360
13665
  code?: string;
13361
13666
  }
13362
13667
 
13668
+ /**
13669
+ * Event object of the Region#contextMenu event.
13670
+ */
13363
13671
  export type Region$ContextMenuEvent = Event<
13364
13672
  Region$ContextMenuEventParameters,
13365
13673
  Region
@@ -13527,7 +13835,9 @@ declare module "sap/ui/vbm/Resource" {
13527
13835
  sValue?: string
13528
13836
  ): this;
13529
13837
  }
13530
-
13838
+ /**
13839
+ * Describes the settings that can be provided to the Resource constructor.
13840
+ */
13531
13841
  export interface $ResourceSettings extends $ElementSettings {
13532
13842
  /**
13533
13843
  * Value of the resource. Base64 endode binary.
@@ -14154,7 +14464,9 @@ declare module "sap/ui/vbm/Route" {
14154
14464
  sStart?: string
14155
14465
  ): this;
14156
14466
  }
14157
-
14467
+ /**
14468
+ * Describes the settings that can be provided to the Route constructor.
14469
+ */
14158
14470
  export interface $RouteSettings extends $VoBaseSettings {
14159
14471
  /**
14160
14472
  * The position array of the route. The format is "lon0;lat0;0;...lonN;latN;0".
@@ -14843,7 +15155,9 @@ declare module "sap/ui/vbm/Routes" {
14843
15155
  bPosChangeable?: boolean
14844
15156
  ): this;
14845
15157
  }
14846
-
15158
+ /**
15159
+ * Describes the settings that can be provided to the Routes constructor.
15160
+ */
14847
15161
  export interface $RoutesSettings extends $VoAggregationSettings {
14848
15162
  /**
14849
15163
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -14890,22 +15204,40 @@ declare module "sap/ui/vbm/Routes" {
14890
15204
  drop?: (oEvent: Event) => void;
14891
15205
  }
14892
15206
 
15207
+ /**
15208
+ * Parameters of the Routes#click event.
15209
+ */
14893
15210
  export interface Routes$ClickEventParameters
14894
15211
  extends VoAggregation$ClickEventParameters {}
14895
15212
 
15213
+ /**
15214
+ * Event object of the Routes#click event.
15215
+ */
14896
15216
  export type Routes$ClickEvent = Event<Routes$ClickEventParameters, Routes>;
14897
15217
 
15218
+ /**
15219
+ * Parameters of the Routes#contextMenu event.
15220
+ */
14898
15221
  export interface Routes$ContextMenuEventParameters
14899
15222
  extends VoAggregation$ContextMenuEventParameters {}
14900
15223
 
15224
+ /**
15225
+ * Event object of the Routes#contextMenu event.
15226
+ */
14901
15227
  export type Routes$ContextMenuEvent = Event<
14902
15228
  Routes$ContextMenuEventParameters,
14903
15229
  Routes
14904
15230
  >;
14905
15231
 
15232
+ /**
15233
+ * Parameters of the Routes#drop event.
15234
+ */
14906
15235
  export interface Routes$DropEventParameters
14907
15236
  extends VoAggregation$DropEventParameters {}
14908
15237
 
15238
+ /**
15239
+ * Event object of the Routes#drop event.
15240
+ */
14909
15241
  export type Routes$DropEvent = Event<Routes$DropEventParameters, Routes>;
14910
15242
  }
14911
15243
 
@@ -15485,7 +15817,9 @@ declare module "sap/ui/vbm/Spot" {
15485
15817
  sType?: SemanticType | keyof typeof SemanticType
15486
15818
  ): this;
15487
15819
  }
15488
-
15820
+ /**
15821
+ * Describes the settings that can be provided to the Spot constructor.
15822
+ */
15489
15823
  export interface $SpotSettings extends $VoBaseSettings {
15490
15824
  /**
15491
15825
  * The position of the spot. The format is "lon;lat;0"
@@ -15957,7 +16291,9 @@ declare module "sap/ui/vbm/Spots" {
15957
16291
  bScaleChangeable?: boolean
15958
16292
  ): this;
15959
16293
  }
15960
-
16294
+ /**
16295
+ * Describes the settings that can be provided to the Spots constructor.
16296
+ */
15961
16297
  export interface $SpotsSettings extends $VoAggregationSettings {
15962
16298
  /**
15963
16299
  * Set to true if position may be changed at runtime. The actual changeability is control on each aggregated
@@ -17403,7 +17739,9 @@ declare module "sap/ui/vbm/VBI" {
17403
17739
  iLod: int
17404
17740
  ): void;
17405
17741
  }
17406
-
17742
+ /**
17743
+ * Describes the settings that can be provided to the VBI constructor.
17744
+ */
17407
17745
  export interface $VBISettings extends $ControlSettings {
17408
17746
  /**
17409
17747
  * Set the width of the control.
@@ -17528,6 +17866,9 @@ declare module "sap/ui/vbm/VBI" {
17528
17866
  containerDestroyed?: (oEvent: VBI$ContainerDestroyedEvent) => void;
17529
17867
  }
17530
17868
 
17869
+ /**
17870
+ * Parameters of the VBI#changeTrackingMode event.
17871
+ */
17531
17872
  export interface VBI$ChangeTrackingModeEventParameters {
17532
17873
  /**
17533
17874
  * tracking mode to set or reset
@@ -17540,11 +17881,17 @@ declare module "sap/ui/vbm/VBI" {
17540
17881
  bSet?: boolean;
17541
17882
  }
17542
17883
 
17884
+ /**
17885
+ * Event object of the VBI#changeTrackingMode event.
17886
+ */
17543
17887
  export type VBI$ChangeTrackingModeEvent = Event<
17544
17888
  VBI$ChangeTrackingModeEventParameters,
17545
17889
  VBI
17546
17890
  >;
17547
17891
 
17892
+ /**
17893
+ * Parameters of the VBI#closeWindow event.
17894
+ */
17548
17895
  export interface VBI$CloseWindowEventParameters {
17549
17896
  /**
17550
17897
  * DomRef of placeholder Div for content.
@@ -17557,8 +17904,14 @@ declare module "sap/ui/vbm/VBI" {
17557
17904
  id?: string;
17558
17905
  }
17559
17906
 
17907
+ /**
17908
+ * Event object of the VBI#closeWindow event.
17909
+ */
17560
17910
  export type VBI$CloseWindowEvent = Event<VBI$CloseWindowEventParameters, VBI>;
17561
17911
 
17912
+ /**
17913
+ * Parameters of the VBI#containerCreated event.
17914
+ */
17562
17915
  export interface VBI$ContainerCreatedEventParameters {
17563
17916
  /**
17564
17917
  * DomRef of placeholder Div to render into.
@@ -17571,11 +17924,17 @@ declare module "sap/ui/vbm/VBI" {
17571
17924
  id?: string;
17572
17925
  }
17573
17926
 
17927
+ /**
17928
+ * Event object of the VBI#containerCreated event.
17929
+ */
17574
17930
  export type VBI$ContainerCreatedEvent = Event<
17575
17931
  VBI$ContainerCreatedEventParameters,
17576
17932
  VBI
17577
17933
  >;
17578
17934
 
17935
+ /**
17936
+ * Parameters of the VBI#containerDestroyed event.
17937
+ */
17579
17938
  export interface VBI$ContainerDestroyedEventParameters {
17580
17939
  /**
17581
17940
  * DomRef of placeholder Div of content.
@@ -17588,11 +17947,17 @@ declare module "sap/ui/vbm/VBI" {
17588
17947
  id?: string;
17589
17948
  }
17590
17949
 
17950
+ /**
17951
+ * Event object of the VBI#containerDestroyed event.
17952
+ */
17591
17953
  export type VBI$ContainerDestroyedEvent = Event<
17592
17954
  VBI$ContainerDestroyedEventParameters,
17593
17955
  VBI
17594
17956
  >;
17595
17957
 
17958
+ /**
17959
+ * Parameters of the VBI#move event.
17960
+ */
17596
17961
  export interface VBI$MoveEventParameters {
17597
17962
  /**
17598
17963
  * Canvas object to render into.
@@ -17600,8 +17965,14 @@ declare module "sap/ui/vbm/VBI" {
17600
17965
  canvas?: object;
17601
17966
  }
17602
17967
 
17968
+ /**
17969
+ * Event object of the VBI#move event.
17970
+ */
17603
17971
  export type VBI$MoveEvent = Event<VBI$MoveEventParameters, VBI>;
17604
17972
 
17973
+ /**
17974
+ * Parameters of the VBI#openWindow event.
17975
+ */
17605
17976
  export interface VBI$OpenWindowEventParameters {
17606
17977
  /**
17607
17978
  * DomRef of placeholder Div to render into.
@@ -17614,8 +17985,14 @@ declare module "sap/ui/vbm/VBI" {
17614
17985
  id?: string;
17615
17986
  }
17616
17987
 
17988
+ /**
17989
+ * Event object of the VBI#openWindow event.
17990
+ */
17617
17991
  export type VBI$OpenWindowEvent = Event<VBI$OpenWindowEventParameters, VBI>;
17618
17992
 
17993
+ /**
17994
+ * Parameters of the VBI#render event.
17995
+ */
17619
17996
  export interface VBI$RenderEventParameters {
17620
17997
  /**
17621
17998
  * Canvas object to render into.
@@ -17623,8 +18000,14 @@ declare module "sap/ui/vbm/VBI" {
17623
18000
  canvas?: object;
17624
18001
  }
17625
18002
 
18003
+ /**
18004
+ * Event object of the VBI#render event.
18005
+ */
17626
18006
  export type VBI$RenderEvent = Event<VBI$RenderEventParameters, VBI>;
17627
18007
 
18008
+ /**
18009
+ * Parameters of the VBI#submit event.
18010
+ */
17628
18011
  export interface VBI$SubmitEventParameters {
17629
18012
  /**
17630
18013
  * JSON (or possibly XML and case the plugin is used) string describing the delta state of Visual Business
@@ -17633,8 +18016,14 @@ declare module "sap/ui/vbm/VBI" {
17633
18016
  data?: string;
17634
18017
  }
17635
18018
 
18019
+ /**
18020
+ * Event object of the VBI#submit event.
18021
+ */
17636
18022
  export type VBI$SubmitEvent = Event<VBI$SubmitEventParameters, VBI>;
17637
18023
 
18024
+ /**
18025
+ * Parameters of the VBI#thumbnailClick event.
18026
+ */
17638
18027
  export interface VBI$ThumbnailClickEventParameters {
17639
18028
  /**
17640
18029
  * Geo coordinates in format "lon;lat;0"
@@ -17647,11 +18036,17 @@ declare module "sap/ui/vbm/VBI" {
17647
18036
  zoomLevel?: int;
17648
18037
  }
17649
18038
 
18039
+ /**
18040
+ * Event object of the VBI#thumbnailClick event.
18041
+ */
17650
18042
  export type VBI$ThumbnailClickEvent = Event<
17651
18043
  VBI$ThumbnailClickEventParameters,
17652
18044
  VBI
17653
18045
  >;
17654
18046
 
18047
+ /**
18048
+ * Parameters of the VBI#zoom event.
18049
+ */
17655
18050
  export interface VBI$ZoomEventParameters {
17656
18051
  /**
17657
18052
  * Canvas object to render into
@@ -17659,6 +18054,9 @@ declare module "sap/ui/vbm/VBI" {
17659
18054
  canvas?: object;
17660
18055
  }
17661
18056
 
18057
+ /**
18058
+ * Event object of the VBI#zoom event.
18059
+ */
17662
18060
  export type VBI$ZoomEvent = Event<VBI$ZoomEventParameters, VBI>;
17663
18061
  }
17664
18062
 
@@ -17908,7 +18306,9 @@ declare module "sap/ui/vbm/Viewport" {
17908
18306
  sWidth?: CSSSize
17909
18307
  ): this;
17910
18308
  }
17911
-
18309
+ /**
18310
+ * Describes the settings that can be provided to the Viewport constructor.
18311
+ */
17912
18312
  export interface $ViewportSettings extends $ControlSettings {
17913
18313
  /**
17914
18314
  * Viewport width
@@ -17936,6 +18336,9 @@ declare module "sap/ui/vbm/Viewport" {
17936
18336
  cameraChange?: (oEvent: Viewport$CameraChangeEvent) => void;
17937
18337
  }
17938
18338
 
18339
+ /**
18340
+ * Parameters of the Viewport#cameraChange event.
18341
+ */
17939
18342
  export interface Viewport$CameraChangeEventParameters {
17940
18343
  /**
17941
18344
  * Current position in camera history
@@ -17948,6 +18351,9 @@ declare module "sap/ui/vbm/Viewport" {
17948
18351
  historyLength?: int;
17949
18352
  }
17950
18353
 
18354
+ /**
18355
+ * Event object of the Viewport#cameraChange event.
18356
+ */
17951
18357
  export type Viewport$CameraChangeEvent = Event<
17952
18358
  Viewport$CameraChangeEventParameters,
17953
18359
  Viewport
@@ -18054,7 +18460,9 @@ declare module "sap/ui/vbm/VoAbstract" {
18054
18460
  oMenu: Menu
18055
18461
  ): void;
18056
18462
  }
18057
-
18463
+ /**
18464
+ * Describes the settings that can be provided to the VoAbstract constructor.
18465
+ */
18058
18466
  export interface $VoAbstractSettings extends $ElementSettings {}
18059
18467
  }
18060
18468
 
@@ -18886,7 +19294,9 @@ declare module "sap/ui/vbm/VoAggregation" {
18886
19294
  sMinSel?: string
18887
19295
  ): this;
18888
19296
  }
18889
-
19297
+ /**
19298
+ * Describes the settings that can be provided to the VoAggregation constructor.
19299
+ */
18890
19300
  export interface $VoAggregationSettings extends $VoAbstractSettings {
18891
19301
  /**
18892
19302
  * Selection cardinality: minimum selected elements ("0" or "1" )
@@ -18945,6 +19355,9 @@ declare module "sap/ui/vbm/VoAggregation" {
18945
19355
  drop?: (oEvent: VoAggregation$DropEvent) => void;
18946
19356
  }
18947
19357
 
19358
+ /**
19359
+ * Parameters of the VoAggregation#click event.
19360
+ */
18948
19361
  export interface VoAggregation$ClickEventParameters {
18949
19362
  /**
18950
19363
  * Clicked instance
@@ -18952,11 +19365,17 @@ declare module "sap/ui/vbm/VoAggregation" {
18952
19365
  instance?: VoBase;
18953
19366
  }
18954
19367
 
19368
+ /**
19369
+ * Event object of the VoAggregation#click event.
19370
+ */
18955
19371
  export type VoAggregation$ClickEvent = Event<
18956
19372
  VoAggregation$ClickEventParameters,
18957
19373
  VoAggregation
18958
19374
  >;
18959
19375
 
19376
+ /**
19377
+ * Parameters of the VoAggregation#contextMenu event.
19378
+ */
18960
19379
  export interface VoAggregation$ContextMenuEventParameters {
18961
19380
  /**
18962
19381
  * Clicked instance
@@ -18969,11 +19388,17 @@ declare module "sap/ui/vbm/VoAggregation" {
18969
19388
  menu?: Menu;
18970
19389
  }
18971
19390
 
19391
+ /**
19392
+ * Event object of the VoAggregation#contextMenu event.
19393
+ */
18972
19394
  export type VoAggregation$ContextMenuEvent = Event<
18973
19395
  VoAggregation$ContextMenuEventParameters,
18974
19396
  VoAggregation
18975
19397
  >;
18976
19398
 
19399
+ /**
19400
+ * Parameters of the VoAggregation#deselect event.
19401
+ */
18977
19402
  export interface VoAggregation$DeselectEventParameters {
18978
19403
  /**
18979
19404
  * Array of deselected VOs
@@ -18981,11 +19406,17 @@ declare module "sap/ui/vbm/VoAggregation" {
18981
19406
  deselected?: any[];
18982
19407
  }
18983
19408
 
19409
+ /**
19410
+ * Event object of the VoAggregation#deselect event.
19411
+ */
18984
19412
  export type VoAggregation$DeselectEvent = Event<
18985
19413
  VoAggregation$DeselectEventParameters,
18986
19414
  VoAggregation
18987
19415
  >;
18988
19416
 
19417
+ /**
19418
+ * Parameters of the VoAggregation#drop event.
19419
+ */
18989
19420
  export interface VoAggregation$DropEventParameters {
18990
19421
  /**
18991
19422
  * Drop target instance
@@ -18998,11 +19429,17 @@ declare module "sap/ui/vbm/VoAggregation" {
18998
19429
  dragSource?: VoBase;
18999
19430
  }
19000
19431
 
19432
+ /**
19433
+ * Event object of the VoAggregation#drop event.
19434
+ */
19001
19435
  export type VoAggregation$DropEvent = Event<
19002
19436
  VoAggregation$DropEventParameters,
19003
19437
  VoAggregation
19004
19438
  >;
19005
19439
 
19440
+ /**
19441
+ * Parameters of the VoAggregation#handleClick event.
19442
+ */
19006
19443
  export interface VoAggregation$HandleClickEventParameters {
19007
19444
  /**
19008
19445
  * Clicked instance
@@ -19015,11 +19452,17 @@ declare module "sap/ui/vbm/VoAggregation" {
19015
19452
  handle?: int;
19016
19453
  }
19017
19454
 
19455
+ /**
19456
+ * Event object of the VoAggregation#handleClick event.
19457
+ */
19018
19458
  export type VoAggregation$HandleClickEvent = Event<
19019
19459
  VoAggregation$HandleClickEventParameters,
19020
19460
  VoAggregation
19021
19461
  >;
19022
19462
 
19463
+ /**
19464
+ * Parameters of the VoAggregation#handleContextMenu event.
19465
+ */
19023
19466
  export interface VoAggregation$HandleContextMenuEventParameters {
19024
19467
  /**
19025
19468
  * Clicked instance
@@ -19037,11 +19480,17 @@ declare module "sap/ui/vbm/VoAggregation" {
19037
19480
  handle?: int;
19038
19481
  }
19039
19482
 
19483
+ /**
19484
+ * Event object of the VoAggregation#handleContextMenu event.
19485
+ */
19040
19486
  export type VoAggregation$HandleContextMenuEvent = Event<
19041
19487
  VoAggregation$HandleContextMenuEventParameters,
19042
19488
  VoAggregation
19043
19489
  >;
19044
19490
 
19491
+ /**
19492
+ * Parameters of the VoAggregation#handleMoved event.
19493
+ */
19045
19494
  export interface VoAggregation$HandleMovedEventParameters {
19046
19495
  /**
19047
19496
  * Clicked instance
@@ -19054,11 +19503,17 @@ declare module "sap/ui/vbm/VoAggregation" {
19054
19503
  handle?: int;
19055
19504
  }
19056
19505
 
19506
+ /**
19507
+ * Event object of the VoAggregation#handleMoved event.
19508
+ */
19057
19509
  export type VoAggregation$HandleMovedEvent = Event<
19058
19510
  VoAggregation$HandleMovedEventParameters,
19059
19511
  VoAggregation
19060
19512
  >;
19061
19513
 
19514
+ /**
19515
+ * Parameters of the VoAggregation#select event.
19516
+ */
19062
19517
  export interface VoAggregation$SelectEventParameters {
19063
19518
  /**
19064
19519
  * Array of selected VOs
@@ -19066,6 +19521,9 @@ declare module "sap/ui/vbm/VoAggregation" {
19066
19521
  selected?: any[];
19067
19522
  }
19068
19523
 
19524
+ /**
19525
+ * Event object of the VoAggregation#select event.
19526
+ */
19069
19527
  export type VoAggregation$SelectEvent = Event<
19070
19528
  VoAggregation$SelectEventParameters,
19071
19529
  VoAggregation
@@ -20148,7 +20606,9 @@ declare module "sap/ui/vbm/VoBase" {
20148
20606
  sSelectColor?: string
20149
20607
  ): this;
20150
20608
  }
20151
-
20609
+ /**
20610
+ * Describes the settings that can be provided to the VoBase constructor.
20611
+ */
20152
20612
  export interface $VoBaseSettings extends $ElementSettings {
20153
20613
  /**
20154
20614
  * Unique identifier for the object. This is optional. If not provided the default identifier sId is used.
@@ -20289,10 +20749,19 @@ declare module "sap/ui/vbm/VoBase" {
20289
20749
  drop?: (oEvent: VoBase$DropEvent) => void;
20290
20750
  }
20291
20751
 
20752
+ /**
20753
+ * Parameters of the VoBase#click event.
20754
+ */
20292
20755
  export interface VoBase$ClickEventParameters {}
20293
20756
 
20757
+ /**
20758
+ * Event object of the VoBase#click event.
20759
+ */
20294
20760
  export type VoBase$ClickEvent = Event<VoBase$ClickEventParameters, VoBase>;
20295
20761
 
20762
+ /**
20763
+ * Parameters of the VoBase#contextMenu event.
20764
+ */
20296
20765
  export interface VoBase$ContextMenuEventParameters {
20297
20766
  /**
20298
20767
  * Menu to open
@@ -20300,11 +20769,17 @@ declare module "sap/ui/vbm/VoBase" {
20300
20769
  menu?: Menu;
20301
20770
  }
20302
20771
 
20772
+ /**
20773
+ * Event object of the VoBase#contextMenu event.
20774
+ */
20303
20775
  export type VoBase$ContextMenuEvent = Event<
20304
20776
  VoBase$ContextMenuEventParameters,
20305
20777
  VoBase
20306
20778
  >;
20307
20779
 
20780
+ /**
20781
+ * Parameters of the VoBase#drop event.
20782
+ */
20308
20783
  export interface VoBase$DropEventParameters {
20309
20784
  /**
20310
20785
  * Dragged instance
@@ -20312,8 +20787,14 @@ declare module "sap/ui/vbm/VoBase" {
20312
20787
  dragSource?: VoBase;
20313
20788
  }
20314
20789
 
20790
+ /**
20791
+ * Event object of the VoBase#drop event.
20792
+ */
20315
20793
  export type VoBase$DropEvent = Event<VoBase$DropEventParameters, VoBase>;
20316
20794
 
20795
+ /**
20796
+ * Parameters of the VoBase#handleClick event.
20797
+ */
20317
20798
  export interface VoBase$HandleClickEventParameters {
20318
20799
  /**
20319
20800
  * The number of the handle where the click occured. Handles are numbered zero based.
@@ -20321,11 +20802,17 @@ declare module "sap/ui/vbm/VoBase" {
20321
20802
  handle?: int;
20322
20803
  }
20323
20804
 
20805
+ /**
20806
+ * Event object of the VoBase#handleClick event.
20807
+ */
20324
20808
  export type VoBase$HandleClickEvent = Event<
20325
20809
  VoBase$HandleClickEventParameters,
20326
20810
  VoBase
20327
20811
  >;
20328
20812
 
20813
+ /**
20814
+ * Parameters of the VoBase#handleContextMenu event.
20815
+ */
20329
20816
  export interface VoBase$HandleContextMenuEventParameters {
20330
20817
  /**
20331
20818
  * The number of the handle where the click occured. Handles are numbered zero based.
@@ -20338,11 +20825,17 @@ declare module "sap/ui/vbm/VoBase" {
20338
20825
  menu?: Menu;
20339
20826
  }
20340
20827
 
20828
+ /**
20829
+ * Event object of the VoBase#handleContextMenu event.
20830
+ */
20341
20831
  export type VoBase$HandleContextMenuEvent = Event<
20342
20832
  VoBase$HandleContextMenuEventParameters,
20343
20833
  VoBase
20344
20834
  >;
20345
20835
 
20836
+ /**
20837
+ * Parameters of the VoBase#handleMoved event.
20838
+ */
20346
20839
  export interface VoBase$HandleMovedEventParameters {
20347
20840
  /**
20348
20841
  * The number of the handle where the click occured. Handles are numbered zero based.
@@ -20350,6 +20843,9 @@ declare module "sap/ui/vbm/VoBase" {
20350
20843
  handle?: int;
20351
20844
  }
20352
20845
 
20846
+ /**
20847
+ * Event object of the VoBase#handleMoved event.
20848
+ */
20353
20849
  export type VoBase$HandleMovedEvent = Event<
20354
20850
  VoBase$HandleMovedEventParameters,
20355
20851
  VoBase