@sapui5/ts-types 1.136.2 → 1.138.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 (70) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -1
  3. package/types/sap.apf.d.ts +30 -3
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.cux.home.d.ts +263 -63
  8. package/types/sap.esh.search.ui.d.ts +71 -1
  9. package/types/sap.f.d.ts +1 -1
  10. package/types/sap.fe.ariba.d.ts +3 -0
  11. package/types/sap.fe.base.d.ts +1 -1
  12. package/types/sap.fe.controls.d.ts +1 -1
  13. package/types/sap.fe.core.d.ts +46 -6
  14. package/types/sap.fe.ina.d.ts +1 -1
  15. package/types/sap.fe.macros.d.ts +222 -65
  16. package/types/sap.fe.navigation.d.ts +1 -1
  17. package/types/sap.fe.placeholder.d.ts +1 -1
  18. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  19. package/types/sap.fe.templates.d.ts +1 -1
  20. package/types/sap.fe.test.d.ts +4 -3
  21. package/types/sap.fe.tools.d.ts +1 -1
  22. package/types/sap.feedback.ui.d.ts +1 -1
  23. package/types/sap.gantt.d.ts +1 -1
  24. package/types/sap.insights.d.ts +1 -1
  25. package/types/sap.m.d.ts +1216 -543
  26. package/types/sap.makit.d.ts +1 -1
  27. package/types/sap.me.d.ts +1 -1
  28. package/types/sap.ndc.d.ts +1 -1
  29. package/types/sap.ovp.d.ts +1 -1
  30. package/types/sap.rules.ui.d.ts +1 -1
  31. package/types/sap.sac.df.d.ts +34 -1
  32. package/types/sap.suite.ui.commons.d.ts +2 -2
  33. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  34. package/types/sap.suite.ui.microchart.d.ts +1 -1
  35. package/types/sap.tnt.d.ts +103 -16
  36. package/types/sap.ui.codeeditor.d.ts +1 -1
  37. package/types/sap.ui.commons.d.ts +1 -1
  38. package/types/sap.ui.comp.d.ts +70 -9
  39. package/types/sap.ui.core.d.ts +59 -50
  40. package/types/sap.ui.dt.d.ts +1 -1
  41. package/types/sap.ui.export.d.ts +216 -167
  42. package/types/sap.ui.fl.d.ts +3 -7
  43. package/types/sap.ui.generic.app.d.ts +1 -1
  44. package/types/sap.ui.generic.template.d.ts +1 -1
  45. package/types/sap.ui.integration.d.ts +44 -24
  46. package/types/sap.ui.layout.d.ts +1 -1
  47. package/types/{mdc-1.136.0-d.ts → sap.ui.mdc.d.ts} +597 -293
  48. package/types/sap.ui.richtexteditor.d.ts +21 -17
  49. package/types/sap.ui.rta.d.ts +1 -1
  50. package/types/sap.ui.suite.d.ts +1 -1
  51. package/types/sap.ui.support.d.ts +1 -1
  52. package/types/sap.ui.table.d.ts +1 -1
  53. package/types/sap.ui.testrecorder.d.ts +1 -1
  54. package/types/sap.ui.unified.d.ts +9 -1
  55. package/types/sap.ui.ux3.d.ts +1 -1
  56. package/types/sap.ui.vbm.d.ts +65 -29
  57. package/types/sap.ui.vk.d.ts +387 -100
  58. package/types/sap.ui.vtm.d.ts +7 -4
  59. package/types/sap.ui.webc.common.d.ts +1 -1
  60. package/types/sap.ui.webc.fiori.d.ts +1 -1
  61. package/types/sap.ui.webc.main.d.ts +1 -1
  62. package/types/sap.uiext.inbox.d.ts +1 -1
  63. package/types/sap.ushell.d.ts +55 -30
  64. package/types/sap.ushell_abap.d.ts +1 -1
  65. package/types/sap.uxap.d.ts +1 -1
  66. package/types/sap.viz.d.ts +1 -1
  67. package/types/sap.webanalytics.core.d.ts +1 -1
  68. package/types/sap.zen.commons.d.ts +1 -1
  69. package/types/sap.zen.crosstab.d.ts +1 -1
  70. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -2561,7 +2561,17 @@ declare namespace sap {
2561
2561
  * Describes the settings that can be provided to the LayersPanel constructor.
2562
2562
  */
2563
2563
  interface $LayersPanelSettings extends sap.ui.core.$ControlSettings {
2564
- content?: sap.m.ScrollContainer;
2564
+ width?:
2565
+ | sap.ui.core.CSSSize
2566
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2567
+ | `{${string}}`;
2568
+
2569
+ height?:
2570
+ | sap.ui.core.CSSSize
2571
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2572
+ | `{${string}}`;
2573
+
2574
+ content?: sap.m.Table;
2565
2575
 
2566
2576
  /**
2567
2577
  * An association to the `ContentConnector` instance that manages content resources.
@@ -2743,17 +2753,35 @@ declare namespace sap {
2743
2753
  /**
2744
2754
  * Gets content of aggregation {@link #getContent content}.
2745
2755
  */
2746
- getContent(): sap.m.ScrollContainer;
2756
+ getContent(): sap.m.Table;
2747
2757
  /**
2748
2758
  * ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
2749
2759
  * or `null`.
2750
2760
  */
2751
2761
  getContentConnector(): sap.ui.core.ID | null;
2762
+ /**
2763
+ * Gets current value of property {@link #getHeight height}.
2764
+ *
2765
+ * Default value is `"100%"`.
2766
+ *
2767
+ *
2768
+ * @returns Value of property `height`
2769
+ */
2770
+ getHeight(): sap.ui.core.CSSSize;
2752
2771
  /**
2753
2772
  * ID of the element which is the current target of the association {@link #getViewStateManager viewStateManager},
2754
2773
  * or `null`.
2755
2774
  */
2756
2775
  getViewStateManager(): sap.ui.core.ID | null;
2776
+ /**
2777
+ * Gets current value of property {@link #getWidth width}.
2778
+ *
2779
+ * Default value is `"auto"`.
2780
+ *
2781
+ *
2782
+ * @returns Value of property `width`
2783
+ */
2784
+ getWidth(): sap.ui.core.CSSSize;
2757
2785
  /**
2758
2786
  * Sets the aggregated {@link #getContent content}.
2759
2787
  *
@@ -2764,7 +2792,7 @@ declare namespace sap {
2764
2792
  /**
2765
2793
  * The content to set
2766
2794
  */
2767
- oContent: sap.m.ScrollContainer
2795
+ oContent: sap.m.Table
2768
2796
  ): this;
2769
2797
  /**
2770
2798
  * Sets the associated {@link #getContentConnector contentConnector}.
@@ -2779,6 +2807,22 @@ declare namespace sap {
2779
2807
  */
2780
2808
  oContentConnector: sap.ui.core.ID | sap.ui.vk.ContentConnector
2781
2809
  ): this;
