@sapui5/ts-types-esm 1.120.15 → 1.120.16

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 (48) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.f.d.ts +1 -1
  4. package/types/sap.fe.core.d.ts +12 -2
  5. package/types/sap.fe.macros.d.ts +1 -1
  6. package/types/sap.fe.navigation.d.ts +1 -1
  7. package/types/sap.fe.placeholder.d.ts +1 -1
  8. package/types/sap.fe.templates.d.ts +1 -1
  9. package/types/sap.fe.test.d.ts +1 -1
  10. package/types/sap.fe.tools.d.ts +1 -1
  11. package/types/sap.gantt.d.ts +1 -1
  12. package/types/sap.insights.d.ts +1 -1
  13. package/types/sap.m.d.ts +1 -1
  14. package/types/sap.makit.d.ts +1 -1
  15. package/types/sap.me.d.ts +1 -1
  16. package/types/sap.ndc.d.ts +1 -1
  17. package/types/sap.ovp.d.ts +1 -1
  18. package/types/sap.suite.ui.commons.d.ts +1 -1
  19. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  20. package/types/sap.suite.ui.microchart.d.ts +1 -1
  21. package/types/sap.tnt.d.ts +1 -1
  22. package/types/sap.ui.codeeditor.d.ts +1 -1
  23. package/types/sap.ui.commons.d.ts +1 -1
  24. package/types/sap.ui.comp.d.ts +1 -1
  25. package/types/sap.ui.core.d.ts +43 -29
  26. package/types/sap.ui.dt.d.ts +1 -1
  27. package/types/sap.ui.export.d.ts +1 -1
  28. package/types/sap.ui.fl.d.ts +1 -1
  29. package/types/sap.ui.integration.d.ts +1 -1
  30. package/types/sap.ui.layout.d.ts +1 -1
  31. package/types/sap.ui.mdc.d.ts +1 -1
  32. package/types/sap.ui.richtexteditor.d.ts +1 -1
  33. package/types/sap.ui.rta.d.ts +1 -1
  34. package/types/sap.ui.suite.d.ts +1 -1
  35. package/types/sap.ui.support.d.ts +1 -1
  36. package/types/sap.ui.table.d.ts +1 -1
  37. package/types/sap.ui.testrecorder.d.ts +1 -1
  38. package/types/sap.ui.unified.d.ts +1 -1
  39. package/types/sap.ui.ux3.d.ts +1 -1
  40. package/types/sap.ui.vk.d.ts +1251 -101
  41. package/types/sap.ui.webc.common.d.ts +1 -1
  42. package/types/sap.ui.webc.fiori.d.ts +1 -1
  43. package/types/sap.ui.webc.main.d.ts +1 -1
  44. package/types/sap.uiext.inbox.d.ts +1 -1
  45. package/types/sap.ushell.d.ts +1 -1
  46. package/types/sap.ushell_abap.d.ts +1 -1
  47. package/types/sap.uxap.d.ts +1 -1
  48. package/types/sap.viz.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.3
1
+ // For Library Version: 1.120.4
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -512,7 +512,12 @@ declare module "sap/ui/vk/AnimationPlayer" {
512
512
  */
513
513
  stop(): this;
514
514
  }
515
-
515
+ /**
516
+ * Describes the settings that can be provided to the AnimationPlayer constructor.
517
+ *
518
+ * @experimental (since 1.67.0) - This class is experimental and might be modified or removed in future
519
+ * versions.
520
+ */
516
521
  export interface $AnimationPlayerSettings extends $ElementSettings {
517
522
  viewStateManager?: ViewStateManagerBase | string;
518
523
 
@@ -525,29 +530,53 @@ declare module "sap/ui/vk/AnimationPlayer" {
525
530
  stateChanged?: (oEvent: Event) => void;
526
531
  }
527
532
 
533
+ /**
534
+ * Parameters of the AnimationPlayer#beforeTimeChanged event.
535
+ */
528
536
  export interface AnimationPlayer$BeforeTimeChangedEventParameters {}
529
537
 
538
+ /**
539
+ * Event object of the AnimationPlayer#beforeTimeChanged event.
540
+ */
530
541
  export type AnimationPlayer$BeforeTimeChangedEvent = Event<
531
542
  AnimationPlayer$BeforeTimeChangedEventParameters,
532
543
  AnimationPlayer
533
544
  >;
534
545
 
546
+ /**
547
+ * Parameters of the AnimationPlayer#stateChanged event.
548
+ */
535
549
  export interface AnimationPlayer$StateChangedEventParameters {}
536
550
 
551
+ /**
552
+ * Event object of the AnimationPlayer#stateChanged event.
553
+ */
537
554
  export type AnimationPlayer$StateChangedEvent = Event<
538
555
  AnimationPlayer$StateChangedEventParameters,
539
556
  AnimationPlayer
540
557
  >;
541
558
 
559
+ /**
560
+ * Parameters of the AnimationPlayer#timeChanged event.
561
+ */
542
562
  export interface AnimationPlayer$TimeChangedEventParameters {}
543
563
 
564
+ /**
565
+ * Event object of the AnimationPlayer#timeChanged event.
566
+ */
544
567
  export type AnimationPlayer$TimeChangedEvent = Event<
545
568
  AnimationPlayer$TimeChangedEventParameters,
546
569
  AnimationPlayer
547
570
  >;
548
571
 
572
+ /**
573
+ * Parameters of the AnimationPlayer#viewActivated event.
574
+ */
549
575
  export interface AnimationPlayer$ViewActivatedEventParameters {}
550
576
 
577
+ /**
578
+ * Event object of the AnimationPlayer#viewActivated event.
579
+ */
551
580
  export type AnimationPlayer$ViewActivatedEvent = Event<
552
581
  AnimationPlayer$ViewActivatedEventParameters,
553
582
  AnimationPlayer
@@ -1192,7 +1221,12 @@ declare module "sap/ui/vk/Annotation" {
1192
1221
  fYOffset?: float
1193
1222
  ): this;
1194
1223
  }
