@sapui5/ts-types-esm 1.139.0 → 1.141.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 +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +0 -1623
- package/types/sap.esh.search.ui.d.ts +384 -1
- package/types/sap.f.d.ts +102 -13
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -5
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +98 -8
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +369 -51
- package/types/sap.fe.navigation.d.ts +13 -15
- 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.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +47 -11
- package/types/sap.insights.d.ts +130 -2
- package/types/sap.m.d.ts +722 -282
- 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 +118 -5
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +41 -5
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +5 -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 +16 -1
- package/types/sap.ui.core.d.ts +531 -163
- package/types/sap.ui.dt.d.ts +202 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +8 -13
- 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 +13 -13
- package/types/sap.ui.layout.d.ts +63 -47
- package/types/sap.ui.mdc.d.ts +77 -25
- package/types/sap.ui.richtexteditor.d.ts +309 -9
- 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 +585 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +55 -3
- 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 +438 -6
- 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 +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 +41 -8
- package/types/sap.ushell_abap.d.ts +7 -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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.141.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -7657,9 +7657,9 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7657
7657
|
$DateTypeRangeSettings,
|
|
7658
7658
|
} from "sap/ui/unified/DateTypeRange";
|
|
7659
7659
|
|
|
7660
|
-
import
|
|
7660
|
+
import { ID, CSSColor, URI } from "sap/ui/core/library";
|
|
7661
7661
|
|
|
7662
|
-
import
|
|
7662
|
+
import Control from "sap/ui/core/Control";
|
|
7663
7663
|
|
|
7664
7664
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
7665
7665
|
|
|
@@ -7739,6 +7739,18 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7739
7739
|
* @returns Metadata object describing this class
|
|
7740
7740
|
*/
|
|
7741
7741
|
static getMetadata(): ElementMetadata;
|
|
7742
|
+
/**
|
|
7743
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
7744
|
+
*
|
|
7745
|
+
*
|
|
7746
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
7747
|
+
*/
|
|
7748
|
+
addAriaLabelledBy(
|
|
7749
|
+
/**
|
|
7750
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
7751
|
+
*/
|
|
7752
|
+
vAriaLabelledBy: ID | Control
|
|
7753
|
+
): this;
|
|
7742
7754
|
/**
|
|
7743
7755
|
* Adds some customContent to the aggregation {@link #getCustomContent customContent}.
|
|
7744
7756
|
*
|
|
@@ -7760,6 +7772,10 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7760
7772
|
* @returns Reference to `this` in order to allow method chaining
|
|
7761
7773
|
*/
|
|
7762
7774
|
destroyCustomContent(): this;
|
|
7775
|
+
/**
|
|
7776
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
7777
|
+
*/
|
|
7778
|
+
getAriaLabelledBy(): ID[];
|
|
7763
7779
|
/**
|
|
7764
7780
|
* Gets current value of property {@link #getColor color}.
|
|
7765
7781
|
*
|
|
@@ -7785,6 +7801,12 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7785
7801
|
* - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
|
|
7786
7802
|
* and may lead to unpredictable results.
|
|
7787
7803
|
*
|
|
7804
|
+
* **Note:** When using the `customContent` aggregation, it is the application developer's responsibility
|
|
7805
|
+
* to add appropriate labels to the `ariaLabelledBy` association to provide accessible information about
|
|
7806
|
+
* this appointment as the standard properties (`title`, `text`, `description`, and `icon`) are ignored,
|
|
7807
|
+
* which means screen readers will have no information about the appointment unless proper ARIA labeling
|
|
7808
|
+
* is implemented.
|
|
7809
|
+
*
|
|
7788
7810
|
* @since 1.93.0
|
|
7789
7811
|
*/
|
|
7790
7812
|
getCustomContent(): Control[];
|
|
@@ -7891,6 +7913,13 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7891
7913
|
*/
|
|
7892
7914
|
iIndex: int
|
|
7893
7915
|
): this;
|
|
7916
|
+
/**
|
|
7917
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
7918
|
+
*
|
|
7919
|
+
*
|
|
7920
|
+
* @returns An array of the removed elements (might be empty)
|
|
7921
|
+
*/
|
|
7922
|
+
removeAllAriaLabelledBy(): ID[];
|
|
7894
7923
|
/**
|
|
7895
7924
|
* Removes all the controls from the aggregation {@link #getCustomContent customContent}.
|
|
7896
7925
|
*
|
|
@@ -7901,6 +7930,18 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
7901
7930
|
* @returns An array of the removed elements (might be empty)
|
|
7902
7931
|
*/
|
|
7903
7932
|
removeAllCustomContent(): Control[];
|
|
7933
|
+
/**
|
|
7934
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
7935
|
+
*
|
|
7936
|
+
*
|
|
7937
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
7938
|
+
*/
|
|
7939
|
+
removeAriaLabelledBy(
|
|
7940
|
+
/**
|
|
7941
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
7942
|
+
*/
|
|
7943
|
+
vAriaLabelledBy: int | ID | Control
|
|
7944
|
+
): ID | null;
|
|
7904
7945
|
/**
|
|
7905
7946
|
* Removes a customContent from the aggregation {@link #getCustomContent customContent}.
|
|
7906
7947
|
*
|
|
@@ -8115,6 +8156,12 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
8115
8156
|
* - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
|
|
8116
8157
|
* and may lead to unpredictable results.
|
|
8117
8158
|
*
|
|
8159
|
+
* **Note:** When using the `customContent` aggregation, it is the application developer's responsibility
|
|
8160
|
+
* to add appropriate labels to the `ariaLabelledBy` association to provide accessible information about
|
|
8161
|
+
* this appointment as the standard properties (`title`, `text`, `description`, and `icon`) are ignored,
|
|
8162
|
+
* which means screen readers will have no information about the appointment unless proper ARIA labeling
|
|
8163
|
+
* is implemented.
|
|
8164
|
+
*
|
|
8118
8165
|
* @since 1.93.0
|
|
8119
8166
|
*/
|
|
8120
8167
|
customContent?:
|
|
@@ -8122,6 +8169,11 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
8122
8169
|
| Control
|
|
8123
8170
|
| AggregationBindingInfo
|
|
8124
8171
|
| `{${string}}`;
|
|
8172
|
+
|
|
8173
|
+
/**
|
|
8174
|
+
* Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy).
|
|
8175
|
+
*/
|
|
8176
|
+
ariaLabelledBy?: Array<Control | string>;
|
|
8125
8177
|
}
|
|
8126
8178
|
}
|
|
8127
8179
|
|
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.141.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vk/library" {
|
|
4
4
|
/**
|
|
@@ -8632,12 +8632,305 @@ declare module "sap/ui/vk/dvl/ViewStateManager" {
|
|
|
8632
8632
|
extends $ViewStateManagerBaseSettings {}
|
|
8633
8633
|
}
|
|
8634
8634
|
|
|
8635
|
-
declare module "sap/ui/vk/ecad/
|
|
8635
|
+
declare module "sap/ui/vk/ecad/ElementsPanel" {
|
|
8636
8636
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
8637
8637
|
|
|
8638
8638
|
import Event from "sap/ui/base/Event";
|
|
8639
8639
|
|
|
8640
|
-
import
|
|
8640
|
+
import { ID, CSSSize } from "sap/ui/core/library";
|
|
8641
|
+
|
|
8642
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8643
|
+
|
|
8644
|
+
import ContentConnector from "sap/ui/vk/ContentConnector";
|
|
8645
|
+
|
|
8646
|
+
import ViewStateManagerBase from "sap/ui/vk/ViewStateManagerBase";
|
|
8647
|
+
|
|
8648
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
8649
|
+
|
|
8650
|
+
/**
|
|
8651
|
+
* Provides a list of all ECAD elements in a given scene in table format.
|
|
8652
|
+
*
|
|
8653
|
+
* **NOTE:** To use this control the application developer should add dependencies to the following libraries
|
|
8654
|
+
* on application level to ensure that the libraries are loaded before the module dependencies will be required:
|
|
8655
|
+
*
|
|
8656
|
+
* - sap.f
|
|
8657
|
+
* - sap.ui.comp
|
|
8658
|
+
*
|
|
8659
|
+
* @since 1.136.0
|
|
8660
|
+
*/
|
|
8661
|
+
export default class ElementsPanel extends Control {
|
|
8662
|
+
/**
|
|
8663
|
+
* Constructor for a new ElementsPanel.
|
|
8664
|
+
*
|
|
8665
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
8666
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
8667
|
+
* of the syntax of the settings object.
|
|
8668
|
+
*/
|
|
8669
|
+
constructor(
|
|
8670
|
+
/**
|
|
8671
|
+
* initial settings for the new control
|
|
8672
|
+
*/
|
|
8673
|
+
mSettings?: $ElementsPanelSettings
|
|
8674
|
+
);
|
|
8675
|
+
/**
|
|
8676
|
+
* Constructor for a new ElementsPanel.
|
|
8677
|
+
*
|
|
8678
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
8679
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
8680
|
+
* of the syntax of the settings object.
|
|
8681
|
+
*/
|
|
8682
|
+
constructor(
|
|
8683
|
+
/**
|
|
8684
|
+
* id for the new control, generated automatically if no id is given
|
|
8685
|
+
*/
|
|
8686
|
+
sId?: string,
|
|
8687
|
+
/**
|
|
8688
|
+
* initial settings for the new control
|
|
8689
|
+
*/
|
|
8690
|
+
mSettings?: $ElementsPanelSettings
|
|
8691
|
+
);
|
|
8692
|
+
|
|
8693
|
+
/**
|
|
8694
|
+
* Creates a new subclass of class sap.ui.vk.ecad.ElementsPanel with name `sClassName` and enriches it with
|
|
8695
|
+
* the information contained in `oClassInfo`.
|
|
8696
|
+
*
|
|
8697
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8698
|
+
*
|
|
8699
|
+
*
|
|
8700
|
+
* @returns Created class / constructor function
|
|
8701
|
+
*/
|
|
8702
|
+
static extend<T extends Record<string, unknown>>(
|
|
8703
|
+
/**
|
|
8704
|
+
* Name of the class being created
|
|
8705
|
+
*/
|
|
8706
|
+
sClassName: string,
|
|
8707
|
+
/**
|
|
8708
|
+
* Object literal with information about the class
|
|
8709
|
+
*/
|
|
8710
|
+
oClassInfo?: sap.ClassInfo<T, ElementsPanel>,
|
|
8711
|
+
/**
|
|
8712
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8713
|
+
* used by this class
|
|
8714
|
+
*/
|
|
8715
|
+
FNMetaImpl?: Function
|
|
8716
|
+
): Function;
|
|
8717
|
+
/**
|
|
8718
|
+
* Returns a metadata object for class sap.ui.vk.ecad.ElementsPanel.
|
|
8719
|
+
*
|
|
8720
|
+
*
|
|
8721
|
+
* @returns Metadata object describing this class
|
|
8722
|
+
*/
|
|
8723
|
+
static getMetadata(): ElementMetadata;
|
|
8724
|
+
/**
|
|
8725
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
8726
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
8727
|
+
*
|
|
8728
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8729
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.ElementsPanel` itself.
|
|
8730
|
+
*
|
|
8731
|
+
* This event will be fired when content is replaced.
|
|
8732
|
+
*
|
|
8733
|
+
*
|
|
8734
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8735
|
+
*/
|
|
8736
|
+
attachContentChanged(
|
|
8737
|
+
/**
|
|
8738
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
8739
|
+
* object when firing the event
|
|
8740
|
+
*/
|
|
8741
|
+
oData: object,
|
|
8742
|
+
/**
|
|
8743
|
+
* The function to be called when the event occurs
|
|
8744
|
+
*/
|
|
8745
|
+
fnFunction: (p1: Event) => void,
|
|
8746
|
+
/**
|
|
8747
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.ElementsPanel` itself
|
|
8748
|
+
*/
|
|
8749
|
+
oListener?: object
|
|
8750
|
+
): this;
|
|
8751
|
+
/**
|
|
8752
|
+
* Attaches event handler `fnFunction` to the {@link #event:contentChanged contentChanged} event of this
|
|
8753
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
8754
|
+
*
|
|
8755
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8756
|
+
* otherwise it will be bound to this `sap.ui.vk.ecad.ElementsPanel` itself.
|
|
8757
|
+
*
|
|
8758
|
+
* This event will be fired when content is replaced.
|
|
8759
|
+
*
|
|
8760
|
+
*
|
|
8761
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8762
|
+
*/
|
|
8763
|
+
attachContentChanged(
|
|
8764
|
+
/**
|
|
8765
|
+
* The function to be called when the event occurs
|
|
8766
|
+
*/
|
|
8767
|
+
fnFunction: (p1: Event) => void,
|
|
8768
|
+
/**
|
|
8769
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.vk.ecad.ElementsPanel` itself
|
|
8770
|
+
*/
|
|
8771
|
+
oListener?: object
|
|
8772
|
+
): this;
|
|
8773
|
+
/**
|
|
8774
|
+
* Detaches event handler `fnFunction` from the {@link #event:contentChanged contentChanged} event of this
|
|
8775
|
+
* `sap.ui.vk.ecad.ElementsPanel`.
|
|
8776
|
+
*
|
|
8777
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
8778
|
+
*
|
|
8779
|
+
*
|
|
8780
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8781
|
+
*/
|
|
8782
|
+
detachContentChanged(
|
|
8783
|
+
/**
|
|
8784
|
+
* The function to be called, when the event occurs
|
|
8785
|
+
*/
|
|
8786
|
+
fnFunction: (p1: Event) => void,
|
|
8787
|
+
/**
|
|
8788
|
+
* Context object on which the given function had to be called
|
|
8789
|
+
*/
|
|
8790
|
+
oListener?: object
|
|
8791
|
+
): this;
|
|
8792
|
+
/**
|
|
8793
|
+
* Fires event {@link #event:contentChanged contentChanged} to attached listeners.
|
|
8794
|
+
*
|
|
8795
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8796
|
+
*
|
|
8797
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8798
|
+
*/
|
|
8799
|
+
fireContentChanged(
|
|
8800
|
+
/**
|
|
8801
|
+
* Parameters to pass along with the event
|
|
8802
|
+
*/
|
|
8803
|
+
mParameters?: object
|
|
8804
|
+
): this;
|
|
8805
|
+
/**
|
|
8806
|
+
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
8807
|
+
* or `null`.
|
|
8808
|
+
*/
|
|
8809
|
+
getContentConnector(): ID | null;
|
|
8810
|
+
/**
|
|
8811
|
+
* Gets current value of property {@link #getHeight height}.
|
|
8812
|
+
*
|
|
8813
|
+
* Default value is `"100%"`.
|
|
8814
|
+
*
|
|
8815
|
+
*
|
|
8816
|
+
* @returns Value of property `height`
|
|
8817
|
+
*/
|
|
8818
|
+
getHeight(): CSSSize;
|
|
8819
|
+
/**
|
|
8820
|
+
* ID of the element which is the current target of the association {@link #getViewStateManager viewStateManager},
|
|
8821
|
+
* or `null`.
|
|
8822
|
+
*/
|
|
8823
|
+
getViewStateManager(): ID | null;
|
|
8824
|
+
/**
|
|
8825
|
+
* Gets current value of property {@link #getWidth width}.
|
|
8826
|
+
*
|
|
8827
|
+
* Default value is `"auto"`.
|
|
8828
|
+
*
|
|
8829
|
+
*
|
|
8830
|
+
* @returns Value of property `width`
|
|
8831
|
+
*/
|
|
8832
|
+
getWidth(): CSSSize;
|
|
8833
|
+
/**
|
|
8834
|
+
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
8835
|
+
*
|
|
8836
|
+
*
|
|
8837
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8838
|
+
*/
|
|
8839
|
+
setContentConnector(
|
|
8840
|
+
/**
|
|
8841
|
+
* ID of an element which becomes the new target of this contentConnector association; alternatively, an
|
|
8842
|
+
* element instance may be given
|
|
8843
|
+
*/
|
|
8844
|
+
oContentConnector: ID | ContentConnector
|
|
8845
|
+
): this;
|
|
8846
|
+
/**
|
|
8847
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
8848
|
+
*
|
|
8849
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8850
|
+
*
|
|
8851
|
+
* Default value is `"100%"`.
|
|
8852
|
+
*
|
|
8853
|
+
*
|
|
8854
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8855
|
+
*/
|
|
8856
|
+
setHeight(
|
|
8857
|
+
/**
|
|
8858
|
+
* New value for property `height`
|
|
8859
|
+
*/
|
|
8860
|
+
sHeight?: CSSSize
|
|
8861
|
+
): this;
|
|
8862
|
+
/**
|
|
8863
|
+
* Sets the associated {@link #getViewStateManager viewStateManager}.
|
|
8864
|
+
*
|
|
8865
|
+
*
|
|
8866
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8867
|
+
*/
|
|
8868
|
+
setViewStateManager(
|
|
8869
|
+
/**
|
|
8870
|
+
* ID of an element which becomes the new target of this viewStateManager association; alternatively, an
|
|
8871
|
+
* element instance may be given
|
|
8872
|
+
*/
|
|
8873
|
+
oViewStateManager: ID | ViewStateManagerBase
|
|
8874
|
+
): this;
|
|
8875
|
+
/**
|
|
8876
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
8877
|
+
*
|
|
8878
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8879
|
+
*
|
|
8880
|
+
* Default value is `"auto"`.
|
|
8881
|
+
*
|
|
8882
|
+
*
|
|
8883
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8884
|
+
*/
|
|
8885
|
+
setWidth(
|
|
8886
|
+
/**
|
|
8887
|
+
* New value for property `width`
|
|
8888
|
+
*/
|
|
8889
|
+
sWidth?: CSSSize
|
|
8890
|
+
): this;
|
|
8891
|
+
}
|
|
8892
|
+
/**
|
|
8893
|
+
* Describes the settings that can be provided to the ElementsPanel constructor.
|
|
8894
|
+
*/
|
|
8895
|
+
export interface $ElementsPanelSettings extends $ControlSettings {
|
|
8896
|
+
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
8897
|
+
|
|
8898
|
+
height?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
8899
|
+
|
|
8900
|
+
/**
|
|
8901
|
+
* An association to the `ContentConnector` instance that manages content resources.
|
|
8902
|
+
*/
|
|
8903
|
+
contentConnector?: ContentConnector | string;
|
|
8904
|
+
|
|
8905
|
+
/**
|
|
8906
|
+
* An association to the `ViewStateManager` instance.
|
|
8907
|
+
*/
|
|
8908
|
+
viewStateManager?: ViewStateManagerBase | string;
|
|
8909
|
+
|
|
8910
|
+
/**
|
|
8911
|
+
* This event will be fired when content is replaced.
|
|
8912
|
+
*/
|
|
8913
|
+
contentChanged?: (oEvent: Event) => void;
|
|
8914
|
+
}
|
|
8915
|
+
|
|
8916
|
+
/**
|
|
8917
|
+
* Parameters of the ElementsPanel#contentChanged event.
|
|
8918
|
+
*/
|
|
8919
|
+
export interface ElementsPanel$ContentChangedEventParameters {}
|
|
8920
|
+
|
|
8921
|
+
/**
|
|
8922
|
+
* Event object of the ElementsPanel#contentChanged event.
|
|
8923
|
+
*/
|
|
8924
|
+
export type ElementsPanel$ContentChangedEvent = Event<
|
|
8925
|
+
ElementsPanel$ContentChangedEventParameters,
|
|
8926
|
+
ElementsPanel
|
|
8927
|
+
>;
|
|
8928
|
+
}
|
|
8929
|
+
|
|
8930
|
+
declare module "sap/ui/vk/ecad/LayersPanel" {
|
|
8931
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
8932
|
+
|
|
8933
|
+
import Event from "sap/ui/base/Event";
|
|
8641
8934
|
|
|
8642
8935
|
import { ID, CSSSize } from "sap/ui/core/library";
|
|
8643
8936
|
|
|
@@ -8808,7 +9101,7 @@ declare module "sap/ui/vk/ecad/LayersPanel" {
|
|
|
8808
9101
|
/**
|
|
8809
9102
|
* Gets content of aggregation {@link #getContent content}.
|
|
8810
9103
|
*/
|
|
8811
|
-
getContent():
|
|
9104
|
+
getContent(): Control;
|
|
8812
9105
|
/**
|
|
8813
9106
|
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
8814
9107
|
* or `null`.
|
|
@@ -8847,7 +9140,7 @@ declare module "sap/ui/vk/ecad/LayersPanel" {
|
|
|
8847
9140
|
/**
|
|
8848
9141
|
* The content to set
|
|
8849
9142
|
*/
|
|
8850
|
-
oContent:
|
|
9143
|
+
oContent: Control
|
|
8851
9144
|
): this;
|
|
8852
9145
|
/**
|
|
8853
9146
|
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
@@ -8916,7 +9209,7 @@ declare module "sap/ui/vk/ecad/LayersPanel" {
|
|
|
8916
9209
|
|
|
8917
9210
|
height?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
8918
9211
|
|
|
8919
|
-
content?:
|
|
9212
|
+
content?: Control;
|
|
8920
9213
|
|
|
8921
9214
|
/**
|
|
8922
9215
|
* An association to the `ContentConnector` instance that manages content resources.
|
|
@@ -12285,6 +12578,10 @@ declare module "sap/ui/vk/NodeContentType" {
|
|
|
12285
12578
|
* Background node
|
|
12286
12579
|
*/
|
|
12287
12580
|
Background = "Background",
|
|
12581
|
+
/**
|
|
12582
|
+
* Dynamic content node
|
|
12583
|
+
*/
|
|
12584
|
+
DynamicContent = "DynamicContent",
|
|
12288
12585
|
/**
|
|
12289
12586
|
* Hotspot node
|
|
12290
12587
|
*/
|
|
@@ -14230,6 +14527,8 @@ declare module "sap/ui/vk/ObjectType" {
|
|
|
14230
14527
|
* Object type
|
|
14231
14528
|
*/
|
|
14232
14529
|
enum ObjectType {
|
|
14530
|
+
DynamicContent = "2",
|
|
14531
|
+
|
|
14233
14532
|
Hotspot = "1",
|
|
14234
14533
|
|
|
14235
14534
|
PMI = "0",
|
|
@@ -22360,6 +22659,13 @@ declare module "sap/ui/vk/svg/NodeHierarchy" {
|
|
|
22360
22659
|
*/
|
|
22361
22660
|
stepIntoClosedNodes?: boolean
|
|
22362
22661
|
): any[];
|
|
22662
|
+
/**
|
|
22663
|
+
* Returns a list of dynamic content node references.
|
|
22664
|
+
*
|
|
22665
|
+
*
|
|
22666
|
+
* @returns A list of dynamic content node references.
|
|
22667
|
+
*/
|
|
22668
|
+
getDynamicContentNodeRefs(): any[];
|
|
22363
22669
|
/**
|
|
22364
22670
|
* Returns a list of hotspot node references.
|
|
22365
22671
|
*
|
|
@@ -38891,6 +39197,12 @@ declare module "sap/ui/vk/Viewer" {
|
|
|
38891
39197
|
* Provides simple 3D visualization capability by connecting, configuring and presenting the essential Visualization
|
|
38892
39198
|
* Toolkit controls a single composite control.
|
|
38893
39199
|
*
|
|
39200
|
+
* **NOTE:** To use this control the application developer should add dependencies to the following libraries
|
|
39201
|
+
* on application level to ensure that the libraries are loaded before the module dependencies will be required:
|
|
39202
|
+
*
|
|
39203
|
+
* - sap.f
|
|
39204
|
+
* - sap.ui.comp
|
|
39205
|
+
*
|
|
38894
39206
|
* @since 1.32.0
|
|
38895
39207
|
*/
|
|
38896
39208
|
export default class Viewer extends Control {
|
|
@@ -43312,6 +43624,33 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
43312
43624
|
* @returns Value of property `hotspotColorABGR`
|
|
43313
43625
|
*/
|
|
43314
43626
|
getHotspotColorABGR(): int;
|
|
43627
|
+
/**
|
|
43628
|
+
* Gets current value of property {@link #getHotspotCustomTextHaloWidth hotspotCustomTextHaloWidth}.
|
|
43629
|
+
*
|
|
43630
|
+
* Default value is `10`.
|
|
43631
|
+
*
|
|
43632
|
+
*
|
|
43633
|
+
* @returns Value of property `hotspotCustomTextHaloWidth`
|
|
43634
|
+
*/
|
|
43635
|
+
getHotspotCustomTextHaloWidth(): float;
|
|
43636
|
+
/**
|
|
43637
|
+
* Gets current value of property {@link #getHotspotCustomTextOutlineColor hotspotCustomTextOutlineColor}.
|
|
43638
|
+
*
|
|
43639
|
+
* Default value is `"white"`.
|
|
43640
|
+
*
|
|
43641
|
+
*
|
|
43642
|
+
* @returns Value of property `hotspotCustomTextOutlineColor`
|
|
43643
|
+
*/
|
|
43644
|
+
getHotspotCustomTextOutlineColor(): CSSColor;
|
|
43645
|
+
/**
|
|
43646
|
+
* Gets current value of property {@link #getHotspotCustomTextOutlineWidth hotspotCustomTextOutlineWidth}.
|
|
43647
|
+
*
|
|
43648
|
+
* Default value is `1`.
|
|
43649
|
+
*
|
|
43650
|
+
*
|
|
43651
|
+
* @returns Value of property `hotspotCustomTextOutlineWidth`
|
|
43652
|
+
*/
|
|
43653
|
+
getHotspotCustomTextOutlineWidth(): float;
|
|
43315
43654
|
/**
|
|
43316
43655
|
* Gets current value of property {@link #getKeepOutputSize keepOutputSize}.
|
|
43317
43656
|
*
|
|
@@ -43366,6 +43705,17 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
43366
43705
|
* @returns Value of property `selectionMode`
|
|
43367
43706
|
*/
|
|
43368
43707
|
getSelectionMode(): SelectionMode;
|
|
43708
|
+
/**
|
|
43709
|
+
* Gets current value of property {@link #getShowAllDynamicContents showAllDynamicContents}.
|
|
43710
|
+
*
|
|
43711
|
+
* Enables or disables showing of all dynamic contents
|
|
43712
|
+
*
|
|
43713
|
+
* Default value is `false`.
|
|
43714
|
+
*
|
|
43715
|
+
*
|
|
43716
|
+
* @returns Value of property `showAllDynamicContents`
|
|
43717
|
+
*/
|
|
43718
|
+
getShowAllDynamicContents(): boolean;
|
|
43369
43719
|
/**
|
|
43370
43720
|
* Gets current value of property {@link #getShowAllHotspots showAllHotspots}.
|
|
43371
43721
|
*
|
|
@@ -43790,6 +44140,54 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
43790
44140
|
*/
|
|
43791
44141
|
iHotspotColorABGR?: int
|
|
43792
44142
|
): this;
|
|
44143
|
+
/**
|
|
44144
|
+
* Sets a new value for property {@link #getHotspotCustomTextHaloWidth hotspotCustomTextHaloWidth}.
|
|
44145
|
+
*
|
|
44146
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44147
|
+
*
|
|
44148
|
+
* Default value is `10`.
|
|
44149
|
+
*
|
|
44150
|
+
*
|
|
44151
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44152
|
+
*/
|
|
44153
|
+
setHotspotCustomTextHaloWidth(
|
|
44154
|
+
/**
|
|
44155
|
+
* New value for property `hotspotCustomTextHaloWidth`
|
|
44156
|
+
*/
|
|
44157
|
+
fHotspotCustomTextHaloWidth?: float
|
|
44158
|
+
): this;
|
|
44159
|
+
/**
|
|
44160
|
+
* Sets a new value for property {@link #getHotspotCustomTextOutlineColor hotspotCustomTextOutlineColor}.
|
|
44161
|
+
*
|
|
44162
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44163
|
+
*
|
|
44164
|
+
* Default value is `"white"`.
|
|
44165
|
+
*
|
|
44166
|
+
*
|
|
44167
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44168
|
+
*/
|
|
44169
|
+
setHotspotCustomTextOutlineColor(
|
|
44170
|
+
/**
|
|
44171
|
+
* New value for property `hotspotCustomTextOutlineColor`
|
|
44172
|
+
*/
|
|
44173
|
+
sHotspotCustomTextOutlineColor?: CSSColor
|
|
44174
|
+
): this;
|
|
44175
|
+
/**
|
|
44176
|
+
* Sets a new value for property {@link #getHotspotCustomTextOutlineWidth hotspotCustomTextOutlineWidth}.
|
|
44177
|
+
*
|
|
44178
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44179
|
+
*
|
|
44180
|
+
* Default value is `1`.
|
|
44181
|
+
*
|
|
44182
|
+
*
|
|
44183
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44184
|
+
*/
|
|
44185
|
+
setHotspotCustomTextOutlineWidth(
|
|
44186
|
+
/**
|
|
44187
|
+
* New value for property `hotspotCustomTextOutlineWidth`
|
|
44188
|
+
*/
|
|
44189
|
+
fHotspotCustomTextOutlineWidth?: float
|
|
44190
|
+
): this;
|
|
43793
44191
|
/**
|
|
43794
44192
|
* Sets a new value for property {@link #getKeepOutputSize keepOutputSize}.
|
|
43795
44193
|
*
|
|
@@ -43886,6 +44284,24 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
43886
44284
|
*/
|
|
43887
44285
|
sSelectionMode?: SelectionMode
|
|
43888
44286
|
): this;
|
|
44287
|
+
/**
|
|
44288
|
+
* Sets a new value for property {@link #getShowAllDynamicContents showAllDynamicContents}.
|
|
44289
|
+
*
|
|
44290
|
+
* Enables or disables showing of all dynamic contents
|
|
44291
|
+
*
|
|
44292
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44293
|
+
*
|
|
44294
|
+
* Default value is `false`.
|
|
44295
|
+
*
|
|
44296
|
+
*
|
|
44297
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44298
|
+
*/
|
|
44299
|
+
setShowAllDynamicContents(
|
|
44300
|
+
/**
|
|
44301
|
+
* New value for property `showAllDynamicContents`
|
|
44302
|
+
*/
|
|
44303
|
+
bShowAllDynamicContents?: boolean
|
|
44304
|
+
): this;
|
|
43889
44305
|
/**
|
|
43890
44306
|
* Sets a new value for property {@link #getShowAllHotspots showAllHotspots}.
|
|
43891
44307
|
*
|
|
@@ -44103,6 +44519,11 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
44103
44519
|
*/
|
|
44104
44520
|
showAllHotspots?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
44105
44521
|
|
|
44522
|
+
/**
|
|
44523
|
+
* Enables or disables showing of all dynamic contents
|
|
44524
|
+
*/
|
|
44525
|
+
showAllDynamicContents?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
44526
|
+
|
|
44106
44527
|
/**
|
|
44107
44528
|
* Disables hotspot hovering
|
|
44108
44529
|
*/
|
|
@@ -44118,6 +44539,15 @@ declare module "sap/ui/vk/ViewportBase" {
|
|
|
44118
44539
|
*/
|
|
44119
44540
|
hotspotColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
44120
44541
|
|
|
44542
|
+
hotspotCustomTextOutlineWidth?: float | PropertyBindingInfo | `{${string}}`;
|
|
44543
|
+
|
|
44544
|
+
hotspotCustomTextOutlineColor?:
|
|
44545
|
+
| CSSColor
|
|
44546
|
+
| PropertyBindingInfo
|
|
44547
|
+
| `{${string}}`;
|
|
44548
|
+
|
|
44549
|
+
hotspotCustomTextHaloWidth?: float | PropertyBindingInfo | `{${string}}`;
|
|
44550
|
+
|
|
44121
44551
|
keepOutputSize?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
44122
44552
|
|
|
44123
44553
|
/**
|
|
@@ -47267,6 +47697,8 @@ declare namespace sap {
|
|
|
47267
47697
|
|
|
47268
47698
|
"sap/ui/vk/dvl/ViewStateManager": undefined;
|
|
47269
47699
|
|
|
47700
|
+
"sap/ui/vk/ecad/ElementsPanel": undefined;
|
|
47701
|
+
|
|
47270
47702
|
"sap/ui/vk/ecad/LayersPanel": undefined;
|
|
47271
47703
|
|
|
47272
47704
|
"sap/ui/vk/FlexibleControl": undefined;
|
package/types/sap.ui.vtm.d.ts
CHANGED