2810
+ /**
2811
+ * Sets a new value for property {@link #getHeight height}.
2812
+ *
2813
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2814
+ *
2815
+ * Default value is `"100%"`.
2816
+ *
2817
+ *
2818
+ * @returns Reference to `this` in order to allow method chaining
2819
+ */
2820
+ setHeight(
2821
+ /**
2822
+ * New value for property `height`
2823
+ */
2824
+ sHeight?: sap.ui.core.CSSSize
2825
+ ): this;
2782
2826
  /**
2783
2827
  * Sets the associated {@link #getViewStateManager viewStateManager}.
2784
2828
  *
@@ -2792,6 +2836,22 @@ declare namespace sap {
2792
2836
  */
2793
2837
  oViewStateManager: sap.ui.core.ID | sap.ui.vk.ViewStateManagerBase
2794
2838
  ): this;
2839
+ /**
2840
+ * Sets a new value for property {@link #getWidth width}.
2841
+ *
2842
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2843
+ *
2844
+ * Default value is `"auto"`.
2845
+ *
2846
+ *
2847
+ * @returns Reference to `this` in order to allow method chaining
2848
+ */
2849
+ setWidth(
2850
+ /**
2851
+ * New value for property `width`
2852
+ */
2853
+ sWidth?: sap.ui.core.CSSSize
2854
+ ): this;
2795
2855
  }
2796
2856
 
2797
2857
  /**
@@ -5026,9 +5086,6 @@ declare namespace sap {
5026
5086
 
5027
5087
  /**
5028
5088
  * Describes the settings that can be provided to the Texture constructor.
5029
- *
5030
- * @experimental As of version 1.60.0. This class is experimental and might be modified or removed in future
5031
- * versions.
5032
5089
  */
5033
5090
  interface $TextureSettings extends sap.ui.vk.$TextureSettings {}
5034
5091
 