1195
-
1224
+ /**
1225
+ * Describes the settings that can be provided to the Annotation constructor.
1226
+ *
1227
+ * @experimental (since 1.76.0) - This class is experimental and might be modified or removed in future
1228
+ * versions.
1229
+ */
1196
1230
  export interface $AnnotationSettings extends $ControlSettings {
1197
1231
  /**
1198
1232
  * Reference to the annotation Id
@@ -2392,6 +2426,9 @@ declare module "sap/ui/vk/ContentConnector" {
2392
2426
  ): object;
2393
2427
  }
2394
2428
 
2429
+ /**
2430
+ * Describes the settings that can be provided to the ContentConnector constructor.
2431
+ */
2395
2432
  export interface $ContentConnectorSettings extends $ElementSettings {
2396
2433
  /**
2397
2434
  * Content resources to load and display.
@@ -2452,6 +2489,9 @@ declare module "sap/ui/vk/ContentConnector" {
2452
2489
  ) => void;
2453
2490
  }
2454
2491
 
2492
+ /**
2493
+ * Parameters of the ContentConnector#contentChangesFinished event.
2494
+ */
2455
2495
  export interface ContentConnector$ContentChangesFinishedEventParameters {
2456
2496
  /**
2457
2497
  * The content created or updated.
@@ -2470,11 +2510,17 @@ declare module "sap/ui/vk/ContentConnector" {
2470
2510
  failureReason?: any;
2471
2511
  }
2472
2512
 
2513
+ /**
2514
+ * Event object of the ContentConnector#contentChangesFinished event.
2515
+ */
2473
2516
  export type ContentConnector$ContentChangesFinishedEvent = Event<
2474
2517
  ContentConnector$ContentChangesFinishedEventParameters,
2475
2518
  ContentConnector
2476
2519
  >;
2477
2520
 
2521
+ /**
2522
+ * Parameters of the ContentConnector#contentChangesProgress event.
2523
+ */
2478
2524
  export interface ContentConnector$ContentChangesProgressEventParameters {
2479
2525
  /**
2480
2526
  * The name of the loading phase. It can be e.g. 'downloading', 'building the scene' etc. It might be null
@@ -2494,18 +2540,30 @@ declare module "sap/ui/vk/ContentConnector" {
2494
2540
  source?: any;
2495
2541
  }
2496
2542
 
2543
+ /**
2544
+ * Event object of the ContentConnector#contentChangesProgress event.
2545
+ */
2497
2546
  export type ContentConnector$ContentChangesProgressEvent = Event<
2498
2547
  ContentConnector$ContentChangesProgressEventParameters,
2499
2548
  ContentConnector
2500
2549
  >;
2501
2550
 
2551
+ /**
2552
+ * Parameters of the ContentConnector#contentChangesStarted event.
2553
+ */
2502
2554
  export interface ContentConnector$ContentChangesStartedEventParameters {}
2503
2555
 
2556
+ /**
2557
+ * Event object of the ContentConnector#contentChangesStarted event.
2558
+ */
2504
2559
  export type ContentConnector$ContentChangesStartedEvent = Event<
2505
2560
  ContentConnector$ContentChangesStartedEventParameters,
2506
2561
  ContentConnector
2507
2562
  >;
2508
2563
 
2564
+ /**
2565
+ * Parameters of the ContentConnector#contentDestroying event.
2566
+ */
2509
2567
  export interface ContentConnector$ContentDestroyingEventParameters {
2510
2568
  /**
2511
2569
  * The content to be destroyed.
@@ -2521,22 +2579,34 @@ declare module "sap/ui/vk/ContentConnector" {
2521
2579
  preventGarbageCollection?: Function;
2522
2580
  }
2523
2581
 
2582
+ /**
2583
+ * Event object of the ContentConnector#contentDestroying event.
2584
+ */
2524
2585
  export type ContentConnector$ContentDestroyingEvent = Event<
2525
2586
  ContentConnector$ContentDestroyingEventParameters,
2526
2587
  ContentConnector
2527
2588
  >;
2528
2589
 
2590
+ /**
2591
+ * Parameters of the ContentConnector#contentLoadingFinished event.
2592
+ */
2529
2593
  export interface ContentConnector$ContentLoadingFinishedEventParameters {
2530
2594
  source?: any;
2531
2595
 
2532
2596
  node?: any;
2533
2597
  }
2534
2598
 
2599
+ /**
2600
+ * Event object of the ContentConnector#contentLoadingFinished event.
2601
+ */
2535
2602
  export type ContentConnector$ContentLoadingFinishedEvent = Event<
2536
2603
  ContentConnector$ContentLoadingFinishedEventParameters,
2537
2604
  ContentConnector
2538
2605
  >;
2539
2606
 
2607
+ /**
2608
+ * Parameters of the ContentConnector#contentReplaced event.
2609
+ */
2540
2610
  export interface ContentConnector$ContentReplacedEventParameters {
2541
2611
  /**
2542
2612
  * New content.
@@ -2553,6 +2623,9 @@ declare module "sap/ui/vk/ContentConnector" {
2553
2623
  oldContent?: any;
2554
2624
  }
2555
2625
 
2626
+ /**
2627
+ * Event object of the ContentConnector#contentReplaced event.
2628
+ */
2556
2629
  export type ContentConnector$ContentReplacedEvent = Event<
2557
2630
  ContentConnector$ContentReplacedEventParameters,
2558
2631
  ContentConnector
@@ -2928,7 +3001,9 @@ declare module "sap/ui/vk/Camera" {
2928
3001
  sUpDirection?: float[]
2929
3002
  ): this;
2930
3003
  }
2931
-
3004
+ /**
3005
+ * Describes the settings that can be provided to the Camera constructor.
3006
+ */
2932
3007
  export interface $CameraSettings extends $ManagedObjectSettings {
2933
3008
  /**
2934
3009
  * Camera position in global space (x, y, z coordinates)
@@ -3563,7 +3638,11 @@ declare module "sap/ui/vk/ContainerBase" {
3563
3638
  */
3564
3639
  updateContainer(): void;
3565
3640
  }
3566
-
3641
+ /**
3642
+ * Describes the settings that can be provided to the ContainerBase constructor.
3643
+ *
3644
+ * @deprecated (since 1.120.2)
3645
+ */
3567
3646
  export interface $ContainerBaseSettings extends $ControlSettings {
3568
3647
  /**
3569
3648
  * Show fullscreen toggle button in toolbar
@@ -3616,17 +3695,29 @@ declare module "sap/ui/vk/ContainerBase" {
3616
3695
  settingsPressed?: (oEvent: Event) => void;
3617
3696
  }
3618
3697
 
3698
+ /**
3699
+ * Parameters of the ContainerBase#contentChange event.
3700
+ */
3619
3701
  export interface ContainerBase$ContentChangeEventParameters {
3620
3702
  selectedItemId?: string;
3621
3703
  }
3622
3704
 
3705
+ /**
3706
+ * Event object of the ContainerBase#contentChange event.
3707
+ */
3623
3708
  export type ContainerBase$ContentChangeEvent = Event<
3624
3709
  ContainerBase$ContentChangeEventParameters,
3625
3710
  ContainerBase
3626
3711
  >;
3627
3712
 
3713
+ /**
3714
+ * Parameters of the ContainerBase#settingsPressed event.
3715
+ */
3628
3716
  export interface ContainerBase$SettingsPressedEventParameters {}
3629
3717
 
3718
+ /**
3719
+ * Event object of the ContainerBase#settingsPressed event.
3720
+ */
3630
3721
  export type ContainerBase$SettingsPressedEvent = Event<
3631
3722
  ContainerBase$SettingsPressedEventParameters,
3632
3723
  ContainerBase
@@ -3783,7 +3874,11 @@ declare module "sap/ui/vk/ContainerContent" {
3783
3874
  sTitle?: string
3784
3875
  ): this;
3785
3876
  }
3786
-
3877
+ /**
3878
+ * Describes the settings that can be provided to the ContainerContent constructor.
3879
+ *
3880
+ * @deprecated (since 1.120.2)
3881
+ */
3787
3882
  export interface $ContainerContentSettings extends $ControlSettings {
3788
3883
  /**
3789
3884
  * Icon to show up in the toolbar
@@ -4331,7 +4426,11 @@ declare module "sap/ui/vk/ContentManager" {
4331
4426
  retryCount: int
4332
4427
  ): this;
4333
4428
  }
4334
-
4429
+ /**
4430
+ * Describes the settings that can be provided to the ContentManager constructor.
4431
+ *
4432
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4433
+ */
4335
4434
  export interface $ContentManagerSettings extends $ManagedObjectSettings {
4336
4435
  /**
4337
4436
  * This event will be fired when content resources are about to be loaded.
@@ -4360,6 +4459,11 @@ declare module "sap/ui/vk/ContentManager" {
4360
4459
  ) => void;
4361
4460
  }
4362
4461
 
4462
+ /**
4463
+ * Parameters of the ContentManager#contentChangesFinished event.
4464
+ *
4465
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4466
+ */
4363
4467
  export interface ContentManager$ContentChangesFinishedEventParameters {
4364
4468
  /**
4365
4469
  * The content created or updated.
@@ -4376,11 +4480,21 @@ declare module "sap/ui/vk/ContentManager" {
4376
4480
  failureReason?: object;
4377
4481
  }
4378
4482
 
4483
+ /**
4484
+ * Event object of the ContentManager#contentChangesFinished event.
4485
+ *
4486
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4487
+ */
4379
4488
  export type ContentManager$ContentChangesFinishedEvent = Event<
4380
4489
  ContentManager$ContentChangesFinishedEventParameters,
4381
4490
  ContentManager
4382
4491
  >;
4383
4492
 
4493
+ /**
4494
+ * Parameters of the ContentManager#contentChangesProgress event.
4495
+ *
4496
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4497
+ */
4384
4498
  export interface ContentManager$ContentChangesProgressEventParameters {
4385
4499
  /**
4386
4500
  * The name of the loading phase. It can be e.g. 'downloading', 'building the scene' etc. It might be null
@@ -4400,24 +4514,49 @@ declare module "sap/ui/vk/ContentManager" {
4400
4514
  source?: any;
4401
4515
  }
4402
4516
 
4517
+ /**
4518
+ * Event object of the ContentManager#contentChangesProgress event.
4519
+ *
4520
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4521
+ */
4403
4522
  export type ContentManager$ContentChangesProgressEvent = Event<
4404
4523
  ContentManager$ContentChangesProgressEventParameters,
4405
4524
  ContentManager
4406
4525
  >;
4407
4526
 
4527
+ /**
4528
+ * Parameters of the ContentManager#contentChangesStarted event.
4529
+ *
4530
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4531
+ */
4408
4532
  export interface ContentManager$ContentChangesStartedEventParameters {}
4409
4533
 
4534
+ /**
4535
+ * Event object of the ContentManager#contentChangesStarted event.
4536
+ *
4537
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4538
+ */
4410
4539
  export type ContentManager$ContentChangesStartedEvent = Event<
4411
4540
  ContentManager$ContentChangesStartedEventParameters,
4412
4541
  ContentManager
4413
4542
  >;
4414
4543
 
4544
+ /**
4545
+ * Parameters of the ContentManager#contentLoadingFinished event.
4546
+ *
4547
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4548
+ */
4415
4549
  export interface ContentManager$ContentLoadingFinishedEventParameters {
4416
4550
  source?: any;
4417
4551
 
4418
4552
  node?: any;
4419
4553
  }
4420
4554
 
4555
+ /**
4556
+ * Event object of the ContentManager#contentLoadingFinished event.
4557
+ *
4558
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4559
+ */
4421
4560
  export type ContentManager$ContentLoadingFinishedEvent = Event<
4422
4561
  ContentManager$ContentLoadingFinishedEventParameters,
4423
4562
  ContentManager
@@ -5221,7 +5360,9 @@ declare module "sap/ui/vk/ContentResource" {
5221
5360
  sVeid: string
5222
5361
  ): this;
5223
5362
  }
5224
-
5363
+ /**
5364
+ * Describes the settings that can be provided to the ContentResource constructor.
5365
+ */
5225
5366
  export interface $ContentResourceSettings extends $ManagedObjectSettings {
5226
5367
  /**
5227
5368
  * The source URL or the {@link https://developer.mozilla.org/en-US/docs/Web/API/File File} object of the
@@ -5673,7 +5814,9 @@ declare module "sap/ui/vk/DrawerToolbar" {
5673
5814
  oViewport: ID | ViewportBase
5674
5815
  ): this;
5675
5816
  }
5676
-
5817
+ /**
5818
+ * Describes the settings that can be provided to the DrawerToolbar constructor.
5819
+ */
5677
5820
  export interface $DrawerToolbarSettings extends $ControlSettings {
5678
5821
  /**
5679
5822
  * Indicates whether the DrawerToolbar is expanded or not. If expanded is set to true, then both the toolbar
@@ -5695,6 +5838,9 @@ declare module "sap/ui/vk/DrawerToolbar" {
5695
5838
  viewport?: ViewportBase | string;
5696
5839
  }
5697
5840
 
5841
+ /**
5842
+ * Parameters of the DrawerToolbar#expanded event.
5843
+ */
5698
5844
  export interface DrawerToolbar$ExpandedEventParameters {
5699
5845
  /**
5700
5846
  * If the DrawerToolbar is expanded, this is true. If the DrawerToolbar is collapsed, this is false.
@@ -5702,6 +5848,9 @@ declare module "sap/ui/vk/DrawerToolbar" {
5702
5848
  expand?: boolean;
5703
5849
  }
5704
5850
 
5851
+ /**
5852
+ * Event object of the DrawerToolbar#expanded event.
5853
+ */
5705
5854
  export type DrawerToolbar$ExpandedEvent = Event<
5706
5855
  DrawerToolbar$ExpandedEventParameters,
5707
5856
  DrawerToolbar
@@ -5729,6 +5878,10 @@ declare module "sap/ui/vk/DrawerToolbarButton" {
5729
5878
 
5730
5879
  Pan = "VIT-Pan",
5731
5880
 
5881
+ PMI = "VIT-PMI",
5882
+
5883
+ PMISeparator = "VIT-PMI-Separator",
5884
+
5732
5885
  PredefinedViews = "VIT-Predefined-Views",
5733
5886
 
5734
5887
  RectangularSelection = "VIT-Rectangular-Selection",
@@ -6082,7 +6235,11 @@ declare module "sap/ui/vk/dvl/ContentManager" {
6082
6235
  contentResources: ContentResource[]
6083
6236
  ): this;
6084
6237
  }
6085
-
6238
+ /**
6239
+ * Describes the settings that can be provided to the ContentManager constructor.
6240
+ *
6241
+ * @deprecated (since 1.72.0)
6242
+ */
6086
6243
  export interface $ContentManagerSettings extends $ContentManagerSettings1 {}
6087
6244
  }
6088
6245
 
@@ -6940,7 +7097,11 @@ declare module "sap/ui/vk/dvl/NodeHierarchy" {
6940
7097
  nodeRef: any
6941
7098
  ): this;
6942
7099
  }
6943
-
7100
+ /**
7101
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
7102
+ *
7103
+ * @deprecated (since 1.72.0)
7104
+ */
6944
7105
  export interface $NodeHierarchySettings extends $NodeHierarchySettings1 {}
6945
7106
  }
6946
7107
 
@@ -7007,7 +7168,11 @@ declare module "sap/ui/vk/dvl/NodeProxy" {
7007
7168
  */
7008
7169
  static getMetadata(): ManagedObjectMetadata;
7009
7170
  }
7010
-
7171
+ /**
7172
+ * Describes the settings that can be provided to the NodeProxy constructor.
7173
+ *
7174
+ * @deprecated (since 1.72.0)
7175
+ */
7011
7176
  export interface $NodeProxySettings extends $NodeProxySettings1 {}
7012
7177
  }
7013
7178
 
@@ -7105,7 +7270,11 @@ declare module "sap/ui/vk/dvl/Scene" {
7105
7270
  */
7106
7271
  getSceneRef(): string;
7107
7272
  }
7108
-
7273
+ /**
7274
+ * Describes the settings that can be provided to the Scene constructor.
7275
+ *
7276
+ * @deprecated (since 1.72.0)
7277
+ */
7109
7278
  export interface $SceneSettings extends $SceneSettings1 {}
7110
7279
  }
7111
7280
 
@@ -7974,7 +8143,11 @@ declare module "sap/ui/vk/dvl/Viewport" {
7974
8143
  margin: float
7975
8144
  ): Viewport1;
7976
8145
  }
7977
-
8146
+ /**
8147
+ * Describes the settings that can be provided to the Viewport constructor.
8148
+ *
8149
+ * @deprecated (since 1.72.0)
8150
+ */
7978
8151
  export interface $ViewportSettings extends $ViewportBaseSettings {
7979
8152
  /**
7980
8153
  * Viewport background top color in the ABGR format
@@ -7998,36 +8171,60 @@ declare module "sap/ui/vk/dvl/Viewport" {
7998
8171
  frameRenderingFinished?: (oEvent: Event) => void;
7999
8172
  }
8000
8173
 
8174
+ /**
8175
+ * Parameters of the Viewport#frameRenderingFinished event.
8176
+ */
8001
8177
  export interface Viewport$FrameRenderingFinishedEventParameters {}
8002
8178
 
8179
+ /**
8180
+ * Event object of the Viewport#frameRenderingFinished event.
8181
+ */
8003
8182
  export type Viewport$FrameRenderingFinishedEvent = Event<
8004
8183
  Viewport$FrameRenderingFinishedEventParameters,
8005
8184
  Viewport
8006
8185
  >;
8007
8186
 
8187
+ /**
8188
+ * Parameters of the Viewport#pan event.
8189
+ */
8008
8190
  export interface Viewport$PanEventParameters {
8009
8191
  dx?: int;
8010
8192
 
8011
8193
  dy?: int;
8012
8194
  }
8013
8195
 
8196
+ /**
8197
+ * Event object of the Viewport#pan event.
8198
+ */
8014
8199
  export type Viewport$PanEvent = Event<Viewport$PanEventParameters, Viewport>;
8015
8200
 
8201
+ /**
8202
+ * Parameters of the Viewport#rotate event.
8203
+ */
8016
8204
  export interface Viewport$RotateEventParameters {
8017
8205
  dx?: int;
8018
8206
 
8019
8207
  dy?: int;
8020
8208
  }
8021
8209
 
8210
+ /**
8211
+ * Event object of the Viewport#rotate event.
8212
+ */
8022
8213
  export type Viewport$RotateEvent = Event<
8023
8214
  Viewport$RotateEventParameters,
8024
8215
  Viewport
8025
8216
  >;
8026
8217
 
8218
+ /**
8219
+ * Parameters of the Viewport#zoom event.
8220
+ */
8027
8221
  export interface Viewport$ZoomEventParameters {
8028
8222
  zoomFactor?: float;
8029
8223
  }
8030
8224
 
8225
+ /**
8226
+ * Event object of the Viewport#zoom event.
8227
+ */
8031
8228
  export type Viewport$ZoomEvent = Event<
8032
8229
  Viewport$ZoomEventParameters,
8033
8230
  Viewport
@@ -8334,7 +8531,11 @@ declare module "sap/ui/vk/dvl/ViewStateManager" {
8334
8531
  force: boolean
8335
8532
  ): this;
8336
8533
  }
8337
-
8534
+ /**
8535
+ * Describes the settings that can be provided to the ViewStateManager constructor.
8536
+ *
8537
+ * @deprecated (since 1.72.0)
8538
+ */
8338
8539
  export interface $ViewStateManagerSettings
8339
8540
  extends $ViewStateManagerBaseSettings {}
8340
8541
  }
@@ -8599,7 +8800,12 @@ declare module "sap/ui/vk/FlexibleControl" {
8599
8800
  sWidth?: CSSSize
8600
8801
  ): this;
8601
8802
  }
8602
-
8803
+ /**
8804
+ * Describes the settings that can be provided to the FlexibleControl constructor.
8805
+ *
8806
+ * @experimental (since 1.32.0) - This class is experimental and might be modified or removed in future
8807
+ * versions.
8808
+ */
8603
8809
  export interface $FlexibleControlSettings extends $ControlSettings {
8604
8810
  /**
8605
8811
  * CSS width of the vertical layout.
@@ -8819,7 +9025,12 @@ declare module "sap/ui/vk/FlexibleControlLayoutData" {
8819
9025
  sSize?: CSSSize
8820
9026
  ): this;
8821
9027
  }
8822
-
9028
+ /**
9029
+ * Describes the settings that can be provided to the FlexibleControlLayoutData constructor.
9030
+ *
9031
+ * @experimental (since 1.32.0) - This class is experimental and might be modified or removed in future
9032
+ * versions.
9033
+ */
8823
9034
  export interface $FlexibleControlLayoutDataSettings
8824
9035
  extends $LayoutDataSettings {
8825
9036
  /**
@@ -8925,7 +9136,9 @@ declare module "sap/ui/vk/ImageContentManager" {
8925
9136
  */
8926
9137
  static getMetadata(): ManagedObjectMetadata;
8927
9138
  }
8928
-
9139
+ /**
9140
+ * Describes the settings that can be provided to the ImageContentManager constructor.
9141
+ */
8929
9142
  export interface $ImageContentManagerSettings
8930
9143
  extends $ContentManagerSettings {}
8931
9144
  }
@@ -9190,7 +9403,13 @@ declare module "sap/ui/vk/LegendItem" {
9190
9403
  sSemanticSpotType?: SemanticType | keyof typeof SemanticType
9191
9404
  ): this;
9192
9405
  }
9193
-
9406
+ /**
9407
+ * Describes the settings that can be provided to the LegendItem constructor.
9408
+ *
9409
+ * @deprecated (since 1.120.2)
9410
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
9411
+ * versions.
9412
+ */
9194
9413
  export interface $LegendItemSettings extends $StandardListItemSettings {
9195
9414
  /**
9196
9415
  * show color square
@@ -9860,7 +10079,13 @@ declare module "sap/ui/vk/ListPanel" {
9860
10079
  sSelectionMode?: ListMode | keyof typeof ListMode
9861
10080
  ): this;
9862
10081
  }
9863
-
10082
+ /**
10083
+ * Describes the settings that can be provided to the ListPanel constructor.
10084
+ *
10085
+ * @deprecated (since 1.120.2)
10086
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
10087
+ * versions.
10088
+ */
9864
10089
  export interface $ListPanelSettings extends $ControlSettings {
9865
10090
  /**
9866
10091
  * Header text
@@ -9920,20 +10145,35 @@ declare module "sap/ui/vk/ListPanel" {
9920
10145
  itemPress?: (oEvent: ListPanel$ItemPressEvent) => void;
9921
10146
  }
9922
10147
 
10148
+ /**
10149
+ * Parameters of the ListPanel#expand event.
10150
+ */
9923
10151
  export interface ListPanel$ExpandEventParameters {}
9924
10152
 
10153
+ /**
10154
+ * Event object of the ListPanel#expand event.
10155
+ */
9925
10156
  export type ListPanel$ExpandEvent = Event<
9926
10157
  ListPanel$ExpandEventParameters,
9927
10158
  ListPanel
9928
10159
  >;
9929
10160
 
10161
+ /**
10162
+ * Parameters of the ListPanel#headerIconPress event.
10163
+ */
9930
10164
  export interface ListPanel$HeaderIconPressEventParameters {}
9931
10165
 
10166
+ /**
10167
+ * Event object of the ListPanel#headerIconPress event.
10168
+ */
9932
10169
  export type ListPanel$HeaderIconPressEvent = Event<
9933
10170
  ListPanel$HeaderIconPressEventParameters,
9934
10171
  ListPanel
9935
10172
  >;
9936
10173
 
10174
+ /**
10175
+ * Parameters of the ListPanel#itemPress event.
10176
+ */
9937
10177
  export interface ListPanel$ItemPressEventParameters {
9938
10178
  /**
9939
10179
  * The item which fired the pressed event.
@@ -9946,11 +10186,17 @@ declare module "sap/ui/vk/ListPanel" {
9946
10186
  srcControl?: Control;
9947
10187
  }
9948
10188
 
10189
+ /**
10190
+ * Event object of the ListPanel#itemPress event.
10191
+ */
9949
10192
  export type ListPanel$ItemPressEvent = Event<
9950
10193
  ListPanel$ItemPressEventParameters,
9951
10194
  ListPanel
9952
10195
  >;
9953
10196
 
10197
+ /**
10198
+ * Parameters of the ListPanel#selectionChange event.
10199
+ */
9954
10200
  export interface ListPanel$SelectionChangeEventParameters {
9955
10201
  /**
9956
10202
  * The item whose selection has changed. In `MultiSelect` mode, only the up-most selected item is returned.
@@ -9969,6 +10215,9 @@ declare module "sap/ui/vk/ListPanel" {
9969
10215
  selected?: boolean;
9970
10216
  }
9971
10217
 
10218
+ /**
10219
+ * Event object of the ListPanel#selectionChange event.
10220
+ */
9972
10221
  export type ListPanel$SelectionChangeEvent = Event<
9973
10222
  ListPanel$SelectionChangeEventParameters,
9974
10223
  ListPanel
@@ -10251,7 +10500,13 @@ declare module "sap/ui/vk/ListPanelStack" {
10251
10500
  sWidth?: CSSSize
10252
10501
  ): this;
10253
10502
  }
10254
-
10503
+ /**
10504
+ * Describes the settings that can be provided to the ListPanelStack constructor.
10505
+ *
10506
+ * @deprecated (since 1.120.2)
10507
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
10508
+ * versions.
10509
+ */
10255
10510
  export interface $ListPanelStackSettings extends $ControlSettings {
10256
10511
  /**
10257
10512
  * Control width
@@ -10678,7 +10933,11 @@ declare module "sap/ui/vk/MapContainer" {
10678
10933
  }
10679
10934
  ): object;
10680
10935
  }
10681
-
10936
+ /**
10937
+ * Describes the settings that can be provided to the MapContainer constructor.
10938
+ *
10939
+ * @deprecated (since 1.120.2)
10940
+ */
10682
10941
  export interface $MapContainerSettings extends $ContainerBaseSettings {
10683
10942
  /**
10684
10943
  * Show navbar
@@ -11226,7 +11485,12 @@ declare module "sap/ui/vk/Material" {
11226
11485
  sTextureReflection?: Texture
11227
11486
  ): this;
11228
11487
  }
11229
-
11488
+ /**
11489
+ * Describes the settings that can be provided to the Material constructor.
11490
+ *
11491
+ * @experimental (since 1.60.0) - This class is experimental and might be modified or removed in future
11492
+ * versions.
11493
+ */
11230
11494
  export interface $MaterialSettings extends $ManagedObjectSettings {
11231
11495
  /**
11232
11496
  * Material name
@@ -11749,7 +12013,9 @@ declare module "sap/ui/vk/NativeViewport" {
11749
12013
  */
11750
12014
  zoomTo(): NativeViewport;
11751
12015
  }
11752
-
12016
+ /**
12017
+ * Describes the settings that can be provided to the NativeViewport constructor.
12018
+ */
11753
12019
  export interface $NativeViewportSettings extends $ViewportBaseSettings {
11754
12020
  /**
11755
12021
  * Limit the ability to zoom out. If enabled the zoom out stops if the image size reaches 25% of the full
@@ -11768,22 +12034,34 @@ declare module "sap/ui/vk/NativeViewport" {
11768
12034
  move?: (oEvent: NativeViewport$MoveEvent) => void;
11769
12035
  }
11770
12036
 
12037
+ /**
12038
+ * Parameters of the NativeViewport#move event.
12039
+ */
11771
12040
  export interface NativeViewport$MoveEventParameters {
11772
12041
  pan?: object;
11773
12042
 
11774
12043
  zoom?: float;
11775
12044
  }
11776
12045
 
12046
+ /**
12047
+ * Event object of the NativeViewport#move event.
12048
+ */
11777
12049
  export type NativeViewport$MoveEvent = Event<
11778
12050
  NativeViewport$MoveEventParameters,
11779
12051
  NativeViewport
11780
12052
  >;
11781
12053
 
12054
+ /**
12055
+ * Parameters of the NativeViewport#resize event.
12056
+ */
11782
12057
  export interface NativeViewport$ResizeEventParameters
11783
12058
  extends ViewportBase$ResizeEventParameters {
11784
12059
  oldSize?: object;
11785
12060
  }
11786
12061
 
12062
+ /**
12063
+ * Event object of the NativeViewport#resize event.
12064
+ */
11787
12065
  export type NativeViewport$ResizeEvent = Event<
11788
12066
  NativeViewport$ResizeEventParameters,
11789
12067
  NativeViewport
@@ -11836,6 +12114,10 @@ declare module "sap/ui/vk/NodeContentType" {
11836
12114
  * Hotspot node
11837
12115
  */
11838
12116
  Hotspot = "Hotspot",
12117
+ /**
12118
+ * PMI node
12119
+ */
12120
+ PMI = "PMI",
11839
12121
  /**
11840
12122
  * Point cloud group node
11841
12123
  */
@@ -12780,7 +13062,9 @@ declare module "sap/ui/vk/NodeHierarchy" {
12780
13062
  nodeRef: any
12781
13063
  ): this;
12782
13064
  }
12783
-
13065
+ /**
13066
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
13067
+ */
12784
13068
  export interface $NodeHierarchySettings extends $ManagedObjectSettings {
12785
13069
  /**
12786
13070
  * This event will be fired when the node hierarchy changes, e.g. a node is added or removed.
@@ -12802,35 +13086,56 @@ declare module "sap/ui/vk/NodeHierarchy" {
12802
13086
  nodeUpdated?: (oEvent: NodeHierarchy$NodeUpdatedEvent) => void;
12803
13087
  }
12804
13088
 
13089
+ /**
13090
+ * Parameters of the NodeHierarchy#changed event.
13091
+ */
12805
13092
  export interface NodeHierarchy$ChangedEventParameters {}
12806
13093
 
13094
+ /**
13095
+ * Event object of the NodeHierarchy#changed event.
13096
+ */
12807
13097
  export type NodeHierarchy$ChangedEvent = Event<
12808
13098
  NodeHierarchy$ChangedEventParameters,
12809
13099
  NodeHierarchy
12810
13100
  >;
12811
13101
 
13102
+ /**
13103
+ * Parameters of the NodeHierarchy#nodeCreated event.
13104
+ */
12812
13105
  export interface NodeHierarchy$NodeCreatedEventParameters {
12813
13106
  nodeRef?: any;
12814
13107
 
12815
13108
  nodeId?: string;
12816
13109
  }
12817
13110
 
13111
+ /**
13112
+ * Event object of the NodeHierarchy#nodeCreated event.
13113
+ */
12818
13114
  export type NodeHierarchy$NodeCreatedEvent = Event<
12819
13115
  NodeHierarchy$NodeCreatedEventParameters,
12820
13116
  NodeHierarchy
12821
13117
  >;
12822
13118
 
13119
+ /**
13120
+ * Parameters of the NodeHierarchy#nodeRemoving event.
13121
+ */
12823
13122
  export interface NodeHierarchy$NodeRemovingEventParameters {
12824
13123
  nodeRef?: any;
12825
13124
 
12826
13125
  nodeId?: string;
12827
13126
  }
12828
13127
 
13128
+ /**
13129
+ * Event object of the NodeHierarchy#nodeRemoving event.
13130
+ */
12829
13131
  export type NodeHierarchy$NodeRemovingEvent = Event<
12830
13132
  NodeHierarchy$NodeRemovingEventParameters,
12831
13133
  NodeHierarchy
12832
13134
  >;
12833
13135
 
13136
+ /**
13137
+ * Parameters of the NodeHierarchy#nodeReplaced event.
13138
+ */
12834
13139
  export interface NodeHierarchy$NodeReplacedEventParameters {
12835
13140
  ReplacedNodeRef?: any;
12836
13141
 
@@ -12841,17 +13146,26 @@ declare module "sap/ui/vk/NodeHierarchy" {
12841
13146
  ReplacementNodeId?: string;
12842
13147
  }
12843
13148
 
13149
+ /**
13150
+ * Event object of the NodeHierarchy#nodeReplaced event.
13151
+ */
12844
13152
  export type NodeHierarchy$NodeReplacedEvent = Event<
12845
13153
  NodeHierarchy$NodeReplacedEventParameters,
12846
13154
  NodeHierarchy
12847
13155
  >;
12848
13156
 
13157
+ /**
13158
+ * Parameters of the NodeHierarchy#nodeUpdated event.
13159
+ */
12849
13160
  export interface NodeHierarchy$NodeUpdatedEventParameters {
12850
13161
  nodeRef?: any;
12851
13162
 
12852
13163
  nodeId?: string;
12853
13164
  }
12854
13165
 
13166
+ /**
13167
+ * Event object of the NodeHierarchy#nodeUpdated event.
13168
+ */
12855
13169
  export type NodeHierarchy$NodeUpdatedEvent = Event<
12856
13170
  NodeHierarchy$NodeUpdatedEventParameters,
12857
13171
  NodeHierarchy
@@ -13370,7 +13684,9 @@ declare module "sap/ui/vk/NodeProxy" {
13370
13684
  */
13371
13685
  unbindWorldMatrix(): this;
13372
13686
  }
13373
-
13687
+ /**
13688
+ * Describes the settings that can be provided to the NodeProxy constructor.
13689
+ */
13374
13690
  export interface $NodeProxySettings extends $ManagedObjectSettings {
13375
13691
  /**
13376
13692
  * The node reference. This property is read-only.
@@ -13680,7 +13996,9 @@ declare module "sap/ui/vk/Notifications" {
13680
13996
  mParameters?: object
13681
13997
  ): this;
13682
13998
  }
13683
-
13999
+ /**
14000
+ * Describes the settings that can be provided to the Notifications constructor.
14001
+ */
13684
14002
  export interface $NotificationsSettings extends $ControlSettings {
13685
14003
  /**
13686
14004
  * This event will be fired when all messages in the log are deleted.
@@ -13693,15 +14011,27 @@ declare module "sap/ui/vk/Notifications" {
13693
14011
  messageAdded?: (oEvent: Event) => void;
13694
14012
  }
13695
14013
 
14014
+ /**
14015
+ * Parameters of the Notifications#allMessagesCleared event.
14016
+ */
13696
14017
  export interface Notifications$AllMessagesClearedEventParameters {}
13697
14018
 
14019
+ /**
14020
+ * Event object of the Notifications#allMessagesCleared event.
14021
+ */
13698
14022
  export type Notifications$AllMessagesClearedEvent = Event<
13699
14023
  Notifications$AllMessagesClearedEventParameters,
13700
14024
  Notifications
13701
14025
  >;
13702
14026
 
14027
+ /**
14028
+ * Parameters of the Notifications#messageAdded event.
14029
+ */
13703
14030
  export interface Notifications$MessageAddedEventParameters {}
13704
14031
 
14032
+ /**
14033
+ * Event object of the Notifications#messageAdded event.
14034
+ */
13705
14035
  export type Notifications$MessageAddedEvent = Event<
13706
14036
  Notifications$MessageAddedEventParameters,
13707
14037
  Notifications
@@ -13799,7 +14129,9 @@ declare module "sap/ui/vk/OrthographicCamera" {
13799
14129
  fZoomFactor: float
13800
14130
  ): this;
13801
14131
  }
13802
-
14132
+ /**
14133
+ * Describes the settings that can be provided to the OrthographicCamera constructor.
14134
+ */
13803
14135
  export interface $OrthographicCameraSettings extends $CameraSettings {
13804
14136
  /**
13805
14137
  * Camera zoom factor
@@ -13960,7 +14292,11 @@ declare module "sap/ui/vk/OutputSettings" {
13960
14292
  fWidth: float
13961
14293
  ): this;
13962
14294
  }
13963
-
14295
+ /**
14296
+ * Describes the settings that can be provided to the OutputSettings constructor.
14297
+ *
14298
+ * @experimental
14299
+ */
13964
14300
  export interface $OutputSettingsSettings extends $ElementSettings {
13965
14301
  /**
13966
14302
  * width of the output, unit in mm
@@ -14392,7 +14728,9 @@ declare module "sap/ui/vk/Overlay" {
14392
14728
  bZoomOnResize?: boolean
14393
14729
  ): this;
14394
14730
  }
14395
-
14731
+ /**
14732
+ * Describes the settings that can be provided to the Overlay constructor.
14733
+ */
14396
14734
  export interface $OverlaySettings extends $ControlSettings {
14397
14735
  zoomOnResize?: boolean | PropertyBindingInfo | `{${string}}`;
14398
14736
 
@@ -14421,6 +14759,9 @@ declare module "sap/ui/vk/Overlay" {
14421
14759
  contextMenu?: (oEvent: Overlay$ContextMenuEvent) => void;
14422
14760
  }
14423
14761
 
14762
+ /**
14763
+ * Parameters of the Overlay#click event.
14764
+ */
14424
14765
  export interface Overlay$ClickEventParameters {
14425
14766
  /**
14426
14767
  * Client coordinate X
@@ -14438,8 +14779,14 @@ declare module "sap/ui/vk/Overlay" {
14438
14779
  pos?: string;
14439
14780
  }
14440
14781
 
14782
+ /**
14783
+ * Event object of the Overlay#click event.
14784
+ */
14441
14785
  export type Overlay$ClickEvent = Event<Overlay$ClickEventParameters, Overlay>;
14442
14786
 
14787
+ /**
14788
+ * Parameters of the Overlay#contextMenu event.
14789
+ */
14443
14790
  export interface Overlay$ContextMenuEventParameters {
14444
14791
  /**
14445
14792
  * Coordinates of click position in format "x;y;0"
@@ -14452,6 +14799,9 @@ declare module "sap/ui/vk/Overlay" {
14452
14799
  menu?: Menu;
14453
14800
  }
14454
14801
 
14802
+ /**
14803
+ * Event object of the Overlay#contextMenu event.
14804
+ */
14455
14805
  export type Overlay$ContextMenuEvent = Event<
14456
14806
  Overlay$ContextMenuEventParameters,
14457
14807
  Overlay
@@ -15350,7 +15700,9 @@ declare module "sap/ui/vk/OverlayArea" {
15350
15700
  bSelect?: boolean
15351
15701
  ): this;
15352
15702
  }
15353
-
15703
+ /**
15704
+ * Describes the settings that can be provided to the OverlayArea constructor.
15705
+ */
15354
15706
  export interface $OverlayAreaSettings extends $ElementSettings {
15355
15707
  /**
15356
15708
  * Unique identifier for the object. This is optional. If not provided the default identifier sId is used.
@@ -15435,13 +15787,22 @@ declare module "sap/ui/vk/OverlayArea" {
15435
15787
  handleClick?: (oEvent: Event) => void;
15436
15788
  }
15437
15789
 
15790
+ /**
15791
+ * Parameters of the OverlayArea#click event.
15792
+ */
15438
15793
  export interface OverlayArea$ClickEventParameters {}
15439
15794
 
15795
+ /**
15796
+ * Event object of the OverlayArea#click event.
15797
+ */
15440
15798
  export type OverlayArea$ClickEvent = Event<
15441
15799
  OverlayArea$ClickEventParameters,
15442
15800
  OverlayArea
15443
15801
  >;
15444
15802
 
15803
+ /**
15804
+ * Parameters of the OverlayArea#contextMenu event.
15805
+ */
15445
15806
  export interface OverlayArea$ContextMenuEventParameters {
15446
15807
  /**
15447
15808
  * Menu to open
@@ -15449,11 +15810,17 @@ declare module "sap/ui/vk/OverlayArea" {
15449
15810
  menu?: Menu;
15450
15811
  }
15451
15812
 
15813
+ /**
15814
+ * Event object of the OverlayArea#contextMenu event.
15815
+ */
15452
15816
  export type OverlayArea$ContextMenuEvent = Event<
15453
15817
  OverlayArea$ContextMenuEventParameters,
15454
15818
  OverlayArea
15455
15819
  >;
15456
15820
 
15821
+ /**
15822
+ * Parameters of the OverlayArea#edgeClick event.
15823
+ */
15457
15824
  export interface OverlayArea$EdgeClickEventParameters {
15458
15825
  /**
15459
15826
  * Index of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the
@@ -15462,11 +15829,17 @@ declare module "sap/ui/vk/OverlayArea" {
15462
15829
  index?: int;
15463
15830
  }
15464
15831
 
15832
+ /**
15833
+ * Event object of the OverlayArea#edgeClick event.
15834
+ */
15465
15835
  export type OverlayArea$EdgeClickEvent = Event<
15466
15836
  OverlayArea$EdgeClickEventParameters,
15467
15837
  OverlayArea
15468
15838
  >;
15469
15839
 
15840
+ /**
15841
+ * Parameters of the OverlayArea#edgeContextMenu event.
15842
+ */
15470
15843
  export interface OverlayArea$EdgeContextMenuEventParameters {
15471
15844
  /**
15472
15845
  * Index of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the
@@ -15480,18 +15853,30 @@ declare module "sap/ui/vk/OverlayArea" {
15480
15853
  menu?: Menu;
15481
15854
  }
15482
15855
 
15856
+ /**
15857
+ * Event object of the OverlayArea#edgeContextMenu event.
15858
+ */
15483
15859
  export type OverlayArea$EdgeContextMenuEvent = Event<
15484
15860
  OverlayArea$EdgeContextMenuEventParameters,
15485
15861
  OverlayArea
15486
15862
  >;
15487
15863
 
15864
+ /**
15865
+ * Parameters of the OverlayArea#handleClick event.
15866
+ */
15488
15867
  export interface OverlayArea$HandleClickEventParameters {}
15489
15868
 
15869
+ /**
15870
+ * Event object of the OverlayArea#handleClick event.
15871
+ */
15490
15872
  export type OverlayArea$HandleClickEvent = Event<
15491
15873
  OverlayArea$HandleClickEventParameters,
15492
15874
  OverlayArea
15493
15875
  >;
15494
15876
 
15877
+ /**
15878
+ * Parameters of the OverlayArea#handleContextMenu event.
15879
+ */
15495
15880
  export interface OverlayArea$HandleContextMenuEventParameters {
15496
15881
  /**
15497
15882
  * Index of the clicked handle. The numbering is zero based.
@@ -15504,13 +15889,22 @@ declare module "sap/ui/vk/OverlayArea" {
15504
15889
  menu?: Menu;
15505
15890
  }
15506
15891
 
15892
+ /**
15893
+ * Event object of the OverlayArea#handleContextMenu event.
15894
+ */
15507
15895
  export type OverlayArea$HandleContextMenuEvent = Event<
15508
15896
  OverlayArea$HandleContextMenuEventParameters,
15509
15897
  OverlayArea
15510
15898
  >;
15511
15899
 
15900
+ /**
15901
+ * Parameters of the OverlayArea#handleMoved event.
15902
+ */
15512
15903
  export interface OverlayArea$HandleMovedEventParameters {}
15513
15904
 
15905
+ /**
15906
+ * Event object of the OverlayArea#handleMoved event.
15907
+ */
15514
15908
  export type OverlayArea$HandleMovedEvent = Event<
15515
15909
  OverlayArea$HandleMovedEventParameters,
15516
15910
  OverlayArea
@@ -15596,7 +15990,9 @@ declare module "sap/ui/vk/PerspectiveCamera" {
15596
15990
  fFov: float
15597
15991
  ): this;
15598
15992
  }
15599
-
15993
+ /**
15994
+ * Describes the settings that can be provided to the PerspectiveCamera constructor.
15995
+ */
15600
15996
  export interface $PerspectiveCameraSettings extends $CameraSettings {
15601
15997
  /**
15602
15998
  * Camera frustum field of view in degree
@@ -15642,7 +16038,11 @@ declare module "sap/ui/vk/ProgressIndicator" {
15642
16038
  mSettings?: $ProgressIndicatorSettings
15643
16039
  );
15644
16040
  }
15645
-
16041
+ /**
16042
+ * Describes the settings that can be provided to the ProgressIndicator constructor.
16043
+ *
16044
+ * @deprecated (since 1.114.0) - Use {@link sap.m.ProgressIndicator} instead.
16045
+ */
15646
16046
  export interface $ProgressIndicatorSettings
15647
16047
  extends $ProgressIndicatorSettings1 {}
15648
16048
  }
@@ -16204,7 +16604,9 @@ declare module "sap/ui/vk/RedlineCollaboration" {
16204
16604
  oActiveComment: ID | /* was: sap.ui.vk.RedlineComment */ any
16205
16605
  ): this;
16206
16606
  }
16207
-
16607
+ /**
16608
+ * Describes the settings that can be provided to the RedlineCollaboration constructor.
16609
+ */
16208
16610
  export interface $RedlineCollaborationSettings extends $ElementSettings {
16209
16611
  /**
16210
16612
  * A list of available conversations.
@@ -16242,48 +16644,78 @@ declare module "sap/ui/vk/RedlineCollaboration" {
16242
16644
  ) => void;
16243
16645
  }
16244
16646
 
16647
+ /**
16648
+ * Parameters of the RedlineCollaboration#conversationActivated event.
16649
+ */
16245
16650
  export interface RedlineCollaboration$ConversationActivatedEventParameters {
16246
16651
  conversation?: RedlineConversation;
16247
16652
 
16248
16653
  viewportLocked?: boolean;
16249
16654
  }
16250
16655
 
16656
+ /**
16657
+ * Event object of the RedlineCollaboration#conversationActivated event.
16658
+ */
16251
16659
  export type RedlineCollaboration$ConversationActivatedEvent = Event<
16252
16660
  RedlineCollaboration$ConversationActivatedEventParameters,
16253
16661
  RedlineCollaboration
16254
16662
  >;
16255
16663
 
16664
+ /**
16665
+ * Parameters of the RedlineCollaboration#conversationActivating event.
16666
+ */
16256
16667
  export interface RedlineCollaboration$ConversationActivatingEventParameters {
16257
16668
  conversation?: RedlineConversation;
16258
16669
  }
16259
16670
 
16671
+ /**
16672
+ * Event object of the RedlineCollaboration#conversationActivating event.
16673
+ */
16260
16674
  export type RedlineCollaboration$ConversationActivatingEvent = Event<
16261
16675
  RedlineCollaboration$ConversationActivatingEventParameters,
16262
16676
  RedlineCollaboration
16263
16677
  >;
16264
16678
 
16679
+ /**
16680
+ * Parameters of the RedlineCollaboration#elementClicked event.
16681
+ */
16265
16682
  export interface RedlineCollaboration$ElementClickedEventParameters {
16266
16683
  elementId?: string;
16267
16684
  }
16268
16685
 
16686
+ /**
16687
+ * Event object of the RedlineCollaboration#elementClicked event.
16688
+ */
16269
16689
  export type RedlineCollaboration$ElementClickedEvent = Event<
16270
16690
  RedlineCollaboration$ElementClickedEventParameters,
16271
16691
  RedlineCollaboration
16272
16692
  >;
16273
16693
 
16694
+ /**
16695
+ * Parameters of the RedlineCollaboration#elementCreated event.
16696
+ */
16274
16697
  export interface RedlineCollaboration$ElementCreatedEventParameters {
16275
16698
  element?: object;
16276
16699
  }
16277
16700
 
16701
+ /**
16702
+ * Event object of the RedlineCollaboration#elementCreated event.
16703
+ */
16278
16704
  export type RedlineCollaboration$ElementCreatedEvent = Event<
16279
16705
  RedlineCollaboration$ElementCreatedEventParameters,
16280
16706
  RedlineCollaboration
16281
16707
  >;
16282
16708
 
16709
+ /**
16710
+ * Parameters of the RedlineCollaboration#elementHovered event.
16711
+ */
16283
16712
  export interface RedlineCollaboration$ElementHoveredEventParameters {
16284
16713
  elementId?: string;
16285
16714
  }
16286
16715
 
16716
+ /**
16717
+ * Event object of the RedlineCollaboration#elementHovered event.
16718
+ */
16287
16719
  export type RedlineCollaboration$ElementHoveredEvent = Event<
16288
16720
  RedlineCollaboration$ElementHoveredEventParameters,
16289
16721
  RedlineCollaboration
@@ -16562,7 +16994,9 @@ declare module "sap/ui/vk/RedlineConversation" {
16562
16994
  oViewInfo?: any
16563
16995
  ): this;
16564
16996
  }
16565
-
16997
+ /**
16998
+ * Describes the settings that can be provided to the RedlineConversation constructor.
16999
+ */
16566
17000
  export interface $RedlineConversationSettings extends $ElementSettings {
16567
17001
  conversationName?: string | PropertyBindingInfo;
16568
17002
 
@@ -16740,15 +17174,23 @@ declare module "sap/ui/vk/RedlineDesign" {
16740
17174
  */
16741
17175
  stopAdding(): this;
16742
17176
  }
16743
-
17177
+ /**
17178
+ * Describes the settings that can be provided to the RedlineDesign constructor.
17179
+ */
16744
17180
  export interface $RedlineDesignSettings extends $RedlineSurfaceSettings {
16745
17181
  elementCreated?: (oEvent: RedlineDesign$ElementCreatedEvent) => void;
16746
17182
  }
16747
17183
 
17184
+ /**
17185
+ * Parameters of the RedlineDesign#elementCreated event.
17186
+ */
16748
17187
  export interface RedlineDesign$ElementCreatedEventParameters {
16749
17188
  element?: object;
16750
17189
  }
16751
17190
 
17191
+ /**
17192
+ * Event object of the RedlineDesign#elementCreated event.
17193
+ */
16752
17194
  export type RedlineDesign$ElementCreatedEvent = Event<
16753
17195
  RedlineDesign$ElementCreatedEventParameters,
16754
17196
  RedlineDesign
@@ -17216,7 +17658,9 @@ declare module "sap/ui/vk/RedlineElement" {
17216
17658
  bSuppress?: boolean
17217
17659
  ): this;
17218
17660
  }
17219
-
17661
+ /**
17662
+ * Describes the settings that can be provided to the RedlineElement constructor.
17663
+ */
17220
17664
  export interface $RedlineElementSettings extends $ElementSettings {
17221
17665
  originX?: float | PropertyBindingInfo | `{${string}}`;
17222
17666
 
@@ -17373,7 +17817,9 @@ declare module "sap/ui/vk/RedlineElementComment" {
17373
17817
  sText?: string
17374
17818
  ): this;
17375
17819
  }
17376
-
17820
+ /**
17821
+ * Describes the settings that can be provided to the RedlineElementComment constructor.
17822
+ */
17377
17823
  export interface $RedlineElementCommentSettings extends $ElementSettings {
17378
17824
  text?: string | PropertyBindingInfo;
17379
17825
 
@@ -17589,7 +18035,9 @@ declare module "sap/ui/vk/RedlineElementEllipse" {
17589
18035
  fRadiusY?: float
17590
18036
  ): this;
17591
18037
  }
17592
-
18038
+ /**
18039
+ * Describes the settings that can be provided to the RedlineElementEllipse constructor.
18040
+ */
17593
18041
  export interface $RedlineElementEllipseSettings
17594
18042
  extends $RedlineElementSettings {
17595
18043
  radiusX?: float | PropertyBindingInfo | `{${string}}`;
@@ -17754,7 +18202,9 @@ declare module "sap/ui/vk/RedlineElementFreehand" {
17754
18202
  sPath?: float[]
17755
18203
  ): this;
17756
18204
  }
17757
-
18205
+ /**
18206
+ * Describes the settings that can be provided to the RedlineElementFreehand constructor.
18207
+ */
17758
18208
  export interface $RedlineElementFreehandSettings
17759
18209
  extends $RedlineElementSettings {
17760
18210
  path?: float[] | PropertyBindingInfo | `{${string}}`;
@@ -17959,7 +18409,9 @@ declare module "sap/ui/vk/RedlineElementLine" {
17959
18409
  bEndArrowHead?: boolean
17960
18410
  ): this;
17961
18411
  }
17962
-
18412
+ /**
18413
+ * Describes the settings that can be provided to the RedlineElementLine constructor.
18414
+ */
17963
18415
  export interface $RedlineElementLineSettings extends $RedlineElementSettings {
17964
18416
  deltaX?: float | PropertyBindingInfo | `{${string}}`;
17965
18417
 
@@ -18174,7 +18626,9 @@ declare module "sap/ui/vk/RedlineElementRectangle" {
18174
18626
  fWidth?: float
18175
18627
  ): this;
18176
18628
  }
18177
-
18629
+ /**
18630
+ * Describes the settings that can be provided to the RedlineElementRectangle constructor.
18631
+ */
18178
18632
  export interface $RedlineElementRectangleSettings
18179
18633
  extends $RedlineElementSettings {
18180
18634
  width?: float | PropertyBindingInfo | `{${string}}`;
@@ -18460,7 +18914,9 @@ declare module "sap/ui/vk/RedlineElementText" {
18460
18914
  fWidth?: float
18461
18915
  ): this;
18462
18916
  }
18463
-
18917
+ /**
18918
+ * Describes the settings that can be provided to the RedlineElementText constructor.
18919
+ */
18464
18920
  export interface $RedlineElementTextSettings extends $RedlineElementSettings {
18465
18921
  text?: string | PropertyBindingInfo;
18466
18922
 
@@ -18895,7 +19351,9 @@ declare module "sap/ui/vk/RedlineSurface" {
18895
19351
  */
18896
19352
  updatePanningRatio(): this;
18897
19353
  }
18898
-
19354
+ /**
19355
+ * Describes the settings that can be provided to the RedlineSurface constructor.
19356
+ */
18899
19357
  export interface $RedlineSurfaceSettings extends $ControlSettings {
18900
19358
  virtualLeft?: float | PropertyBindingInfo | `{${string}}`;
18901
19359
 
@@ -18916,17 +19374,26 @@ declare module "sap/ui/vk/RedlineSurface" {
18916
19374
  zoom?: (oEvent: RedlineSurface$ZoomEvent) => void;
18917
19375
  }
18918
19376
 
19377
+ /**
19378
+ * Parameters of the RedlineSurface#pan event.
19379
+ */
18919
19380
  export interface RedlineSurface$PanEventParameters {
18920
19381
  deltaX?: float;
18921
19382
 
18922
19383
  deltaY?: float;
18923
19384
  }
18924
19385
 
19386
+ /**
19387
+ * Event object of the RedlineSurface#pan event.
19388
+ */
18925
19389
  export type RedlineSurface$PanEvent = Event<
18926
19390
  RedlineSurface$PanEventParameters,
18927
19391
  RedlineSurface
18928
19392
  >;
18929
19393
 
19394
+ /**
19395
+ * Parameters of the RedlineSurface#zoom event.
19396
+ */
18930
19397
  export interface RedlineSurface$ZoomEventParameters {
18931
19398
  originX?: float;
18932
19399
 
@@ -18935,6 +19402,9 @@ declare module "sap/ui/vk/RedlineSurface" {
18935
19402
  zoomFactor?: float;
18936
19403
  }
18937
19404
 
19405
+ /**
19406
+ * Event object of the RedlineSurface#zoom event.
19407
+ */
18938
19408
  export type RedlineSurface$ZoomEvent = Event<
18939
19409
  RedlineSurface$ZoomEventParameters,
18940
19410
  RedlineSurface
@@ -19046,7 +19516,9 @@ declare module "sap/ui/vk/SafeArea" {
19046
19516
  oSettingsControl: Control
19047
19517
  ): this;
19048
19518
  }
19049
-
19519
+ /**
19520
+ * Describes the settings that can be provided to the SafeArea constructor.
19521
+ */
19050
19522
  export interface $SafeAreaSettings extends $ControlSettings {
19051
19523
  /**
19052
19524
  * Application defined setting control which can be used to control SafeArea and aspect ratio settings
@@ -19427,7 +19899,9 @@ declare module "sap/ui/vk/Scene" {
19427
19899
  view: View
19428
19900
  ): void;
19429
19901
  }
19430
-
19902
+ /**
19903
+ * Describes the settings that can be provided to the Scene constructor.
19904
+ */
19431
19905
  export interface $SceneSettings extends $ManagedObjectSettings {
19432
19906
  /**
19433
19907
  * Enables or disables double-sided materials
@@ -19776,7 +20250,9 @@ declare module "sap/ui/vk/SceneTree" {
19776
20250
  oViewStateManager: ID | ViewStateManagerBase
19777
20251
  ): this;
19778
20252
  }
19779
-
20253
+ /**
20254
+ * Describes the settings that can be provided to the SceneTree constructor.
20255
+ */
19780
20256
  export interface $SceneTreeSettings extends $ControlSettings {
19781
20257
  /**
19782
20258
  * Text to be displayed in title bar of scene tree
@@ -19816,8 +20292,14 @@ declare module "sap/ui/vk/SceneTree" {
19816
20292
  contentChanged?: (oEvent: Event) => void;
19817
20293
  }
19818
20294
 
20295
+ /**
20296
+ * Parameters of the SceneTree#contentChanged event.
20297
+ */
19819
20298
  export interface SceneTree$ContentChangedEventParameters {}
19820
20299
 
20300
+ /**
20301
+ * Event object of the SceneTree#contentChanged event.
20302
+ */
19821
20303
  export type SceneTree$ContentChangedEvent = Event<
19822
20304
  SceneTree$ContentChangedEventParameters,
19823
20305
  SceneTree
@@ -20521,7 +21003,11 @@ declare module "sap/ui/vk/StepNavigation" {
20521
21003
  sWidth?: CSSSize
20522
21004
  ): this;
20523
21005
  }
20524
-
21006
+ /**
21007
+ * Describes the settings that can be provided to the StepNavigation constructor.
21008
+ *
21009
+ * @deprecated (since 1.72.0)
21010
+ */
20525
21011
  export interface $StepNavigationSettings extends $ControlSettings {
20526
21012
  /**
20527
21013
  * Managed settings and properties for Step Navigation events.
@@ -20586,17 +21072,26 @@ declare module "sap/ui/vk/StepNavigation" {
20586
21072
  stepChanged?: (oEvent: StepNavigation$StepChangedEvent) => void;
20587
21073
  }
20588
21074
 
21075
+ /**
21076
+ * Parameters of the StepNavigation#resize event.
21077
+ */
20589
21078
  export interface StepNavigation$ResizeEventParameters {
20590
21079
  oldSize?: object;
20591
21080
 
20592
21081
  size?: object;
20593
21082
  }
20594
21083
 
21084
+ /**
21085
+ * Event object of the StepNavigation#resize event.
21086
+ */
20595
21087
  export type StepNavigation$ResizeEvent = Event<
20596
21088
  StepNavigation$ResizeEventParameters,
20597
21089
  StepNavigation
20598
21090
  >;
20599
21091
 
21092
+ /**
21093
+ * Parameters of the StepNavigation#stepChanged event.
21094
+ */
20600
21095
  export interface StepNavigation$StepChangedEventParameters {
20601
21096
  /**
20602
21097
  * The ID of the rendering client that raised the event.
@@ -20615,6 +21110,9 @@ declare module "sap/ui/vk/StepNavigation" {
20615
21110
  stepId?: object;
20616
21111
  }
20617
21112
 
21113
+ /**
21114
+ * Event object of the StepNavigation#stepChanged event.
21115
+ */
20618
21116
  export type StepNavigation$StepChangedEvent = Event<
20619
21117
  StepNavigation$StepChangedEventParameters,
20620
21118
  StepNavigation
@@ -20950,15 +21448,29 @@ declare module "sap/ui/vk/svg/ContentManager" {
20950
21448
  contentResources: ContentResource[]
20951
21449
  ): this;
20952
21450
  }
20953
-
21451
+ /**
21452
+ * Describes the settings that can be provided to the ContentManager constructor.
21453
+ *
21454
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
21455
+ */
20954
21456
  export interface $ContentManagerSettings extends $ContentManagerSettings1 {
20955
21457
  errorReported?: (oEvent: ContentManager$ErrorReportedEvent) => void;
20956
21458
  }
20957
21459
 
21460
+ /**
21461
+ * Parameters of the ContentManager#errorReported event.
21462
+ *
21463
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
21464
+ */
20958
21465
  export interface ContentManager$ErrorReportedEventParameters {
20959
21466
  error?: any;
20960
21467
  }
20961
21468
 
21469
+ /**
21470
+ * Event object of the ContentManager#errorReported event.
21471
+ *
21472
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
21473
+ */
20962
21474
  export type ContentManager$ErrorReportedEvent = Event<
20963
21475
  ContentManager$ErrorReportedEventParameters,
20964
21476
  ContentManager
@@ -21377,7 +21889,9 @@ declare module "sap/ui/vk/svg/NodeHierarchy" {
21377
21889
  nodeRef: any
21378
21890
  ): this;
21379
21891
  }
21380
-
21892
+ /**
21893
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
21894
+ */
21381
21895
  export interface $NodeHierarchySettings extends $NodeHierarchySettings1 {}
21382
21896
  }
21383
21897
 
@@ -21441,7 +21955,9 @@ declare module "sap/ui/vk/svg/NodeProxy" {
21441
21955
  */
21442
21956
  static getMetadata(): ManagedObjectMetadata;
21443
21957
  }
21444
-
21958
+ /**
21959
+ * Describes the settings that can be provided to the NodeProxy constructor.
21960
+ */
21445
21961
  export interface $NodeProxySettings extends $NodeProxySettings1 {}
21446
21962
  }
21447
21963
 
@@ -21503,7 +22019,9 @@ declare module "sap/ui/vk/svg/OrthographicCamera" {
21503
22019
  */
21504
22020
  static getMetadata(): ManagedObjectMetadata;
21505
22021
  }
21506
-
22022
+ /**
22023
+ * Describes the settings that can be provided to the OrthographicCamera constructor.
22024
+ */
21507
22025
  export interface $OrthographicCameraSettings
21508
22026
  extends $OrthographicCameraSettings1 {}
21509
22027
  }
@@ -21635,7 +22153,9 @@ declare module "sap/ui/vk/svg/Scene" {
21635
22153
  view: View
21636
22154
  ): void;
21637
22155
  }
21638
-
22156
+ /**
22157
+ * Describes the settings that can be provided to the Scene constructor.
22158
+ */
21639
22159
  export interface $SceneSettings extends $SceneSettings1 {}
21640
22160
  }
21641
22161
 
@@ -22162,7 +22682,9 @@ declare module "sap/ui/vk/svg/Viewport" {
22162
22682
  margin: float
22163
22683
  ): Viewport1;
22164
22684
  }
22165
-
22685
+ /**
22686
+ * Describes the settings that can be provided to the Viewport constructor.
22687
+ */
22166
22688
  export interface $ViewportSettings extends $ViewportBaseSettings {
22167
22689
  cameraChanged?: (oEvent: Viewport$CameraChangedEvent) => void;
22168
22690
 
@@ -22171,6 +22693,9 @@ declare module "sap/ui/vk/svg/Viewport" {
22171
22693
  hotspotLeave?: (oEvent: Viewport$HotspotLeaveEvent) => void;
22172
22694
  }
22173
22695
 
22696
+ /**
22697
+ * Parameters of the Viewport#cameraChanged event.
22698
+ */
22174
22699
  export interface Viewport$CameraChangedEventParameters {
22175
22700
  /**
22176
22701
  * Returns a new camera offset.
@@ -22183,24 +22708,39 @@ declare module "sap/ui/vk/svg/Viewport" {
22183
22708
  zoom?: float;
22184
22709
  }
22185
22710
 
22711
+ /**
22712
+ * Event object of the Viewport#cameraChanged event.
22713
+ */
22186
22714
  export type Viewport$CameraChangedEvent = Event<
22187
22715
  Viewport$CameraChangedEventParameters,
22188
22716
  Viewport
22189
22717
  >;
22190
22718
 
22719
+ /**
22720
+ * Parameters of the Viewport#hotspotEnter event.
22721
+ */
22191
22722
  export interface Viewport$HotspotEnterEventParameters {
22192
22723
  nodeRef?: any;
22193
22724
  }
22194
22725
 
22726
+ /**
22727
+ * Event object of the Viewport#hotspotEnter event.
22728
+ */
22195
22729
  export type Viewport$HotspotEnterEvent = Event<
22196
22730
  Viewport$HotspotEnterEventParameters,
22197
22731
  Viewport
22198
22732
  >;
22199
22733
 
22734
+ /**
22735
+ * Parameters of the Viewport#hotspotLeave event.
22736
+ */
22200
22737
  export interface Viewport$HotspotLeaveEventParameters {
22201
22738
  nodeRef?: any;
22202
22739
  }
22203
22740
 
22741
+ /**
22742
+ * Event object of the Viewport#hotspotLeave event.
22743
+ */
22204
22744
  export type Viewport$HotspotLeaveEvent = Event<
22205
22745
  Viewport$HotspotLeaveEventParameters,
22206
22746
  Viewport
@@ -22535,7 +23075,9 @@ declare module "sap/ui/vk/svg/ViewStateManager" {
22535
23075
  force: boolean
22536
23076
  ): this;
22537
23077
  }
22538
-
23078
+ /**
23079
+ * Describes the settings that can be provided to the ViewStateManager constructor.
23080
+ */
22539
23081
  export interface $ViewStateManagerSettings
22540
23082
  extends $ViewStateManagerBaseSettings {}
22541
23083
  }
@@ -22871,7 +23413,12 @@ declare module "sap/ui/vk/Texture" {
22871
23413
  bUvVerticalTilingEnabled?: boolean
22872
23414
  ): this;
22873
23415
  }
22874
-
23416
+ /**
23417
+ * Describes the settings that can be provided to the Texture constructor.
23418
+ *
23419
+ * @experimental (since 1.58.0) - This class is experimental and might be modified or removed in future
23420
+ * versions.
23421
+ */
22875
23422
  export interface $TextureSettings extends $ManagedObjectSettings {
22876
23423
  /**
22877
23424
  * filter mode - Bilinear = 0, NearestNeighbor = 1
@@ -23232,7 +23779,11 @@ declare module "sap/ui/vk/threejs/ContentManager" {
23232
23779
  contentResources: ContentResource[]
23233
23780
  ): this;
23234
23781
  }
23235
-
23782
+ /**
23783
+ * Describes the settings that can be provided to the ContentManager constructor.
23784
+ *
23785
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
23786
+ */
23236
23787
  export interface $ContentManagerSettings extends $ContentManagerSettings1 {}
23237
23788
  }
23238
23789
 
@@ -23295,7 +23846,12 @@ declare module "sap/ui/vk/threejs/Material" {
23295
23846
  */
23296
23847
  static getMetadata(): ManagedObjectMetadata;
23297
23848
  }
23298
-
23849
+ /**
23850
+ * Describes the settings that can be provided to the Material constructor.
23851
+ *
23852
+ * @experimental (since 1.60.0) - This class is experimental and might be modified or removed in future
23853
+ * versions.
23854
+ */
23299
23855
  export interface $MaterialSettings extends $MaterialSettings1 {}
23300
23856
  }
23301
23857
 
@@ -23767,7 +24323,9 @@ declare module "sap/ui/vk/threejs/NodeHierarchy" {
23767
24323
  nodeRef: any
23768
24324
  ): this;
23769
24325
  }
23770
-
24326
+ /**
24327
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
24328
+ */
23771
24329
  export interface $NodeHierarchySettings extends $NodeHierarchySettings1 {}
23772
24330
  }
23773
24331
 
@@ -23910,7 +24468,9 @@ declare module "sap/ui/vk/threejs/NodeProxy" {
23910
24468
  material: Material | THREE.Material
23911
24469
  ): this;
23912
24470
  }
23913
-
24471
+ /**
24472
+ * Describes the settings that can be provided to the NodeProxy constructor.
24473
+ */
23914
24474
  export interface $NodeProxySettings extends $NodeProxySettings1 {}
23915
24475
  }
23916
24476
 
@@ -24009,7 +24569,9 @@ declare module "sap/ui/vk/threejs/OrthographicCamera" {
24009
24569
  height: float
24010
24570
  ): void;
24011
24571
  }
24012
-
24572
+ /**
24573
+ * Describes the settings that can be provided to the OrthographicCamera constructor.
24574
+ */
24013
24575
  export interface $OrthographicCameraSettings
24014
24576
  extends $OrthographicCameraSettings1 {}
24015
24577
  }
@@ -24097,7 +24659,9 @@ declare module "sap/ui/vk/threejs/PerspectiveCamera" {
24097
24659
  height: float
24098
24660
  ): void;
24099
24661
  }
24100
-
24662
+ /**
24663
+ * Describes the settings that can be provided to the PerspectiveCamera constructor.
24664
+ */
24101
24665
  export interface $PerspectiveCameraSettings
24102
24666
  extends $PerspectiveCameraSettings1 {}
24103
24667
  }
@@ -24277,7 +24841,9 @@ declare module "sap/ui/vk/threejs/Scene" {
24277
24841
  markerNodeId: string
24278
24842
  ): void;
24279
24843
  }
24280
-
24844
+ /**
24845
+ * Describes the settings that can be provided to the Scene constructor.
24846
+ */
24281
24847
  export interface $SceneSettings extends $SceneSettings1 {}
24282
24848
  }
24283
24849
 
@@ -24340,7 +24906,12 @@ declare module "sap/ui/vk/threejs/Texture" {
24340
24906
  */
24341
24907
  static getMetadata(): ManagedObjectMetadata;
24342
24908
  }
24343
-
24909
+ /**
24910
+ * Describes the settings that can be provided to the Texture constructor.
24911
+ *
24912
+ * @experimental (since 1.60.0) - This class is experimental and might be modified or removed in future
24913
+ * versions.
24914
+ */
24344
24915
  export interface $TextureSettings extends $TextureSettings1 {}
24345
24916
  }
24346
24917
 
@@ -25011,13 +25582,18 @@ declare module "sap/ui/vk/threejs/Viewport" {
25011
25582
  margin: float
25012
25583
  ): Viewport1;
25013
25584
  }
25014
-
25585
+ /**
25586
+ * Describes the settings that can be provided to the Viewport constructor.
25587
+ */
25015
25588
  export interface $ViewportSettings extends $ViewportBaseSettings {
25016
25589
  cameraChanged?: (oEvent: Viewport$CameraChangedEvent) => void;
25017
25590
 
25018
25591
  frameRenderingFinished?: (oEvent: Event) => void;
25019
25592
  }
25020
25593
 
25594
+ /**
25595
+ * Parameters of the Viewport#cameraChanged event.
25596
+ */
25021
25597
  export interface Viewport$CameraChangedEventParameters {
25022
25598
  /**
25023
25599
  * Returns a new camera position.
@@ -25035,13 +25611,22 @@ declare module "sap/ui/vk/threejs/Viewport" {
25035
25611
  zoom?: float;
25036
25612
  }
25037
25613
 
25614
+ /**
25615
+ * Event object of the Viewport#cameraChanged event.
25616
+ */
25038
25617
  export type Viewport$CameraChangedEvent = Event<
25039
25618
  Viewport$CameraChangedEventParameters,
25040
25619
  Viewport
25041
25620
  >;
25042
25621
 
25622
+ /**
25623
+ * Parameters of the Viewport#frameRenderingFinished event.
25624
+ */
25043
25625
  export interface Viewport$FrameRenderingFinishedEventParameters {}
25044
25626
 
25627
+ /**
25628
+ * Event object of the Viewport#frameRenderingFinished event.
25629
+ */
25045
25630
  export type Viewport$FrameRenderingFinishedEvent = Event<
25046
25631
  Viewport$FrameRenderingFinishedEventParameters,
25047
25632
  Viewport
@@ -25570,7 +26155,9 @@ declare module "sap/ui/vk/threejs/ViewStateManager" {
25570
26155
  DoNotFireSequenceChanged: boolean
25571
26156
  ): this;
25572
26157
  }
25573
-
26158
+ /**
26159
+ * Describes the settings that can be provided to the ViewStateManager constructor.
26160
+ */
25574
26161
  export interface $ViewStateManagerSettings
25575
26162
  extends $ViewStateManagerBaseSettings {}
25576
26163
  }
@@ -26287,7 +26874,9 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26287
26874
  sWidth?: CSSSize
26288
26875
  ): this;
