@sapui5/types 1.116.0 → 1.117.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +114 -30
  5. package/types/sap.chart.d.ts +29 -8
  6. package/types/sap.collaboration.d.ts +5 -2
  7. package/types/sap.esh.search.ui.d.ts +9 -3
  8. package/types/sap.f.d.ts +130 -36
  9. package/types/sap.fe.core.d.ts +21 -11
  10. package/types/sap.fe.macros.d.ts +160 -9
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
  13. package/types/sap.fe.test.d.ts +1 -1
  14. package/types/sap.fe.tools.d.ts +1 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +282 -1118
  17. package/types/sap.insights.d.ts +248 -2
  18. package/types/sap.landvisz.d.ts +53 -14
  19. package/types/sap.m.d.ts +1793 -403
  20. package/types/sap.makit.d.ts +22 -7
  21. package/types/sap.me.d.ts +33 -9
  22. package/types/sap.ndc.d.ts +20 -15
  23. package/types/sap.ovp.d.ts +7 -97
  24. package/types/sap.rules.ui.d.ts +17 -5
  25. package/types/sap.sac.df.d.ts +90 -1
  26. package/types/sap.suite.ui.commons.d.ts +439 -108
  27. package/types/sap.suite.ui.generic.template.d.ts +5 -2
  28. package/types/sap.suite.ui.microchart.d.ts +69 -18
  29. package/types/sap.tnt.d.ts +13 -4
  30. package/types/sap.ui.codeeditor.d.ts +9 -3
  31. package/types/sap.ui.commons.d.ts +236 -68
  32. package/types/sap.ui.comp.d.ts +544 -169
  33. package/types/sap.ui.core.d.ts +934 -264
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +204 -3
  36. package/types/sap.ui.fl.d.ts +21 -6
  37. package/types/sap.ui.generic.app.d.ts +1 -1
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +71 -13
  40. package/types/sap.ui.layout.d.ts +95 -30
  41. package/types/sap.ui.mdc.d.ts +296 -98
  42. package/types/sap.ui.richtexteditor.d.ts +17 -5
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +9 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +118 -24
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +209 -53
  49. package/types/sap.ui.ux3.d.ts +220 -61
  50. package/types/sap.ui.vbm.d.ts +184 -61
  51. package/types/sap.ui.vk.d.ts +544 -139
  52. package/types/sap.ui.vtm.d.ts +130 -37
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +137 -35
  55. package/types/sap.ui.webc.main.d.ts +331 -100
  56. package/types/sap.uiext.inbox.d.ts +50 -14
  57. package/types/sap.ushell.d.ts +625 -46
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +42 -12
  60. package/types/sap.viz.d.ts +521 -137
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +29 -8
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -510,19 +510,31 @@ declare module "sap/ui/vk/AnimationPlayer" {
510
510
 
511
511
  export interface AnimationPlayer$BeforeTimeChangedEventParameters {}
512
512
 
513
- export type AnimationPlayer$BeforeTimeChangedEvent = Event<AnimationPlayer$BeforeTimeChangedEventParameters>;
513
+ export type AnimationPlayer$BeforeTimeChangedEvent = Event<
514
+ AnimationPlayer$BeforeTimeChangedEventParameters,
515
+ AnimationPlayer
516
+ >;
514
517
 
515
518
  export interface AnimationPlayer$StateChangedEventParameters {}
516
519
 
517
- export type AnimationPlayer$StateChangedEvent = Event<AnimationPlayer$StateChangedEventParameters>;
520
+ export type AnimationPlayer$StateChangedEvent = Event<
521
+ AnimationPlayer$StateChangedEventParameters,
522
+ AnimationPlayer
523
+ >;
518
524
 
519
525
  export interface AnimationPlayer$TimeChangedEventParameters {}
520
526
 
521
- export type AnimationPlayer$TimeChangedEvent = Event<AnimationPlayer$TimeChangedEventParameters>;
527
+ export type AnimationPlayer$TimeChangedEvent = Event<
528
+ AnimationPlayer$TimeChangedEventParameters,
529
+ AnimationPlayer
530
+ >;
522
531
 
523
532
  export interface AnimationPlayer$ViewActivatedEventParameters {}
524
533
 
525
- export type AnimationPlayer$ViewActivatedEvent = Event<AnimationPlayer$ViewActivatedEventParameters>;
534
+ export type AnimationPlayer$ViewActivatedEvent = Event<
535
+ AnimationPlayer$ViewActivatedEventParameters,
536
+ AnimationPlayer
537
+ >;
526
538
  }
527
539
 
