@sapui5/types 1.136.14 → 1.136.16
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 +32 -3
- package/types/sap.ca.ui.d.ts +8 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +5 -5
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.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.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- 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.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.core.d.ts +3 -2
- 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 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +15 -7
- package/types/sap.ui.richtexteditor.d.ts +22 -7
- 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 +7 -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.vk.d.ts +376 -1
- package/types/sap.ui.vtm.d.ts +100 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- 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.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vk/library" {
|
|
4
4
|
/**
|
|
@@ -8626,6 +8626,301 @@ declare module "sap/ui/vk/dvl/ViewStateManager" {
|
|
|
8626
8626
|
extends $ViewStateManagerBaseSettings {}
|
|
8627
8627
|
}
|
|
8628
8628
|
|
|
8629
|
+
declare module "sap/ui/vk/ecad/ElementsPanel" {
|
|
8630
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
8631
|
+
|
|
8632
|
+
import Event from "sap/ui/base/Event";
|
|
8633
|
+
|
|
8634
|
+
import { ID, CSSSize } from "sap/ui/core/library";
|
|
8635
|
+
|
|
8636
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8637
|
+
|
|
8638
|
+
import ContentConnector from "sap/ui/vk/ContentConnector";
|
|
8639
|
+
|
|
8640
|
+
import ViewStateManagerBase from "sap/ui/vk/ViewStateManagerBase";
|
|
8641
|
+
|
|
8642
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
8643
|
+
|
|
8644
|
+
/**
|
|
8645
|
+
* Provides a list of all ECAD elements in a given scene in table format.
|
|
8646
|
+
*
|
|
8647
|
+
* **NOTE:** To use this control the application developer should add dependencies to the following libraries
|
|
8648
|
+
* on application level to ensure that the libraries are loaded before the module dependencies will be required:
|
|
8649
|
+
*
|
|
8650
|
+
* - sap.f
|
|
8651
|
+
* - sap.ui.comp
|
|
8652
|
+
*
|
|
8653
|
+
* @since 1.136.0
|
|
8654
|
+
*/
|
|
8655
|
+
export default class ElementsPanel extends Control {
|
|
8656
|
+
/**
|
|
8657
|
+
* Constructor for a new ElementsPanel.
|
|
8658
|
+
*
|
|
8659
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
8660
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
8661
|
+
* of the syntax of the settings object.
|
|
8662
|
+
*/
|
|
8663
|
+
constructor(
|
|
8664
|
+
/**
|
|
8665
|
+
* initial settings for the new control
|
|
8666
|
+
*/
|
|
8667
|
+
mSettings?: $ElementsPanelSettings
|
|
8668
|
+
);
|
|
8669
|
+
/**
|
|
8670
|
+
* Constructor for a new ElementsPanel.
|
|
8671
|
+
*
|
|
8672
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
8673
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
8674
|
+
* of the syntax of the settings object.
|
|
8675
|
+
*/
|
|
8676
|
+
constructor(
|
|
8677
|
+
/**
|
|
8678
|
+
* id for the new control, generated automatically if no id is given
|
|
8679
|
+
*/
|
|
8680
|
+
sId?: string,
|
|
8681
|
+
/**
|
|
8682
|
+
* initial settings for the new control
|
|
8683
|
+
*/
|
|
8684
|
+
mSettings?: $ElementsPanelSettings
|
|
8685
|
+
);
|
|
8686
|
+
|
|
8687
|
+
/**
|
|
8688
|
+
* Creates a new subclass of class sap.ui.vk.ecad.ElementsPanel with name `sClassName` and enriches it with
|
|
8689
|
+
* the information contained in `oClassInfo`.
|
|
8690
|
+
*
|
|
8691
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8692
|
+
*
|
|
8693
|
+
*
|
|
8694
|
+
* @returns Created class / constructor function
|
|
8695
|
+
*/
|
|
8696
|
+
static extend<T extends Record<string, unknown>>(
|
|
8697
|
+
/**
|
|
8698
|
+
* Name of the class being created
|
|
8699
|
+
*/
|
|
8700
|
+
sClassName: string,
|
|
8701
|
+
/**
|
|
8702
|
+
* Object literal with information about the class
|
|
8703
|
+
*/
|
|
8704
|
+
oClassInfo?: sap.ClassInfo<T, ElementsPanel>,
|
|
8705
|
+
/**
|
|
8706
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8707
|
+
* used by this class
|
|
8708
|
+
*/
|
|
8709
|
+
FNMetaImpl?: Function
|
|
8710
|
+
): Function;
|
|
8711
|
+
/**
|
|
8712
|
+
* Returns a metadata object for class sap.ui.vk.ecad.ElementsPanel.
|
|
8713
|
+
*
|
|
8714
|
+
*
|
|
8715
|
+
* @returns Metadata object describing this class
|
|
8716
|
+
*/
|
|
8717
|
+
static getMetadata(): ElementMetadata;
|
|
8718
|
+
/**
|
|
8719
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
8720
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
8721
|
+
*
|
|
8722
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8723
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.ElementsPanel` itself.
|
|
8724
|
+
*
|
|
8725
|
+
* This event will be fired when content is replaced.
|
|
8726
|
+
*
|
|
8727
|
+
*
|
|
8728
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8729
|
+
*/
|
|
8730
|
+
attachContentChanged(
|
|
8731
|
+
/**
|
|
8732
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
8733
|
+
* object when firing the event
|
|
8734
|
+
*/
|
|
8735
|
+
oData: object,
|
|
8736
|
+
/**
|
|
8737
|
+
* The function to be called when the event occurs
|
|
8738
|
+
*/
|
|
8739
|
+
fnFunction: (p1: Event) => void,
|
|
8740
|
+
/**
|
|
8741
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.ElementsPanel` itself
|
|
8742
|
+
*/
|
|
8743
|
+
oListener?: object
|
|
8744
|
+
): this;
|
|
8745
|
+
/**
|
|
8746
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
8747
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
8748
|
+
*
|
|
8749
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8750
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.ElementsPanel` itself.
|
|
8751
|
+
*
|
|
8752
|
+
* This event will be fired when content is replaced.
|
|
8753
|
+
*
|
|
8754
|
+
*
|
|
8755
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8756
|
+
*/
|
|
8757
|
+
attachContentChanged(
|
|
8758
|
+
/**
|
|
8759
|
+
* The function to be called when the event occurs
|
|
8760
|
+
*/
|
|
8761
|
+
fnFunction: (p1: Event) => void,
|
|
8762
|
+
/**
|
|
8763
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.ElementsPanel` itself
|
|
8764
|
+
*/
|
|
8765
|
+
oListener?: object
|
|
8766
|
+
): this;
|
|
8767
|
+
/**
|
|
8768
|
+
* Detaches event handler `fnFunction` from the {@link #event:contentChanged contentChanged} event of this
|
|
8769
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
8770
|
+
*
|
|
8771
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
8772
|
+
*
|
|
8773
|
+
*
|
|
8774
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8775
|
+
*/
|
|
8776
|
+
detachContentChanged(
|
|
8777
|
+
/**
|
|
8778
|
+
* The function to be called, when the event occurs
|
|
8779
|
+
*/
|
|
8780
|
+
fnFunction: (p1: Event) => void,
|
|
8781
|
+
/**
|
|
8782
|
+
* Context object on which the given function had to be called
|
|
8783
|
+
*/
|
|
8784
|
+
oListener?: object
|
|
8785
|
+
): this;
|
|
8786
|
+
/**
|
|
8787
|
+
* Fires event {@link #event:contentChanged contentChanged} to attached listeners.
|
|
8788
|
+
*
|
|
8789
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8790
|
+
*
|
|
8791
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8792
|
+
*/
|
|
8793
|
+
fireContentChanged(
|
|
8794
|
+
/**
|
|
8795
|
+
* Parameters to pass along with the event
|
|
8796
|
+
*/
|
|
8797
|
+
mParameters?: object
|
|
8798
|
+
): this;
|
|
8799
|
+
/**
|
|
8800
|
+
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
8801
|
+
* or `null`.
|
|
8802
|
+
*/
|
|
8803
|
+
getContentConnector(): ID | null;
|
|
8804
|
+
/**
|
|
8805
|
+
* Gets current value of property {@link #getHeight height}.
|
|
8806
|
+
*
|
|
8807
|
+
* Default value is `"100%"`.
|
|
8808
|
+
*
|
|
8809
|
+
*
|
|
8810
|
+
* @returns Value of property `height`
|
|
8811
|
+
*/
|
|
8812
|
+
getHeight(): CSSSize;
|
|
8813
|
+
/**
|
|
8814
|
+
* ID of the element which is the current target of the association {@link #getViewStateManager viewStateManager},
|
|
8815
|
+
* or `null`.
|
|
8816
|
+
*/
|
|
8817
|
+
getViewStateManager(): ID | null;
|
|
8818
|
+
/**
|
|
8819
|
+
* Gets current value of property {@link #getWidth width}.
|
|
8820
|
+
*
|
|
8821
|
+
* Default value is `"auto"`.
|
|
8822
|
+
*
|
|
8823
|
+
*
|
|
8824
|
+
* @returns Value of property `width`
|
|
8825
|
+
*/
|
|
8826
|
+
getWidth(): CSSSize;
|
|
8827
|
+
/**
|
|
8828
|
+
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
8829
|
+
*
|
|
8830
|
+
*
|
|
8831
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8832
|
+
*/
|
|
8833
|
+
setContentConnector(
|
|
8834
|
+
/**
|
|
8835
|
+
* ID of an element which becomes the new target of this contentConnector association; alternatively, an
|
|
8836
|
+
* element instance may be given
|
|
8837
|
+
*/
|
|
8838
|
+
oContentConnector: ID | ContentConnector
|
|
8839
|
+
): this;
|
|
8840
|
+
/**
|
|
8841
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
8842
|
+
*
|
|
8843
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8844
|
+
*
|
|
8845
|
+
* Default value is `"100%"`.
|
|
8846
|
+
*
|
|
8847
|
+
*
|
|
8848
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8849
|
+
*/
|
|
8850
|
+
setHeight(
|
|
8851
|
+
/**
|
|
8852
|
+
* New value for property `height`
|
|
8853
|
+
*/
|
|
8854
|
+
sHeight?: CSSSize
|
|
8855
|
+
): this;
|
|
8856
|
+
/**
|
|
8857
|
+
* Sets the associated {@link #getViewStateManager viewStateManager}.
|
|
8858
|
+
*
|
|
8859
|
+
*
|
|
8860
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8861
|
+
*/
|
|
8862
|
+
setViewStateManager(
|
|
8863
|
+
/**
|
|
8864
|
+
* ID of an element which becomes the new target of this viewStateManager association; alternatively, an
|
|
8865
|
+
* element instance may be given
|
|
8866
|
+
*/
|
|
8867
|
+
oViewStateManager: ID | ViewStateManagerBase
|
|
8868
|
+
): this;
|
|
8869
|
+
/**
|
|
8870
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
8871
|
+
*
|
|
8872
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8873
|
+
*
|
|
8874
|
+
* Default value is `"auto"`.
|
|
8875
|
+
*
|
|
8876
|
+
*
|
|
8877
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8878
|
+
*/
|
|
8879
|
+
setWidth(
|
|
8880
|
+
/**
|
|
8881
|
+
* New value for property `width`
|
|
8882
|
+
*/
|
|
8883
|
+
sWidth?: CSSSize
|
|
8884
|
+
): this;
|
|
8885
|
+
}
|
|
8886
|
+
/**
|
|
8887
|
+
* Describes the settings that can be provided to the ElementsPanel constructor.
|
|
8888
|
+
*/
|
|
8889
|
+
export interface $ElementsPanelSettings extends $ControlSettings {
|
|
8890
|
+
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
8891
|
+
|
|
8892
|
+
height?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
8893
|
+
|
|
8894
|
+
/**
|
|
8895
|
+
* An association to the `ContentConnector` instance that manages content resources.
|
|
8896
|
+
*/
|
|
8897
|
+
contentConnector?: ContentConnector | string;
|
|
8898
|
+
|
|
8899
|
+
/**
|
|
8900
|
+
* An association to the `ViewStateManager` instance.
|
|
8901
|
+
*/
|
|
8902
|
+
viewStateManager?: ViewStateManagerBase | string;
|
|
8903
|
+
|
|
8904
|
+
/**
|
|
8905
|
+
* This event will be fired when content is replaced.
|
|
8906
|
+
*/
|
|
8907
|
+
contentChanged?: (oEvent: Event) => void;
|
|
8908
|
+
}
|
|
8909
|
+
|
|
8910
|
+
/**
|
|
8911
|
+
* Parameters of the ElementsPanel#contentChanged event.
|
|
8912
|
+
*/
|
|
8913
|
+
export interface ElementsPanel$ContentChangedEventParameters {}
|
|
8914
|
+
|
|
8915
|
+
/**
|
|
8916
|
+
* Event object of the ElementsPanel#contentChanged event.
|
|
8917
|
+
*/
|
|
8918
|
+
export type ElementsPanel$ContentChangedEvent = Event<
|
|
8919
|
+
ElementsPanel$ContentChangedEventParameters,
|
|
8920
|
+
ElementsPanel
|
|
8921
|
+
>;
|
|
8922
|
+
}
|
|
8923
|
+
|
|
8629
8924
|
declare module "sap/ui/vk/ecad/LayersPanel" {
|
|
8630
8925
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
8631
8926
|
|
|
@@ -25965,6 +26260,10 @@ declare module "sap/ui/vk/threejs/Viewport" {
|
|
|
25965
26260
|
* Indicator to retrieve selection information.
|
|
25966
26261
|
*/
|
|
25967
26262
|
selection?: boolean | object;
|
|
26263
|
+
/**
|
|
26264
|
+
* Indicator to retrieve cross-section tool information.
|
|
26265
|
+
*/
|
|
26266
|
+
crossSection?: boolean | object;
|
|
25968
26267
|
}
|
|
25969
26268
|
): object;
|
|
25970
26269
|
/**
|
|
@@ -26143,6 +26442,27 @@ declare module "sap/ui/vk/threejs/Viewport" {
|
|
|
26143
26442
|
*/
|
|
26144
26443
|
outlined: string[];
|
|
26145
26444
|
};
|
|
26445
|
+
/**
|
|
26446
|
+
* A JSON-like object containing the cross-section tool information.
|
|
26447
|
+
*/
|
|
26448
|
+
crossSection?: {
|
|
26449
|
+
/**
|
|
26450
|
+
* Indicator whether the cross-section tool is enabled.
|
|
26451
|
+
*/
|
|
26452
|
+
enabled?: boolean;
|
|
26453
|
+
/**
|
|
26454
|
+
* Axis along which the cross-section is performed (0 - X, 1 - Y, 2 - Z).
|
|
26455
|
+
*/
|
|
26456
|
+
axis?: int;
|
|
26457
|
+
/**
|
|
26458
|
+
* Indicator whether the cross-section direction is flipped.
|
|
26459
|
+
*/
|
|
26460
|
+
flip?: boolean;
|
|
26461
|
+
/**
|
|
26462
|
+
* Position of the cross-section planes defined as [x, y, z].
|
|
26463
|
+
*/
|
|
26464
|
+
position?: float[];
|
|
26465
|
+
};
|
|
26146
26466
|
},
|
|
26147
26467
|
/**
|
|
26148
26468
|
* Fly-to animation duration in seconds.
|
|
@@ -30349,6 +30669,15 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30349
30669
|
* @returns Value of property `showEditingUI`
|
|
30350
30670
|
*/
|
|
30351
30671
|
getShowEditingUI(): boolean;
|
|
30672
|
+
/**
|
|
30673
|
+
* Gets information about the current state.
|
|
30674
|
+
*
|
|
30675
|
+
* @since 1.145.0
|
|
30676
|
+
*
|
|
30677
|
+
* @returns JSON-like object which holds the current state information. See {@link sap.ui.vk.tools.CrossSectionTool#setState setState }
|
|
30678
|
+
* for details.
|
|
30679
|
+
*/
|
|
30680
|
+
getState(): object | null;
|
|
30352
30681
|
/**
|
|
30353
30682
|
* MOVE TO BASE Queues a command for execution during the rendering cycle. All gesture operations should
|
|
30354
30683
|
* be called using this method.
|
|
@@ -30404,6 +30733,40 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30404
30733
|
*/
|
|
30405
30734
|
bShowEditingUI?: boolean
|
|
30406
30735
|
): this;
|
|
30736
|
+
/**
|
|
30737
|
+
* Sets the current state.
|
|
30738
|
+
*
|
|
30739
|
+
* @since 1.145.0
|
|
30740
|
+
*
|
|
30741
|
+
* @returns `this` to allow method chaining.
|
|
30742
|
+
*/
|
|
30743
|
+
setState(
|
|
30744
|
+
/**
|
|
30745
|
+
* JSON-like object which holds the state information. See below for details.
|
|
30746
|
+
*/
|
|
30747
|
+
state?: {
|
|
30748
|
+
/**
|
|
30749
|
+
* Specifies whether the cross section tool should be activated.
|
|
30750
|
+
*/
|
|
30751
|
+
enabled?: boolean;
|
|
30752
|
+
/**
|
|
30753
|
+
* Axis index from 0 to 2: 0 - X, 1 - Y, 2 - Z.
|
|
30754
|
+
*/
|
|
30755
|
+
axis?: number;
|
|
30756
|
+
/**
|
|
30757
|
+
* If set to `true`, the clipping plane will be flipped.
|
|
30758
|
+
*/
|
|
30759
|
+
flip?: boolean;
|
|
30760
|
+
/**
|
|
30761
|
+
* The position of the clipping planes defined as [x, y, z].
|
|
30762
|
+
*/
|
|
30763
|
+
position?: number[];
|
|
30764
|
+
},
|
|
30765
|
+
/**
|
|
30766
|
+
* The viewport where the tool is used.
|
|
30767
|
+
*/
|
|
30768
|
+
viewport?: Viewport
|
|
30769
|
+
): this;
|
|
30407
30770
|
}
|
|
30408
30771
|
/**
|
|
30409
30772
|
* Describes the settings that can be provided to the CrossSectionTool constructor.
|
|
@@ -38981,6 +39344,12 @@ declare module "sap/ui/vk/Viewer" {
|
|
|
38981
39344
|
* Provides simple 3D visualization capability by connecting, configuring and presenting the essential Visualization
|
|
38982
39345
|
* Toolkit controls a single composite control.
|
|
38983
39346
|
*
|
|
39347
|
+
* **NOTE:** To use this control the application developer should add dependencies to the following libraries
|
|
39348
|
+
* on application level to ensure that the libraries are loaded before the module dependencies will be required:
|
|
39349
|
+
*
|
|
39350
|
+
* - sap.f
|
|
39351
|
+
* - sap.ui.comp
|
|
39352
|
+
*
|
|
38984
39353
|
* @since 1.32.0
|
|
38985
39354
|
*/
|
|
38986
39355
|
export default class Viewer extends Control {
|
|
@@ -42408,6 +42777,10 @@ declare module "sap/ui/vk/Viewport" {
|
|
|
42408
42777
|
* Indicator to retrieve selection information.
|
|
42409
42778
|
*/
|
|
42410
42779
|
selection?: boolean | object;
|
|
42780
|
+
/**
|
|
42781
|
+
* Indicator to retrieve cross-section information.
|
|
42782
|
+
*/
|
|
42783
|
+
crossSection?: boolean | object;
|
|
42411
42784
|
}
|
|
42412
42785
|
): object;
|
|
42413
42786
|
/**
|
|
@@ -47454,6 +47827,8 @@ declare namespace sap {
|
|
|
47454
47827
|
|
|
47455
47828
|
"sap/ui/vk/dvl/ViewStateManager": undefined;
|
|
47456
47829
|
|
|
47830
|
+
"sap/ui/vk/ecad/ElementsPanel": undefined;
|
|
47831
|
+
|
|
47457
47832
|
"sap/ui/vk/ecad/LayersPanel": undefined;
|
|
47458
47833
|
|
|
47459
47834
|
"sap/ui/vk/FlexibleControl": undefined;
|