26289
26876
  }
26290
-
26877
+ /**
26878
+ * Describes the settings that can be provided to the ToggleMenuButton constructor.
26879
+ */
26291
26880
  export interface $ToggleMenuButtonSettings extends $ControlSettings {
26292
26881
  /**
26293
26882
  * Defines the type of the button (for example, Default, Accept, Reject, Transparent). Values `Back`, `Up`
@@ -26377,13 +26966,22 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26377
26966
  itemSelected?: (oEvent: ToggleMenuButton$ItemSelectedEvent) => void;
26378
26967
  }
26379
26968
 
26969
+ /**
26970
+ * Parameters of the ToggleMenuButton#beforeMenuOpen event.
26971
+ */
26380
26972
  export interface ToggleMenuButton$BeforeMenuOpenEventParameters {}
26381
26973
 
26974
+ /**
26975
+ * Event object of the ToggleMenuButton#beforeMenuOpen event.
26976
+ */
26382
26977
  export type ToggleMenuButton$BeforeMenuOpenEvent = Event<
26383
26978
  ToggleMenuButton$BeforeMenuOpenEventParameters,
26384
26979
  ToggleMenuButton
26385
26980
  >;
26386
26981
 
26982
+ /**
26983
+ * Parameters of the ToggleMenuButton#itemSelected event.
26984
+ */
26387
26985
  export interface ToggleMenuButton$ItemSelectedEventParameters {
26388
26986
  /**
26389
26987
  * The `ToggleMenuItem` which was selected.
@@ -26391,11 +26989,17 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26391
26989
  item?: /* was: sap.ui.vk.ToggleMenuItem */ any;
26392
26990
  }
26393
26991
 
26992
+ /**
26993
+ * Event object of the ToggleMenuButton#itemSelected event.
26994
+ */
26394
26995
  export type ToggleMenuButton$ItemSelectedEvent = Event<
26395
26996
  ToggleMenuButton$ItemSelectedEventParameters,
26396
26997
  ToggleMenuButton
26397
26998
  >;
26398
26999
 
27000
+ /**
27001
+ * Parameters of the ToggleMenuButton#itemToggled event.
27002
+ */
26399
27003
  export interface ToggleMenuButton$ItemToggledEventParameters {
26400
27004
  /**
26401
27005
  * The `ToggleMenuItem` which was unpressed.
@@ -26408,6 +27012,9 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26408
27012
  newItem?: /* was: sap.ui.vk.ToggleMenuItem */ any;
26409
27013
  }
26410
27014
 
27015
+ /**
27016
+ * Event object of the ToggleMenuButton#itemToggled event.
27017
+ */
26411
27018
  export type ToggleMenuButton$ItemToggledEvent = Event<
26412
27019
  ToggleMenuButton$ItemToggledEventParameters,
26413
27020
  ToggleMenuButton
@@ -26620,7 +27227,9 @@ declare module "sap/ui/vk/Toolbar" {
26620
27227
  oViewer: ID | Viewer
26621
27228
  ): this;
26622
27229
  }