@@ -5368,8 +5425,7 @@ declare namespace sap {
5368
5425
  /**
5369
5426
  * Provides the interface for the material.
5370
5427
  *
5371
- * @experimental As of version 1.60.0. This class is experimental and might be modified or removed in future
5372
- * versions.
5428
+ * @since 1.60.0
5373
5429
  */
5374
5430
  class Material extends sap.ui.vk.Material {
5375
5431
  /**
@@ -6302,8 +6358,7 @@ declare namespace sap {
6302
6358
  /**
6303
6359
  * Provides the interface for the material.
6304
6360
  *
6305
- * @experimental As of version 1.60.0. This class is experimental and might be modified or removed in future
6306
- * versions.
6361
+ * @since 1.60.0
6307
6362
  */
6308
6363
  class Texture extends sap.ui.vk.Texture {
6309
6364
  /**
@@ -6605,8 +6660,7 @@ declare namespace sap {
6605
6660
  /**
6606
6661
  * Returns object as an image of desired size.
6607
6662
  *
6608
- * @experimental As of version 1.82.0. This method is experimental and might be modified or removed in future
6609
- * versions
6663
+ * @since 1.82.0
6610
6664
  *
6611
6665
  * @returns Base64 encoded PNG image
6612
6666
  */
@@ -6643,8 +6697,7 @@ declare namespace sap {
6643
6697
  /**
6644
6698
  * Returns object/objects as an image of desired size.
6645
6699
  *
6646
- * @experimental As of version 1.102.0. This method is experimental and might be modified or removed in
6647
- * future versions
6700
+ * @since 1.102.0
6648
6701
  *
6649
6702
  * @returns Base64 encoded image
6650
6703
  */
@@ -7189,8 +7242,7 @@ declare namespace sap {
7189
7242
  /**
7190
7243
  * Get the Symbol node from nodeId, if nodeId is not set, returns a collection of all Symbol nodes
7191
7244
  *
7192
- * @experimental As of version 1.82.0. This method is experimental and might be modified or removed in future
7193
- * versions
7245
+ * @since 1.82.0
7194
7246
  *
7195
7247
  * @returns An array of nodes
7196
7248
  */
@@ -7842,9 +7894,6 @@ declare namespace sap {
7842
7894
 
7843
7895
  /**
7844
7896
  * Describes the settings that can be provided to the ExplodeItemGroup constructor.
7845
- *
7846
- * @experimental As of version 1.82.0. This method is experimental and might be modified or removed in future
7847
- * versions
7848
7897
  */
7849
7898
  interface $ExplodeItemGroupSettings
7850
7899
  extends sap.ui.core.$ElementSettings {
@@ -8049,9 +8098,6 @@ declare namespace sap {
8049
8098
 
8050
8099
  /**
8051
8100
  * Describes the settings that can be provided to the PointCloudSelectionTool constructor.
8052
- *
8053
- * @experimental As of version 1.118.0. This class is experimental and might be modified or removed in future
8054
- * versions.
8055
8101
  */
8056
8102
  interface $PointCloudSelectionToolSettings
8057
8103
  extends sap.ui.vk.tools.$ToolSettings {
@@ -11336,8 +11382,7 @@ declare namespace sap {
11336
11382
  /**
11337
11383
  * Aggregation element for the output settings of the Viewport
11338
11384
  *
11339
- * @experimental As of version 1.82.0. This method is experimental and might be modified or removed in future
11340
- * versions
11385
+ * @since 1.82.0
11341
11386
  */
11342
11387
  class ExplodeItemGroup extends sap.ui.core.Element {
11343
11388
  /**
@@ -13250,8 +13295,7 @@ declare namespace sap {
13250
13295
  /**
13251
13296
  * Tool used to select points
13252
13297
  *
13253
- * @experimental As of version 1.118.0. This class is experimental and might be modified or removed in future
13254
- * versions.
13298
+ * @since 1.118.0
13255
13299
  */
13256
13300
  class PointCloudSelectionTool extends sap.ui.vk.tools.Tool {
13257
13301
  /**
@@ -18065,9 +18109,6 @@ declare namespace sap {
18065
18109
 
18066
18110
  /**
18067
18111
  * Describes the settings that can be provided to the AnimationPlayer constructor.
18068
- *
18069
- * @experimental As of version 1.67.0. This class is experimental and might be modified or removed in future
18070
- * versions.
18071
18112
  */
18072
18113
  interface $AnimationPlayerSettings extends sap.ui.core.$ElementSettings {
18073
18114
  viewStateManager?: sap.ui.vk.ViewStateManagerBase | string;
@@ -18083,9 +18124,6 @@ declare namespace sap {
18083
18124
 
18084
18125
  /**
18085
18126
  * Describes the settings that can be provided to the Annotation constructor.
18086
- *
18087
- * @experimental As of version 1.76.0. This class is experimental and might be modified or removed in future
18088
- * versions.
18089
18127
  */
18090
18128
  interface $AnnotationSettings extends sap.ui.core.$ControlSettings {
18091
18129
  /**
@@ -18478,6 +18516,7 @@ declare namespace sap {
18478
18516
  * The source type of the content resource. Valid types:
18479
18517
  * - vds
18480
18518
  * - vds4
18519
+ * - vds4-2d
18481
18520
  * - svg
18482
18521
  * - png
18483
18522
  * - jpg
@@ -18486,7 +18525,10 @@ declare namespace sap {
18486
18525
  * - bmp
18487
18526
  * - tif*
18488
18527
  * - tiff*
18489
- * - stream The source type may be omitted if this is a grouping content node.
18528
+ * - stream
18529
+ * - stream2d
18530
+ * - ecad
18531
+ * - pdf The source type may be omitted if this is a grouping content node.
18490
18532
  * NOTE: The tif and tiff image formats are not supported on all browsers. Source type "vds" initializes
18491
18533
  * deprecated DVL namespace and uses legacy library to load and display VDS file content. If source type
18492
18534
  * of "vds4" is used then new namespace based on Threejs rendering model will be used to load and display
@@ -18684,9 +18726,6 @@ declare namespace sap {
18684
18726
 
18685
18727
  /**
18686
18728
  * Describes the settings that can be provided to the FlexibleControl constructor.
18687
- *
18688
- * @experimental As of version 1.32.0. This class is experimental and might be modified or removed in future
18689
- * versions.
18690
18729
  */
18691
18730
  interface $FlexibleControlSettings extends sap.ui.core.$ControlSettings {
18692
18731
  /**
@@ -18724,9 +18763,6 @@ declare namespace sap {
18724
18763
 
18725
18764
  /**
18726
18765
  * Describes the settings that can be provided to the FlexibleControlLayoutData constructor.
18727
- *
18728
- * @experimental As of version 1.32.0. This class is experimental and might be modified or removed in future
18729
- * versions.
18730
18766
  */
18731
18767
  interface $FlexibleControlLayoutDataSettings
18732
18768
  extends sap.ui.core.$LayoutDataSettings {
@@ -18770,8 +18806,6 @@ declare namespace sap {
18770
18806
  * Describes the settings that can be provided to the LegendItem constructor.
18771
18807
  *
18772
18808
  * @deprecated As of version 1.120.2. This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerLegendItem}
18773
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
18774
- * versions.
18775
18809
  */
18776
18810
  interface $LegendItemSettings extends sap.m.$StandardListItemSettings {
18777
18811
  /**
@@ -18795,8 +18829,6 @@ declare namespace sap {
18795
18829
  * Describes the settings that can be provided to the ListPanel constructor.
18796
18830
  *
18797
18831
  * @deprecated As of version 1.120.2. This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanel}
18798
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
18799
- * versions.
18800
18832
  */
18801
18833
  interface $ListPanelSettings extends sap.ui.core.$ControlSettings {
18802
18834
  /**
@@ -18870,8 +18902,6 @@ declare namespace sap {
18870
18902
  * Describes the settings that can be provided to the ListPanelStack constructor.
18871
18903
  *
18872
18904
  * @deprecated As of version 1.120.2. This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanelStack}
18873
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
18874
- * versions.
18875
18905
  */
18876
18906
  interface $ListPanelStackSettings extends sap.ui.core.$ControlSettings {
18877
18907
  /**
@@ -19147,9 +19177,6 @@ declare namespace sap {
19147
19177
 
19148
19178
  /**
19149
19179
  * Describes the settings that can be provided to the OutputSettings constructor.
19150
- *
19151
- * @experimental As of version 1.92.0. This class is experimental and might be modified or removed in future
19152
- * versions.
19153
19180
  */
19154
19181
  interface $OutputSettingsSettings extends sap.ui.core.$ElementSettings {
19155
19182
  /**
@@ -19827,9 +19854,6 @@ declare namespace sap {
19827
19854
 
19828
19855
  /**
19829
19856
  * Describes the settings that can be provided to the Texture constructor.
19830
- *
19831
- * @experimental As of version 1.58.0. This class is experimental and might be modified or removed in future
19832
- * versions.
19833
19857
  */
19834
19858
  interface $TextureSettings extends sap.ui.base.$ManagedObjectSettings {
19835
19859
  /**
@@ -20140,6 +20164,54 @@ declare namespace sap {
20140
20164
  | sap.ui.base.ManagedObject.PropertyBindingInfo
20141
20165
  | `{${string}}`;
20142
20166
 
20167
+ /**
20168
+ * Disables the ECAD layers panel control
20169
+ */
20170
+ enableLayersPanel?:
20171
+ | boolean
20172
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20173
+ | `{${string}}`;
20174
+
20175
+ /**
20176
+ * Shows or hides the ECAD layers panel control
20177
+ */
20178
+ showLayersPanel?:
20179
+ | boolean
20180
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20181
+ | `{${string}}`;
20182
+
20183
+ /**
20184
+ * Disables the ECAD elements panel control
20185
+ */
20186
+ enableElementsPanel?:
20187
+ | boolean
20188
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20189
+ | `{${string}}`;
20190
+
20191
+ /**
20192
+ * Shows or hides the ECAD elements panel control
20193
+ */
20194
+ showElementsPanel?:
20195
+ | boolean
20196
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20197
+ | `{${string}}`;
20198
+
20199
+ /**
20200
+ * Disables the page gallery control
20201
+ */
20202
+ enablePageGallery?:
20203
+ | boolean
20204
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20205
+ | `{${string}}`;
20206
+
20207
+ /**
20208
+ * Shows or hides the page gallery control
20209
+ */
20210
+ showPageGallery?:
20211
+ | boolean
20212
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20213
+ | `{${string}}`;
20214
+
20143
20215
  /**
20144
20216
  * Shows or hides Toolbar control
20145
20217
  */
@@ -20244,6 +20316,14 @@ declare namespace sap {
20244
20316
  | sap.ui.base.ManagedObject.PropertyBindingInfo
20245
20317
  | `{${string}}`;
20246
20318
 
20319
+ /**
20320
+ * Shows or hides showing of all hotspots toggle button
20321
+ */
20322
+ hotspotsEnabled?:
20323
+ | boolean
20324
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20325
+ | `{${string}}`;
20326
+
20247
20327
  /**
20248
20328
  * Enables or disables showing of all hotspots
20249
20329
  */
@@ -21881,8 +21961,7 @@ declare namespace sap {
21881
21961
  /**
21882
21962
  * Provides definition for an animation playback
21883
21963
  *
21884
- * @experimental As of version 1.67.0. This class is experimental and might be modified or removed in future
21885
- * versions.
21964
+ * @since 1.67.0
21886
21965
  */
21887
21966
  class AnimationPlayer extends sap.ui.core.Element {
21888
21967
  /**
@@ -22374,8 +22453,7 @@ declare namespace sap {
22374
22453
  * Annotation allows applications to display custom html annotation on top of Viewport and associate it
22375
22454
  * with 3D object
22376
22455
  *
22377
- * @experimental As of version 1.76.0. This class is experimental and might be modified or removed in future
22378
- * versions.
22456
+ * @since 1.76.0
22379
22457
  */
22380
22458
  class Annotation extends sap.ui.core.Control {
22381
22459
  /**
@@ -25818,6 +25896,7 @@ declare namespace sap {
25818
25896
  * The source type of the content resource. Valid types:
25819
25897
  * - vds
25820
25898
  * - vds4
25899
+ * - vds4-2d
25821
25900
  * - svg
25822
25901
  * - png
25823
25902
  * - jpg
@@ -25826,7 +25905,10 @@ declare namespace sap {
25826
25905
  * - bmp
25827
25906
  * - tif*
25828
25907
  * - tiff*
25829
- * - stream The source type may be omitted if this is a grouping content node.
25908
+ * - stream
25909
+ * - stream2d
25910
+ * - ecad
25911
+ * - pdf The source type may be omitted if this is a grouping content node.
25830
25912
  * NOTE: The tif and tiff image formats are not supported on all browsers. Source type "vds" initializes
25831
25913
  * deprecated DVL namespace and uses legacy library to load and display VDS file content. If source type
25832
25914
  * of "vds4" is used then new namespace based on Threejs rendering model will be used to load and display
@@ -26226,6 +26308,7 @@ declare namespace sap {
26226
26308
  * The source type of the content resource. Valid types:
26227
26309
  * - vds
26228
26310
  * - vds4
26311
+ * - vds4-2d
26229
26312
  * - svg
26230
26313
  * - png
26231
26314
  * - jpg
@@ -26234,7 +26317,10 @@ declare namespace sap {
26234
26317
  * - bmp
26235
26318
  * - tif*
26236
26319
  * - tiff*
26237
- * - stream The source type may be omitted if this is a grouping content node.
26320
+ * - stream
26321
+ * - stream2d
26322
+ * - ecad
26323
+ * - pdf The source type may be omitted if this is a grouping content node.
26238
26324
  * NOTE: The tif and tiff image formats are not supported on all browsers. Source type "vds" initializes
26239
26325
  * deprecated DVL namespace and uses legacy library to load and display VDS file content. If source type
26240
26326
  * of "vds4" is used then new namespace based on Threejs rendering model will be used to load and display
@@ -26580,8 +26666,6 @@ declare namespace sap {
26580
26666
  * Holds layout data for the FlexibleControl contents.
26581
26667
  *
26582
26668
  * @since 1.16.0
26583
- * @experimental As of version 1.32.0. This class is experimental and might be modified or removed in future
26584
- * versions.
26585
26669
  */
26586
26670
  class FlexibleControl extends sap.ui.core.Control {
26587
26671
  /**
@@ -26830,8 +26914,6 @@ declare namespace sap {
26830
26914
  * size of the content dynamically and is not directly set as style property.)
26831
26915
  *
26832
26916
  * @since 1.32.0
26833
- * @experimental As of version 1.32.0. This class is experimental and might be modified or removed in future
26834
- * versions.
26835
26917
  */
26836
26918
  class FlexibleControlLayoutData extends sap.ui.core.LayoutData {
26837
26919
  /**
@@ -27189,9 +27271,8 @@ declare namespace sap {
27189
27271
  /**
27190
27272
  * Legend item control
27191
27273
  *
27274
+ * @since 1.38.0
27192
27275
  * @deprecated As of version 1.120.2. This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ContainerLegendItem}
27193
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
27194
- * versions.
27195
27276
  */
27196
27277
  class LegendItem extends sap.m.StandardListItem {
27197
27278
  /**
@@ -27310,9 +27391,8 @@ declare namespace sap {
27310
27391
  /**
27311
27392
  * Aggregation control for the Legend
27312
27393
  *
27394
+ * @since 1.38.0
27313
27395
  * @deprecated As of version 1.120.2. This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanel}
27314
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
27315
- * versions.
27316
27396
  */
27317
27397
  class ListPanel extends sap.ui.core.Control {
27318
27398
  /**
@@ -27945,9 +28025,8 @@ declare namespace sap {
27945
28025
  /**
27946
28026
  * ListPanelStack control
27947
28027
  *
28028
+ * @since 1.38.0
27948
28029
  * @deprecated As of version 1.120.2. This object is moved to sap.ui.vbm namespace, see {@link sap.ui.vbm.ListPanelStack}
27949
- * @experimental As of version 1.38.0. This class is experimental and might be modified or removed in future
27950
- * versions.
27951
28030
  */
27952
28031
  class ListPanelStack extends sap.ui.core.Control {
27953
28032
  /**
@@ -31098,8 +31177,6 @@ declare namespace sap {
31098
31177
  * Aggregation element for the output settings of the Viewport
31099
31178
  *
31100
31179
  * @since 1.92.0
31101
- * @experimental As of version 1.92.0. This class is experimental and might be modified or removed in future
31102
- * versions.
31103
31180
  */
31104
31181
  class OutputSettings extends sap.ui.core.Element {
31105
31182
  /**
@@ -36964,8 +37041,7 @@ declare namespace sap {
36964
37041
  /**
36965
37042
  * Provides the interface for the texture.
36966
37043
  *
36967
- * @experimental As of version 1.58.0. This class is experimental and might be modified or removed in future
36968
- * versions.
37044
+ * @since 1.58.0
36969
37045
  */
36970
37046
  class Texture extends sap.ui.base.ManagedObject {
36971
37047
  /**
@@ -38186,8 +38262,7 @@ declare namespace sap {
38186
38262
  /**
38187
38263
  * Returns view camera
38188
38264
  *
38189
- * @experimental As of version 1.73.0. This class is experimental and might be modified or removed in future
38190
- * versions.
38265
+ * @since 1.73.0
38191
38266
  *
38192
38267
  * @returns View camera
38193
38268
  */
@@ -38233,8 +38308,7 @@ declare namespace sap {
38233
38308
  /**
38234
38309
  * Get parameters of nodes defined in view
38235
38310
  *
38236
- * @experimental As of version 1.73.0. This class is experimental and might be modified or removed in future
38237
- * versions.
38311
+ * @since 1.73.0
38238
38312
  *
38239
38313
  * @returns Array of objects containing node information, each object contains the following fields
38240
38314
  * ```javascript
@@ -38326,8 +38400,7 @@ declare namespace sap {
38326
38400
  /**
38327
38401
  * Set view camera.
38328
38402
  *
38329
- * @experimental As of version 1.73.0. This class is experimental and might be modified or removed in future
38330
- * versions.
38403
+ * @since 1.73.0
38331
38404
  *
38332
38405
  * @returns return this
38333
38406
  */
@@ -38406,8 +38479,7 @@ declare namespace sap {
38406
38479
  /**
38407
38480
  * Set parameters of nodes defined in view
38408
38481
  *
38409
- * @experimental As of version 1.73.0. This class is experimental and might be modified or removed in future
38410
- * versions.
38482
+ * @since 1.73.0
38411
38483
  *
38412
38484
  * @returns Reference to this in order to allow method chaining
38413
38485
  */
@@ -38484,8 +38556,7 @@ declare namespace sap {
38484
38556
  * Update parameters of nodes if nodes are already defined, add parameters if the node is not defined in
38485
38557
  * view
38486
38558
  *
38487
- * @experimental As of version 1.73.0. This class is experimental and might be modified or removed in future
38488
- * versions.
38559
+ * @since 1.73.0
38489
38560
  *
38490
38561
  * @returns Reference to this in order to allow method chaining
38491
38562
  */
@@ -38596,12 +38667,7 @@ declare namespace sap {
38596
38667
  *
38597
38668
  * @returns `this` to allow method chaining.
38598
38669
  */
38599
- activateFullScreenMode(
38600
- /**
38601
- * Parameter which specifies whether to activate or deactivate full screen mode.
38602
- */
38603
- value: boolean
38604
- ): this;
38670
+ activateFullScreenMode(): this;
38605
38671
  /**
38606
38672
  * Activates the redline design control.
38607
38673
  *
@@ -39290,6 +39356,28 @@ declare namespace sap {
39290
39356
  * Content resources to load and display in the Viewer control.
39291
39357
  */
39292
39358
  getContentResources(): sap.ui.vk.ContentResource[];
39359
+ /**
39360
+ * Gets current value of property {@link #getEnableElementsPanel enableElementsPanel}.
39361
+ *
39362
+ * Disables the ECAD elements panel control
39363
+ *
39364
+ * Default value is `true`.
39365
+ *
39366
+ *
39367
+ * @returns Value of property `enableElementsPanel`
39368
+ */
39369
+ getEnableElementsPanel(): boolean;
39370
+ /**
39371
+ * Gets current value of property {@link #getEnableLayersPanel enableLayersPanel}.
39372
+ *
39373
+ * Disables the ECAD layers panel control
39374
+ *
39375
+ * Default value is `true`.
39376
+ *
39377
+ *
39378
+ * @returns Value of property `enableLayersPanel`
39379
+ */
39380
+ getEnableLayersPanel(): boolean;
39293
39381
  /**
39294
39382
  * Gets current value of property {@link #getEnableMiniMap enableMiniMap}.
39295
39383
  *
@@ -39312,6 +39400,17 @@ declare namespace sap {
39312
39400
  * @returns Value of property `enableNotifications`
39313
39401
  */
39314
39402
  getEnableNotifications(): boolean;
39403
+ /**
39404
+ * Gets current value of property {@link #getEnablePageGallery enablePageGallery}.
39405
+ *
39406
+ * Disables the page gallery control
39407
+ *
39408
+ * Default value is `true`.
39409
+ *
39410
+ *
39411
+ * @returns Value of property `enablePageGallery`
39412
+ */
39413
+ getEnablePageGallery(): boolean;
39315
39414
  /**
39316
39415
  * Gets current value of property {@link #getEnableProgressIndicator enableProgressIndicator}.
39317
39416
  *
@@ -39379,7 +39478,7 @@ declare namespace sap {
39379
39478
  *
39380
39479
  * Color used for highlighting Smart2D hotspots in the CSS Color format.
39381
39480
  *
39382
- * Default value is `"rgba(255, 0, 0, 0.7529411764705882)"`.
39481
+ * Default value is `"rgba(89, 0, 0, 0.73)"`.
39383
39482
  *
39384
39483
  *
39385
39484
  * @returns Value of property `hotspotColor`
@@ -39390,12 +39489,23 @@ declare namespace sap {
39390
39489
  *
39391
39490
  * Color used for highlighting Smart2D hotspots in the ABGR format.
39392
39491
  *
39393
- * Default value is `0xc00000ff`.
39492
+ * Default value is `0x590000BB`.
39394
39493
  *
39395
39494
  *
39396
39495
  * @returns Value of property `hotspotColorABGR`
39397
39496
  */
39398
39497
  getHotspotColorABGR(): int;
39498
+ /**
39499
+ * Gets current value of property {@link #getHotspotsEnabled hotspotsEnabled}.
39500
+ *
39501
+ * Shows or hides showing of all hotspots toggle button
39502
+ *
39503
+ * Default value is `true`.
39504
+ *
39505
+ *
39506
+ * @returns Value of property `hotspotsEnabled`
39507
+ */
39508
+ getHotspotsEnabled(): boolean;
39399
39509
  /**
39400
39510
  * Gets the 2D viewport used for displaying format natively supported by the browser - 2D images etc.
39401
39511
  *
@@ -39497,6 +39607,28 @@ declare namespace sap {
39497
39607
  * @returns Value of property `showDrawerToolbar`
39498
39608
  */
39499
39609
  getShowDrawerToolbar(): boolean;
39610
+ /**
39611
+ * Gets current value of property {@link #getShowElementsPanel showElementsPanel}.
39612
+ *
39613
+ * Shows or hides the ECAD elements panel control
39614
+ *
39615
+ * Default value is `true`.
39616
+ *
39617
+ *
39618
+ * @returns Value of property `showElementsPanel`
39619
+ */
39620
+ getShowElementsPanel(): boolean;
39621
+ /**
39622
+ * Gets current value of property {@link #getShowLayersPanel showLayersPanel}.
39623
+ *
39624
+ * Shows or hides the ECAD layers panel control
39625
+ *
39626
+ * Default value is `true`.
39627
+ *
39628
+ *
39629
+ * @returns Value of property `showLayersPanel`
39630
+ */
39631
+ getShowLayersPanel(): boolean;
39500
39632
  /**
39501
39633
  * Gets current value of property {@link #getShowMiniMap showMiniMap}.
39502
39634
  *
@@ -39508,6 +39640,17 @@ declare namespace sap {
39508
39640
  * @returns Value of property `showMiniMap`
39509
39641
  */
39510
39642
  getShowMiniMap(): boolean;
39643
+ /**
39644
+ * Gets current value of property {@link #getShowPageGallery showPageGallery}.
39645
+ *
39646
+ * Shows or hides the page gallery control
39647
+ *
39648
+ * Default value is `true`.
39649
+ *
39650
+ *
39651
+ * @returns Value of property `showPageGallery`
39652
+ */
39653
+ getShowPageGallery(): boolean;
39511
39654
  /**
39512
39655
  * Gets current value of property {@link #getShowSceneTree showSceneTree}.
39513
39656
  *
@@ -39688,6 +39831,42 @@ declare namespace sap {
39688
39831
  */
39689
39832
  handler: sap.ui.vk.DecryptionHandler
39690
39833
  ): this;
39834
+ /**
39835
+ * Sets a new value for property {@link #getEnableElementsPanel enableElementsPanel}.
39836
+ *
39837
+ * Disables the ECAD elements panel control
39838
+ *
39839
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39840
+ *
39841
+ * Default value is `true`.
39842
+ *
39843
+ *
39844
+ * @returns Reference to `this` in order to allow method chaining
39845
+ */
39846
+ setEnableElementsPanel(
39847
+ /**
39848
+ * New value for property `enableElementsPanel`
39849
+ */
39850
+ bEnableElementsPanel?: boolean
39851
+ ): this;
39852
+ /**
39853
+ * Sets a new value for property {@link #getEnableLayersPanel enableLayersPanel}.
39854
+ *
39855
+ * Disables the ECAD layers panel control
39856
+ *
39857
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39858
+ *
39859
+ * Default value is `true`.
39860
+ *
39861
+ *
39862
+ * @returns Reference to `this` in order to allow method chaining
39863
+ */
39864
+ setEnableLayersPanel(
39865
+ /**
39866
+ * New value for property `enableLayersPanel`
39867
+ */
39868
+ bEnableLayersPanel?: boolean
39869
+ ): this;
39691
39870
  /**
39692
39871
  * Sets a new value for property {@link #getEnableMiniMap enableMiniMap}.
39693
39872
  *
@@ -39724,6 +39903,24 @@ declare namespace sap {
39724
39903
  */
39725
39904
  bEnableNotifications?: boolean
39726
39905
  ): this;
39906
+ /**
39907
+ * Sets a new value for property {@link #getEnablePageGallery enablePageGallery}.
39908
+ *
39909
+ * Disables the page gallery control
39910
+ *
39911
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39912
+ *
39913
+ * Default value is `true`.
39914
+ *
39915
+ *
39916
+ * @returns Reference to `this` in order to allow method chaining
39917
+ */
39918
+ setEnablePageGallery(
39919
+ /**
39920
+ * New value for property `enablePageGallery`
39921
+ */
39922
+ bEnablePageGallery?: boolean
39923
+ ): this;
39727
39924
  /**
39728
39925
  * Sets a new value for property {@link #getEnableProgressIndicator enableProgressIndicator}.
39729
39926
  *
@@ -39819,7 +40016,7 @@ declare namespace sap {
39819
40016
  *
39820
40017
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39821
40018
  *
39822
- * Default value is `"rgba(255, 0, 0, 0.7529411764705882)"`.
40019
+ * Default value is `"rgba(89, 0, 0, 0.73)"`.
39823
40020
  *
39824
40021
  *
39825
40022
  * @returns Reference to `this` in order to allow method chaining
@@ -39837,7 +40034,7 @@ declare namespace sap {
39837
40034
  *
39838
40035
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39839
40036
  *
39840
- * Default value is `0xc00000ff`.
40037
+ * Default value is `0x590000BB`.
39841
40038
  *
39842
40039
  *
39843
40040
  * @returns Reference to `this` in order to allow method chaining
@@ -39848,6 +40045,24 @@ declare namespace sap {
39848
40045
  */
39849
40046
  iHotspotColorABGR?: int
39850
40047
  ): this;
40048
+ /**
40049
+ * Sets a new value for property {@link #getHotspotsEnabled hotspotsEnabled}.
40050
+ *
40051
+ * Shows or hides showing of all hotspots toggle button
40052
+ *
40053
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
40054
+ *
40055
+ * Default value is `true`.
40056
+ *
40057
+ *
40058
+ * @returns Reference to `this` in order to allow method chaining
40059
+ */
40060
+ setHotspotsEnabled(
40061
+ /**
40062
+ * New value for property `hotspotsEnabled`
40063
+ */
40064
+ bHotspotsEnabled?: boolean
40065
+ ): this;
39851
40066
  /**
39852
40067
  * Sets a new value for property {@link #getOverlayStepNavigation overlayStepNavigation}.
39853
40068
  *
@@ -39961,6 +40176,42 @@ declare namespace sap {
39961
40176
  */
39962
40177
  bShowDrawerToolbar?: boolean
39963
40178
  ): this;
40179
+ /**
40180
+ * Sets a new value for property {@link #getShowElementsPanel showElementsPanel}.
40181
+ *
40182
+ * Shows or hides the ECAD elements panel control
40183
+ *
40184
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
40185
+ *
40186
+ * Default value is `true`.
40187
+ *
40188
+ *
40189
+ * @returns Reference to `this` in order to allow method chaining
40190
+ */
40191
+ setShowElementsPanel(
40192
+ /**
40193
+ * New value for property `showElementsPanel`
40194
+ */
40195
+ bShowElementsPanel?: boolean
40196
+ ): this;
40197
+ /**
40198
+ * Sets a new value for property {@link #getShowLayersPanel showLayersPanel}.
40199
+ *
40200
+ * Shows or hides the ECAD layers panel control
40201
+ *
40202
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
40203
+ *
40204
+ * Default value is `true`.
40205
+ *
40206
+ *
40207
+ * @returns Reference to `this` in order to allow method chaining
40208
+ */
40209
+ setShowLayersPanel(
40210
+ /**
40211
+ * New value for property `showLayersPanel`
40212
+ */
40213
+ bShowLayersPanel?: boolean
40214
+ ): this;
39964
40215
  /**
39965
40216
  * Sets a new value for property {@link #getShowMiniMap showMiniMap}.
39966
40217
  *
@@ -39979,6 +40230,24 @@ declare namespace sap {
39979
40230
  */
39980
40231
  bShowMiniMap?: boolean
39981
40232
  ): this;
40233
+ /**
40234
+ * Sets a new value for property {@link #getShowPageGallery showPageGallery}.
40235
+ *
40236
+ * Shows or hides the page gallery control
40237
+ *
40238
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
40239
+ *
40240
+ * Default value is `true`.
40241
+ *
40242
+ *
40243
+ * @returns Reference to `this` in order to allow method chaining
40244
+ */
40245
+ setShowPageGallery(
40246
+ /**
40247
+ * New value for property `showPageGallery`
40248
+ */
40249
+ bShowPageGallery?: boolean
40250
+ ): this;
39982
40251
  /**
39983
40252
  * Sets a new value for property {@link #getShowSceneTree showSceneTree}.
39984
40253
  *
@@ -41099,8 +41368,7 @@ declare namespace sap {
41099
41368
  /**
41100
41369
  * Get the Symbol node from nodeId, if nodeId is not set, returns a collection of all Symbol nodes
41101
41370
  *
41102
- * @experimental As of version 1.82.0. This method is experimental and might be modified or removed in future
41103
- * versions
41371
+ * @since 1.82.0
41104
41372
  *
41105
41373
  * @returns An array of nodes
41106
41374
  */
@@ -43077,8 +43345,7 @@ declare namespace sap {
43077
43345
  /**
43078
43346
  * Get the Symbol node from nodeId, if nodeId is not set, returns a collection of all Symbol nodes
43079
43347
  *
43080
- * @experimental As of version 1.82.0. This method is experimental and might be modified or removed in future
43081
- * versions
43348
+ * @since 1.82.0
43082
43349
  *
43083
43350
  * @returns An array of nodes
43084
43351
  */
@@ -44794,8 +45061,7 @@ declare namespace sap {
44794
45061
  * If a single node reference is passed to the method then a single value is returned.
44795
45062
  * If an array of node references is passed to the method then an array of values is returned.
44796
45063
  *
44797
- * @experimental As of version 1.111.0. This method is experimental and might be modified or removed in
44798
- * future versions.
45064
+ * @since 1.111.0
44799
45065
  *
44800
45066
  * @returns A single value or an array of values. Value `null` means that the node's own `selectable` property
44801
45067
  * should be used.
@@ -45080,8 +45346,7 @@ declare namespace sap {
45080
45346
  * a grouping node is ***selectable*** then its descendants can be either ***selectable*** or ***unselectable***
45081
45347
  * based on their `selectable` property.
45082
45348
  *
45083
- * @experimental As of version 1.111.0. This method is experimental and might be modified or removed in
45084
- * future versions.
45349
+ * @since 1.111.0
45085
45350
  *
45086
45351
  * @returns `this` to allow method chaining.
45087
45352
  */
@@ -45320,14 +45585,24 @@ declare namespace sap {
45320
45585
  enum DrawerToolbarButton {
45321
45586
  CrossSection = "VIT-Cross-Section",
45322
45587
 
45588
+ CrossSectionSeparator = "VIT-Cross-Section-Separator",
45589
+
45590
+ EcadSeparator = "VIT-ECAD-Separator",
45591
+
45323
45592
  FitToPage = "VIT-Fit-To-Page",
45324
45593
 
45325
45594
  FitToView = "VIT-Fit-To-View",
45326
45595
 
45596
+ FitToViewSeparator = "VIT-Fit-To-View-Separator",
45597
+
45327
45598
  FitToWidth = "VIT-Fit-To-Width",
45328
45599
 
45600
+ Flip = "VIT-Flip",
45601
+
45329
45602
  FullScreen = "VIT-Fullscreen",
45330
45603
 
45604
+ GestureButtonsSeparator = "VIT-Gesture-Buttons-Separator",
45605
+
45331
45606
  Hide = "VIT-Hide",
45332
45607
 
45333
45608
  Measurements = "VIT-Measurements",
@@ -45338,6 +45613,8 @@ declare namespace sap {
45338
45613
 
45339
45614
  PageNavigation = "VIT-Page-Navigation",
45340
45615
 
45616
+ PageNavigationSeparator = "VIT-Page-Navigation-Separator",
45617
+
45341
45618
  Pan = "VIT-Pan",
45342
45619
 
45343
45620
  PMI = "VIT-PMI",
@@ -45346,10 +45623,20 @@ declare namespace sap {
45346
45623
 
45347
45624
  PredefinedViews = "VIT-Predefined-Views",
45348
45625
 
45626
+ PredefinedViewsSeparator = "VIT-Predefined-Views-Separator",
45627
+
45349
45628
  RectangularSelection = "VIT-Rectangular-Selection",
45350
45629
 
45630
+ RectangularSelectionSeparator = "VIT-Rectangular-Selection-Separator",
45631
+
45632
+ RotateCCW = "VIT-Rotate-CCW",
45633
+
45634
+ RotateCW = "VIT-Rotate-CW",
45635
+
45351
45636
  Show = "VIT-Show",
45352
45637
 
45638
+ ShowHideSeparator = "VIT-Show-Hide-Separator",
45639
+
45353
45640
  Turntable = "VIT-Turntable",
45354
45641
 
45355
45642
  Zoom = "VIT-Zoom",