528
540
  declare module "sap/ui/vk/Annotation" {
@@ -2360,7 +2372,10 @@ declare module "sap/ui/vk/ContentConnector" {
2360
2372
  failureReason?: any;
2361
2373
  }
2362
2374
 
2363
- export type ContentConnector$ContentChangesFinishedEvent = Event<ContentConnector$ContentChangesFinishedEventParameters>;
2375
+ export type ContentConnector$ContentChangesFinishedEvent = Event<
2376
+ ContentConnector$ContentChangesFinishedEventParameters,
2377
+ ContentConnector
2378
+ >;
2364
2379
 
2365
2380
  export interface ContentConnector$ContentChangesProgressEventParameters {
2366
2381
  /**
@@ -2381,11 +2396,17 @@ declare module "sap/ui/vk/ContentConnector" {
2381
2396
  source?: any;
2382
2397
  }
2383
2398
 
2384
- export type ContentConnector$ContentChangesProgressEvent = Event<ContentConnector$ContentChangesProgressEventParameters>;
2399
+ export type ContentConnector$ContentChangesProgressEvent = Event<
2400
+ ContentConnector$ContentChangesProgressEventParameters,
2401
+ ContentConnector
2402
+ >;
2385
2403
 
2386
2404
  export interface ContentConnector$ContentChangesStartedEventParameters {}
2387
2405
 
2388
- export type ContentConnector$ContentChangesStartedEvent = Event<ContentConnector$ContentChangesStartedEventParameters>;
2406
+ export type ContentConnector$ContentChangesStartedEvent = Event<
2407
+ ContentConnector$ContentChangesStartedEventParameters,
2408
+ ContentConnector
2409
+ >;
2389
2410
 
2390
2411
  export interface ContentConnector$ContentDestroyingEventParameters {
2391
2412
  /**
@@ -2402,7 +2423,10 @@ declare module "sap/ui/vk/ContentConnector" {
2402
2423
  preventGarbageCollection?: Function;
2403
2424
  }
2404
2425
 
2405
- export type ContentConnector$ContentDestroyingEvent = Event<ContentConnector$ContentDestroyingEventParameters>;
2426
+ export type ContentConnector$ContentDestroyingEvent = Event<
2427
+ ContentConnector$ContentDestroyingEventParameters,
2428
+ ContentConnector
2429
+ >;
2406
2430
 
2407
2431
  export interface ContentConnector$ContentLoadingFinishedEventParameters {
2408
2432
  source?: any;
@@ -2410,7 +2434,10 @@ declare module "sap/ui/vk/ContentConnector" {
2410
2434
  node?: any;
2411
2435
  }
2412
2436
 
2413
- export type ContentConnector$ContentLoadingFinishedEvent = Event<ContentConnector$ContentLoadingFinishedEventParameters>;
2437
+ export type ContentConnector$ContentLoadingFinishedEvent = Event<
2438
+ ContentConnector$ContentLoadingFinishedEventParameters,
2439
+ ContentConnector
2440
+ >;
2414
2441
 
2415
2442
  export interface ContentConnector$ContentReplacedEventParameters {
2416
2443
  /**
@@ -2428,7 +2455,10 @@ declare module "sap/ui/vk/ContentConnector" {
2428
2455
  oldContent?: any;
2429
2456
  }
2430
2457
 
2431
- export type ContentConnector$ContentReplacedEvent = Event<ContentConnector$ContentReplacedEventParameters>;
2458
+ export type ContentConnector$ContentReplacedEvent = Event<
2459
+ ContentConnector$ContentReplacedEventParameters,
2460
+ ContentConnector
2461
+ >;
2432
2462
  }
2433
2463
 
2434
2464
  declare module "sap/ui/vk/BaseNodeProxy" {
@@ -3443,11 +3473,17 @@ declare module "sap/ui/vk/ContainerBase" {
3443
3473
  selectedItemId?: string;
3444
3474
  }
3445
3475
 
3446
- export type ContainerBase$ContentChangeEvent = Event<ContainerBase$ContentChangeEventParameters>;
3476
+ export type ContainerBase$ContentChangeEvent = Event<
3477
+ ContainerBase$ContentChangeEventParameters,
3478
+ ContainerBase
3479
+ >;
3447
3480
 
3448
3481
  export interface ContainerBase$SettingsPressedEventParameters {}
3449
3482
 
3450
- export type ContainerBase$SettingsPressedEvent = Event<ContainerBase$SettingsPressedEventParameters>;
3483
+ export type ContainerBase$SettingsPressedEvent = Event<
3484
+ ContainerBase$SettingsPressedEventParameters,
3485
+ ContainerBase
3486
+ >;
3451
3487
  }
3452
3488
 
3453
3489
  declare module "sap/ui/vk/ContainerContent" {
@@ -4184,7 +4220,10 @@ declare module "sap/ui/vk/ContentManager" {
4184
4220
  failureReason?: object;
4185
4221
  }
4186
4222
 
4187
- export type ContentManager$ContentChangesFinishedEvent = Event<ContentManager$ContentChangesFinishedEventParameters>;
4223
+ export type ContentManager$ContentChangesFinishedEvent = Event<
4224
+ ContentManager$ContentChangesFinishedEventParameters,
4225
+ ContentManager
4226
+ >;
4188
4227
 
4189
4228
  export interface ContentManager$ContentChangesProgressEventParameters {
4190
4229
  /**
@@ -4205,11 +4244,17 @@ declare module "sap/ui/vk/ContentManager" {
4205
4244
  source?: any;
4206
4245
  }
4207
4246
 
4208
- export type ContentManager$ContentChangesProgressEvent = Event<ContentManager$ContentChangesProgressEventParameters>;
4247
+ export type ContentManager$ContentChangesProgressEvent = Event<
4248
+ ContentManager$ContentChangesProgressEventParameters,
4249
+ ContentManager
4250
+ >;
4209
4251
 
4210
4252
  export interface ContentManager$ContentChangesStartedEventParameters {}
4211
4253
 
4212
- export type ContentManager$ContentChangesStartedEvent = Event<ContentManager$ContentChangesStartedEventParameters>;
4254
+ export type ContentManager$ContentChangesStartedEvent = Event<
4255
+ ContentManager$ContentChangesStartedEventParameters,
4256
+ ContentManager
4257
+ >;
4213
4258
 
4214
4259
  export interface ContentManager$ContentLoadingFinishedEventParameters {
4215
4260
  source?: any;
@@ -4217,7 +4262,10 @@ declare module "sap/ui/vk/ContentManager" {
4217
4262
  node?: any;
4218
4263
  }
4219
4264
 
4220
- export type ContentManager$ContentLoadingFinishedEvent = Event<ContentManager$ContentLoadingFinishedEventParameters>;
4265
+ export type ContentManager$ContentLoadingFinishedEvent = Event<
4266
+ ContentManager$ContentLoadingFinishedEventParameters,
4267
+ ContentManager
4268
+ >;
4221
4269
  }
4222
4270
 
4223
4271
  declare module "sap/ui/vk/ContentResource" {
@@ -5434,7 +5482,10 @@ declare module "sap/ui/vk/DrawerToolbar" {
5434
5482
  expand?: boolean;
5435
5483
  }
5436
5484
 
5437
- export type DrawerToolbar$ExpandedEvent = Event<DrawerToolbar$ExpandedEventParameters>;
5485
+ export type DrawerToolbar$ExpandedEvent = Event<
5486
+ DrawerToolbar$ExpandedEventParameters,
5487
+ DrawerToolbar
5488
+ >;
5438
5489
  }
5439
5490
 
5440
5491
  declare module "sap/ui/vk/DrawerToolbarButton" {
@@ -7641,7 +7692,10 @@ declare module "sap/ui/vk/dvl/Viewport" {
7641
7692
 
7642
7693
  export interface Viewport$FrameRenderingFinishedEventParameters {}
7643
7694
 
7644
- export type Viewport$FrameRenderingFinishedEvent = Event<Viewport$FrameRenderingFinishedEventParameters>;
7695
+ export type Viewport$FrameRenderingFinishedEvent = Event<
7696
+ Viewport$FrameRenderingFinishedEventParameters,
7697
+ Viewport
7698
+ >;
7645
7699
 
7646
7700
  export interface Viewport$PanEventParameters {
7647
7701
  dx?: int;
@@ -7649,7 +7703,7 @@ declare module "sap/ui/vk/dvl/Viewport" {
7649
7703
  dy?: int;
7650
7704
  }
7651
7705
 
7652
- export type Viewport$PanEvent = Event<Viewport$PanEventParameters>;
7706
+ export type Viewport$PanEvent = Event<Viewport$PanEventParameters, Viewport>;
7653
7707
 
7654
7708
  export interface Viewport$RotateEventParameters {
7655
7709
  dx?: int;
@@ -7657,13 +7711,19 @@ declare module "sap/ui/vk/dvl/Viewport" {
7657
7711
  dy?: int;
7658
7712
  }
7659
7713
 
7660
- export type Viewport$RotateEvent = Event<Viewport$RotateEventParameters>;
7714
+ export type Viewport$RotateEvent = Event<
7715
+ Viewport$RotateEventParameters,
7716
+ Viewport
7717
+ >;
7661
7718
 
7662
7719
  export interface Viewport$ZoomEventParameters {
7663
7720
  zoomFactor?: float;
7664
7721
  }
7665
7722
 
7666
- export type Viewport$ZoomEvent = Event<Viewport$ZoomEventParameters>;
7723
+ export type Viewport$ZoomEvent = Event<
7724
+ Viewport$ZoomEventParameters,
7725
+ Viewport
7726
+ >;
7667
7727
  }
7668
7728
 
7669
7729
  declare module "sap/ui/vk/dvl/ViewStateManager" {
@@ -9465,11 +9525,17 @@ declare module "sap/ui/vk/ListPanel" {
9465
9525
 
9466
9526
  export interface ListPanel$ExpandEventParameters {}
9467
9527
 
9468
- export type ListPanel$ExpandEvent = Event<ListPanel$ExpandEventParameters>;
9528
+ export type ListPanel$ExpandEvent = Event<
9529
+ ListPanel$ExpandEventParameters,
9530
+ ListPanel
9531
+ >;
9469
9532
 
9470
9533
  export interface ListPanel$HeaderIconPressEventParameters {}
9471
9534
 
9472
- export type ListPanel$HeaderIconPressEvent = Event<ListPanel$HeaderIconPressEventParameters>;
9535
+ export type ListPanel$HeaderIconPressEvent = Event<
9536
+ ListPanel$HeaderIconPressEventParameters,
9537
+ ListPanel
9538
+ >;
9473
9539
 
9474
9540
  export interface ListPanel$ItemPressEventParameters {
9475
9541
  /**
@@ -9483,7 +9549,10 @@ declare module "sap/ui/vk/ListPanel" {
9483
9549
  srcControl?: Control;
9484
9550
  }
9485
9551
 
9486
- export type ListPanel$ItemPressEvent = Event<ListPanel$ItemPressEventParameters>;
9552
+ export type ListPanel$ItemPressEvent = Event<
9553
+ ListPanel$ItemPressEventParameters,
9554
+ ListPanel
9555
+ >;
9487
9556
 
9488
9557
  export interface ListPanel$SelectionChangeEventParameters {
9489
9558
  /**
@@ -9503,7 +9572,10 @@ declare module "sap/ui/vk/ListPanel" {
9503
9572
  selected?: boolean;
9504
9573
  }
9505
9574
 
9506
- export type ListPanel$SelectionChangeEvent = Event<ListPanel$SelectionChangeEventParameters>;
9575
+ export type ListPanel$SelectionChangeEvent = Event<
9576
+ ListPanel$SelectionChangeEventParameters,
9577
+ ListPanel
9578
+ >;
9507
9579
  }
9508
9580
 
9509
9581
  declare module "sap/ui/vk/ListPanelStack" {
@@ -11216,14 +11288,20 @@ declare module "sap/ui/vk/NativeViewport" {
11216
11288
  zoom?: float;
11217
11289
  }
11218
11290
 
11219
- export type NativeViewport$MoveEvent = Event<NativeViewport$MoveEventParameters>;
11291
+ export type NativeViewport$MoveEvent = Event<
11292
+ NativeViewport$MoveEventParameters,
11293
+ NativeViewport
11294
+ >;
11220
11295
 
11221
11296
  export interface NativeViewport$ResizeEventParameters
11222
11297
  extends ViewportBase$ResizeEventParameters {
11223
11298
  oldSize?: object;
11224
11299
  }
11225
11300
 
11226
- export type NativeViewport$ResizeEvent = Event<NativeViewport$ResizeEventParameters>;
11301
+ export type NativeViewport$ResizeEvent = Event<
11302
+ NativeViewport$ResizeEventParameters,
11303
+ NativeViewport
11304
+ >;
11227
11305
  }
11228
11306
 
11229
11307
  declare module "sap/ui/vk/NavigationMode" {
@@ -12218,7 +12296,10 @@ declare module "sap/ui/vk/NodeHierarchy" {
12218
12296
 
12219
12297
  export interface NodeHierarchy$ChangedEventParameters {}
12220
12298
 
12221
- export type NodeHierarchy$ChangedEvent = Event<NodeHierarchy$ChangedEventParameters>;
12299
+ export type NodeHierarchy$ChangedEvent = Event<
12300
+ NodeHierarchy$ChangedEventParameters,
12301
+ NodeHierarchy
12302
+ >;
12222
12303
 
12223
12304
  export interface NodeHierarchy$NodeCreatedEventParameters {
12224
12305
  nodeRef?: any;
@@ -12226,7 +12307,10 @@ declare module "sap/ui/vk/NodeHierarchy" {
12226
12307
  nodeId?: string;
12227
12308
  }
12228
12309
 
12229
- export type NodeHierarchy$NodeCreatedEvent = Event<NodeHierarchy$NodeCreatedEventParameters>;
12310
+ export type NodeHierarchy$NodeCreatedEvent = Event<
12311
+ NodeHierarchy$NodeCreatedEventParameters,
12312
+ NodeHierarchy
12313
+ >;
12230
12314
 
12231
12315
  export interface NodeHierarchy$NodeRemovingEventParameters {
12232
12316
  nodeRef?: any;
@@ -12234,7 +12318,10 @@ declare module "sap/ui/vk/NodeHierarchy" {
12234
12318
  nodeId?: string;
12235
12319
  }
12236
12320
 
12237
- export type NodeHierarchy$NodeRemovingEvent = Event<NodeHierarchy$NodeRemovingEventParameters>;
12321
+ export type NodeHierarchy$NodeRemovingEvent = Event<
12322
+ NodeHierarchy$NodeRemovingEventParameters,
12323
+ NodeHierarchy
12324
+ >;
12238
12325
 
12239
12326
  export interface NodeHierarchy$NodeReplacedEventParameters {
12240
12327
  ReplacedNodeRef?: any;
@@ -12246,7 +12333,10 @@ declare module "sap/ui/vk/NodeHierarchy" {
12246
12333
  ReplacementNodeId?: string;
12247
12334
  }
12248
12335
 
12249
- export type NodeHierarchy$NodeReplacedEvent = Event<NodeHierarchy$NodeReplacedEventParameters>;
12336
+ export type NodeHierarchy$NodeReplacedEvent = Event<
12337
+ NodeHierarchy$NodeReplacedEventParameters,
12338
+ NodeHierarchy
12339
+ >;
12250
12340
 
12251
12341
  export interface NodeHierarchy$NodeUpdatedEventParameters {
12252
12342
  nodeRef?: any;
@@ -12254,7 +12344,10 @@ declare module "sap/ui/vk/NodeHierarchy" {
12254
12344
  nodeId?: string;
12255
12345
  }
12256
12346
 
12257
- export type NodeHierarchy$NodeUpdatedEvent = Event<NodeHierarchy$NodeUpdatedEventParameters>;
12347
+ export type NodeHierarchy$NodeUpdatedEvent = Event<
12348
+ NodeHierarchy$NodeUpdatedEventParameters,
12349
+ NodeHierarchy
12350
+ >;
12258
12351
  }
12259
12352
 
12260
12353
  declare module "sap/ui/vk/NodeProxy" {
@@ -13044,11 +13137,17 @@ declare module "sap/ui/vk/Notifications" {
13044
13137
 
13045
13138
  export interface Notifications$AllMessagesClearedEventParameters {}
13046
13139
 
13047
- export type Notifications$AllMessagesClearedEvent = Event<Notifications$AllMessagesClearedEventParameters>;
13140
+ export type Notifications$AllMessagesClearedEvent = Event<
13141
+ Notifications$AllMessagesClearedEventParameters,
13142
+ Notifications
13143
+ >;
13048
13144
 
13049
13145
  export interface Notifications$MessageAddedEventParameters {}
13050
13146
 
13051
- export type Notifications$MessageAddedEvent = Event<Notifications$MessageAddedEventParameters>;
13147
+ export type Notifications$MessageAddedEvent = Event<
13148
+ Notifications$MessageAddedEventParameters,
13149
+ Notifications
13150
+ >;
13052
13151
  }
13053
13152
 
13054
13153
  declare module "sap/ui/vk/ObjectType" {
@@ -13750,7 +13849,7 @@ declare module "sap/ui/vk/Overlay" {
13750
13849
  pos?: string;
13751
13850
  }
13752
13851
 
13753
- export type Overlay$ClickEvent = Event<Overlay$ClickEventParameters>;
13852
+ export type Overlay$ClickEvent = Event<Overlay$ClickEventParameters, Overlay>;
13754
13853
 
13755
13854
  export interface Overlay$ContextMenuEventParameters {
13756
13855
  /**
@@ -13764,7 +13863,10 @@ declare module "sap/ui/vk/Overlay" {
13764
13863
  menu?: Menu;
13765
13864
  }
13766
13865
 
13767
- export type Overlay$ContextMenuEvent = Event<Overlay$ContextMenuEventParameters>;
13866
+ export type Overlay$ContextMenuEvent = Event<
13867
+ Overlay$ContextMenuEventParameters,
13868
+ Overlay
13869
+ >;
13768
13870
  }
13769
13871
 
13770
13872
  declare module "sap/ui/vk/OverlayArea" {
@@ -14705,7 +14807,10 @@ declare module "sap/ui/vk/OverlayArea" {
14705
14807
 
14706
14808
  export interface OverlayArea$ClickEventParameters {}
14707
14809
 
14708
- export type OverlayArea$ClickEvent = Event<OverlayArea$ClickEventParameters>;
14810
+ export type OverlayArea$ClickEvent = Event<
14811
+ OverlayArea$ClickEventParameters,
14812
+ OverlayArea
14813
+ >;
14709
14814
 
14710
14815
  export interface OverlayArea$ContextMenuEventParameters {
14711
14816
  /**
@@ -14714,7 +14819,10 @@ declare module "sap/ui/vk/OverlayArea" {
14714
14819
  menu?: Menu;
14715
14820
  }
14716
14821
 
14717
- export type OverlayArea$ContextMenuEvent = Event<OverlayArea$ContextMenuEventParameters>;
14822
+ export type OverlayArea$ContextMenuEvent = Event<
14823
+ OverlayArea$ContextMenuEventParameters,
14824
+ OverlayArea
14825
+ >;
14718
14826
 
14719
14827
  export interface OverlayArea$EdgeClickEventParameters {
14720
14828
  /**
@@ -14724,7 +14832,10 @@ declare module "sap/ui/vk/OverlayArea" {
14724
14832
  index?: int;
14725
14833
  }
14726
14834
 
14727
- export type OverlayArea$EdgeClickEvent = Event<OverlayArea$EdgeClickEventParameters>;
14835
+ export type OverlayArea$EdgeClickEvent = Event<
14836
+ OverlayArea$EdgeClickEventParameters,
14837
+ OverlayArea
14838
+ >;
14728
14839
 
14729
14840
  export interface OverlayArea$EdgeContextMenuEventParameters {
14730
14841
  /**
@@ -14739,11 +14850,17 @@ declare module "sap/ui/vk/OverlayArea" {
14739
14850
  menu?: Menu;
14740
14851
  }
14741
14852
 
14742
- export type OverlayArea$EdgeContextMenuEvent = Event<OverlayArea$EdgeContextMenuEventParameters>;
14853
+ export type OverlayArea$EdgeContextMenuEvent = Event<
14854
+ OverlayArea$EdgeContextMenuEventParameters,
14855
+ OverlayArea
14856
+ >;
14743
14857
 
14744
14858
  export interface OverlayArea$HandleClickEventParameters {}
14745
14859
 
14746
- export type OverlayArea$HandleClickEvent = Event<OverlayArea$HandleClickEventParameters>;
14860
+ export type OverlayArea$HandleClickEvent = Event<
14861
+ OverlayArea$HandleClickEventParameters,
14862
+ OverlayArea
14863
+ >;
14747
14864
 
14748
14865
  export interface OverlayArea$HandleContextMenuEventParameters {
14749
14866
  /**
@@ -14757,11 +14874,17 @@ declare module "sap/ui/vk/OverlayArea" {
14757
14874
  menu?: Menu;
14758
14875
  }
14759
14876
 
14760
- export type OverlayArea$HandleContextMenuEvent = Event<OverlayArea$HandleContextMenuEventParameters>;
14877
+ export type OverlayArea$HandleContextMenuEvent = Event<
14878
+ OverlayArea$HandleContextMenuEventParameters,
14879
+ OverlayArea
14880
+ >;
14761
14881
 
14762
14882
  export interface OverlayArea$HandleMovedEventParameters {}
14763
14883
 
14764
- export type OverlayArea$HandleMovedEvent = Event<OverlayArea$HandleMovedEventParameters>;
14884
+ export type OverlayArea$HandleMovedEvent = Event<
14885
+ OverlayArea$HandleMovedEventParameters,
14886
+ OverlayArea
14887
+ >;
14765
14888
  }
14766
14889
 
14767
14890
  declare module "sap/ui/vk/PerspectiveCamera" {
@@ -15467,31 +15590,46 @@ declare module "sap/ui/vk/RedlineCollaboration" {
15467
15590
  viewportLocked?: boolean;
15468
15591
  }
15469
15592
 
15470
- export type RedlineCollaboration$ConversationActivatedEvent = Event<RedlineCollaboration$ConversationActivatedEventParameters>;
15593
+ export type RedlineCollaboration$ConversationActivatedEvent = Event<
15594
+ RedlineCollaboration$ConversationActivatedEventParameters,
15595
+ RedlineCollaboration
15596
+ >;
15471
15597
 
15472
15598
  export interface RedlineCollaboration$ConversationActivatingEventParameters {
15473
15599
  conversation?: RedlineConversation;
15474
15600
  }
15475
15601
 
15476
- export type RedlineCollaboration$ConversationActivatingEvent = Event<RedlineCollaboration$ConversationActivatingEventParameters>;
15602
+ export type RedlineCollaboration$ConversationActivatingEvent = Event<
15603
+ RedlineCollaboration$ConversationActivatingEventParameters,
15604
+ RedlineCollaboration
15605
+ >;
15477
15606
 
15478
15607
  export interface RedlineCollaboration$ElementClickedEventParameters {
15479
15608
  elementId?: string;
15480
15609
  }
15481
15610
 
15482
- export type RedlineCollaboration$ElementClickedEvent = Event<RedlineCollaboration$ElementClickedEventParameters>;
15611
+ export type RedlineCollaboration$ElementClickedEvent = Event<
15612
+ RedlineCollaboration$ElementClickedEventParameters,
15613
+ RedlineCollaboration
15614
+ >;
15483
15615
 
15484
15616
  export interface RedlineCollaboration$ElementCreatedEventParameters {
15485
15617
  element?: object;
15486
15618
  }
15487
15619
 
15488
- export type RedlineCollaboration$ElementCreatedEvent = Event<RedlineCollaboration$ElementCreatedEventParameters>;
15620
+ export type RedlineCollaboration$ElementCreatedEvent = Event<
15621
+ RedlineCollaboration$ElementCreatedEventParameters,
15622
+ RedlineCollaboration
15623
+ >;
15489
15624
 
15490
15625
  export interface RedlineCollaboration$ElementHoveredEventParameters {
15491
15626
  elementId?: string;
15492
15627
  }
15493
15628
 
15494
- export type RedlineCollaboration$ElementHoveredEvent = Event<RedlineCollaboration$ElementHoveredEventParameters>;
15629
+ export type RedlineCollaboration$ElementHoveredEvent = Event<
15630
+ RedlineCollaboration$ElementHoveredEventParameters,
15631
+ RedlineCollaboration
15632
+ >;
15495
15633
  }
15496
15634
 
15497
15635
  declare module "sap/ui/vk/RedlineConversation" {
@@ -15926,7 +16064,10 @@ declare module "sap/ui/vk/RedlineDesign" {
15926
16064
  element?: object;
15927
16065
  }
15928
16066
 
15929
- export type RedlineDesign$ElementCreatedEvent = Event<RedlineDesign$ElementCreatedEventParameters>;
16067
+ export type RedlineDesign$ElementCreatedEvent = Event<
16068
+ RedlineDesign$ElementCreatedEventParameters,
16069
+ RedlineDesign
16070
+ >;
15930
16071
  }
15931
16072
 
15932
16073
  declare module "sap/ui/vk/RedlineElement" {
@@ -17954,7 +18095,10 @@ declare module "sap/ui/vk/RedlineSurface" {
17954
18095
  deltaY?: float;
17955
18096
  }
17956
18097
 
17957
- export type RedlineSurface$PanEvent = Event<RedlineSurface$PanEventParameters>;
18098
+ export type RedlineSurface$PanEvent = Event<
18099
+ RedlineSurface$PanEventParameters,
18100
+ RedlineSurface
18101
+ >;
17958
18102
 
17959
18103
  export interface RedlineSurface$ZoomEventParameters {
17960
18104
  originX?: float;
@@ -17964,7 +18108,10 @@ declare module "sap/ui/vk/RedlineSurface" {
17964
18108
  zoomFactor?: float;
17965
18109
  }
17966
18110
 
17967
- export type RedlineSurface$ZoomEvent = Event<RedlineSurface$ZoomEventParameters>;
18111
+ export type RedlineSurface$ZoomEvent = Event<
18112
+ RedlineSurface$ZoomEventParameters,
18113
+ RedlineSurface
18114
+ >;
17968
18115
  }
17969
18116
 
17970
18117
  declare module "sap/ui/vk/RenderMode" {
@@ -18794,7 +18941,10 @@ declare module "sap/ui/vk/SceneTree" {
18794
18941
 
18795
18942
  export interface SceneTree$ContentChangedEventParameters {}
18796
18943
 
18797
- export type SceneTree$ContentChangedEvent = Event<SceneTree$ContentChangedEventParameters>;
18944
+ export type SceneTree$ContentChangedEvent = Event<
18945
+ SceneTree$ContentChangedEventParameters,
18946
+ SceneTree
18947
+ >;
18798
18948
  }
18799
18949
 
18800
18950
  declare module "sap/ui/vk/SelectionDisplayMode" {
@@ -19529,7 +19679,10 @@ declare module "sap/ui/vk/StepNavigation" {
19529
19679
  size?: object;
19530
19680
  }
19531
19681
 
19532
- export type StepNavigation$ResizeEvent = Event<StepNavigation$ResizeEventParameters>;
19682
+ export type StepNavigation$ResizeEvent = Event<
19683
+ StepNavigation$ResizeEventParameters,
19684
+ StepNavigation
19685
+ >;
19533
19686
 
19534
19687
  export interface StepNavigation$StepChangedEventParameters {
19535
19688
  /**
@@ -19549,7 +19702,10 @@ declare module "sap/ui/vk/StepNavigation" {
19549
19702
  stepId?: object;
19550
19703
  }
19551
19704
 
19552
- export type StepNavigation$StepChangedEvent = Event<StepNavigation$StepChangedEventParameters>;
19705
+ export type StepNavigation$StepChangedEvent = Event<
19706
+ StepNavigation$StepChangedEventParameters,
19707
+ StepNavigation
19708
+ >;
19553
19709
  }
19554
19710
 
19555
19711
  declare module "sap/ui/vk/svg/BaseNodeProxy" {
@@ -19883,7 +20039,10 @@ declare module "sap/ui/vk/svg/ContentManager" {
19883
20039
  error?: any;
19884
20040
  }
19885
20041
 
19886
- export type ContentManager$ErrorReportedEvent = Event<ContentManager$ErrorReportedEventParameters>;
20042
+ export type ContentManager$ErrorReportedEvent = Event<
20043
+ ContentManager$ErrorReportedEventParameters,
20044
+ ContentManager
20045
+ >;
19887
20046
  }
19888
20047
 
19889
20048
  declare module "sap/ui/vk/svg/NodeHierarchy" {
@@ -21056,19 +21215,28 @@ declare module "sap/ui/vk/svg/Viewport" {
21056
21215
  zoom?: float;
21057
21216
  }
21058
21217
 
21059
- export type Viewport$CameraChangedEvent = Event<Viewport$CameraChangedEventParameters>;
21218
+ export type Viewport$CameraChangedEvent = Event<
21219
+ Viewport$CameraChangedEventParameters,
21220
+ Viewport
21221
+ >;
21060
21222
 
21061
21223
  export interface Viewport$HotspotEnterEventParameters {
21062
21224
  nodeRef?: any;
21063
21225
  }
21064
21226
 
21065
- export type Viewport$HotspotEnterEvent = Event<Viewport$HotspotEnterEventParameters>;
21227
+ export type Viewport$HotspotEnterEvent = Event<
21228
+ Viewport$HotspotEnterEventParameters,
21229
+ Viewport
21230
+ >;
21066
21231
 
21067
21232
  export interface Viewport$HotspotLeaveEventParameters {
21068
21233
  nodeRef?: any;
21069
21234
  }
21070
21235
 
21071
- export type Viewport$HotspotLeaveEvent = Event<Viewport$HotspotLeaveEventParameters>;
21236
+ export type Viewport$HotspotLeaveEvent = Event<
21237
+ Viewport$HotspotLeaveEventParameters,
21238
+ Viewport
21239
+ >;
21072
21240
  }
21073
21241
 
21074
21242
  declare module "sap/ui/vk/svg/ViewStateManager" {
@@ -23759,11 +23927,17 @@ declare module "sap/ui/vk/threejs/Viewport" {
23759
23927
  zoom?: float;
23760
23928
  }
23761
23929
 
23762
- export type Viewport$CameraChangedEvent = Event<Viewport$CameraChangedEventParameters>;
23930
+ export type Viewport$CameraChangedEvent = Event<
23931
+ Viewport$CameraChangedEventParameters,
23932
+ Viewport
23933
+ >;
23763
23934
 
23764
23935
  export interface Viewport$FrameRenderingFinishedEventParameters {}
23765
23936
 
23766
- export type Viewport$FrameRenderingFinishedEvent = Event<Viewport$FrameRenderingFinishedEventParameters>;
23937
+ export type Viewport$FrameRenderingFinishedEvent = Event<
23938
+ Viewport$FrameRenderingFinishedEventParameters,
23939
+ Viewport
23940
+ >;
23767
23941
  }
23768
23942
 
23769
23943
  declare module "sap/ui/vk/threejs/ViewStateManager" {
@@ -25032,7 +25206,10 @@ declare module "sap/ui/vk/ToggleMenuButton" {
25032
25206
 
25033
25207
  export interface ToggleMenuButton$BeforeMenuOpenEventParameters {}
25034
25208
 
25035
- export type ToggleMenuButton$BeforeMenuOpenEvent = Event<ToggleMenuButton$BeforeMenuOpenEventParameters>;
25209
+ export type ToggleMenuButton$BeforeMenuOpenEvent = Event<
25210
+ ToggleMenuButton$BeforeMenuOpenEventParameters,
25211
+ ToggleMenuButton
25212
+ >;
25036
25213
 
25037
25214
  export interface ToggleMenuButton$ItemSelectedEventParameters {
25038
25215
  /**
@@ -25041,7 +25218,10 @@ declare module "sap/ui/vk/ToggleMenuButton" {
25041
25218
  item?: /* was: sap.ui.vk.ToggleMenuItem */ any;
25042
25219
  }
25043
25220
 
25044
- export type ToggleMenuButton$ItemSelectedEvent = Event<ToggleMenuButton$ItemSelectedEventParameters>;
25221
+ export type ToggleMenuButton$ItemSelectedEvent = Event<
25222
+ ToggleMenuButton$ItemSelectedEventParameters,
25223
+ ToggleMenuButton
25224
+ >;
25045
25225
 
25046
25226
  export interface ToggleMenuButton$ItemToggledEventParameters {
25047
25227
  /**
@@ -25055,7 +25235,10 @@ declare module "sap/ui/vk/ToggleMenuButton" {
25055
25235
  newItem?: /* was: sap.ui.vk.ToggleMenuItem */ any;
25056
25236
  }
25057
25237
 
25058
- export type ToggleMenuButton$ItemToggledEvent = Event<ToggleMenuButton$ItemToggledEventParameters>;
25238
+ export type ToggleMenuButton$ItemToggledEvent = Event<
25239
+ ToggleMenuButton$ItemToggledEventParameters,
25240
+ ToggleMenuButton
25241
+ >;
25059
25242
  }