26623
-
27230
+ /**
27231
+ * Describes the settings that can be provided to the Toolbar constructor.
27232
+ */
26624
27233
  export interface $ToolbarSettings extends $ControlSettings {
26625
27234
  /**
26626
27235
  * Used to set the title of the Toolbar
@@ -27296,7 +27905,9 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27296
27905
  bShowEditingUI?: boolean
27297
27906
  ): this;
27298
27907
  }
27299
-
27908
+ /**
27909
+ * Describes the settings that can be provided to the AnchorPointTool constructor.
27910
+ */
27300
27911
  export interface $AnchorPointToolSettings extends $ToolSettings {
27301
27912
  /**
27302
27913
  * If set to true values will change in round number increments instead of continual change
@@ -27352,6 +27963,9 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27352
27963
  rotated?: (oEvent: AnchorPointTool$RotatedEvent) => void;
27353
27964
  }
27354
27965
 
27966
+ /**
27967
+ * Parameters of the AnchorPointTool#moved event.
27968
+ */
27355
27969
  export interface AnchorPointTool$MovedEventParameters {
27356
27970
  x?: float;
27357
27971
 
@@ -27360,11 +27974,17 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27360
27974
  z?: float;
27361
27975
  }
27362
27976
 
27977
+ /**
27978
+ * Event object of the AnchorPointTool#moved event.
27979
+ */
27363
27980
  export type AnchorPointTool$MovedEvent = Event<
27364
27981
  AnchorPointTool$MovedEventParameters,
27365
27982
  AnchorPointTool
27366
27983
  >;
27367
27984
 
27985
+ /**
27986
+ * Parameters of the AnchorPointTool#moving event.
27987
+ */
27368
27988
  export interface AnchorPointTool$MovingEventParameters {
27369
27989
  x?: float;
27370
27990
 
@@ -27373,11 +27993,17 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27373
27993
  z?: float;
27374
27994
  }
27375
27995
 
27996
+ /**
27997
+ * Event object of the AnchorPointTool#moving event.
27998
+ */
27376
27999
  export type AnchorPointTool$MovingEvent = Event<
27377
28000
  AnchorPointTool$MovingEventParameters,
27378
28001
  AnchorPointTool
27379
28002
  >;
27380
28003
 
28004
+ /**
28005
+ * Parameters of the AnchorPointTool#rotated event.
28006
+ */
27381
28007
  export interface AnchorPointTool$RotatedEventParameters {
27382
28008
  x?: float;
27383
28009
 
@@ -27386,11 +28012,17 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27386
28012
  z?: float;
27387
28013
  }
27388
28014
 
28015
+ /**
28016
+ * Event object of the AnchorPointTool#rotated event.
28017
+ */
27389
28018
  export type AnchorPointTool$RotatedEvent = Event<
27390
28019
  AnchorPointTool$RotatedEventParameters,
27391
28020
  AnchorPointTool
27392
28021
  >;
27393
28022
 
28023
+ /**
28024
+ * Parameters of the AnchorPointTool#rotating event.
28025
+ */
27394
28026
  export interface AnchorPointTool$RotatingEventParameters {
27395
28027
  x?: float;
27396
28028
 
@@ -27399,6 +28031,9 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27399
28031
  z?: float;
27400
28032
  }
27401
28033
 
28034
+ /**
28035
+ * Event object of the AnchorPointTool#rotating event.
28036
+ */
27402
28037
  export type AnchorPointTool$RotatingEvent = Event<
27403
28038
  AnchorPointTool$RotatingEventParameters,
27404
28039
  AnchorPointTool
@@ -27857,7 +28492,11 @@ declare module "sap/ui/vk/tools/AxisAngleRotationTool" {
27857
28492
  bShowEditingUI?: boolean
27858
28493
  ): this;
27859
28494
  }
27860
-
28495
+ /**
28496
+ * Describes the settings that can be provided to the AxisAngleRotationTool constructor.
28497
+ *
28498
+ * @experimental
28499
+ */
27861
28500
  export interface $AxisAngleRotationToolSettings extends $ToolSettings {
27862
28501
  /**
27863
28502
  * If set to `true` values will change in round number increments instead of continual change
@@ -27914,19 +28553,31 @@ declare module "sap/ui/vk/tools/AxisAngleRotationTool" {
27914
28553
  rotated?: (oEvent: AxisAngleRotationTool$RotatedEvent) => void;
27915
28554
  }
27916
28555
 
28556
+ /**
28557
+ * Parameters of the AxisAngleRotationTool#rotated event.
28558
+ */
27917
28559
  export interface AxisAngleRotationTool$RotatedEventParameters {
27918
28560
  nodesProperties?: object[];
27919
28561
  }
27920
28562
 
28563
+ /**
28564
+ * Event object of the AxisAngleRotationTool#rotated event.
28565
+ */
27921
28566
  export type AxisAngleRotationTool$RotatedEvent = Event<
27922
28567
  AxisAngleRotationTool$RotatedEventParameters,
27923
28568
  AxisAngleRotationTool
27924
28569
  >;
27925
28570
 
28571
+ /**
28572
+ * Parameters of the AxisAngleRotationTool#rotating event.
28573
+ */
27926
28574
  export interface AxisAngleRotationTool$RotatingEventParameters {
27927
28575
  nodesProperties?: object[];
27928
28576
  }
27929
28577
 
28578
+ /**
28579
+ * Event object of the AxisAngleRotationTool#rotating event.
28580
+ */
27930
28581
  export type AxisAngleRotationTool$RotatingEvent = Event<
27931
28582
  AxisAngleRotationTool$RotatingEventParameters,
27932
28583
  AxisAngleRotationTool
@@ -28184,7 +28835,9 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
28184
28835
  bUniformMode?: boolean
28185
28836
  ): this;
28186
28837
  }
