@sapui5/types 1.122.2 → 1.123.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +408 -32
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.collaboration.d.ts +52 -9
  6. package/types/sap.esh.search.ui.d.ts +2066 -2
  7. package/types/sap.f.d.ts +435 -98
  8. package/types/sap.fe.core.d.ts +9 -3
  9. package/types/sap.fe.macros.d.ts +1075 -70
  10. package/types/sap.fe.navigation.d.ts +1 -1
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +8 -6
  14. package/types/sap.fe.test.d.ts +309 -7
  15. package/types/sap.fe.tools.d.ts +1 -1
  16. package/types/sap.feedback.ui.d.ts +1 -1
  17. package/types/sap.gantt.d.ts +1066 -146
  18. package/types/sap.insights.d.ts +4 -2
  19. package/types/sap.m.d.ts +3961 -399
  20. package/types/sap.makit.d.ts +115 -14
  21. package/types/sap.me.d.ts +84 -7
  22. package/types/sap.ndc.d.ts +22 -2
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +44 -11
  25. package/types/sap.sac.df.d.ts +119 -67
  26. package/types/sap.suite.ui.commons.d.ts +1146 -2474
  27. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  28. package/types/sap.suite.ui.microchart.d.ts +190 -28
  29. package/types/sap.tnt.d.ts +46 -10
  30. package/types/sap.ui.codeeditor.d.ts +16 -2
  31. package/types/sap.ui.commons.d.ts +797 -121
  32. package/types/sap.ui.comp.d.ts +964 -124
  33. package/types/sap.ui.core.d.ts +13204 -12618
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +22 -5
  36. package/types/sap.ui.fl.d.ts +40 -3
  37. package/types/sap.ui.generic.app.d.ts +217 -201
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +147 -9
  40. package/types/sap.ui.layout.d.ts +171 -47
  41. package/types/sap.ui.mdc.d.ts +554 -71
  42. package/types/sap.ui.richtexteditor.d.ts +28 -2
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +27 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +278 -74
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +481 -42
  49. package/types/sap.ui.ux3.d.ts +527 -34
  50. package/types/sap.ui.vbm.d.ts +544 -48
  51. package/types/sap.ui.vk.d.ts +1588 -133
  52. package/types/sap.ui.vtm.d.ts +373 -27
  53. package/types/sap.ui.webc.common.d.ts +7 -1
  54. package/types/sap.ui.webc.fiori.d.ts +351 -29
  55. package/types/sap.ui.webc.main.d.ts +1035 -83
  56. package/types/sap.uiext.inbox.d.ts +124 -13
  57. package/types/sap.ushell.d.ts +1081 -383
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +123 -23
  60. package/types/sap.viz.d.ts +2619 -130
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +35 -15
  63. package/types/sap.zen.crosstab.d.ts +22 -10
  64. package/types/sap.zen.dsh.d.ts +64 -9
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.0
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/ui/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)
@@ -3019,7 +3094,7 @@ declare module "sap/ui/vk/ContainerBase" {
3019
3094
  * Abstract Constructor for a new Container.
3020
3095
  *
3021
3096
  * @since 1.38.0
3022
- * @deprecated (since 1.120.2)
3097
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerBase}
3023
3098
  */