25060
25243
 
25061
25244
  declare module "sap/ui/vk/Toolbar" {
@@ -25960,7 +26143,10 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
25960
26143
  z?: float;
25961
26144
  }
25962
26145
 
25963
- export type AnchorPointTool$MovedEvent = Event<AnchorPointTool$MovedEventParameters>;
26146
+ export type AnchorPointTool$MovedEvent = Event<
26147
+ AnchorPointTool$MovedEventParameters,
26148
+ AnchorPointTool
26149
+ >;
25964
26150
 
25965
26151
  export interface AnchorPointTool$MovingEventParameters {
25966
26152
  x?: float;
@@ -25970,7 +26156,10 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
25970
26156
  z?: float;
25971
26157
  }
25972
26158
 
25973
- export type AnchorPointTool$MovingEvent = Event<AnchorPointTool$MovingEventParameters>;
26159
+ export type AnchorPointTool$MovingEvent = Event<
26160
+ AnchorPointTool$MovingEventParameters,
26161
+ AnchorPointTool
26162
+ >;
25974
26163
 
25975
26164
  export interface AnchorPointTool$RotatedEventParameters {
25976
26165
  x?: float;
@@ -25980,7 +26169,10 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
25980
26169
  z?: float;
25981
26170
  }
25982
26171
 