28187
-
28838
+ /**
28839
+ * Describes the settings that can be provided to the CreateEllipseTool constructor.
28840
+ */
28188
28841
  export interface $CreateEllipseToolSettings extends $ToolSettings {
28189
28842
  /**
28190
28843
  * Parent node for new elements.
@@ -28202,6 +28855,9 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
28202
28855
  completed?: (oEvent: CreateEllipseTool$CompletedEvent) => void;
28203
28856
  }
28204
28857
 
28858
+ /**
28859
+ * Parameters of the CreateEllipseTool#completed event.
28860
+ */
28205
28861
  export interface CreateEllipseTool$CompletedEventParameters {
28206
28862
  /**
28207
28863
  * Created node.
@@ -28218,6 +28874,9 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
28218
28874
  request?: any;
28219
28875
  }
28220
28876
 
28877
+ /**
28878
+ * Event object of the CreateEllipseTool#completed event.
28879
+ */
28221
28880
  export type CreateEllipseTool$CompletedEvent = Event<
28222
28881
  CreateEllipseTool$CompletedEventParameters,
28223
28882
  CreateEllipseTool
@@ -28446,7 +29105,9 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
28446
29105
  oParentNode?: any
28447
29106
  ): this;
28448
29107
  }
28449
-
29108
+ /**
29109
+ * Describes the settings that can be provided to the CreatePathTool constructor.
29110
+ */
28450
29111
  export interface $CreatePathToolSettings extends $ToolSettings {
28451
29112
  /**
28452
29113
  * Parent node for new elements.
@@ -28464,6 +29125,9 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
28464
29125
  completed?: (oEvent: CreatePathTool$CompletedEvent) => void;
28465
29126
  }
28466
29127
 
29128
+ /**
29129
+ * Parameters of the CreatePathTool#completed event.
29130
+ */
28467
29131
  export interface CreatePathTool$CompletedEventParameters {
28468
29132
  /**
28469
29133
  * Created node.
@@ -28485,6 +29149,9 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
28485
29149
  closed?: boolean;
28486
29150
  }
28487
29151
 
29152
+ /**
29153
+ * Event object of the CreatePathTool#completed event.
29154
+ */
28488
29155
  export type CreatePathTool$CompletedEvent = Event<
28489
29156
  CreatePathTool$CompletedEventParameters,
28490
29157
  CreatePathTool
@@ -28715,7 +29382,9 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
28715
29382
  bUniformMode?: boolean
28716
29383
  ): this;
28717
29384
  }
28718
-
29385
+ /**
29386
+ * Describes the settings that can be provided to the CreateRectangleTool constructor.
29387
+ */
28719
29388
  export interface $CreateRectangleToolSettings extends $ToolSettings {
28720
29389
  /**
28721
29390
  * Parent node for the rectangle that will be created.
@@ -28733,6 +29402,9 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
28733
29402
  completed?: (oEvent: CreateRectangleTool$CompletedEvent) => void;
28734
29403
  }
28735
29404
 
29405
+ /**
29406
+ * Parameters of the CreateRectangleTool#completed event.
29407
+ */
28736
29408
  export interface CreateRectangleTool$CompletedEventParameters {
28737
29409
  /**
28738
29410
  * Created node.
@@ -28749,6 +29421,9 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
28749
29421
  request?: any;
28750
29422
  }
28751
29423
 
29424
+ /**
29425
+ * Event object of the CreateRectangleTool#completed event.
29426
+ */
28752
29427
  export type CreateRectangleTool$CompletedEvent = Event<
28753
29428
  CreateRectangleTool$CompletedEventParameters,
28754
29429
  CreateRectangleTool
@@ -29006,7 +29681,9 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
29006
29681
  oParentNode?: any
29007
29682
  ): this;
29008
29683
  }
29009
-
29684
+ /**
29685
+ * Describes the settings that can be provided to the CreateTextTool constructor.
29686
+ */
29010
29687
  export interface $CreateTextToolSettings extends $ToolSettings {
29011
29688
  /**
29012
29689
  * Parent node for new elements.
@@ -29029,6 +29706,9 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
29029
29706
  completed?: (oEvent: CreateTextTool$CompletedEvent) => void;
29030
29707
  }
29031
29708
 
29709
+ /**
29710
+ * Parameters of the CreateTextTool#completed event.
29711
+ */
29032
29712
  export interface CreateTextTool$CompletedEventParameters {
29033
29713
  /**
29034
29714
  * Created node.
@@ -29045,6 +29725,9 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
29045
29725
  request?: any;
29046
29726
  }
29047
29727
 
29728
+ /**
29729
+ * Event object of the CreateTextTool#completed event.
29730
+ */
29048
29731
  export type CreateTextTool$CompletedEvent = Event<
29049
29732
  CreateTextTool$CompletedEventParameters,
29050
29733
  CreateTextTool
@@ -29195,7 +29878,9 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
29195
29878
  bShowEditingUI?: boolean
29196
29879
  ): this;
29197
29880
  }
29198
-
29881
+ /**
29882
+ * Describes the settings that can be provided to the CrossSectionTool constructor.
29883
+ */
29199
29884
  export interface $CrossSectionToolSettings extends $ToolSettings {
29200
29885
  /**
29201
29886
  * Display text box with current value, which can also be used to directly modify the value
@@ -29428,7 +30113,9 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
29428
30113
  oParentNode?: any
29429
30114
  ): this;
29430
30115
  }
29431
-
30116
+ /**
30117
+ * Describes the settings that can be provided to the DuplicateSvgElementTool constructor.
30118
+ */
29432
30119
  export interface $DuplicateSvgElementToolSettings extends $ToolSettings {
29433
30120
  /**
29434
30121
  * Parent node for new elements.
@@ -29446,6 +30133,9 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
29446
30133
  nodesCreated?: (oEvent: DuplicateSvgElementTool$NodesCreatedEvent) => void;
29447
30134
  }
29448
30135
 
30136
+ /**
30137
+ * Parameters of the DuplicateSvgElementTool#nodesCreated event.
30138
+ */
29449
30139
  export interface DuplicateSvgElementTool$NodesCreatedEventParameters {
29450
30140
  /**
29451
30141
  * Offset in x direction
@@ -29468,6 +30158,9 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
29468
30158
  request?: object;
29469
30159
  }
29470
30160
 
30161
+ /**
30162
+ * Event object of the DuplicateSvgElementTool#nodesCreated event.
30163
+ */
29471
30164
  export type DuplicateSvgElementTool$NodesCreatedEvent = Event<
29472
30165
  DuplicateSvgElementTool$NodesCreatedEventParameters,
29473
30166
  DuplicateSvgElementTool
@@ -29702,7 +30395,11 @@ declare module "sap/ui/vk/tools/ExplodeItemGroup" {
29702
30395
  sName: string
29703
30396
  ): this;
29704
30397
  }
29705
-
30398
+ /**
30399
+ * Describes the settings that can be provided to the ExplodeItemGroup constructor.
30400
+ *
30401
+ * @experimental
30402
+ */
29706
30403
  export interface $ExplodeItemGroupSettings extends $ElementSettings {
29707
30404
  name?: string | PropertyBindingInfo;
29708
30405
 
@@ -30484,7 +31181,9 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30484
31181
  sType?: ExplodeType | keyof typeof ExplodeType
30485
31182
  ): this;
30486
31183
  }
30487
-
31184
+ /**
31185
+ * Describes the settings that can be provided to the ExplodeTool constructor.
31186
+ */
30488
31187
  export interface $ExplodeToolSettings extends $ToolSettings {
30489
31188
  type?:
30490
31189
  | (ExplodeType | keyof typeof ExplodeType)
@@ -30532,50 +31231,77 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30532
31231
  ) => void;
30533
31232
  }
30534
31233
 
31234
+ /**
31235
+ * Parameters of the ExplodeTool#axisSelected event.
31236
+ */
30535
31237
  export interface ExplodeTool$AxisSelectedEventParameters {
30536
31238
  axis?: ExplodeAxis | keyof typeof ExplodeAxis;
30537
31239
 
30538
31240
  direction?: ExplodeDirection | keyof typeof ExplodeDirection;
30539
31241
  }
30540
31242
 
31243
+ /**
31244
+ * Event object of the ExplodeTool#axisSelected event.
31245
+ */
30541
31246
  export type ExplodeTool$AxisSelectedEvent = Event<
30542
31247
  ExplodeTool$AxisSelectedEventParameters,
30543
31248
  ExplodeTool
30544
31249
  >;
30545
31250
 
31251
+ /**
31252
+ * Parameters of the ExplodeTool#itemPositionAdjusted event.
31253
+ */
30546
31254
  export interface ExplodeTool$ItemPositionAdjustedEventParameters {
30547
31255
  item?: ExplodeItemGroup;
30548
31256
 
30549
31257
  magnitudeAdjustmentMultiplier?: float;
30550
31258
  }
30551
31259
 
31260
+ /**
31261
+ * Event object of the ExplodeTool#itemPositionAdjusted event.
31262
+ */
30552
31263
  export type ExplodeTool$ItemPositionAdjustedEvent = Event<
30553
31264
  ExplodeTool$ItemPositionAdjustedEventParameters,
30554
31265
  ExplodeTool
30555
31266
  >;
30556
31267
 
31268
+ /**
31269
+ * Parameters of the ExplodeTool#itemPositionAdjusting event.
31270
+ */
30557
31271
  export interface ExplodeTool$ItemPositionAdjustingEventParameters {
30558
31272
  item?: ExplodeItemGroup;
30559
31273
 
30560
31274
  magnitudeAdjustmentMultiplier?: float;
30561
31275
  }
30562
31276
 
31277
+ /**
31278
+ * Event object of the ExplodeTool#itemPositionAdjusting event.
31279
+ */
30563
31280
  export type ExplodeTool$ItemPositionAdjustingEvent = Event<
30564
31281
  ExplodeTool$ItemPositionAdjustingEventParameters,
