@sapui5/ts-types 1.118.0 → 1.119.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/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +16 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +35 -1
- package/types/sap.f.d.ts +117 -3
- package/types/sap.fe.core.d.ts +87 -61
- package/types/sap.fe.macros.d.ts +164 -21
- package/types/sap.fe.navigation.d.ts +92 -87
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +25 -21
- 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 +67 -53
- package/types/sap.insights.d.ts +141 -40
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +458 -82
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +519 -272
- package/types/sap.suite.ui.commons.d.ts +50 -6
- package/types/sap.suite.ui.generic.template.d.ts +22 -17
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +17 -15
- 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 +41 -62
- package/types/sap.ui.core.d.ts +504 -162
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -54
- 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 +11 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1023 -262
- 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 +1 -1
- package/types/sap.ui.table.d.ts +913 -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 +367 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +113 -115
- package/types/sap.ui.webc.main.d.ts +299 -306
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +534 -14
- 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 +1 -1
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.119.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -7005,6 +7005,20 @@ declare namespace sap {
|
|
|
7005
7005
|
) => void;
|
|
7006
7006
|
}
|
|
7007
7007
|
|
|
7008
|
+
interface $PointCloudSelectionToolSettings
|
|
7009
|
+
extends sap.ui.vk.tools.$ToolSettings {
|
|
7010
|
+
selectionColor?:
|
|
7011
|
+
| float[]
|
|
7012
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
7013
|
+
| `{${string}}`;
|
|
7014
|
+
|
|
7015
|
+
groupAdded?: (oEvent: sap.ui.base.Event) => void;
|
|
7016
|
+
|
|
7017
|
+
groupRemoved?: (oEvent: sap.ui.base.Event) => void;
|
|
7018
|
+
|
|
7019
|
+
currentGroupChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
7020
|
+
}
|
|
7021
|
+
|
|
7008
7022
|
interface $RectSelectToolSettings
|
|
7009
7023
|
extends sap.ui.vk.tools.$ToolSettings {
|
|
7010
7024
|
/**
|
|
@@ -7619,6 +7633,12 @@ declare namespace sap {
|
|
|
7619
7633
|
placementMode?: sap.ui.vk.tools.GizmoPlacementMode;
|
|
7620
7634
|
}
|
|
7621
7635
|
|
|
7636
|
+
interface PointCloudSelectionTool$CurrentGroupChangedEventParameters {}
|
|
7637
|
+
|
|
7638
|
+
interface PointCloudSelectionTool$GroupAddedEventParameters {}
|
|
7639
|
+
|
|
7640
|
+
interface PointCloudSelectionTool$GroupRemovedEventParameters {}
|
|
7641
|
+
|
|
7622
7642
|
interface RedlineTool$ElementClickedEventParameters {
|
|
7623
7643
|
elementId?: string;
|
|
7624
7644
|
}
|
|
@@ -11800,6 +11820,335 @@ declare namespace sap {
|
|
|
11800
11820
|
bShowEditingUI?: boolean
|
|
11801
11821
|
): this;
|
|
11802
11822
|
}
|
|
11823
|
+
/**
|
|
11824
|
+
* @experimental (since 1.118.0) - This class is experimental and might be modified or removed in future
|
|
11825
|
+
* versions.
|
|
11826
|
+
*
|
|
11827
|
+
* Tool used to select points
|
|
11828
|
+
*/
|
|
11829
|
+
class PointCloudSelectionTool extends sap.ui.vk.tools.Tool {
|
|
11830
|
+
/**
|
|
11831
|
+
* Constructor for a PointCloudSelectionTool.
|
|
11832
|
+
*
|
|
11833
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
11834
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
11835
|
+
* of the syntax of the settings object.
|
|
11836
|
+
*/
|
|
11837
|
+
constructor(
|
|
11838
|
+
/**
|
|
11839
|
+
* An optional map/JSON object with initial property values, aggregated objects etc. for the new tool instance.
|
|
11840
|
+
*/
|
|
11841
|
+
mSettings?: sap.ui.vk.tools.$PointCloudSelectionToolSettings
|
|
11842
|
+
);
|
|
11843
|
+
/**
|
|
11844
|
+
* Constructor for a PointCloudSelectionTool.
|
|
11845
|
+
*
|
|
11846
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
11847
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
11848
|
+
* of the syntax of the settings object.
|
|
11849
|
+
*/
|
|
11850
|
+
constructor(
|
|
11851
|
+
/**
|
|
11852
|
+
* ID of the new tool instance. `sId`is generated automatically if no non-empty ID is given. Note: this
|
|
11853
|
+
* can be omitted, regardless of whether `mSettings` will be provided or not.
|
|
11854
|
+
*/
|
|
11855
|
+
sId?: string,
|
|
11856
|
+
/**
|
|
11857
|
+
* An optional map/JSON object with initial property values, aggregated objects etc. for the new tool instance.
|
|
11858
|
+
*/
|
|
11859
|
+
mSettings?: sap.ui.vk.tools.$PointCloudSelectionToolSettings
|
|
11860
|
+
);
|
|
11861
|
+
|
|
11862
|
+
/**
|
|
11863
|
+
* Creates a new subclass of class sap.ui.vk.tools.PointCloudSelectionTool with name `sClassName` and enriches
|
|
11864
|
+
* it with the information contained in `oClassInfo`.
|
|
11865
|
+
*
|
|
11866
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.vk.tools.Tool.extend}.
|
|
11867
|
+
*
|
|
11868
|
+
* @returns Created class / constructor function
|
|
11869
|
+
*/
|
|
11870
|
+
static extend<T extends Record<string, unknown>>(
|
|
11871
|
+
/**
|
|
11872
|
+
* Name of the class being created
|
|
11873
|
+
*/
|
|
11874
|
+
sClassName: string,
|
|
11875
|
+
/**
|
|
11876
|
+
* Object literal with information about the class
|
|
11877
|
+
*/
|
|
11878
|
+
oClassInfo?: sap.ClassInfo<
|
|
11879
|
+
T,
|
|
11880
|
+
sap.ui.vk.tools.PointCloudSelectionTool
|
|
11881
|
+
>,
|
|
11882
|
+
/**
|
|
11883
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11884
|
+
* used by this class
|
|
11885
|
+
*/
|
|
11886
|
+
FNMetaImpl?: Function
|
|
11887
|
+
): Function;
|
|
11888
|
+
/**
|
|
11889
|
+
* Returns a metadata object for class sap.ui.vk.tools.PointCloudSelectionTool.
|
|
11890
|
+
*
|
|
11891
|
+
* @returns Metadata object describing this class
|
|
11892
|
+
*/
|
|
11893
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11894
|
+
/**
|
|
11895
|
+
* Attaches event handler `fnFunction` to the {@link #event:currentGroupChanged currentGroupChanged} event
|
|
11896
|
+
* of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
11897
|
+
*
|
|
11898
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
11899
|
+
* otherwise it will be bound to this `sap.ui.vk.tools.PointCloudSelectionTool` itself.
|
|
11900
|
+
*
|
|
11901
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
11902
|
+
*/
|
|
11903
|
+
attachCurrentGroupChanged(
|
|
11904
|
+
/**
|
|
11905
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
11906
|
+
* object when firing the event
|
|
11907
|
+
*/
|
|
11908
|
+
oData: object,
|
|
11909
|
+
/**
|
|
11910
|
+
* The function to be called when the event occurs
|
|
11911
|
+
*/
|
|
11912
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
11913
|
+
/**
|
|
11914
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.tools.PointCloudSelectionTool`
|
|
11915
|
+
* itself
|
|
11916
|
+
*/
|
|
11917
|
+
oListener?: object
|
|
11918
|
+
): this;
|
|
11919
|
+
/**
|
|
11920
|
+
* Attaches event handler `fnFunction` to the {@link #event:currentGroupChanged currentGroupChanged} event
|
|
11921
|
+
* of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
11922
|
+
*
|
|
11923
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
11924
|
+
* otherwise it will be bound to this `sap.ui.vk.tools.PointCloudSelectionTool` itself.
|
|
11925
|
+
*
|
|
11926
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
11927
|
+
*/
|
|
11928
|
+
attachCurrentGroupChanged(
|
|
11929
|
+
/**
|
|
11930
|
+
* The function to be called when the event occurs
|
|
11931
|
+
*/
|
|
11932
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
11933
|
+
/**
|
|
11934
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.tools.PointCloudSelectionTool`
|
|
11935
|
+
* itself
|
|
11936
|
+
*/
|
|
11937
|
+
oListener?: object
|
|
11938
|
+
): this;
|
|
11939
|
+
/**
|
|
11940
|
+
* Attaches event handler `fnFunction` to the {@link #event:groupAdded groupAdded} event of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
11941
|
+
*
|
|
11942
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
11943
|
+
* otherwise it will be bound to this `sap.ui.vk.tools.PointCloudSelectionTool` itself.
|
|
11944
|
+
*
|
|
11945
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
11946
|
+
*/
|
|
11947
|
+
attachGroupAdded(
|
|
11948
|
+
/**
|
|
11949
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
11950
|
+
* object when firing the event
|
|
11951
|
+
*/
|
|
11952
|
+
oData: object,
|
|
11953
|
+
/**
|
|
11954
|
+
* The function to be called when the event occurs
|
|
11955
|
+
*/
|
|
11956
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
11957
|
+
/**
|
|
11958
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.tools.PointCloudSelectionTool`
|
|
11959
|
+
* itself
|
|
11960
|
+
*/
|
|
11961
|
+
oListener?: object
|
|
11962
|
+
): this;
|
|
11963
|
+
/**
|
|
11964
|
+
* Attaches event handler `fnFunction` to the {@link #event:groupAdded groupAdded} event of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
11965
|
+
*
|
|
11966
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
11967
|
+
* otherwise it will be bound to this `sap.ui.vk.tools.PointCloudSelectionTool` itself.
|
|
11968
|
+
*
|
|
11969
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
11970
|
+
*/
|
|
11971
|
+
attachGroupAdded(
|
|
11972
|
+
/**
|
|
11973
|
+
* The function to be called when the event occurs
|
|
11974
|
+
*/
|
|
11975
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
11976
|
+
/**
|
|
11977
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.tools.PointCloudSelectionTool`
|
|
11978
|
+
* itself
|
|
11979
|
+
*/
|
|
11980
|
+
oListener?: object
|
|
11981
|
+
): this;
|
|
11982
|
+
/**
|
|
11983
|
+
* Attaches event handler `fnFunction` to the {@link #event:groupRemoved groupRemoved} event of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
11984
|
+
*
|
|
11985
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
11986
|
+
* otherwise it will be bound to this `sap.ui.vk.tools.PointCloudSelectionTool` itself.
|
|
11987
|
+
*
|
|
11988
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
11989
|
+
*/
|
|
11990
|
+
attachGroupRemoved(
|
|
11991
|
+
/**
|
|
11992
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
11993
|
+
* object when firing the event
|
|
11994
|
+
*/
|
|
11995
|
+
oData: object,
|
|
11996
|
+
/**
|
|
11997
|
+
* The function to be called when the event occurs
|
|
11998
|
+
*/
|
|
11999
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
12000
|
+
/**
|
|
12001
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.tools.PointCloudSelectionTool`
|
|
12002
|
+
* itself
|
|
12003
|
+
*/
|
|
12004
|
+
oListener?: object
|
|
12005
|
+
): this;
|
|
12006
|
+
/**
|
|
12007
|
+
* Attaches event handler `fnFunction` to the {@link #event:groupRemoved groupRemoved} event of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
12008
|
+
*
|
|
12009
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
12010
|
+
* otherwise it will be bound to this `sap.ui.vk.tools.PointCloudSelectionTool` itself.
|
|
12011
|
+
*
|
|
12012
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12013
|
+
*/
|
|
12014
|
+
attachGroupRemoved(
|
|
12015
|
+
/**
|
|
12016
|
+
* The function to be called when the event occurs
|
|
12017
|
+
*/
|
|
12018
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
12019
|
+
/**
|
|
12020
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.tools.PointCloudSelectionTool`
|
|
12021
|
+
* itself
|
|
12022
|
+
*/
|
|
12023
|
+
oListener?: object
|
|
12024
|
+
): this;
|
|
12025
|
+
/**
|
|
12026
|
+
* Detaches event handler `fnFunction` from the {@link #event:currentGroupChanged currentGroupChanged} event
|
|
12027
|
+
* of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
12028
|
+
*
|
|
12029
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
12030
|
+
*
|
|
12031
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12032
|
+
*/
|
|
12033
|
+
detachCurrentGroupChanged(
|
|
12034
|
+
/**
|
|
12035
|
+
* The function to be called, when the event occurs
|
|
12036
|
+
*/
|
|
12037
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
12038
|
+
/**
|
|
12039
|
+
* Context object on which the given function had to be called
|
|
12040
|
+
*/
|
|
12041
|
+
oListener?: object
|
|
12042
|
+
): this;
|
|
12043
|
+
/**
|
|
12044
|
+
* Detaches event handler `fnFunction` from the {@link #event:groupAdded groupAdded} event of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
12045
|
+
*
|
|
12046
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
12047
|
+
*
|
|
12048
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12049
|
+
*/
|
|
12050
|
+
detachGroupAdded(
|
|
12051
|
+
/**
|
|
12052
|
+
* The function to be called, when the event occurs
|
|
12053
|
+
*/
|
|
12054
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
12055
|
+
/**
|
|
12056
|
+
* Context object on which the given function had to be called
|
|
12057
|
+
*/
|
|
12058
|
+
oListener?: object
|
|
12059
|
+
): this;
|
|
12060
|
+
/**
|
|
12061
|
+
* Detaches event handler `fnFunction` from the {@link #event:groupRemoved groupRemoved} event of this `sap.ui.vk.tools.PointCloudSelectionTool`.
|
|
12062
|
+
*
|
|
12063
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
12064
|
+
*
|
|
12065
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12066
|
+
*/
|
|
12067
|
+
detachGroupRemoved(
|
|
12068
|
+
/**
|
|
12069
|
+
* The function to be called, when the event occurs
|
|
12070
|
+
*/
|
|
12071
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
12072
|
+
/**
|
|
12073
|
+
* Context object on which the given function had to be called
|
|
12074
|
+
*/
|
|
12075
|
+
oListener?: object
|
|
12076
|
+
): this;
|
|
12077
|
+
/**
|
|
12078
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
12079
|
+
*
|
|
12080
|
+
* Fires event {@link #event:currentGroupChanged currentGroupChanged} to attached listeners.
|
|
12081
|
+
*
|
|
12082
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12083
|
+
*/
|
|
12084
|
+
fireCurrentGroupChanged(
|
|
12085
|
+
/**
|
|
12086
|
+
* Parameters to pass along with the event
|
|
12087
|
+
*/
|
|
12088
|
+
mParameters?: object
|
|
12089
|
+
): this;
|
|
12090
|
+
/**
|
|
12091
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
12092
|
+
*
|
|
12093
|
+
* Fires event {@link #event:groupAdded groupAdded} to attached listeners.
|
|
12094
|
+
*
|
|
12095
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12096
|
+
*/
|
|
12097
|
+
fireGroupAdded(
|
|
12098
|
+
/**
|
|
12099
|
+
* Parameters to pass along with the event
|
|
12100
|
+
*/
|
|
12101
|
+
mParameters?: object
|
|
12102
|
+
): this;
|
|
12103
|
+
/**
|
|
12104
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
12105
|
+
*
|
|
12106
|
+
* Fires event {@link #event:groupRemoved groupRemoved} to attached listeners.
|
|
12107
|
+
*
|
|
12108
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12109
|
+
*/
|
|
12110
|
+
fireGroupRemoved(
|
|
12111
|
+
/**
|
|
12112
|
+
* Parameters to pass along with the event
|
|
12113
|
+
*/
|
|
12114
|
+
mParameters?: object
|
|
12115
|
+
): this;
|
|
12116
|
+
/**
|
|
12117
|
+
* Gets current value of property {@link #getSelectionColor selectionColor}.
|
|
12118
|
+
*
|
|
12119
|
+
* Default value is `[0, 1, 0, 1]`.
|
|
12120
|
+
*
|
|
12121
|
+
* @returns Value of property `selectionColor`
|
|
12122
|
+
*/
|
|
12123
|
+
getSelectionColor(): float[];
|
|
12124
|
+
/**
|
|
12125
|
+
* MOVE TO BASE Queues a command for execution during the rendering cycle. All gesture operations should
|
|
12126
|
+
* be called using this method.
|
|
12127
|
+
*
|
|
12128
|
+
* @returns `this` to allow method chaining.
|
|
12129
|
+
*/
|
|
12130
|
+
queueCommand(
|
|
12131
|
+
/**
|
|
12132
|
+
* The command to be executed.
|
|
12133
|
+
*/
|
|
12134
|
+
command: Function
|
|
12135
|
+
): this;
|
|
12136
|
+
/**
|
|
12137
|
+
* Sets a new value for property {@link #getSelectionColor selectionColor}.
|
|
12138
|
+
*
|
|
12139
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12140
|
+
*
|
|
12141
|
+
* Default value is `[0, 1, 0, 1]`.
|
|
12142
|
+
*
|
|
12143
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12144
|
+
*/
|
|
12145
|
+
setSelectionColor(
|
|
12146
|
+
/**
|
|
12147
|
+
* New value for property `selectionColor`
|
|
12148
|
+
*/
|
|
12149
|
+
sSelectionColor?: float[]
|
|
12150
|
+
): this;
|
|
12151
|
+
}
|
|
11803
12152
|
/**
|
|
11804
12153
|
* This tool provides rectangular selection
|
|
11805
12154
|
*/
|
|
@@ -15674,6 +16023,21 @@ declare namespace sap {
|
|
|
15674
16023
|
MoveTool
|
|
15675
16024
|
>;
|
|
15676
16025
|
|
|
16026
|
+
type PointCloudSelectionTool$CurrentGroupChangedEvent = sap.ui.base.Event<
|
|
16027
|
+
PointCloudSelectionTool$CurrentGroupChangedEventParameters,
|
|
16028
|
+
PointCloudSelectionTool
|
|
16029
|
+
>;
|
|
16030
|
+
|
|
16031
|
+
type PointCloudSelectionTool$GroupAddedEvent = sap.ui.base.Event<
|
|
16032
|
+
PointCloudSelectionTool$GroupAddedEventParameters,
|
|
16033
|
+
PointCloudSelectionTool
|
|
16034
|
+
>;
|
|
16035
|
+
|
|
16036
|
+
type PointCloudSelectionTool$GroupRemovedEvent = sap.ui.base.Event<
|
|
16037
|
+
PointCloudSelectionTool$GroupRemovedEventParameters,
|
|
16038
|
+
PointCloudSelectionTool
|
|
16039
|
+
>;
|
|
16040
|
+
|
|
15677
16041
|
type RedlineTool$ElementClickedEvent = sap.ui.base.Event<
|
|
15678
16042
|
RedlineTool$ElementClickedEventParameters,
|
|
15679
16043
|
RedlineTool
|
|
@@ -42663,6 +43027,8 @@ declare namespace sap {
|
|
|
42663
43027
|
|
|
42664
43028
|
"sap/ui/vk/tools/MoveTool": undefined;
|
|
42665
43029
|
|
|
43030
|
+
"sap/ui/vk/tools/PointCloudSelectionTool": undefined;
|
|
43031
|
+
|
|
42666
43032
|
"sap/ui/vk/tools/PredefinedView": undefined;
|
|
42667
43033
|
|
|
42668
43034
|
"sap/ui/vk/tools/RectSelectTool": undefined;
|
package/types/sap.ui.vtm.d.ts
CHANGED