25983
- export type AnchorPointTool$RotatedEvent = Event<AnchorPointTool$RotatedEventParameters>;
26172
+ export type AnchorPointTool$RotatedEvent = Event<
26173
+ AnchorPointTool$RotatedEventParameters,
26174
+ AnchorPointTool
26175
+ >;
25984
26176
 
25985
26177
  export interface AnchorPointTool$RotatingEventParameters {
25986
26178
  x?: float;
@@ -25990,7 +26182,10 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
25990
26182
  z?: float;
25991
26183
  }
25992
26184
 
25993
- export type AnchorPointTool$RotatingEvent = Event<AnchorPointTool$RotatingEventParameters>;
26185
+ export type AnchorPointTool$RotatingEvent = Event<
26186
+ AnchorPointTool$RotatingEventParameters,
26187
+ AnchorPointTool
26188
+ >;
25994
26189
  }
25995
26190
 
25996
26191
  declare module "sap/ui/vk/tools/AnchorPointToolOperation" {
@@ -26487,13 +26682,19 @@ declare module "sap/ui/vk/tools/AxisAngleRotationTool" {
26487
26682
  nodesProperties?: object[];
26488
26683
  }
26489
26684
 
26490
- export type AxisAngleRotationTool$RotatedEvent = Event<AxisAngleRotationTool$RotatedEventParameters>;
26685
+ export type AxisAngleRotationTool$RotatedEvent = Event<
26686
+ AxisAngleRotationTool$RotatedEventParameters,
26687
+ AxisAngleRotationTool
26688
+ >;
26491
26689
 
26492
26690
  export interface AxisAngleRotationTool$RotatingEventParameters {
26493
26691
  nodesProperties?: object[];
26494
26692
  }
26495
26693
 
26496
- export type AxisAngleRotationTool$RotatingEvent = Event<AxisAngleRotationTool$RotatingEventParameters>;
26694
+ export type AxisAngleRotationTool$RotatingEvent = Event<
26695
+ AxisAngleRotationTool$RotatingEventParameters,
26696
+ AxisAngleRotationTool
26697
+ >;
26497
26698
  }