30565
31282
  ExplodeTool
30566
31283
  >;
30567
31284
 
31285
+ /**
31286
+ * Parameters of the ExplodeTool#itemSequenceChangePressed event.
31287
+ */
30568
31288
  export interface ExplodeTool$ItemSequenceChangePressedEventParameters {
30569
31289
  item?: ExplodeItemGroup;
30570
31290
 
30571
31291
  moveUp?: boolean;
30572
31292
  }
30573
31293
 
31294
+ /**
31295
+ * Event object of the ExplodeTool#itemSequenceChangePressed event.
31296
+ */
30574
31297
  export type ExplodeTool$ItemSequenceChangePressedEvent = Event<
30575
31298
  ExplodeTool$ItemSequenceChangePressedEventParameters,
30576
31299
  ExplodeTool
30577
31300
  >;
30578
31301
 
31302
+ /**
31303
+ * Parameters of the ExplodeTool#magnitudeChanged event.
31304
+ */
30579
31305
  export interface ExplodeTool$MagnitudeChangedEventParameters {
30580
31306
  type?: ExplodeType | keyof typeof ExplodeType;
30581
31307
 
@@ -30586,11 +31312,17 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30586
31312
  magnitude?: float;
30587
31313
  }
30588
31314
 
31315
+ /**
31316
+ * Event object of the ExplodeTool#magnitudeChanged event.
31317
+ */
30589
31318
  export type ExplodeTool$MagnitudeChangedEvent = Event<
30590
31319
  ExplodeTool$MagnitudeChangedEventParameters,
30591
31320
  ExplodeTool
30592
31321
  >;
30593
31322
 
31323
+ /**
31324
+ * Parameters of the ExplodeTool#magnitudeChanging event.
31325
+ */
30594
31326
  export interface ExplodeTool$MagnitudeChangingEventParameters {
30595
31327
  type?: ExplodeType | keyof typeof ExplodeType;
30596
31328
 
@@ -30601,6 +31333,9 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30601
31333
  magnitude?: float;
30602
31334
  }
30603
31335
 
31336
+ /**
31337
+ * Event object of the ExplodeTool#magnitudeChanging event.
31338
+ */
30604
31339
  export type ExplodeTool$MagnitudeChangingEvent = Event<
30605
31340
  ExplodeTool$MagnitudeChangingEventParameters,
30606
31341
  ExplodeTool
@@ -30697,7 +31432,9 @@ declare module "sap/ui/vk/tools/Gizmo" {
30697
31432
  */
30698
31433
  static getMetadata(): ElementMetadata;
30699
31434
  }
30700
-
31435
+ /**
31436
+ * Describes the settings that can be provided to the Gizmo constructor.
31437
+ */
30701
31438
  export interface $GizmoSettings extends $ControlSettings {}
30702
31439
  }
30703
31440
 
@@ -31005,7 +31742,9 @@ declare module "sap/ui/vk/tools/HitTestTool" {
31005
31742
  sIdMode?: HitTestIdMode | keyof typeof HitTestIdMode
31006
31743
  ): this;
31007
31744
  }
