@sapui5/ts-types 1.95.0 → 1.96.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 +1 -1
- 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 +59 -40
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +73 -2
- package/types/sap.fe.macros.d.ts +27 -3
- 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 +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +340 -40
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +542 -107
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +2 -7
- package/types/sap.ovp.d.ts +1 -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 +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +6 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +142 -11
- package/types/sap.ui.core.d.ts +656 -460
- 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 +1 -1
- 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 +220 -1
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +39 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -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 +704 -115
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +45 -35
- package/types/sap.ushell_abap.d.ts +1 -1
- 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.96.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -787,7 +787,7 @@ declare namespace sap {
|
|
|
787
787
|
*
|
|
788
788
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
789
789
|
* it passes the child nodes to one by one.
|
|
790
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
790
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
791
791
|
* after each call to the `callback` function.
|
|
792
792
|
*/
|
|
793
793
|
enumerateChildren(
|
|
@@ -822,7 +822,7 @@ declare namespace sap {
|
|
|
822
822
|
*
|
|
823
823
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
824
824
|
* it passes the child nodes to one by one.
|
|
825
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
825
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
826
826
|
* after each call to the `callback` function.
|
|
827
827
|
*/
|
|
828
828
|
enumerateChildren(
|
|
@@ -2021,6 +2021,14 @@ declare namespace sap {
|
|
|
2021
2021
|
|
|
2022
2022
|
interface $SceneSettings extends sap.ui.vk.$SceneSettings {}
|
|
2023
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
|
+
|
|
2024
2032
|
interface $ViewStateManagerSettings
|
|
2025
2033
|
extends sap.ui.vk.$ViewStateManagerBaseSettings {}
|
|
2026
2034
|
|
|
@@ -2411,7 +2419,7 @@ declare namespace sap {
|
|
|
2411
2419
|
*/
|
|
2412
2420
|
enumerateAncestors(
|
|
2413
2421
|
/**
|
|
2414
|
-
* The reference object of a node whose
|
|
2422
|
+
* The reference object of a node whose ancestor nodes we want enumerated.
|
|
2415
2423
|
*/
|
|
2416
2424
|
nodeRef: any,
|
|
2417
2425
|
/**
|
|
@@ -2420,8 +2428,8 @@ declare namespace sap {
|
|
|
2420
2428
|
*/
|
|
2421
2429
|
callback: Function,
|
|
2422
2430
|
/**
|
|
2423
|
-
* Indicates whether to pass the node references of the
|
|
2424
|
-
*
|
|
2431
|
+
* Indicates whether to pass the node references of the ancestor nodes, or the whole node proxy to the `callback`
|
|
2432
|
+
* function.
|
|
2425
2433
|
* If `true`, then only the node references of the ancestor nodes are passed to the `callback` function.
|
|
2426
2434
|
*
|
|
2427
2435
|
* If `false`, then the node proxies of the ancestor nodes are passed to the `callback` function.
|
|
@@ -2433,7 +2441,7 @@ declare namespace sap {
|
|
|
2433
2441
|
*
|
|
2434
2442
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
2435
2443
|
* it passes the child nodes to one by one.
|
|
2436
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
2444
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
2437
2445
|
* after each call to the `callback` function.
|
|
2438
2446
|
*/
|
|
2439
2447
|
enumerateChildren(
|
|
@@ -2468,7 +2476,7 @@ declare namespace sap {
|
|
|
2468
2476
|
*
|
|
2469
2477
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
2470
2478
|
* it passes the child nodes to one by one.
|
|
2471
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
2479
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
2472
2480
|
* after each call to the `callback` function.
|
|
2473
2481
|
*/
|
|
2474
2482
|
enumerateChildren(
|
|
@@ -2756,11 +2764,438 @@ declare namespace sap {
|
|
|
2756
2764
|
*/
|
|
2757
2765
|
setInitialView(
|
|
2758
2766
|
/**
|
|
2759
|
-
*
|
|
2767
|
+
* Initial view
|
|
2760
2768
|
*/
|
|
2761
2769
|
view: sap.ui.vk.View
|
|
2762
2770
|
): void;
|
|
2763
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
|
+
}
|
|
2764
3199
|
/**
|
|
2765
3200
|
* @SINCE 1.80.0
|
|
2766
3201
|
*
|
|
@@ -3459,7 +3894,7 @@ declare namespace sap {
|
|
|
3459
3894
|
*/
|
|
3460
3895
|
enumerateAncestors(
|
|
3461
3896
|
/**
|
|
3462
|
-
* The reference object of a node whose
|
|
3897
|
+
* The reference object of a node whose ancestor nodes we want enumerated.
|
|
3463
3898
|
*/
|
|
3464
3899
|
nodeRef: any,
|
|
3465
3900
|
/**
|
|
@@ -3468,8 +3903,8 @@ declare namespace sap {
|
|
|
3468
3903
|
*/
|
|
3469
3904
|
callback: Function,
|
|
3470
3905
|
/**
|
|
3471
|
-
* Indicates whether to pass the node references of the
|
|
3472
|
-
*
|
|
3906
|
+
* Indicates whether to pass the node references of the ancestor nodes, or the whole node proxy to the `callback`
|
|
3907
|
+
* function.
|
|
3473
3908
|
* If `true`, then only the node references of the ancestor nodes are passed to the `callback` function.
|
|
3474
3909
|
*
|
|
3475
3910
|
* If `false`, then the node proxies of the ancestor nodes are passed to the `callback` function.
|
|
@@ -3481,7 +3916,7 @@ declare namespace sap {
|
|
|
3481
3916
|
*
|
|
3482
3917
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
3483
3918
|
* it passes the child nodes to one by one.
|
|
3484
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
3919
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
3485
3920
|
* after each call to the `callback` function.
|
|
3486
3921
|
*/
|
|
3487
3922
|
enumerateChildren(
|
|
@@ -3516,7 +3951,7 @@ declare namespace sap {
|
|
|
3516
3951
|
*
|
|
3517
3952
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
3518
3953
|
* it passes the child nodes to one by one.
|
|
3519
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
3954
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
3520
3955
|
* after each call to the `callback` function.
|
|
3521
3956
|
*/
|
|
3522
3957
|
enumerateChildren(
|
|
@@ -3732,11 +4167,11 @@ declare namespace sap {
|
|
|
3732
4167
|
/**
|
|
3733
4168
|
* Material to be replaced.
|
|
3734
4169
|
*/
|
|
3735
|
-
materialToReplace: sap.ui.vk.Material,
|
|
4170
|
+
materialToReplace: sap.ui.vk.Material | THREE.Material,
|
|
3736
4171
|
/**
|
|
3737
4172
|
* Material replacement.
|
|
3738
4173
|
*/
|
|
3739
|
-
material: sap.ui.vk.Material
|
|
4174
|
+
material: sap.ui.vk.Material | THREE.Material
|
|
3740
4175
|
): sap.ui.vk.NodeHierarchy;
|
|
3741
4176
|
}
|
|
3742
4177
|
/**
|
|
@@ -3980,7 +4415,7 @@ declare namespace sap {
|
|
|
3980
4415
|
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
3981
4416
|
}
|
|
3982
4417
|
/**
|
|
3983
|
-
* Provides a
|
|
4418
|
+
* Provides a control for three.js canvas.
|
|
3984
4419
|
*/
|
|
3985
4420
|
class Viewport extends sap.ui.vk.ViewportBase {
|
|
3986
4421
|
/**
|
|
@@ -5417,7 +5852,7 @@ declare namespace sap {
|
|
|
5417
5852
|
|
|
5418
5853
|
/**
|
|
5419
5854
|
* If set to `true` then this tool will enable scaling along a single axis, otherwise it will scale objects
|
|
5420
|
-
* along all three axes
|
|
5855
|
+
* along all three axes proportionally
|
|
5421
5856
|
*/
|
|
5422
5857
|
nonUniformScaleEnabled?:
|
|
5423
5858
|
| boolean
|
|
@@ -6651,7 +7086,7 @@ declare namespace sap {
|
|
|
6651
7086
|
/**
|
|
6652
7087
|
* Created node.
|
|
6653
7088
|
*
|
|
6654
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7089
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
6655
7090
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
6656
7091
|
* object in parametrics array
|
|
6657
7092
|
*/
|
|
@@ -6843,7 +7278,7 @@ declare namespace sap {
|
|
|
6843
7278
|
/**
|
|
6844
7279
|
* Created node.
|
|
6845
7280
|
*
|
|
6846
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7281
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
6847
7282
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
6848
7283
|
* object in parametrics array
|
|
6849
7284
|
*/
|
|
@@ -7041,7 +7476,7 @@ declare namespace sap {
|
|
|
7041
7476
|
/**
|
|
7042
7477
|
* Created node.
|
|
7043
7478
|
*
|
|
7044
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7479
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
7045
7480
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
7046
7481
|
* object in parametrics array
|
|
7047
7482
|
*/
|
|
@@ -7233,7 +7668,7 @@ declare namespace sap {
|
|
|
7233
7668
|
/**
|
|
7234
7669
|
* Created node.
|
|
7235
7670
|
*
|
|
7236
|
-
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned
|
|
7671
|
+
* node.sid - node's sid node.nodeContentType - node content type node.materialId - assigned material sid
|
|
7237
7672
|
* node.name - node's name node.matrix - node transformation matrix node.parametric - index of created parametric
|
|
7238
7673
|
* object in parametrics array
|
|
7239
7674
|
*/
|
|
@@ -9143,7 +9578,7 @@ declare namespace sap {
|
|
|
9143
9578
|
z: float,
|
|
9144
9579
|
/**
|
|
9145
9580
|
* Optional parameter to define coordinate system to be used when these coordinates are applied. If not
|
|
9146
|
-
* specified then currently set coordinate
|
|
9581
|
+
* specified then currently set coordinate system will be used.
|
|
9147
9582
|
*/
|
|
9148
9583
|
coordinateSystem?: sap.ui.vk.tools.CoordinateSystem
|
|
9149
9584
|
): sap.ui.vk.tools.MoveTool;
|
|
@@ -10444,7 +10879,7 @@ declare namespace sap {
|
|
|
10444
10879
|
z: float,
|
|
10445
10880
|
/**
|
|
10446
10881
|
* Optional parameter to define coordinate system to be used when these coordinates are applied. If not
|
|
10447
|
-
* specified then currently set coordinate
|
|
10882
|
+
* specified then currently set coordinate system will be used.
|
|
10448
10883
|
*/
|
|
10449
10884
|
coordinateSystem?: sap.ui.vk.tools.CoordinateSystem
|
|
10450
10885
|
): sap.ui.vk.tools.RotateTool;
|
|
@@ -11149,7 +11584,7 @@ declare namespace sap {
|
|
|
11149
11584
|
* Gets current value of property {@link #getNonUniformScaleEnabled nonUniformScaleEnabled}.
|
|
11150
11585
|
*
|
|
11151
11586
|
* If set to `true` then this tool will enable scaling along a single axis, otherwise it will scale objects
|
|
11152
|
-
* along all three axes
|
|
11587
|
+
* along all three axes proportionally
|
|
11153
11588
|
*
|
|
11154
11589
|
* Default value is `false`.
|
|
11155
11590
|
*/
|
|
@@ -11198,7 +11633,7 @@ declare namespace sap {
|
|
|
11198
11633
|
z: float,
|
|
11199
11634
|
/**
|
|
11200
11635
|
* Optional parameter to define coordinate system to be used when these coordinates are applied. If not
|
|
11201
|
-
* specified then currently set coordinate
|
|
11636
|
+
* specified then currently set coordinate system will be used.
|
|
11202
11637
|
*/
|
|
11203
11638
|
coordinateSystem?: sap.ui.vk.tools.CoordinateSystem
|
|
11204
11639
|
): sap.ui.vk.tools.ScaleTool;
|
|
@@ -11296,7 +11731,7 @@ declare namespace sap {
|
|
|
11296
11731
|
* Sets a new value for property {@link #getNonUniformScaleEnabled nonUniformScaleEnabled}.
|
|
11297
11732
|
*
|
|
11298
11733
|
* If set to `true` then this tool will enable scaling along a single axis, otherwise it will scale objects
|
|
11299
|
-
* along all three axes
|
|
11734
|
+
* along all three axes proportionally
|
|
11300
11735
|
*
|
|
11301
11736
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11302
11737
|
*
|
|
@@ -11715,7 +12150,7 @@ declare namespace sap {
|
|
|
11715
12150
|
): this;
|
|
11716
12151
|
}
|
|
11717
12152
|
/**
|
|
11718
|
-
* The TooltipTool
|
|
12153
|
+
* The TooltipTool allows applications to display custom tooltip text on top of 3D object over which pointer
|
|
11719
12154
|
* is hovering
|
|
11720
12155
|
*/
|
|
11721
12156
|
class TooltipTool extends sap.ui.vk.tools.Tool {
|
|
@@ -12708,8 +13143,9 @@ declare namespace sap {
|
|
|
12708
13143
|
* Contract for authorization callback function
|
|
12709
13144
|
*
|
|
12710
13145
|
* A callback function which can be implemented by an application to provide an authorization token. Such
|
|
12711
|
-
* function receives single parameter which is connection URL and must return a promise which will
|
|
12712
|
-
*
|
|
13146
|
+
* a function receives a single parameter which is a connection URL and must return a promise which will
|
|
13147
|
+
* be resolved to {@link https://www.oauth.com/oauth2-servers/access-tokens/access-token-response/ Access
|
|
13148
|
+
* Token Response} when authorization token is obtained.
|
|
12713
13149
|
*
|
|
12714
13150
|
* A sample implementation of authorization handler::
|
|
12715
13151
|
* ```javascript
|
|
@@ -12892,7 +13328,7 @@ declare namespace sap {
|
|
|
12892
13328
|
animationDelay?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12893
13329
|
|
|
12894
13330
|
/**
|
|
12895
|
-
* Controls the annotation
|
|
13331
|
+
* Controls the annotation selected state
|
|
12896
13332
|
*/
|
|
12897
13333
|
selected?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12898
13334
|
|
|
@@ -13217,7 +13653,7 @@ declare namespace sap {
|
|
|
13217
13653
|
|
|
13218
13654
|
/**
|
|
13219
13655
|
* Optional boolean parameter to enable detailed logging. Can be used to track performance issues during
|
|
13220
|
-
* data streaming from SAP 3D
|
|
13656
|
+
* data streaming from SAP 3D Visualization Service.
|
|
13221
13657
|
*/
|
|
13222
13658
|
enableLogger?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13223
13659
|
|
|
@@ -13242,6 +13678,17 @@ declare namespace sap {
|
|
|
13242
13678
|
| boolean
|
|
13243
13679
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13244
13680
|
|
|
13681
|
+
/**
|
|
13682
|
+
* Optional parameter to load UsageIds. Valid values: true - Load all UsageIds. This is potentially very
|
|
13683
|
+
* expensive, as there could be many UsageIds defined for the tenant which are not relevant to the current
|
|
13684
|
+
* application. false - Do not load any UsageIds. string - A single non-empty string which defines the name
|
|
13685
|
+
* of the requested UsageId. string[] - An array of non-empty strings which define the names of requested
|
|
13686
|
+
* UsageIds.
|
|
13687
|
+
*/
|
|
13688
|
+
includeUsageId?: /* was: sap.ui.vk.IncludeUsageIdType */
|
|
13689
|
+
| any
|
|
13690
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13691
|
+
|
|
13245
13692
|
/**
|
|
13246
13693
|
* Child content resources.
|
|
13247
13694
|
*/
|
|
@@ -13483,28 +13930,28 @@ declare namespace sap {
|
|
|
13483
13930
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13484
13931
|
|
|
13485
13932
|
/**
|
|
13486
|
-
* Ambient colour (optional) - red, green, blue, and
|
|
13933
|
+
* Ambient colour (optional) - red, green, blue, and alpha
|
|
13487
13934
|
*/
|
|
13488
13935
|
ambientColour?:
|
|
13489
13936
|
| sap.ui.core.CSSColor
|
|
13490
13937
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13491
13938
|
|
|
13492
13939
|
/**
|
|
13493
|
-
* Diffuse colour (optional) - red, green, blue, and
|
|
13940
|
+
* Diffuse colour (optional) - red, green, blue, and alpha
|
|
13494
13941
|
*/
|
|
13495
13942
|
diffuseColour?:
|
|
13496
13943
|
| sap.ui.core.CSSColor
|
|
13497
13944
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13498
13945
|
|
|
13499
13946
|
/**
|
|
13500
|
-
* Specular colour (optional) - red, green, blue, and
|
|
13947
|
+
* Specular colour (optional) - red, green, blue, and alpha
|
|
13501
13948
|
*/
|
|
13502
13949
|
specularColour?:
|
|
13503
13950
|
| sap.ui.core.CSSColor
|
|
13504
13951
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13505
13952
|
|
|
13506
13953
|
/**
|
|
13507
|
-
* Emissive colour (optional) - red, green, blue, and
|
|
13954
|
+
* Emissive colour (optional) - red, green, blue, and alpha
|
|
13508
13955
|
*/
|
|
13509
13956
|
emissiveColour?:
|
|
13510
13957
|
| sap.ui.core.CSSColor
|
|
@@ -13521,7 +13968,7 @@ declare namespace sap {
|
|
|
13521
13968
|
glossiness?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13522
13969
|
|
|
13523
13970
|
/**
|
|
13524
|
-
* Line colour (optional) - red, green, blue, and
|
|
13971
|
+
* Line colour (optional) - red, green, blue, and alpha
|
|
13525
13972
|
*/
|
|
13526
13973
|
lineColour?:
|
|
13527
13974
|
| sap.ui.core.CSSColor
|
|
@@ -13575,18 +14022,14 @@ declare namespace sap {
|
|
|
13575
14022
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13576
14023
|
}
|
|
13577
14024
|
|
|
13578
|
-
interface $NativeViewportSettings
|
|
14025
|
+
interface $NativeViewportSettings
|
|
14026
|
+
extends sap.ui.vk.$ViewportBaseSettings {
|
|
13579
14027
|
/**
|
|
13580
14028
|
* Limit the ability to zoom out. If enabled the zoom out stops if the image size reaches 25% of the full
|
|
13581
14029
|
* view (best fit).
|
|
13582
14030
|
*/
|
|
13583
14031
|
limitZoomOut?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13584
14032
|
|
|
13585
|
-
/**
|
|
13586
|
-
* An association to the `ContentConnector` instance that manages content resources.
|
|
13587
|
-
*/
|
|
13588
|
-
contentConnector?: sap.ui.vk.ContentConnector | string;
|
|
13589
|
-
|
|
13590
14033
|
/**
|
|
13591
14034
|
* Raised when the display size of the image in the Native Viewport changes.
|
|
13592
14035
|
*/
|
|
@@ -13785,12 +14228,12 @@ declare namespace sap {
|
|
|
13785
14228
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13786
14229
|
|
|
13787
14230
|
/**
|
|
13788
|
-
* The select color of the OverlayArea in case selection
|
|
14231
|
+
* The select color of the OverlayArea in case selection highlighting is desired.
|
|
13789
14232
|
*/
|
|
13790
14233
|
colorSelect?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13791
14234
|
|
|
13792
14235
|
/**
|
|
13793
|
-
* The non-select color of the OverlayArea in case non-selection de-
|
|
14236
|
+
* The non-select color of the OverlayArea in case non-selection de-highlighting is desired.
|
|
13794
14237
|
*/
|
|
13795
14238
|
colorNonSelect?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13796
14239
|
|
|
@@ -13830,17 +14273,17 @@ declare namespace sap {
|
|
|
13830
14273
|
edgeContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
13831
14274
|
|
|
13832
14275
|
/**
|
|
13833
|
-
* This event is raised when the design handle of a
|
|
14276
|
+
* This event is raised when the design handle of a changeable OverlayArea is moved.
|
|
13834
14277
|
*/
|
|
13835
14278
|
handleMoved?: (oEvent: sap.ui.base.Event) => void;
|
|
13836
14279
|
|
|
13837
14280
|
/**
|
|
13838
|
-
* This event is raised when the design handle of a
|
|
14281
|
+
* This event is raised when the design handle of a changeable OverlayArea is right clicked.
|
|
13839
14282
|
*/
|
|
13840
14283
|
handleContextMenu?: (oEvent: sap.ui.base.Event) => void;
|
|
13841
14284
|
|
|
13842
14285
|
/**
|
|
13843
|
-
* This event is raised when the design handle of a
|
|
14286
|
+
* This event is raised when the design handle of a changeable OverlayArea is clicked.
|
|
13844
14287
|
*/
|
|
13845
14288
|
handleClick?: (oEvent: sap.ui.base.Event) => void;
|
|
13846
14289
|
}
|
|
@@ -13943,6 +14386,8 @@ declare namespace sap {
|
|
|
13943
14386
|
deleteTimestamp?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13944
14387
|
|
|
13945
14388
|
suppress?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14389
|
+
|
|
14390
|
+
elementId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13946
14391
|
}
|
|
13947
14392
|
|
|
13948
14393
|
interface $RedlineElementCommentSettings
|
|
@@ -13975,6 +14420,8 @@ declare namespace sap {
|
|
|
13975
14420
|
deltaX?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13976
14421
|
|
|
13977
14422
|
deltaY?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14423
|
+
|
|
14424
|
+
endArrowHead?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13978
14425
|
}
|
|
13979
14426
|
|
|
13980
14427
|
interface $RedlineElementRectangleSettings
|
|
@@ -13999,6 +14446,10 @@ declare namespace sap {
|
|
|
13999
14446
|
fillColor?:
|
|
14000
14447
|
| sap.ui.core.CSSColor
|
|
14001
14448
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14449
|
+
|
|
14450
|
+
width?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14451
|
+
|
|
14452
|
+
height?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14002
14453
|
}
|
|
14003
14454
|
|
|
14004
14455
|
interface $RedlineSurfaceSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -14486,13 +14937,13 @@ declare namespace sap {
|
|
|
14486
14937
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14487
14938
|
|
|
14488
14939
|
/**
|
|
14489
|
-
* Sets the transparency level of the
|
|
14940
|
+
* Sets the transparency level of the view gallery. Range is 0-1, with 1 being 100% opaque and 0 being 0%
|
|
14490
14941
|
* opaque
|
|
14491
14942
|
*/
|
|
14492
14943
|
transparency?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14493
14944
|
|
|
14494
14945
|
/**
|
|
14495
|
-
* If disabled,
|
|
14946
|
+
* If disabled, view gallery is non-interactive and greyed out
|
|
14496
14947
|
*/
|
|
14497
14948
|
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14498
14949
|
|
|
@@ -14628,7 +15079,7 @@ declare namespace sap {
|
|
|
14628
15079
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
14629
15080
|
|
|
14630
15081
|
/**
|
|
14631
|
-
* Color used
|
|
15082
|
+
* Color used to highlight all hotspots when the showAllHotspots property has a value of true.
|
|
14632
15083
|
*/
|
|
14633
15084
|
showAllHotspotsTintColor?:
|
|
14634
15085
|
| sap.ui.core.CSSColor
|
|
@@ -15324,7 +15775,7 @@ declare namespace sap {
|
|
|
15324
15775
|
/**
|
|
15325
15776
|
* Gets current value of property {@link #getSelected selected}.
|
|
15326
15777
|
*
|
|
15327
|
-
* Controls the annotation
|
|
15778
|
+
* Controls the annotation selected state
|
|
15328
15779
|
*
|
|
15329
15780
|
* Default value is `false`.
|
|
15330
15781
|
*/
|
|
@@ -15532,7 +15983,7 @@ declare namespace sap {
|
|
|
15532
15983
|
/**
|
|
15533
15984
|
* Sets a new value for property {@link #getSelected selected}.
|
|
15534
15985
|
*
|
|
15535
|
-
* Controls the annotation
|
|
15986
|
+
* Controls the annotation selected state
|
|
15536
15987
|
*
|
|
15537
15988
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15538
15989
|
*
|
|
@@ -17890,7 +18341,9 @@ declare namespace sap {
|
|
|
17890
18341
|
* Gets current value of property {@link #getEnableLogger enableLogger}.
|
|
17891
18342
|
*
|
|
17892
18343
|
* Optional boolean parameter to enable detailed logging. Can be used to track performance issues during
|
|
17893
|
-
* data streaming from SAP 3D
|
|
18344
|
+
* data streaming from SAP 3D Visualization Service.
|
|
18345
|
+
*
|
|
18346
|
+
* Default value is `false`.
|
|
17894
18347
|
*/
|
|
17895
18348
|
getEnableLogger(): boolean;
|
|
17896
18349
|
/**
|
|
@@ -17898,12 +18351,16 @@ declare namespace sap {
|
|
|
17898
18351
|
*
|
|
17899
18352
|
* Send structural data for animation objects, if false they will be omitted, reducing data size. Default:
|
|
17900
18353
|
* true.
|
|
18354
|
+
*
|
|
18355
|
+
* Default value is `true`.
|
|
17901
18356
|
*/
|
|
17902
18357
|
getIncludeAnimation(): boolean;
|
|
17903
18358
|
/**
|
|
17904
18359
|
* Gets current value of property {@link #getIncludeBackground includeBackground}.
|
|
17905
18360
|
*
|
|
17906
18361
|
* If set to true, will return nodes with the type background
|
|
18362
|
+
*
|
|
18363
|
+
* Default value is `true`.
|
|
17907
18364
|
*/
|
|
17908
18365
|
getIncludeBackground(): boolean;
|
|
17909
18366
|
/**
|
|
@@ -17911,14 +18368,30 @@ declare namespace sap {
|
|
|
17911
18368
|
*
|
|
17912
18369
|
* Send structural data for hidden objects, if false they will be omitted, reducing data size. Default:
|
|
17913
18370
|
* true.
|
|
18371
|
+
*
|
|
18372
|
+
* Default value is `true`.
|
|
17914
18373
|
*/
|
|
17915
18374
|
getIncludeHidden(): boolean;
|
|
17916
18375
|
/**
|
|
17917
18376
|
* Gets current value of property {@link #getIncludeParametric includeParametric}.
|
|
17918
18377
|
*
|
|
17919
18378
|
* If set to true, will load parametric nodes
|
|
18379
|
+
*
|
|
18380
|
+
* Default value is `true`.
|
|
17920
18381
|
*/
|
|
17921
18382
|
getIncludeParametric(): boolean;
|
|
18383
|
+
/**
|
|
18384
|
+
* Gets current value of property {@link #getIncludeUsageId includeUsageId}.
|
|
18385
|
+
*
|
|
18386
|
+
* Optional parameter to load UsageIds. Valid values: true - Load all UsageIds. This is potentially very
|
|
18387
|
+
* expensive, as there could be many UsageIds defined for the tenant which are not relevant to the current
|
|
18388
|
+
* application. false - Do not load any UsageIds. string - A single non-empty string which defines the name
|
|
18389
|
+
* of the requested UsageId. string[] - An array of non-empty strings which define the names of requested
|
|
18390
|
+
* UsageIds.
|
|
18391
|
+
*
|
|
18392
|
+
* Default value is `false`.
|
|
18393
|
+
*/
|
|
18394
|
+
getIncludeUsageId(): /* was: sap.ui.vk.IncludeUsageIdType */ any;
|
|
17922
18395
|
/**
|
|
17923
18396
|
* Gets current value of property {@link #getLocalMatrix localMatrix}.
|
|
17924
18397
|
*
|
|
@@ -17958,12 +18431,16 @@ declare namespace sap {
|
|
|
17958
18431
|
* Gets current value of property {@link #getPushPMI pushPMI}.
|
|
17959
18432
|
*
|
|
17960
18433
|
* If set to true, elements for PMI rendering content will be returned. Default: false.
|
|
18434
|
+
*
|
|
18435
|
+
* Default value is `false`.
|
|
17961
18436
|
*/
|
|
17962
18437
|
getPushPMI(): boolean;
|
|
17963
18438
|
/**
|
|
17964
18439
|
* Gets current value of property {@link #getPushViewGroups pushViewGroups}.
|
|
17965
18440
|
*
|
|
17966
18441
|
* If set to true, information of view groups will be returned. Default: true.
|
|
18442
|
+
*
|
|
18443
|
+
* Default value is `true`.
|
|
17967
18444
|
*/
|
|
17968
18445
|
getPushViewGroups(): boolean;
|
|
17969
18446
|
/**
|
|
@@ -18085,15 +18562,17 @@ declare namespace sap {
|
|
|
18085
18562
|
* Sets a new value for property {@link #getEnableLogger enableLogger}.
|
|
18086
18563
|
*
|
|
18087
18564
|
* Optional boolean parameter to enable detailed logging. Can be used to track performance issues during
|
|
18088
|
-
* data streaming from SAP 3D
|
|
18565
|
+
* data streaming from SAP 3D Visualization Service.
|
|
18089
18566
|
*
|
|
18090
18567
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18568
|
+
*
|
|
18569
|
+
* Default value is `false`.
|
|
18091
18570
|
*/
|
|
18092
18571
|
setEnableLogger(
|
|
18093
18572
|
/**
|
|
18094
18573
|
* New value for property `enableLogger`
|
|
18095
18574
|
*/
|
|
18096
|
-
bEnableLogger
|
|
18575
|
+
bEnableLogger?: boolean
|
|
18097
18576
|
): this;
|
|
18098
18577
|
/**
|
|
18099
18578
|
* Sets a new value for property {@link #getIncludeAnimation includeAnimation}.
|
|
@@ -18102,12 +18581,14 @@ declare namespace sap {
|
|
|
18102
18581
|
* true.
|
|
18103
18582
|
*
|
|
18104
18583
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18584
|
+
*
|
|
18585
|
+
* Default value is `true`.
|
|
18105
18586
|
*/
|
|
18106
18587
|
setIncludeAnimation(
|
|
18107
18588
|
/**
|
|
18108
18589
|
* New value for property `includeAnimation`
|
|
18109
18590
|
*/
|
|
18110
|
-
bIncludeAnimation
|
|
18591
|
+
bIncludeAnimation?: boolean
|
|
18111
18592
|
): this;
|
|
18112
18593
|
/**
|
|
18113
18594
|
* Sets a new value for property {@link #getIncludeBackground includeBackground}.
|
|
@@ -18115,12 +18596,14 @@ declare namespace sap {
|
|
|
18115
18596
|
* If set to true, will return nodes with the type background
|
|
18116
18597
|
*
|
|
18117
18598
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18599
|
+
*
|
|
18600
|
+
* Default value is `true`.
|
|
18118
18601
|
*/
|
|
18119
18602
|
setIncludeBackground(
|
|
18120
18603
|
/**
|
|
18121
18604
|
* New value for property `includeBackground`
|
|
18122
18605
|
*/
|
|
18123
|
-
bIncludeBackground
|
|
18606
|
+
bIncludeBackground?: boolean
|
|
18124
18607
|
): this;
|
|
18125
18608
|
/**
|
|
18126
18609
|
* Sets a new value for property {@link #getIncludeHidden includeHidden}.
|
|
@@ -18129,12 +18612,14 @@ declare namespace sap {
|
|
|
18129
18612
|
* true.
|
|
18130
18613
|
*
|
|
18131
18614
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18615
|
+
*
|
|
18616
|
+
* Default value is `true`.
|
|
18132
18617
|
*/
|
|
18133
18618
|
setIncludeHidden(
|
|
18134
18619
|
/**
|
|
18135
18620
|
* New value for property `includeHidden`
|
|
18136
18621
|
*/
|
|
18137
|
-
bIncludeHidden
|
|
18622
|
+
bIncludeHidden?: boolean
|
|
18138
18623
|
): this;
|
|
18139
18624
|
/**
|
|
18140
18625
|
* Sets a new value for property {@link #getIncludeParametric includeParametric}.
|
|
@@ -18142,12 +18627,33 @@ declare namespace sap {
|
|
|
18142
18627
|
* If set to true, will load parametric nodes
|
|
18143
18628
|
*
|
|
18144
18629
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18630
|
+
*
|
|
18631
|
+
* Default value is `true`.
|
|
18145
18632
|
*/
|
|
18146
18633
|
setIncludeParametric(
|
|
18147
18634
|
/**
|
|
18148
18635
|
* New value for property `includeParametric`
|
|
18149
18636
|
*/
|
|
18150
|
-
bIncludeParametric
|
|
18637
|
+
bIncludeParametric?: boolean
|
|
18638
|
+
): this;
|
|
18639
|
+
/**
|
|
18640
|
+
* Sets a new value for property {@link #getIncludeUsageId includeUsageId}.
|
|
18641
|
+
*
|
|
18642
|
+
* Optional parameter to load UsageIds. Valid values: true - Load all UsageIds. This is potentially very
|
|
18643
|
+
* expensive, as there could be many UsageIds defined for the tenant which are not relevant to the current
|
|
18644
|
+
* application. false - Do not load any UsageIds. string - A single non-empty string which defines the name
|
|
18645
|
+
* of the requested UsageId. string[] - An array of non-empty strings which define the names of requested
|
|
18646
|
+
* UsageIds.
|
|
18647
|
+
*
|
|
18648
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18649
|
+
*
|
|
18650
|
+
* Default value is `false`.
|
|
18651
|
+
*/
|
|
18652
|
+
setIncludeUsageId(
|
|
18653
|
+
/**
|
|
18654
|
+
* New value for property `includeUsageId`
|
|
18655
|
+
*/
|
|
18656
|
+
sIncludeUsageId?: /* was: sap.ui.vk.IncludeUsageIdType */ any
|
|
18151
18657
|
): this;
|
|
18152
18658
|
/**
|
|
18153
18659
|
* Sets a new value for property {@link #getLocalMatrix localMatrix}.
|
|
@@ -18211,12 +18717,14 @@ declare namespace sap {
|
|
|
18211
18717
|
* If set to true, elements for PMI rendering content will be returned. Default: false.
|
|
18212
18718
|
*
|
|
18213
18719
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18720
|
+
*
|
|
18721
|
+
* Default value is `false`.
|
|
18214
18722
|
*/
|
|
18215
18723
|
setPushPMI(
|
|
18216
18724
|
/**
|
|
18217
18725
|
* New value for property `pushPMI`
|
|
18218
18726
|
*/
|
|
18219
|
-
bPushPMI
|
|
18727
|
+
bPushPMI?: boolean
|
|
18220
18728
|
): this;
|
|
18221
18729
|
/**
|
|
18222
18730
|
* Sets a new value for property {@link #getPushViewGroups pushViewGroups}.
|
|
@@ -18224,12 +18732,14 @@ declare namespace sap {
|
|
|
18224
18732
|
* If set to true, information of view groups will be returned. Default: true.
|
|
18225
18733
|
*
|
|
18226
18734
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18735
|
+
*
|
|
18736
|
+
* Default value is `true`.
|
|
18227
18737
|
*/
|
|
18228
18738
|
setPushViewGroups(
|
|
18229
18739
|
/**
|
|
18230
18740
|
* New value for property `pushViewGroups`
|
|
18231
18741
|
*/
|
|
18232
|
-
bPushViewGroups
|
|
18742
|
+
bPushViewGroups?: boolean
|
|
18233
18743
|
): this;
|
|
18234
18744
|
/**
|
|
18235
18745
|
* Sets a new value for property {@link #getSource source}.
|
|
@@ -20254,7 +20764,7 @@ declare namespace sap {
|
|
|
20254
20764
|
/**
|
|
20255
20765
|
* Gets current value of property {@link #getAmbientColour ambientColour}.
|
|
20256
20766
|
*
|
|
20257
|
-
* Ambient colour (optional) - red, green, blue, and
|
|
20767
|
+
* Ambient colour (optional) - red, green, blue, and alpha
|
|
20258
20768
|
*
|
|
20259
20769
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20260
20770
|
*/
|
|
@@ -20262,7 +20772,7 @@ declare namespace sap {
|
|
|
20262
20772
|
/**
|
|
20263
20773
|
* Gets current value of property {@link #getDiffuseColour diffuseColour}.
|
|
20264
20774
|
*
|
|
20265
|
-
* Diffuse colour (optional) - red, green, blue, and
|
|
20775
|
+
* Diffuse colour (optional) - red, green, blue, and alpha
|
|
20266
20776
|
*
|
|
20267
20777
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20268
20778
|
*/
|
|
@@ -20270,7 +20780,7 @@ declare namespace sap {
|
|
|
20270
20780
|
/**
|
|
20271
20781
|
* Gets current value of property {@link #getEmissiveColour emissiveColour}.
|
|
20272
20782
|
*
|
|
20273
|
-
* Emissive colour (optional) - red, green, blue, and
|
|
20783
|
+
* Emissive colour (optional) - red, green, blue, and alpha
|
|
20274
20784
|
*
|
|
20275
20785
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20276
20786
|
*/
|
|
@@ -20292,7 +20802,7 @@ declare namespace sap {
|
|
|
20292
20802
|
/**
|
|
20293
20803
|
* Gets current value of property {@link #getLineColour lineColour}.
|
|
20294
20804
|
*
|
|
20295
|
-
* Line colour (optional) - red, green, blue, and
|
|
20805
|
+
* Line colour (optional) - red, green, blue, and alpha
|
|
20296
20806
|
*
|
|
20297
20807
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20298
20808
|
*/
|
|
@@ -20324,7 +20834,7 @@ declare namespace sap {
|
|
|
20324
20834
|
/**
|
|
20325
20835
|
* Gets current value of property {@link #getSpecularColour specularColour}.
|
|
20326
20836
|
*
|
|
20327
|
-
* Specular colour (optional) - red, green, blue, and
|
|
20837
|
+
* Specular colour (optional) - red, green, blue, and alpha
|
|
20328
20838
|
*
|
|
20329
20839
|
* Default value is `"rgba(0, 0, 0, 1)"`.
|
|
20330
20840
|
*/
|
|
@@ -20368,7 +20878,7 @@ declare namespace sap {
|
|
|
20368
20878
|
/**
|
|
20369
20879
|
* Sets a new value for property {@link #getAmbientColour ambientColour}.
|
|
20370
20880
|
*
|
|
20371
|
-
* Ambient colour (optional) - red, green, blue, and
|
|
20881
|
+
* Ambient colour (optional) - red, green, blue, and alpha
|
|
20372
20882
|
*
|
|
20373
20883
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20374
20884
|
*
|
|
@@ -20383,7 +20893,7 @@ declare namespace sap {
|
|
|
20383
20893
|
/**
|
|
20384
20894
|
* Sets a new value for property {@link #getDiffuseColour diffuseColour}.
|
|
20385
20895
|
*
|
|
20386
|
-
* Diffuse colour (optional) - red, green, blue, and
|
|
20896
|
+
* Diffuse colour (optional) - red, green, blue, and alpha
|
|
20387
20897
|
*
|
|
20388
20898
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20389
20899
|
*
|
|
@@ -20398,7 +20908,7 @@ declare namespace sap {
|
|
|
20398
20908
|
/**
|
|
20399
20909
|
* Sets a new value for property {@link #getEmissiveColour emissiveColour}.
|
|
20400
20910
|
*
|
|
20401
|
-
* Emissive colour (optional) - red, green, blue, and
|
|
20911
|
+
* Emissive colour (optional) - red, green, blue, and alpha
|
|
20402
20912
|
*
|
|
20403
20913
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20404
20914
|
*
|
|
@@ -20441,7 +20951,7 @@ declare namespace sap {
|
|
|
20441
20951
|
/**
|
|
20442
20952
|
* Sets a new value for property {@link #getLineColour lineColour}.
|
|
20443
20953
|
*
|
|
20444
|
-
* Line colour (optional) - red, green, blue, and
|
|
20954
|
+
* Line colour (optional) - red, green, blue, and alpha
|
|
20445
20955
|
*
|
|
20446
20956
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20447
20957
|
*
|
|
@@ -20499,7 +21009,7 @@ declare namespace sap {
|
|
|
20499
21009
|
/**
|
|
20500
21010
|
* Sets a new value for property {@link #getSpecularColour specularColour}.
|
|
20501
21011
|
*
|
|
20502
|
-
* Specular colour (optional) - red, green, blue, and
|
|
21012
|
+
* Specular colour (optional) - red, green, blue, and alpha
|
|
20503
21013
|
*
|
|
20504
21014
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20505
21015
|
*
|
|
@@ -20602,7 +21112,7 @@ declare namespace sap {
|
|
|
20602
21112
|
* viewer.loadContent("https://www.google.co.nz/images/srpr/logo11w.png", "png", true);
|
|
20603
21113
|
* ```
|
|
20604
21114
|
*/
|
|
20605
|
-
class NativeViewport extends sap.ui.
|
|
21115
|
+
class NativeViewport extends sap.ui.vk.ViewportBase {
|
|
20606
21116
|
/**
|
|
20607
21117
|
* Constructor for a new NativeViewport.
|
|
20608
21118
|
*
|
|
@@ -20638,7 +21148,7 @@ declare namespace sap {
|
|
|
20638
21148
|
* Creates a new subclass of class sap.ui.vk.NativeViewport with name `sClassName` and enriches it with
|
|
20639
21149
|
* the information contained in `oClassInfo`.
|
|
20640
21150
|
*
|
|
20641
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.
|
|
21151
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vk.ViewportBase.extend}.
|
|
20642
21152
|
*/
|
|
20643
21153
|
static extend<T extends Record<string, unknown>>(
|
|
20644
21154
|
/**
|
|
@@ -20814,11 +21324,6 @@ declare namespace sap {
|
|
|
20814
21324
|
size?: object;
|
|
20815
21325
|
}
|
|
20816
21326
|
): this;
|
|
20817
|
-
/**
|
|
20818
|
-
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
20819
|
-
* or `null`.
|
|
20820
|
-
*/
|
|
20821
|
-
getContentConnector(): sap.ui.core.ID;
|
|
20822
21327
|
/**
|
|
20823
21328
|
* Gets current value of property {@link #getLimitZoomOut limitZoomOut}.
|
|
20824
21329
|
*
|
|
@@ -20900,16 +21405,6 @@ declare namespace sap {
|
|
|
20900
21405
|
*/
|
|
20901
21406
|
dy: int
|
|
20902
21407
|
): sap.ui.vk.NativeViewport;
|
|
20903
|
-
/**
|
|
20904
|
-
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
20905
|
-
*/
|
|
20906
|
-
setContentConnector(
|
|
20907
|
-
/**
|
|
20908
|
-
* ID of an element which becomes the new target of this contentConnector association; alternatively, an
|
|
20909
|
-
* element instance may be given
|
|
20910
|
-
*/
|
|
20911
|
-
oContentConnector: sap.ui.core.ID | sap.ui.vk.ContentConnector
|
|
20912
|
-
): this;
|
|
20913
21408
|
/**
|
|
20914
21409
|
* Sets a new value for property {@link #getLimitZoomOut limitZoomOut}.
|
|
20915
21410
|
*
|
|
@@ -21418,7 +21913,7 @@ declare namespace sap {
|
|
|
21418
21913
|
*
|
|
21419
21914
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
21420
21915
|
* it passes the child nodes to one by one.
|
|
21421
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
21916
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
21422
21917
|
* after each call to the `callback` function.
|
|
21423
21918
|
*/
|
|
21424
21919
|
enumerateChildren(
|
|
@@ -21456,7 +21951,7 @@ declare namespace sap {
|
|
|
21456
21951
|
*
|
|
21457
21952
|
* This method gets the child nodes of a particular node, and then calls the `callback` function to which
|
|
21458
21953
|
* it passes the child nodes to one by one.
|
|
21459
|
-
* The `BaseNodeProxy` objects passed to the `callback`
|
|
21954
|
+
* The `BaseNodeProxy` objects passed to the `callback` function are temporary objects, which are reset
|
|
21460
21955
|
* after each call to the `callback` function.
|
|
21461
21956
|
*/
|
|
21462
21957
|
enumerateChildren(
|
|
@@ -23129,7 +23624,7 @@ declare namespace sap {
|
|
|
23129
23624
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23130
23625
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23131
23626
|
*
|
|
23132
|
-
* This event is raised when the design handle of a
|
|
23627
|
+
* This event is raised when the design handle of a changeable OverlayArea is clicked.
|
|
23133
23628
|
*/
|
|
23134
23629
|
attachHandleClick(
|
|
23135
23630
|
/**
|
|
@@ -23152,7 +23647,7 @@ declare namespace sap {
|
|
|
23152
23647
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23153
23648
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23154
23649
|
*
|
|
23155
|
-
* This event is raised when the design handle of a
|
|
23650
|
+
* This event is raised when the design handle of a changeable OverlayArea is clicked.
|
|
23156
23651
|
*/
|
|
23157
23652
|
attachHandleClick(
|
|
23158
23653
|
/**
|
|
@@ -23171,7 +23666,7 @@ declare namespace sap {
|
|
|
23171
23666
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23172
23667
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23173
23668
|
*
|
|
23174
|
-
* This event is raised when the design handle of a
|
|
23669
|
+
* This event is raised when the design handle of a changeable OverlayArea is right clicked.
|
|
23175
23670
|
*/
|
|
23176
23671
|
attachHandleContextMenu(
|
|
23177
23672
|
/**
|
|
@@ -23195,7 +23690,7 @@ declare namespace sap {
|
|
|
23195
23690
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23196
23691
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23197
23692
|
*
|
|
23198
|
-
* This event is raised when the design handle of a
|
|
23693
|
+
* This event is raised when the design handle of a changeable OverlayArea is right clicked.
|
|
23199
23694
|
*/
|
|
23200
23695
|
attachHandleContextMenu(
|
|
23201
23696
|
/**
|
|
@@ -23213,7 +23708,7 @@ declare namespace sap {
|
|
|
23213
23708
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23214
23709
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23215
23710
|
*
|
|
23216
|
-
* This event is raised when the design handle of a
|
|
23711
|
+
* This event is raised when the design handle of a changeable OverlayArea is moved.
|
|
23217
23712
|
*/
|
|
23218
23713
|
attachHandleMoved(
|
|
23219
23714
|
/**
|
|
@@ -23236,7 +23731,7 @@ declare namespace sap {
|
|
|
23236
23731
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
23237
23732
|
* otherwise it will be bound to this `sap.ui.vk.OverlayArea` itself.
|
|
23238
23733
|
*
|
|
23239
|
-
* This event is raised when the design handle of a
|
|
23734
|
+
* This event is raised when the design handle of a changeable OverlayArea is moved.
|
|
23240
23735
|
*/
|
|
23241
23736
|
attachHandleMoved(
|
|
23242
23737
|
/**
|
|
@@ -23475,13 +23970,13 @@ declare namespace sap {
|
|
|
23475
23970
|
/**
|
|
23476
23971
|
* Gets current value of property {@link #getColorNonSelect colorNonSelect}.
|
|
23477
23972
|
*
|
|
23478
|
-
* The non-select color of the OverlayArea in case non-selection de-
|
|
23973
|
+
* The non-select color of the OverlayArea in case non-selection de-highlighting is desired.
|
|
23479
23974
|
*/
|
|
23480
23975
|
getColorNonSelect(): string;
|
|
23481
23976
|
/**
|
|
23482
23977
|
* Gets current value of property {@link #getColorSelect colorSelect}.
|
|
23483
23978
|
*
|
|
23484
|
-
* The select color of the OverlayArea in case selection
|
|
23979
|
+
* The select color of the OverlayArea in case selection highlighting is desired.
|
|
23485
23980
|
*/
|
|
23486
23981
|
getColorSelect(): string;
|
|
23487
23982
|
/**
|
|
@@ -23571,7 +24066,7 @@ declare namespace sap {
|
|
|
23571
24066
|
/**
|
|
23572
24067
|
* Sets a new value for property {@link #getColorNonSelect colorNonSelect}.
|
|
23573
24068
|
*
|
|
23574
|
-
* The non-select color of the OverlayArea in case non-selection de-
|
|
24069
|
+
* The non-select color of the OverlayArea in case non-selection de-highlighting is desired.
|
|
23575
24070
|
*
|
|
23576
24071
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23577
24072
|
*/
|
|
@@ -23584,7 +24079,7 @@ declare namespace sap {
|
|
|
23584
24079
|
/**
|
|
23585
24080
|
* Sets a new value for property {@link #getColorSelect colorSelect}.
|
|
23586
24081
|
*
|
|
23587
|
-
* The select color of the OverlayArea in case selection
|
|
24082
|
+
* The select color of the OverlayArea in case selection highlighting is desired.
|
|
23588
24083
|
*
|
|
23589
24084
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23590
24085
|
*/
|
|
@@ -24572,6 +25067,10 @@ declare namespace sap {
|
|
|
24572
25067
|
* Gets current value of property {@link #getDeleteTimestamp deleteTimestamp}.
|
|
24573
25068
|
*/
|
|
24574
25069
|
getDeleteTimestamp(): int;
|
|
25070
|
+
/**
|
|
25071
|
+
* Gets current value of property {@link #getElementId elementId}.
|
|
25072
|
+
*/
|
|
25073
|
+
getElementId(): string;
|
|
24575
25074
|
/**
|
|
24576
25075
|
* Gets current value of property {@link #getHalo halo}.
|
|
24577
25076
|
*
|
|
@@ -24716,6 +25215,17 @@ declare namespace sap {
|
|
|
24716
25215
|
*/
|
|
24717
25216
|
iDeleteTimestamp?: int
|
|
24718
25217
|
): this;
|
|
25218
|
+
/**
|
|
25219
|
+
* Sets a new value for property {@link #getElementId elementId}.
|
|
25220
|
+
*
|
|
25221
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25222
|
+
*/
|
|
25223
|
+
setElementId(
|
|
25224
|
+
/**
|
|
25225
|
+
* New value for property `elementId`
|
|
25226
|
+
*/
|
|
25227
|
+
sElementId?: string
|
|
25228
|
+
): this;
|
|
24719
25229
|
/**
|
|
24720
25230
|
* Sets a new value for property {@link #getHalo halo}.
|
|
24721
25231
|
*
|
|
@@ -24984,11 +25494,11 @@ declare namespace sap {
|
|
|
24984
25494
|
*/
|
|
24985
25495
|
edit(
|
|
24986
25496
|
/**
|
|
24987
|
-
* The value in pixels that radiusX and originX will be
|
|
25497
|
+
* The value in pixels that radiusX and originX will be calculated from for the ellipse.
|
|
24988
25498
|
*/
|
|
24989
25499
|
offsetX: number,
|
|
24990
25500
|
/**
|
|
24991
|
-
* The value in pixels that radiusY and originY will be
|
|
25501
|
+
* The value in pixels that radiusY and originY will be calculated from for the ellipse.
|
|
24992
25502
|
*/
|
|
24993
25503
|
offsetY: number,
|
|
24994
25504
|
/**
|
|
@@ -25273,6 +25783,12 @@ declare namespace sap {
|
|
|
25273
25783
|
* Default value is `0`.
|
|
25274
25784
|
*/
|
|
25275
25785
|
getDeltaY(): float;
|
|
25786
|
+
/**
|
|
25787
|
+
* Gets current value of property {@link #getEndArrowHead endArrowHead}.
|
|
25788
|
+
*
|
|
25789
|
+
* Default value is `false`.
|
|
25790
|
+
*/
|
|
25791
|
+
getEndArrowHead(): boolean;
|
|
25276
25792
|
/**
|
|
25277
25793
|
* Imports data from a JSON object into the line redline element.
|
|
25278
25794
|
*/
|
|
@@ -25317,6 +25833,19 @@ declare namespace sap {
|
|
|
25317
25833
|
*/
|
|
25318
25834
|
fDeltaY?: float
|
|
25319
25835
|
): this;
|
|
25836
|
+
/**
|
|
25837
|
+
* Sets a new value for property {@link #getEndArrowHead endArrowHead}.
|
|
25838
|
+
*
|
|
25839
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25840
|
+
*
|
|
25841
|
+
* Default value is `false`.
|
|
25842
|
+
*/
|
|
25843
|
+
setEndArrowHead(
|
|
25844
|
+
/**
|
|
25845
|
+
* New value for property `endArrowHead`
|
|
25846
|
+
*/
|
|
25847
|
+
bEndArrowHead?: boolean
|
|
25848
|
+
): this;
|
|
25320
25849
|
}
|
|
25321
25850
|
/**
|
|
25322
25851
|
* @SINCE 1.40.0
|
|
@@ -25557,12 +26086,24 @@ declare namespace sap {
|
|
|
25557
26086
|
* Default value is `32`.
|
|
25558
26087
|
*/
|
|
25559
26088
|
getFontSize(): float;
|
|
26089
|
+
/**
|
|
26090
|
+
* Gets current value of property {@link #getHeight height}.
|
|
26091
|
+
*
|
|
26092
|
+
* Default value is `0`.
|
|
26093
|
+
*/
|
|
26094
|
+
getHeight(): float;
|
|
25560
26095
|
/**
|
|
25561
26096
|
* Gets current value of property {@link #getText text}.
|
|
25562
26097
|
*
|
|
25563
26098
|
* Default value is `"Text"`.
|
|
25564
26099
|
*/
|
|
25565
26100
|
getText(): string;
|
|
26101
|
+
/**
|
|
26102
|
+
* Gets current value of property {@link #getWidth width}.
|
|
26103
|
+
*
|
|
26104
|
+
* Default value is `300`.
|
|
26105
|
+
*/
|
|
26106
|
+
getWidth(): float;
|
|
25566
26107
|
/**
|
|
25567
26108
|
* Imports data from a JSON object into the text redline element.
|
|
25568
26109
|
*/
|
|
@@ -25620,6 +26161,19 @@ declare namespace sap {
|
|
|
25620
26161
|
*/
|
|
25621
26162
|
fFontSize?: float
|
|
25622
26163
|
): this;
|
|
26164
|
+
/**
|
|
26165
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
26166
|
+
*
|
|
26167
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26168
|
+
*
|
|
26169
|
+
* Default value is `0`.
|
|
26170
|
+
*/
|
|
26171
|
+
setHeight(
|
|
26172
|
+
/**
|
|
26173
|
+
* New value for property `height`
|
|
26174
|
+
*/
|
|
26175
|
+
fHeight?: float
|
|
26176
|
+
): this;
|
|
25623
26177
|
/**
|
|
25624
26178
|
* Sets a new value for property {@link #getText text}.
|
|
25625
26179
|
*
|
|
@@ -25633,6 +26187,19 @@ declare namespace sap {
|
|
|
25633
26187
|
*/
|
|
25634
26188
|
sText?: string
|
|
25635
26189
|
): this;
|
|
26190
|
+
/**
|
|
26191
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
26192
|
+
*
|
|
26193
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26194
|
+
*
|
|
26195
|
+
* Default value is `300`.
|
|
26196
|
+
*/
|
|
26197
|
+
setWidth(
|
|
26198
|
+
/**
|
|
26199
|
+
* New value for property `width`
|
|
26200
|
+
*/
|
|
26201
|
+
fWidth?: float
|
|
26202
|
+
): this;
|
|
25636
26203
|
}
|
|
25637
26204
|
/**
|
|
25638
26205
|
* @SINCE 1.40.0
|
|
@@ -26286,7 +26853,7 @@ declare namespace sap {
|
|
|
26286
26853
|
*/
|
|
26287
26854
|
setInitialView(
|
|
26288
26855
|
/**
|
|
26289
|
-
*
|
|
26856
|
+
* Initial view
|
|
26290
26857
|
*/
|
|
26291
26858
|
view: sap.ui.vk.View
|
|
26292
26859
|
): void;
|
|
@@ -27609,7 +28176,7 @@ declare namespace sap {
|
|
|
27609
28176
|
/**
|
|
27610
28177
|
* Constructor for a new View.
|
|
27611
28178
|
*
|
|
27612
|
-
* The objects of this class contain
|
|
28179
|
+
* The objects of this class contain necessary information to reproduce current view including camera type,
|
|
27613
28180
|
* position and orientation as well as objects visibility property and their positions (if different from
|
|
27614
28181
|
* default)
|
|
27615
28182
|
*
|
|
@@ -28602,6 +29169,8 @@ declare namespace sap {
|
|
|
28602
29169
|
*/
|
|
28603
29170
|
getHotspotColorABGR(): int;
|
|
28604
29171
|
/**
|
|
29172
|
+
* @deprecated (since 1.96.0)
|
|
29173
|
+
*
|
|
28605
29174
|
* Gets the 2D viewport used for displaying format natively supported by the browser - 2D images etc.
|
|
28606
29175
|
*/
|
|
28607
29176
|
getNativeViewport(): sap.ui.vk.NativeViewport;
|
|
@@ -29328,7 +29897,7 @@ declare namespace sap {
|
|
|
29328
29897
|
/**
|
|
29329
29898
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
29330
29899
|
*
|
|
29331
|
-
* If disabled,
|
|
29900
|
+
* If disabled, view gallery is non-interactive and greyed out
|
|
29332
29901
|
*
|
|
29333
29902
|
* Default value is `true`.
|
|
29334
29903
|
*/
|
|
@@ -29381,7 +29950,7 @@ declare namespace sap {
|
|
|
29381
29950
|
/**
|
|
29382
29951
|
* Gets current value of property {@link #getTransparency transparency}.
|
|
29383
29952
|
*
|
|
29384
|
-
* Sets the transparency level of the
|
|
29953
|
+
* Sets the transparency level of the view gallery. Range is 0-1, with 1 being 100% opaque and 0 being 0%
|
|
29385
29954
|
* opaque
|
|
29386
29955
|
*
|
|
29387
29956
|
* Default value is `1`.
|
|
@@ -29415,7 +29984,7 @@ declare namespace sap {
|
|
|
29415
29984
|
/**
|
|
29416
29985
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
29417
29986
|
*
|
|
29418
|
-
* If disabled,
|
|
29987
|
+
* If disabled, view gallery is non-interactive and greyed out
|
|
29419
29988
|
*
|
|
29420
29989
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29421
29990
|
*
|
|
@@ -29542,7 +30111,7 @@ declare namespace sap {
|
|
|
29542
30111
|
/**
|
|
29543
30112
|
* Sets a new value for property {@link #getTransparency transparency}.
|
|
29544
30113
|
*
|
|
29545
|
-
* Sets the transparency level of the
|
|
30114
|
+
* Sets the transparency level of the view gallery. Range is 0-1, with 1 being 100% opaque and 0 being 0%
|
|
29546
30115
|
* opaque
|
|
29547
30116
|
*
|
|
29548
30117
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -29573,7 +30142,7 @@ declare namespace sap {
|
|
|
29573
30142
|
/**
|
|
29574
30143
|
* Constructor for a new View Group.
|
|
29575
30144
|
*
|
|
29576
|
-
* The objects of this class contain
|
|
30145
|
+
* The objects of this class contain necessary information about View Group
|
|
29577
30146
|
*
|
|
29578
30147
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
29579
30148
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -30899,7 +31468,7 @@ declare namespace sap {
|
|
|
30899
31468
|
/**
|
|
30900
31469
|
* Gets current value of property {@link #getShowAllHotspotsTintColor showAllHotspotsTintColor}.
|
|
30901
31470
|
*
|
|
30902
|
-
* Color used
|
|
31471
|
+
* Color used to highlight all hotspots when the showAllHotspots property has a value of true.
|
|
30903
31472
|
*
|
|
30904
31473
|
* Default value is `"rgba(255, 255, 0, .35)"`.
|
|
30905
31474
|
*/
|
|
@@ -31052,6 +31621,24 @@ declare namespace sap {
|
|
|
31052
31621
|
*/
|
|
31053
31622
|
vTool: int | sap.ui.core.ID | sap.ui.vk.tools.Tool
|
|
31054
31623
|
): sap.ui.core.ID;
|
|
31624
|
+
/**
|
|
31625
|
+
* Renders viewport content.
|
|
31626
|
+
*/
|
|
31627
|
+
renderContent(
|
|
31628
|
+
/**
|
|
31629
|
+
* the RenderManager that can be used for writing to the Render-Output-Buffer
|
|
31630
|
+
*/
|
|
31631
|
+
rm: sap.ui.core.RenderManager
|
|
31632
|
+
): void;
|
|
31633
|
+
/**
|
|
31634
|
+
* Renders viewport tools.
|
|
31635
|
+
*/
|
|
31636
|
+
renderTools(
|
|
31637
|
+
/**
|
|
31638
|
+
* the RenderManager that can be used for writing to the Render-Output-Buffer
|
|
31639
|
+
*/
|
|
31640
|
+
rm: sap.ui.core.RenderManager
|
|
31641
|
+
): void;
|
|
31055
31642
|
/**
|
|
31056
31643
|
* Rotates the content resource displayed on the Viewport.
|
|
31057
31644
|
*/
|
|
@@ -31286,7 +31873,7 @@ declare namespace sap {
|
|
|
31286
31873
|
/**
|
|
31287
31874
|
* Sets a new value for property {@link #getShowAllHotspotsTintColor showAllHotspotsTintColor}.
|
|
31288
31875
|
*
|
|
31289
|
-
* Color used
|
|
31876
|
+
* Color used to highlight all hotspots when the showAllHotspots property has a value of true.
|
|
31290
31877
|
*
|
|
31291
31878
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31292
31879
|
*
|
|
@@ -31662,7 +32249,7 @@ declare namespace sap {
|
|
|
31662
32249
|
*/
|
|
31663
32250
|
setOutlineWidth(
|
|
31664
32251
|
/**
|
|
31665
|
-
*
|
|
32252
|
+
* Width of outline
|
|
31666
32253
|
*/
|
|
31667
32254
|
width: float
|
|
31668
32255
|
): sap.ui.vk.ViewStateManager;
|
|
@@ -31692,7 +32279,7 @@ declare namespace sap {
|
|
|
31692
32279
|
*/
|
|
31693
32280
|
nodeRef: any,
|
|
31694
32281
|
/**
|
|
31695
|
-
* The node
|
|
32282
|
+
* The node opacity
|
|
31696
32283
|
*/
|
|
31697
32284
|
opacity: float
|
|
31698
32285
|
): sap.ui.vk.ViewStateManager;
|
|
@@ -31705,7 +32292,7 @@ declare namespace sap {
|
|
|
31705
32292
|
*/
|
|
31706
32293
|
nodeRef: any,
|
|
31707
32294
|
/**
|
|
31708
|
-
* vector for
|
|
32295
|
+
* vector for position, array of size 3.
|
|
31709
32296
|
*/
|
|
31710
32297
|
translation: float[],
|
|
31711
32298
|
/**
|
|
@@ -33677,6 +34264,8 @@ declare namespace sap {
|
|
|
33677
34264
|
|
|
33678
34265
|
"sap/ui/vk/svg/Scene": undefined;
|
|
33679
34266
|
|
|
34267
|
+
"sap/ui/vk/svg/Viewport": undefined;
|
|
34268
|
+
|
|
33680
34269
|
"sap/ui/vk/svg/ViewStateManager": undefined;
|
|
33681
34270
|
|
|
33682
34271
|
"sap/ui/vk/Texture": undefined;
|