26498
26699
 
26499
26700
  declare module "sap/ui/vk/tools/CoordinateSystem" {
@@ -26771,7 +26972,10 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
26771
26972
  request?: any;
26772
26973
  }
26773
26974
 
26774
- export type CreateEllipseTool$CompletedEvent = Event<CreateEllipseTool$CompletedEventParameters>;
26975
+ export type CreateEllipseTool$CompletedEvent = Event<
26976
+ CreateEllipseTool$CompletedEventParameters,
26977
+ CreateEllipseTool
26978
+ >;
26775
26979
  }
26776
26980
 
26777
26981
  declare module "sap/ui/vk/tools/CreatePathTool" {
@@ -27025,7 +27229,10 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
27025
27229
  closed?: boolean;
27026
27230
  }
27027
27231
 
27028
- export type CreatePathTool$CompletedEvent = Event<CreatePathTool$CompletedEventParameters>;
27232
+ export type CreatePathTool$CompletedEvent = Event<
27233
+ CreatePathTool$CompletedEventParameters,
27234
+ CreatePathTool
27235
+ >;
27029
27236
  }
27030
27237
 
27031
27238
  declare module "sap/ui/vk/tools/CreateRectangleTool" {
@@ -27276,7 +27483,10 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
27276
27483
  request?: any;
27277
27484
  }
27278
27485
 
27279
- export type CreateRectangleTool$CompletedEvent = Event<CreateRectangleTool$CompletedEventParameters>;
27486
+ export type CreateRectangleTool$CompletedEvent = Event<
27487
+ CreateRectangleTool$CompletedEventParameters,
27488
+ CreateRectangleTool
27489
+ >;
27280
27490
  }
27281
27491
 
27282
27492
  declare module "sap/ui/vk/tools/CreateTextTool" {
@@ -27557,7 +27767,10 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
27557
27767
  request?: any;
27558
27768
  }
27559
27769
 
27560
- export type CreateTextTool$CompletedEvent = Event<CreateTextTool$CompletedEventParameters>;
27770
+ export type CreateTextTool$CompletedEvent = Event<
27771
+ CreateTextTool$CompletedEventParameters,
27772
+ CreateTextTool
27773
+ >;
27561
27774
  }
27562
27775
 
27563
27776
  declare module "sap/ui/vk/tools/CrossSectionTool" {
@@ -27960,7 +28173,10 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
27960
28173
  request?: object;
27961
28174
  }
27962
28175
 
27963
- export type DuplicateSvgElementTool$NodesCreatedEvent = Event<DuplicateSvgElementTool$NodesCreatedEventParameters>;
28176
+ export type DuplicateSvgElementTool$NodesCreatedEvent = Event<
28177
+ DuplicateSvgElementTool$NodesCreatedEventParameters,
28178
+ DuplicateSvgElementTool
28179
+ >;
27964
28180
  }
27965
28181
 
27966
28182
  declare module "sap/ui/vk/tools/ExplodeAxis" {
@@ -28977,7 +29193,10 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
28977
29193
  direction?: ExplodeDirection | keyof typeof ExplodeDirection;
28978
29194
  }
28979
29195
 
28980
- export type ExplodeTool$AxisSelectedEvent = Event<ExplodeTool$AxisSelectedEventParameters>;
29196
+ export type ExplodeTool$AxisSelectedEvent = Event<
29197
+ ExplodeTool$AxisSelectedEventParameters,
29198
+ ExplodeTool
29199
+ >;
28981
29200
 
28982
29201
  export interface ExplodeTool$ItemPositionAdjustedEventParameters {
28983
29202
  item?: ExplodeItemGroup;
@@ -28985,7 +29204,10 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
28985
29204
  magnitudeAdjustmentMultiplier?: float;
28986
29205
  }
28987
29206
 
28988
- export type ExplodeTool$ItemPositionAdjustedEvent = Event<ExplodeTool$ItemPositionAdjustedEventParameters>;
29207
+ export type ExplodeTool$ItemPositionAdjustedEvent = Event<
29208
+ ExplodeTool$ItemPositionAdjustedEventParameters,
29209
+ ExplodeTool
29210
+ >;
28989
29211
 
28990
29212
  export interface ExplodeTool$ItemPositionAdjustingEventParameters {
28991
29213
  item?: ExplodeItemGroup;
@@ -28993,7 +29215,10 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
28993
29215
  magnitudeAdjustmentMultiplier?: float;
28994
29216
  }
28995
29217
 
28996
- export type ExplodeTool$ItemPositionAdjustingEvent = Event<ExplodeTool$ItemPositionAdjustingEventParameters>;
29218
+ export type ExplodeTool$ItemPositionAdjustingEvent = Event<
29219
+ ExplodeTool$ItemPositionAdjustingEventParameters,
29220
+ ExplodeTool
29221
+ >;
28997
29222
 
28998
29223
  export interface ExplodeTool$ItemSequenceChangePressedEventParameters {
28999
29224
  item?: ExplodeItemGroup;
@@ -29001,7 +29226,10 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
29001
29226
  moveUp?: boolean;
29002
29227
  }
29003
29228
 
29004
- export type ExplodeTool$ItemSequenceChangePressedEvent = Event<ExplodeTool$ItemSequenceChangePressedEventParameters>;
29229
+ export type ExplodeTool$ItemSequenceChangePressedEvent = Event<
29230
+ ExplodeTool$ItemSequenceChangePressedEventParameters,
29231
+ ExplodeTool
29232
+ >;
29005
29233
 
29006
29234
  export interface ExplodeTool$MagnitudeChangedEventParameters {
29007
29235
  type?: ExplodeType | keyof typeof ExplodeType;
@@ -29013,7 +29241,10 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
29013
29241
  magnitude?: float;
29014
29242
  }
29015
29243
 
29016
- export type ExplodeTool$MagnitudeChangedEvent = Event<ExplodeTool$MagnitudeChangedEventParameters>;
29244
+ export type ExplodeTool$MagnitudeChangedEvent = Event<
29245
+ ExplodeTool$MagnitudeChangedEventParameters,
29246
+ ExplodeTool
29247
+ >;
29017
29248
 
29018
29249
  export interface ExplodeTool$MagnitudeChangingEventParameters {
29019
29250
  type?: ExplodeType | keyof typeof ExplodeType;
@@ -29025,7 +29256,10 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
29025
29256
  magnitude?: float;
29026
29257
  }
29027
29258
 
29028
- export type ExplodeTool$MagnitudeChangingEvent = Event<ExplodeTool$MagnitudeChangingEventParameters>;
29259
+ export type ExplodeTool$MagnitudeChangingEvent = Event<
29260
+ ExplodeTool$MagnitudeChangingEventParameters,
29261
+ ExplodeTool
29262
+ >;
29029
29263
  }
29030
29264
 
29031
29265
  declare module "sap/ui/vk/tools/ExplodeType" {
@@ -29441,7 +29675,10 @@ declare module "sap/ui/vk/tools/HitTestTool" {
29441
29675
  clickType?: HitTestClickType | keyof typeof HitTestClickType;
29442
29676
  }
29443
29677
 
29444
- export type HitTestTool$HitEvent = Event<HitTestTool$HitEventParameters>;
29678
+ export type HitTestTool$HitEvent = Event<
29679
+ HitTestTool$HitEventParameters,
29680
+ HitTestTool
29681
+ >;
29445
29682
  }
29446
29683
 
