@sapui5/ts-types 1.94.1 → 1.97.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.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +6 -6
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +235 -1
- package/types/sap.f.d.ts +310 -40
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +102 -1
- package/types/sap.fe.macros.d.ts +36 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +2 -2
- package/types/sap.fe.test.d.ts +89 -4
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1236 -44
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +1132 -159
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +21 -29
- package/types/sap.ovp.d.ts +44 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +635 -0
- package/types/sap.suite.ui.commons.d.ts +177 -3
- package/types/sap.suite.ui.generic.template.d.ts +61 -18
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +11 -12
- package/types/sap.ui.codeeditor.d.ts +35 -31
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +457 -26
- package/types/sap.ui.core.d.ts +1076 -474
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +119 -69
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +273 -1
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +70 -10
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +5 -11
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +9 -6
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +182 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +972 -202
- package/types/sap.ui.vtm.d.ts +2 -1
- package/types/sap.uiext.inbox.d.ts +2 -1
- package/types/sap.ushell.d.ts +130 -58
- package/types/sap.ushell_abap.d.ts +2 -2
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +53 -34
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.97.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -490,6 +490,23 @@ declare namespace sap {
|
|
|
490
490
|
*/
|
|
491
491
|
handler: sap.ui.vk.DecryptionHandler
|
|
492
492
|
): sap.ui.vk.dvl.GraphicsCore;
|
|
493
|
+
/**
|
|
494
|
+
* @SINCE 1.95.0
|
|
495
|
+
*
|
|
496
|
+
* Sets the maximum number of retry attempts for a download operation if the initial request to retrieve
|
|
497
|
+
* a model from a remote server could not be fulfilled and the error with which the request failed is considered
|
|
498
|
+
* recoverable.
|
|
499
|
+
*
|
|
500
|
+
* See {@link sap.ui.vk.ContentConnector#setRetryCount} for details.
|
|
501
|
+
*/
|
|
502
|
+
setRetryCount(
|
|
503
|
+
/**
|
|
504
|
+
* Maximum number of retry attempts. Value must be non-negative. The default number of retry attempts is
|
|
505
|
+
* 1, unless specified otherwise by calling this method and passing in the desired value. Specifying 0 disables
|
|
506
|
+
* any retry attempts.
|
|
507
|
+
*/
|
|
508
|
+
retryCount: int
|
|
509
|
+
): sap.ui.vk.dvl.GraphicsCore;
|
|
493
510
|
/**
|
|
494
511
|
* Shows or hides debug information in the viewports.
|
|
495
512
|
*/
|
|
@@ -770,7 +787,7 @@ declare namespace sap {
|
|
|
770
787
|
*
|
|
771
788
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
772
789
|
* it passes the child nodes to one by one.
|
|
773
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
790
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
774
791
|
* after each call to the `callback` function.
|
|
775
792
|
*/
|
|
776
793
|
enumerateChildren(
|
|
@@ -805,7 +822,7 @@ declare namespace sap {
|
|
|
805
822
|
*
|
|
806
823
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
807
824
|
* it passes the child nodes to one by one.
|
|
808
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
825
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
809
826
|
* after each call to the `callback` function.
|
|
810
827
|
*/
|
|
811
828
|
enumerateChildren(
|
|
@@ -2004,6 +2021,14 @@ declare namespace sap {
|
|
|
2004
2021
|
|
|
2005
2022
|
interface $SceneSettings extends sap.ui.vk.$SceneSettings {}
|
|
2006
2023
|
|
|
2024
|
+
interface $ViewportSettings extends sap.ui.vk.$ViewportBaseSettings {
|
|
2025
|
+
cameraChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
2026
|
+
|
|
2027
|
+
hotspotEnter?: (oEvent: sap.ui.base.Event) => void;
|
|
2028
|
+
|
|
2029
|
+
hotspotLeave?: (oEvent: sap.ui.base.Event) => void;
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2007
2032
|
interface $ViewStateManagerSettings
|
|
2008
2033
|
extends sap.ui.vk.$ViewStateManagerBaseSettings {}
|
|
2009
2034
|
|
|
@@ -2394,7 +2419,7 @@ declare namespace sap {
|
|
|
2394
2419
|
*/
|
|
2395
2420
|
enumerateAncestors(
|
|
2396
2421
|
/**
|
|
2397
|
-
* The reference object of a node whose
|
|
2422
|
+
* The reference object of a node whose ancestor nodes we want enumerated.
|
|
2398
2423
|
*/
|
|
2399
2424
|
nodeRef: any,
|
|
2400
2425
|
/**
|
|
@@ -2403,8 +2428,8 @@ declare namespace sap {
|
|
|
2403
2428
|
*/
|
|
2404
2429
|
callback: Function,
|
|
2405
2430
|
/**
|
|
2406
|
-
* Indicates whether to pass the node references of the
|
|
2407
|
-
*
|
|
2431
|
+
* Indicates whether to pass the node references of the ancestor nodes, or the whole node proxy to the `callback`
|
|
2432
|
+
* function.
|
|
2408
2433
|
* If `true`, then only the node references of the ancestor nodes are passed to the `callback` function.
|
|
2409
2434
|
*
|
|
2410
2435
|
* If `false`, then the node proxies of the ancestor nodes are passed to the `callback` function.
|
|
@@ -2416,7 +2441,7 @@ declare namespace sap {
|
|
|
2416
2441
|
*
|
|
2417
2442
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
2418
2443
|
* it passes the child nodes to one by one.
|
|
2419
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
2444
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
2420
2445
|
* after each call to the `callback` function.
|
|
2421
2446
|
*/
|
|
2422
2447
|
enumerateChildren(
|
|
@@ -2451,7 +2476,7 @@ declare namespace sap {
|
|
|
2451
2476
|
*
|
|
2452
2477
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
2453
2478
|
* it passes the child nodes to one by one.
|
|
2454
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
2479
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
2455
2480
|
* after each call to the `callback` function.
|
|
2456
2481
|
*/
|
|
2457
2482
|
enumerateChildren(
|
|
@@ -2739,11 +2764,438 @@ declare namespace sap {
|
|
|
2739
2764
|
*/
|
|
2740
2765
|
setInitialView(
|
|
2741
2766
|
/**
|
|
2742
|
-
*
|
|
2767
|
+
* Initial view
|
|
2743
2768
|
*/
|
|
2744
2769
|
view: sap.ui.vk.View
|
|
2745
2770
|
): void;
|
|
2746
2771
|
}
|
|
2772
|
+
/**
|
|
2773
|
+
* Provides a control for SVG representation of 2D drawing data.
|
|
2774
|
+
*/
|
|
2775
|
+
class Viewport extends sap.ui.vk.ViewportBase {
|
|
2776
|
+
/**
|
|
2777
|
+
* Constructor for a SVG viewport.
|
|
2778
|
+
*
|
|
2779
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2780
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2781
|
+
* of the syntax of the settings object.
|
|
2782
|
+
*/
|
|
2783
|
+
constructor();
|
|
2784
|
+
|
|
2785
|
+
/**
|
|
2786
|
+
* Creates a new subclass of class sap.ui.vk.svg.Viewport with name `sClassName` and enriches it with the
|
|
2787
|
+
* information contained in `oClassInfo`.
|
|
2788
|
+
*
|
|
2789
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vk.ViewportBase.extend}.
|
|
2790
|
+
*/
|
|
2791
|
+
static extend<T extends Record<string, unknown>>(
|
|
2792
|
+
/**
|
|
2793
|
+
* Name of the class being created
|
|
2794
|
+
*/
|
|
2795
|
+
sClassName: string,
|
|
2796
|
+
/**
|
|
2797
|
+
* Object literal with information about the class
|
|
2798
|
+
*/
|
|
2799
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.vk.svg.Viewport>,
|
|
2800
|
+
/**
|
|
2801
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2802
|
+
* used by this class
|
|
2803
|
+
*/
|
|
2804
|
+
FNMetaImpl?: Function
|
|
2805
|
+
): Function;
|
|
2806
|
+
/**
|
|
2807
|
+
* Returns a metadata object for class sap.ui.vk.svg.Viewport.
|
|
2808
|
+
*/
|
|
2809
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2810
|
+
/**
|
|
2811
|
+
* Activates the view based on view object passed
|
|
2812
|
+
*/
|
|
2813
|
+
activateView(
|
|
2814
|
+
/**
|
|
2815
|
+
* View object definition
|
|
2816
|
+
*/
|
|
2817
|
+
view: sap.ui.vk.View
|
|
2818
|
+
): sap.ui.vk.svg.Viewport;
|
|
2819
|
+
/**
|
|
2820
|
+
* Attaches event handler `fnFunction` to the {@link #event:cameraChanged cameraChanged} event of this `sap.ui.vk.svg.Viewport`.
|
|
2821
|
+
*
|
|
2822
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2823
|
+
* otherwise it will be bound to this `sap.ui.vk.svg.Viewport` itself.
|
|
2824
|
+
*/
|
|
2825
|
+
attachCameraChanged(
|
|
2826
|
+
/**
|
|
2827
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2828
|
+
* object when firing the event
|
|
2829
|
+
*/
|
|
2830
|
+
oData: object,
|
|
2831
|
+
/**
|
|
2832
|
+
* The function to be called when the event occurs
|
|
2833
|
+
*/
|
|
2834
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2835
|
+
/**
|
|
2836
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.svg.Viewport` itself
|
|
2837
|
+
*/
|
|
2838
|
+
oListener?: object
|
|
2839
|
+
): this;
|
|
2840
|
+
/**
|
|
2841
|
+
* Attaches event handler `fnFunction` to the {@link #event:cameraChanged cameraChanged} event of this `sap.ui.vk.svg.Viewport`.
|
|
2842
|
+
*
|
|
2843
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2844
|
+
* otherwise it will be bound to this `sap.ui.vk.svg.Viewport` itself.
|
|
2845
|
+
*/
|
|
2846
|
+
attachCameraChanged(
|
|
2847
|
+
/**
|
|
2848
|
+
* The function to be called when the event occurs
|
|
2849
|
+
*/
|
|
2850
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2851
|
+
/**
|
|
2852
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.svg.Viewport` itself
|
|
2853
|
+
*/
|
|
2854
|
+
oListener?: object
|
|
2855
|
+
): this;
|
|
2856
|
+
/**
|
|
2857
|
+
* Attaches event handler `fnFunction` to the {@link #event:hotspotEnter hotspotEnter} event of this `sap.ui.vk.svg.Viewport`.
|
|
2858
|
+
*
|
|
2859
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2860
|
+
* otherwise it will be bound to this `sap.ui.vk.svg.Viewport` itself.
|
|
2861
|
+
*/
|
|
2862
|
+
attachHotspotEnter(
|
|
2863
|
+
/**
|
|
2864
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2865
|
+
* object when firing the event
|
|
2866
|
+
*/
|
|
2867
|
+
oData: object,
|
|
2868
|
+
/**
|
|
2869
|
+
* The function to be called when the event occurs
|
|
2870
|
+
*/
|
|
2871
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2872
|
+
/**
|
|
2873
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.svg.Viewport` itself
|
|
2874
|
+
*/
|
|
2875
|
+
oListener?: object
|
|
2876
|
+
): this;
|
|
2877
|
+
/**
|
|
2878
|
+
* Attaches event handler `fnFunction` to the {@link #event:hotspotEnter hotspotEnter} event of this `sap.ui.vk.svg.Viewport`.
|
|
2879
|
+
*
|
|
2880
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2881
|
+
* otherwise it will be bound to this `sap.ui.vk.svg.Viewport` itself.
|
|
2882
|
+
*/
|
|
2883
|
+
attachHotspotEnter(
|
|
2884
|
+
/**
|
|
2885
|
+
* The function to be called when the event occurs
|
|
2886
|
+
*/
|
|
2887
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2888
|
+
/**
|
|
2889
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.svg.Viewport` itself
|
|
2890
|
+
*/
|
|
2891
|
+
oListener?: object
|
|
2892
|
+
): this;
|
|
2893
|
+
/**
|
|
2894
|
+
* Attaches event handler `fnFunction` to the {@link #event:hotspotLeave hotspotLeave} event of this `sap.ui.vk.svg.Viewport`.
|
|
2895
|
+
*
|
|
2896
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2897
|
+
* otherwise it will be bound to this `sap.ui.vk.svg.Viewport` itself.
|
|
2898
|
+
*/
|
|
2899
|
+
attachHotspotLeave(
|
|
2900
|
+
/**
|
|
2901
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
2902
|
+
* object when firing the event
|
|
2903
|
+
*/
|
|
2904
|
+
oData: object,
|
|
2905
|
+
/**
|
|
2906
|
+
* The function to be called when the event occurs
|
|
2907
|
+
*/
|
|
2908
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2909
|
+
/**
|
|
2910
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.svg.Viewport` itself
|
|
2911
|
+
*/
|
|
2912
|
+
oListener?: object
|
|
2913
|
+
): this;
|
|
2914
|
+
/**
|
|
2915
|
+
* Attaches event handler `fnFunction` to the {@link #event:hotspotLeave hotspotLeave} event of this `sap.ui.vk.svg.Viewport`.
|
|
2916
|
+
*
|
|
2917
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
2918
|
+
* otherwise it will be bound to this `sap.ui.vk.svg.Viewport` itself.
|
|
2919
|
+
*/
|
|
2920
|
+
attachHotspotLeave(
|
|
2921
|
+
/**
|
|
2922
|
+
* The function to be called when the event occurs
|
|
2923
|
+
*/
|
|
2924
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2925
|
+
/**
|
|
2926
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.svg.Viewport` itself
|
|
2927
|
+
*/
|
|
2928
|
+
oListener?: object
|
|
2929
|
+
): this;
|
|
2930
|
+
/**
|
|
2931
|
+
* Detaches event handler `fnFunction` from the {@link #event:cameraChanged cameraChanged} event of this
|
|
2932
|
+
* `sap.ui.vk.svg.Viewport`.
|
|
2933
|
+
*
|
|
2934
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2935
|
+
*/
|
|
2936
|
+
detachCameraChanged(
|
|
2937
|
+
/**
|
|
2938
|
+
* The function to be called, when the event occurs
|
|
2939
|
+
*/
|
|
2940
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2941
|
+
/**
|
|
2942
|
+
* Context object on which the given function had to be called
|
|
2943
|
+
*/
|
|
2944
|
+
oListener?: object
|
|
2945
|
+
): this;
|
|
2946
|
+
/**
|
|
2947
|
+
* Detaches event handler `fnFunction` from the {@link #event:hotspotEnter hotspotEnter} event of this `sap.ui.vk.svg.Viewport`.
|
|
2948
|
+
*
|
|
2949
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2950
|
+
*/
|
|
2951
|
+
detachHotspotEnter(
|
|
2952
|
+
/**
|
|
2953
|
+
* The function to be called, when the event occurs
|
|
2954
|
+
*/
|
|
2955
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2956
|
+
/**
|
|
2957
|
+
* Context object on which the given function had to be called
|
|
2958
|
+
*/
|
|
2959
|
+
oListener?: object
|
|
2960
|
+
): this;
|
|
2961
|
+
/**
|
|
2962
|
+
* Detaches event handler `fnFunction` from the {@link #event:hotspotLeave hotspotLeave} event of this `sap.ui.vk.svg.Viewport`.
|
|
2963
|
+
*
|
|
2964
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2965
|
+
*/
|
|
2966
|
+
detachHotspotLeave(
|
|
2967
|
+
/**
|
|
2968
|
+
* The function to be called, when the event occurs
|
|
2969
|
+
*/
|
|
2970
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
2971
|
+
/**
|
|
2972
|
+
* Context object on which the given function had to be called
|
|
2973
|
+
*/
|
|
2974
|
+
oListener?: object
|
|
2975
|
+
): this;
|
|
2976
|
+
/**
|
|
2977
|
+
* Fires event {@link #event:cameraChanged cameraChanged} to attached listeners.
|
|
2978
|
+
*/
|
|
2979
|
+
fireCameraChanged(
|
|
2980
|
+
/**
|
|
2981
|
+
* Parameters to pass along with the event
|
|
2982
|
+
*/
|
|
2983
|
+
mParameters?: {
|
|
2984
|
+
/**
|
|
2985
|
+
* Returns a new camera offset.
|
|
2986
|
+
*/
|
|
2987
|
+
offset?: float[];
|
|
2988
|
+
/**
|
|
2989
|
+
* Returns a new camera zoom factor.
|
|
2990
|
+
*/
|
|
2991
|
+
zoom?: float;
|
|
2992
|
+
}
|
|
2993
|
+
): this;
|
|
2994
|
+
/**
|
|
2995
|
+
* Fires event {@link #event:hotspotEnter hotspotEnter} to attached listeners.
|
|
2996
|
+
*/
|
|
2997
|
+
fireHotspotEnter(
|
|
2998
|
+
/**
|
|
2999
|
+
* Parameters to pass along with the event
|
|
3000
|
+
*/
|
|
3001
|
+
mParameters?: {
|
|
3002
|
+
nodeRef?: any;
|
|
3003
|
+
}
|
|
3004
|
+
): this;
|
|
3005
|
+
/**
|
|
3006
|
+
* Fires event {@link #event:hotspotLeave hotspotLeave} to attached listeners.
|
|
3007
|
+
*/
|
|
3008
|
+
fireHotspotLeave(
|
|
3009
|
+
/**
|
|
3010
|
+
* Parameters to pass along with the event
|
|
3011
|
+
*/
|
|
3012
|
+
mParameters?: {
|
|
3013
|
+
nodeRef?: any;
|
|
3014
|
+
}
|
|
3015
|
+
): this;
|
|
3016
|
+
/**
|
|
3017
|
+
* Get current view - remembered when activateView function is called
|
|
3018
|
+
*/
|
|
3019
|
+
getCurrentView(): sap.ui.vk.View;
|
|
3020
|
+
/**
|
|
3021
|
+
* Returns viewport content as an image of desired size.
|
|
3022
|
+
*/
|
|
3023
|
+
getImage(
|
|
3024
|
+
/**
|
|
3025
|
+
* Requested image width in pixels. Allowed values are 8 to 2048, default is 16
|
|
3026
|
+
*/
|
|
3027
|
+
width: int,
|
|
3028
|
+
/**
|
|
3029
|
+
* Requested image height in pixels. Allowed values are 8 to 2048, default is 16
|
|
3030
|
+
*/
|
|
3031
|
+
height: int,
|
|
3032
|
+
/**
|
|
3033
|
+
* The sap.ui.core.CSSColor to be used for top background color
|
|
3034
|
+
*/
|
|
3035
|
+
topColor: string,
|
|
3036
|
+
/**
|
|
3037
|
+
* The sap.ui.core.CSSColor to be used for bottom background color
|
|
3038
|
+
*/
|
|
3039
|
+
bottomColor: string,
|
|
3040
|
+
/**
|
|
3041
|
+
* Include selected nodes
|
|
3042
|
+
*/
|
|
3043
|
+
includeSelection: boolean
|
|
3044
|
+
): string;
|
|
3045
|
+
/**
|
|
3046
|
+
* Gets position and size of the viewport square. The information can be used for making calculations when
|
|
3047
|
+
* restoring Redlining elements.
|
|
3048
|
+
*/
|
|
3049
|
+
getOutputSize(): object;
|
|
3050
|
+
/**
|
|
3051
|
+
* Gets the Viewport Scene
|
|
3052
|
+
*/
|
|
3053
|
+
getScene(): sap.ui.vk.svg.Scene;
|
|
3054
|
+
/**
|
|
3055
|
+
* Retrieves information about the current camera view in the scene, and saves the information in a JSON-like
|
|
3056
|
+
* object. The information can then be used at a later time to restore the scene to the same camera view
|
|
3057
|
+
* using the {@link sap.ui.vk.Viewport#setViewInfo setViewInfo} method.
|
|
3058
|
+
*/
|
|
3059
|
+
getViewInfo(
|
|
3060
|
+
/**
|
|
3061
|
+
* Query object which indicates what information to be retrieved.
|
|
3062
|
+
*/
|
|
3063
|
+
query?: {
|
|
3064
|
+
/**
|
|
3065
|
+
* Indicator to retrieve visibility information.
|
|
3066
|
+
*/
|
|
3067
|
+
visibility?:
|
|
3068
|
+
| boolean
|
|
3069
|
+
| {
|
|
3070
|
+
/**
|
|
3071
|
+
* Indicator to retrieve the complete visibility definition or just the difference.
|
|
3072
|
+
*/
|
|
3073
|
+
mode?: sap.ui.vk.VisibilityMode;
|
|
3074
|
+
};
|
|
3075
|
+
/**
|
|
3076
|
+
* Indicator to retrieve selection information.
|
|
3077
|
+
*/
|
|
3078
|
+
selection?: boolean | object;
|
|
3079
|
+
}
|
|
3080
|
+
): object;
|
|
3081
|
+
|
|
3082
|
+
onSetViewStateManager(): sap.ui.vk.svg.Viewport;
|
|
3083
|
+
/**
|
|
3084
|
+
* Queues a command for execution during the rendering cycle. All gesture operations should be called using
|
|
3085
|
+
* this method.
|
|
3086
|
+
*/
|
|
3087
|
+
queueCommand(
|
|
3088
|
+
/**
|
|
3089
|
+
* The command to be executed.
|
|
3090
|
+
*/
|
|
3091
|
+
command: Function
|
|
3092
|
+
): sap.ui.vk.svg.Viewport;
|
|
3093
|
+
/**
|
|
3094
|
+
* @deprecated (since 1.80.0)
|
|
3095
|
+
*
|
|
3096
|
+
* Attaches the scene to the Viewport for rendering.
|
|
3097
|
+
*/
|
|
3098
|
+
setScene(
|
|
3099
|
+
/**
|
|
3100
|
+
* The scene to attach to the Viewport.
|
|
3101
|
+
*/
|
|
3102
|
+
scene: sap.ui.vk.svg.Scene
|
|
3103
|
+
): sap.ui.vk.svg.Viewport;
|
|
3104
|
+
/**
|
|
3105
|
+
* Sets the current scene to use the camera view information acquired from the {@link sap.ui.vk.Viewport#getViewInfo
|
|
3106
|
+
* getViewInfo} method.
|
|
3107
|
+
* Internally, the `setViewInfo` method activates certain steps at certain animation times, and then changes
|
|
3108
|
+
* the camera position, rotation and field of view (FOV) / zoom factor.
|
|
3109
|
+
*/
|
|
3110
|
+
setViewInfo(
|
|
3111
|
+
/**
|
|
3112
|
+
* A JSON-like object containing view information acquired using the {@link sap.ui.vk.Viewport#getViewInfo
|
|
3113
|
+
* getViewInfo} method.
|
|
3114
|
+
*/
|
|
3115
|
+
viewInfo: {
|
|
3116
|
+
/**
|
|
3117
|
+
* A JSON-like object containing the camera information.
|
|
3118
|
+
*/
|
|
3119
|
+
camera?: object;
|
|
3120
|
+
/**
|
|
3121
|
+
* A JSON-like object containing the visibility information.
|
|
3122
|
+
*/
|
|
3123
|
+
visibility?: {
|
|
3124
|
+
/**
|
|
3125
|
+
* If the mode equals to {@link sap.ui.vk.VisibilityMode.Complete complete} then the visible and hidden
|
|
3126
|
+
* fields are defined. If the mode equals {@link sap.ui.vk.VisibilityMode.Differences differences} then
|
|
3127
|
+
* the changes field is defined.
|
|
3128
|
+
*/
|
|
3129
|
+
mode: sap.ui.vk.VisibilityMode;
|
|
3130
|
+
/**
|
|
3131
|
+
* List of Ids of visible nodes.
|
|
3132
|
+
*/
|
|
3133
|
+
visible: string[];
|
|
3134
|
+
/**
|
|
3135
|
+
* List of Ids of hidden nodes.
|
|
3136
|
+
*/
|
|
3137
|
+
hidden: string[];
|
|
3138
|
+
/**
|
|
3139
|
+
* List of Ids of nodes with inverted visibility.
|
|
3140
|
+
*/
|
|
3141
|
+
changes: string[];
|
|
3142
|
+
};
|
|
3143
|
+
/**
|
|
3144
|
+
* A JSON-like object containing the selection information.
|
|
3145
|
+
*/
|
|
3146
|
+
selection?: {
|
|
3147
|
+
/**
|
|
3148
|
+
* List of Ids of selected nodes.
|
|
3149
|
+
*/
|
|
3150
|
+
selected: string[];
|
|
3151
|
+
/**
|
|
3152
|
+
* List of Ids of outlined nodes.
|
|
3153
|
+
*/
|
|
3154
|
+
outlined: string[];
|
|
3155
|
+
};
|
|
3156
|
+
},
|
|
3157
|
+
/**
|
|
3158
|
+
* Fly-to animation duration in seconds.
|
|
3159
|
+
*/
|
|
3160
|
+
flyToDuration?: float
|
|
3161
|
+
): sap.ui.vk.Viewport;
|
|
3162
|
+
|
|
3163
|
+
showHotspots(
|
|
3164
|
+
/**
|
|
3165
|
+
* The node reference or the array of node references that we want to tint.
|
|
3166
|
+
*/
|
|
3167
|
+
nodeRefs: any | any[],
|
|
3168
|
+
/**
|
|
3169
|
+
* Whether to highlight the nodes or remove the highlight.
|
|
3170
|
+
*/
|
|
3171
|
+
show: boolean,
|
|
3172
|
+
/**
|
|
3173
|
+
* The color to use for highlighting the nodes passed as argument.
|
|
3174
|
+
*/
|
|
3175
|
+
color: int | /* was: sap.ui.vk.CSSColor */ any
|
|
3176
|
+
): sap.ui.vk.Viewport;
|
|
3177
|
+
/**
|
|
3178
|
+
* Zooms the scene to a bounding box created from a particular set of nodes.
|
|
3179
|
+
*/
|
|
3180
|
+
zoomTo(
|
|
3181
|
+
/**
|
|
3182
|
+
* What set of nodes to zoom to.
|
|
3183
|
+
*/
|
|
3184
|
+
what: sap.ui.vk.ZoomTo | sap.ui.vk.ZoomTo[],
|
|
3185
|
+
/**
|
|
3186
|
+
* Is used if what == (sap.ui.vk.ZoomTo.Node || ZoomTo.NodeSetIsolation)
|
|
3187
|
+
*/
|
|
3188
|
+
nodeRef: any,
|
|
3189
|
+
/**
|
|
3190
|
+
* Time to perform the "fly to" animation. Set to 0 to do this immediately.
|
|
3191
|
+
*/
|
|
3192
|
+
crossFadeSeconds: float,
|
|
3193
|
+
/**
|
|
3194
|
+
* Margin. Set to 0 to zoom to the entire screen.
|
|
3195
|
+
*/
|
|
3196
|
+
margin: float
|
|
3197
|
+
): sap.ui.vk.Viewport;
|
|
3198
|
+
}
|
|
2747
3199
|
/**
|
|
2748
3200
|
* @SINCE 1.80.0
|
|
2749
3201
|
*
|
|
@@ -3442,7 +3894,7 @@ declare namespace sap {
|
|
|
3442
3894
|
*/
|
|
3443
3895
|
enumerateAncestors(
|
|
3444
3896
|
/**
|
|
3445
|
-
* The reference object of a node whose
|
|
3897
|
+
* The reference object of a node whose ancestor nodes we want enumerated.
|
|
3446
3898
|
*/
|
|
3447
3899
|
nodeRef: any,
|
|
3448
3900
|
/**
|
|
@@ -3451,8 +3903,8 @@ declare namespace sap {
|
|
|
3451
3903
|
*/
|
|
3452
3904
|
callback: Function,
|
|
3453
3905
|
/**
|
|
3454
|
-
* Indicates whether to pass the node references of the
|
|
3455
|
-
*
|
|
3906
|
+
* Indicates whether to pass the node references of the ancestor nodes, or the whole node proxy to the `callback`
|
|
3907
|
+
* function.
|
|
3456
3908
|
* If `true`, then only the node references of the ancestor nodes are passed to the `callback` function.
|
|
3457
3909
|
*
|
|
3458
3910
|
* If `false`, then the node proxies of the ancestor nodes are passed to the `callback` function.
|
|
@@ -3464,7 +3916,7 @@ declare namespace sap {
|
|
|
3464
3916
|
*
|
|
3465
3917
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
3466
3918
|
* it passes the child nodes to one by one.
|
|
3467
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
3919
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
3468
3920
|
* after each call to the `callback` function.
|
|
3469
3921
|
*/
|
|
3470
3922
|
enumerateChildren(
|
|
@@ -3499,7 +3951,7 @@ declare namespace sap {
|
|
|
3499
3951
|
*
|
|
3500
3952
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
3501
3953
|
* it passes the child nodes to one by one.
|
|
3502
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
3954
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
3503
3955
|
* after each call to the `callback` function.
|
|
3504
3956
|
*/
|
|
3505
3957
|
enumerateChildren(
|
|
@@ -3568,6 +4020,38 @@ declare namespace sap {
|
|
|
3568
4020
|
*/
|
|
3569
4021
|
query: object
|
|
3570
4022
|
): THREE.Object3D[];
|
|
4023
|
+
/**
|
|
4024
|
+
* Find nodes by UsageId path.
|
|
4025
|
+
*
|
|
4026
|
+
* The method can return multiple nodes matching `path` especially when `path contains a string "**"`.
|
|
4027
|
+
*/
|
|
4028
|
+
findNodesByUsageIdPath(
|
|
4029
|
+
/**
|
|
4030
|
+
* A UsageId name which the keys in `path` belong to.
|
|
4031
|
+
*/
|
|
4032
|
+
usageIdName: string,
|
|
4033
|
+
/**
|
|
4034
|
+
* An array of UsageId keys where each item is a single JSON like object with properties `name` and `value`
|
|
4035
|
+
* for single-key UsageIds and an array of such objects for multi-key UsageIds. The item can can be a string
|
|
4036
|
+
* `"*"` to indicate that it can be any node or the item can be a string `"**"` to indicate that some nodes
|
|
4037
|
+
* can be skipped.
|
|
4038
|
+
*/
|
|
4039
|
+
path: any[],
|
|
4040
|
+
/**
|
|
4041
|
+
* Optional settings for the method.
|
|
4042
|
+
*/
|
|
4043
|
+
options?: {
|
|
4044
|
+
/**
|
|
4045
|
+
* An optional non-`null` node reference for limiting the scope of search with a subtree starting with the
|
|
4046
|
+
* `options.searchUnder` node excluding the `options.searchUnder` node itself.
|
|
4047
|
+
*/
|
|
4048
|
+
searchUnder?: any;
|
|
4049
|
+
/**
|
|
4050
|
+
* An indicator to search in ***closed*** nodes as well.
|
|
4051
|
+
*/
|
|
4052
|
+
stepIntoClosedNodes?: boolean;
|
|
4053
|
+
}
|
|
4054
|
+
): any[];
|
|
3571
4055
|
/**
|
|
3572
4056
|
* Returns a list of reference objects belonging to the ancestors of a particular node.
|
|
3573
4057
|
*/
|
|
@@ -3715,11 +4199,11 @@ declare namespace sap {
|
|
|
3715
4199
|
/**
|
|
3716
4200
|
* Material to be replaced.
|
|
3717
4201
|
*/
|
|
3718
|
-
materialToReplace: sap.ui.vk.Material,
|
|
4202
|
+
materialToReplace: sap.ui.vk.Material | THREE.Material,
|
|
3719
4203
|
/**
|
|
3720
4204
|
* Material replacement.
|
|
3721
4205
|
*/
|
|
3722
|
-
material: sap.ui.vk.Material
|
|
4206
|
+
material: sap.ui.vk.Material | THREE.Material
|
|
3723
4207
|
): sap.ui.vk.NodeHierarchy;
|
|
3724
4208
|
}
|
|
3725
4209
|
/**
|
|
@@ -3963,7 +4447,7 @@ declare namespace sap {
|
|
|
3963
4447
|
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
3964
4448
|
}
|
|
3965
4449
|
/**
|
|
3966
|
-
* Provides a
|
|
4450
|
+
* Provides a control for three.js canvas.
|
|
3967
4451
|
*/
|
|
3968
4452
|
class Viewport extends sap.ui.vk.ViewportBase {
|
|
3969
4453
|
/**
|
|
@@ -5261,6 +5745,11 @@ declare namespace sap {
|
|
|
5261
5745
|
}
|
|
5262
5746
|
|
|
5263
5747
|
interface $RedlineToolSettings extends sap.ui.vk.tools.$ToolSettings {
|
|
5748
|
+
/**
|
|
5749
|
+
* Determines if elements editing is enabled
|
|
5750
|
+
*/
|
|
5751
|
+
editable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
5752
|
+
|
|
5264
5753
|
/**
|
|
5265
5754
|
* The redline element/elements which will be rendered as soon as the redline tool is activated.
|
|
5266
5755
|
*/
|
|
@@ -5400,7 +5889,7 @@ declare namespace sap {
|
|
|
5400
5889
|
|
|
5401
5890
|
/**
|
|
5402
5891
|
* If set to `true` then this tool will enable scaling along a single axis, otherwise it will scale objects
|
|
5403
|
-
* along all three axes
|
|
5892
|
+
* along all three axes proportionally
|
|
5404
5893
|
*/
|
|
5405
5894
|
nonUniformScaleEnabled?:
|
|
5406
5895
|
| boolean
|
|
@@ -6634,7 +7123,7 @@ declare namespace sap {
|
|
|
6634
7123
|
/**
|
|
6635
7124
|
* Created node.
|
|
6636
7125
|
*
|
|
6637
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7126
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
6638
7127
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
6639
7128
|
* object in parametrics array
|
|
6640
7129
|
*/
|
|
@@ -6826,7 +7315,7 @@ declare namespace sap {
|
|
|
6826
7315
|
/**
|
|
6827
7316
|
* Created node.
|
|
6828
7317
|
*
|
|
6829
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7318
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
6830
7319
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
6831
7320
|
* object in parametrics array
|
|
6832
7321
|
*/
|
|
@@ -7024,7 +7513,7 @@ declare namespace sap {
|
|
|
7024
7513
|
/**
|
|
7025
7514
|
* Created node.
|
|
7026
7515
|
*
|
|
7027
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7516
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
7028
7517
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
7029
7518
|
* object in parametrics array
|
|
7030
7519
|
*/
|
|
@@ -7216,7 +7705,7 @@ declare namespace sap {
|
|
|
7216
7705
|
/**
|
|
7217
7706
|
* Created node.
|
|
7218
7707
|
*
|
|
7219
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7708
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
7220
7709
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
7221
7710
|
* object in parametrics array
|
|
7222
7711
|
*/
|
|
@@ -9126,7 +9615,7 @@ declare namespace sap {
|
|
|
9126
9615
|
z: float,
|
|
9127
9616
|
/**
|
|
9128
9617
|
* Optional parameter to define coordinate system to be used when these coordinates are applied. If not
|
|
9129
|
-
* specified then currently set coordinate
|
|
9618
|
+
* specified then currently set coordinate system will be used.
|
|
9130
9619
|
*/
|
|
9131
9620
|
coordinateSystem?: sap.ui.vk.tools.CoordinateSystem
|
|
9132
9621
|
): sap.ui.vk.tools.MoveTool;
|
|
@@ -9658,6 +10147,14 @@ declare namespace sap {
|
|
|
9658
10147
|
elementId?: string;
|
|
9659
10148
|
}
|
|
9660
10149
|
): this;
|
|
10150
|
+
/**
|
|
10151
|
+
* Gets current value of property {@link #getEditable editable}.
|
|
10152
|
+
*
|
|
10153
|
+
* Determines if elements editing is enabled
|
|
10154
|
+
*
|
|
10155
|
+
* Default value is `true`.
|
|
10156
|
+
*/
|
|
10157
|
+
getEditable(): boolean;
|
|
9661
10158
|
/**
|
|
9662
10159
|
* Gets content of aggregation {@link #getRedlineElements redlineElements}.
|
|
9663
10160
|
*
|
|
@@ -9734,6 +10231,21 @@ declare namespace sap {
|
|
|
9734
10231
|
*/
|
|
9735
10232
|
vRedlineElement: int | string | sap.ui.vk.RedlineElement
|
|
9736
10233
|
): sap.ui.vk.RedlineElement;
|
|
10234
|
+
/**
|
|
10235
|
+
* Sets a new value for property {@link #getEditable editable}.
|
|
10236
|
+
*
|
|
10237
|
+
* Determines if elements editing is enabled
|
|
10238
|
+
*
|
|
10239
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10240
|
+
*
|
|
10241
|
+
* Default value is `true`.
|
|
10242
|
+
*/
|
|
10243
|
+
setEditable(
|
|
10244
|
+
/**
|
|
10245
|
+
* New value for property `editable`
|
|
10246
|
+
*/
|
|
10247
|
+
bEditable?: boolean
|
|
10248
|
+
): this;
|
|
9737
10249
|
/**
|
|
9738
10250
|
* Prepares the RedlineTool control for adding a new instance of {sap.ui.vk.RedlineElement}.
|
|
9739
10251
|
*/
|
|
@@ -10427,7 +10939,7 @@ declare namespace sap {
|
|
|
10427
10939
|
z: float,
|
|
10428
10940
|
/**
|
|
10429
10941
|
* Optional parameter to define coordinate system to be used when these coordinates are applied. If not
|
|
10430
|
-
* specified then currently set coordinate
|
|
10942
|
+
* specified then currently set coordinate system will be used.
|
|
10431
10943
|
*/
|
|
10432
10944
|
coordinateSystem?: sap.ui.vk.tools.CoordinateSystem
|
|
10433
10945
|
): sap.ui.vk.tools.RotateTool;
|
|
@@ -11132,7 +11644,7 @@ declare namespace sap {
|
|
|
11132
11644
|
* Gets current value of property {@link #getNonUniformScaleEnabled nonUniformScaleEnabled}.
|
|
11133
11645
|
*
|
|
11134
11646
|
* If set to `true` then this tool will enable scaling along a single axis, otherwise it will scale objects
|
|
11135
|
-
* along all three axes
|
|
11647
|
+
* along all three axes proportionally
|
|
11136
11648
|
*
|
|
11137
11649
|
* Default value is `false`.
|
|
11138
11650
|
*/
|
|
@@ -11181,7 +11693,7 @@ declare namespace sap {
|
|
|
11181
11693
|
z: float,
|
|
11182
11694
|
/**
|
|
11183
11695
|
* Optional parameter to define coordinate system to be used when these coordinates are applied. If not
|
|
11184
|
-
* specified then currently set coordinate
|
|
11696
|
+
* specified then currently set coordinate system will be used.
|
|
11185
11697
|
*/
|
|
11186
11698
|
coordinateSystem?: sap.ui.vk.tools.CoordinateSystem
|
|
11187
11699
|
): sap.ui.vk.tools.ScaleTool;
|
|
@@ -11279,7 +11791,7 @@ declare namespace sap {
|
|
|
11279
11791
|
* Sets a new value for property {@link #getNonUniformScaleEnabled nonUniformScaleEnabled}.
|
|
11280
11792
|
*
|
|
11281
11793
|
* If set to `true` then this tool will enable scaling along a single axis, otherwise it will scale objects
|
|
11282
|
-
* along all three axes
|
|
11794
|
+
* along all three axes proportionally
|
|
11283
11795
|
*
|
|
11284
11796
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11285
11797
|
*
|
|
@@ -11698,7 +12210,7 @@ declare namespace sap {
|
|
|
11698
12210
|
): this;
|
|
11699
12211
|
}
|
|
11700
12212
|
/**
|
|
11701
|
-
* The TooltipTool
|
|
12213
|
+
* The TooltipTool allows applications to display custom tooltip text on top of 3D object over which pointer
|
|
11702
12214
|
* is hovering
|
|
11703
12215
|
*/
|
|
11704
12216
|
class TooltipTool extends sap.ui.vk.tools.Tool {
|
|
@@ -12691,8 +13203,9 @@ declare namespace sap {
|
|
|
12691
13203
|
* Contract for authorization callback function
|
|
12692
13204
|
*
|
|
12693
13205
|
* A callback function which can be implemented by an application to provide an authorization token. Such
|
|
12694
|
-
* function receives single parameter which is connection URL and must return a promise which will
|
|
12695
|
-
*
|
|
13206
|
+
* a function receives a single parameter which is a connection URL and must return a promise which will
|
|
13207
|
+
* be resolved to {@link https://www.oauth.com/oauth2-servers/access-tokens/access-token-response/ Access
|
|
13208
|
+
* Token Response} when authorization token is obtained.
|
|
12696
13209
|
*
|
|
12697
13210
|
* A sample implementation of authorization handler::
|
|
12698
13211
|
* ```javascript
|
|
@@ -12796,7 +13309,7 @@ declare namespace sap {
|
|
|
12796
13309
|
* the {@link https://en.wikipedia.org/wiki/Hash-based_message_authentication_code HMAC}-{@link https://en.wikipedia.org/wiki/SHA-2
|
|
12797
13310
|
* SHA256} function 10,000 times.
|
|
12798
13311
|
*
|
|
12799
|
-
* The resulting 128-bit key should be passed to
|
|
13312
|
+
* The resulting 128-bit key should be passed to subsequent calls to {@link sap.ui.vk.DecryptionHandler#decrypt
|
|
12800
13313
|
* sap.ui.vk.DecryptionHandler.decrypt}.
|
|
12801
13314
|
*/
|
|
12802
13315
|
deriveKey(
|
|
@@ -12875,7 +13388,7 @@ declare namespace sap {
|
|
|
12875
13388
|
animationDelay?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12876
13389
|
|
|
12877
13390
|
/**
|
|
12878
|
-
* Controls the annotation
|
|
13391
|
+
* Controls the annotation selected state
|
|
12879
13392
|
*/
|
|
12880
13393
|
selected?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12881
13394
|
|
|
@@ -13200,7 +13713,7 @@ declare namespace sap {
|
|
|
13200
13713
|
|
|
13201
13714
|
/**
|
|
13202
13715
|
* Optional boolean parameter to enable detailed logging. Can be used to track performance issues during
|
|
13203
|
-
* data streaming from SAP 3D
|
|
13716
|
+
* data streaming from SAP 3D Visualization Service.
|
|
13204
13717
|
*/
|
|
13205
13718
|
enableLogger?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13206
13719
|
|
|
@@ -13225,6 +13738,17 @@ declare namespace sap {
|
|
|
13225
13738
|
| boolean
|
|
13226
13739
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13227
13740
|
|
|
13741
|
+
/**
|
|
13742
|
+
* Optional parameter to load UsageIds. Valid values:
|
|
13743
|
+
* `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
|
|
13744
|
+
* for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
|
|
13745
|
+
* `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
|
|
13746
|
+
* - An array of non-empty strings which define the names of requested UsageIds.
|
|
13747
|
+
*/
|
|
13748
|
+
includeUsageId?:
|
|
13749
|
+
| sap.ui.vk.IncludeUsageIdType
|
|
13750
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13751
|
+
|
|
13228
13752
|
/**
|
|
13229
13753
|
* Child content resources.
|
|
13230
13754
|
*/
|
|
@@ -13466,28 +13990,28 @@ declare namespace sap {
|
|
|
13466
13990
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13467
13991
|
|
|
13468
13992
|
/**
|
|
13469
|
-
* Ambient colour (optional) - red, green, blue, and
|
|
13993
|
+
* Ambient colour (optional) - red, green, blue, and alpha
|
|
13470
13994
|
*/
|
|
13471
13995
|
ambientColour?:
|
|
13472
13996
|
| sap.ui.core.CSSColor
|
|
13473
13997
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13474
13998
|
|
|
13475
13999
|
/**
|
|
13476
|
-
* Diffuse colour (optional) - red, green, blue, and
|
|
14000
|
+
* Diffuse colour (optional) - red, green, blue, and alpha
|
|
13477
14001
|
*/
|
|
13478
14002
|
diffuseColour?:
|
|
13479
14003
|
| sap.ui.core.CSSColor
|
|
13480
14004
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13481
14005
|
|
|
13482
14006
|
/**
|
|
13483
|
-
* Specular colour (optional) - red, green, blue, and
|
|
14007
|
+
* Specular colour (optional) - red, green, blue, and alpha
|
|
13484
14008
|
*/
|
|
13485
14009
|
specularColour?:
|
|
13486
14010
|
| sap.ui.core.CSSColor
|
|
13487
14011
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13488
14012
|
|
|
13489
14013
|
/**
|
|
13490
|
-
* Emissive colour (optional) - red, green, blue, and
|
|
14014
|
+
* Emissive colour (optional) - red, green, blue, and alpha
|
|
13491
14015
|
*/
|
|
13492
14016
|
emissiveColour?:
|
|
13493
14017
|
| sap.ui.core.CSSColor
|
|
@@ -13504,7 +14028,7 @@ declare namespace sap {
|
|
|
13504
14028
|
glossiness?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13505
14029
|
|
|
13506
14030
|
/**
|
|
13507
|
-
* Line colour (optional) - red, green, blue, and
|
|
14031
|
+
* Line colour (optional) - red, green, blue, and alpha
|
|
13508
14032
|
*/
|
|
13509
14033
|
lineColour?:
|
|
13510
14034
|
| sap.ui.core.CSSColor
|
|
@@ -13558,18 +14082,14 @@ declare namespace sap {
|
|
|
13558
14082
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13559
14083
|
}
|
|
13560
14084
|
|
|
13561
|
-
interface $NativeViewportSettings
|
|
14085
|
+
interface $NativeViewportSettings
|
|
14086
|
+
extends sap.ui.vk.$ViewportBaseSettings {
|
|
13562
14087
|
/**
|
|
13563
|
-
* Limit the
|
|
14088
|
+
* Limit the ability to zoom out. If enabled the zoom out stops if the image size reaches 25% of the full
|
|
13564
14089
|
* view (best fit).
|
|
13565
14090
|
*/
|
|
13566
14091
|
limitZoomOut?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13567
14092
|
|
|
13568
|
-
/**
|
|
13569
|
-
* An association to the `ContentConnector` instance that manages content resources.
|
|
13570
|
-
*/
|
|
13571
|
-
contentConnector?: sap.ui.vk.ContentConnector | string;
|
|
13572
|
-
|
|
13573
14093
|
/**
|
|
13574
14094
|
* Raised when the display size of the image in the Native Viewport changes.
|
|
13575
14095
|
*/
|
|
@@ -13768,12 +14288,12 @@ declare namespace sap {
|
|
|
13768
14288
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13769
14289
|
|
|
13770
14290
|
/**
|
|
13771
|
-
* The select color of the OverlayArea in case selection
|
|
14291
|
+
* The select color of the OverlayArea in case selection highlighting is desired.
|
|
13772
14292
|
*/
|
|
13773
14293
|
colorSelect?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13774
14294
|
|
|
13775
14295
|
/**
|
|
13776
|
-
* The non-select color of the OverlayArea in case non-selection de-
|
|
14296
|
+
* The non-select color of the OverlayArea in case non-selection de-highlighting is desired.
|
|
13777
14297
|
*/
|
|
13778
14298
|
colorNonSelect?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13779
14299
|
|
|
@@ -13813,17 +14333,17 @@ declare namespace sap {
|
|
|
13813
14333
|
edgeContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
13814
14334
|
|
|
13815
14335
|
/**
|
|
13816
|
-
* This event is raised when the design handle of a
|
|
14336
|
+
* This event is raised when the design handle of a changeable OverlayArea is moved.
|
|
13817
14337
|
*/
|
|
13818
14338
|
handleMoved?: (oEvent: sap.ui.base.Event) => void;
|
|
13819
14339
|
|
|
13820
14340
|
/**
|
|
13821
|
-
* This event is raised when the design handle of a
|
|
14341
|
+
* This event is raised when the design handle of a changeable OverlayArea is right clicked.
|
|
13822
14342
|
*/
|
|
13823
14343
|
handleContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
13824
14344
|
|
|
13825
14345
|
/**
|
|
13826
|
-
* This event is raised when the design handle of a
|
|
14346
|
+
* This event is raised when the design handle of a changeable OverlayArea is clicked.
|
|
13827
14347
|
*/
|
|
13828
14348
|
handleClick?: (oEvent: sap.ui.base.Event) => void;
|
|
13829
14349
|
}
|
|
@@ -13926,6 +14446,8 @@ declare namespace sap {
|
|
|
13926
14446
|
deleteTimestamp?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13927
14447
|
|
|
13928
14448
|
suppress?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14449
|
+
|
|
14450
|
+
elementId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13929
14451
|
}
|
|
13930
14452
|
|
|
13931
14453
|
interface $RedlineElementCommentSettings
|
|
@@ -13958,6 +14480,8 @@ declare namespace sap {
|
|
|
13958
14480
|
deltaX?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13959
14481
|
|
|
13960
14482
|
deltaY?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14483
|
+
|
|
14484
|
+
endArrowHead?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13961
14485
|
}
|
|
13962
14486
|
|
|
13963
14487
|
interface $RedlineElementRectangleSettings
|
|
@@ -13982,6 +14506,10 @@ declare namespace sap {
|
|
|
13982
14506
|
fillColor?:
|
|
13983
14507
|
| sap.ui.core.CSSColor
|
|
13984
14508
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14509
|
+
|
|
14510
|
+
width?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14511
|
+
|
|
14512
|
+
height?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13985
14513
|
}
|
|
13986
14514
|
|
|
13987
14515
|
interface $RedlineSurfaceSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -14230,6 +14758,13 @@ declare namespace sap {
|
|
|
14230
14758
|
* ignored.
|
|
14231
14759
|
*/
|
|
14232
14760
|
aspectRatio?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14761
|
+
|
|
14762
|
+
/**
|
|
14763
|
+
* Flag for auto-playing animation on view activation (optional)
|
|
14764
|
+
*/
|
|
14765
|
+
autoPlayAnimation?:
|
|
14766
|
+
| boolean
|
|
14767
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14233
14768
|
}
|
|
14234
14769
|
|
|
14235
14770
|
interface $ViewerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -14469,13 +15004,13 @@ declare namespace sap {
|
|
|
14469
15004
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14470
15005
|
|
|
14471
15006
|
/**
|
|
14472
|
-
* Sets the transparency level of the
|
|
15007
|
+
* Sets the transparency level of the view gallery. Range is 0-1, with 1 being 100% opaque and 0 being 0%
|
|
14473
15008
|
* opaque
|
|
14474
15009
|
*/
|
|
14475
15010
|
transparency?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14476
15011
|
|
|
14477
15012
|
/**
|
|
14478
|
-
* If disabled,
|
|
15013
|
+
* If disabled, view gallery is non-interactive and greyed out
|
|
14479
15014
|
*/
|
|
14480
15015
|
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14481
15016
|
|
|
@@ -14611,9 +15146,9 @@ declare namespace sap {
|
|
|
14611
15146
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14612
15147
|
|
|
14613
15148
|
/**
|
|
14614
|
-
* Color used
|
|
15149
|
+
* Color used to highlight all hotspots when the showAllHotspots property has a value of true.
|
|
14615
15150
|
*/
|
|
14616
|
-
|
|
15151
|
+
showAllHotspotsTintColor?:
|
|
14617
15152
|
| sap.ui.core.CSSColor
|
|
14618
15153
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14619
15154
|
|
|
@@ -14789,6 +15324,93 @@ declare namespace sap {
|
|
|
14789
15324
|
outlineWidthChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
14790
15325
|
}
|
|
14791
15326
|
|
|
15327
|
+
/**
|
|
15328
|
+
* @SINCE 1.96.0
|
|
15329
|
+
*
|
|
15330
|
+
* This type defines possible valid values for property {@link sap.ui.vk.ContentResource#getIncludeUsageId
|
|
15331
|
+
* ContentResource.includeUsageId}.
|
|
15332
|
+
*
|
|
15333
|
+
* The possible valid values:
|
|
15334
|
+
* `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
|
|
15335
|
+
* for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
|
|
15336
|
+
* `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
|
|
15337
|
+
* - An array of non-empty strings which define the names of requested UsageIds.
|
|
15338
|
+
*/
|
|
15339
|
+
interface IncludeUsageIdType {}
|
|
15340
|
+
const IncludeUsageIdType: IncludeUsageIdType;
|
|
15341
|
+
|
|
15342
|
+
/**
|
|
15343
|
+
* @SINCE 1.32.0
|
|
15344
|
+
*
|
|
15345
|
+
* Transformation matrix is an array of 12 numbers in a row major mode.
|
|
15346
|
+
*/
|
|
15347
|
+
interface TransformationMatrix {
|
|
15348
|
+
/**
|
|
15349
|
+
* Converts matrix from 3x2 to 4x3.
|
|
15350
|
+
*/
|
|
15351
|
+
convert3x2To4x3(
|
|
15352
|
+
/**
|
|
15353
|
+
* The matrix to convert.
|
|
15354
|
+
*/
|
|
15355
|
+
m3x2: float[]
|
|
15356
|
+
): float[];
|
|
15357
|
+
/**
|
|
15358
|
+
* Converts matrix from 4x3 to 3x2.
|
|
15359
|
+
*/
|
|
15360
|
+
convert4x3To3x2(
|
|
15361
|
+
/**
|
|
15362
|
+
* The matrix 4x3 to convert.
|
|
15363
|
+
*/
|
|
15364
|
+
m4x3: float[]
|
|
15365
|
+
): float[];
|
|
15366
|
+
/**
|
|
15367
|
+
* Converts matrix from 4x4 to 3x2.
|
|
15368
|
+
*/
|
|
15369
|
+
convert4x4To3x2(
|
|
15370
|
+
/**
|
|
15371
|
+
* The matrix 4x4 to convert.
|
|
15372
|
+
*/
|
|
15373
|
+
m4x4: float[]
|
|
15374
|
+
): float[];
|
|
15375
|
+
/**
|
|
15376
|
+
* Converts matrix from 4x4 or 4x4 to 3x2.
|
|
15377
|
+
*/
|
|
15378
|
+
convertTo3x2(
|
|
15379
|
+
/**
|
|
15380
|
+
* The matrix 4x4 or 4x3 to convert.
|
|
15381
|
+
*/
|
|
15382
|
+
m: float[]
|
|
15383
|
+
): float[];
|
|
15384
|
+
/**
|
|
15385
|
+
* Converts matrix from 4x4 to 4x3.
|
|
15386
|
+
*/
|
|
15387
|
+
convertTo4x3(
|
|
15388
|
+
/**
|
|
15389
|
+
* The matrix to convert. The last column must be [0, 0, 0, 1].
|
|
15390
|
+
*/
|
|
15391
|
+
matrix4x4: float[]
|
|
15392
|
+
): float[];
|
|
15393
|
+
/**
|
|
15394
|
+
* Converts matrix from 4x3 to 4x4.
|
|
15395
|
+
*/
|
|
15396
|
+
convertTo4x4(
|
|
15397
|
+
/**
|
|
15398
|
+
* The matrix to convert.
|
|
15399
|
+
*/
|
|
15400
|
+
matrix4x3: float[]
|
|
15401
|
+
): float[];
|
|
15402
|
+
/**
|
|
15403
|
+
* Parses the given string value and converts it into an array of numbers.
|
|
15404
|
+
*/
|
|
15405
|
+
parseValue(
|
|
15406
|
+
/**
|
|
15407
|
+
* a comma or white space delimited string
|
|
15408
|
+
*/
|
|
15409
|
+
value: string
|
|
15410
|
+
): float[];
|
|
15411
|
+
}
|
|
15412
|
+
const TransformationMatrix: TransformationMatrix;
|
|
15413
|
+
|
|
14792
15414
|
/**
|
|
14793
15415
|
* @EXPERIMENTAL (since 1.67.0)
|
|
14794
15416
|
*
|
|
@@ -15307,7 +15929,7 @@ declare namespace sap {
|
|
|
15307
15929
|
/**
|
|
15308
15930
|
* Gets current value of property {@link #getSelected selected}.
|
|
15309
15931
|
*
|
|
15310
|
-
* Controls the annotation
|
|
15932
|
+
* Controls the annotation selected state
|
|
15311
15933
|
*
|
|
15312
15934
|
* Default value is `false`.
|
|
15313
15935
|
*/
|
|
@@ -15515,7 +16137,7 @@ declare namespace sap {
|
|
|
15515
16137
|
/**
|
|
15516
16138
|
* Sets a new value for property {@link #getSelected selected}.
|
|
15517
16139
|
*
|
|
15518
|
-
* Controls the annotation
|
|
16140
|
+
* Controls the annotation selected state
|
|
15519
16141
|
*
|
|
15520
16142
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15521
16143
|
*
|
|
@@ -16555,7 +17177,7 @@ declare namespace sap {
|
|
|
16555
17177
|
* The simplest resolver tests the content resource source type. The test can be either a string comparison
|
|
16556
17178
|
* or a regular expression.
|
|
16557
17179
|
*
|
|
16558
|
-
* A more
|
|
17180
|
+
* A more sophisticated resolver is a function that can use the full content resource definition to find
|
|
16559
17181
|
* a proper content manager dynamically, e.g. the resolver can use the 'HEAD' HTTP request to get the 'Content-Type'
|
|
16560
17182
|
* header to find out the type of the content resource.
|
|
16561
17183
|
*/
|
|
@@ -17255,7 +17877,7 @@ declare namespace sap {
|
|
|
17255
17877
|
/**
|
|
17256
17878
|
* @SINCE 1.60.0
|
|
17257
17879
|
*
|
|
17258
|
-
* Sets a callback function which will be used to obtain
|
|
17880
|
+
* Sets a callback function which will be used to obtain authorization token when connected to remote server.
|
|
17259
17881
|
*/
|
|
17260
17882
|
setAuthorizationHandler(
|
|
17261
17883
|
/**
|
|
@@ -17274,6 +17896,45 @@ declare namespace sap {
|
|
|
17274
17896
|
*/
|
|
17275
17897
|
handler: sap.ui.vk.DecryptionHandler
|
|
17276
17898
|
): sap.ui.vk.ContentConnector;
|
|
17899
|
+
/**
|
|
17900
|
+
* @SINCE 1.95.0
|
|
17901
|
+
*
|
|
17902
|
+
* Sets the maximum number of retry attempts for a download operation if the initial request to retrieve
|
|
17903
|
+
* a model from a remote server could not be fulfilled and the error with which the request failed is considered
|
|
17904
|
+
* recoverable.
|
|
17905
|
+
*
|
|
17906
|
+
* Retry Mechanism: Requests to retrieve (download) a model from a remote server may not always be fulfilled.
|
|
17907
|
+
* If the request failed with an error that is considered recoverable then the download manager will
|
|
17908
|
+
* keep on trying issuing new requests until the request is fulfilled or the specified `retryCount` is exceeded.
|
|
17909
|
+
*
|
|
17910
|
+
* The default number of retry attempts is 1, unless specified otherwise by calling this method. Note that,
|
|
17911
|
+
* specifying 0 as `retryCount` disables the retry mechanism altogether.
|
|
17912
|
+
*
|
|
17913
|
+
* **Timing of retry attempts**: There is no delay between subsequent attempts.
|
|
17914
|
+
*
|
|
17915
|
+
* **Events fired**: The download manager will not fire any events between subsequent attempts. For
|
|
17916
|
+
* each requested item there will be a single `itemSucceeded` or `itemFailed` event fired when the download
|
|
17917
|
+
* operation for that given item finishes.
|
|
17918
|
+
*
|
|
17919
|
+
* **Recoverable errors**: The following errors are considered recoverable:
|
|
17920
|
+
* - Any kind of network error (e.g. due to temporary network outage). HTTP status code is expected to
|
|
17921
|
+
* be 0.
|
|
17922
|
+
* - Responses with the following 4xx-5xx HTTP status codes:
|
|
17923
|
+
* 408: Request Timeout
|
|
17924
|
+
* - 425: Too Early (RFC 8470)
|
|
17925
|
+
* - 429: Too Many Requests (RFC 6585)
|
|
17926
|
+
* - 500: Internal Server Error
|
|
17927
|
+
* - 502: Bad Gateway
|
|
17928
|
+
* - 503: Service Unavailable
|
|
17929
|
+
* - 504: Gateway Timeout
|
|
17930
|
+
*/
|
|
17931
|
+
setRetryCount(
|
|
17932
|
+
/**
|
|
17933
|
+
* Maximum number of retry attempts. Value must be non-negative. The default retry count is 1, unless specified
|
|
17934
|
+
* otherwise by calling this method and passing in the desired value. Passing in 0 disables any retry attempts.
|
|
17935
|
+
*/
|
|
17936
|
+
retryCount: int
|
|
17937
|
+
): sap.ui.vk.ContentConnector;
|
|
17277
17938
|
/**
|
|
17278
17939
|
* Unbinds aggregation {@link #getContentResources contentResources} from model data.
|
|
17279
17940
|
*/
|
|
@@ -17704,6 +18365,23 @@ declare namespace sap {
|
|
|
17704
18365
|
*/
|
|
17705
18366
|
contentResources: sap.ui.vk.ContentResource[]
|
|
17706
18367
|
): sap.ui.vk.ContentManager;
|
|
18368
|
+
/**
|
|
18369
|
+
* @SINCE 1.95.0
|
|
18370
|
+
*
|
|
18371
|
+
* Sets the maximum number of retry attempts for a download operation if the initial request to retrieve
|
|
18372
|
+
* a model from a remote server could not be fulfilled and the error with which the request failed is considered
|
|
18373
|
+
* recoverable.
|
|
18374
|
+
*
|
|
18375
|
+
* See {@link sap.ui.vk.ContentConnector#setRetryCount} for details.
|
|
18376
|
+
*/
|
|
18377
|
+
setRetryCount(
|
|
18378
|
+
/**
|
|
18379
|
+
* Maximum number of retry attempts. Value must be non-negative. The default number of retry attempts is
|
|
18380
|
+
* 1, unless specified otherwise by calling this method and passing in the desired value. Specifying 0 disables
|
|
18381
|
+
* any retry attempts.
|
|
18382
|
+
*/
|
|
18383
|
+
retryCount: int
|
|
18384
|
+
): sap.ui.vk.ContentManager;
|
|
17707
18385
|
}
|
|
17708
18386
|
/**
|
|
17709
18387
|
* Specifies a resource to load.
|
|
@@ -17817,7 +18495,9 @@ declare namespace sap {
|
|
|
17817
18495
|
* Gets current value of property {@link #getEnableLogger enableLogger}.
|
|
17818
18496
|
*
|
|
17819
18497
|
* Optional boolean parameter to enable detailed logging. Can be used to track performance issues during
|
|
17820
|
-
* data streaming from SAP 3D
|
|
18498
|
+
* data streaming from SAP 3D Visualization Service.
|
|
18499
|
+
*
|
|
18500
|
+
* Default value is `false`.
|
|
17821
18501
|
*/
|
|
17822
18502
|
getEnableLogger(): boolean;
|
|
17823
18503
|
/**
|
|
@@ -17825,12 +18505,16 @@ declare namespace sap {
|
|
|
17825
18505
|
*
|
|
17826
18506
|
* Send structural data for animation objects, if false they will be omitted, reducing data size. Default:
|
|
17827
18507
|
* true.
|
|
18508
|
+
*
|
|
18509
|
+
* Default value is `true`.
|
|
17828
18510
|
*/
|
|
17829
18511
|
getIncludeAnimation(): boolean;
|
|
17830
18512
|
/**
|
|
17831
18513
|
* Gets current value of property {@link #getIncludeBackground includeBackground}.
|
|
17832
18514
|
*
|
|
17833
18515
|
* If set to true, will return nodes with the type background
|
|
18516
|
+
*
|
|
18517
|
+
* Default value is `true`.
|
|
17834
18518
|
*/
|
|
17835
18519
|
getIncludeBackground(): boolean;
|
|
17836
18520
|
/**
|
|
@@ -17838,14 +18522,30 @@ declare namespace sap {
|
|
|
17838
18522
|
*
|
|
17839
18523
|
* Send structural data for hidden objects, if false they will be omitted, reducing data size. Default:
|
|
17840
18524
|
* true.
|
|
18525
|
+
*
|
|
18526
|
+
* Default value is `true`.
|
|
17841
18527
|
*/
|
|
17842
18528
|
getIncludeHidden(): boolean;
|
|
17843
18529
|
/**
|
|
17844
18530
|
* Gets current value of property {@link #getIncludeParametric includeParametric}.
|
|
17845
18531
|
*
|
|
17846
18532
|
* If set to true, will load parametric nodes
|
|
18533
|
+
*
|
|
18534
|
+
* Default value is `true`.
|
|
17847
18535
|
*/
|
|
17848
18536
|
getIncludeParametric(): boolean;
|
|
18537
|
+
/**
|
|
18538
|
+
* Gets current value of property {@link #getIncludeUsageId includeUsageId}.
|
|
18539
|
+
*
|
|
18540
|
+
* Optional parameter to load UsageIds. Valid values:
|
|
18541
|
+
* `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
|
|
18542
|
+
* for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
|
|
18543
|
+
* `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
|
|
18544
|
+
* - An array of non-empty strings which define the names of requested UsageIds.
|
|
18545
|
+
*
|
|
18546
|
+
* Default value is `false`.
|
|
18547
|
+
*/
|
|
18548
|
+
getIncludeUsageId(): sap.ui.vk.IncludeUsageIdType;
|
|
17849
18549
|
/**
|
|
17850
18550
|
* Gets current value of property {@link #getLocalMatrix localMatrix}.
|
|
17851
18551
|
*
|
|
@@ -17885,12 +18585,16 @@ declare namespace sap {
|
|
|
17885
18585
|
* Gets current value of property {@link #getPushPMI pushPMI}.
|
|
17886
18586
|
*
|
|
17887
18587
|
* If set to true, elements for PMI rendering content will be returned. Default: false.
|
|
18588
|
+
*
|
|
18589
|
+
* Default value is `false`.
|
|
17888
18590
|
*/
|
|
17889
18591
|
getPushPMI(): boolean;
|
|
17890
18592
|
/**
|
|
17891
18593
|
* Gets current value of property {@link #getPushViewGroups pushViewGroups}.
|
|
17892
18594
|
*
|
|
17893
18595
|
* If set to true, information of view groups will be returned. Default: true.
|
|
18596
|
+
*
|
|
18597
|
+
* Default value is `true`.
|
|
17894
18598
|
*/
|
|
17895
18599
|
getPushViewGroups(): boolean;
|
|
17896
18600
|
/**
|
|
@@ -18012,15 +18716,17 @@ declare namespace sap {
|
|
|
18012
18716
|
* Sets a new value for property {@link #getEnableLogger enableLogger}.
|
|
18013
18717
|
*
|
|
18014
18718
|
* Optional boolean parameter to enable detailed logging. Can be used to track performance issues during
|
|
18015
|
-
* data streaming from SAP 3D
|
|
18719
|
+
* data streaming from SAP 3D Visualization Service.
|
|
18016
18720
|
*
|
|
18017
18721
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18722
|
+
*
|
|
18723
|
+
* Default value is `false`.
|
|
18018
18724
|
*/
|
|
18019
18725
|
setEnableLogger(
|
|
18020
18726
|
/**
|
|
18021
18727
|
* New value for property `enableLogger`
|
|
18022
18728
|
*/
|
|
18023
|
-
bEnableLogger
|
|
18729
|
+
bEnableLogger?: boolean
|
|
18024
18730
|
): this;
|
|
18025
18731
|
/**
|
|
18026
18732
|
* Sets a new value for property {@link #getIncludeAnimation includeAnimation}.
|
|
@@ -18029,12 +18735,14 @@ declare namespace sap {
|
|
|
18029
18735
|
* true.
|
|
18030
18736
|
*
|
|
18031
18737
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18738
|
+
*
|
|
18739
|
+
* Default value is `true`.
|
|
18032
18740
|
*/
|
|
18033
18741
|
setIncludeAnimation(
|
|
18034
18742
|
/**
|
|
18035
18743
|
* New value for property `includeAnimation`
|
|
18036
18744
|
*/
|
|
18037
|
-
bIncludeAnimation
|
|
18745
|
+
bIncludeAnimation?: boolean
|
|
18038
18746
|
): this;
|
|
18039
18747
|
/**
|
|
18040
18748
|
* Sets a new value for property {@link #getIncludeBackground includeBackground}.
|
|
@@ -18042,12 +18750,14 @@ declare namespace sap {
|
|
|
18042
18750
|
* If set to true, will return nodes with the type background
|
|
18043
18751
|
*
|
|
18044
18752
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18753
|
+
*
|
|
18754
|
+
* Default value is `true`.
|
|
18045
18755
|
*/
|
|
18046
18756
|
setIncludeBackground(
|
|
18047
18757
|
/**
|
|
18048
18758
|
* New value for property `includeBackground`
|
|
18049
18759
|
*/
|
|
18050
|
-
bIncludeBackground
|
|
18760
|
+
bIncludeBackground?: boolean
|
|
18051
18761
|
): this;
|
|
18052
18762
|
/**
|
|
18053
18763
|
* Sets a new value for property {@link #getIncludeHidden includeHidden}.
|
|
@@ -18056,12 +18766,14 @@ declare namespace sap {
|
|
|
18056
18766
|
* true.
|
|
18057
18767
|
*
|
|
18058
18768
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18769
|
+
*
|
|
18770
|
+
* Default value is `true`.
|
|
18059
18771
|
*/
|
|
18060
18772
|
setIncludeHidden(
|
|
18061
18773
|
/**
|
|
18062
18774
|
* New value for property `includeHidden`
|
|
18063
18775
|
*/
|
|
18064
|
-
bIncludeHidden
|
|
18776
|
+
bIncludeHidden?: boolean
|
|
18065
18777
|
): this;
|
|
18066
18778
|
/**
|
|
18067
18779
|
* Sets a new value for property {@link #getIncludeParametric includeParametric}.
|
|
@@ -18069,12 +18781,33 @@ declare namespace sap {
|
|
|
18069
18781
|
* If set to true, will load parametric nodes
|
|
18070
18782
|
*
|
|
18071
18783
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18784
|
+
*
|
|
18785
|
+
* Default value is `true`.
|
|
18072
18786
|
*/
|
|
18073
18787
|
setIncludeParametric(
|
|
18074
18788
|
/**
|
|
18075
18789
|
* New value for property `includeParametric`
|
|
18076
18790
|
*/
|
|
18077
|
-
bIncludeParametric
|
|
18791
|
+
bIncludeParametric?: boolean
|
|
18792
|
+
): this;
|
|
18793
|
+
/**
|
|
18794
|
+
* Sets a new value for property {@link #getIncludeUsageId includeUsageId}.
|
|
18795
|
+
*
|
|
18796
|
+
* Optional parameter to load UsageIds. Valid values:
|
|
18797
|
+
* `true` - Load all UsageIds. This is potentially very expensive, as there could be many UsageIds defined
|
|
18798
|
+
* for the tenant which are not relevant to the current application. `false` - Do not load any UsageIds.
|
|
18799
|
+
* `string` - A single non-empty string which defines the name of the requested UsageId. `string[]`
|
|
18800
|
+
* - An array of non-empty strings which define the names of requested UsageIds.
|
|
18801
|
+
*
|
|
18802
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18803
|
+
*
|
|
18804
|
+
* Default value is `false`.
|
|
18805
|
+
*/
|
|
18806
|
+
setIncludeUsageId(
|
|
18807
|
+
/**
|
|
18808
|
+
* New value for property `includeUsageId`
|
|
18809
|
+
*/
|
|
18810
|
+
sIncludeUsageId?: sap.ui.vk.IncludeUsageIdType
|
|
18078
18811
|
): this;
|
|
18079
18812
|
/**
|
|
18080
18813
|
* Sets a new value for property {@link #getLocalMatrix localMatrix}.
|
|
@@ -18138,12 +18871,14 @@ declare namespace sap {
|
|
|
18138
18871
|
* If set to true, elements for PMI rendering content will be returned. Default: false.
|
|
18139
18872
|
*
|
|
18140
18873
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18874
|
+
*
|
|
18875
|
+
* Default value is `false`.
|
|
18141
18876
|
*/
|
|
18142
18877
|
setPushPMI(
|
|
18143
18878
|
/**
|
|
18144
18879
|
* New value for property `pushPMI`
|
|
18145
18880
|
*/
|
|
18146
|
-
bPushPMI
|
|
18881
|
+
bPushPMI?: boolean
|
|
18147
18882
|
): this;
|
|
18148
18883
|
/**
|
|
18149
18884
|
* Sets a new value for property {@link #getPushViewGroups pushViewGroups}.
|
|
@@ -18151,12 +18886,14 @@ declare namespace sap {
|
|
|
18151
18886
|
* If set to true, information of view groups will be returned. Default: true.
|
|
18152
18887
|
*
|
|
18153
18888
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18889
|
+
*
|
|
18890
|
+
* Default value is `true`.
|
|
18154
18891
|
*/
|
|
18155
18892
|
setPushViewGroups(
|
|
18156
18893
|
/**
|
|
18157
18894
|
* New value for property `pushViewGroups`
|
|
18158
18895
|
*/
|
|
18159
|
-
bPushViewGroups
|
|
18896
|
+
bPushViewGroups?: boolean
|
|
18160
18897
|
): this;
|
|
18161
18898
|
/**
|
|
18162
18899
|
* Sets a new value for property {@link #getSource source}.
|
|
@@ -18666,7 +19403,7 @@ declare namespace sap {
|
|
|
18666
19403
|
): this;
|
|
18667
19404
|
}
|
|
18668
19405
|
/**
|
|
18669
|
-
* @SINCE 1.
|
|
19406
|
+
* @SINCE 1.32.0
|
|
18670
19407
|
* @EXPERIMENTAL (since 1.32.0)
|
|
18671
19408
|
*
|
|
18672
19409
|
* Holds layout data for the FlexibleControl contents. Allowed size values are numeric values ending in
|
|
@@ -20181,7 +20918,7 @@ declare namespace sap {
|
|
|
20181
20918
|
/**
|
|
20182
20919
|
* Gets current value of property {@link #getAmbientColour ambientColour}.
|
|
20183
20920
|
*
|
|
20184
|
-
* Ambient colour (optional) - red, green, blue, and
|
|
20921
|
+
* Ambient colour (optional) - red, green, blue, and alpha
|
|
20185
20922
|
*
|
|
20186
20923
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20187
20924
|
*/
|
|
@@ -20189,7 +20926,7 @@ declare namespace sap {
|
|
|
20189
20926
|
/**
|
|
20190
20927
|
* Gets current value of property {@link #getDiffuseColour diffuseColour}.
|
|
20191
20928
|
*
|
|
20192
|
-
* Diffuse colour (optional) - red, green, blue, and
|
|
20929
|
+
* Diffuse colour (optional) - red, green, blue, and alpha
|
|
20193
20930
|
*
|
|
20194
20931
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20195
20932
|
*/
|
|
@@ -20197,7 +20934,7 @@ declare namespace sap {
|
|
|
20197
20934
|
/**
|
|
20198
20935
|
* Gets current value of property {@link #getEmissiveColour emissiveColour}.
|
|
20199
20936
|
*
|
|
20200
|
-
* Emissive colour (optional) - red, green, blue, and
|
|
20937
|
+
* Emissive colour (optional) - red, green, blue, and alpha
|
|
20201
20938
|
*
|
|
20202
20939
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20203
20940
|
*/
|
|
@@ -20219,7 +20956,7 @@ declare namespace sap {
|
|
|
20219
20956
|
/**
|
|
20220
20957
|
* Gets current value of property {@link #getLineColour lineColour}.
|
|
20221
20958
|
*
|
|
20222
|
-
* Line colour (optional) - red, green, blue, and
|
|
20959
|
+
* Line colour (optional) - red, green, blue, and alpha
|
|
20223
20960
|
*
|
|
20224
20961
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20225
20962
|
*/
|
|
@@ -20251,7 +20988,7 @@ declare namespace sap {
|
|
|
20251
20988
|
/**
|
|
20252
20989
|
* Gets current value of property {@link #getSpecularColour specularColour}.
|
|
20253
20990
|
*
|
|
20254
|
-
* Specular colour (optional) - red, green, blue, and
|
|
20991
|
+
* Specular colour (optional) - red, green, blue, and alpha
|
|
20255
20992
|
*
|
|
20256
20993
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20257
20994
|
*/
|
|
@@ -20295,7 +21032,7 @@ declare namespace sap {
|
|
|
20295
21032
|
/**
|
|
20296
21033
|
* Sets a new value for property {@link #getAmbientColour ambientColour}.
|
|
20297
21034
|
*
|
|
20298
|
-
* Ambient colour (optional) - red, green, blue, and
|
|
21035
|
+
* Ambient colour (optional) - red, green, blue, and alpha
|
|
20299
21036
|
*
|
|
20300
21037
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20301
21038
|
*
|
|
@@ -20310,7 +21047,7 @@ declare namespace sap {
|
|
|
20310
21047
|
/**
|
|
20311
21048
|
* Sets a new value for property {@link #getDiffuseColour diffuseColour}.
|
|
20312
21049
|
*
|
|
20313
|
-
* Diffuse colour (optional) - red, green, blue, and
|
|
21050
|
+
* Diffuse colour (optional) - red, green, blue, and alpha
|
|
20314
21051
|
*
|
|
20315
21052
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20316
21053
|
*
|
|
@@ -20325,7 +21062,7 @@ declare namespace sap {
|
|
|
20325
21062
|
/**
|
|
20326
21063
|
* Sets a new value for property {@link #getEmissiveColour emissiveColour}.
|
|
20327
21064
|
*
|
|
20328
|
-
* Emissive colour (optional) - red, green, blue, and
|
|
21065
|
+
* Emissive colour (optional) - red, green, blue, and alpha
|
|
20329
21066
|
*
|
|
20330
21067
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20331
21068
|
*
|
|
@@ -20368,7 +21105,7 @@ declare namespace sap {
|
|
|
20368
21105
|
/**
|
|
20369
21106
|
* Sets a new value for property {@link #getLineColour lineColour}.
|
|
20370
21107
|
*
|
|
20371
|
-
* Line colour (optional) - red, green, blue, and
|
|
21108
|
+
* Line colour (optional) - red, green, blue, and alpha
|
|
20372
21109
|
*
|
|
20373
21110
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20374
21111
|
*
|
|
@@ -20426,7 +21163,7 @@ declare namespace sap {
|
|
|
20426
21163
|
/**
|
|
20427
21164
|
* Sets a new value for property {@link #getSpecularColour specularColour}.
|
|
20428
21165
|
*
|
|
20429
|
-
* Specular colour (optional) - red, green, blue, and
|
|
21166
|
+
* Specular colour (optional) - red, green, blue, and alpha
|
|
20430
21167
|
*
|
|
20431
21168
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20432
21169
|
*
|
|
@@ -20529,7 +21266,7 @@ declare namespace sap {
|
|
|
20529
21266
|
* viewer.loadContent("https://www.google.co.nz/images/srpr/logo11w.png", "png", true);
|
|
20530
21267
|
* ```
|
|
20531
21268
|
*/
|
|
20532
|
-
class NativeViewport extends sap.ui.
|
|
21269
|
+
class NativeViewport extends sap.ui.vk.ViewportBase {
|
|
20533
21270
|
/**
|
|
20534
21271
|
* Constructor for a new NativeViewport.
|
|
20535
21272
|
*
|
|
@@ -20565,7 +21302,7 @@ declare namespace sap {
|
|
|
20565
21302
|
* Creates a new subclass of class sap.ui.vk.NativeViewport with name `sClassName` and enriches it with
|
|
20566
21303
|
* the information contained in `oClassInfo`.
|
|
20567
21304
|
*
|
|
20568
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.
|
|
21305
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vk.ViewportBase.extend}.
|
|
20569
21306
|
*/
|
|
20570
21307
|
static extend<T extends Record<string, unknown>>(
|
|
20571
21308
|
/**
|
|
@@ -20741,15 +21478,10 @@ declare namespace sap {
|
|
|
20741
21478
|
size?: object;
|
|
20742
21479
|
}
|
|
20743
21480
|
): this;
|
|
20744
|
-
/**
|
|
20745
|
-
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
20746
|
-
* or `null`.
|
|
20747
|
-
*/
|
|
20748
|
-
getContentConnector(): sap.ui.core.ID;
|
|
20749
21481
|
/**
|
|
20750
21482
|
* Gets current value of property {@link #getLimitZoomOut limitZoomOut}.
|
|
20751
21483
|
*
|
|
20752
|
-
* Limit the
|
|
21484
|
+
* Limit the ability to zoom out. If enabled the zoom out stops if the image size reaches 25% of the full
|
|
20753
21485
|
* view (best fit).
|
|
20754
21486
|
*
|
|
20755
21487
|
* Default value is `false`.
|
|
@@ -20827,20 +21559,10 @@ declare namespace sap {
|
|
|
20827
21559
|
*/
|
|
20828
21560
|
dy: int
|
|
20829
21561
|
): sap.ui.vk.NativeViewport;
|
|
20830
|
-
/**
|
|
20831
|
-
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
20832
|
-
*/
|
|
20833
|
-
setContentConnector(
|
|
20834
|
-
/**
|
|
20835
|
-
* ID of an element which becomes the new target of this contentConnector association; alternatively, an
|
|
20836
|
-
* element instance may be given
|
|
20837
|
-
*/
|
|
20838
|
-
oContentConnector: sap.ui.core.ID | sap.ui.vk.ContentConnector
|
|
20839
|
-
): this;
|
|
20840
21562
|
/**
|
|
20841
21563
|
* Sets a new value for property {@link #getLimitZoomOut limitZoomOut}.
|
|
20842
21564
|
*
|
|
20843
|
-
* Limit the
|
|
21565
|
+
* Limit the ability to zoom out. If enabled the zoom out stops if the image size reaches 25% of the full
|
|
20844
21566
|
* view (best fit).
|
|
20845
21567
|
*
|
|
20846
21568
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -21345,7 +22067,7 @@ declare namespace sap {
|
|
|
21345
22067
|
*
|
|
21346
22068
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
21347
22069
|
* it passes the child nodes to one by one.
|
|
21348
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
22070
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
21349
22071
|
* after each call to the `callback` function.
|
|
21350
22072
|
*/
|
|
21351
22073
|
enumerateChildren(
|
|
@@ -21383,7 +22105,7 @@ declare namespace sap {
|
|
|
21383
22105
|
*
|
|
21384
22106
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
21385
22107
|
* it passes the child nodes to one by one.
|
|
21386
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
22108
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
21387
22109
|
* after each call to the `callback` function.
|
|
21388
22110
|
*/
|
|
21389
22111
|
enumerateChildren(
|
|
@@ -23056,7 +23778,7 @@ declare namespace sap {
|
|
|
23056
23778
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23057
23779
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23058
23780
|
*
|
|
23059
|
-
* This event is raised when the design handle of a
|
|
23781
|
+
* This event is raised when the design handle of a changeable OverlayArea is clicked.
|
|
23060
23782
|
*/
|
|
23061
23783
|
attachHandleClick(
|
|
23062
23784
|
/**
|
|
@@ -23079,7 +23801,7 @@ declare namespace sap {
|
|
|
23079
23801
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23080
23802
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23081
23803
|
*
|
|
23082
|
-
* This event is raised when the design handle of a
|
|
23804
|
+
* This event is raised when the design handle of a changeable OverlayArea is clicked.
|
|
23083
23805
|
*/
|
|
23084
23806
|
attachHandleClick(
|
|
23085
23807
|
/**
|
|
@@ -23098,7 +23820,7 @@ declare namespace sap {
|
|
|
23098
23820
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23099
23821
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23100
23822
|
*
|
|
23101
|
-
* This event is raised when the design handle of a
|
|
23823
|
+
* This event is raised when the design handle of a changeable OverlayArea is right clicked.
|
|
23102
23824
|
*/
|
|
23103
23825
|
attachHandleContextMenu(
|
|
23104
23826
|
/**
|
|
@@ -23122,7 +23844,7 @@ declare namespace sap {
|
|
|
23122
23844
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23123
23845
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23124
23846
|
*
|
|
23125
|
-
* This event is raised when the design handle of a
|
|
23847
|
+
* This event is raised when the design handle of a changeable OverlayArea is right clicked.
|
|
23126
23848
|
*/
|
|
23127
23849
|
attachHandleContextMenu(
|
|
23128
23850
|
/**
|
|
@@ -23140,7 +23862,7 @@ declare namespace sap {
|
|
|
23140
23862
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23141
23863
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23142
23864
|
*
|
|
23143
|
-
* This event is raised when the design handle of a
|
|
23865
|
+
* This event is raised when the design handle of a changeable OverlayArea is moved.
|
|
23144
23866
|
*/
|
|
23145
23867
|
attachHandleMoved(
|
|
23146
23868
|
/**
|
|
@@ -23163,7 +23885,7 @@ declare namespace sap {
|
|
|
23163
23885
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23164
23886
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23165
23887
|
*
|
|
23166
|
-
* This event is raised when the design handle of a
|
|
23888
|
+
* This event is raised when the design handle of a changeable OverlayArea is moved.
|
|
23167
23889
|
*/
|
|
23168
23890
|
attachHandleMoved(
|
|
23169
23891
|
/**
|
|
@@ -23402,13 +24124,13 @@ declare namespace sap {
|
|
|
23402
24124
|
/**
|
|
23403
24125
|
* Gets current value of property {@link #getColorNonSelect colorNonSelect}.
|
|
23404
24126
|
*
|
|
23405
|
-
* The non-select color of the OverlayArea in case non-selection de-
|
|
24127
|
+
* The non-select color of the OverlayArea in case non-selection de-highlighting is desired.
|
|
23406
24128
|
*/
|
|
23407
24129
|
getColorNonSelect(): string;
|
|
23408
24130
|
/**
|
|
23409
24131
|
* Gets current value of property {@link #getColorSelect colorSelect}.
|
|
23410
24132
|
*
|
|
23411
|
-
* The select color of the OverlayArea in case selection
|
|
24133
|
+
* The select color of the OverlayArea in case selection highlighting is desired.
|
|
23412
24134
|
*/
|
|
23413
24135
|
getColorSelect(): string;
|
|
23414
24136
|
/**
|
|
@@ -23498,7 +24220,7 @@ declare namespace sap {
|
|
|
23498
24220
|
/**
|
|
23499
24221
|
* Sets a new value for property {@link #getColorNonSelect colorNonSelect}.
|
|
23500
24222
|
*
|
|
23501
|
-
* The non-select color of the OverlayArea in case non-selection de-
|
|
24223
|
+
* The non-select color of the OverlayArea in case non-selection de-highlighting is desired.
|
|
23502
24224
|
*
|
|
23503
24225
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23504
24226
|
*/
|
|
@@ -23511,7 +24233,7 @@ declare namespace sap {
|
|
|
23511
24233
|
/**
|
|
23512
24234
|
* Sets a new value for property {@link #getColorSelect colorSelect}.
|
|
23513
24235
|
*
|
|
23514
|
-
* The select color of the OverlayArea in case selection
|
|
24236
|
+
* The select color of the OverlayArea in case selection highlighting is desired.
|
|
23515
24237
|
*
|
|
23516
24238
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23517
24239
|
*/
|
|
@@ -24499,6 +25221,10 @@ declare namespace sap {
|
|
|
24499
25221
|
* Gets current value of property {@link #getDeleteTimestamp deleteTimestamp}.
|
|
24500
25222
|
*/
|
|
24501
25223
|
getDeleteTimestamp(): int;
|
|
25224
|
+
/**
|
|
25225
|
+
* Gets current value of property {@link #getElementId elementId}.
|
|
25226
|
+
*/
|
|
25227
|
+
getElementId(): string;
|
|
24502
25228
|
/**
|
|
24503
25229
|
* Gets current value of property {@link #getHalo halo}.
|
|
24504
25230
|
*
|
|
@@ -24643,6 +25369,17 @@ declare namespace sap {
|
|
|
24643
25369
|
*/
|
|
24644
25370
|
iDeleteTimestamp?: int
|
|
24645
25371
|
): this;
|
|
25372
|
+
/**
|
|
25373
|
+
* Sets a new value for property {@link #getElementId elementId}.
|
|
25374
|
+
*
|
|
25375
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25376
|
+
*/
|
|
25377
|
+
setElementId(
|
|
25378
|
+
/**
|
|
25379
|
+
* New value for property `elementId`
|
|
25380
|
+
*/
|
|
25381
|
+
sElementId?: string
|
|
25382
|
+
): this;
|
|
24646
25383
|
/**
|
|
24647
25384
|
* Sets a new value for property {@link #getHalo halo}.
|
|
24648
25385
|
*
|
|
@@ -24906,15 +25643,16 @@ declare namespace sap {
|
|
|
24906
25643
|
zoomBy: number
|
|
24907
25644
|
): sap.ui.vk.RedlineElementEllipse;
|
|
24908
25645
|
/**
|
|
24909
|
-
* Changes the current radiusX and
|
|
25646
|
+
* Changes the current radiusX, radiusY, originX and originY of the ellipse redline element with the values
|
|
25647
|
+
* passed as parameters.
|
|
24910
25648
|
*/
|
|
24911
25649
|
edit(
|
|
24912
25650
|
/**
|
|
24913
|
-
* The value in pixels that will be
|
|
25651
|
+
* The value in pixels that radiusX and originX will be calculated from for the ellipse.
|
|
24914
25652
|
*/
|
|
24915
25653
|
offsetX: number,
|
|
24916
25654
|
/**
|
|
24917
|
-
* The value in pixels that will be
|
|
25655
|
+
* The value in pixels that radiusY and originY will be calculated from for the ellipse.
|
|
24918
25656
|
*/
|
|
24919
25657
|
offsetY: number,
|
|
24920
25658
|
/**
|
|
@@ -25199,6 +25937,12 @@ declare namespace sap {
|
|
|
25199
25937
|
* Default value is `0`.
|
|
25200
25938
|
*/
|
|
25201
25939
|
getDeltaY(): float;
|
|
25940
|
+
/**
|
|
25941
|
+
* Gets current value of property {@link #getEndArrowHead endArrowHead}.
|
|
25942
|
+
*
|
|
25943
|
+
* Default value is `false`.
|
|
25944
|
+
*/
|
|
25945
|
+
getEndArrowHead(): boolean;
|
|
25202
25946
|
/**
|
|
25203
25947
|
* Imports data from a JSON object into the line redline element.
|
|
25204
25948
|
*/
|
|
@@ -25243,6 +25987,19 @@ declare namespace sap {
|
|
|
25243
25987
|
*/
|
|
25244
25988
|
fDeltaY?: float
|
|
25245
25989
|
): this;
|
|
25990
|
+
/**
|
|
25991
|
+
* Sets a new value for property {@link #getEndArrowHead endArrowHead}.
|
|
25992
|
+
*
|
|
25993
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25994
|
+
*
|
|
25995
|
+
* Default value is `false`.
|
|
25996
|
+
*/
|
|
25997
|
+
setEndArrowHead(
|
|
25998
|
+
/**
|
|
25999
|
+
* New value for property `endArrowHead`
|
|
26000
|
+
*/
|
|
26001
|
+
bEndArrowHead?: boolean
|
|
26002
|
+
): this;
|
|
25246
26003
|
}
|
|
25247
26004
|
/**
|
|
25248
26005
|
* @SINCE 1.40.0
|
|
@@ -25483,12 +26240,24 @@ declare namespace sap {
|
|
|
25483
26240
|
* Default value is `32`.
|
|
25484
26241
|
*/
|
|
25485
26242
|
getFontSize(): float;
|
|
26243
|
+
/**
|
|
26244
|
+
* Gets current value of property {@link #getHeight height}.
|
|
26245
|
+
*
|
|
26246
|
+
* Default value is `0`.
|
|
26247
|
+
*/
|
|
26248
|
+
getHeight(): float;
|
|
25486
26249
|
/**
|
|
25487
26250
|
* Gets current value of property {@link #getText text}.
|
|
25488
26251
|
*
|
|
25489
26252
|
* Default value is `"Text"`.
|
|
25490
26253
|
*/
|
|
25491
26254
|
getText(): string;
|
|
26255
|
+
/**
|
|
26256
|
+
* Gets current value of property {@link #getWidth width}.
|
|
26257
|
+
*
|
|
26258
|
+
* Default value is `300`.
|
|
26259
|
+
*/
|
|
26260
|
+
getWidth(): float;
|
|
25492
26261
|
/**
|
|
25493
26262
|
* Imports data from a JSON object into the text redline element.
|
|
25494
26263
|
*/
|
|
@@ -25546,6 +26315,19 @@ declare namespace sap {
|
|
|
25546
26315
|
*/
|
|
25547
26316
|
fFontSize?: float
|
|
25548
26317
|
): this;
|
|
26318
|
+
/**
|
|
26319
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
26320
|
+
*
|
|
26321
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26322
|
+
*
|
|
26323
|
+
* Default value is `0`.
|
|
26324
|
+
*/
|
|
26325
|
+
setHeight(
|
|
26326
|
+
/**
|
|
26327
|
+
* New value for property `height`
|
|
26328
|
+
*/
|
|
26329
|
+
fHeight?: float
|
|
26330
|
+
): this;
|
|
25549
26331
|
/**
|
|
25550
26332
|
* Sets a new value for property {@link #getText text}.
|
|
25551
26333
|
*
|
|
@@ -25559,6 +26341,19 @@ declare namespace sap {
|
|
|
25559
26341
|
*/
|
|
25560
26342
|
sText?: string
|
|
25561
26343
|
): this;
|
|
26344
|
+
/**
|
|
26345
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
26346
|
+
*
|
|
26347
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26348
|
+
*
|
|
26349
|
+
* Default value is `300`.
|
|
26350
|
+
*/
|
|
26351
|
+
setWidth(
|
|
26352
|
+
/**
|
|
26353
|
+
* New value for property `width`
|
|
26354
|
+
*/
|
|
26355
|
+
fWidth?: float
|
|
26356
|
+
): this;
|
|
25562
26357
|
}
|
|
25563
26358
|
/**
|
|
25564
26359
|
* @SINCE 1.40.0
|
|
@@ -26212,7 +27007,7 @@ declare namespace sap {
|
|
|
26212
27007
|
*/
|
|
26213
27008
|
setInitialView(
|
|
26214
27009
|
/**
|
|
26215
|
-
*
|
|
27010
|
+
* Initial view
|
|
26216
27011
|
*/
|
|
26217
27012
|
view: sap.ui.vk.View
|
|
26218
27013
|
): void;
|
|
@@ -27453,78 +28248,6 @@ declare namespace sap {
|
|
|
27453
28248
|
oViewer: sap.ui.core.ID | sap.ui.vk.Viewer
|
|
27454
28249
|
): this;
|
|
27455
28250
|
}
|
|
27456
|
-
/**
|
|
27457
|
-
* @SINCE 1.32.0
|
|
27458
|
-
*
|
|
27459
|
-
* Transformation matrix is an array of 12 numbers in a row major mode.
|
|
27460
|
-
*/
|
|
27461
|
-
class TransformationMatrix {
|
|
27462
|
-
constructor();
|
|
27463
|
-
|
|
27464
|
-
/**
|
|
27465
|
-
* Converts matrix from 3x2 to 4x3.
|
|
27466
|
-
*/
|
|
27467
|
-
static convert3x2To4x3(
|
|
27468
|
-
/**
|
|
27469
|
-
* The matrix to convert.
|
|
27470
|
-
*/
|
|
27471
|
-
m3x2: number[]
|
|
27472
|
-
): number[];
|
|
27473
|
-
/**
|
|
27474
|
-
* Converts matrix from 4x3 to 3x2.
|
|
27475
|
-
*/
|
|
27476
|
-
static convert4x3To3x2(
|
|
27477
|
-
/**
|
|
27478
|
-
* The matrix 4x3 to convert.
|
|
27479
|
-
*/
|
|
27480
|
-
m4x3: number[]
|
|
27481
|
-
): number[];
|
|
27482
|
-
/**
|
|
27483
|
-
* Converts matrix from 4x4 to 3x2.
|
|
27484
|
-
*/
|
|
27485
|
-
static convert4x4To3x2(
|
|
27486
|
-
/**
|
|
27487
|
-
* The matrix 4x4 to convert.
|
|
27488
|
-
*/
|
|
27489
|
-
m4x4: number[]
|
|
27490
|
-
): number[];
|
|
27491
|
-
/**
|
|
27492
|
-
* Converts matrix from 4x4 or 4x4 to 3x2.
|
|
27493
|
-
*/
|
|
27494
|
-
static convertTo3x2(
|
|
27495
|
-
/**
|
|
27496
|
-
* The matrix 4x4 or 4x3 to convert.
|
|
27497
|
-
*/
|
|
27498
|
-
m: number[]
|
|
27499
|
-
): number[];
|
|
27500
|
-
/**
|
|
27501
|
-
* Converts matrix from 4x4 to 4x3.
|
|
27502
|
-
*/
|
|
27503
|
-
static convertTo4x3(
|
|
27504
|
-
/**
|
|
27505
|
-
* The matrix to convert. The last column must be [0, 0, 0, 1].
|
|
27506
|
-
*/
|
|
27507
|
-
matrix4x4: number[]
|
|
27508
|
-
): number[];
|
|
27509
|
-
/**
|
|
27510
|
-
* Converts matrix from 4x3 to 4x4.
|
|
27511
|
-
*/
|
|
27512
|
-
static convertTo4x4(
|
|
27513
|
-
/**
|
|
27514
|
-
* The matrix to convert.
|
|
27515
|
-
*/
|
|
27516
|
-
matrix4x3: number[]
|
|
27517
|
-
): number[];
|
|
27518
|
-
/**
|
|
27519
|
-
* Parses the given string value and converts it into an array of numbers.
|
|
27520
|
-
*/
|
|
27521
|
-
static parseValue(
|
|
27522
|
-
/**
|
|
27523
|
-
* a comma or white space delimited string
|
|
27524
|
-
*/
|
|
27525
|
-
value: string
|
|
27526
|
-
): number[];
|
|
27527
|
-
}
|
|
27528
28251
|
/**
|
|
27529
28252
|
* Provides the interface for the view.
|
|
27530
28253
|
*/
|
|
@@ -27535,7 +28258,7 @@ declare namespace sap {
|
|
|
27535
28258
|
/**
|
|
27536
28259
|
* Constructor for a new View.
|
|
27537
28260
|
*
|
|
27538
|
-
* The objects of this class contain
|
|
28261
|
+
* The objects of this class contain necessary information to reproduce current view including camera type,
|
|
27539
28262
|
* position and orientation as well as objects visibility property and their positions (if different from
|
|
27540
28263
|
* default)
|
|
27541
28264
|
*
|
|
@@ -27577,6 +28300,14 @@ declare namespace sap {
|
|
|
27577
28300
|
* ignored.
|
|
27578
28301
|
*/
|
|
27579
28302
|
getAspectRatio(): float;
|
|
28303
|
+
/**
|
|
28304
|
+
* Gets current value of property {@link #getAutoPlayAnimation autoPlayAnimation}.
|
|
28305
|
+
*
|
|
28306
|
+
* Flag for auto-playing animation on view activation (optional)
|
|
28307
|
+
*
|
|
28308
|
+
* Default value is `true`.
|
|
28309
|
+
*/
|
|
28310
|
+
getAutoPlayAnimation(): boolean;
|
|
27580
28311
|
/**
|
|
27581
28312
|
* @EXPERIMENTAL (since 1.73.0)
|
|
27582
28313
|
*
|
|
@@ -27621,6 +28352,21 @@ declare namespace sap {
|
|
|
27621
28352
|
*/
|
|
27622
28353
|
fAspectRatio: float
|
|
27623
28354
|
): this;
|
|
28355
|
+
/**
|
|
28356
|
+
* Sets a new value for property {@link #getAutoPlayAnimation autoPlayAnimation}.
|
|
28357
|
+
*
|
|
28358
|
+
* Flag for auto-playing animation on view activation (optional)
|
|
28359
|
+
*
|
|
28360
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
28361
|
+
*
|
|
28362
|
+
* Default value is `true`.
|
|
28363
|
+
*/
|
|
28364
|
+
setAutoPlayAnimation(
|
|
28365
|
+
/**
|
|
28366
|
+
* New value for property `autoPlayAnimation`
|
|
28367
|
+
*/
|
|
28368
|
+
bAutoPlayAnimation?: boolean
|
|
28369
|
+
): this;
|
|
27624
28370
|
/**
|
|
27625
28371
|
* @EXPERIMENTAL (since 1.73.0)
|
|
27626
28372
|
*
|
|
@@ -28528,6 +29274,8 @@ declare namespace sap {
|
|
|
28528
29274
|
*/
|
|
28529
29275
|
getHotspotColorABGR(): int;
|
|
28530
29276
|
/**
|
|
29277
|
+
* @deprecated (since 1.96.0)
|
|
29278
|
+
*
|
|
28531
29279
|
* Gets the 2D viewport used for displaying format natively supported by the browser - 2D images etc.
|
|
28532
29280
|
*/
|
|
28533
29281
|
getNativeViewport(): sap.ui.vk.NativeViewport;
|
|
@@ -29254,7 +30002,7 @@ declare namespace sap {
|
|
|
29254
30002
|
/**
|
|
29255
30003
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
29256
30004
|
*
|
|
29257
|
-
* If disabled,
|
|
30005
|
+
* If disabled, view gallery is non-interactive and greyed out
|
|
29258
30006
|
*
|
|
29259
30007
|
* Default value is `true`.
|
|
29260
30008
|
*/
|
|
@@ -29307,7 +30055,7 @@ declare namespace sap {
|
|
|
29307
30055
|
/**
|
|
29308
30056
|
* Gets current value of property {@link #getTransparency transparency}.
|
|
29309
30057
|
*
|
|
29310
|
-
* Sets the transparency level of the
|
|
30058
|
+
* Sets the transparency level of the view gallery. Range is 0-1, with 1 being 100% opaque and 0 being 0%
|
|
29311
30059
|
* opaque
|
|
29312
30060
|
*
|
|
29313
30061
|
* Default value is `1`.
|
|
@@ -29341,7 +30089,7 @@ declare namespace sap {
|
|
|
29341
30089
|
/**
|
|
29342
30090
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
29343
30091
|
*
|
|
29344
|
-
* If disabled,
|
|
30092
|
+
* If disabled, view gallery is non-interactive and greyed out
|
|
29345
30093
|
*
|
|
29346
30094
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29347
30095
|
*
|
|
@@ -29468,7 +30216,7 @@ declare namespace sap {
|
|
|
29468
30216
|
/**
|
|
29469
30217
|
* Sets a new value for property {@link #getTransparency transparency}.
|
|
29470
30218
|
*
|
|
29471
|
-
* Sets the transparency level of the
|
|
30219
|
+
* Sets the transparency level of the view gallery. Range is 0-1, with 1 being 100% opaque and 0 being 0%
|
|
29472
30220
|
* opaque
|
|
29473
30221
|
*
|
|
29474
30222
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -29499,7 +30247,7 @@ declare namespace sap {
|
|
|
29499
30247
|
/**
|
|
29500
30248
|
* Constructor for a new View Group.
|
|
29501
30249
|
*
|
|
29502
|
-
* The objects of this class contain
|
|
30250
|
+
* The objects of this class contain necessary information about View Group
|
|
29503
30251
|
*
|
|
29504
30252
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
29505
30253
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -30823,13 +31571,13 @@ declare namespace sap {
|
|
|
30823
31571
|
*/
|
|
30824
31572
|
getShowAllHotspots(): boolean;
|
|
30825
31573
|
/**
|
|
30826
|
-
* Gets current value of property {@link #
|
|
31574
|
+
* Gets current value of property {@link #getShowAllHotspotsTintColor showAllHotspotsTintColor}.
|
|
30827
31575
|
*
|
|
30828
|
-
* Color used
|
|
31576
|
+
* Color used to highlight all hotspots when the showAllHotspots property has a value of true.
|
|
30829
31577
|
*
|
|
30830
31578
|
* Default value is `"rgba(255, 255, 0, .35)"`.
|
|
30831
31579
|
*/
|
|
30832
|
-
|
|
31580
|
+
getShowAllHotspotsTintColor(): sap.ui.core.CSSColor;
|
|
30833
31581
|
/**
|
|
30834
31582
|
* Gets current value of property {@link #getShowDebugInfo showDebugInfo}.
|
|
30835
31583
|
*
|
|
@@ -30978,6 +31726,24 @@ declare namespace sap {
|
|
|
30978
31726
|
*/
|
|
30979
31727
|
vTool: int | sap.ui.core.ID | sap.ui.vk.tools.Tool
|
|
30980
31728
|
): sap.ui.core.ID;
|
|
31729
|
+
/**
|
|
31730
|
+
* Renders viewport content.
|
|
31731
|
+
*/
|
|
31732
|
+
renderContent(
|
|
31733
|
+
/**
|
|
31734
|
+
* the RenderManager that can be used for writing to the Render-Output-Buffer
|
|
31735
|
+
*/
|
|
31736
|
+
rm: sap.ui.core.RenderManager
|
|
31737
|
+
): void;
|
|
31738
|
+
/**
|
|
31739
|
+
* Renders viewport tools.
|
|
31740
|
+
*/
|
|
31741
|
+
renderTools(
|
|
31742
|
+
/**
|
|
31743
|
+
* the RenderManager that can be used for writing to the Render-Output-Buffer
|
|
31744
|
+
*/
|
|
31745
|
+
rm: sap.ui.core.RenderManager
|
|
31746
|
+
): void;
|
|
30981
31747
|
/**
|
|
30982
31748
|
* Rotates the content resource displayed on the Viewport.
|
|
30983
31749
|
*/
|
|
@@ -31210,19 +31976,19 @@ declare namespace sap {
|
|
|
31210
31976
|
bShowAllHotspots?: boolean
|
|
31211
31977
|
): this;
|
|
31212
31978
|
/**
|
|
31213
|
-
* Sets a new value for property {@link #
|
|
31979
|
+
* Sets a new value for property {@link #getShowAllHotspotsTintColor showAllHotspotsTintColor}.
|
|
31214
31980
|
*
|
|
31215
|
-
* Color used
|
|
31981
|
+
* Color used to highlight all hotspots when the showAllHotspots property has a value of true.
|
|
31216
31982
|
*
|
|
31217
31983
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31218
31984
|
*
|
|
31219
31985
|
* Default value is `"rgba(255, 255, 0, .35)"`.
|
|
31220
31986
|
*/
|
|
31221
|
-
|
|
31987
|
+
setShowAllHotspotsTintColor(
|
|
31222
31988
|
/**
|
|
31223
|
-
* New value for property `
|
|
31989
|
+
* New value for property `showAllHotspotsTintColor`
|
|
31224
31990
|
*/
|
|
31225
|
-
|
|
31991
|
+
sShowAllHotspotsTintColor?: sap.ui.core.CSSColor
|
|
31226
31992
|
): this;
|
|
31227
31993
|
/**
|
|
31228
31994
|
* Sets a new value for property {@link #getShowDebugInfo showDebugInfo}.
|
|
@@ -31588,7 +32354,7 @@ declare namespace sap {
|
|
|
31588
32354
|
*/
|
|
31589
32355
|
setOutlineWidth(
|
|
31590
32356
|
/**
|
|
31591
|
-
*
|
|
32357
|
+
* Width of outline
|
|
31592
32358
|
*/
|
|
31593
32359
|
width: float
|
|
31594
32360
|
): sap.ui.vk.ViewStateManager;
|
|
@@ -31618,7 +32384,7 @@ declare namespace sap {
|
|
|
31618
32384
|
*/
|
|
31619
32385
|
nodeRef: any,
|
|
31620
32386
|
/**
|
|
31621
|
-
* The node
|
|
32387
|
+
* The node opacity
|
|
31622
32388
|
*/
|
|
31623
32389
|
opacity: float
|
|
31624
32390
|
): sap.ui.vk.ViewStateManager;
|
|
@@ -31631,7 +32397,7 @@ declare namespace sap {
|
|
|
31631
32397
|
*/
|
|
31632
32398
|
nodeRef: any,
|
|
31633
32399
|
/**
|
|
31634
|
-
* vector for
|
|
32400
|
+
* vector for position, array of size 3.
|
|
31635
32401
|
*/
|
|
31636
32402
|
translation: float[],
|
|
31637
32403
|
/**
|
|
@@ -33513,6 +34279,8 @@ declare namespace sap {
|
|
|
33513
34279
|
|
|
33514
34280
|
"sap/ui/vk/ImageContentManager": undefined;
|
|
33515
34281
|
|
|
34282
|
+
"sap/ui/vk/IncludeUsageIdType": undefined;
|
|
34283
|
+
|
|
33516
34284
|
"sap/ui/vk/LayerProxy": undefined;
|
|
33517
34285
|
|
|
33518
34286
|
"sap/ui/vk/LegendItem": undefined;
|
|
@@ -33603,6 +34371,8 @@ declare namespace sap {
|
|
|
33603
34371
|
|
|
33604
34372
|
"sap/ui/vk/svg/Scene": undefined;
|
|
33605
34373
|
|
|
34374
|
+
"sap/ui/vk/svg/Viewport": undefined;
|
|
34375
|
+
|
|
33606
34376
|
"sap/ui/vk/svg/ViewStateManager": undefined;
|
|
33607
34377
|
|
|
33608
34378
|
"sap/ui/vk/Texture": undefined;
|