3024
3099
  export default class ContainerBase extends Control {
3025
3100
  /**
@@ -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) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerBase}
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
@@ -3644,7 +3735,7 @@ declare module "sap/ui/vk/ContainerContent" {
3644
3735
  * Aggregation element for the Container Base
3645
3736
  *
3646
3737
  * @since 1.38.0
3647
- * @deprecated (since 1.120.2)
3738
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerContent}
3648
3739
  */
3649
3740
  export default class ContainerContent extends Control {
3650
3741
  /**
@@ -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) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerContent}
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
@@ -4488,7 +4627,8 @@ declare module "sap/ui/vk/ContentResource" {
4488
4627
  * Collects content resource categories. The result is tested if the content resource hierarchy has the
4489
4628
  * same category - 2D or 3D.
4490
4629
  *
4491
- * @deprecated (since 1.50.0)
4630
+ * @deprecated (since 1.50.0) - Content resource categories shall not be used anymore. See {@link sap.ui.vk.ContentResource#sourceType }
4631
+ * property for selection of content type.
4492
4632
  *
4493
4633
  * @returns The array of distinct content resource categories.
4494
4634
  */
@@ -5219,7 +5359,9 @@ declare module "sap/ui/vk/ContentResource" {
5219
5359
  sVeid: string
5220
5360
  ): this;
5221
5361
  }
5222
-
5362
+ /**
5363
+ * Describes the settings that can be provided to the ContentResource constructor.
5364
+ */
5223
5365
  export interface $ContentResourceSettings extends $ManagedObjectSettings {
5224
5366
  /**
5225
5367
  * The source URL or the {@link https://developer.mozilla.org/en-US/docs/Web/API/File File} object of the
@@ -5671,7 +5813,9 @@ declare module "sap/ui/vk/DrawerToolbar" {
5671
5813
  oViewport: ID | ViewportBase
5672
5814
  ): this;
5673
5815
  }
5674
-
5816
+ /**
5817
+ * Describes the settings that can be provided to the DrawerToolbar constructor.
5818
+ */
5675
5819
  export interface $DrawerToolbarSettings extends $ControlSettings {
5676
5820
  /**
5677
5821
  * Indicates whether the DrawerToolbar is expanded or not. If expanded is set to true, then both the toolbar
@@ -5693,6 +5837,9 @@ declare module "sap/ui/vk/DrawerToolbar" {
5693
5837
  viewport?: ViewportBase | string;
5694
5838
  }
5695
5839
 
5840
+ /**
5841
+ * Parameters of the DrawerToolbar#expanded event.
5842
+ */
5696
5843
  export interface DrawerToolbar$ExpandedEventParameters {
5697
5844
  /**
5698
5845
  * If the DrawerToolbar is expanded, this is true. If the DrawerToolbar is collapsed, this is false.
@@ -5700,6 +5847,9 @@ declare module "sap/ui/vk/DrawerToolbar" {
5700
5847
  expand?: boolean;
5701
5848
  }
5702
5849
 
5850
+ /**
5851
+ * Event object of the DrawerToolbar#expanded event.
5852
+ */
5703
5853
  export type DrawerToolbar$ExpandedEvent = Event<
5704
5854
  DrawerToolbar$ExpandedEventParameters,
5705
5855
  DrawerToolbar
@@ -5727,6 +5877,10 @@ declare module "sap/ui/vk/DrawerToolbarButton" {
5727
5877
 
5728
5878
  Pan = "VIT-Pan",
5729
5879
 
5880
+ PMI = "VIT-PMI",
5881
+
5882
+ PMISeparator = "VIT-PMI-Separator",
5883
+
5730
5884
  PredefinedViews = "VIT-Predefined-Views",
5731
5885
 
5732
5886
  RectangularSelection = "VIT-Rectangular-Selection",
@@ -5759,7 +5913,8 @@ declare module "sap/ui/vk/dvl/BaseNodeProxy" {
5759
5913
  * - {@link sap.ui.vk.ViewStateManager#enumerateSelection sap.ui.vk.ViewStateManager.enumerateSelection }
5760
5914
  *
5761
5915
  *
5762
- * @deprecated (since 1.72.0)
5916
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.BaseNodeProxy }
5917
+ * instead.
5763
5918
  */
5764
5919
  export default class BaseNodeProxy
5765
5920
  extends BaseNodeProxy1
@@ -5900,7 +6055,8 @@ declare module "sap/ui/vk/dvl/ContentManager" {
5900
6055
  * Provides a loader that uses the DVL library to load VDS and VDSL files.
5901
6056
  *
5902
6057
  * @since 1.50.0
5903
- * @deprecated (since 1.72.0)
6058
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.ContentManager }
6059
+ * instead.
5904
6060
  */
5905
6061
  export default class ContentManager extends ContentManager1 {
5906
6062
  /**
@@ -6080,7 +6236,12 @@ declare module "sap/ui/vk/dvl/ContentManager" {
6080
6236
  contentResources: ContentResource[]
6081
6237
  ): this;
6082
6238
  }
6083
-
6239
+ /**
6240
+ * Describes the settings that can be provided to the ContentManager constructor.
6241
+ *
6242
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.ContentManager }
6243
+ * instead.
6244
+ */
6084
6245
  export interface $ContentManagerSettings extends $ContentManagerSettings1 {}
6085
6246
  }
6086
6247
 
@@ -6112,7 +6273,8 @@ declare module "sap/ui/vk/dvl/GraphicsCore" {
6112
6273
  *
6113
6274
  *
6114
6275
  * @since 1.32.0
6115
- * @deprecated (since 1.72.0)
6276
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.ContentConnector }
6277
+ * instead.
6116
6278
  */
6117
6279
  export default class GraphicsCore extends EventProvider {
6118
6280
  /**
@@ -6220,7 +6382,7 @@ declare module "sap/ui/vk/dvl/GraphicsCore" {
6220
6382
  * GraphicsCore owns the new ViewStateManager object. The object must be destroyed with the {@link #destroyViewStateManager destroyViewStateManager }
6221
6383
  * method;
6222
6384
  *
6223
- * @deprecated (since 1.50.0)
6385
+ * @deprecated (since 1.50.0) - Create instance of {@link sap.ui.vk.ViewStateManager} instead.
6224
6386
  *
6225
6387
  * @returns The newly created ViewStateManager object.
6226
6388
  */
@@ -6251,7 +6413,8 @@ declare module "sap/ui/vk/dvl/GraphicsCore" {
6251
6413
  * Destroys the ViewStateManager object created with the {@link #createViewStateManager createViewStateManager }
6252
6414
  * method.
6253
6415
  *
6254
- * @deprecated (since 1.50.0)
6416
+ * @deprecated (since 1.50.0) - Use your reference to {@link sap.ui.vk.ViewStateManager} to properly destroy
6417
+ * this object.
6255
6418
  *
6256
6419
  * @returns `this` to allow method chaining.
6257
6420
  */
@@ -6399,7 +6562,7 @@ declare module "sap/ui/vk/dvl/GraphicsCoreApi" {
6399
6562
  /**
6400
6563
  * The types of APIs supported by the {@link sap.ui.vk.dvl.GraphicsCore} class.
6401
6564
  *
6402
- * @deprecated (since 1.72.0)
6565
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. This object does not have replacement.
6403
6566
  */
6404
6567
  enum GraphicsCoreApi {
6405
6568
  /**
@@ -6425,7 +6588,8 @@ declare module "sap/ui/vk/dvl/LayerProxy" {
6425
6588
  * method and destroyed with the {@link sap.ui.vk.NodeHierarchy#destroyLayerProxy sap.ui.vk.NodeHierarchy.destroyLayerProxy }
6426
6589
  * method.
6427
6590
  *
6428
- * @deprecated (since 1.72.0)
6591
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.LayerProxy }
6592
+ * instead.
6429
6593
  */
6430
6594
  export default class LayerProxy extends LayerProxy1 {
6431
6595
  /**
@@ -6544,7 +6708,8 @@ declare module "sap/ui/vk/dvl/NodeHierarchy" {
6544
6708
  * The objects of this class should not be created directly, and should only be created via a call to {@link sap.ui.vk.Scene#getDefaultNodeHierarchy sap.ui.vk.Scene.getDefaultNodeHierarchy}.
6545
6709
  *
6546
6710
  * @since 1.32.0
6547
- * @deprecated (since 1.72.0)
6711
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.NodeHierarchy }
6712
+ * instead.
6548
6713
  */
6549
6714
  export default class NodeHierarchy extends NodeHierarchy1 {
6550
6715
  /**
@@ -6938,7 +7103,12 @@ declare module "sap/ui/vk/dvl/NodeHierarchy" {
6938
7103
  nodeRef: any
6939
7104
  ): this;
6940
7105
  }
6941
-
7106
+ /**
7107
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
7108
+ *
7109
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.NodeHierarchy }
7110
+ * instead.
7111
+ */
6942
7112
  export interface $NodeHierarchySettings extends $NodeHierarchySettings1 {}
6943
7113
  }
6944
7114
 
@@ -6958,7 +7128,8 @@ declare module "sap/ui/vk/dvl/NodeProxy" {
6958
7128
  * method.
6959
7129
  *
6960
7130
  * @since 1.32.0
6961
- * @deprecated (since 1.72.0)
7131
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.NodeProxy }
7132
+ * instead.
6962
7133
  */
6963
7134
  export default class NodeProxy extends NodeProxy1 {
6964
7135
  /**
@@ -7005,7 +7176,12 @@ declare module "sap/ui/vk/dvl/NodeProxy" {
7005
7176
  */
7006
7177
  static getMetadata(): ManagedObjectMetadata;
7007
7178
  }
7008
-
7179
+ /**
7180
+ * Describes the settings that can be provided to the NodeProxy constructor.
7181
+ *
7182
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.NodeProxy }
7183
+ * instead.
7184
+ */
7009
7185
  export interface $NodeProxySettings extends $NodeProxySettings1 {}
7010
7186
  }
7011
7187
 
@@ -7026,7 +7202,7 @@ declare module "sap/ui/vk/dvl/Scene" {
7026
7202
  *
7027
7203
  * The objects of this class should not be created directly. They should be created via {@link sap.ui.vk.ContentConnector sap.ui.vk.ContentConnector}.
7028
7204
  *
7029
- * @deprecated (since 1.72.0)
7205
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.Scene} instead.
7030
7206
  */
7031
7207
  export default class Scene extends Scene1 {
7032
7208
  /**
@@ -7103,7 +7279,11 @@ declare module "sap/ui/vk/dvl/Scene" {
7103
7279
  */
7104
7280
  getSceneRef(): string;
7105
7281
  }
7106
-
7282
+ /**
7283
+ * Describes the settings that can be provided to the Scene constructor.
7284
+ *
7285
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.Scene} instead.
7286
+ */
7107
7287
  export interface $SceneSettings extends $SceneSettings1 {}
7108
7288
  }
7109
7289
 
@@ -7138,7 +7318,8 @@ declare module "sap/ui/vk/dvl/Viewport" {
7138
7318
  /**
7139
7319
  * Provides a rendering canvas for the 3D elements of a loaded scene.
7140
7320
  *
7141
- * @deprecated (since 1.72.0)
7321
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.Viewport }
7322
+ * instead.
7142
7323
  */
7143
7324
  export default class Viewport extends ViewportBase {
7144
7325
  /**
@@ -7554,7 +7735,7 @@ declare module "sap/ui/vk/dvl/Viewport" {
7554
7735
  /**
7555
7736
  * Gets the {@link sap.ui.vk.dvl.GraphicsCore GraphicsCore} object the Viewport is attached to.
7556
7737
  *
7557
- * @deprecated (since 1.50.0)
7738
+ * @deprecated (since 1.50.0) - Create instance of {@link sap.ui.vk.ContentConnector} instead.
7558
7739
  *
7559
7740
  * @returns The {@link sap.ui.vk.dvl.GraphicsCore GraphicsCore} object the Viewport is attached to, or `null`.
7560
7741
  */
@@ -7736,7 +7917,7 @@ declare module "sap/ui/vk/dvl/Viewport" {
7736
7917
  /**
7737
7918
  * Attaches or detaches the Viewport to the {@link sap.ui.vk.dvl.GraphicsCore GraphicsCore} object.
7738
7919
  *
7739
- * @deprecated (since 1.50.0)
7920
+ * @deprecated (since 1.50.0) - Create instance of {@link sap.ui.vk.ContentConnector} instead.
7740
7921
  *
7741
7922
  * @returns `this` to allow method chaining.
7742
7923
  */
@@ -7751,7 +7932,7 @@ declare module "sap/ui/vk/dvl/Viewport" {
7751
7932
  /**
7752
7933
  * Attaches the scene to the Viewport for rendering.
7753
7934
  *
7754
- * @deprecated (since 1.50.0)
7935
+ * @deprecated (since 1.50.0) - Viewport now gets reference to the scene via {@link sap.ui.vk.ContentConnector}.
7755
7936
  *
7756
7937
  * @returns `this` to allow method chaining.
7757
7938
  */
@@ -7972,7 +8153,12 @@ declare module "sap/ui/vk/dvl/Viewport" {
7972
8153
  margin: float
7973
8154
  ): Viewport1;
7974
8155
  }
7975
-
8156
+ /**
8157
+ * Describes the settings that can be provided to the Viewport constructor.
8158
+ *
8159
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.Viewport }
8160
+ * instead.
8161
+ */
7976
8162
  export interface $ViewportSettings extends $ViewportBaseSettings {
7977
8163
  /**
7978
8164
  * Viewport background top color in the ABGR format
@@ -7996,36 +8182,60 @@ declare module "sap/ui/vk/dvl/Viewport" {
7996
8182
  frameRenderingFinished?: (oEvent: Event) => void;
7997
8183
  }
7998
8184
 
8185
+ /**
8186
+ * Parameters of the Viewport#frameRenderingFinished event.
8187
+ */
7999
8188
  export interface Viewport$FrameRenderingFinishedEventParameters {}
8000
8189
 
8190
+ /**
8191
+ * Event object of the Viewport#frameRenderingFinished event.
8192
+ */
8001
8193
  export type Viewport$FrameRenderingFinishedEvent = Event<
8002
8194
  Viewport$FrameRenderingFinishedEventParameters,
8003
8195
  Viewport
8004
8196
  >;
8005
8197
 
8198
+ /**
8199
+ * Parameters of the Viewport#pan event.
8200
+ */
8006
8201
  export interface Viewport$PanEventParameters {
8007
8202
  dx?: int;
8008
8203
 
8009
8204
  dy?: int;
8010
8205
  }
8011
8206
 
8207
+ /**
8208
+ * Event object of the Viewport#pan event.
8209
+ */
8012
8210
  export type Viewport$PanEvent = Event<Viewport$PanEventParameters, Viewport>;
8013
8211
 
8212
+ /**
8213
+ * Parameters of the Viewport#rotate event.
8214
+ */
8014
8215
  export interface Viewport$RotateEventParameters {
8015
8216
  dx?: int;
8016
8217
 
8017
8218
  dy?: int;
8018
8219
  }
8019
8220
 
8221
+ /**
8222
+ * Event object of the Viewport#rotate event.
8223
+ */
8020
8224
  export type Viewport$RotateEvent = Event<
8021
8225
  Viewport$RotateEventParameters,
8022
8226
  Viewport
8023
8227
  >;
8024
8228
 
8229
+ /**
8230
+ * Parameters of the Viewport#zoom event.
8231
+ */
8025
8232
  export interface Viewport$ZoomEventParameters {
8026
8233
  zoomFactor?: float;
8027
8234
  }
8028
8235
 
8236
+ /**
8237
+ * Event object of the Viewport#zoom event.
8238
+ */
8029
8239
  export type Viewport$ZoomEvent = Event<
8030
8240
  Viewport$ZoomEventParameters,
8031
8241
  Viewport
@@ -8047,7 +8257,8 @@ declare module "sap/ui/vk/dvl/ViewStateManager" {
8047
8257
  /**
8048
8258
  * Manages the visibility and selection states of nodes in the scene.
8049
8259
  *
8050
- * @deprecated (since 1.72.0)
8260
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.ViewStateManager }
8261
+ * instead.
8051
8262
  */
8052
8263
  export default class ViewStateManager extends ViewStateManagerBase {
8053
8264
  /**
@@ -8238,7 +8449,7 @@ declare module "sap/ui/vk/dvl/ViewStateManager" {
8238
8449
  /**
8239
8450
  * Sets the selection state of the nodes.
8240
8451
  *
8241
- * @deprecated (since 1.56.3)
8452
+ * @deprecated (since 1.56.3) - Use {@link sap.ui.vk.dvl.ViewStateManager#setSelectionStates} instead.
8242
8453
  *
8243
8454
  * @returns `this` to allow method chaining.
8244
8455
  */
@@ -8332,7 +8543,12 @@ declare module "sap/ui/vk/dvl/ViewStateManager" {
8332
8543
  force: boolean
8333
8544
  ): this;
8334
8545
  }
8335
-
8546
+ /**
8547
+ * Describes the settings that can be provided to the ViewStateManager constructor.
8548
+ *
8549
+ * @deprecated (since 1.72.0) - DVL namespace will be removed in future. Use {@link sap.ui.vk.ViewStateManager }
8550
+ * instead.
8551
+ */
8336
8552
  export interface $ViewStateManagerSettings
8337
8553
  extends $ViewStateManagerBaseSettings {}
8338
8554
  }
@@ -8597,7 +8813,12 @@ declare module "sap/ui/vk/FlexibleControl" {
8597
8813
  sWidth?: CSSSize
8598
8814
  ): this;
8599
8815
  }
8600
-
8816
+ /**
8817
+ * Describes the settings that can be provided to the FlexibleControl constructor.
8818
+ *
8819
+ * @experimental (since 1.32.0) - This class is experimental and might be modified or removed in future
8820
+ * versions.
8821
+ */
8601
8822
  export interface $FlexibleControlSettings extends $ControlSettings {
8602
8823
  /**
8603
8824
  * CSS width of the vertical layout.
@@ -8817,7 +9038,12 @@ declare module "sap/ui/vk/FlexibleControlLayoutData" {
8817
9038
  sSize?: CSSSize
8818
9039
  ): this;
8819
9040
  }
8820
-
9041
+ /**
9042
+ * Describes the settings that can be provided to the FlexibleControlLayoutData constructor.
9043
+ *
9044
+ * @experimental (since 1.32.0) - This class is experimental and might be modified or removed in future
9045
+ * versions.
9046
+ */
8821
9047
  export interface $FlexibleControlLayoutDataSettings
8822
9048
  extends $LayoutDataSettings {
8823
9049
  /**
@@ -8923,7 +9149,9 @@ declare module "sap/ui/vk/ImageContentManager" {
8923
9149
  */
8924
9150
  static getMetadata(): ManagedObjectMetadata;
8925
9151
  }
8926
-
9152
+ /**
9153
+ * Describes the settings that can be provided to the ImageContentManager constructor.
9154
+ */
8927
9155
  export interface $ImageContentManagerSettings
8928
9156
  extends $ContentManagerSettings {}
8929
9157
  }
@@ -9070,7 +9298,7 @@ declare module "sap/ui/vk/LegendItem" {
9070
9298
  /**
9071
9299
  * Legend item control
9072
9300
  *
9073
- * @deprecated (since 1.120.2)
9301
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerLegendItem}
9074
9302
  * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
9075
9303
  * versions.
9076
9304
  */
@@ -9188,7 +9416,13 @@ declare module "sap/ui/vk/LegendItem" {
9188
9416
  sSemanticSpotType?: SemanticType | keyof typeof SemanticType
9189
9417
  ): this;
9190
9418
  }
9191
-
9419
+ /**
9420
+ * Describes the settings that can be provided to the LegendItem constructor.
9421
+ *
9422
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerLegendItem}
9423
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
9424
+ * versions.
9425
+ */
9192
9426
  export interface $LegendItemSettings extends $StandardListItemSettings {
9193
9427
  /**
9194
9428
  * show color square
@@ -9226,7 +9460,7 @@ declare module "sap/ui/vk/ListPanel" {
9226
9460
  /**
9227
9461
  * Aggregation control for the Legend
9228
9462
  *
9229
- * @deprecated (since 1.120.2)
9463
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanel}
9230
9464
  * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
9231
9465
  * versions.
9232
9466
  */
@@ -9858,7 +10092,13 @@ declare module "sap/ui/vk/ListPanel" {
9858
10092
  sSelectionMode?: ListMode | keyof typeof ListMode
9859
10093
  ): this;
9860
10094
  }
9861
-
10095
+ /**
10096
+ * Describes the settings that can be provided to the ListPanel constructor.
10097
+ *
10098
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanel}
10099
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
10100
+ * versions.
10101
+ */
9862
10102
  export interface $ListPanelSettings extends $ControlSettings {
9863
10103
  /**
9864
10104
  * Header text
@@ -9918,20 +10158,35 @@ declare module "sap/ui/vk/ListPanel" {
9918
10158
  itemPress?: (oEvent: ListPanel$ItemPressEvent) => void;
9919
10159
  }
9920
10160
 
10161
+ /**
10162
+ * Parameters of the ListPanel#expand event.
10163
+ */
9921
10164
  export interface ListPanel$ExpandEventParameters {}
9922
10165
 
10166
+ /**
10167
+ * Event object of the ListPanel#expand event.
10168
+ */
9923
10169
  export type ListPanel$ExpandEvent = Event<
9924
10170
  ListPanel$ExpandEventParameters,
9925
10171
  ListPanel
9926
10172
  >;
9927
10173
 
10174
+ /**
10175
+ * Parameters of the ListPanel#headerIconPress event.
10176
+ */
9928
10177
  export interface ListPanel$HeaderIconPressEventParameters {}
9929
10178
 
10179
+ /**
10180
+ * Event object of the ListPanel#headerIconPress event.
10181
+ */
9930
10182
  export type ListPanel$HeaderIconPressEvent = Event<
9931
10183
  ListPanel$HeaderIconPressEventParameters,
9932
10184
  ListPanel
9933
10185
  >;
9934
10186
 
10187
+ /**
10188
+ * Parameters of the ListPanel#itemPress event.
10189
+ */
9935
10190
  export interface ListPanel$ItemPressEventParameters {
9936
10191
  /**
9937
10192
  * The item which fired the pressed event.
@@ -9944,11 +10199,17 @@ declare module "sap/ui/vk/ListPanel" {
9944
10199
  srcControl?: Control;
9945
10200
  }
9946
10201
 
10202
+ /**
10203
+ * Event object of the ListPanel#itemPress event.
10204
+ */
9947
10205
  export type ListPanel$ItemPressEvent = Event<
9948
10206
  ListPanel$ItemPressEventParameters,
9949
10207
  ListPanel
9950
10208
  >;
9951
10209
 
10210
+ /**
10211
+ * Parameters of the ListPanel#selectionChange event.
10212
+ */
9952
10213
  export interface ListPanel$SelectionChangeEventParameters {
9953
10214
  /**
9954
10215
  * The item whose selection has changed. In `MultiSelect` mode, only the up-most selected item is returned.
@@ -9967,6 +10228,9 @@ declare module "sap/ui/vk/ListPanel" {
9967
10228
  selected?: boolean;
9968
10229
  }
9969
10230
 
10231
+ /**
10232
+ * Event object of the ListPanel#selectionChange event.
10233
+ */
9970
10234
  export type ListPanel$SelectionChangeEvent = Event<
9971
10235
  ListPanel$SelectionChangeEventParameters,
9972
10236
  ListPanel
@@ -9990,7 +10254,7 @@ declare module "sap/ui/vk/ListPanelStack" {
9990
10254
  /**
9991
10255
  * ListPanelStack control
9992
10256
  *
9993
- * @deprecated (since 1.120.2)
10257
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanelStack}
9994
10258
  * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
9995
10259
  * versions.
9996
10260
  */
@@ -10249,7 +10513,13 @@ declare module "sap/ui/vk/ListPanelStack" {
10249
10513
  sWidth?: CSSSize
10250
10514
  ): this;
10251
10515
  }
10252
-
10516
+ /**
10517
+ * Describes the settings that can be provided to the ListPanelStack constructor.
10518
+ *
10519
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanelStack}
10520
+ * @experimental (since 1.38.0) - This class is experimental and might be modified or removed in future
10521
+ * versions.
10522
+ */
10253
10523
  export interface $ListPanelStackSettings extends $ControlSettings {
10254
10524
  /**
10255
10525
  * Control width
@@ -10376,7 +10646,7 @@ declare module "sap/ui/vk/MapContainer" {
10376
10646
  /**
10377
10647
  * Abstract Constructor for a new Container.
10378
10648
  *
10379
- * @deprecated (since 1.120.2)
10649
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.MapContainer}
10380
10650
  */
10381
10651
  export default class MapContainer extends ContainerBase {
10382
10652
  /**
@@ -10676,7 +10946,11 @@ declare module "sap/ui/vk/MapContainer" {
10676
10946
  }
10677
10947
  ): object;
10678
10948
  }
10679
-
10949
+ /**
10950
+ * Describes the settings that can be provided to the MapContainer constructor.
10951
+ *
10952
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.MapContainer}
10953
+ */
10680
10954
  export interface $MapContainerSettings extends $ContainerBaseSettings {
10681
10955
  /**
10682
10956
  * Show navbar
@@ -10714,7 +10988,7 @@ declare module "sap/ui/vk/MapContainerButtonType" {
10714
10988
  /**
10715
10989
  * Types of custom buttons supported on the MapContainer toolbar
10716
10990
  *
10717
- * @deprecated (since 1.120.2)
10991
+ * @deprecated (since 1.120.2) - This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.MapContainerButtonType}
10718
10992
  */
10719
10993
  enum MapContainerButtonType {
10720
10994
  Click = "Click",
@@ -11386,7 +11660,8 @@ declare module "sap/ui/vk/NativeViewport" {
11386
11660
  /**
11387
11661
  * Loads a image URL into Viewport.
11388
11662
  *
11389
- * @deprecated (since 1.50.0)
11663
+ * @deprecated (since 1.50.0) - Use {@link sap.ui.vk.ContentResource} and {@link sap.ui.vk.ContentConnector#contentResources }
11664
+ * aggregation instead.
11390
11665
  *
11391
11666
  * @returns this
11392
11667
  */
@@ -11529,7 +11804,9 @@ declare module "sap/ui/vk/NativeViewport" {
11529
11804
  */
11530
11805
  zoomTo(): NativeViewport;
11531
11806
  }
11532
-
11807
+ /**
11808
+ * Describes the settings that can be provided to the NativeViewport constructor.
11809
+ */
11533
11810
  export interface $NativeViewportSettings extends $ViewportBaseSettings {
11534
11811
  /**
11535
11812
  * Limit the ability to zoom out. If enabled the zoom out stops if the image size reaches 25% of the full
@@ -11548,22 +11825,34 @@ declare module "sap/ui/vk/NativeViewport" {
11548
11825
  move?: (oEvent: NativeViewport$MoveEvent) => void;
11549
11826
  }
11550
11827
 
11828
+ /**
11829
+ * Parameters of the NativeViewport#move event.
11830
+ */
11551
11831
  export interface NativeViewport$MoveEventParameters {
11552
11832
  pan?: object;
11553
11833
 
11554
11834
  zoom?: float;
11555
11835
  }
11556
11836
 
11837
+ /**
11838
+ * Event object of the NativeViewport#move event.
11839
+ */
11557
11840
  export type NativeViewport$MoveEvent = Event<
11558
11841
  NativeViewport$MoveEventParameters,
11559
11842
  NativeViewport
11560
11843
  >;
11561
11844
 
11845
+ /**
11846
+ * Parameters of the NativeViewport#resize event.
11847
+ */
11562
11848
  export interface NativeViewport$ResizeEventParameters
11563
11849
  extends ViewportBase$ResizeEventParameters {
11564
11850
  oldSize?: object;
11565
11851
  }
11566
11852
 
11853
+ /**
11854
+ * Event object of the NativeViewport#resize event.
11855
+ */
11567
11856
  export type NativeViewport$ResizeEvent = Event<
11568
11857
  NativeViewport$ResizeEventParameters,
11569
11858
  NativeViewport
@@ -11616,6 +11905,10 @@ declare module "sap/ui/vk/NodeContentType" {
11616
11905
  * Hotspot node
11617
11906
  */
11618
11907
  Hotspot = "Hotspot",
11908
+ /**
11909
+ * PMI node
11910
+ */
11911
+ PMI = "PMI",
11619
11912
  /**
11620
11913
  * Point cloud group node
11621
11914
  */
@@ -12564,7 +12857,9 @@ declare module "sap/ui/vk/NodeHierarchy" {
12564
12857
  nodeRef: any
12565
12858
  ): this;
12566
12859
  }
12567
-
12860
+ /**
12861
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
12862
+ */
12568
12863
  export interface $NodeHierarchySettings extends $ManagedObjectSettings {
12569
12864
  /**
12570
12865
  * This event will be fired when the node hierarchy changes, e.g. a node is added or removed.
@@ -12586,35 +12881,56 @@ declare module "sap/ui/vk/NodeHierarchy" {
12586
12881
  nodeUpdated?: (oEvent: NodeHierarchy$NodeUpdatedEvent) => void;
12587
12882
  }
12588
12883
 
12884
+ /**
12885
+ * Parameters of the NodeHierarchy#changed event.
12886
+ */
12589
12887
  export interface NodeHierarchy$ChangedEventParameters {}
12590
12888
 
12889
+ /**
12890
+ * Event object of the NodeHierarchy#changed event.
12891
+ */
12591
12892
  export type NodeHierarchy$ChangedEvent = Event<
12592
12893
  NodeHierarchy$ChangedEventParameters,
12593
12894
  NodeHierarchy
12594
12895
  >;
12595
12896
 
12897
+ /**
12898
+ * Parameters of the NodeHierarchy#nodeCreated event.
12899
+ */
12596
12900
  export interface NodeHierarchy$NodeCreatedEventParameters {
12597
12901
  nodeRef?: any;
12598
12902
 
12599
12903
  nodeId?: string;
12600
12904
  }
12601
12905
 
12906
+ /**
12907
+ * Event object of the NodeHierarchy#nodeCreated event.
12908
+ */
12602
12909
  export type NodeHierarchy$NodeCreatedEvent = Event<
12603
12910
  NodeHierarchy$NodeCreatedEventParameters,
12604
12911
  NodeHierarchy
12605
12912
  >;
12606
12913
 
12914
+ /**
12915
+ * Parameters of the NodeHierarchy#nodeRemoving event.
12916
+ */
12607
12917
  export interface NodeHierarchy$NodeRemovingEventParameters {
12608
12918
  nodeRef?: any;
12609
12919
 
12610
12920
  nodeId?: string;
12611
12921
  }
12612
12922
 
12923
+ /**
12924
+ * Event object of the NodeHierarchy#nodeRemoving event.
12925
+ */
12613
12926
  export type NodeHierarchy$NodeRemovingEvent = Event<
12614
12927
  NodeHierarchy$NodeRemovingEventParameters,
12615
12928
  NodeHierarchy
12616
12929
  >;
12617
12930
 
12931
+ /**
12932
+ * Parameters of the NodeHierarchy#nodeReplaced event.
12933
+ */
12618
12934
  export interface NodeHierarchy$NodeReplacedEventParameters {
12619
12935
  ReplacedNodeRef?: any;
12620
12936
 
@@ -12625,17 +12941,26 @@ declare module "sap/ui/vk/NodeHierarchy" {
12625
12941
  ReplacementNodeId?: string;
12626
12942
  }
12627
12943
 
12944
+ /**
12945
+ * Event object of the NodeHierarchy#nodeReplaced event.
12946
+ */
12628
12947
  export type NodeHierarchy$NodeReplacedEvent = Event<
12629
12948
  NodeHierarchy$NodeReplacedEventParameters,
12630
12949
  NodeHierarchy
12631
12950
  >;
12632
12951
 
12952
+ /**
12953
+ * Parameters of the NodeHierarchy#nodeUpdated event.
12954
+ */
12633
12955
  export interface NodeHierarchy$NodeUpdatedEventParameters {
12634
12956
  nodeRef?: any;
12635
12957
 
12636
12958
  nodeId?: string;
12637
12959
  }
12638
12960
 
12961
+ /**
12962
+ * Event object of the NodeHierarchy#nodeUpdated event.
12963
+ */
12639
12964
  export type NodeHierarchy$NodeUpdatedEvent = Event<
12640
12965
  NodeHierarchy$NodeUpdatedEventParameters,
12641
12966
  NodeHierarchy
@@ -13152,7 +13477,9 @@ declare module "sap/ui/vk/NodeProxy" {
13152
13477
  */
13153
13478
  unbindWorldMatrix(): this;
13154
13479
  }
13155
-
13480
+ /**
13481
+ * Describes the settings that can be provided to the NodeProxy constructor.
13482
+ */
13156
13483
  export interface $NodeProxySettings extends $ManagedObjectSettings {
13157
13484
  /**
13158
13485
  * The node reference. This property is read-only.
@@ -13462,7 +13789,9 @@ declare module "sap/ui/vk/Notifications" {
13462
13789
  mParameters?: object
13463
13790
  ): this;
13464
13791
  }
13465
-
13792
+ /**
13793
+ * Describes the settings that can be provided to the Notifications constructor.
13794
+ */
13466
13795
  export interface $NotificationsSettings extends $ControlSettings {
13467
13796
  /**
13468
13797
  * This event will be fired when all messages in the log are deleted.
@@ -13475,15 +13804,27 @@ declare module "sap/ui/vk/Notifications" {
13475
13804
  messageAdded?: (oEvent: Event) => void;
13476
13805
  }
13477
13806
 
13807
+ /**
13808
+ * Parameters of the Notifications#allMessagesCleared event.
13809
+ */
13478
13810
  export interface Notifications$AllMessagesClearedEventParameters {}
13479
13811
 
13812
+ /**
13813
+ * Event object of the Notifications#allMessagesCleared event.
13814
+ */
13480
13815
  export type Notifications$AllMessagesClearedEvent = Event<
13481
13816
  Notifications$AllMessagesClearedEventParameters,
13482
13817
  Notifications
13483
13818
  >;
13484
13819
 
13820
+ /**
13821
+ * Parameters of the Notifications#messageAdded event.
13822
+ */
13485
13823
  export interface Notifications$MessageAddedEventParameters {}
13486
13824
 
13825
+ /**
13826
+ * Event object of the Notifications#messageAdded event.
13827
+ */
13487
13828
  export type Notifications$MessageAddedEvent = Event<
13488
13829
  Notifications$MessageAddedEventParameters,
13489
13830
  Notifications
@@ -13581,7 +13922,9 @@ declare module "sap/ui/vk/OrthographicCamera" {
13581
13922
  fZoomFactor: float
13582
13923
  ): this;
13583
13924
  }
13584
-
13925
+ /**
13926
+ * Describes the settings that can be provided to the OrthographicCamera constructor.
13927
+ */
13585
13928
  export interface $OrthographicCameraSettings extends $CameraSettings {
13586
13929
  /**
13587
13930
  * Camera zoom factor
@@ -13742,7 +14085,11 @@ declare module "sap/ui/vk/OutputSettings" {
13742
14085
  fWidth: float
13743
14086
  ): this;
13744
14087
  }
13745
-
14088
+ /**
14089
+ * Describes the settings that can be provided to the OutputSettings constructor.
14090
+ *
14091
+ * @experimental
14092
+ */
13746
14093
  export interface $OutputSettingsSettings extends $ElementSettings {
13747
14094
  /**
13748
14095
  * width of the output, unit in mm
@@ -13783,6 +14130,7 @@ declare module "sap/ui/vk/Overlay" {
13783
14130
  * Constructor for a new Overlay.
13784
14131
  *
13785
14132
  * @since 1.32.0
14133
+ * @deprecated (since 1.123) - This is not in use anymore. Please consider using Redline tool, see {@link sap.ui.vk.RedlineTool}
13786
14134
  */
13787
14135
  export default class Overlay extends Control {
13788
14136
  /**
@@ -14174,7 +14522,11 @@ declare module "sap/ui/vk/Overlay" {
14174
14522
  bZoomOnResize?: boolean
14175
14523
  ): this;
14176
14524
  }
14177
-
14525
+ /**
14526
+ * Describes the settings that can be provided to the Overlay constructor.
14527
+ *
14528
+ * @deprecated (since 1.123) - This is not in use anymore. Please consider using Redline tool, see {@link sap.ui.vk.RedlineTool}
14529
+ */
14178
14530
  export interface $OverlaySettings extends $ControlSettings {
14179
14531
  zoomOnResize?: boolean | PropertyBindingInfo | `{${string}}`;
14180
14532
 
@@ -14203,6 +14555,9 @@ declare module "sap/ui/vk/Overlay" {
14203
14555
  contextMenu?: (oEvent: Overlay$ContextMenuEvent) => void;
14204
14556
  }
14205
14557
 
14558
+ /**
14559
+ * Parameters of the Overlay#click event.
14560
+ */
14206
14561
  export interface Overlay$ClickEventParameters {
14207
14562
  /**
14208
14563
  * Client coordinate X
@@ -14220,8 +14575,14 @@ declare module "sap/ui/vk/Overlay" {
14220
14575
  pos?: string;
14221
14576
  }
14222
14577
 
14578
+ /**
14579
+ * Event object of the Overlay#click event.
14580
+ */
14223
14581
  export type Overlay$ClickEvent = Event<Overlay$ClickEventParameters, Overlay>;
14224
14582
 
14583
+ /**
14584
+ * Parameters of the Overlay#contextMenu event.
14585
+ */
14225
14586
  export interface Overlay$ContextMenuEventParameters {
14226
14587
  /**
14227
14588
  * Coordinates of click position in format "x;y;0"
@@ -14234,6 +14595,9 @@ declare module "sap/ui/vk/Overlay" {
14234
14595
  menu?: Menu;
14235
14596
  }
14236
14597
 
14598
+ /**
14599
+ * Event object of the Overlay#contextMenu event.
14600
+ */
14237
14601
  export type Overlay$ContextMenuEvent = Event<
14238
14602
  Overlay$ContextMenuEventParameters,
14239
14603
  Overlay
@@ -14257,6 +14621,7 @@ declare module "sap/ui/vk/OverlayArea" {
14257
14621
  * Aggregation element for the Overlay Control
14258
14622
  *
14259
14623
  * @since 1.32.0
14624
+ * @deprecated (since 1.123) - This is not in use anymore. Please consider using Redline tool, see {@link sap.ui.vk.RedlineTool}
14260
14625
  */
14261
14626
  export default class OverlayArea extends UI5Element {
14262
14627
  /**
@@ -15132,7 +15497,11 @@ declare module "sap/ui/vk/OverlayArea" {
15132
15497
  bSelect?: boolean
15133
15498
  ): this;
15134
15499
  }
15135
-
15500
+ /**
15501
+ * Describes the settings that can be provided to the OverlayArea constructor.
15502
+ *
15503
+ * @deprecated (since 1.123) - This is not in use anymore. Please consider using Redline tool, see {@link sap.ui.vk.RedlineTool}
15504
+ */
15136
15505
  export interface $OverlayAreaSettings extends $ElementSettings {
15137
15506
  /**
15138
15507
  * Unique identifier for the object. This is optional. If not provided the default identifier sId is used.
@@ -15217,13 +15586,22 @@ declare module "sap/ui/vk/OverlayArea" {
15217
15586
  handleClick?: (oEvent: Event) => void;
15218
15587
  }
15219
15588
 
15589
+ /**
15590
+ * Parameters of the OverlayArea#click event.
15591
+ */
15220
15592
  export interface OverlayArea$ClickEventParameters {}
15221
15593
 
15594
+ /**
15595
+ * Event object of the OverlayArea#click event.
15596
+ */
15222
15597
  export type OverlayArea$ClickEvent = Event<
15223
15598
  OverlayArea$ClickEventParameters,
15224
15599
  OverlayArea
15225
15600
  >;
15226
15601
 
15602
+ /**
15603
+ * Parameters of the OverlayArea#contextMenu event.
15604
+ */
15227
15605
  export interface OverlayArea$ContextMenuEventParameters {
15228
15606
  /**
15229
15607
  * Menu to open
@@ -15231,11 +15609,17 @@ declare module "sap/ui/vk/OverlayArea" {
15231
15609
  menu?: Menu;
15232
15610
  }
15233
15611
 
15612
+ /**
15613
+ * Event object of the OverlayArea#contextMenu event.
15614
+ */
15234
15615
  export type OverlayArea$ContextMenuEvent = Event<
15235
15616
  OverlayArea$ContextMenuEventParameters,
15236
15617
  OverlayArea
15237
15618
  >;
15238
15619
 
15620
+ /**
15621
+ * Parameters of the OverlayArea#edgeClick event.
15622
+ */
15239
15623
  export interface OverlayArea$EdgeClickEventParameters {
15240
15624
  /**
15241
15625
  * Index of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the
@@ -15244,11 +15628,17 @@ declare module "sap/ui/vk/OverlayArea" {
15244
15628
  index?: int;
15245
15629
  }
15246
15630
 
15631
+ /**
15632
+ * Event object of the OverlayArea#edgeClick event.
15633
+ */
15247
15634
  export type OverlayArea$EdgeClickEvent = Event<
15248
15635
  OverlayArea$EdgeClickEventParameters,
15249
15636
  OverlayArea
15250
15637
  >;
15251
15638
 
15639
+ /**
15640
+ * Parameters of the OverlayArea#edgeContextMenu event.
15641
+ */
15252
15642
  export interface OverlayArea$EdgeContextMenuEventParameters {
15253
15643
  /**
15254
15644
  * Index of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the
@@ -15262,18 +15652,30 @@ declare module "sap/ui/vk/OverlayArea" {
15262
15652
  menu?: Menu;
15263
15653
  }
15264
15654
 
15655
+ /**
15656
+ * Event object of the OverlayArea#edgeContextMenu event.
15657
+ */
15265
15658
  export type OverlayArea$EdgeContextMenuEvent = Event<
15266
15659
  OverlayArea$EdgeContextMenuEventParameters,
15267
15660
  OverlayArea
15268
15661
  >;
15269
15662
 
15663
+ /**
15664
+ * Parameters of the OverlayArea#handleClick event.
15665
+ */
15270
15666
  export interface OverlayArea$HandleClickEventParameters {}
15271
15667
 
15668
+ /**
15669
+ * Event object of the OverlayArea#handleClick event.
15670
+ */
15272
15671
  export type OverlayArea$HandleClickEvent = Event<
15273
15672
  OverlayArea$HandleClickEventParameters,
15274
15673
  OverlayArea
15275
15674
  >;
15276
15675
 
15676
+ /**
15677
+ * Parameters of the OverlayArea#handleContextMenu event.
15678
+ */
15277
15679
  export interface OverlayArea$HandleContextMenuEventParameters {
15278
15680
  /**
15279
15681
  * Index of the clicked handle. The numbering is zero based.
@@ -15286,19 +15688,316 @@ declare module "sap/ui/vk/OverlayArea" {
15286
15688
  menu?: Menu;
15287
15689
  }
15288
15690
 
15691
+ /**
15692
+ * Event object of the OverlayArea#handleContextMenu event.
15693
+ */
15289
15694
  export type OverlayArea$HandleContextMenuEvent = Event<
15290
15695
  OverlayArea$HandleContextMenuEventParameters,
15291
15696
  OverlayArea
15292
15697
  >;
15293
15698
 
15699
+ /**
15700
+ * Parameters of the OverlayArea#handleMoved event.
15701
+ */
15294
15702
  export interface OverlayArea$HandleMovedEventParameters {}
15295
15703
 
15704
+ /**
15705
+ * Event object of the OverlayArea#handleMoved event.
15706
+ */
15296
15707
  export type OverlayArea$HandleMovedEvent = Event<
15297
15708
  OverlayArea$HandleMovedEventParameters,
15298
15709
  OverlayArea
15299
15710
  >;
15300
15711
  }
15301
15712
 
15713
+ declare module "sap/ui/vk/pdf/Viewport" {
15714
+ import {
15715
+ default as ViewportBase,
15716
+ $ViewportBaseSettings,
15717
+ } from "sap/ui/vk/ViewportBase";
15718
+
15719
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
15720
+
15721
+ import Event from "sap/ui/base/Event";
15722
+
15723
+ /**
15724
+ * Enables displaying PDF content..
15725
+ *
15726
+ * @since 1.123.0
15727
+ */
15728
+ export default class Viewport extends ViewportBase {
15729
+ /**
15730
+ * Constructor for a new Viewport.
15731
+ *
15732
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
15733
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15734
+ * of the syntax of the settings object.
15735
+ */
15736
+ constructor(
15737
+ /**
15738
+ * Initial settings for the new Native Viewport control.
15739
+ */
15740
+ mSettings?: $ViewportSettings
15741
+ );
15742
+ /**
15743
+ * Constructor for a new Viewport.
15744
+ *
15745
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
15746
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15747
+ * of the syntax of the settings object.
15748
+ */
15749
+ constructor(
15750
+ /**
15751
+ * ID for the new Native Viewport control, generated automatically if no ID is given.
15752
+ */
15753
+ sId?: string,
15754
+ /**
15755
+ * Initial settings for the new Native Viewport control.
15756
+ */
15757
+ mSettings?: $ViewportSettings
15758
+ );
15759
+
15760
+ /**
15761
+ * Creates a new subclass of class sap.ui.vk.pdf.Viewport with name `sClassName` and enriches it with the
15762
+ * information contained in `oClassInfo`.
15763
+ *
15764
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vk.ViewportBase.extend}.
15765
+ *
15766
+ *
15767
+ * @returns Created class / constructor function
15768
+ */
15769
+ static extend<T extends Record<string, unknown>>(
15770
+ /**
15771
+ * Name of the class being created
15772
+ */
15773
+ sClassName: string,
15774
+ /**
15775
+ * Object literal with information about the class
15776
+ */
15777
+ oClassInfo?: sap.ClassInfo<T, Viewport>,
15778
+ /**
15779
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15780
+ * used by this class
15781
+ */
15782
+ FNMetaImpl?: Function
15783
+ ): Function;
15784
+ /**
15785
+ * Returns a metadata object for class sap.ui.vk.pdf.Viewport.
15786
+ *
15787
+ *
15788
+ * @returns Metadata object describing this class
15789
+ */
15790
+ static getMetadata(): ElementMetadata;
15791
+ /**
15792
+ * Attaches event handler `fnFunction` to the {@link #event:documentReplaced documentReplaced} event of
15793
+ * this `sap.ui.vk.pdf.Viewport`.
15794
+ *
15795
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
15796
+ * otherwise it will be bound to this `sap.ui.vk.pdf.Viewport` itself.
15797
+ *
15798
+ *
15799
+ * @returns Reference to `this` in order to allow method chaining
15800
+ */
15801
+ attachDocumentReplaced(
15802
+ /**
15803
+ * An application-specific payload object that will be passed to the event handler along with the event
15804
+ * object when firing the event
15805
+ */
15806
+ oData: object,
15807
+ /**
15808
+ * The function to be called when the event occurs
15809
+ */
15810
+ fnFunction: (p1: Viewport$DocumentReplacedEvent) => void,
15811
+ /**
15812
+ * Context object to call the event handler with. Defaults to this `sap.ui.vk.pdf.Viewport` itself
15813
+ */
15814
+ oListener?: object
15815
+ ): this;
15816
+ /**
15817
+ * Attaches event handler `fnFunction` to the {@link #event:documentReplaced documentReplaced} event of
15818
+ * this `sap.ui.vk.pdf.Viewport`.
15819
+ *
15820
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
15821
+ * otherwise it will be bound to this `sap.ui.vk.pdf.Viewport` itself.
15822
+ *
15823
+ *
15824
+ * @returns Reference to `this` in order to allow method chaining
15825
+ */
15826
+ attachDocumentReplaced(
15827
+ /**
15828
+ * The function to be called when the event occurs
15829
+ */
15830
+ fnFunction: (p1: Viewport$DocumentReplacedEvent) => void,
15831
+ /**
15832
+ * Context object to call the event handler with. Defaults to this `sap.ui.vk.pdf.Viewport` itself
15833
+ */
15834
+ oListener?: object
15835
+ ): this;
15836
+ /**
15837
+ * Attaches event handler `fnFunction` to the {@link #event:pageChanged pageChanged} event of this `sap.ui.vk.pdf.Viewport`.
15838
+ *
15839
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
15840
+ * otherwise it will be bound to this `sap.ui.vk.pdf.Viewport` itself.
15841
+ *
15842
+ *
15843
+ * @returns Reference to `this` in order to allow method chaining
15844
+ */
15845
+ attachPageChanged(
15846
+ /**
15847
+ * An application-specific payload object that will be passed to the event handler along with the event
15848
+ * object when firing the event
15849
+ */
15850
+ oData: object,
15851
+ /**
15852
+ * The function to be called when the event occurs
15853
+ */
15854
+ fnFunction: (p1: Viewport$PageChangedEvent) => void,
15855
+ /**
15856
+ * Context object to call the event handler with. Defaults to this `sap.ui.vk.pdf.Viewport` itself
15857
+ */
15858
+ oListener?: object
15859
+ ): this;
15860
+ /**
15861
+ * Attaches event handler `fnFunction` to the {@link #event:pageChanged pageChanged} event of this `sap.ui.vk.pdf.Viewport`.
15862
+ *
15863
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
15864
+ * otherwise it will be bound to this `sap.ui.vk.pdf.Viewport` itself.
15865
+ *
15866
+ *
15867
+ * @returns Reference to `this` in order to allow method chaining
15868
+ */
15869
+ attachPageChanged(
15870
+ /**
15871
+ * The function to be called when the event occurs
15872
+ */
15873
+ fnFunction: (p1: Viewport$PageChangedEvent) => void,
15874
+ /**
15875
+ * Context object to call the event handler with. Defaults to this `sap.ui.vk.pdf.Viewport` itself
15876
+ */
15877
+ oListener?: object
15878
+ ): this;
15879
+ /**
15880
+ * Detaches event handler `fnFunction` from the {@link #event:documentReplaced documentReplaced} event of
15881
+ * this `sap.ui.vk.pdf.Viewport`.
15882
+ *
15883
+ * The passed function and listener object must match the ones used for event registration.
15884
+ *
15885
+ *
15886
+ * @returns Reference to `this` in order to allow method chaining
15887
+ */
15888
+ detachDocumentReplaced(
15889
+ /**
15890
+ * The function to be called, when the event occurs
15891
+ */
15892
+ fnFunction: (p1: Viewport$DocumentReplacedEvent) => void,
15893
+ /**
15894
+ * Context object on which the given function had to be called
15895
+ */
15896
+ oListener?: object
15897
+ ): this;
15898
+ /**
15899
+ * Detaches event handler `fnFunction` from the {@link #event:pageChanged pageChanged} event of this `sap.ui.vk.pdf.Viewport`.
15900
+ *
15901
+ * The passed function and listener object must match the ones used for event registration.
15902
+ *
15903
+ *
15904
+ * @returns Reference to `this` in order to allow method chaining
15905
+ */
15906
+ detachPageChanged(
15907
+ /**
15908
+ * The function to be called, when the event occurs
15909
+ */
15910
+ fnFunction: (p1: Viewport$PageChangedEvent) => void,
15911
+ /**
15912
+ * Context object on which the given function had to be called
15913
+ */
15914
+ oListener?: object
15915
+ ): this;
15916
+ /**
15917
+ * Fires event {@link #event:documentReplaced documentReplaced} to attached listeners.
15918
+ *
15919
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
15920
+ *
15921
+ * @returns Reference to `this` in order to allow method chaining
15922
+ */
15923
+ fireDocumentReplaced(
15924
+ /**
15925
+ * Parameters to pass along with the event
15926
+ */
15927
+ mParameters?: Viewport$DocumentReplacedEventParameters
15928
+ ): this;
15929
+ /**
15930
+ * Fires event {@link #event:pageChanged pageChanged} to attached listeners.
15931
+ *
15932
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
15933
+ *
15934
+ * @returns Reference to `this` in order to allow method chaining
15935
+ */
15936
+ firePageChanged(
15937
+ /**
15938
+ * Parameters to pass along with the event
15939
+ */
15940
+ mParameters?: Viewport$PageChangedEventParameters
15941
+ ): this;
15942
+ /**
15943
+ * Scrolls the PDF document to the specified page.
15944
+ *
15945
+ * The PDF document scrolls to display the page content at the top of the viewport if the page is taller
15946
+ * than the viewport or in the center otherwise.
15947
+ *
15948
+ * @since 1.123.0
15949
+ */
15950
+ goToPage(
15951
+ /**
15952
+ * The index of the page to scroll to.
15953
+ */
15954
+ pageIndex: int
15955
+ ): void;
15956
+ }
15957
+ /**
15958
+ * Describes the settings that can be provided to the Viewport constructor.
15959
+ */
15960
+ export interface $ViewportSettings extends $ViewportBaseSettings {
15961
+ pageChanged?: (oEvent: Viewport$PageChangedEvent) => void;
15962
+
15963
+ documentReplaced?: (oEvent: Viewport$DocumentReplacedEvent) => void;
15964
+ }
15965
+
15966
+ /**
15967
+ * Parameters of the Viewport#documentReplaced event.
15968
+ */
15969
+ export interface Viewport$DocumentReplacedEventParameters {
15970
+ oldDocument?: /* was: sap.ui.vk.pdf.Document */ any;
15971
+
15972
+ newDocument?: /* was: sap.ui.vk.pdf.Document */ any;
15973
+ }
15974
+
15975
+ /**
15976
+ * Event object of the Viewport#documentReplaced event.
15977
+ */
15978
+ export type Viewport$DocumentReplacedEvent = Event<
15979
+ Viewport$DocumentReplacedEventParameters,
15980
+ Viewport
15981
+ >;
15982
+
15983
+ /**
15984
+ * Parameters of the Viewport#pageChanged event.
15985
+ */
15986
+ export interface Viewport$PageChangedEventParameters {
15987
+ newPageIndex?: int;
15988
+
15989
+ oldPageIndex?: int;
15990
+ }
15991
+
15992
+ /**
15993
+ * Event object of the Viewport#pageChanged event.
15994
+ */
15995
+ export type Viewport$PageChangedEvent = Event<
15996
+ Viewport$PageChangedEventParameters,
15997
+ Viewport
15998
+ >;
15999
+ }
16000
+
15302
16001
  declare module "sap/ui/vk/PerspectiveCamera" {
15303
16002
  import { default as Camera, $CameraSettings } from "sap/ui/vk/Camera";
15304
16003
 
@@ -15378,7 +16077,9 @@ declare module "sap/ui/vk/PerspectiveCamera" {
15378
16077
  fFov: float
15379
16078
  ): this;
15380
16079
  }
15381
-
16080
+ /**
16081
+ * Describes the settings that can be provided to the PerspectiveCamera constructor.
16082
+ */
15382
16083
  export interface $PerspectiveCameraSettings extends $CameraSettings {
15383
16084
  /**
15384
16085
  * Camera frustum field of view in degree
@@ -15424,7 +16125,11 @@ declare module "sap/ui/vk/ProgressIndicator" {
15424
16125
  mSettings?: $ProgressIndicatorSettings
15425
16126
  );
15426
16127
  }
15427
-
16128
+ /**
16129
+ * Describes the settings that can be provided to the ProgressIndicator constructor.
16130
+ *
16131
+ * @deprecated (since 1.114.0) - Use {@link sap.m.ProgressIndicator} instead.
16132
+ */
15428
16133
  export interface $ProgressIndicatorSettings
15429
16134
  extends $ProgressIndicatorSettings1 {}
15430
16135
  }
@@ -15986,7 +16691,9 @@ declare module "sap/ui/vk/RedlineCollaboration" {
15986
16691
  oActiveComment: ID | /* was: sap.ui.vk.RedlineComment */ any
15987
16692
  ): this;
15988
16693
  }
15989
-
16694
+ /**
16695
+ * Describes the settings that can be provided to the RedlineCollaboration constructor.
16696
+ */
15990
16697
  export interface $RedlineCollaborationSettings extends $ElementSettings {
15991
16698
  /**
15992
16699
  * A list of available conversations.
@@ -16024,48 +16731,78 @@ declare module "sap/ui/vk/RedlineCollaboration" {
16024
16731
  ) => void;
16025
16732
  }
16026
16733
 
16734
+ /**
16735
+ * Parameters of the RedlineCollaboration#conversationActivated event.
16736
+ */
16027
16737
  export interface RedlineCollaboration$ConversationActivatedEventParameters {
16028
16738
  conversation?: RedlineConversation;
16029
16739
 
16030
16740
  viewportLocked?: boolean;
16031
16741
  }
16032
16742
 
16743
+ /**
16744
+ * Event object of the RedlineCollaboration#conversationActivated event.
16745
+ */
16033
16746
  export type RedlineCollaboration$ConversationActivatedEvent = Event<
16034
16747
  RedlineCollaboration$ConversationActivatedEventParameters,
16035
16748
  RedlineCollaboration
16036
16749
  >;
16037
16750
 
16751
+ /**
16752
+ * Parameters of the RedlineCollaboration#conversationActivating event.
16753
+ */
16038
16754
  export interface RedlineCollaboration$ConversationActivatingEventParameters {
16039
16755
  conversation?: RedlineConversation;
16040
16756
  }
16041
16757
 
16758
+ /**
16759
+ * Event object of the RedlineCollaboration#conversationActivating event.
16760
+ */
16042
16761
  export type RedlineCollaboration$ConversationActivatingEvent = Event<
16043
16762
  RedlineCollaboration$ConversationActivatingEventParameters,
16044
16763
  RedlineCollaboration
16045
16764
  >;
16046
16765
 
16766
+ /**
16767
+ * Parameters of the RedlineCollaboration#elementClicked event.
16768
+ */
16047
16769
  export interface RedlineCollaboration$ElementClickedEventParameters {
16048
16770
  elementId?: string;
16049
16771
  }
16050
16772
 
16773
+ /**
16774
+ * Event object of the RedlineCollaboration#elementClicked event.
16775
+ */
16051
16776
  export type RedlineCollaboration$ElementClickedEvent = Event<
16052
16777
  RedlineCollaboration$ElementClickedEventParameters,
16053
16778
  RedlineCollaboration
16054
16779
  >;
16055
16780
 
16781
+ /**
16782
+ * Parameters of the RedlineCollaboration#elementCreated event.
16783
+ */
16056
16784
  export interface RedlineCollaboration$ElementCreatedEventParameters {
16057
16785
  element?: object;
16058
16786
  }
16059
16787
 
16788
+ /**
16789
+ * Event object of the RedlineCollaboration#elementCreated event.
16790
+ */
16060
16791
  export type RedlineCollaboration$ElementCreatedEvent = Event<
16061
16792
  RedlineCollaboration$ElementCreatedEventParameters,
16062
16793
  RedlineCollaboration
16063
16794
  >;
16064
16795
 
16796
+ /**
16797
+ * Parameters of the RedlineCollaboration#elementHovered event.
16798
+ */
16065
16799
  export interface RedlineCollaboration$ElementHoveredEventParameters {
16066
16800
  elementId?: string;
16067
16801
  }
16068
16802
 
16803
+ /**
16804
+ * Event object of the RedlineCollaboration#elementHovered event.
16805
+ */
16069
16806
  export type RedlineCollaboration$ElementHoveredEvent = Event<
16070
16807
  RedlineCollaboration$ElementHoveredEventParameters,
16071
16808
  RedlineCollaboration
@@ -16344,7 +17081,9 @@ declare module "sap/ui/vk/RedlineConversation" {
16344
17081
  oViewInfo?: any
16345
17082
  ): this;
16346
17083
  }
16347
-
17084
+ /**
17085
+ * Describes the settings that can be provided to the RedlineConversation constructor.
17086
+ */
16348
17087
  export interface $RedlineConversationSettings extends $ElementSettings {
16349
17088
  conversationName?: string | PropertyBindingInfo;
16350
17089
 
@@ -16522,15 +17261,23 @@ declare module "sap/ui/vk/RedlineDesign" {
16522
17261
  */
16523
17262
  stopAdding(): this;
16524
17263
  }
16525
-
17264
+ /**
17265
+ * Describes the settings that can be provided to the RedlineDesign constructor.
17266
+ */
16526
17267
  export interface $RedlineDesignSettings extends $RedlineSurfaceSettings {
16527
17268
  elementCreated?: (oEvent: RedlineDesign$ElementCreatedEvent) => void;
16528
17269
  }
16529
17270
 
17271
+ /**
17272
+ * Parameters of the RedlineDesign#elementCreated event.
17273
+ */
16530
17274
  export interface RedlineDesign$ElementCreatedEventParameters {
16531
17275
  element?: object;
16532
17276
  }
16533
17277
 
17278
+ /**
17279
+ * Event object of the RedlineDesign#elementCreated event.
17280
+ */
16534
17281
  export type RedlineDesign$ElementCreatedEvent = Event<
16535
17282
  RedlineDesign$ElementCreatedEventParameters,
16536
17283
  RedlineDesign
@@ -16998,7 +17745,9 @@ declare module "sap/ui/vk/RedlineElement" {
16998
17745
  bSuppress?: boolean
16999
17746
  ): this;
17000
17747
  }
17001
-
17748
+ /**
17749
+ * Describes the settings that can be provided to the RedlineElement constructor.
17750
+ */
17002
17751
  export interface $RedlineElementSettings extends $ElementSettings {
17003
17752
  originX?: float | PropertyBindingInfo | `{${string}}`;
17004
17753
 
@@ -17155,7 +17904,9 @@ declare module "sap/ui/vk/RedlineElementComment" {
17155
17904
  sText?: string
17156
17905
  ): this;
17157
17906
  }
17158
-
17907
+ /**
17908
+ * Describes the settings that can be provided to the RedlineElementComment constructor.
17909
+ */
17159
17910
  export interface $RedlineElementCommentSettings extends $ElementSettings {
17160
17911
  text?: string | PropertyBindingInfo;
17161
17912
 
@@ -17371,7 +18122,9 @@ declare module "sap/ui/vk/RedlineElementEllipse" {
17371
18122
  fRadiusY?: float
17372
18123
  ): this;
17373
18124
  }
17374
-
18125
+ /**
18126
+ * Describes the settings that can be provided to the RedlineElementEllipse constructor.
18127
+ */
17375
18128
  export interface $RedlineElementEllipseSettings
17376
18129
  extends $RedlineElementSettings {
17377
18130
  radiusX?: float | PropertyBindingInfo | `{${string}}`;
@@ -17536,7 +18289,9 @@ declare module "sap/ui/vk/RedlineElementFreehand" {
17536
18289
  sPath?: float[]
17537
18290
  ): this;
17538
18291
  }
17539
-
18292
+ /**
18293
+ * Describes the settings that can be provided to the RedlineElementFreehand constructor.
18294
+ */
17540
18295
  export interface $RedlineElementFreehandSettings
17541
18296
  extends $RedlineElementSettings {
17542
18297
  path?: float[] | PropertyBindingInfo | `{${string}}`;
@@ -17741,7 +18496,9 @@ declare module "sap/ui/vk/RedlineElementLine" {
17741
18496
  bEndArrowHead?: boolean
17742
18497
  ): this;
17743
18498
  }
17744
-
18499
+ /**
18500
+ * Describes the settings that can be provided to the RedlineElementLine constructor.
18501
+ */
17745
18502
  export interface $RedlineElementLineSettings extends $RedlineElementSettings {
17746
18503
  deltaX?: float | PropertyBindingInfo | `{${string}}`;
17747
18504
 
@@ -17956,7 +18713,9 @@ declare module "sap/ui/vk/RedlineElementRectangle" {
17956
18713
  fWidth?: float
17957
18714
  ): this;
17958
18715
  }
17959
-
18716
+ /**
18717
+ * Describes the settings that can be provided to the RedlineElementRectangle constructor.
18718
+ */
17960
18719
  export interface $RedlineElementRectangleSettings
17961
18720
  extends $RedlineElementSettings {
17962
18721
  width?: float | PropertyBindingInfo | `{${string}}`;
@@ -18242,7 +19001,9 @@ declare module "sap/ui/vk/RedlineElementText" {
18242
19001
  fWidth?: float
18243
19002
  ): this;
18244
19003
  }
18245
-
19004
+ /**
19005
+ * Describes the settings that can be provided to the RedlineElementText constructor.
19006
+ */
18246
19007
  export interface $RedlineElementTextSettings extends $RedlineElementSettings {
18247
19008
  text?: string | PropertyBindingInfo;
18248
19009
 
@@ -18677,7 +19438,9 @@ declare module "sap/ui/vk/RedlineSurface" {
18677
19438
  */
18678
19439
  updatePanningRatio(): this;
18679
19440
  }
18680
-
19441
+ /**
19442
+ * Describes the settings that can be provided to the RedlineSurface constructor.
19443
+ */
18681
19444
  export interface $RedlineSurfaceSettings extends $ControlSettings {
18682
19445
  virtualLeft?: float | PropertyBindingInfo | `{${string}}`;
18683
19446
 
@@ -18698,17 +19461,26 @@ declare module "sap/ui/vk/RedlineSurface" {
18698
19461
  zoom?: (oEvent: RedlineSurface$ZoomEvent) => void;
18699
19462
  }
18700
19463
 
19464
+ /**
19465
+ * Parameters of the RedlineSurface#pan event.
19466
+ */
18701
19467
  export interface RedlineSurface$PanEventParameters {
18702
19468
  deltaX?: float;
18703
19469
 
18704
19470
  deltaY?: float;
18705
19471
  }
18706
19472
 
19473
+ /**
19474
+ * Event object of the RedlineSurface#pan event.
19475
+ */
18707
19476
  export type RedlineSurface$PanEvent = Event<
18708
19477
  RedlineSurface$PanEventParameters,
18709
19478
  RedlineSurface
18710
19479
  >;
18711
19480
 
19481
+ /**
19482
+ * Parameters of the RedlineSurface#zoom event.
19483
+ */
18712
19484
  export interface RedlineSurface$ZoomEventParameters {
18713
19485
  originX?: float;
18714
19486
 
@@ -18717,6 +19489,9 @@ declare module "sap/ui/vk/RedlineSurface" {
18717
19489
  zoomFactor?: float;
18718
19490
  }
18719
19491
 
19492
+ /**
19493
+ * Event object of the RedlineSurface#zoom event.
19494
+ */
18720
19495
  export type RedlineSurface$ZoomEvent = Event<
18721
19496
  RedlineSurface$ZoomEventParameters,
18722
19497
  RedlineSurface
@@ -18828,7 +19603,9 @@ declare module "sap/ui/vk/SafeArea" {
18828
19603
  oSettingsControl: Control
18829
19604
  ): this;
18830
19605
  }
18831
-
19606
+ /**
19607
+ * Describes the settings that can be provided to the SafeArea constructor.
19608
+ */
18832
19609
  export interface $SafeAreaSettings extends $ControlSettings {
18833
19610
  /**
18834
19611
  * Application defined setting control which can be used to control SafeArea and aspect ratio settings
@@ -19209,7 +19986,9 @@ declare module "sap/ui/vk/Scene" {
19209
19986
  view: View
19210
19987
  ): void;
19211
19988
  }
19212
-
19989
+ /**
19990
+ * Describes the settings that can be provided to the Scene constructor.
19991
+ */
19213
19992
  export interface $SceneSettings extends $ManagedObjectSettings {
19214
19993
  /**
19215
19994
  * Enables or disables double-sided materials
@@ -19558,7 +20337,9 @@ declare module "sap/ui/vk/SceneTree" {
19558
20337
  oViewStateManager: ID | ViewStateManagerBase
19559
20338
  ): this;
19560
20339
  }
19561
-
20340
+ /**
20341
+ * Describes the settings that can be provided to the SceneTree constructor.
20342
+ */
19562
20343
  export interface $SceneTreeSettings extends $ControlSettings {
19563
20344
  /**
19564
20345
  * Text to be displayed in title bar of scene tree
@@ -19598,8 +20379,14 @@ declare module "sap/ui/vk/SceneTree" {
19598
20379
  contentChanged?: (oEvent: Event) => void;
19599
20380
  }
19600
20381
 
20382
+ /**
20383
+ * Parameters of the SceneTree#contentChanged event.
20384
+ */
19601
20385
  export interface SceneTree$ContentChangedEventParameters {}
19602
20386
 
20387
+ /**
20388
+ * Event object of the SceneTree#contentChanged event.
20389
+ */
19603
20390
  export type SceneTree$ContentChangedEvent = Event<
19604
20391
  SceneTree$ContentChangedEventParameters,
19605
20392
  SceneTree
@@ -19655,7 +20442,8 @@ declare module "sap/ui/vk/StepNavigation" {
19655
20442
  * Enables capabilities for navigating and activating procedures and steps contained in a single 3D scene.
19656
20443
  *
19657
20444
  * @since 1.32.0
19658
- * @deprecated (since 1.72.0)
20445
+ * @deprecated (since 1.72.0) - This class is used only with DVL namespace which will be removed in future.
20446
+ * Use {@link sap.ui.vk.ViewGallery} instead.
19659
20447
  */
19660
20448
  export default class StepNavigation extends Control {
19661
20449
  /**
@@ -20303,7 +21091,12 @@ declare module "sap/ui/vk/StepNavigation" {
20303
21091
  sWidth?: CSSSize
20304
21092
  ): this;
20305
21093
  }
20306
-
21094
+ /**
21095
+ * Describes the settings that can be provided to the StepNavigation constructor.
21096
+ *
21097
+ * @deprecated (since 1.72.0) - This class is used only with DVL namespace which will be removed in future.
21098
+ * Use {@link sap.ui.vk.ViewGallery} instead.
21099
+ */
20307
21100
  export interface $StepNavigationSettings extends $ControlSettings {
20308
21101
  /**
20309
21102
  * Managed settings and properties for Step Navigation events.
@@ -20368,17 +21161,26 @@ declare module "sap/ui/vk/StepNavigation" {
20368
21161
  stepChanged?: (oEvent: StepNavigation$StepChangedEvent) => void;
20369
21162
  }
20370
21163
 
21164
+ /**
21165
+ * Parameters of the StepNavigation#resize event.
21166
+ */
20371
21167
  export interface StepNavigation$ResizeEventParameters {
20372
21168
  oldSize?: object;
20373
21169
 
20374
21170
  size?: object;
20375
21171
  }
20376
21172
 
21173
+ /**
21174
+ * Event object of the StepNavigation#resize event.
21175
+ */
20377
21176
  export type StepNavigation$ResizeEvent = Event<
20378
21177
  StepNavigation$ResizeEventParameters,
20379
21178
  StepNavigation
20380
21179
  >;
20381
21180
 
21181
+ /**
21182
+ * Parameters of the StepNavigation#stepChanged event.
21183
+ */
20382
21184
  export interface StepNavigation$StepChangedEventParameters {
20383
21185
  /**
20384
21186
  * The ID of the rendering client that raised the event.
@@ -20397,6 +21199,9 @@ declare module "sap/ui/vk/StepNavigation" {
20397
21199
  stepId?: object;
20398
21200
  }
20399
21201
 
21202
+ /**
21203
+ * Event object of the StepNavigation#stepChanged event.
21204
+ */
20400
21205
  export type StepNavigation$StepChangedEvent = Event<
20401
21206
  StepNavigation$StepChangedEventParameters,
20402
21207
  StepNavigation
@@ -20732,15 +21537,29 @@ declare module "sap/ui/vk/svg/ContentManager" {
20732
21537
  contentResources: ContentResource[]
20733
21538
  ): this;
20734
21539
  }
20735
-
21540
+ /**
21541
+ * Describes the settings that can be provided to the ContentManager constructor.
21542
+ *
21543
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
21544
+ */
20736
21545
  export interface $ContentManagerSettings extends $ContentManagerSettings1 {
20737
21546
  errorReported?: (oEvent: ContentManager$ErrorReportedEvent) => void;
20738
21547
  }
20739
21548
 
21549
+ /**
21550
+ * Parameters of the ContentManager#errorReported event.
21551
+ *
21552
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
21553
+ */
20740
21554
  export interface ContentManager$ErrorReportedEventParameters {
20741
21555
  error?: any;
20742
21556
  }
20743
21557
 
21558
+ /**
21559
+ * Event object of the ContentManager#errorReported event.
21560
+ *
21561
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
21562
+ */
20744
21563
  export type ContentManager$ErrorReportedEvent = Event<
20745
21564
  ContentManager$ErrorReportedEventParameters,
20746
21565
  ContentManager
@@ -21159,7 +21978,9 @@ declare module "sap/ui/vk/svg/NodeHierarchy" {
21159
21978
  nodeRef: any
21160
21979
  ): this;
21161
21980
  }
21162
-
21981
+ /**
21982
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
21983
+ */
21163
21984
  export interface $NodeHierarchySettings extends $NodeHierarchySettings1 {}
21164
21985
  }
21165
21986
 
@@ -21223,7 +22044,9 @@ declare module "sap/ui/vk/svg/NodeProxy" {
21223
22044
  */
21224
22045
  static getMetadata(): ManagedObjectMetadata;
21225
22046
  }
21226
-
22047
+ /**
22048
+ * Describes the settings that can be provided to the NodeProxy constructor.
22049
+ */
21227
22050
  export interface $NodeProxySettings extends $NodeProxySettings1 {}
21228
22051
  }
21229
22052
 
@@ -21285,7 +22108,9 @@ declare module "sap/ui/vk/svg/OrthographicCamera" {
21285
22108
  */
21286
22109
  static getMetadata(): ManagedObjectMetadata;
21287
22110
  }
21288
-
22111
+ /**
22112
+ * Describes the settings that can be provided to the OrthographicCamera constructor.
22113
+ */
21289
22114
  export interface $OrthographicCameraSettings
21290
22115
  extends $OrthographicCameraSettings1 {}
21291
22116
  }
@@ -21417,7 +22242,9 @@ declare module "sap/ui/vk/svg/Scene" {
21417
22242
  view: View
21418
22243
  ): void;
21419
22244
  }
21420
-
22245
+ /**
22246
+ * Describes the settings that can be provided to the Scene constructor.
22247
+ */
21421
22248
  export interface $SceneSettings extends $SceneSettings1 {}
21422
22249
  }
21423
22250
 
@@ -21830,7 +22657,7 @@ declare module "sap/ui/vk/svg/Viewport" {
21830
22657
  /**
21831
22658
  * Attaches the scene to the Viewport for rendering.
21832
22659
  *
21833
- * @deprecated (since 1.80.0)
22660
+ * @deprecated (since 1.80.0) - Viewport now gets reference to the scene via {@link sap.ui.vk.ContentConnector}.
21834
22661
  *
21835
22662
  * @returns `this` to allow method chaining.
21836
22663
  */
@@ -21944,7 +22771,9 @@ declare module "sap/ui/vk/svg/Viewport" {
21944
22771
  margin: float
21945
22772
  ): Viewport1;
21946
22773
  }
21947
-
22774
+ /**
22775
+ * Describes the settings that can be provided to the Viewport constructor.
22776
+ */
21948
22777
  export interface $ViewportSettings extends $ViewportBaseSettings {
21949
22778
  cameraChanged?: (oEvent: Viewport$CameraChangedEvent) => void;
21950
22779
 
@@ -21953,6 +22782,9 @@ declare module "sap/ui/vk/svg/Viewport" {
21953
22782
  hotspotLeave?: (oEvent: Viewport$HotspotLeaveEvent) => void;
21954
22783
  }
21955
22784
 
22785
+ /**
22786
+ * Parameters of the Viewport#cameraChanged event.
22787
+ */
21956
22788
  export interface Viewport$CameraChangedEventParameters {
21957
22789
  /**
21958
22790
  * Returns a new camera offset.
@@ -21965,24 +22797,39 @@ declare module "sap/ui/vk/svg/Viewport" {
21965
22797
  zoom?: float;
21966
22798
  }
21967
22799
 
22800
+ /**
22801
+ * Event object of the Viewport#cameraChanged event.
22802
+ */
21968
22803
  export type Viewport$CameraChangedEvent = Event<
21969
22804
  Viewport$CameraChangedEventParameters,
21970
22805
  Viewport
21971
22806
  >;
21972
22807
 
22808
+ /**
22809
+ * Parameters of the Viewport#hotspotEnter event.
22810
+ */
21973
22811
  export interface Viewport$HotspotEnterEventParameters {
21974
22812
  nodeRef?: any;
21975
22813
  }
21976
22814
 
22815
+ /**
22816
+ * Event object of the Viewport#hotspotEnter event.
22817
+ */
21977
22818
  export type Viewport$HotspotEnterEvent = Event<
21978
22819
  Viewport$HotspotEnterEventParameters,
21979
22820
  Viewport
21980
22821
  >;
21981
22822
 
22823
+ /**
22824
+ * Parameters of the Viewport#hotspotLeave event.
22825
+ */
21982
22826
  export interface Viewport$HotspotLeaveEventParameters {
21983
22827
  nodeRef?: any;
21984
22828
  }
21985
22829
 
22830
+ /**
22831
+ * Event object of the Viewport#hotspotLeave event.
22832
+ */
21986
22833
  export type Viewport$HotspotLeaveEvent = Event<
21987
22834
  Viewport$HotspotLeaveEventParameters,
21988
22835
  Viewport
@@ -22223,7 +23070,7 @@ declare module "sap/ui/vk/svg/ViewStateManager" {
22223
23070
  /**
22224
23071
  * Sets the selection state of the nodes.
22225
23072
  *
22226
- * @deprecated (since 1.80.0)
23073
+ * @deprecated (since 1.80.0) - Use {@link sap.ui.vk.svg.ViewStateManager#setSelectionStates} instead.
22227
23074
  *
22228
23075
  * @returns `this` to allow method chaining.
22229
23076
  */
@@ -22317,7 +23164,9 @@ declare module "sap/ui/vk/svg/ViewStateManager" {
22317
23164
  force: boolean
22318
23165
  ): this;
22319
23166
  }
22320
-
23167
+ /**
23168
+ * Describes the settings that can be provided to the ViewStateManager constructor.
23169
+ */
22321
23170
  export interface $ViewStateManagerSettings
22322
23171
  extends $ViewStateManagerBaseSettings {}
22323
23172
  }
@@ -22628,7 +23477,12 @@ declare module "sap/ui/vk/Texture" {
22628
23477
  bUvVerticalTilingEnabled?: boolean
22629
23478
  ): this;
22630
23479
  }
22631
-
23480
+ /**
23481
+ * Describes the settings that can be provided to the Texture constructor.
23482
+ *
23483
+ * @experimental (since 1.58.0) - This class is experimental and might be modified or removed in future
23484
+ * versions.
23485
+ */
22632
23486
  export interface $TextureSettings extends $ManagedObjectSettings {
22633
23487
  /**
22634
23488
  * Rotation angle of uv coordinates
@@ -22984,7 +23838,11 @@ declare module "sap/ui/vk/threejs/ContentManager" {
22984
23838
  contentResources: ContentResource[]
22985
23839
  ): this;
22986
23840
  }
22987
-
23841
+ /**
23842
+ * Describes the settings that can be provided to the ContentManager constructor.
23843
+ *
23844
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
23845
+ */
22988
23846
  export interface $ContentManagerSettings extends $ContentManagerSettings1 {}
22989
23847
  }
22990
23848
 
@@ -23514,7 +24372,9 @@ declare module "sap/ui/vk/threejs/NodeHierarchy" {
23514
24372
  nodeRef: any
23515
24373
  ): this;
23516
24374
  }
23517
-
24375
+ /**
24376
+ * Describes the settings that can be provided to the NodeHierarchy constructor.
24377
+ */
23518
24378
  export interface $NodeHierarchySettings extends $NodeHierarchySettings1 {}
23519
24379
  }
23520
24380
 
@@ -23657,7 +24517,9 @@ declare module "sap/ui/vk/threejs/NodeProxy" {
23657
24517
  material: Material | THREE.Material
23658
24518
  ): this;
23659
24519
  }
23660
-
24520
+ /**
24521
+ * Describes the settings that can be provided to the NodeProxy constructor.
24522
+ */
23661
24523
  export interface $NodeProxySettings extends $NodeProxySettings1 {}
23662
24524
  }
23663
24525
 
@@ -23756,7 +24618,9 @@ declare module "sap/ui/vk/threejs/OrthographicCamera" {
23756
24618
  height: float
23757
24619
  ): void;
23758
24620
  }
23759
-
24621
+ /**
24622
+ * Describes the settings that can be provided to the OrthographicCamera constructor.
24623
+ */
23760
24624
  export interface $OrthographicCameraSettings
23761
24625
  extends $OrthographicCameraSettings1 {}
23762
24626
  }
@@ -23844,7 +24708,9 @@ declare module "sap/ui/vk/threejs/PerspectiveCamera" {
23844
24708
  height: float
23845
24709
  ): void;
23846
24710
  }
23847
-
24711
+ /**
24712
+ * Describes the settings that can be provided to the PerspectiveCamera constructor.
24713
+ */
23848
24714
  export interface $PerspectiveCameraSettings
23849
24715
  extends $PerspectiveCameraSettings1 {}
23850
24716
  }
@@ -24024,7 +24890,9 @@ declare module "sap/ui/vk/threejs/Scene" {
24024
24890
  markerNodeId: string
24025
24891
  ): void;
24026
24892
  }
24027
-
24893
+ /**
24894
+ * Describes the settings that can be provided to the Scene constructor.
24895
+ */
24028
24896
  export interface $SceneSettings extends $SceneSettings1 {}
24029
24897
  }
24030
24898
 
@@ -24087,7 +24955,12 @@ declare module "sap/ui/vk/threejs/Texture" {
24087
24955
  */
24088
24956
  static getMetadata(): ManagedObjectMetadata;
24089
24957
  }
24090
-
24958
+ /**
24959
+ * Describes the settings that can be provided to the Texture constructor.
24960
+ *
24961
+ * @experimental (since 1.60.0) - This class is experimental and might be modified or removed in future
24962
+ * versions.
24963
+ */
24091
24964
  export interface $TextureSettings extends $TextureSettings1 {}
24092
24965
  }
24093
24966
 
@@ -24579,7 +25452,7 @@ declare module "sap/ui/vk/threejs/Viewport" {
24579
25452
  /**
24580
25453
  * Attaches the scene to the Viewport for rendering.
24581
25454
  *
24582
- * @deprecated (since 1.50.0)
25455
+ * @deprecated (since 1.50.0) - Viewport now gets reference to the scene via {@link sap.ui.vk.ContentConnector}.
24583
25456
  *
24584
25457
  * @returns `this` to allow method chaining.
24585
25458
  */
@@ -24758,13 +25631,18 @@ declare module "sap/ui/vk/threejs/Viewport" {
24758
25631
  margin: float
24759
25632
  ): Viewport1;
24760
25633
  }
24761
-
25634
+ /**
25635
+ * Describes the settings that can be provided to the Viewport constructor.
25636
+ */
24762
25637
  export interface $ViewportSettings extends $ViewportBaseSettings {
24763
25638
  cameraChanged?: (oEvent: Viewport$CameraChangedEvent) => void;
24764
25639
 
24765
25640
  frameRenderingFinished?: (oEvent: Event) => void;
24766
25641
  }
24767
25642
 
25643
+ /**
25644
+ * Parameters of the Viewport#cameraChanged event.
25645
+ */
24768
25646
  export interface Viewport$CameraChangedEventParameters {
24769
25647
  /**
24770
25648
  * Returns a new camera position.
@@ -24782,13 +25660,22 @@ declare module "sap/ui/vk/threejs/Viewport" {
24782
25660
  zoom?: float;
24783
25661
  }
24784
25662
 
25663
+ /**
25664
+ * Event object of the Viewport#cameraChanged event.
25665
+ */
24785
25666
  export type Viewport$CameraChangedEvent = Event<
24786
25667
  Viewport$CameraChangedEventParameters,
24787
25668
  Viewport
24788
25669
  >;
24789
25670
 
25671
+ /**
25672
+ * Parameters of the Viewport#frameRenderingFinished event.
25673
+ */
24790
25674
  export interface Viewport$FrameRenderingFinishedEventParameters {}
24791
25675
 
25676
+ /**
25677
+ * Event object of the Viewport#frameRenderingFinished event.
25678
+ */
24792
25679
  export type Viewport$FrameRenderingFinishedEvent = Event<
24793
25680
  Viewport$FrameRenderingFinishedEventParameters,
24794
25681
  Viewport
@@ -25186,7 +26073,7 @@ declare module "sap/ui/vk/threejs/ViewStateManager" {
25186
26073
  /**
25187
26074
  * Sets the selection state of the nodes.
25188
26075
  *
25189
- * @deprecated (since 1.56.3)
26076
+ * @deprecated (since 1.56.3) - Use {@link sap.ui.vk.threejs.ViewStateManager#setSelectionStates} instead.
25190
26077
  *
25191
26078
  * @returns `this` to allow method chaining.
25192
26079
  */
@@ -25317,7 +26204,9 @@ declare module "sap/ui/vk/threejs/ViewStateManager" {
25317
26204
  DoNotFireSequenceChanged: boolean
25318
26205
  ): this;
25319
26206
  }
25320
-
26207
+ /**
26208
+ * Describes the settings that can be provided to the ViewStateManager constructor.
26209
+ */
25321
26210
  export interface $ViewStateManagerSettings
25322
26211
  extends $ViewStateManagerBaseSettings {}
25323
26212
  }
@@ -26034,7 +26923,9 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26034
26923
  sWidth?: CSSSize
26035
26924
  ): this;
26036
26925
  }
26037
-
26926
+ /**
26927
+ * Describes the settings that can be provided to the ToggleMenuButton constructor.
26928
+ */
26038
26929
  export interface $ToggleMenuButtonSettings extends $ControlSettings {
26039
26930
  /**
26040
26931
  * Defines the type of the button (for example, Default, Accept, Reject, Transparent). Values `Back`, `Up`
@@ -26124,13 +27015,22 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26124
27015
  itemSelected?: (oEvent: ToggleMenuButton$ItemSelectedEvent) => void;
26125
27016
  }
26126
27017
 
27018
+ /**
27019
+ * Parameters of the ToggleMenuButton#beforeMenuOpen event.
27020
+ */
26127
27021
  export interface ToggleMenuButton$BeforeMenuOpenEventParameters {}
26128
27022
 
27023
+ /**
27024
+ * Event object of the ToggleMenuButton#beforeMenuOpen event.
27025
+ */
26129
27026
  export type ToggleMenuButton$BeforeMenuOpenEvent = Event<
26130
27027
  ToggleMenuButton$BeforeMenuOpenEventParameters,
26131
27028
  ToggleMenuButton
26132
27029
  >;
26133
27030
 
27031
+ /**
27032
+ * Parameters of the ToggleMenuButton#itemSelected event.
27033
+ */
26134
27034
  export interface ToggleMenuButton$ItemSelectedEventParameters {
26135
27035
  /**
26136
27036
  * The `ToggleMenuItem` which was selected.
@@ -26138,11 +27038,17 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26138
27038
  item?: /* was: sap.ui.vk.ToggleMenuItem */ any;
26139
27039
  }
26140
27040
 
27041
+ /**
27042
+ * Event object of the ToggleMenuButton#itemSelected event.
27043
+ */
26141
27044
  export type ToggleMenuButton$ItemSelectedEvent = Event<
26142
27045
  ToggleMenuButton$ItemSelectedEventParameters,
26143
27046
  ToggleMenuButton
26144
27047
  >;
26145
27048
 
27049
+ /**
27050
+ * Parameters of the ToggleMenuButton#itemToggled event.
27051
+ */
26146
27052
  export interface ToggleMenuButton$ItemToggledEventParameters {
26147
27053
  /**
26148
27054
  * The `ToggleMenuItem` which was unpressed.
@@ -26155,6 +27061,9 @@ declare module "sap/ui/vk/ToggleMenuButton" {
26155
27061
  newItem?: /* was: sap.ui.vk.ToggleMenuItem */ any;
26156
27062
  }
26157
27063
 
27064
+ /**
27065
+ * Event object of the ToggleMenuButton#itemToggled event.
27066
+ */
26158
27067
  export type ToggleMenuButton$ItemToggledEvent = Event<
26159
27068
  ToggleMenuButton$ItemToggledEventParameters,
26160
27069
  ToggleMenuButton
@@ -26367,7 +27276,9 @@ declare module "sap/ui/vk/Toolbar" {
26367
27276
  oViewer: ID | Viewer
26368
27277
  ): this;
26369
27278
  }
26370
-
27279
+ /**
27280
+ * Describes the settings that can be provided to the Toolbar constructor.
27281
+ */
26371
27282
  export interface $ToolbarSettings extends $ControlSettings {
26372
27283
  /**
26373
27284
  * Used to set the title of the Toolbar
@@ -27043,7 +27954,9 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27043
27954
  bShowEditingUI?: boolean
27044
27955
  ): this;
27045
27956
  }
27046
-
27957
+ /**
27958
+ * Describes the settings that can be provided to the AnchorPointTool constructor.
27959
+ */
27047
27960
  export interface $AnchorPointToolSettings extends $ToolSettings {
27048
27961
  /**
27049
27962
  * If set to true values will change in round number increments instead of continual change
@@ -27099,6 +28012,9 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27099
28012
  rotated?: (oEvent: AnchorPointTool$RotatedEvent) => void;
27100
28013
  }
27101
28014
 
28015
+ /**
28016
+ * Parameters of the AnchorPointTool#moved event.
28017
+ */
27102
28018
  export interface AnchorPointTool$MovedEventParameters {
27103
28019
  x?: float;
27104
28020
 
@@ -27107,11 +28023,17 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27107
28023
  z?: float;
27108
28024
  }
27109
28025
 
28026
+ /**
28027
+ * Event object of the AnchorPointTool#moved event.
28028
+ */
27110
28029
  export type AnchorPointTool$MovedEvent = Event<
27111
28030
  AnchorPointTool$MovedEventParameters,
27112
28031
  AnchorPointTool
27113
28032
  >;
27114
28033
 
28034
+ /**
28035
+ * Parameters of the AnchorPointTool#moving event.
28036
+ */
27115
28037
  export interface AnchorPointTool$MovingEventParameters {
27116
28038
  x?: float;
27117
28039
 
@@ -27120,11 +28042,17 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27120
28042
  z?: float;
27121
28043
  }
27122
28044
 
28045
+ /**
28046
+ * Event object of the AnchorPointTool#moving event.
28047
+ */
27123
28048
  export type AnchorPointTool$MovingEvent = Event<
27124
28049
  AnchorPointTool$MovingEventParameters,
27125
28050
  AnchorPointTool
27126
28051
  >;
27127
28052
 
28053
+ /**
28054
+ * Parameters of the AnchorPointTool#rotated event.
28055
+ */
27128
28056
  export interface AnchorPointTool$RotatedEventParameters {
27129
28057
  x?: float;
27130
28058
 
@@ -27133,11 +28061,17 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27133
28061
  z?: float;
27134
28062
  }
27135
28063
 
28064
+ /**
28065
+ * Event object of the AnchorPointTool#rotated event.
28066
+ */
27136
28067
  export type AnchorPointTool$RotatedEvent = Event<
27137
28068
  AnchorPointTool$RotatedEventParameters,
27138
28069
  AnchorPointTool
27139
28070
  >;
27140
28071
 
28072
+ /**
28073
+ * Parameters of the AnchorPointTool#rotating event.
28074
+ */
27141
28075
  export interface AnchorPointTool$RotatingEventParameters {
27142
28076
  x?: float;
27143
28077
 
@@ -27146,6 +28080,9 @@ declare module "sap/ui/vk/tools/AnchorPointTool" {
27146
28080
  z?: float;
27147
28081
  }
27148
28082
 
28083
+ /**
28084
+ * Event object of the AnchorPointTool#rotating event.
28085
+ */
27149
28086
  export type AnchorPointTool$RotatingEvent = Event<
27150
28087
  AnchorPointTool$RotatingEventParameters,
27151
28088
  AnchorPointTool
@@ -27604,7 +28541,11 @@ declare module "sap/ui/vk/tools/AxisAngleRotationTool" {
27604
28541
  bShowEditingUI?: boolean
27605
28542
  ): this;
27606
28543
  }
27607
-
28544
+ /**
28545
+ * Describes the settings that can be provided to the AxisAngleRotationTool constructor.
28546
+ *
28547
+ * @experimental
28548
+ */
27608
28549
  export interface $AxisAngleRotationToolSettings extends $ToolSettings {
27609
28550
  /**
27610
28551
  * If set to `true` values will change in round number increments instead of continual change
@@ -27661,19 +28602,31 @@ declare module "sap/ui/vk/tools/AxisAngleRotationTool" {
27661
28602
  rotated?: (oEvent: AxisAngleRotationTool$RotatedEvent) => void;
27662
28603
  }
27663
28604
 
28605
+ /**
28606
+ * Parameters of the AxisAngleRotationTool#rotated event.
28607
+ */
27664
28608
  export interface AxisAngleRotationTool$RotatedEventParameters {
27665
28609
  nodesProperties?: object[];
27666
28610
  }
27667
28611
 
28612
+ /**
28613
+ * Event object of the AxisAngleRotationTool#rotated event.
28614
+ */
27668
28615
  export type AxisAngleRotationTool$RotatedEvent = Event<
27669
28616
  AxisAngleRotationTool$RotatedEventParameters,
27670
28617
  AxisAngleRotationTool
27671
28618
  >;
27672
28619
 
28620
+ /**
28621
+ * Parameters of the AxisAngleRotationTool#rotating event.
28622
+ */
27673
28623
  export interface AxisAngleRotationTool$RotatingEventParameters {
27674
28624
  nodesProperties?: object[];
27675
28625
  }
27676
28626
 
28627
+ /**
28628
+ * Event object of the AxisAngleRotationTool#rotating event.
28629
+ */
27677
28630
  export type AxisAngleRotationTool$RotatingEvent = Event<
27678
28631
  AxisAngleRotationTool$RotatingEventParameters,
27679
28632
  AxisAngleRotationTool
@@ -27931,7 +28884,9 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
27931
28884
  bUniformMode?: boolean
27932
28885
  ): this;
27933
28886
  }
27934
-
28887
+ /**
28888
+ * Describes the settings that can be provided to the CreateEllipseTool constructor.
28889
+ */
27935
28890
  export interface $CreateEllipseToolSettings extends $ToolSettings {
27936
28891
  /**
27937
28892
  * Parent node for new elements.
@@ -27949,6 +28904,9 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
27949
28904
  completed?: (oEvent: CreateEllipseTool$CompletedEvent) => void;
27950
28905
  }
27951
28906
 
28907
+ /**
28908
+ * Parameters of the CreateEllipseTool#completed event.
28909
+ */
27952
28910
  export interface CreateEllipseTool$CompletedEventParameters {
27953
28911
  /**
27954
28912
  * Created node.
@@ -27965,6 +28923,9 @@ declare module "sap/ui/vk/tools/CreateEllipseTool" {
27965
28923
  request?: any;
27966
28924
  }
27967
28925
 
28926
+ /**
28927
+ * Event object of the CreateEllipseTool#completed event.
28928
+ */
27968
28929
  export type CreateEllipseTool$CompletedEvent = Event<
27969
28930
  CreateEllipseTool$CompletedEventParameters,
27970
28931
  CreateEllipseTool
@@ -28193,7 +29154,9 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
28193
29154
  oParentNode?: any
28194
29155
  ): this;
28195
29156
  }
28196
-
29157
+ /**
29158
+ * Describes the settings that can be provided to the CreatePathTool constructor.
29159
+ */
28197
29160
  export interface $CreatePathToolSettings extends $ToolSettings {
28198
29161
  /**
28199
29162
  * Parent node for new elements.
@@ -28211,6 +29174,9 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
28211
29174
  completed?: (oEvent: CreatePathTool$CompletedEvent) => void;
28212
29175
  }
28213
29176
 
29177
+ /**
29178
+ * Parameters of the CreatePathTool#completed event.
29179
+ */
28214
29180
  export interface CreatePathTool$CompletedEventParameters {
28215
29181
  /**
28216
29182
  * Created node.
@@ -28232,6 +29198,9 @@ declare module "sap/ui/vk/tools/CreatePathTool" {
28232
29198
  closed?: boolean;
28233
29199
  }
28234
29200
 
29201
+ /**
29202
+ * Event object of the CreatePathTool#completed event.
29203
+ */
28235
29204
  export type CreatePathTool$CompletedEvent = Event<
28236
29205
  CreatePathTool$CompletedEventParameters,
28237
29206
  CreatePathTool
@@ -28462,7 +29431,9 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
28462
29431
  bUniformMode?: boolean
28463
29432
  ): this;
28464
29433
  }
28465
-
29434
+ /**
29435
+ * Describes the settings that can be provided to the CreateRectangleTool constructor.
29436
+ */
28466
29437
  export interface $CreateRectangleToolSettings extends $ToolSettings {
28467
29438
  /**
28468
29439
  * Parent node for the rectangle that will be created.
@@ -28480,6 +29451,9 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
28480
29451
  completed?: (oEvent: CreateRectangleTool$CompletedEvent) => void;
28481
29452
  }
28482
29453
 
29454
+ /**
29455
+ * Parameters of the CreateRectangleTool#completed event.
29456
+ */
28483
29457
  export interface CreateRectangleTool$CompletedEventParameters {
28484
29458
  /**
28485
29459
  * Created node.
@@ -28496,6 +29470,9 @@ declare module "sap/ui/vk/tools/CreateRectangleTool" {
28496
29470
  request?: any;
28497
29471
  }
28498
29472
 
29473
+ /**
29474
+ * Event object of the CreateRectangleTool#completed event.
29475
+ */
28499
29476
  export type CreateRectangleTool$CompletedEvent = Event<
28500
29477
  CreateRectangleTool$CompletedEventParameters,
28501
29478
  CreateRectangleTool
@@ -28753,7 +29730,9 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
28753
29730
  oParentNode?: any
28754
29731
  ): this;
28755
29732
  }
28756
-
29733
+ /**
29734
+ * Describes the settings that can be provided to the CreateTextTool constructor.
29735
+ */
28757
29736
  export interface $CreateTextToolSettings extends $ToolSettings {
28758
29737
  /**
28759
29738
  * Parent node for new elements.
@@ -28776,6 +29755,9 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
28776
29755
  completed?: (oEvent: CreateTextTool$CompletedEvent) => void;
28777
29756
  }
28778
29757
 
29758
+ /**
29759
+ * Parameters of the CreateTextTool#completed event.
29760
+ */
28779
29761
  export interface CreateTextTool$CompletedEventParameters {
28780
29762
  /**
28781
29763
  * Created node.
@@ -28792,6 +29774,9 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
28792
29774
  request?: any;
28793
29775
  }
28794
29776
 
29777
+ /**
29778
+ * Event object of the CreateTextTool#completed event.
29779
+ */
28795
29780
  export type CreateTextTool$CompletedEvent = Event<
28796
29781
  CreateTextTool$CompletedEventParameters,
28797
29782
  CreateTextTool
@@ -28942,7 +29927,9 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
28942
29927
  bShowEditingUI?: boolean
28943
29928
  ): this;
28944
29929
  }
28945
-
29930
+ /**
29931
+ * Describes the settings that can be provided to the CrossSectionTool constructor.
29932
+ */
28946
29933
  export interface $CrossSectionToolSettings extends $ToolSettings {
28947
29934
  /**
28948
29935
  * Display text box with current value, which can also be used to directly modify the value
@@ -29175,7 +30162,9 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
29175
30162
  oParentNode?: any
29176
30163
  ): this;
29177
30164
  }
29178
-
30165
+ /**
30166
+ * Describes the settings that can be provided to the DuplicateSvgElementTool constructor.
30167
+ */
29179
30168
  export interface $DuplicateSvgElementToolSettings extends $ToolSettings {
29180
30169
  /**
29181
30170
  * Parent node for new elements.
@@ -29193,6 +30182,9 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
29193
30182
  nodesCreated?: (oEvent: DuplicateSvgElementTool$NodesCreatedEvent) => void;
29194
30183
  }
29195
30184
 
30185
+ /**
30186
+ * Parameters of the DuplicateSvgElementTool#nodesCreated event.
30187
+ */
29196
30188
  export interface DuplicateSvgElementTool$NodesCreatedEventParameters {
29197
30189
  /**
29198
30190
  * Offset in x direction
@@ -29215,6 +30207,9 @@ declare module "sap/ui/vk/tools/DuplicateSvgElementTool" {
29215
30207
  request?: object;
29216
30208
  }
29217
30209
 
30210
+ /**
30211
+ * Event object of the DuplicateSvgElementTool#nodesCreated event.
30212
+ */
29218
30213
  export type DuplicateSvgElementTool$NodesCreatedEvent = Event<
29219
30214
  DuplicateSvgElementTool$NodesCreatedEventParameters,
29220
30215
  DuplicateSvgElementTool
@@ -29449,7 +30444,11 @@ declare module "sap/ui/vk/tools/ExplodeItemGroup" {
29449
30444
  sName: string
29450
30445
  ): this;
29451
30446
  }
29452
-
30447
+ /**
30448
+ * Describes the settings that can be provided to the ExplodeItemGroup constructor.
30449
+ *
30450
+ * @experimental
30451
+ */
29453
30452
  export interface $ExplodeItemGroupSettings extends $ElementSettings {
29454
30453
  name?: string | PropertyBindingInfo;
29455
30454
 
@@ -30231,7 +31230,9 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30231
31230
  sType?: ExplodeType | keyof typeof ExplodeType
30232
31231
  ): this;
30233
31232
  }
30234
-
31233
+ /**
31234
+ * Describes the settings that can be provided to the ExplodeTool constructor.
31235
+ */
30235
31236
  export interface $ExplodeToolSettings extends $ToolSettings {
30236
31237
  type?:
30237
31238
  | (ExplodeType | keyof typeof ExplodeType)
@@ -30279,50 +31280,77 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30279
31280
  ) => void;
30280
31281
  }
30281
31282
 
31283
+ /**
31284
+ * Parameters of the ExplodeTool#axisSelected event.
31285
+ */
30282
31286
  export interface ExplodeTool$AxisSelectedEventParameters {
30283
31287
  axis?: ExplodeAxis | keyof typeof ExplodeAxis;
30284
31288
 
30285
31289
  direction?: ExplodeDirection | keyof typeof ExplodeDirection;
30286
31290
  }
30287
31291
 
31292
+ /**
31293
+ * Event object of the ExplodeTool#axisSelected event.
31294
+ */
30288
31295
  export type ExplodeTool$AxisSelectedEvent = Event<
30289
31296
  ExplodeTool$AxisSelectedEventParameters,
30290
31297
  ExplodeTool
30291
31298
  >;
30292
31299
 
31300
+ /**
31301
+ * Parameters of the ExplodeTool#itemPositionAdjusted event.
31302
+ */
30293
31303
  export interface ExplodeTool$ItemPositionAdjustedEventParameters {
30294
31304
  item?: ExplodeItemGroup;
30295
31305
 
30296
31306
  magnitudeAdjustmentMultiplier?: float;
30297
31307
  }
30298
31308
 
31309
+ /**
31310
+ * Event object of the ExplodeTool#itemPositionAdjusted event.
31311
+ */
30299
31312
  export type ExplodeTool$ItemPositionAdjustedEvent = Event<
30300
31313
  ExplodeTool$ItemPositionAdjustedEventParameters,
30301
31314
  ExplodeTool
30302
31315
  >;
30303
31316
 
31317
+ /**
31318
+ * Parameters of the ExplodeTool#itemPositionAdjusting event.
31319
+ */
30304
31320
  export interface ExplodeTool$ItemPositionAdjustingEventParameters {
30305
31321
  item?: ExplodeItemGroup;
30306
31322
 
30307
31323
  magnitudeAdjustmentMultiplier?: float;
30308
31324
  }
30309
31325
 
31326
+ /**
31327
+ * Event object of the ExplodeTool#itemPositionAdjusting event.
31328
+ */
30310
31329
  export type ExplodeTool$ItemPositionAdjustingEvent = Event<
30311
31330
  ExplodeTool$ItemPositionAdjustingEventParameters,
30312
31331
  ExplodeTool
30313
31332
  >;
30314
31333
 
31334
+ /**
31335
+ * Parameters of the ExplodeTool#itemSequenceChangePressed event.
31336
+ */
30315
31337
  export interface ExplodeTool$ItemSequenceChangePressedEventParameters {
30316
31338
  item?: ExplodeItemGroup;
30317
31339
 
30318
31340
  moveUp?: boolean;
30319
31341
  }
30320
31342
 
31343
+ /**
31344
+ * Event object of the ExplodeTool#itemSequenceChangePressed event.
31345
+ */
30321
31346
  export type ExplodeTool$ItemSequenceChangePressedEvent = Event<
30322
31347
  ExplodeTool$ItemSequenceChangePressedEventParameters,
30323
31348
  ExplodeTool
30324
31349
  >;
30325
31350
 
31351
+ /**
31352
+ * Parameters of the ExplodeTool#magnitudeChanged event.
31353
+ */
30326
31354
  export interface ExplodeTool$MagnitudeChangedEventParameters {
30327
31355
  type?: ExplodeType | keyof typeof ExplodeType;
30328
31356
 
@@ -30333,11 +31361,17 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30333
31361
  magnitude?: float;
30334
31362
  }
30335
31363
 
31364
+ /**
31365
+ * Event object of the ExplodeTool#magnitudeChanged event.
31366
+ */
30336
31367
  export type ExplodeTool$MagnitudeChangedEvent = Event<
30337
31368
  ExplodeTool$MagnitudeChangedEventParameters,
30338
31369
  ExplodeTool
30339
31370
  >;
30340
31371
 
31372
+ /**
31373
+ * Parameters of the ExplodeTool#magnitudeChanging event.
31374
+ */
30341
31375
  export interface ExplodeTool$MagnitudeChangingEventParameters {
30342
31376
  type?: ExplodeType | keyof typeof ExplodeType;
30343
31377
 
@@ -30348,6 +31382,9 @@ declare module "sap/ui/vk/tools/ExplodeTool" {
30348
31382
  magnitude?: float;
30349
31383
  }
30350
31384
 
31385
+ /**
31386
+ * Event object of the ExplodeTool#magnitudeChanging event.
31387
+ */
30351
31388
  export type ExplodeTool$MagnitudeChangingEvent = Event<
30352
31389
  ExplodeTool$MagnitudeChangingEventParameters,
30353
31390
  ExplodeTool
@@ -30444,7 +31481,9 @@ declare module "sap/ui/vk/tools/Gizmo" {
30444
31481
  */
30445
31482
  static getMetadata(): ElementMetadata;
30446
31483
  }
30447
-
31484
+ /**
31485
+ * Describes the settings that can be provided to the Gizmo constructor.
31486
+ */
30448
31487
  export interface $GizmoSettings extends $ControlSettings {}
30449
31488
  }
30450
31489
 
@@ -30752,7 +31791,9 @@ declare module "sap/ui/vk/tools/HitTestTool" {
30752
31791
  sIdMode?: HitTestIdMode | keyof typeof HitTestIdMode
30753
31792
  ): this;
30754
31793
  }
30755
-
31794
+ /**
31795
+ * Describes the settings that can be provided to the HitTestTool constructor.
31796
+ */
30756
31797
  export interface $HitTestToolSettings extends $ToolSettings {
30757
31798
  /**
30758
31799
  * Indicates what schema the tool should use to extract IDs from hit objects
@@ -30768,6 +31809,9 @@ declare module "sap/ui/vk/tools/HitTestTool" {
30768
31809
  hit?: (oEvent: HitTestTool$HitEvent) => void;
30769
31810
  }
30770
31811
 
31812
+ /**
31813
+ * Parameters of the HitTestTool#hit event.
31814
+ */
30771
31815
  export interface HitTestTool$HitEventParameters {
30772
31816
  id?: any;
30773
31817
 
@@ -30778,6 +31822,9 @@ declare module "sap/ui/vk/tools/HitTestTool" {
30778
31822
  clickType?: HitTestClickType | keyof typeof HitTestClickType;
30779
31823
  }
30780
31824
 
31825
+ /**
31826
+ * Event object of the HitTestTool#hit event.
31827
+ */
30781
31828
  export type HitTestTool$HitEvent = Event<
30782
31829
  HitTestTool$HitEventParameters,
30783
31830
  HitTestTool
@@ -31475,7 +32522,9 @@ declare module "sap/ui/vk/tools/MoveTool" {
31475
32522
  bShowEditingUI?: boolean
31476
32523
  ): this;
31477
32524
  }
31478
-
32525
+ /**
32526
+ * Describes the settings that can be provided to the MoveTool constructor.
32527
+ */
31479
32528
  export interface $MoveToolSettings extends $ToolSettings {
31480
32529
  /**
31481
32530
  * Select coordinate system in which this tool operates. Can be Local, World, Parent, Screen or Custom
@@ -31558,15 +32607,24 @@ declare module "sap/ui/vk/tools/MoveTool" {
31558
32607
  placementModeChanged?: (oEvent: MoveTool$PlacementModeChangedEvent) => void;
31559
32608
  }
31560
32609
 
32610
+ /**
32611
+ * Parameters of the MoveTool#coordinateSystemChanged event.
32612
+ */
31561
32613
  export interface MoveTool$CoordinateSystemChangedEventParameters {
31562
32614
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
31563
32615
  }
31564
32616
 
32617
+ /**
32618
+ * Event object of the MoveTool#coordinateSystemChanged event.
32619
+ */
31565
32620
  export type MoveTool$CoordinateSystemChangedEvent = Event<
31566
32621
  MoveTool$CoordinateSystemChangedEventParameters,
31567
32622
  MoveTool
31568
32623
  >;
31569
32624
 
32625
+ /**
32626
+ * Parameters of the MoveTool#moved event.
32627
+ */
31570
32628
  export interface MoveTool$MovedEventParameters {
31571
32629
  x?: float;
31572
32630
 
@@ -31577,11 +32635,17 @@ declare module "sap/ui/vk/tools/MoveTool" {
31577
32635
  nodesProperties?: any[];
31578
32636
  }
31579
32637
 
32638
+ /**
32639
+ * Event object of the MoveTool#moved event.
32640
+ */
31580
32641
  export type MoveTool$MovedEvent = Event<
31581
32642
  MoveTool$MovedEventParameters,
31582
32643
  MoveTool
31583
32644
  >;
31584
32645
 
32646
+ /**
32647
+ * Parameters of the MoveTool#moving event.
32648
+ */
31585
32649
  export interface MoveTool$MovingEventParameters {
31586
32650
  x?: float;
31587
32651
 
@@ -31592,15 +32656,24 @@ declare module "sap/ui/vk/tools/MoveTool" {
31592
32656
  nodesProperties?: any[];
31593
32657
  }
31594
32658
 
32659
+ /**
32660
+ * Event object of the MoveTool#moving event.
32661
+ */
31595
32662
  export type MoveTool$MovingEvent = Event<
31596
32663
  MoveTool$MovingEventParameters,
31597
32664
  MoveTool
31598
32665
  >;
31599
32666
 
32667
+ /**
32668
+ * Parameters of the MoveTool#placementModeChanged event.
32669
+ */
31600
32670
  export interface MoveTool$PlacementModeChangedEventParameters {
31601
32671
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
31602
32672
  }
31603
32673
 
32674
+ /**
32675
+ * Event object of the MoveTool#placementModeChanged event.
32676
+ */
31604
32677
  export type MoveTool$PlacementModeChangedEvent = Event<
31605
32678
  MoveTool$PlacementModeChangedEventParameters,
31606
32679
  MoveTool
@@ -31956,7 +33029,12 @@ declare module "sap/ui/vk/tools/PointCloudSelectionTool" {
31956
33029
  sSelectionColor?: float[]
31957
33030
  ): this;
31958
33031
  }
31959
-
33032
+ /**
33033
+ * Describes the settings that can be provided to the PointCloudSelectionTool constructor.
33034
+ *
33035
+ * @experimental (since 1.118.0) - This class is experimental and might be modified or removed in future
33036
+ * versions.
33037
+ */
31960
33038
  export interface $PointCloudSelectionToolSettings extends $ToolSettings {
31961
33039
  selectionColor?: float[] | PropertyBindingInfo | `{${string}}`;
31962
33040
 
@@ -31967,22 +33045,40 @@ declare module "sap/ui/vk/tools/PointCloudSelectionTool" {
31967
33045
  currentGroupChanged?: (oEvent: Event) => void;
31968
33046
  }
31969
33047
 
33048
+ /**
33049
+ * Parameters of the PointCloudSelectionTool#currentGroupChanged event.
33050
+ */
31970
33051
  export interface PointCloudSelectionTool$CurrentGroupChangedEventParameters {}
31971
33052
 
33053
+ /**
33054
+ * Event object of the PointCloudSelectionTool#currentGroupChanged event.
33055
+ */
31972
33056
  export type PointCloudSelectionTool$CurrentGroupChangedEvent = Event<
31973
33057
  PointCloudSelectionTool$CurrentGroupChangedEventParameters,
31974
33058
  PointCloudSelectionTool
31975
33059
  >;
31976
33060
 
33061
+ /**
33062
+ * Parameters of the PointCloudSelectionTool#groupAdded event.
33063
+ */
31977
33064
  export interface PointCloudSelectionTool$GroupAddedEventParameters {}
31978
33065
 
33066
+ /**
33067
+ * Event object of the PointCloudSelectionTool#groupAdded event.
33068
+ */
31979
33069
  export type PointCloudSelectionTool$GroupAddedEvent = Event<
31980
33070
  PointCloudSelectionTool$GroupAddedEventParameters,
31981
33071
  PointCloudSelectionTool
31982
33072
  >;
31983
33073
 
33074
+ /**
33075
+ * Parameters of the PointCloudSelectionTool#groupRemoved event.
33076
+ */
31984
33077
  export interface PointCloudSelectionTool$GroupRemovedEventParameters {}
31985
33078
 
33079
+ /**
33080
+ * Event object of the PointCloudSelectionTool#groupRemoved event.
33081
+ */
31986
33082
  export type PointCloudSelectionTool$GroupRemovedEvent = Event<
31987
33083
  PointCloudSelectionTool$GroupRemovedEventParameters,
31988
33084
  PointCloudSelectionTool
@@ -32168,7 +33264,9 @@ declare module "sap/ui/vk/tools/RectSelectTool" {
32168
33264
  bSubtractMode?: boolean
32169
33265
  ): this;
32170
33266
  }
32171
-
33267
+ /**
33268
+ * Describes the settings that can be provided to the RectSelectTool constructor.
33269
+ */
32172
33270
  export interface $RectSelectToolSettings extends $ToolSettings {
32173
33271
  /**
32174
33272
  * If set to true then this tool will remove selected nodes from the selection set. Default is to always
@@ -32671,7 +33769,9 @@ declare module "sap/ui/vk/tools/RedlineTool" {
32671
33769
  */
32672
33770
  stopAdding(): this;
32673
33771
  }
32674
-
33772
+ /**
33773
+ * Describes the settings that can be provided to the RedlineTool constructor.
33774
+ */
32675
33775
  export interface $RedlineToolSettings extends $ToolSettings {
32676
33776
  /**
32677
33777
  * Determines if elements editing is enabled
@@ -32694,28 +33794,46 @@ declare module "sap/ui/vk/tools/RedlineTool" {
32694
33794
  elementHovered?: (oEvent: RedlineTool$ElementHoveredEvent) => void;
32695
33795
  }
32696
33796
 
33797
+ /**
33798
+ * Parameters of the RedlineTool#elementClicked event.
33799
+ */
32697
33800
  export interface RedlineTool$ElementClickedEventParameters {
32698
33801
  elementId?: string;
32699
33802
  }
32700
33803
 
33804
+ /**
33805
+ * Event object of the RedlineTool#elementClicked event.
33806
+ */
32701
33807
  export type RedlineTool$ElementClickedEvent = Event<
32702
33808
  RedlineTool$ElementClickedEventParameters,
32703
33809
  RedlineTool
32704
33810
  >;
32705
33811
 
33812
+ /**
33813
+ * Parameters of the RedlineTool#elementCreated event.
33814
+ */
32706
33815
  export interface RedlineTool$ElementCreatedEventParameters {
32707
33816
  element?: object;
32708
33817
  }
32709
33818
 
33819
+ /**
33820
+ * Event object of the RedlineTool#elementCreated event.
33821
+ */
32710
33822
  export type RedlineTool$ElementCreatedEvent = Event<
32711
33823
  RedlineTool$ElementCreatedEventParameters,
32712
33824
  RedlineTool
32713
33825
  >;
32714
33826
 
33827
+ /**
33828
+ * Parameters of the RedlineTool#elementHovered event.
33829
+ */
32715
33830
  export interface RedlineTool$ElementHoveredEventParameters {
32716
33831
  elementId?: string;
32717
33832
  }
32718
33833
 
33834
+ /**
33835
+ * Event object of the RedlineTool#elementHovered event.
33836
+ */
32719
33837
  export type RedlineTool$ElementHoveredEvent = Event<
32720
33838
  RedlineTool$ElementHoveredEventParameters,
32721
33839
  RedlineTool
@@ -32913,7 +34031,9 @@ declare module "sap/ui/vk/tools/RotateOrbitTool" {
32913
34031
  dy: int
32914
34032
  ): void;
32915
34033
  }
32916
-
34034
+ /**
34035
+ * Describes the settings that can be provided to the RotateOrbitTool constructor.
34036
+ */
32917
34037
  export interface $RotateOrbitToolSettings extends $ToolSettings {
32918
34038
  /**
32919
34039
  * This event will be fired when rotation occurs.
@@ -32921,12 +34041,18 @@ declare module "sap/ui/vk/tools/RotateOrbitTool" {
32921
34041
  rotate?: (oEvent: RotateOrbitTool$RotateEvent) => void;
32922
34042
  }
32923
34043
 
34044
+ /**
34045
+ * Parameters of the RotateOrbitTool#rotate event.
34046
+ */
32924
34047
  export interface RotateOrbitTool$RotateEventParameters {
32925
34048
  dx?: int;
32926
34049
 
32927
34050
  dy?: int;
32928
34051
  }
32929
34052
 
34053
+ /**
34054
+ * Event object of the RotateOrbitTool#rotate event.
34055
+ */
32930
34056
  export type RotateOrbitTool$RotateEvent = Event<
32931
34057
  RotateOrbitTool$RotateEventParameters,
32932
34058
  RotateOrbitTool
@@ -33733,7 +34859,9 @@ declare module "sap/ui/vk/tools/RotateTool" {
33733
34859
  bShowEditingUI?: boolean
33734
34860
  ): this;
33735
34861
  }
33736
-
34862
+ /**
34863
+ * Describes the settings that can be provided to the RotateTool constructor.
34864
+ */
33737
34865
  export interface $RotateToolSettings extends $ToolSettings {
33738
34866
  /**
33739
34867
  * Select coordinate system in which this tool operates. Can be Local, World, Parent, Screen or Custom
@@ -33830,33 +34958,54 @@ declare module "sap/ui/vk/tools/RotateTool" {
33830
34958
  ) => void;
33831
34959
  }
33832
34960
 
34961
+ /**
34962
+ * Parameters of the RotateTool#axisChanged event.
34963
+ */
33833
34964
  export interface RotateTool$AxisChangedEventParameters {
33834
34965
  axis?: RotatableAxis | keyof typeof RotatableAxis;
33835
34966
  }
33836
34967
 
34968
+ /**
34969
+ * Event object of the RotateTool#axisChanged event.
34970
+ */
33837
34971
  export type RotateTool$AxisChangedEvent = Event<
33838
34972
  RotateTool$AxisChangedEventParameters,
33839
34973
  RotateTool
33840
34974
  >;
33841
34975
 
34976
+ /**
34977
+ * Parameters of the RotateTool#coordinateSystemChanged event.
34978
+ */
33842
34979
  export interface RotateTool$CoordinateSystemChangedEventParameters {
33843
34980
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
33844
34981
  }
33845
34982
 
34983
+ /**
34984
+ * Event object of the RotateTool#coordinateSystemChanged event.
34985
+ */
33846
34986
  export type RotateTool$CoordinateSystemChangedEvent = Event<
33847
34987
  RotateTool$CoordinateSystemChangedEventParameters,
33848
34988
  RotateTool
33849
34989
  >;
33850
34990
 
34991
+ /**
34992
+ * Parameters of the RotateTool#placementModeChanged event.
34993
+ */
33851
34994
  export interface RotateTool$PlacementModeChangedEventParameters {
33852
34995
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
33853
34996
  }
33854
34997
 
34998
+ /**
34999
+ * Event object of the RotateTool#placementModeChanged event.
35000
+ */
33855
35001
  export type RotateTool$PlacementModeChangedEvent = Event<
33856
35002
  RotateTool$PlacementModeChangedEventParameters,
33857
35003
  RotateTool
33858
35004
  >;
33859
35005
 
35006
+ /**
35007
+ * Parameters of the RotateTool#rotated event.
35008
+ */
33860
35009
  export interface RotateTool$RotatedEventParameters {
33861
35010
  x?: float;
33862
35011
 
@@ -33867,11 +35016,17 @@ declare module "sap/ui/vk/tools/RotateTool" {
33867
35016
  nodesProperties?: any[];
33868
35017
  }
33869
35018
 
35019
+ /**
35020
+ * Event object of the RotateTool#rotated event.
35021
+ */
33870
35022
  export type RotateTool$RotatedEvent = Event<
33871
35023
  RotateTool$RotatedEventParameters,
33872
35024
  RotateTool
33873
35025
  >;
33874
35026
 
35027
+ /**
35028
+ * Parameters of the RotateTool#rotating event.
35029
+ */
33875
35030
  export interface RotateTool$RotatingEventParameters {
33876
35031
  x?: float;
33877
35032
 
@@ -33882,6 +35037,9 @@ declare module "sap/ui/vk/tools/RotateTool" {
33882
35037
  nodesProperties?: any[];
33883
35038
  }
33884
35039
 
35040
+ /**
35041
+ * Event object of the RotateTool#rotating event.
35042
+ */
33885
35043
  export type RotateTool$RotatingEvent = Event<
33886
35044
  RotateTool$RotatingEventParameters,
33887
35045
  RotateTool
@@ -34056,7 +35214,9 @@ declare module "sap/ui/vk/tools/RotateTurntableTool" {
34056
35214
  dy: int
34057
35215
  ): void;
34058
35216
  }
34059
-
35217
+ /**
35218
+ * Describes the settings that can be provided to the RotateTurntableTool constructor.
35219
+ */
34060
35220
  export interface $RotateTurntableToolSettings extends $ToolSettings {
34061
35221
  /**
34062
35222
  * This event will be fired when rotation occurs.
@@ -34064,12 +35224,18 @@ declare module "sap/ui/vk/tools/RotateTurntableTool" {
34064
35224
  rotate?: (oEvent: RotateTurntableTool$RotateEvent) => void;
34065
35225
  }
34066
35226
 
35227
+ /**
35228
+ * Parameters of the RotateTurntableTool#rotate event.
35229
+ */
34067
35230
  export interface RotateTurntableTool$RotateEventParameters {
34068
35231
  dx?: int;
34069
35232
 
34070
35233
  dy?: int;
34071
35234
  }
34072
35235
 
35236
+ /**
35237
+ * Event object of the RotateTurntableTool#rotate event.
35238
+ */
34073
35239
  export type RotateTurntableTool$RotateEvent = Event<
34074
35240
  RotateTurntableTool$RotateEventParameters,
34075
35241
  RotateTurntableTool
@@ -34798,7 +35964,9 @@ declare module "sap/ui/vk/tools/ScaleTool" {
34798
35964
  bShowEditingUI?: boolean
34799
35965
  ): this;
34800
35966
  }
34801
-
35967
+ /**
35968
+ * Describes the settings that can be provided to the ScaleTool constructor.
35969
+ */
34802
35970
  export interface $ScaleToolSettings extends $ToolSettings {
34803
35971
  /**
34804
35972
  * Select coordinate system in which this tool operates. Can be Local, World, Parent, Screen or Custom
@@ -34889,24 +36057,39 @@ declare module "sap/ui/vk/tools/ScaleTool" {
34889
36057
  ) => void;
34890
36058
  }
34891
36059
 
36060
+ /**
36061
+ * Parameters of the ScaleTool#coordinateSystemChanged event.
36062
+ */
34892
36063
  export interface ScaleTool$CoordinateSystemChangedEventParameters {
34893
36064
  coordinateSystem?: CoordinateSystem | keyof typeof CoordinateSystem;
34894
36065
  }
34895
36066
 
36067
+ /**
36068
+ * Event object of the ScaleTool#coordinateSystemChanged event.
36069
+ */
34896
36070
  export type ScaleTool$CoordinateSystemChangedEvent = Event<
34897
36071
  ScaleTool$CoordinateSystemChangedEventParameters,
34898
36072
  ScaleTool
34899
36073
  >;
34900
36074
 
36075
+ /**
36076
+ * Parameters of the ScaleTool#placementModeChanged event.
36077
+ */
34901
36078
  export interface ScaleTool$PlacementModeChangedEventParameters {
34902
36079
  placementMode?: GizmoPlacementMode | keyof typeof GizmoPlacementMode;
34903
36080
  }
34904
36081
 
36082
+ /**
36083
+ * Event object of the ScaleTool#placementModeChanged event.
36084
+ */
34905
36085
  export type ScaleTool$PlacementModeChangedEvent = Event<
34906
36086
  ScaleTool$PlacementModeChangedEventParameters,
34907
36087
  ScaleTool
34908
36088
  >;
34909
36089
 
36090
+ /**
36091
+ * Parameters of the ScaleTool#scaled event.
36092
+ */
34910
36093
  export interface ScaleTool$ScaledEventParameters {
34911
36094
  x?: float;
34912
36095
 
@@ -34917,11 +36100,17 @@ declare module "sap/ui/vk/tools/ScaleTool" {
34917
36100
  nodesProperties?: any[];
34918
36101
  }
34919
36102
 
36103
+ /**
36104
+ * Event object of the ScaleTool#scaled event.
36105
+ */
34920
36106
  export type ScaleTool$ScaledEvent = Event<
34921
36107
  ScaleTool$ScaledEventParameters,
34922
36108
  ScaleTool
34923
36109
  >;
34924
36110
 
36111
+ /**
36112
+ * Parameters of the ScaleTool#scaling event.
36113
+ */
34925
36114
  export interface ScaleTool$ScalingEventParameters {
34926
36115
  x?: float;
34927
36116
 
@@ -34932,6 +36121,9 @@ declare module "sap/ui/vk/tools/ScaleTool" {
34932
36121
  nodesProperties?: any[];
34933
36122
  }
34934
36123
 
36124
+ /**
36125
+ * Event object of the ScaleTool#scaling event.
36126
+ */
34935
36127
  export type ScaleTool$ScalingEvent = Event<
34936
36128
  ScaleTool$ScalingEventParameters,
34937
36129
  ScaleTool
@@ -35094,7 +36286,9 @@ declare module "sap/ui/vk/tools/SceneOrientationTool" {
35094
36286
  milliseconds?: number
35095
36287
  ): this;
35096
36288
  }
35097
-
36289
+ /**
36290
+ * Describes the settings that can be provided to the SceneOrientationTool constructor.
36291
+ */
35098
36292
  export interface $SceneOrientationToolSettings extends $ToolSettings {
35099
36293
  enablePredefinedViews?: boolean | PropertyBindingInfo | `{${string}}`;
35100
36294
 
@@ -35409,7 +36603,9 @@ declare module "sap/ui/vk/tools/Tool" {
35409
36603
  sToolid: string
35410
36604
  ): this;
35411
36605
  }
35412
-
36606
+ /**
36607
+ * Describes the settings that can be provided to the Tool constructor.
36608
+ */
35413
36609
  export interface $ToolSettings extends $ElementSettings {
35414
36610
  targetViewportType?: any | PropertyBindingInfo | `{${string}}`;
35415
36611
 
@@ -35441,6 +36637,9 @@ declare module "sap/ui/vk/tools/Tool" {
35441
36637
  enabled?: (oEvent: Tool$EnabledEvent) => void;
35442
36638
  }
35443
36639
 
36640
+ /**
36641
+ * Parameters of the Tool#enabled event.
36642
+ */
35444
36643
  export interface Tool$EnabledEventParameters {
35445
36644
  /**
35446
36645
  * Returns the true or false to indicated that the tool is enabled or not. This event is fired by the tool
@@ -35452,6 +36651,9 @@ declare module "sap/ui/vk/tools/Tool" {
35452
36651
  reason?: string;
35453
36652
  }
35454
36653
 
36654
+ /**
36655
+ * Event object of the Tool#enabled event.
36656
+ */
35455
36657
  export type Tool$EnabledEvent = Event<Tool$EnabledEventParameters, Tool>;
35456
36658
  }
35457
36659
 
@@ -35748,7 +36950,9 @@ declare module "sap/ui/vk/tools/TooltipTool" {
35748
36950
  title?: string
35749
36951
  ): this;
35750
36952
  }
35751
-
36953
+ /**
36954
+ * Describes the settings that can be provided to the TooltipTool constructor.
36955
+ */
35752
36956
  export interface $TooltipToolSettings extends $ToolSettings {
35753
36957
  followCursor?: boolean | PropertyBindingInfo | `{${string}}`;
35754
36958
 
@@ -35764,6 +36968,9 @@ declare module "sap/ui/vk/tools/TooltipTool" {
35764
36968
  hover?: (oEvent: TooltipTool$HoverEvent) => void;
35765
36969
  }
35766
36970
 
36971
+ /**
36972
+ * Parameters of the TooltipTool#hover event.
36973
+ */
35767
36974
  export interface TooltipTool$HoverEventParameters {
35768
36975
  x?: int;
35769
36976
 
@@ -35772,6 +36979,9 @@ declare module "sap/ui/vk/tools/TooltipTool" {
35772
36979
  nodeRef?: any;
35773
36980
  }
35774
36981
 
36982
+ /**
36983
+ * Event object of the TooltipTool#hover event.
36984
+ */
35775
36985
  export type TooltipTool$HoverEvent = Event<
35776
36986
  TooltipTool$HoverEventParameters,
35777
36987
  TooltipTool
@@ -36408,7 +37618,9 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36408
37618
  bUniformScaleEnabled?: boolean
36409
37619
  ): this;
36410
37620
  }
36411
-
37621
+ /**
37622
+ * Describes the settings that can be provided to the TransformSvgElementTool constructor.
37623
+ */
36412
37624
  export interface $TransformSvgElementToolSettings extends $ToolSettings {
36413
37625
  /**
36414
37626
  * Determine what set of nodes will be transformed with this tool
@@ -36454,6 +37666,9 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36454
37666
  scaled?: (oEvent: TransformSvgElementTool$ScaledEvent) => void;
36455
37667
  }
36456
37668
 
37669
+ /**
37670
+ * Parameters of the TransformSvgElementTool#moved event.
37671
+ */
36457
37672
  export interface TransformSvgElementTool$MovedEventParameters {
36458
37673
  x?: float;
36459
37674
 
@@ -36466,11 +37681,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36466
37681
  nodesProperties?: any[];
36467
37682
  }
36468
37683
 
37684
+ /**
37685
+ * Event object of the TransformSvgElementTool#moved event.
37686
+ */
36469
37687
  export type TransformSvgElementTool$MovedEvent = Event<
36470
37688
  TransformSvgElementTool$MovedEventParameters,
36471
37689
  TransformSvgElementTool
36472
37690
  >;
36473
37691
 
37692
+ /**
37693
+ * Parameters of the TransformSvgElementTool#moving event.
37694
+ */
36474
37695
  export interface TransformSvgElementTool$MovingEventParameters {
36475
37696
  x?: float;
36476
37697
 
@@ -36483,11 +37704,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36483
37704
  nodesProperties?: any[];
36484
37705
  }
36485
37706
 
37707
+ /**
37708
+ * Event object of the TransformSvgElementTool#moving event.
37709
+ */
36486
37710
  export type TransformSvgElementTool$MovingEvent = Event<
36487
37711
  TransformSvgElementTool$MovingEventParameters,
36488
37712
  TransformSvgElementTool
36489
37713
  >;
36490
37714
 
37715
+ /**
37716
+ * Parameters of the TransformSvgElementTool#rotated event.
37717
+ */
36491
37718
  export interface TransformSvgElementTool$RotatedEventParameters {
36492
37719
  angle?: float;
36493
37720
 
@@ -36498,11 +37725,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36498
37725
  nodesProperties?: any[];
36499
37726
  }
36500
37727
 
37728
+ /**
37729
+ * Event object of the TransformSvgElementTool#rotated event.
37730
+ */
36501
37731
  export type TransformSvgElementTool$RotatedEvent = Event<
36502
37732
  TransformSvgElementTool$RotatedEventParameters,
36503
37733
  TransformSvgElementTool
36504
37734
  >;
36505
37735
 
37736
+ /**
37737
+ * Parameters of the TransformSvgElementTool#rotating event.
37738
+ */
36506
37739
  export interface TransformSvgElementTool$RotatingEventParameters {
36507
37740
  angle?: float;
36508
37741
 
@@ -36513,11 +37746,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36513
37746
  nodesProperties?: any[];
36514
37747
  }
36515
37748
 
37749
+ /**
37750
+ * Event object of the TransformSvgElementTool#rotating event.
37751
+ */
36516
37752
  export type TransformSvgElementTool$RotatingEvent = Event<
36517
37753
  TransformSvgElementTool$RotatingEventParameters,
36518
37754
  TransformSvgElementTool
36519
37755
  >;
36520
37756
 
37757
+ /**
37758
+ * Parameters of the TransformSvgElementTool#scaled event.
37759
+ */
36521
37760
  export interface TransformSvgElementTool$ScaledEventParameters {
36522
37761
  x?: float;
36523
37762
 
@@ -36530,11 +37769,17 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36530
37769
  nodesProperties?: any[];
36531
37770
  }
36532
37771
 
37772
+ /**
37773
+ * Event object of the TransformSvgElementTool#scaled event.
37774
+ */
36533
37775
  export type TransformSvgElementTool$ScaledEvent = Event<
36534
37776
  TransformSvgElementTool$ScaledEventParameters,
36535
37777
  TransformSvgElementTool
36536
37778
  >;
36537
37779
 
37780
+ /**
37781
+ * Parameters of the TransformSvgElementTool#scaling event.
37782
+ */
36538
37783
  export interface TransformSvgElementTool$ScalingEventParameters {
36539
37784
  x?: float;
36540
37785
 
@@ -36547,6 +37792,9 @@ declare module "sap/ui/vk/tools/TransformSvgElementTool" {
36547
37792
  nodesProperties?: any[];
36548
37793
  }
36549
37794
 
37795
+ /**
37796
+ * Event object of the TransformSvgElementTool#scaling event.
37797
+ */
36550
37798
  export type TransformSvgElementTool$ScalingEvent = Event<
36551
37799
  TransformSvgElementTool$ScalingEventParameters,
36552
37800
  TransformSvgElementTool
@@ -37135,7 +38383,9 @@ declare module "sap/ui/vk/View" {
37135
38383
  }>
37136
38384
  ): this;
37137
38385
  }
37138
-
38386
+ /**
38387
+ * Describes the settings that can be provided to the View constructor.
38388
+ */
37139
38389
  export interface $ViewSettings extends $ManagedObjectSettings {
37140
38390
  /**
37141
38391
  * View persistent ID (optional)
@@ -38074,7 +39324,8 @@ declare module "sap/ui/vk/Viewer" {
38074
39324
  /**
38075
39325
  * Gets the GraphicsCore object if the currently loaded content is a 3D model.
38076
39326
  *
38077
- * @deprecated (since 1.50.0)
39327
+ * @deprecated (since 1.50.0) - DVL namespace wil be removed in future and `GraphicsCore` does not have
39328
+ * direct replacement. Use {@link sap.ui.vk.ContentConnector} for scene loading events.
38078
39329
  *
38079
39330
  * @returns The GraphicsCore object. If there is no 3D scene loaded then `null` is returned.
38080
39331
  */
@@ -38113,7 +39364,7 @@ declare module "sap/ui/vk/Viewer" {
38113
39364
  /**
38114
39365
  * Gets the 2D viewport used for displaying format natively supported by the browser - 2D images etc.
38115
39366
  *
38116
- * @deprecated (since 1.96.0)
39367
+ * @deprecated (since 1.96.0) - Use {@link sap.ui.vk.Viewport#getViewport} instead.
38117
39368
  *
38118
39369
  * @returns The 2D viewport.
38119
39370
  */
@@ -38794,7 +40045,9 @@ declare module "sap/ui/vk/Viewer" {
38794
40045
  sWidth?: CSSSize
38795
40046
  ): this;
38796
40047
  }
38797
-
40048
+ /**
40049
+ * Describes the settings that can be provided to the Viewer constructor.
40050
+ */
38798
40051
  export interface $ViewerSettings extends $ControlSettings {
38799
40052
  /**
38800
40053
  * Enables or disables the Overlay control
@@ -38972,13 +40225,22 @@ declare module "sap/ui/vk/Viewer" {
38972
40225
  nodeClicked?: (oEvent: Viewer$NodeClickedEvent) => void;
38973
40226
  }
38974
40227
 
40228
+ /**
40229
+ * Parameters of the Viewer#contentResourceChangesProcessed event.
40230
+ */
38975
40231
  export interface Viewer$ContentResourceChangesProcessedEventParameters {}
38976
40232
 
40233
+ /**
40234
+ * Event object of the Viewer#contentResourceChangesProcessed event.
40235
+ */
38977
40236
  export type Viewer$ContentResourceChangesProcessedEvent = Event<
38978
40237
  Viewer$ContentResourceChangesProcessedEventParameters,
38979
40238
  Viewer
38980
40239
  >;
38981
40240
 
40241
+ /**
40242
+ * Parameters of the Viewer#fullScreen event.
40243
+ */
38982
40244
  export interface Viewer$FullScreenEventParameters {
38983
40245
  /**
38984
40246
  * true: entered full screen; false: exited full screen.
@@ -38986,11 +40248,17 @@ declare module "sap/ui/vk/Viewer" {
38986
40248
  isFullScreen?: boolean;
38987
40249
  }
38988
40250
 
40251
+ /**
40252
+ * Event object of the Viewer#fullScreen event.
40253
+ */
38989
40254
  export type Viewer$FullScreenEvent = Event<
38990
40255
  Viewer$FullScreenEventParameters,
38991
40256
  Viewer
38992
40257
  >;
38993
40258
 
40259
+ /**
40260
+ * Parameters of the Viewer#nodeClicked event.
40261
+ */
38994
40262
  export interface Viewer$NodeClickedEventParameters {
38995
40263
  /**
38996
40264
  * Returns a node reference.
@@ -39002,11 +40270,17 @@ declare module "sap/ui/vk/Viewer" {
39002
40270
  y?: int;
39003
40271
  }
39004
40272
 
40273
+ /**
40274
+ * Event object of the Viewer#nodeClicked event.
40275
+ */
39005
40276
  export type Viewer$NodeClickedEvent = Event<
39006
40277
  Viewer$NodeClickedEventParameters,
39007
40278
  Viewer
39008
40279
  >;
39009
40280
 
40281
+ /**
40282
+ * Parameters of the Viewer#sceneDestroying event.
40283
+ */
39010
40284
  export interface Viewer$SceneDestroyingEventParameters {
39011
40285
  /**
39012
40286
  * Returns a reference to the scene to be destroyed.
@@ -39020,11 +40294,17 @@ declare module "sap/ui/vk/Viewer" {
39020
40294
  preventGarbageCollection?: Function;
39021
40295
  }
39022
40296
 
40297
+ /**
40298
+ * Event object of the Viewer#sceneDestroying event.
40299
+ */
39023
40300
  export type Viewer$SceneDestroyingEvent = Event<
39024
40301
  Viewer$SceneDestroyingEventParameters,
39025
40302
  Viewer
39026
40303
  >;
39027
40304
 
40305
+ /**
40306
+ * Parameters of the Viewer#sceneLoadingFailed event.
40307
+ */
39028
40308
  export interface Viewer$SceneLoadingFailedEventParameters {
39029
40309
  /**
39030
40310
  * Returns an optional object describing the reason of the failure.
@@ -39032,11 +40312,17 @@ declare module "sap/ui/vk/Viewer" {
39032
40312
  reason?: object;
39033
40313
  }
39034
40314
 
40315
+ /**
40316
+ * Event object of the Viewer#sceneLoadingFailed event.
40317
+ */
39035
40318
  export type Viewer$SceneLoadingFailedEvent = Event<
39036
40319
  Viewer$SceneLoadingFailedEventParameters,
39037
40320
  Viewer
39038
40321
  >;
39039
40322
 
40323
+ /**
40324
+ * Parameters of the Viewer#sceneLoadingSucceeded event.
40325
+ */
39040
40326
  export interface Viewer$SceneLoadingSucceededEventParameters {
39041
40327
  /**
39042
40328
  * Returns a reference to the loaded Scene.
@@ -39044,11 +40330,17 @@ declare module "sap/ui/vk/Viewer" {
39044
40330
  scene?: Scene;
39045
40331
  }
39046
40332
 
40333
+ /**
40334
+ * Event object of the Viewer#sceneLoadingSucceeded event.
40335
+ */
39047
40336
  export type Viewer$SceneLoadingSucceededEvent = Event<
39048
40337
  Viewer$SceneLoadingSucceededEventParameters,
39049
40338
  Viewer
39050
40339
  >;
39051
40340
 
40341
+ /**
40342
+ * Parameters of the Viewer#selectionChanged event.
40343
+ */
39052
40344
  export interface Viewer$SelectionChangedEventParameters {
39053
40345
  /**
39054
40346
  * Node references to the newly selected nodes.
@@ -39061,11 +40353,17 @@ declare module "sap/ui/vk/Viewer" {
39061
40353
  unselected?: any[];
39062
40354
  }
39063
40355
 
40356
+ /**
40357
+ * Event object of the Viewer#selectionChanged event.
40358
+ */
39064
40359
  export type Viewer$SelectionChangedEvent = Event<
39065
40360
  Viewer$SelectionChangedEventParameters,
39066
40361
  Viewer
39067
40362
  >;
39068
40363
 
40364
+ /**
40365
+ * Parameters of the Viewer#urlClicked event.
40366
+ */
39069
40367
  export interface Viewer$UrlClickedEventParameters {
39070
40368
  /**
39071
40369
  * Returns a node reference of the note that contains the URL.
@@ -39078,6 +40376,9 @@ declare module "sap/ui/vk/Viewer" {
39078
40376
  url?: string;
39079
40377
  }
39080
40378
 
40379
+ /**
40380
+ * Event object of the Viewer#urlClicked event.
40381
+ */
39081
40382
  export type Viewer$UrlClickedEvent = Event<
39082
40383
  Viewer$UrlClickedEventParameters,
39083
40384
  Viewer
@@ -39640,7 +40941,9 @@ declare module "sap/ui/vk/ViewGallery" {
39640
40941
  oViewManager: ID | ViewManager
39641
40942
  ): this;
39642
40943
  }
39643
-
40944
+ /**
40945
+ * Describes the settings that can be provided to the ViewGallery constructor.
40946
+ */
39644
40947
  export interface $ViewGallerySettings extends $ControlSettings {
39645
40948
  /**
39646
40949
  * Indicates that the View Gallery control should display animation slider showing time of animation in
@@ -39703,21 +41006,33 @@ declare module "sap/ui/vk/ViewGallery" {
39703
41006
  viewOrderChange?: (oEvent: ViewGallery$ViewOrderChangeEvent) => void;
39704
41007
  }
39705
41008
 
41009
+ /**
41010
+ * Parameters of the ViewGallery#selectionChange event.
41011
+ */
39706
41012
  export interface ViewGallery$SelectionChangeEventParameters {
39707
41013
  item?: Control;
39708
41014
  }
39709
41015
 
41016
+ /**
41017
+ * Event object of the ViewGallery#selectionChange event.
41018
+ */
39710
41019
  export type ViewGallery$SelectionChangeEvent = Event<
39711
41020
  ViewGallery$SelectionChangeEventParameters,
39712
41021
  ViewGallery
39713
41022
  >;
39714
41023
 
41024
+ /**
41025
+ * Parameters of the ViewGallery#viewOrderChange event.
41026
+ */
39715
41027
  export interface ViewGallery$ViewOrderChangeEventParameters {
39716
41028
  view?: View;
39717
41029
 
39718
41030
  viewIndex?: int;
39719
41031
  }
39720
41032
 
41033
+ /**
41034
+ * Event object of the ViewGallery#viewOrderChange event.
41035
+ */
39721
41036
  export type ViewGallery$ViewOrderChangeEvent = Event<
39722
41037
  ViewGallery$ViewOrderChangeEventParameters,
39723
41038
  ViewGallery
@@ -39911,7 +41226,9 @@ declare module "sap/ui/vk/ViewGroup" {
39911
41226
  sViewGroupId: string
39912
41227
  ): this;
39913
41228
  }
39914
-
41229
+ /**
41230
+ * Describes the settings that can be provided to the ViewGroup constructor.
41231
+ */
39915
41232
  export interface $ViewGroupSettings extends $ManagedObjectSettings {
39916
41233
  viewGroupId?: string | PropertyBindingInfo;
39917
41234
 
@@ -40099,7 +41416,9 @@ declare module "sap/ui/vk/ViewManager" {
40099
41416
  */
40100
41417
  stopPlayingViewGroup(): this;
40101
41418
  }
40102
-
41419
+ /**
41420
+ * Describes the settings that can be provided to the ViewManager constructor.
41421
+ */
40103
41422
  export interface $ViewManagerSettings extends $ElementSettings {
40104
41423
  /**
40105
41424
  * An association to the {@link sap.ui.vk.ContentConnector ContentConnector} instance that manages content
@@ -40532,7 +41851,9 @@ declare module "sap/ui/vk/Viewport" {
40532
41851
  margin: float
40533
41852
  ): Viewport;
40534
41853
  }
40535
-
41854
+ /**
41855
+ * Describes the settings that can be provided to the Viewport constructor.
41856
+ */
40536
41857
  export interface $ViewportSettings extends $ViewportBaseSettings {}
40537
41858
  }
40538
41859
 
@@ -42226,7 +43547,9 @@ declare module "sap/ui/vk/ViewportBase" {
42226
43547
  dy: float
42227
43548
  ): ViewportBase;
42228
43549
  }
42229
-
43550
+ /**
43551
+ * Describes the settings that can be provided to the ViewportBase constructor.
43552
+ */
42230
43553
  export interface $ViewportBaseSettings extends $ControlSettings {
42231
43554
  /**
42232
43555
  * Shows or hides the debug info.
@@ -42405,6 +43728,9 @@ declare module "sap/ui/vk/ViewportBase" {
42405
43728
  viewFinished?: (oEvent: ViewportBase$ViewFinishedEvent) => void;
42406
43729
  }
42407
43730
 
43731
+ /**
43732
+ * Parameters of the ViewportBase#nodeClicked event.
43733
+ */
42408
43734
  export interface ViewportBase$NodeClickedEventParameters {
42409
43735
  /**
42410
43736
  * Returns a node reference.
@@ -42416,11 +43742,17 @@ declare module "sap/ui/vk/ViewportBase" {
42416
43742
  y?: int;
42417
43743
  }
42418
43744
 
43745
+ /**
43746
+ * Event object of the ViewportBase#nodeClicked event.
43747
+ */
42419
43748
  export type ViewportBase$NodeClickedEvent = Event<
42420
43749
  ViewportBase$NodeClickedEventParameters,
42421
43750
  ViewportBase
42422
43751
  >;
42423
43752
 
43753
+ /**
43754
+ * Parameters of the ViewportBase#nodesPicked event.
43755
+ */
42424
43756
  export interface ViewportBase$NodesPickedEventParameters {
42425
43757
  /**
42426
43758
  * References of the nodes that are picked.
@@ -42428,11 +43760,17 @@ declare module "sap/ui/vk/ViewportBase" {
42428
43760
  picked?: any[];
42429
43761
  }
42430
43762
 
43763
+ /**
43764
+ * Event object of the ViewportBase#nodesPicked event.
43765
+ */
42431
43766
  export type ViewportBase$NodesPickedEvent = Event<
42432
43767
  ViewportBase$NodesPickedEventParameters,
42433
43768
  ViewportBase
42434
43769
  >;
42435
43770
 
43771
+ /**
43772
+ * Parameters of the ViewportBase#nodeZoomed event.
43773
+ */
42436
43774
  export interface ViewportBase$NodeZoomedEventParameters {
42437
43775
  /**
42438
43776
  * Reference of the node that is zoomed.
@@ -42445,18 +43783,30 @@ declare module "sap/ui/vk/ViewportBase" {
42445
43783
  isZoomIn?: boolean;
42446
43784
  }
42447
43785
 
43786
+ /**
43787
+ * Event object of the ViewportBase#nodeZoomed event.
43788
+ */
42448
43789
  export type ViewportBase$NodeZoomedEvent = Event<
42449
43790
  ViewportBase$NodeZoomedEventParameters,
42450
43791
  ViewportBase
42451
43792
  >;
42452
43793
 
43794
+ /**
43795
+ * Parameters of the ViewportBase#procedureFinished event.
43796
+ */
42453
43797
  export interface ViewportBase$ProcedureFinishedEventParameters {}
42454
43798
 
43799
+ /**
43800
+ * Event object of the ViewportBase#procedureFinished event.
43801
+ */
42455
43802
  export type ViewportBase$ProcedureFinishedEvent = Event<
42456
43803
  ViewportBase$ProcedureFinishedEventParameters,
42457
43804
  ViewportBase
42458
43805
  >;
42459
43806
 
43807
+ /**
43808
+ * Parameters of the ViewportBase#resize event.
43809
+ */
42460
43810
  export interface ViewportBase$ResizeEventParameters {
42461
43811
  /**
42462
43812
  * Returns the width and height of new size `\{ width: number, height: number \}` in CSS pixels.
@@ -42464,11 +43814,17 @@ declare module "sap/ui/vk/ViewportBase" {
42464
43814
  size?: object;
42465
43815
  }
42466
43816
 
43817
+ /**
43818
+ * Event object of the ViewportBase#resize event.
43819
+ */
42467
43820
  export type ViewportBase$ResizeEvent = Event<
42468
43821
  ViewportBase$ResizeEventParameters,
42469
43822
  ViewportBase
42470
43823
  >;
42471
43824
 
43825
+ /**
43826
+ * Parameters of the ViewportBase#urlClicked event.
43827
+ */
42472
43828
  export interface ViewportBase$UrlClickedEventParameters {
42473
43829
  /**
42474
43830
  * Returns a node reference of the note that contains the URL.
@@ -42481,11 +43837,17 @@ declare module "sap/ui/vk/ViewportBase" {
42481
43837
  url?: string;
42482
43838
  }
42483
43839
 
43840
+ /**
43841
+ * Event object of the ViewportBase#urlClicked event.
43842
+ */
42484
43843
  export type ViewportBase$UrlClickedEvent = Event<
42485
43844
  ViewportBase$UrlClickedEventParameters,
42486
43845
  ViewportBase
42487
43846
  >;
42488
43847
 
43848
+ /**
43849
+ * Parameters of the ViewportBase#viewActivated event.
43850
+ */
42489
43851
  export interface ViewportBase$ViewActivatedEventParameters {
42490
43852
  /**
42491
43853
  * Index of the activated view
@@ -42503,15 +43865,24 @@ declare module "sap/ui/vk/ViewportBase" {
42503
43865
  type?: string;
42504
43866
  }
42505
43867
 
43868
+ /**
43869
+ * Event object of the ViewportBase#viewActivated event.
43870
+ */
42506
43871
  export type ViewportBase$ViewActivatedEvent = Event<
42507
43872
  ViewportBase$ViewActivatedEventParameters,
42508
43873
  ViewportBase
42509
43874
  >;
42510
43875
 
43876
+ /**
43877
+ * Parameters of the ViewportBase#viewFinished event.
43878
+ */
42511
43879
  export interface ViewportBase$ViewFinishedEventParameters {
42512
43880
  viewIndex?: int;
42513
43881
  }
42514
43882
 
43883
+ /**
43884
+ * Event object of the ViewportBase#viewFinished event.
43885
+ */
42515
43886
  export type ViewportBase$ViewFinishedEvent = Event<
42516
43887
  ViewportBase$ViewFinishedEventParameters,
42517
43888
  ViewportBase
@@ -42996,7 +44367,7 @@ declare module "sap/ui/vk/ViewStateManager" {
42996
44367
  /**
42997
44368
  * Sets the selection state of the nodes.
42998
44369
  *
42999
- * @deprecated (since 1.56.3)
44370
+ * @deprecated (since 1.56.3) - Use {@link sap.ui.vk.ViewStateManager#setSelectionStates} instead.
43000
44371
  *
43001
44372
  * @returns `this` to allow method chaining.
43002
44373
  */
@@ -43157,7 +44528,9 @@ declare module "sap/ui/vk/ViewStateManager" {
43157
44528
  doNotFireSequenceChanged: boolean
43158
44529
  ): this;
43159
44530
  }
43160
-
44531
+ /**
44532
+ * Describes the settings that can be provided to the ViewStateManager constructor.
44533
+ */
43161
44534
  export interface $ViewStateManagerSettings
43162
44535
  extends $ViewStateManagerBaseSettings {}
43163
44536
  }
@@ -44779,7 +46152,7 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
44779
46152
  /**
44780
46153
  * Sets the selection state of the nodes.
44781
46154
  *
44782
- * @deprecated (since 1.56.3)
46155
+ * @deprecated (since 1.56.3) - Use {@link sap.ui.vk.ViewStateManagerBase#setSelectionStates} instead.
44783
46156
  *
44784
46157
  * @returns `this` to allow method chaining.
44785
46158
  */
@@ -44935,7 +46308,9 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
44935
46308
  doNotFireSequenceChanged: boolean
44936
46309
  ): this;
44937
46310
  }
44938
-
46311
+ /**
46312
+ * Describes the settings that can be provided to the ViewStateManagerBase constructor.
46313
+ */
44939
46314
  export interface $ViewStateManagerBaseSettings extends $ElementSettings {
44940
46315
  shouldTrackVisibilityChanges?:
44941
46316
  | boolean
@@ -45042,6 +46417,9 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45042
46417
  ) => void;
45043
46418
  }
45044
46419
 
46420
+ /**
46421
+ * Parameters of the ViewStateManagerBase#highlightColorChanged event.
46422
+ */
45045
46423
  export interface ViewStateManagerBase$HighlightColorChangedEventParameters {
45046
46424
  /**
45047
46425
  * Highlighting color
@@ -45054,11 +46432,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45054
46432
  highlightColorABGR?: int;
45055
46433
  }
45056
46434
 
46435
+ /**
46436
+ * Event object of the ViewStateManagerBase#highlightColorChanged event.
46437
+ */
45057
46438
  export type ViewStateManagerBase$HighlightColorChangedEvent = Event<
45058
46439
  ViewStateManagerBase$HighlightColorChangedEventParameters,
45059
46440
  ViewStateManagerBase
45060
46441
  >;
45061
46442
 
46443
+ /**
46444
+ * Parameters of the ViewStateManagerBase#nodeHierarchyReplaced event.
46445
+ */
45062
46446
  export interface ViewStateManagerBase$NodeHierarchyReplacedEventParameters {
45063
46447
  /**
45064
46448
  * Old node hierarchy
@@ -45071,11 +46455,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45071
46455
  newNodeHierarchy?: NodeHierarchy;
45072
46456
  }
45073
46457
 
46458
+ /**
46459
+ * Event object of the ViewStateManagerBase#nodeHierarchyReplaced event.
46460
+ */
45074
46461
  export type ViewStateManagerBase$NodeHierarchyReplacedEvent = Event<
45075
46462
  ViewStateManagerBase$NodeHierarchyReplacedEventParameters,
45076
46463
  ViewStateManagerBase
45077
46464
  >;
45078
46465
 
46466
+ /**
46467
+ * Parameters of the ViewStateManagerBase#opacityChanged event.
46468
+ */
45079
46469
  export interface ViewStateManagerBase$OpacityChangedEventParameters {
45080
46470
  /**
45081
46471
  * References of nodes whose opacity changed.
@@ -45088,11 +46478,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45088
46478
  opacity?: any;
45089
46479
  }
45090
46480
 
46481
+ /**
46482
+ * Event object of the ViewStateManagerBase#opacityChanged event.
46483
+ */
45091
46484
  export type ViewStateManagerBase$OpacityChangedEvent = Event<
45092
46485
  ViewStateManagerBase$OpacityChangedEventParameters,
45093
46486
  ViewStateManagerBase
45094
46487
  >;
45095
46488
 
46489
+ /**
46490
+ * Parameters of the ViewStateManagerBase#outlineColorChanged event.
46491
+ */
45096
46492
  export interface ViewStateManagerBase$OutlineColorChangedEventParameters {
45097
46493
  /**
45098
46494
  * Outlining color
@@ -45105,11 +46501,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45105
46501
  outlineColorABGR?: int;
45106
46502
  }
45107
46503
 
46504
+ /**
46505
+ * Event object of the ViewStateManagerBase#outlineColorChanged event.
46506
+ */
45108
46507
  export type ViewStateManagerBase$OutlineColorChangedEvent = Event<
45109
46508
  ViewStateManagerBase$OutlineColorChangedEventParameters,
45110
46509
  ViewStateManagerBase
45111
46510
  >;
45112
46511
 
46512
+ /**
46513
+ * Parameters of the ViewStateManagerBase#outlineWidthChanged event.
46514
+ */
45113
46515
  export interface ViewStateManagerBase$OutlineWidthChangedEventParameters {
45114
46516
  /**
45115
46517
  * Outline width
@@ -45117,11 +46519,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45117
46519
  width?: float;
45118
46520
  }
45119
46521
 
46522
+ /**
46523
+ * Event object of the ViewStateManagerBase#outlineWidthChanged event.
46524
+ */
45120
46525
  export type ViewStateManagerBase$OutlineWidthChangedEvent = Event<
45121
46526
  ViewStateManagerBase$OutlineWidthChangedEventParameters,
45122
46527
  ViewStateManagerBase
45123
46528
  >;
45124
46529
 
46530
+ /**
46531
+ * Parameters of the ViewStateManagerBase#outliningChanged event.
46532
+ */
45125
46533
  export interface ViewStateManagerBase$OutliningChangedEventParameters {
45126
46534
  /**
45127
46535
  * References of newly outlined nodes.
@@ -45134,20 +46542,32 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45134
46542
  unoutlined?: any[];
45135
46543
  }
45136
46544
 
46545
+ /**
46546
+ * Event object of the ViewStateManagerBase#outliningChanged event.
46547
+ */
45137
46548
  export type ViewStateManagerBase$OutliningChangedEvent = Event<
45138
46549
  ViewStateManagerBase$OutliningChangedEventParameters,
45139
46550
  ViewStateManagerBase
45140
46551
  >;
45141
46552
 
46553
+ /**
46554
+ * Parameters of the ViewStateManagerBase#readyForAnimation event.
46555
+ */
45142
46556
  export interface ViewStateManagerBase$ReadyForAnimationEventParameters {
45143
46557
  view?: View;
45144
46558
  }
45145
46559
 
46560
+ /**
46561
+ * Event object of the ViewStateManagerBase#readyForAnimation event.
46562
+ */
45146
46563
  export type ViewStateManagerBase$ReadyForAnimationEvent = Event<
45147
46564
  ViewStateManagerBase$ReadyForAnimationEventParameters,
45148
46565
  ViewStateManagerBase
45149
46566
  >;
45150
46567
 
46568
+ /**
46569
+ * Parameters of the ViewStateManagerBase#selectionChanged event.
46570
+ */
45151
46571
  export interface ViewStateManagerBase$SelectionChangedEventParameters {
45152
46572
  /**
45153
46573
  * References of newly selected nodes.
@@ -45160,11 +46580,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45160
46580
  unselected?: any[];
45161
46581
  }
45162
46582
 
46583
+ /**
46584
+ * Event object of the ViewStateManagerBase#selectionChanged event.
46585
+ */
45163
46586
  export type ViewStateManagerBase$SelectionChangedEvent = Event<
45164
46587
  ViewStateManagerBase$SelectionChangedEventParameters,
45165
46588
  ViewStateManagerBase
45166
46589
  >;
45167
46590
 
46591
+ /**
46592
+ * Parameters of the ViewStateManagerBase#tintColorChanged event.
46593
+ */
45168
46594
  export interface ViewStateManagerBase$TintColorChangedEventParameters {
45169
46595
  /**
45170
46596
  * References of nodes whose tint color changed.
@@ -45184,11 +46610,17 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45184
46610
  tintColorABGR?: any;
45185
46611
  }
45186
46612
 
46613
+ /**
46614
+ * Event object of the ViewStateManagerBase#tintColorChanged event.
46615
+ */
45187
46616
  export type ViewStateManagerBase$TintColorChangedEvent = Event<
45188
46617
  ViewStateManagerBase$TintColorChangedEventParameters,
45189
46618
  ViewStateManagerBase
45190
46619
  >;
45191
46620
 
46621
+ /**
46622
+ * Parameters of the ViewStateManagerBase#transformationChanged event.
46623
+ */
45192
46624
  export interface ViewStateManagerBase$TransformationChangedEventParameters {
45193
46625
  /**
45194
46626
  * Reference to a changed node or array of node references.
@@ -45202,29 +46634,47 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45202
46634
  transformation?: any;
45203
46635
  }
45204
46636
 
46637
+ /**
46638
+ * Event object of the ViewStateManagerBase#transformationChanged event.
46639
+ */
45205
46640
  export type ViewStateManagerBase$TransformationChangedEvent = Event<
45206
46641
  ViewStateManagerBase$TransformationChangedEventParameters,
45207
46642
  ViewStateManagerBase
45208
46643
  >;
45209
46644
 
46645
+ /**
46646
+ * Parameters of the ViewStateManagerBase#viewStateApplied event.
46647
+ */
45210
46648
  export interface ViewStateManagerBase$ViewStateAppliedEventParameters {
45211
46649
  view?: View;
45212
46650
  }
45213
46651
 
46652
+ /**
46653
+ * Event object of the ViewStateManagerBase#viewStateApplied event.
46654
+ */
45214
46655
  export type ViewStateManagerBase$ViewStateAppliedEvent = Event<
45215
46656
  ViewStateManagerBase$ViewStateAppliedEventParameters,
45216
46657
  ViewStateManagerBase
45217
46658
  >;
45218
46659
 
46660
+ /**
46661
+ * Parameters of the ViewStateManagerBase#viewStateApplying event.
46662
+ */
45219
46663
  export interface ViewStateManagerBase$ViewStateApplyingEventParameters {
45220
46664
  view?: View;
45221
46665
  }
45222
46666
 
46667
+ /**
46668
+ * Event object of the ViewStateManagerBase#viewStateApplying event.
46669
+ */
45223
46670
  export type ViewStateManagerBase$ViewStateApplyingEvent = Event<
45224
46671
  ViewStateManagerBase$ViewStateApplyingEventParameters,
45225
46672
  ViewStateManagerBase
45226
46673
  >;
45227
46674
 
46675
+ /**
46676
+ * Parameters of the ViewStateManagerBase#visibilityChanged event.
46677
+ */
45228
46678
  export interface ViewStateManagerBase$VisibilityChangedEventParameters {
45229
46679
  /**
45230
46680
  * References of newly shown nodes.
@@ -45237,6 +46687,9 @@ declare module "sap/ui/vk/ViewStateManagerBase" {
45237
46687
  hidden?: any[];
45238
46688
  }
45239
46689
 
46690
+ /**
46691
+ * Event object of the ViewStateManagerBase#visibilityChanged event.
46692
+ */
45240
46693
  export type ViewStateManagerBase$VisibilityChangedEvent = Event<
45241
46694
  ViewStateManagerBase$VisibilityChangedEventParameters,
45242
46695
  ViewStateManagerBase
@@ -45411,6 +46864,8 @@ declare namespace sap {
45411
46864
 
45412
46865
  "sap/ui/vk/OverlayArea": undefined;
45413
46866
 
46867
+ "sap/ui/vk/pdf/Viewport": undefined;
46868
+
45414
46869
  "sap/ui/vk/PerspectiveCamera": undefined;
45415
46870
 
45416
46871
  "sap/ui/vk/ProgressIndicator": undefined;