31008
-
31745
+ /**
31746
+ * Describes the settings that can be provided to the HitTestTool constructor.
31747
+ */
31009
31748
  export interface $HitTestToolSettings extends $ToolSettings {
31010
31749
  /**
31011
31750
  * Indicates what schema the tool should use to extract IDs from hit objects
@@ -31021,6 +31760,9 @@ declare module "sap/ui/vk/tools/HitTestTool" {
31021
31760
  hit?: (oEvent: HitTestTool$HitEvent) => void;
31022
31761
  }
31023
31762
 
31763
+ /**
31764
+ * Parameters of the HitTestTool#hit event.
31765
+ */
31024
31766
  export interface HitTestTool$HitEventParameters {
31025
31767
  id?: any;
31026
31768
 
@@ -31031,6 +31773,9 @@ declare module "sap/ui/vk/tools/HitTestTool" {
31031
31773
  clickType?: HitTestClickType | keyof typeof HitTestClickType;
31032
31774
  }
31033
31775
 
31776
+ /**
31777
+ * Event object of the HitTestTool#hit event.
31778
+ */
31034
31779
  export type HitTestTool$HitEvent = Event<
31035
31780
  HitTestTool$HitEventParameters,
31036
31781
  HitTestTool
@@ -31728,7 +32473,9 @@ declare module "sap/ui/vk/tools/MoveTool" {
31728
32473
  bShowEditingUI?: boolean
31729
32474
  ): this;
31730
32475
  }
31731
-
32476
+ /**
32477
+ * Describes the settings that can be provided to the MoveTool constructor.
32478
+ */
31732
32479
  export interface $MoveToolSettings extends $ToolSettings {
31733
32480
  /**
31734
32481
  * Select coordinate system in which this tool operates. Can be Local, World, Parent, Screen or Custom
@@ -31811,15 +32558,24 @@ declare module "sap/ui/vk/tools/MoveTool" {
31811
32558
  placementModeChanged?: (oEvent: MoveTool$PlacementModeChangedEvent) => void;
31812
32559
  }
31813
32560
 
32561
+ /**
32562
+ * Parameters of the MoveTool#coordinateSystemChanged event.
32563
+ */
31814
32564
  export interface MoveTool$CoordinateSystemChangedEventParameters {
31815
32565
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
31816
32566
  }
31817
32567
 
32568
+ /**
32569
+ * Event object of the MoveTool#coordinateSystemChanged event.
32570
+ */
31818
32571
  export type MoveTool$CoordinateSystemChangedEvent = Event<
31819
32572
  MoveTool$CoordinateSystemChangedEventParameters,
31820
32573
  MoveTool
31821
32574
  >;
31822
32575
 
32576
+ /**
32577
+ * Parameters of the MoveTool#moved event.
32578
+ */
31823
32579
  export interface MoveTool$MovedEventParameters {
31824
32580
  x?: float;
31825
32581
 
@@ -31830,11 +32586,17 @@ declare module "sap/ui/vk/tools/MoveTool" {
31830
32586
  nodesProperties?: any[];
31831
32587
  }
31832
32588
 
32589
+ /**
32590
+ * Event object of the MoveTool#moved event.
32591
+ */
31833
32592
  export type MoveTool$MovedEvent = Event<
31834
32593
  MoveTool$MovedEventParameters,
31835
32594
  MoveTool
31836
32595
  >;
31837
32596
 
32597
+ /**
32598
+ * Parameters of the MoveTool#moving event.
32599
+ */
31838
32600
  export interface MoveTool$MovingEventParameters {
31839
32601
  x?: float;
31840
32602
 
@@ -31845,15 +32607,24 @@ declare module "sap/ui/vk/tools/MoveTool" {
31845
32607
  nodesProperties?: any[];
31846
32608
  }
31847
32609
 
32610
+ /**
32611
+ * Event object of the MoveTool#moving event.
32612
+ */
31848
32613
  export type MoveTool$MovingEvent = Event<
31849
32614
  MoveTool$MovingEventParameters,
31850
32615
  MoveTool
31851
32616
  >;
31852
32617
 
32618
+ /**
32619
+ * Parameters of the MoveTool#placementModeChanged event.
32620
+ */
31853
32621
  export interface MoveTool$PlacementModeChangedEventParameters {
31854
32622
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
31855
32623
  }
31856
32624
 
32625
+ /**
32626
+ * Event object of the MoveTool#placementModeChanged event.
32627
+ */
31857
32628
  export type MoveTool$PlacementModeChangedEvent = Event<
31858
32629
  MoveTool$PlacementModeChangedEventParameters,
31859
32630
  MoveTool
@@ -32209,7 +32980,12 @@ declare module "sap/ui/vk/tools/PointCloudSelectionTool" {
32209
32980
  sSelectionColor?: float[]
32210
32981
  ): this;
32211
32982
  }
32212
-
32983
+ /**
32984
+ * Describes the settings that can be provided to the PointCloudSelectionTool constructor.
32985
+ *
32986
+ * @experimental (since 1.118.0) - This class is experimental and might be modified or removed in future
32987
+ * versions.
32988
+ */
32213
32989
  export interface $PointCloudSelectionToolSettings extends $ToolSettings {
32214
32990
  selectionColor?: float[] | PropertyBindingInfo | `{${string}}`;
32215
32991
 
@@ -32220,22 +32996,40 @@ declare module "sap/ui/vk/tools/PointCloudSelectionTool" {
32220
32996
  currentGroupChanged?: (oEvent: Event) => void;
32221
32997
  }
32222
32998
 
32999
+ /**
33000
+ * Parameters of the PointCloudSelectionTool#currentGroupChanged event.
33001
+ */
32223
33002
  export interface PointCloudSelectionTool$CurrentGroupChangedEventParameters {}
32224
33003
 
33004
+ /**
33005
+ * Event object of the PointCloudSelectionTool#currentGroupChanged event.
33006
+ */
32225
33007
  export type PointCloudSelectionTool$CurrentGroupChangedEvent = Event<
32226
33008
  PointCloudSelectionTool$CurrentGroupChangedEventParameters,
32227
33009
  PointCloudSelectionTool
32228
33010
  >;
32229
33011
 
33012
+ /**
33013
+ * Parameters of the PointCloudSelectionTool#groupAdded event.
33014
+ */
32230
33015
  export interface PointCloudSelectionTool$GroupAddedEventParameters {}
32231
33016
 
33017
+ /**
33018
+ * Event object of the PointCloudSelectionTool#groupAdded event.
33019
+ */
32232
33020
  export type PointCloudSelectionTool$GroupAddedEvent = Event<
32233
33021
  PointCloudSelectionTool$GroupAddedEventParameters,
32234
33022
  PointCloudSelectionTool
32235
33023
  >;
32236
33024
 
33025
+ /**
33026
+ * Parameters of the PointCloudSelectionTool#groupRemoved event.
33027
+ */
32237
33028
  export interface PointCloudSelectionTool$GroupRemovedEventParameters {}
32238
33029
 
33030
+ /**
33031
+ * Event object of the PointCloudSelectionTool#groupRemoved event.
33032
+ */
32239
33033
  export type PointCloudSelectionTool$GroupRemovedEvent = Event<
32240
33034
  PointCloudSelectionTool$GroupRemovedEventParameters,
32241
33035
  PointCloudSelectionTool
@@ -32421,7 +33215,9 @@ declare module "sap/ui/vk/tools/RectSelectTool" {
32421
33215
  bSubtractMode?: boolean
32422
33216
  ): this;
32423
33217
  }
32424
-
33218
+ /**
33219
+ * Describes the settings that can be provided to the RectSelectTool constructor.
33220
+ */
32425
33221
  export interface $RectSelectToolSettings extends $ToolSettings {
32426
33222
  /**
32427
33223
  * If set to true then this tool will remove selected nodes from the selection set. Default is to always
@@ -32924,7 +33720,9 @@ declare module "sap/ui/vk/tools/RedlineTool" {
32924
33720
  */
32925
33721
  stopAdding(): this;
32926
33722
  }
32927
-
33723
+ /**
33724
+ * Describes the settings that can be provided to the RedlineTool constructor.
33725
+ */
32928
33726
  export interface $RedlineToolSettings extends $ToolSettings {
32929
33727
  /**
32930
33728
  * Determines if elements editing is enabled
@@ -32947,28 +33745,46 @@ declare module "sap/ui/vk/tools/RedlineTool" {
32947
33745
  elementHovered?: (oEvent: RedlineTool$ElementHoveredEvent) => void;
32948
33746
  }
32949
33747
 
33748
+ /**
33749
+ * Parameters of the RedlineTool#elementClicked event.
33750
+ */
32950
33751
  export interface RedlineTool$ElementClickedEventParameters {
32951
33752
  elementId?: string;
32952
33753
  }
32953
33754
 
33755
+ /**
33756
+ * Event object of the RedlineTool#elementClicked event.
33757
+ */
32954
33758
  export type RedlineTool$ElementClickedEvent = Event<
32955
33759
  RedlineTool$ElementClickedEventParameters,
32956
33760
  RedlineTool
32957
33761
  >;
32958
33762
 
33763
+ /**
33764
+ * Parameters of the RedlineTool#elementCreated event.
33765
+ */
32959
33766
  export interface RedlineTool$ElementCreatedEventParameters {
32960
33767
  element?: object;
32961
33768
  }
32962
33769
 
33770
+ /**
33771
+ * Event object of the RedlineTool#elementCreated event.
33772
+ */
32963
33773
  export type RedlineTool$ElementCreatedEvent = Event<
32964
33774
  RedlineTool$ElementCreatedEventParameters,
32965
33775
  RedlineTool
32966
33776
  >;
32967
33777
 
33778
+ /**
33779
+ * Parameters of the RedlineTool#elementHovered event.
33780
+ */
32968
33781
  export interface RedlineTool$ElementHoveredEventParameters {
32969
33782
  elementId?: string;
32970
33783
  }
32971
33784
 
33785
+ /**
33786
+ * Event object of the RedlineTool#elementHovered event.
33787
+ */
32972
33788
  export type RedlineTool$ElementHoveredEvent = Event<
32973
33789
  RedlineTool$ElementHoveredEventParameters,
32974
33790
  RedlineTool
@@ -33166,7 +33982,9 @@ declare module "sap/ui/vk/tools/RotateOrbitTool" {
33166
33982
  dy: int
33167
33983
  ): void;
33168
33984
  }
33169
-
33985
+ /**
33986
+ * Describes the settings that can be provided to the RotateOrbitTool constructor.
33987
+ */
33170
33988
  export interface $RotateOrbitToolSettings extends $ToolSettings {
33171
33989
  /**
33172
33990
  * This event will be fired when rotation occurs.
@@ -33174,12 +33992,18 @@ declare module "sap/ui/vk/tools/RotateOrbitTool" {
33174
33992
  rotate?: (oEvent: RotateOrbitTool$RotateEvent) => void;
33175
33993
  }
33176
33994
 
33995
+ /**
33996
+ * Parameters of the RotateOrbitTool#rotate event.
33997
+ */
33177
33998
  export interface RotateOrbitTool$RotateEventParameters {
33178
33999
  dx?: int;
33179
34000
 
33180
34001
  dy?: int;
33181
34002
  }
33182
34003
 
34004
+ /**
34005
+ * Event object of the RotateOrbitTool#rotate event.
34006
+ */
33183
34007
  export type RotateOrbitTool$RotateEvent = Event<
33184
34008
  RotateOrbitTool$RotateEventParameters,
33185
34009
  RotateOrbitTool
@@ -33986,7 +34810,9 @@ declare module "sap/ui/vk/tools/RotateTool" {
33986
34810
  bShowEditingUI?: boolean
33987
34811
  ): this;
33988
34812
  }
33989
-
34813
+ /**
34814
+ * Describes the settings that can be provided to the RotateTool constructor.
34815
+ */
33990
34816
  export interface $RotateToolSettings extends $ToolSettings {
33991
34817
  /**
33992
34818
  * Select coordinate system in which this tool operates. Can be Local, World, Parent, Screen or Custom
@@ -34083,33 +34909,54 @@ declare module "sap/ui/vk/tools/RotateTool" {
34083
34909
  ) => void;
34084
34910
  }
34085
34911
 
34912
+ /**
34913
+ * Parameters of the RotateTool#axisChanged event.
34914
+ */
34086
34915
  export interface RotateTool$AxisChangedEventParameters {
34087
34916
  axis?: RotatableAxis | keyof typeof RotatableAxis;
34088
34917
  }
34089
34918
 
34919
+ /**
34920
+ * Event object of the RotateTool#axisChanged event.
34921
+ */
34090
34922
  export type RotateTool$AxisChangedEvent = Event<
34091
34923
  RotateTool$AxisChangedEventParameters,
34092
34924
  RotateTool
34093
34925
  >;
34094
34926
 
34927
+ /**
34928
+ * Parameters of the RotateTool#coordinateSystemChanged event.
34929
+ */
34095
34930
  export interface RotateTool$CoordinateSystemChangedEventParameters {
34096
34931
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
34097
34932
  }
34098
34933
 
34934
+ /**
34935
+ * Event object of the RotateTool#coordinateSystemChanged event.
34936
+ */
34099
34937
  export type RotateTool$CoordinateSystemChangedEvent = Event<
34100
34938
  RotateTool$CoordinateSystemChangedEventParameters,
34101
34939
  RotateTool
34102
34940
  >;
34103
34941
 
34942
+ /**
34943
+ * Parameters of the RotateTool#placementModeChanged event.
34944
+ */
34104
34945
  export interface RotateTool$PlacementModeChangedEventParameters {
34105
34946
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
34106
34947
  }
34107
34948
 
34949
+ /**
34950
+ * Event object of the RotateTool#placementModeChanged event.
34951
+ */
34108
34952
  export type RotateTool$PlacementModeChangedEvent = Event<
34109
34953
  RotateTool$PlacementModeChangedEventParameters,
34110
34954
  RotateTool
34111
34955
  >;
34112
34956
 
34957
+ /**
34958
+ * Parameters of the RotateTool#rotated event.
34959
+ */
34113
34960
  export interface RotateTool$RotatedEventParameters {
34114
34961
  x?: float;
34115
34962
 
@@ -34120,11 +34967,17 @@ declare module "sap/ui/vk/tools/RotateTool" {
34120
34967
  nodesProperties?: any[];
34121
34968
  }
34122
34969
 
34970
+ /**
34971
+ * Event object of the RotateTool#rotated event.
34972
+ */
34123
34973
  export type RotateTool$RotatedEvent = Event<
34124
34974
  RotateTool$RotatedEventParameters,
34125
34975
  RotateTool
34126
34976
  >;
34127
34977
 
34978
+ /**
34979
+ * Parameters of the RotateTool#rotating event.
34980
+ */
34128
34981
  export interface RotateTool$RotatingEventParameters {
34129
34982
  x?: float;
34130
34983
 
@@ -34135,6 +34988,9 @@ declare module "sap/ui/vk/tools/RotateTool" {
34135
34988
  nodesProperties?: any[];
34136
34989
  }
34137
34990
 
34991
+ /**
34992
+ * Event object of the RotateTool#rotating event.
34993
+ */
34138
34994
  export type RotateTool$RotatingEvent = Event<
34139
34995
  RotateTool$RotatingEventParameters,
34140
34996
  RotateTool
@@ -34309,7 +35165,9 @@ declare module "sap/ui/vk/tools/RotateTurntableTool" {
34309
35165
  dy: int
34310
35166
  ): void;
34311
35167
  }
34312
-
35168
+ /**
35169
+ * Describes the settings that can be provided to the RotateTurntableTool constructor.
35170
+ */
34313
35171
  export interface $RotateTurntableToolSettings extends $ToolSettings {
34314
35172
  /**
34315
35173
  * This event will be fired when rotation occurs.
@@ -34317,12 +35175,18 @@ declare module "sap/ui/vk/tools/RotateTurntableTool" {
34317
35175
  rotate?: (oEvent: RotateTurntableTool$RotateEvent) => void;
34318
35176
  }
34319
35177
 
35178
+ /**
35179
+ * Parameters of the RotateTurntableTool#rotate event.
35180
+ */
34320
35181
  export interface RotateTurntableTool$RotateEventParameters {
34321
35182
  dx?: int;
34322
35183
 
34323
35184
  dy?: int;
34324
35185
  }
34325
35186
 
35187
+ /**
35188
+ * Event object of the RotateTurntableTool#rotate event.
35189
+ */
34326
35190
  export type RotateTurntableTool$RotateEvent = Event<
34327
35191
  RotateTurntableTool$RotateEventParameters,
34328
35192
  RotateTurntableTool
@@ -35051,7 +35915,9 @@ declare module "sap/ui/vk/tools/ScaleTool" {
35051
35915
  bShowEditingUI?: boolean
35052
35916
  ): this;
35053
35917
  }
35054
-
35918
+ /**
35919
+ * Describes the settings that can be provided to the ScaleTool constructor.
35920
+ */
35055
35921
  export interface $ScaleToolSettings extends $ToolSettings {
35056
35922
  /**
35057
35923
  * Select coordinate system in which this tool operates. Can be Local, World, Parent, Screen or Custom
@@ -35142,24 +36008,39 @@ declare module "sap/ui/vk/tools/ScaleTool" {
35142
36008
  ) => void;
35143
36009
  }
35144
36010
 
36011
+ /**
36012
+ * Parameters of the ScaleTool#coordinateSystemChanged event.
36013
+ */
35145
36014
  export interface ScaleTool$CoordinateSystemChangedEventParameters {
35146
36015
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
35147
36016
  }
35148
36017
 
36018
+ /**
36019
+ * Event object of the ScaleTool#coordinateSystemChanged event.
36020
+ */
35149
36021
  export type ScaleTool$CoordinateSystemChangedEvent = Event<
35150
36022
  ScaleTool$CoordinateSystemChangedEventParameters,
35151
36023
  ScaleTool
35152
36024
  >;
35153
36025
 
36026
+ /**
36027
+ * Parameters of the ScaleTool#placementModeChanged event.
36028
+ */
35154
36029
  export interface ScaleTool$PlacementModeChangedEventParameters {
35155
36030
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
35156
36031
  }
35157
36032
 
36033
+ /**
36034
+ * Event object of the ScaleTool#placementModeChanged event.
36035
+ */
35158
36036
  export type ScaleTool$PlacementModeChangedEvent = Event<
35159
36037
  ScaleTool$PlacementModeChangedEventParameters,
35160
36038
  ScaleTool
35161
36039
  >;
35162
36040
 
36041
+ /**
36042
+ * Parameters of the ScaleTool#scaled event.
36043
+ */
35163
36044
  export interface ScaleTool$ScaledEventParameters {
35164
36045
  x?: float;
35165
36046
 
@@ -35170,11 +36051,17 @@ declare module "sap/ui/vk/tools/ScaleTool" {
35170
36051
  nodesProperties?: any[];
35171
36052
  }
35172
36053
 
36054
+ /**
36055
+ * Event object of the ScaleTool#scaled event.
36056
+ */
35173
36057
  export type ScaleTool$ScaledEvent = Event<
35174
36058
  ScaleTool$ScaledEventParameters,
35175
36059
  ScaleTool
35176
36060
  >;
35177
36061
 
36062
+ /**
36063
+ * Parameters of the ScaleTool#scaling event.
36064
+ */
35178
36065
  export interface ScaleTool$ScalingEventParameters {
35179
36066
  x?: float;
35180
36067
 
@@ -35185,6 +36072,9 @@ declare module "sap/ui/vk/tools/ScaleTool" {
35185
36072
  nodesProperties?: any[];
35186
36073
  }
35187
36074
 
36075
+ /**
36076
+ * Event object of the ScaleTool#scaling event.
36077
+ */
35188
36078
  export type ScaleTool$ScalingEvent = Event<
35189
36079
  ScaleTool$ScalingEventParameters,
35190
36080
  ScaleTool
@@ -35347,7 +36237,9 @@ declare module "sap/ui/vk/tools/SceneOrientationTool" {
35347
36237
  milliseconds?: number
35348
36238
  ): this;
35349
36239
  }
35350
-
36240
+ /**
36241
+ * Describes the settings that can be provided to the SceneOrientationTool constructor.
36242
+ */
35351
36243
  export interface $SceneOrientationToolSettings extends $ToolSettings {
35352
36244
  enablePredefinedViews?: boolean | PropertyBindingInfo | `{${string}}`;
35353
36245
 
@@ -35662,7 +36554,9 @@ declare module "sap/ui/vk/tools/Tool" {
35662
36554
  sToolid: string
35663
36555
  ): this;
35664
36556
  }
35665
-
36557
+ /**
36558
+ * Describes the settings that can be provided to the Tool constructor.
36559
+ */
35666
36560
  export interface $ToolSettings extends $ElementSettings {
35667
36561
  targetViewportType?: any | PropertyBindingInfo | `{${string}}`;
35668
36562
 
@@ -35694,6 +36588,9 @@ declare module "sap/ui/vk/tools/Tool" {
35694
36588
  enabled?: (oEvent: Tool$EnabledEvent) => void;
35695
36589
  }
35696
36590
 
36591
+ /**
36592
+ * Parameters of the Tool#enabled event.
36593
+ */
35697
36594
  export interface Tool$EnabledEventParameters {
35698
36595
  /**
35699
36596
  * Returns the true or false to indicated that the tool is enabled or not. This event is fired by the tool
@@ -35705,6 +36602,9 @@ declare module "sap/ui/vk/tools/Tool" {
35705
36602
  reason?: string;
35706
36603
  }
35707
36604
 
36605
+ /**
36606
+ * Event object of the Tool#enabled event.
36607
+ */
35708
36608
  export type Tool$EnabledEvent = Event<Tool$EnabledEventParameters, Tool>;
35709
36609
  }
35710
36610
 
@@ -36001,7 +36901,9 @@ declare module "sap/ui/vk/tools/TooltipTool" {
36001
36901
  title?: string
36002
36902
  ): this;
36003
36903
  }
36004
-
36904
+ /**
36905
+ * Describes the settings that can be provided to the TooltipTool constructor.
36906
+ */
36005
36907
  export interface $TooltipToolSettings extends $ToolSettings {
36006
36908
  followCursor?: boolean | PropertyBindingInfo | `{${string}}`;
36007
36909
 
@@ -36017,6 +36919,9 @@ declare module "sap/ui/vk/tools/TooltipTool" {
36017
36919
  hover?: (oEvent: TooltipTool$HoverEvent) => void;
36018
36920
  }
36019
36921
 
36922
+ /**
36923
+ * Parameters of the TooltipTool#hover event.
36924
+ */
36020
36925
  export interface TooltipTool$HoverEventParameters {
36021
36926
  x?: int;
36022
36927
 
@@ -36025,6 +36930,9 @@ declare module "sap/ui/vk/tools/TooltipTool" {
36025
36930
  nodeRef?: any;
36026
36931
  }
36027
36932
 
36933
+ /**
36934
+ * Event object of the TooltipTool#hover event.
36935
+ */
36028
36936
  export type TooltipTool$HoverEvent = Event<
36029
36937
  TooltipTool$HoverEventParameters,
36030
36938
  TooltipTool
@@ -36661,7 +37569,9 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36661
37569
  bUniformScaleEnabled?: boolean
36662
37570
  ): this;
36663
37571
  }
36664
-
37572
+ /**
37573
+ * Describes the settings that can be provided to the TransformSvgElementTool constructor.
37574
+ */
36665
37575
  export interface $TransformSvgElementToolSettings extends $ToolSettings {
36666
37576
  /**
36667
37577
  * Determine what set of nodes will be transformed with this tool
@@ -36707,6 +37617,9 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36707
37617
  scaled?: (oEvent: TransformSvgElementTool$ScaledEvent) => void;
36708
37618
  }
36709
37619
 
37620
+ /**
37621
+ * Parameters of the TransformSvgElementTool#moved event.
37622
+ */
36710
37623
  export interface TransformSvgElementTool$MovedEventParameters {
36711
37624
  x?: float;
36712
37625
 
@@ -36719,11 +37632,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36719
37632
  nodesProperties?: any[];
36720
37633
  }
36721
37634
 
37635
+ /**
37636
+ * Event object of the TransformSvgElementTool#moved event.
37637
+ */
36722
37638
  export type TransformSvgElementTool$MovedEvent = Event<
36723
37639
  TransformSvgElementTool$MovedEventParameters,
36724
37640
  TransformSvgElementTool
36725
37641
  >;
36726
37642
 
37643
+ /**
37644
+ * Parameters of the TransformSvgElementTool#moving event.
37645
+ */
36727
37646
  export interface TransformSvgElementTool$MovingEventParameters {
36728
37647
  x?: float;
36729
37648
 
@@ -36736,11 +37655,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36736
37655
  nodesProperties?: any[];
36737
37656
  }
36738
37657
 
37658
+ /**
37659
+ * Event object of the TransformSvgElementTool#moving event.
37660
+ */
36739
37661
  export type TransformSvgElementTool$MovingEvent = Event<
36740
37662
  TransformSvgElementTool$MovingEventParameters,
36741
37663
  TransformSvgElementTool
36742
37664
  >;
36743
37665
 
37666
+ /**
37667
+ * Parameters of the TransformSvgElementTool#rotated event.
37668
+ */
36744
37669
  export interface TransformSvgElementTool$RotatedEventParameters {
36745
37670
  angle?: float;
36746
37671
 
@@ -36751,11 +37676,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36751
37676
  nodesProperties?: any[];
36752
37677
  }
36753
37678
 
37679
+ /**
37680
+ * Event object of the TransformSvgElementTool#rotated event.
37681
+ */
36754
37682
  export type TransformSvgElementTool$RotatedEvent = Event<
36755
37683
  TransformSvgElementTool$RotatedEventParameters,
36756
37684
  TransformSvgElementTool
36757
37685
  >;
36758
37686
 
37687
+ /**
37688
+ * Parameters of the TransformSvgElementTool#rotating event.
37689
+ */
36759
37690
  export interface TransformSvgElementTool$RotatingEventParameters {
36760
37691
  angle?: float;
36761
37692
 
@@ -36766,11 +37697,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36766
37697
  nodesProperties?: any[];
36767
37698
  }
36768
37699
 
37700
+ /**
37701
+ * Event object of the TransformSvgElementTool#rotating event.
37702
+ */
36769
37703
  export type TransformSvgElementTool$RotatingEvent = Event<
36770
37704
  TransformSvgElementTool$RotatingEventParameters,
36771
37705
  TransformSvgElementTool
36772
37706
  >;
36773
37707
 
37708
+ /**
37709
+ * Parameters of the TransformSvgElementTool#scaled event.
37710
+ */
36774
37711
  export interface TransformSvgElementTool$ScaledEventParameters {
36775
37712
  x?: float;
36776
37713
 
@@ -36783,11 +37720,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36783
37720
  nodesProperties?: any[];
36784
37721
  }
36785
37722
 
37723
+ /**
37724
+ * Event object of the TransformSvgElementTool#scaled event.
37725
+ */
36786
37726
  export type TransformSvgElementTool$ScaledEvent = Event<
36787
37727
  TransformSvgElementTool$ScaledEventParameters,
36788
37728
  TransformSvgElementTool
36789
37729
  >;
36790
37730
 
37731
+ /**
37732
+ * Parameters of the TransformSvgElementTool#scaling event.
37733
+ */
36791
37734
  export interface TransformSvgElementTool$ScalingEventParameters {
36792
37735
  x?: float;
36793
37736
 
@@ -36800,6 +37743,9 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36800
37743
  nodesProperties?: any[];
36801
37744
  }
36802
37745
 
37746
+ /**
37747
+ * Event object of the TransformSvgElementTool#scaling event.
37748
+ */
36803
37749
  export type TransformSvgElementTool$ScalingEvent = Event<
36804
37750
  TransformSvgElementTool$ScalingEventParameters,
36805
37751
  TransformSvgElementTool
@@ -37340,7 +38286,9 @@ declare module "sap/ui/vk/View" {
37340
38286
  }>
37341
38287
  ): this;
37342
38288
  }
37343
-
38289
+ /**
38290
+ * Describes the settings that can be provided to the View constructor.
38291
+ */
37344
38292
  export interface $ViewSettings extends $ManagedObjectSettings {
37345
38293
  /**
37346
38294
  * View persistent ID (optional)
@@ -38999,7 +39947,9 @@ declare module "sap/ui/vk/Viewer" {
38999
39947
  sWidth?: CSSSize
39000
39948
  ): this;
39001
39949
  }
39002
-
39950
+ /**
39951
+ * Describes the settings that can be provided to the Viewer constructor.
39952
+ */
39003
39953
  export interface $ViewerSettings extends $ControlSettings {
39004
39954
  /**
39005
39955
  * Enables or disables the Overlay control
@@ -39177,13 +40127,22 @@ declare module "sap/ui/vk/Viewer" {
39177
40127
  nodeClicked?: (oEvent: Viewer$NodeClickedEvent) => void;
39178
40128
  }
39179
40129
 
40130
+ /**
40131
+ * Parameters of the Viewer#contentResourceChangesProcessed event.
40132
+ */
39180
40133
  export interface Viewer$ContentResourceChangesProcessedEventParameters {}
39181
40134
 
40135
+ /**
40136
+ * Event object of the Viewer#contentResourceChangesProcessed event.
40137
+ */
39182
40138
  export type Viewer$ContentResourceChangesProcessedEvent = Event<
39183
40139
  Viewer$ContentResourceChangesProcessedEventParameters,
39184
40140
  Viewer
39185
40141
  >;
39186
40142
 
40143
+ /**
40144
+ * Parameters of the Viewer#fullScreen event.
40145
+ */
39187
40146
  export interface Viewer$FullScreenEventParameters {
39188
40147
  /**
39189
40148
  * true: entered full screen; false: exited full screen.
@@ -39191,11 +40150,17 @@ declare module "sap/ui/vk/Viewer" {
39191
40150
  isFullScreen?: boolean;
39192
40151
  }
39193
40152
 
40153
+ /**
40154
+ * Event object of the Viewer#fullScreen event.
40155
+ */
39194
40156
  export type Viewer$FullScreenEvent = Event<
39195
40157
  Viewer$FullScreenEventParameters,
39196
40158
  Viewer
39197
40159
  >;
39198
40160
 
40161
+ /**
40162
+ * Parameters of the Viewer#nodeClicked event.
40163
+ */
39199
40164
  export interface Viewer$NodeClickedEventParameters {
39200
40165
  /**
39201
40166
  * Returns a node reference.
@@ -39207,11 +40172,17 @@ declare module "sap/ui/vk/Viewer" {
39207
40172
  y?: int;
39208
40173
  }
39209
40174
 
40175
+ /**
40176
+ * Event object of the Viewer#nodeClicked event.
40177
+ */
39210
40178
  export type Viewer$NodeClickedEvent = Event<
39211
40179
  Viewer$NodeClickedEventParameters,
39212
40180
  Viewer
39213
40181
  >;
39214
40182
 
40183
+ /**
40184
+ * Parameters of the Viewer#sceneDestroying event.
40185
+ */
39215
40186
  export interface Viewer$SceneDestroyingEventParameters {
39216
40187
  /**
39217
40188
  * Returns a reference to the scene to be destroyed.
@@ -39225,11 +40196,17 @@ declare module "sap/ui/vk/Viewer" {
39225
40196
  preventGarbageCollection?: Function;
39226
40197
  }
39227
40198
 
40199
+ /**
40200
+ * Event object of the Viewer#sceneDestroying event.
40201
+ */
39228
40202
  export type Viewer$SceneDestroyingEvent = Event<
39229
40203
  Viewer$SceneDestroyingEventParameters,
39230
40204
  Viewer
39231
40205
  >;
39232
40206
 
40207
+ /**
40208
+ * Parameters of the Viewer#sceneLoadingFailed event.
40209
+ */
39233
40210
  export interface Viewer$SceneLoadingFailedEventParameters {
39234
40211
  /**
39235
40212
  * Returns an optional object describing the reason of the failure.
@@ -39237,11 +40214,17 @@ declare module "sap/ui/vk/Viewer" {
39237
40214
  reason?: object;
39238
40215
  }
39239
40216
 
40217
+ /**
40218
+ * Event object of the Viewer#sceneLoadingFailed event.
40219
+ */
39240
40220
  export type Viewer$SceneLoadingFailedEvent = Event<
39241
40221
  Viewer$SceneLoadingFailedEventParameters,
39242
40222
  Viewer
39243
40223
  >;
39244
40224
 
40225
+ /**
40226
+ * Parameters of the Viewer#sceneLoadingSucceeded event.
40227
+ */
39245
40228
  export interface Viewer$SceneLoadingSucceededEventParameters {
39246
40229
  /**
39247
40230
  * Returns a reference to the loaded Scene.
@@ -39249,11 +40232,17 @@ declare module "sap/ui/vk/Viewer" {
39249
40232
  scene?: Scene;
39250
40233
  }
39251
40234
 
40235
+ /**
40236
+ * Event object of the Viewer#sceneLoadingSucceeded event.
40237
+ */
39252
40238
  export type Viewer$SceneLoadingSucceededEvent = Event<
39253
40239
  Viewer$SceneLoadingSucceededEventParameters,
39254
40240
  Viewer
39255
40241
  >;
39256
40242
 
40243
+ /**
40244
+ * Parameters of the Viewer#selectionChanged event.
40245
+ */
39257
40246
  export interface Viewer$SelectionChangedEventParameters {
39258
40247
  /**
39259
40248
  * Node references to the newly selected nodes.
@@ -39266,11 +40255,17 @@ declare module "sap/ui/vk/Viewer" {
39266
40255
  unselected?: any[];
39267
40256
  }
39268
40257
 
40258
+ /**
40259
+ * Event object of the Viewer#selectionChanged event.
40260
+ */
39269
40261
  export type Viewer$SelectionChangedEvent = Event<
39270
40262
  Viewer$SelectionChangedEventParameters,
39271
40263
  Viewer
39272
40264
  >;
39273
40265
 
40266
+ /**
40267
+ * Parameters of the Viewer#urlClicked event.
40268
+ */
39274
40269
  export interface Viewer$UrlClickedEventParameters {
39275
40270
  /**
39276
40271
  * Returns a node reference of the note that contains the URL.
@@ -39283,6 +40278,9 @@ declare module "sap/ui/vk/Viewer" {
39283
40278
  url?: string;
39284
40279
  }
39285
40280
 
40281
+ /**
40282
+ * Event object of the Viewer#urlClicked event.
40283
+ */
39286
40284
  export type Viewer$UrlClickedEvent = Event<
39287
40285
  Viewer$UrlClickedEventParameters,
39288
40286
  Viewer
@@ -39845,7 +40843,9 @@ declare module "sap/ui/vk/ViewGallery" {
39845
40843
  oViewManager: ID | ViewManager
39846
40844
  ): this;
39847
40845
  }
39848
-
40846
+ /**
40847
+ * Describes the settings that can be provided to the ViewGallery constructor.
40848
+ */
39849
40849
  export interface $ViewGallerySettings extends $ControlSettings {
39850
40850
  /**
39851
40851
  * Indicates that the View Gallery control should display animation slider showing time of animation in
@@ -39908,21 +40908,33 @@ declare module "sap/ui/vk/ViewGallery" {
39908
40908
  viewOrderChange?: (oEvent: ViewGallery$ViewOrderChangeEvent) => void;
39909
40909
  }
39910
40910
 
40911
+ /**
40912
+ * Parameters of the ViewGallery#selectionChange event.
40913
+ */
39911
40914
  export interface ViewGallery$SelectionChangeEventParameters {
39912
40915
  item?: Control;
39913
40916
  }
39914
40917
 
40918
+ /**
40919
+ * Event object of the ViewGallery#selectionChange event.
40920
+ */
39915
40921
  export type ViewGallery$SelectionChangeEvent = Event<
39916
40922
  ViewGallery$SelectionChangeEventParameters,
39917
40923
  ViewGallery
39918
40924
  >;
39919
40925
 
40926
+ /**
40927
+ * Parameters of the ViewGallery#viewOrderChange event.
40928
+ */
39920
40929
  export interface ViewGallery$ViewOrderChangeEventParameters {
39921
40930
  view?: View;
39922
40931
 
39923
40932
  viewIndex?: int;
39924
40933
  }
39925
40934
 
40935
+ /**
40936
+ * Event object of the ViewGallery#viewOrderChange event.
40937
+ */
39926
40938
  export type ViewGallery$ViewOrderChangeEvent = Event<
39927
40939
  ViewGallery$ViewOrderChangeEventParameters,
39928
40940
  ViewGallery
@@ -40116,7 +41128,9 @@ declare module "sap/ui/vk/ViewGroup" {
40116
41128
  sViewGroupId: string
40117
41129
  ): this;
40118
41130
  }
40119
-
41131
+ /**
41132
+ * Describes the settings that can be provided to the ViewGroup constructor.
41133
+ */
40120
41134
  export interface $ViewGroupSettings extends $ManagedObjectSettings {
40121
41135
  viewGroupId?: string | PropertyBindingInfo;
40122
41136
 
@@ -40304,7 +41318,9 @@ declare module "sap/ui/vk/ViewManager" {
40304
41318
  */
40305
41319
  stopPlayingViewGroup(): this;
40306
41320
  }
40307
-
41321
+ /**
41322
+ * Describes the settings that can be provided to the ViewManager constructor.
41323
+ */
40308
41324
  export interface $ViewManagerSettings extends $ElementSettings {
40309
41325
  /**
40310
41326
  * An association to the {@link sap.ui.vk.ContentConnector ContentConnector} instance that manages content
@@ -40737,7 +41753,9 @@ declare module "sap/ui/vk/Viewport" {
40737
41753
  margin: float
40738
41754
  ): Viewport;
40739
41755
  }
40740
-
41756
+ /**
41757
+ * Describes the settings that can be provided to the Viewport constructor.
41758
+ */
40741
41759
  export interface $ViewportSettings extends $ViewportBaseSettings {}
40742
41760
  }
40743
41761
 
@@ -42431,7 +43449,9 @@ declare module "sap/ui/vk/ViewportBase" {
42431
43449
  dy: float
42432
43450
  ): ViewportBase;
42433
43451
  }
42434
-
43452
+ /**
43453
+ * Describes the settings that can be provided to the ViewportBase constructor.
43454
+ */
42435
43455
  export interface $ViewportBaseSettings extends $ControlSettings {
42436
43456
  /**
42437
43457
  * Shows or hides the debug info.
@@ -42610,6 +43630,9 @@ declare module "sap/ui/vk/ViewportBase" {
42610
43630
  viewFinished?: (oEvent: ViewportBase$ViewFinishedEvent) => void;
42611
43631
  }
42612
43632
 
43633
+ /**
43634
+ * Parameters of the ViewportBase#nodeClicked event.
43635
+ */
42613
43636
  export interface ViewportBase$NodeClickedEventParameters {
42614
43637
  /**
42615
43638
  * Returns a node reference.
@@ -42621,11 +43644,17 @@ declare module "sap/ui/vk/ViewportBase" {
42621
43644
  y?: int;
42622
43645
  }
42623
43646
 
43647
+ /**
43648
+ * Event object of the ViewportBase#nodeClicked event.
43649
+ */
42624
43650
  export type ViewportBase$NodeClickedEvent = Event<
42625
43651
  ViewportBase$NodeClickedEventParameters,
42626
43652
  ViewportBase
42627
43653
  >;
42628
43654
 
43655
+ /**
43656
+ * Parameters of the ViewportBase#nodesPicked event.
43657
+ */
42629
43658
  export interface ViewportBase$NodesPickedEventParameters {
42630
43659
  /**
42631
43660
  * References of the nodes that are picked.
@@ -42633,11 +43662,17 @@ declare module "sap/ui/vk/ViewportBase" {
42633
43662
  picked?: any[];
42634
43663
  }
42635
43664
 
43665
+ /**
43666
+ * Event object of the ViewportBase#nodesPicked event.
43667
+ */
42636
43668
  export type ViewportBase$NodesPickedEvent = Event<
42637
43669
  ViewportBase$NodesPickedEventParameters,
42638
43670
  ViewportBase
42639
43671
  >;
42640
43672
 
43673
+ /**
43674
+ * Parameters of the ViewportBase#nodeZoomed event.
43675
+ */
42641
43676
  export interface ViewportBase$NodeZoomedEventParameters {
42642
43677
  /**
42643
43678
  * Reference of the node that is zoomed.
@@ -42650,18 +43685,30 @@ declare module "sap/ui/vk/ViewportBase" {
42650
43685
  isZoomIn?: boolean;
42651
43686
  }
42652
43687
 
43688
+ /**
43689
+ * Event object of the ViewportBase#nodeZoomed event.
43690
+ */
42653
43691
  export type ViewportBase$NodeZoomedEvent = Event<
42654
43692
  ViewportBase$NodeZoomedEventParameters,
42655
43693
  ViewportBase
42656
43694
  >;
42657
43695
 
43696
+ /**
43697
+ * Parameters of the ViewportBase#procedureFinished event.
43698
+ */
42658
43699
  export interface ViewportBase$ProcedureFinishedEventParameters {}
42659
43700
 
43701
+ /**
43702
+ * Event object of the ViewportBase#procedureFinished event.
43703
+ */
42660
43704
  export type ViewportBase$ProcedureFinishedEvent = Event<
42661
43705
  ViewportBase$ProcedureFinishedEventParameters,
42662
43706
  ViewportBase
42663
43707
  >;
42664
43708
 
43709
+ /**
43710
+ * Parameters of the ViewportBase#resize event.
43711
+ */
42665
43712
  export interface ViewportBase$ResizeEventParameters {
42666
43713
  /**
42667
43714
  * Returns the width and height of new size `\{ width: number, height: number \}` in CSS pixels.
@@ -42669,11 +43716,17 @@ declare module "sap/ui/vk/ViewportBase" {
42669
43716
  size?: object;
42670
43717
  }
42671
43718
 
43719
+ /**
43720
+ * Event object of the ViewportBase#resize event.
43721
+ */
42672
43722
  export type ViewportBase$ResizeEvent = Event<
42673
43723
  ViewportBase$ResizeEventParameters,
42674
43724
  ViewportBase
42675
43725
  >;
42676
43726
 
43727
+ /**
43728
+ * Parameters of the ViewportBase#urlClicked event.
43729
+ */
42677
43730
  export interface ViewportBase$UrlClickedEventParameters {
42678
43731
  /**
42679
43732
  * Returns a node reference of the note that contains the URL.
@@ -42686,11 +43739,17 @@ declare module "sap/ui/vk/ViewportBase" {
42686
43739
  url?: string;
42687
43740
  }
42688
43741
 
43742
+ /**
43743
+ * Event object of the ViewportBase#urlClicked event.
43744
+ */
42689
43745
  export type ViewportBase$UrlClickedEvent = Event<
42690
43746
  ViewportBase$UrlClickedEventParameters,
42691
43747
  ViewportBase
42692
43748
  >;
42693
43749
 
43750
+ /**
43751
+ * Parameters of the ViewportBase#viewActivated event.
43752
+ */
42694
43753
  export interface ViewportBase$ViewActivatedEventParameters {
42695
43754
  /**
42696
43755
  * Index of the activated view
@@ -42708,15 +43767,24 @@ declare module "sap/ui/vk/ViewportBase" {
42708
43767
  type?: string;
42709
43768
  }
42710
43769
 
43770
+ /**
43771
+ * Event object of the ViewportBase#viewActivated event.
43772
+ */
42711
43773
  export type ViewportBase$ViewActivatedEvent = Event<
42712
43774
  ViewportBase$ViewActivatedEventParameters,
42713
43775
  ViewportBase
42714
43776
  >;
42715
43777
 
43778
+ /**
43779
+ * Parameters of the ViewportBase#viewFinished event.
43780
+ */
42716
43781
  export interface ViewportBase$ViewFinishedEventParameters {
42717
43782
  viewIndex?: int;
42718
43783
  }
42719
43784
 
43785
+ /**
43786
+ * Event object of the ViewportBase#viewFinished event.
43787
+ */
42720
43788
  export type ViewportBase$ViewFinishedEvent = Event<
42721
43789
  ViewportBase$ViewFinishedEventParameters,
42722
43790
  ViewportBase
@@ -43362,7 +44430,9 @@ declare module "sap/ui/vk/ViewStateManager" {
43362
44430
  doNotFireSequenceChanged: boolean
43363
44431
  ): this;
43364
44432
  }
43365
-
44433
+ /**
44434
+ * Describes the settings that can be provided to the ViewStateManager constructor.
44435
+ */
43366
44436
  export interface $ViewStateManagerSettings
43367
44437
  extends $ViewStateManagerBaseSettings {}
43368
44438
  }
@@ -45140,7 +46210,9 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45140
46210
  doNotFireSequenceChanged: boolean
45141
46211
  ): this;
45142
46212
  }
45143
-
46213
+ /**
46214
+ * Describes the settings that can be provided to the ViewStateManagerBase constructor.
46215
+ */
45144
46216
  export interface $ViewStateManagerBaseSettings extends $ElementSettings {
45145
46217
  shouldTrackVisibilityChanges?:
45146
46218
  | boolean
@@ -45247,6 +46319,9 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45247
46319
  ) => void;
45248
46320
  }
45249
46321
 
46322
+ /**
46323
+ * Parameters of the ViewStateManagerBase#highlightColorChanged event.
46324
+ */
45250
46325
  export interface ViewStateManagerBase$HighlightColorChangedEventParameters {
45251
46326
  /**
45252
46327
  * Highlighting color
@@ -45259,11 +46334,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45259
46334
  highlightColorABGR?: int;
45260
46335
  }
45261
46336
 
46337
+ /**
46338
+ * Event object of the ViewStateManagerBase#highlightColorChanged event.
46339
+ */
45262
46340
  export type ViewStateManagerBase$HighlightColorChangedEvent = Event<
45263
46341
  ViewStateManagerBase$HighlightColorChangedEventParameters,
45264
46342
  ViewStateManagerBase
45265
46343
  >;
45266
46344
 
46345
+ /**
46346
+ * Parameters of the ViewStateManagerBase#nodeHierarchyReplaced event.
46347
+ */
45267
46348
  export interface ViewStateManagerBase$NodeHierarchyReplacedEventParameters {
45268
46349
  /**
45269
46350
  * Old node hierarchy
@@ -45276,11 +46357,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45276
46357
  newNodeHierarchy?: NodeHierarchy;
45277
46358
  }
45278
46359
 
46360
+ /**
46361
+ * Event object of the ViewStateManagerBase#nodeHierarchyReplaced event.
46362
+ */
45279
46363
  export type ViewStateManagerBase$NodeHierarchyReplacedEvent = Event<
45280
46364
  ViewStateManagerBase$NodeHierarchyReplacedEventParameters,
45281
46365
  ViewStateManagerBase
45282
46366
  >;
45283
46367
 
46368
+ /**
46369
+ * Parameters of the ViewStateManagerBase#opacityChanged event.
46370
+ */
45284
46371
  export interface ViewStateManagerBase$OpacityChangedEventParameters {
45285
46372
  /**
45286
46373
  * References of nodes whose opacity changed.
@@ -45293,11 +46380,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45293
46380
  opacity?: any;
45294
46381
  }
45295
46382
 
46383
+ /**
46384
+ * Event object of the ViewStateManagerBase#opacityChanged event.
46385
+ */
45296
46386
  export type ViewStateManagerBase$OpacityChangedEvent = Event<
45297
46387
  ViewStateManagerBase$OpacityChangedEventParameters,
45298
46388
  ViewStateManagerBase
45299
46389
  >;
45300
46390
 
46391
+ /**
46392
+ * Parameters of the ViewStateManagerBase#outlineColorChanged event.
46393
+ */
45301
46394
  export interface ViewStateManagerBase$OutlineColorChangedEventParameters {
45302
46395
  /**
45303
46396
  * Outlining color
@@ -45310,11 +46403,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45310
46403
  outlineColorABGR?: int;
45311
46404
  }
45312
46405
 
46406
+ /**
46407
+ * Event object of the ViewStateManagerBase#outlineColorChanged event.
46408
+ */
45313
46409
  export type ViewStateManagerBase$OutlineColorChangedEvent = Event<
45314
46410
  ViewStateManagerBase$OutlineColorChangedEventParameters,
45315
46411
  ViewStateManagerBase
45316
46412
  >;
45317
46413
 
46414
+ /**
46415
+ * Parameters of the ViewStateManagerBase#outlineWidthChanged event.
46416
+ */
45318
46417
  export interface ViewStateManagerBase$OutlineWidthChangedEventParameters {
45319
46418
  /**
45320
46419
  * Outline width
@@ -45322,11 +46421,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45322
46421
  width?: float;
45323
46422
  }
45324
46423
 
46424
+ /**
46425
+ * Event object of the ViewStateManagerBase#outlineWidthChanged event.
46426
+ */
45325
46427
  export type ViewStateManagerBase$OutlineWidthChangedEvent = Event<
45326
46428
  ViewStateManagerBase$OutlineWidthChangedEventParameters,
45327
46429
  ViewStateManagerBase
45328
46430
  >;
45329
46431
 
46432
+ /**
46433
+ * Parameters of the ViewStateManagerBase#outliningChanged event.
46434
+ */
45330
46435
  export interface ViewStateManagerBase$OutliningChangedEventParameters {
45331
46436
  /**
45332
46437
  * References of newly outlined nodes.
@@ -45339,20 +46444,32 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45339
46444
  unoutlined?: any[];
45340
46445
  }
45341
46446
 
46447
+ /**
46448
+ * Event object of the ViewStateManagerBase#outliningChanged event.
46449
+ */
45342
46450
  export type ViewStateManagerBase$OutliningChangedEvent = Event<
45343
46451
  ViewStateManagerBase$OutliningChangedEventParameters,
45344
46452
  ViewStateManagerBase
45345
46453
  >;
45346
46454
 
46455
+ /**
46456
+ * Parameters of the ViewStateManagerBase#readyForAnimation event.
46457
+ */
45347
46458
  export interface ViewStateManagerBase$ReadyForAnimationEventParameters {
45348
46459
  view?: View;
45349
46460
  }
45350
46461
 
46462
+ /**
46463
+ * Event object of the ViewStateManagerBase#readyForAnimation event.
46464
+ */
45351
46465
  export type ViewStateManagerBase$ReadyForAnimationEvent = Event<
45352
46466
  ViewStateManagerBase$ReadyForAnimationEventParameters,
45353
46467
  ViewStateManagerBase
45354
46468
  >;
45355
46469
 
46470
+ /**
46471
+ * Parameters of the ViewStateManagerBase#selectionChanged event.
46472
+ */
45356
46473
  export interface ViewStateManagerBase$SelectionChangedEventParameters {
45357
46474
  /**
45358
46475
  * References of newly selected nodes.
@@ -45365,11 +46482,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45365
46482
  unselected?: any[];
45366
46483
  }
45367
46484
 
46485
+ /**
46486
+ * Event object of the ViewStateManagerBase#selectionChanged event.
46487
+ */
45368
46488
  export type ViewStateManagerBase$SelectionChangedEvent = Event<
45369
46489
  ViewStateManagerBase$SelectionChangedEventParameters,
45370
46490
  ViewStateManagerBase
45371
46491
  >;
45372
46492
 
46493
+ /**
46494
+ * Parameters of the ViewStateManagerBase#tintColorChanged event.
46495
+ */
45373
46496
  export interface ViewStateManagerBase$TintColorChangedEventParameters {
45374
46497
  /**
45375
46498
  * References of nodes whose tint color changed.
@@ -45389,11 +46512,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45389
46512
  tintColorABGR?: any;
45390
46513
  }
45391
46514
 
46515
+ /**
46516
+ * Event object of the ViewStateManagerBase#tintColorChanged event.
46517
+ */
45392
46518
  export type ViewStateManagerBase$TintColorChangedEvent = Event<
45393
46519
  ViewStateManagerBase$TintColorChangedEventParameters,
45394
46520
  ViewStateManagerBase
45395
46521
  >;
45396
46522
 
46523
+ /**
46524
+ * Parameters of the ViewStateManagerBase#transformationChanged event.
46525
+ */
45397
46526
  export interface ViewStateManagerBase$TransformationChangedEventParameters {
45398
46527
  /**
45399
46528
  * Reference to a changed node or array of node references.
@@ -45407,29 +46536,47 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45407
46536
  transformation?: any;
45408
46537
  }
45409
46538
 
46539
+ /**
46540
+ * Event object of the ViewStateManagerBase#transformationChanged event.
46541
+ */
45410
46542
  export type ViewStateManagerBase$TransformationChangedEvent = Event<
45411
46543
  ViewStateManagerBase$TransformationChangedEventParameters,
45412
46544
  ViewStateManagerBase
45413
46545
  >;
45414
46546
 
46547
+ /**
46548
+ * Parameters of the ViewStateManagerBase#viewStateApplied event.
46549
+ */
45415
46550
  export interface ViewStateManagerBase$ViewStateAppliedEventParameters {
45416
46551
  view?: View;
45417
46552
  }
45418
46553
 
46554
+ /**
46555
+ * Event object of the ViewStateManagerBase#viewStateApplied event.
46556
+ */
45419
46557
  export type ViewStateManagerBase$ViewStateAppliedEvent = Event<
45420
46558
  ViewStateManagerBase$ViewStateAppliedEventParameters,
45421
46559
  ViewStateManagerBase
45422
46560
  >;
45423
46561
 
46562
+ /**
46563
+ * Parameters of the ViewStateManagerBase#viewStateApplying event.
46564
+ */
45424
46565
  export interface ViewStateManagerBase$ViewStateApplyingEventParameters {
45425
46566
  view?: View;
45426
46567
  }
45427
46568
 
46569
+ /**
46570
+ * Event object of the ViewStateManagerBase#viewStateApplying event.
46571
+ */
45428
46572
  export type ViewStateManagerBase$ViewStateApplyingEvent = Event<
45429
46573
  ViewStateManagerBase$ViewStateApplyingEventParameters,
45430
46574
  ViewStateManagerBase
45431
46575
  >;
45432
46576
 
46577
+ /**
46578
+ * Parameters of the ViewStateManagerBase#visibilityChanged event.
46579
+ */
45433
46580
  export interface ViewStateManagerBase$VisibilityChangedEventParameters {
45434
46581
  /**
45435
46582
  * References of newly shown nodes.
@@ -45442,6 +46589,9 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45442
46589
  hidden?: any[];
45443
46590
  }
45444
46591
 
46592
+ /**
46593
+ * Event object of the ViewStateManagerBase#visibilityChanged event.
46594
+ */
45445
46595
  export type ViewStateManagerBase$VisibilityChangedEvent = Event<
45446
46596
  ViewStateManagerBase$VisibilityChangedEventParameters,
45447
46597
  ViewStateManagerBase