29447
29684
  declare module "sap/ui/vk/tools/MoveTool" {
@@ -30190,7 +30427,10 @@ declare module "sap/ui/vk/tools/MoveTool" {
30190
30427
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
30191
30428
  }
30192
30429
 
30193
- export type MoveTool$CoordinateSystemChangedEvent = Event<MoveTool$CoordinateSystemChangedEventParameters>;
30430
+ export type MoveTool$CoordinateSystemChangedEvent = Event<
30431
+ MoveTool$CoordinateSystemChangedEventParameters,
30432
+ MoveTool
30433
+ >;
30194
30434
 
30195
30435
  export interface MoveTool$MovedEventParameters {
30196
30436
  x?: float;
@@ -30202,7 +30442,10 @@ declare module "sap/ui/vk/tools/MoveTool" {
30202
30442
  nodesProperties?: any[];
30203
30443
  }
30204
30444
 
30205
- export type MoveTool$MovedEvent = Event<MoveTool$MovedEventParameters>;
30445
+ export type MoveTool$MovedEvent = Event<
30446
+ MoveTool$MovedEventParameters,
30447
+ MoveTool
30448
+ >;
30206
30449
 
30207
30450
  export interface MoveTool$MovingEventParameters {
30208
30451
  x?: float;
@@ -30214,13 +30457,19 @@ declare module "sap/ui/vk/tools/MoveTool" {
30214
30457
  nodesProperties?: any[];
30215
30458
  }
30216
30459
 
30217
- export type MoveTool$MovingEvent = Event<MoveTool$MovingEventParameters>;
30460
+ export type MoveTool$MovingEvent = Event<
30461
+ MoveTool$MovingEventParameters,
30462
+ MoveTool
30463
+ >;
30218
30464
 
30219
30465
  export interface MoveTool$PlacementModeChangedEventParameters {
30220
30466
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
30221
30467
  }
30222
30468
 
30223
- export type MoveTool$PlacementModeChangedEvent = Event<MoveTool$PlacementModeChangedEventParameters>;
30469
+ export type MoveTool$PlacementModeChangedEvent = Event<
30470
+ MoveTool$PlacementModeChangedEventParameters,
30471
+ MoveTool
30472
+ >;
30224
30473
  }
30225
30474
 
30226
30475
  declare module "sap/ui/vk/tools/PredefinedView" {
@@ -30901,19 +31150,28 @@ declare module "sap/ui/vk/tools/RedlineTool" {
30901
31150
  elementId?: string;
30902
31151
  }
30903
31152
 
30904
- export type RedlineTool$ElementClickedEvent = Event<RedlineTool$ElementClickedEventParameters>;
31153
+ export type RedlineTool$ElementClickedEvent = Event<
31154
+ RedlineTool$ElementClickedEventParameters,
31155
+ RedlineTool
31156
+ >;
30905
31157
 
30906
31158
  export interface RedlineTool$ElementCreatedEventParameters {
30907
31159
  element?: object;
30908
31160
  }
30909
31161
 
30910
- export type RedlineTool$ElementCreatedEvent = Event<RedlineTool$ElementCreatedEventParameters>;
31162
+ export type RedlineTool$ElementCreatedEvent = Event<
31163
+ RedlineTool$ElementCreatedEventParameters,
31164
+ RedlineTool
31165
+ >;
30911
31166
 
30912
31167
  export interface RedlineTool$ElementHoveredEventParameters {
30913
31168
  elementId?: string;
30914
31169
  }
30915
31170
 
30916
- export type RedlineTool$ElementHoveredEvent = Event<RedlineTool$ElementHoveredEventParameters>;
31171
+ export type RedlineTool$ElementHoveredEvent = Event<
31172
+ RedlineTool$ElementHoveredEventParameters,
31173
+ RedlineTool
31174
+ >;
30917
31175
  }
30918
31176
 
30919
31177
  declare module "sap/ui/vk/tools/RotatableAxis" {
@@ -31116,7 +31374,10 @@ declare module "sap/ui/vk/tools/RotateOrbitTool" {
31116
31374
  dy?: int;
31117
31375
  }
31118
31376
 
31119
- export type RotateOrbitTool$RotateEvent = Event<RotateOrbitTool$RotateEventParameters>;
31377
+ export type RotateOrbitTool$RotateEvent = Event<
31378
+ RotateOrbitTool$RotateEventParameters,
31379
+ RotateOrbitTool
31380
+ >;
31120
31381
  }
31121
31382
 
31122
31383
  declare module "sap/ui/vk/tools/RotateTool" {
@@ -31983,19 +32244,28 @@ declare module "sap/ui/vk/tools/RotateTool" {
31983
32244
  axis?: RotatableAxis | keyof typeof RotatableAxis;
31984
32245
  }
31985
32246
 
31986
- export type RotateTool$AxisChangedEvent = Event<RotateTool$AxisChangedEventParameters>;
32247
+ export type RotateTool$AxisChangedEvent = Event<
32248
+ RotateTool$AxisChangedEventParameters,
32249
+ RotateTool
32250
+ >;
31987
32251
 
31988
32252
  export interface RotateTool$CoordinateSystemChangedEventParameters {
31989
32253
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
31990
32254
  }
31991
32255
 
31992
- export type RotateTool$CoordinateSystemChangedEvent = Event<RotateTool$CoordinateSystemChangedEventParameters>;
32256
+ export type RotateTool$CoordinateSystemChangedEvent = Event<
32257
+ RotateTool$CoordinateSystemChangedEventParameters,
32258
+ RotateTool
32259
+ >;
31993
32260
 
31994
32261
  export interface RotateTool$PlacementModeChangedEventParameters {
31995
32262
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
31996
32263
  }
31997
32264
 
31998
- export type RotateTool$PlacementModeChangedEvent = Event<RotateTool$PlacementModeChangedEventParameters>;
32265
+ export type RotateTool$PlacementModeChangedEvent = Event<
32266
+ RotateTool$PlacementModeChangedEventParameters,
32267
+ RotateTool
32268
+ >;
31999
32269
 
32000
32270
  export interface RotateTool$RotatedEventParameters {
32001
32271
  x?: float;
@@ -32007,7 +32277,10 @@ declare module "sap/ui/vk/tools/RotateTool" {
32007
32277
  nodesProperties?: any[];
32008
32278
  }
32009
32279
 
32010
- export type RotateTool$RotatedEvent = Event<RotateTool$RotatedEventParameters>;
32280
+ export type RotateTool$RotatedEvent = Event<
32281
+ RotateTool$RotatedEventParameters,
32282
+ RotateTool
32283
+ >;
32011
32284
 
32012
32285
  export interface RotateTool$RotatingEventParameters {
32013
32286
  x?: float;
@@ -32019,7 +32292,10 @@ declare module "sap/ui/vk/tools/RotateTool" {
32019
32292
  nodesProperties?: any[];
32020
32293
  }
32021
32294
 
32022
- export type RotateTool$RotatingEvent = Event<RotateTool$RotatingEventParameters>;
32295
+ export type RotateTool$RotatingEvent = Event<
32296
+ RotateTool$RotatingEventParameters,
32297
+ RotateTool
32298
+ >;
32023
32299
  }
32024
32300
 
32025
32301
  declare module "sap/ui/vk/tools/RotateTurntableTool" {
@@ -32199,7 +32475,10 @@ declare module "sap/ui/vk/tools/RotateTurntableTool" {
32199
32475
  dy?: int;
32200
32476
  }
32201
32477
 
32202
- export type RotateTurntableTool$RotateEvent = Event<RotateTurntableTool$RotateEventParameters>;
32478
+ export type RotateTurntableTool$RotateEvent = Event<
32479
+ RotateTurntableTool$RotateEventParameters,
32480
+ RotateTurntableTool
32481
+ >;
32203
32482
  }
32204
32483
 
32205
32484
  declare module "sap/ui/vk/tools/ScaleTool" {
@@ -32985,13 +33264,19 @@ declare module "sap/ui/vk/tools/ScaleTool" {
32985
33264
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
32986
33265
  }
32987
33266
 
32988
- export type ScaleTool$CoordinateSystemChangedEvent = Event<ScaleTool$CoordinateSystemChangedEventParameters>;
33267
+ export type ScaleTool$CoordinateSystemChangedEvent = Event<
33268
+ ScaleTool$CoordinateSystemChangedEventParameters,
33269
+ ScaleTool
33270
+ >;
32989
33271
 
32990
33272
  export interface ScaleTool$PlacementModeChangedEventParameters {
32991
33273
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
32992
33274
  }
32993
33275
 
32994
- export type ScaleTool$PlacementModeChangedEvent = Event<ScaleTool$PlacementModeChangedEventParameters>;
33276
+ export type ScaleTool$PlacementModeChangedEvent = Event<
33277
+ ScaleTool$PlacementModeChangedEventParameters,
33278
+ ScaleTool
33279
+ >;
32995
33280
 
32996
33281
  export interface ScaleTool$ScaledEventParameters {
32997
33282
  x?: float;
@@ -33003,7 +33288,10 @@ declare module "sap/ui/vk/tools/ScaleTool" {
33003
33288
  nodesProperties?: any[];
33004
33289
  }
33005
33290
 
33006
- export type ScaleTool$ScaledEvent = Event<ScaleTool$ScaledEventParameters>;
33291
+ export type ScaleTool$ScaledEvent = Event<
33292
+ ScaleTool$ScaledEventParameters,
33293
+ ScaleTool
33294
+ >;
33007
33295
 
33008
33296
  export interface ScaleTool$ScalingEventParameters {
33009
33297
  x?: float;
@@ -33015,7 +33303,10 @@ declare module "sap/ui/vk/tools/ScaleTool" {
33015
33303
  nodesProperties?: any[];
33016
33304
  }
33017
33305
 
33018
- export type ScaleTool$ScalingEvent = Event<ScaleTool$ScalingEventParameters>;
33306
+ export type ScaleTool$ScalingEvent = Event<
33307
+ ScaleTool$ScalingEventParameters,
33308
+ ScaleTool
33309
+ >;
33019
33310
  }
33020
33311
 
33021
33312
  declare module "sap/ui/vk/tools/SceneOrientationTool" {
@@ -33509,7 +33800,7 @@ declare module "sap/ui/vk/tools/Tool" {
33509
33800
  reason?: string;
33510
33801
  }
33511
33802
 
33512
- export type Tool$EnabledEvent = Event<Tool$EnabledEventParameters>;
33803
+ export type Tool$EnabledEvent = Event<Tool$EnabledEventParameters, Tool>;
33513
33804
  }
33514
33805
 
33515
33806
  declare module "sap/ui/vk/tools/ToolNodeSet" {
@@ -33814,7 +34105,10 @@ declare module "sap/ui/vk/tools/TooltipTool" {
33814
34105
  nodeRef?: any;
33815
34106
  }
33816
34107
 
33817
- export type TooltipTool$HoverEvent = Event<TooltipTool$HoverEventParameters>;
34108
+ export type TooltipTool$HoverEvent = Event<
34109
+ TooltipTool$HoverEventParameters,
34110
+ TooltipTool
34111
+ >;
33818
34112
  }
33819
34113
 
33820
34114
  declare module "sap/ui/vk/tools/TransformSvgElementTool" {
@@ -34480,7 +34774,10 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
34480
34774
  nodesProperties?: any[];
34481
34775
  }
34482
34776
 
34483
- export type TransformSvgElementTool$MovedEvent = Event<TransformSvgElementTool$MovedEventParameters>;
34777
+ export type TransformSvgElementTool$MovedEvent = Event<
34778
+ TransformSvgElementTool$MovedEventParameters,
34779
+ TransformSvgElementTool
34780
+ >;
34484
34781
 
34485
34782
  export interface TransformSvgElementTool$MovingEventParameters {
34486
34783
  x?: float;
@@ -34494,7 +34791,10 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
34494
34791
  nodesProperties?: any[];
34495
34792
  }
34496
34793
 
34497
- export type TransformSvgElementTool$MovingEvent = Event<TransformSvgElementTool$MovingEventParameters>;
34794
+ export type TransformSvgElementTool$MovingEvent = Event<
34795
+ TransformSvgElementTool$MovingEventParameters,
34796
+ TransformSvgElementTool
34797
+ >;
34498
34798
 
34499
34799
  export interface TransformSvgElementTool$RotatedEventParameters {
34500
34800
  angle?: float;
@@ -34506,7 +34806,10 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
34506
34806
  nodesProperties?: any[];
34507
34807
  }
34508
34808
 
34509
- export type TransformSvgElementTool$RotatedEvent = Event<TransformSvgElementTool$RotatedEventParameters>;
34809
+ export type TransformSvgElementTool$RotatedEvent = Event<
34810
+ TransformSvgElementTool$RotatedEventParameters,
34811
+ TransformSvgElementTool
34812
+ >;
34510
34813
 
34511
34814
  export interface TransformSvgElementTool$RotatingEventParameters {
34512
34815
  angle?: float;
@@ -34518,7 +34821,10 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
34518
34821
  nodesProperties?: any[];
34519
34822
  }
34520
34823
 
34521
- export type TransformSvgElementTool$RotatingEvent = Event<TransformSvgElementTool$RotatingEventParameters>;
34824
+ export type TransformSvgElementTool$RotatingEvent = Event<
34825
+ TransformSvgElementTool$RotatingEventParameters,
34826
+ TransformSvgElementTool
34827
+ >;
34522
34828
 
34523
34829
  export interface TransformSvgElementTool$ScaledEventParameters {
34524
34830
  x?: float;
@@ -34532,7 +34838,10 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
34532
34838
  nodesProperties?: any[];
34533
34839
  }
34534
34840
 
34535
- export type TransformSvgElementTool$ScaledEvent = Event<TransformSvgElementTool$ScaledEventParameters>;
34841
+ export type TransformSvgElementTool$ScaledEvent = Event<
34842
+ TransformSvgElementTool$ScaledEventParameters,
34843
+ TransformSvgElementTool
34844
+ >;
34536
34845
 
34537
34846
  export interface TransformSvgElementTool$ScalingEventParameters {
34538
34847
  x?: float;
@@ -34546,7 +34855,10 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
34546
34855
  nodesProperties?: any[];
34547
34856
  }
34548
34857
 
34549
- export type TransformSvgElementTool$ScalingEvent = Event<TransformSvgElementTool$ScalingEventParameters>;
34858
+ export type TransformSvgElementTool$ScalingEvent = Event<
34859
+ TransformSvgElementTool$ScalingEventParameters,
34860
+ TransformSvgElementTool
34861
+ >;
34550
34862
  }
34551
34863
 
34552
34864
  declare module "sap/ui/vk/TransformationMatrix" {
@@ -36810,7 +37122,10 @@ declare module "sap/ui/vk/Viewer" {
36810
37122
 
36811
37123
  export interface Viewer$ContentResourceChangesProcessedEventParameters {}
36812
37124
 
36813
- export type Viewer$ContentResourceChangesProcessedEvent = Event<Viewer$ContentResourceChangesProcessedEventParameters>;
37125
+ export type Viewer$ContentResourceChangesProcessedEvent = Event<
37126
+ Viewer$ContentResourceChangesProcessedEventParameters,
37127
+ Viewer
37128
+ >;
36814
37129
 
36815
37130
  export interface Viewer$FullScreenEventParameters {
36816
37131
  /**
@@ -36819,7 +37134,10 @@ declare module "sap/ui/vk/Viewer" {
36819
37134
  isFullScreen?: boolean;
36820
37135
  }
36821
37136
 
36822
- export type Viewer$FullScreenEvent = Event<Viewer$FullScreenEventParameters>;
37137
+ export type Viewer$FullScreenEvent = Event<
37138
+ Viewer$FullScreenEventParameters,
37139
+ Viewer
37140
+ >;
36823
37141
 
36824
37142
  export interface Viewer$NodeClickedEventParameters {
36825
37143
  /**
@@ -36832,7 +37150,10 @@ declare module "sap/ui/vk/Viewer" {
36832
37150
  y?: int;
36833
37151
  }
36834
37152
 
36835
- export type Viewer$NodeClickedEvent = Event<Viewer$NodeClickedEventParameters>;
37153
+ export type Viewer$NodeClickedEvent = Event<
37154
+ Viewer$NodeClickedEventParameters,
37155
+ Viewer
37156
+ >;
36836
37157
 
36837
37158
  export interface Viewer$SceneDestroyingEventParameters {
36838
37159
  /**
@@ -36847,7 +37168,10 @@ declare module "sap/ui/vk/Viewer" {
36847
37168
  preventGarbageCollection?: Function;
36848
37169
  }
36849
37170
 
36850
- export type Viewer$SceneDestroyingEvent = Event<Viewer$SceneDestroyingEventParameters>;
37171
+ export type Viewer$SceneDestroyingEvent = Event<
37172
+ Viewer$SceneDestroyingEventParameters,
37173
+ Viewer
37174
+ >;
36851
37175
 
36852
37176
  export interface Viewer$SceneLoadingFailedEventParameters {
36853
37177
  /**
@@ -36856,7 +37180,10 @@ declare module "sap/ui/vk/Viewer" {
36856
37180
  reason?: object;
36857
37181
  }
36858
37182
 
36859
- export type Viewer$SceneLoadingFailedEvent = Event<Viewer$SceneLoadingFailedEventParameters>;
37183
+ export type Viewer$SceneLoadingFailedEvent = Event<
37184
+ Viewer$SceneLoadingFailedEventParameters,
37185
+ Viewer
37186
+ >;
36860
37187
 
36861
37188
  export interface Viewer$SceneLoadingSucceededEventParameters {
36862
37189
  /**
@@ -36865,7 +37192,10 @@ declare module "sap/ui/vk/Viewer" {
36865
37192
  scene?: Scene;
36866
37193
  }
36867
37194
 
36868
- export type Viewer$SceneLoadingSucceededEvent = Event<Viewer$SceneLoadingSucceededEventParameters>;
37195
+ export type Viewer$SceneLoadingSucceededEvent = Event<
37196
+ Viewer$SceneLoadingSucceededEventParameters,
37197
+ Viewer
37198
+ >;
36869
37199
 
36870
37200
  export interface Viewer$SelectionChangedEventParameters {
36871
37201
  /**
@@ -36879,7 +37209,10 @@ declare module "sap/ui/vk/Viewer" {
36879
37209
  unselected?: any[];
36880
37210
  }
36881
37211
 
36882
- export type Viewer$SelectionChangedEvent = Event<Viewer$SelectionChangedEventParameters>;
37212
+ export type Viewer$SelectionChangedEvent = Event<
37213
+ Viewer$SelectionChangedEventParameters,
37214
+ Viewer
37215
+ >;
36883
37216
 
36884
37217
  export interface Viewer$UrlClickedEventParameters {
36885
37218
  /**
@@ -36893,7 +37226,10 @@ declare module "sap/ui/vk/Viewer" {
36893
37226
  url?: string;
36894
37227
  }
36895
37228
 
36896
- export type Viewer$UrlClickedEvent = Event<Viewer$UrlClickedEventParameters>;
37229
+ export type Viewer$UrlClickedEvent = Event<
37230
+ Viewer$UrlClickedEventParameters,
37231
+ Viewer
37232
+ >;
36897
37233
  }
36898
37234
 
36899
37235
  declare module "sap/ui/vk/ViewGallery" {
@@ -37493,7 +37829,10 @@ declare module "sap/ui/vk/ViewGallery" {
37493
37829
  item?: Control;
37494
37830
  }
37495
37831
 
37496
- export type ViewGallery$SelectionChangeEvent = Event<ViewGallery$SelectionChangeEventParameters>;
37832
+ export type ViewGallery$SelectionChangeEvent = Event<
37833
+ ViewGallery$SelectionChangeEventParameters,
37834
+ ViewGallery
37835
+ >;
37497
37836
 
37498
37837
  export interface ViewGallery$ViewOrderChangeEventParameters {
37499
37838
  view?: View;
@@ -37501,7 +37840,10 @@ declare module "sap/ui/vk/ViewGallery" {
37501
37840
  viewIndex?: int;
37502
37841
  }
37503
37842
 
37504
- export type ViewGallery$ViewOrderChangeEvent = Event<ViewGallery$ViewOrderChangeEventParameters>;
37843
+ export type ViewGallery$ViewOrderChangeEvent = Event<
37844
+ ViewGallery$ViewOrderChangeEventParameters,
37845
+ ViewGallery
37846
+ >;
37505
37847
  }
37506
37848
 
37507
37849
  declare module "sap/ui/vk/ViewGroup" {
@@ -40077,7 +40419,10 @@ declare module "sap/ui/vk/ViewportBase" {
40077
40419
  y?: int;
40078
40420
  }
40079
40421
 
40080
- export type ViewportBase$NodeClickedEvent = Event<ViewportBase$NodeClickedEventParameters>;
40422
+ export type ViewportBase$NodeClickedEvent = Event<
40423
+ ViewportBase$NodeClickedEventParameters,
40424
+ ViewportBase
40425
+ >;
40081
40426
 
40082
40427
  export interface ViewportBase$NodesPickedEventParameters {
40083
40428
  /**
@@ -40086,7 +40431,10 @@ declare module "sap/ui/vk/ViewportBase" {
40086
40431
  picked?: any[];
40087
40432
  }
40088
40433
 
40089
- export type ViewportBase$NodesPickedEvent = Event<ViewportBase$NodesPickedEventParameters>;
40434
+ export type ViewportBase$NodesPickedEvent = Event<
40435
+ ViewportBase$NodesPickedEventParameters,
40436
+ ViewportBase
40437
+ >;
40090
40438
 
40091
40439
  export interface ViewportBase$NodeZoomedEventParameters {
40092
40440
  /**
@@ -40100,11 +40448,17 @@ declare module "sap/ui/vk/ViewportBase" {
40100
40448
  isZoomIn?: boolean;
40101
40449
  }
40102
40450
 
40103
- export type ViewportBase$NodeZoomedEvent = Event<ViewportBase$NodeZoomedEventParameters>;
40451
+ export type ViewportBase$NodeZoomedEvent = Event<
40452
+ ViewportBase$NodeZoomedEventParameters,
40453
+ ViewportBase
40454
+ >;
40104
40455
 
40105
40456
  export interface ViewportBase$ProcedureFinishedEventParameters {}
40106
40457
 
40107
- export type ViewportBase$ProcedureFinishedEvent = Event<ViewportBase$ProcedureFinishedEventParameters>;
40458
+ export type ViewportBase$ProcedureFinishedEvent = Event<
40459
+ ViewportBase$ProcedureFinishedEventParameters,
40460
+ ViewportBase
40461
+ >;
40108
40462
 
40109
40463
  export interface ViewportBase$ResizeEventParameters {
40110
40464
  /**
@@ -40113,7 +40467,10 @@ declare module "sap/ui/vk/ViewportBase" {
40113
40467
  size?: object;
40114
40468
  }
40115
40469
 
40116
- export type ViewportBase$ResizeEvent = Event<ViewportBase$ResizeEventParameters>;
40470
+ export type ViewportBase$ResizeEvent = Event<
40471
+ ViewportBase$ResizeEventParameters,
40472
+ ViewportBase
40473
+ >;
40117
40474
 
40118
40475
  export interface ViewportBase$UrlClickedEventParameters {
40119
40476
  /**
@@ -40127,7 +40484,10 @@ declare module "sap/ui/vk/ViewportBase" {
40127
40484
  url?: string;
40128
40485
  }
40129
40486
 
40130
- export type ViewportBase$UrlClickedEvent = Event<ViewportBase$UrlClickedEventParameters>;
40487
+ export type ViewportBase$UrlClickedEvent = Event<
40488
+ ViewportBase$UrlClickedEventParameters,
40489
+ ViewportBase
40490
+ >;
40131
40491
 
40132
40492
  export interface ViewportBase$ViewActivatedEventParameters {
40133
40493
  /**
@@ -40146,13 +40506,19 @@ declare module "sap/ui/vk/ViewportBase" {
40146
40506
  type?: string;
40147
40507
  }
40148
40508
 
40149
- export type ViewportBase$ViewActivatedEvent = Event<ViewportBase$ViewActivatedEventParameters>;
40509
+ export type ViewportBase$ViewActivatedEvent = Event<
40510
+ ViewportBase$ViewActivatedEventParameters,
40511
+ ViewportBase
40512
+ >;
40150
40513
 
40151
40514
  export interface ViewportBase$ViewFinishedEventParameters {
40152
40515
  viewIndex?: int;
40153
40516
  }
40154
40517
 
40155
- export type ViewportBase$ViewFinishedEvent = Event<ViewportBase$ViewFinishedEventParameters>;
40518
+ export type ViewportBase$ViewFinishedEvent = Event<
40519
+ ViewportBase$ViewFinishedEventParameters,
40520
+ ViewportBase
40521
+ >;
40156
40522
  }
40157
40523
 
40158
40524
  declare module "sap/ui/vk/ViewStateManager" {
@@ -42576,7 +42942,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42576
42942
  highlightColorABGR?: int;
42577
42943
  }
42578
42944
 
42579
- export type ViewStateManagerBase$HighlightColorChangedEvent = Event<ViewStateManagerBase$HighlightColorChangedEventParameters>;
42945
+ export type ViewStateManagerBase$HighlightColorChangedEvent = Event<
42946
+ ViewStateManagerBase$HighlightColorChangedEventParameters,
42947
+ ViewStateManagerBase
42948
+ >;
42580
42949
 
42581
42950
  export interface ViewStateManagerBase$NodeHierarchyReplacedEventParameters {
42582
42951
  /**
@@ -42590,7 +42959,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42590
42959
  newNodeHierarchy?: NodeHierarchy;
42591
42960
  }
42592
42961
 
42593
- export type ViewStateManagerBase$NodeHierarchyReplacedEvent = Event<ViewStateManagerBase$NodeHierarchyReplacedEventParameters>;
42962
+ export type ViewStateManagerBase$NodeHierarchyReplacedEvent = Event<
42963
+ ViewStateManagerBase$NodeHierarchyReplacedEventParameters,
42964
+ ViewStateManagerBase
42965
+ >;
42594
42966
 
42595
42967
  export interface ViewStateManagerBase$OpacityChangedEventParameters {
42596
42968
  /**
@@ -42604,7 +42976,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42604
42976
  opacity?: any;
42605
42977
  }
42606
42978
 
42607
- export type ViewStateManagerBase$OpacityChangedEvent = Event<ViewStateManagerBase$OpacityChangedEventParameters>;
42979
+ export type ViewStateManagerBase$OpacityChangedEvent = Event<
42980
+ ViewStateManagerBase$OpacityChangedEventParameters,
42981
+ ViewStateManagerBase
42982
+ >;
42608
42983
 
42609
42984
  export interface ViewStateManagerBase$OutlineColorChangedEventParameters {
42610
42985
  /**
@@ -42618,7 +42993,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42618
42993
  outlineColorABGR?: int;
42619
42994
  }
42620
42995
 
42621
- export type ViewStateManagerBase$OutlineColorChangedEvent = Event<ViewStateManagerBase$OutlineColorChangedEventParameters>;
42996
+ export type ViewStateManagerBase$OutlineColorChangedEvent = Event<
42997
+ ViewStateManagerBase$OutlineColorChangedEventParameters,
42998
+ ViewStateManagerBase
42999
+ >;
42622
43000
 
42623
43001
  export interface ViewStateManagerBase$OutlineWidthChangedEventParameters {
42624
43002
  /**
@@ -42627,7 +43005,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42627
43005
  width?: float;
42628
43006
  }
42629
43007
 
42630
- export type ViewStateManagerBase$OutlineWidthChangedEvent = Event<ViewStateManagerBase$OutlineWidthChangedEventParameters>;
43008
+ export type ViewStateManagerBase$OutlineWidthChangedEvent = Event<
43009
+ ViewStateManagerBase$OutlineWidthChangedEventParameters,
43010
+ ViewStateManagerBase
43011
+ >;
42631
43012
 
42632
43013
  export interface ViewStateManagerBase$OutliningChangedEventParameters {
42633
43014
  /**
@@ -42641,13 +43022,19 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42641
43022
  unoutlined?: any[];
42642
43023
  }
42643
43024
 
42644
- export type ViewStateManagerBase$OutliningChangedEvent = Event<ViewStateManagerBase$OutliningChangedEventParameters>;
43025
+ export type ViewStateManagerBase$OutliningChangedEvent = Event<
43026
+ ViewStateManagerBase$OutliningChangedEventParameters,
43027
+ ViewStateManagerBase
43028
+ >;
42645
43029
 
42646
43030
  export interface ViewStateManagerBase$ReadyForAnimationEventParameters {
42647
43031
  view?: View;
42648
43032
  }
42649
43033
 
42650
- export type ViewStateManagerBase$ReadyForAnimationEvent = Event<ViewStateManagerBase$ReadyForAnimationEventParameters>;
43034
+ export type ViewStateManagerBase$ReadyForAnimationEvent = Event<
43035
+ ViewStateManagerBase$ReadyForAnimationEventParameters,
43036
+ ViewStateManagerBase
43037
+ >;
42651
43038
 
42652
43039
  export interface ViewStateManagerBase$SelectionChangedEventParameters {
42653
43040
  /**
@@ -42661,7 +43048,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42661
43048
  unselected?: any[];
42662
43049
  }
42663
43050
 
42664
- export type ViewStateManagerBase$SelectionChangedEvent = Event<ViewStateManagerBase$SelectionChangedEventParameters>;
43051
+ export type ViewStateManagerBase$SelectionChangedEvent = Event<
43052
+ ViewStateManagerBase$SelectionChangedEventParameters,
43053
+ ViewStateManagerBase
43054
+ >;
42665
43055
 
42666
43056
  export interface ViewStateManagerBase$TintColorChangedEventParameters {
42667
43057
  /**
@@ -42682,7 +43072,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42682
43072
  tintColorABGR?: any;
42683
43073
  }
42684
43074
 
42685
- export type ViewStateManagerBase$TintColorChangedEvent = Event<ViewStateManagerBase$TintColorChangedEventParameters>;
43075
+ export type ViewStateManagerBase$TintColorChangedEvent = Event<
43076
+ ViewStateManagerBase$TintColorChangedEventParameters,
43077
+ ViewStateManagerBase
43078
+ >;
42686
43079
 
42687
43080
  export interface ViewStateManagerBase$TransformationChangedEventParameters {
42688
43081
  /**
@@ -42697,19 +43090,28 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42697
43090
  transformation?: any;
42698
43091
  }
42699
43092
 
42700
- export type ViewStateManagerBase$TransformationChangedEvent = Event<ViewStateManagerBase$TransformationChangedEventParameters>;
43093
+ export type ViewStateManagerBase$TransformationChangedEvent = Event<
43094
+ ViewStateManagerBase$TransformationChangedEventParameters,
43095
+ ViewStateManagerBase
43096
+ >;
42701
43097
 
42702
43098
  export interface ViewStateManagerBase$ViewStateAppliedEventParameters {
42703
43099
  view?: View;
42704
43100
  }
42705
43101
 
42706
- export type ViewStateManagerBase$ViewStateAppliedEvent = Event<ViewStateManagerBase$ViewStateAppliedEventParameters>;
43102
+ export type ViewStateManagerBase$ViewStateAppliedEvent = Event<
43103
+ ViewStateManagerBase$ViewStateAppliedEventParameters,
43104
+ ViewStateManagerBase
43105
+ >;
42707
43106
 
42708
43107
  export interface ViewStateManagerBase$ViewStateApplyingEventParameters {
42709
43108
  view?: View;
42710
43109
  }
42711
43110
 
42712
- export type ViewStateManagerBase$ViewStateApplyingEvent = Event<ViewStateManagerBase$ViewStateApplyingEventParameters>;
43111
+ export type ViewStateManagerBase$ViewStateApplyingEvent = Event<
43112
+ ViewStateManagerBase$ViewStateApplyingEventParameters,
43113
+ ViewStateManagerBase
43114
+ >;
42713
43115
 
42714
43116
  export interface ViewStateManagerBase$VisibilityChangedEventParameters {
42715
43117
  /**
@@ -42723,7 +43125,10 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
42723
43125
  hidden?: any[];
42724
43126
  }
42725
43127
 
42726
- export type ViewStateManagerBase$VisibilityChangedEvent = Event<ViewStateManagerBase$VisibilityChangedEventParameters>;
43128
+ export type ViewStateManagerBase$VisibilityChangedEvent = Event<
43129
+ ViewStateManagerBase$VisibilityChangedEventParameters,
43130
+ ViewStateManagerBase
43131
+ >;
42727
43132
  }
42728
43133
 
42729
43134
  declare module "sap/ui/vk/VisibilityMode" {