@sapui5/ts-types 1.136.10 → 1.136.12
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 -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 +3 -0
- 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 +51 -2
- 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.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.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.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.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 +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 +4 -4
- package/types/sap.ui.vk.d.ts +347 -9
- 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.fe.controls-1.136.9-d.ts +0 -3
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
/// <reference path="./sap.cux.home.d.ts"/>
|
|
46
46
|
/// <reference path="./sap.esh.search.ui.d.ts"/>
|
|
47
47
|
/// <reference path="./sap.fe.base.d.ts"/>
|
|
48
|
-
/// <reference path="./sap.fe.controls
|
|
48
|
+
/// <reference path="./sap.fe.controls.d.ts"/>
|
|
49
49
|
/// <reference path="./sap.fe.core.d.ts"/>
|
|
50
50
|
/// <reference path="./sap.fe.ina.d.ts"/>
|
|
51
51
|
/// <reference path="./sap.fe.macros.d.ts"/>
|
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.11
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -2902,6 +2902,13 @@ declare namespace sap {
|
|
|
2902
2902
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
2903
2903
|
}
|
|
2904
2904
|
): Promise<string>;
|
|
2905
|
+
/**
|
|
2906
|
+
* Get the count of the row binding of the table.
|
|
2907
|
+
*
|
|
2908
|
+
*
|
|
2909
|
+
* @returns The count of the row binding
|
|
2910
|
+
*/
|
|
2911
|
+
getCount(): number | undefined;
|
|
2905
2912
|
/**
|
|
2906
2913
|
* Get the variant management applied to the table.
|
|
2907
2914
|
*
|
|
@@ -3182,6 +3189,13 @@ declare namespace sap {
|
|
|
3182
3189
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
3183
3190
|
}
|
|
3184
3191
|
): Promise<string>;
|
|
3192
|
+
/**
|
|
3193
|
+
* Get the count of the row binding of the table.
|
|
3194
|
+
*
|
|
3195
|
+
*
|
|
3196
|
+
* @returns The count of the row binding
|
|
3197
|
+
*/
|
|
3198
|
+
getCount(): number | undefined;
|
|
3185
3199
|
/**
|
|
3186
3200
|
* Get the variant management applied to the table.
|
|
3187
3201
|
*
|
|
@@ -4974,7 +4988,7 @@ declare namespace sap {
|
|
|
4974
4988
|
setVariantManagement(): string;
|
|
4975
4989
|
}
|
|
4976
4990
|
/**
|
|
4977
|
-
* API to add parameters to the collection binding
|
|
4991
|
+
* API to add parameters to the collection binding info.
|
|
4978
4992
|
*/
|
|
4979
4993
|
class CollectionBindingInfo {
|
|
4980
4994
|
/**
|
|
@@ -5004,6 +5018,27 @@ declare namespace sap {
|
|
|
5004
5018
|
*/
|
|
5005
5019
|
sorter: sap.ui.model.Sorter
|
|
5006
5020
|
): void;
|
|
5021
|
+
/**
|
|
5022
|
+
* Attach the events to the table binding.
|
|
5023
|
+
*/
|
|
5024
|
+
attachEvent(
|
|
5025
|
+
/**
|
|
5026
|
+
* The event ID to attach the callback to
|
|
5027
|
+
*/
|
|
5028
|
+
eventId: string,
|
|
5029
|
+
/**
|
|
5030
|
+
* The callback function to be executed when the event is triggered
|
|
5031
|
+
*/
|
|
5032
|
+
callback: Function,
|
|
5033
|
+
/**
|
|
5034
|
+
* The listener object that will be used as the context for the callback function
|
|
5035
|
+
*/
|
|
5036
|
+
listener?: object,
|
|
5037
|
+
/**
|
|
5038
|
+
* Data that will be passed to the callback function when the event is triggered
|
|
5039
|
+
*/
|
|
5040
|
+
data?: object
|
|
5041
|
+
): void;
|
|
5007
5042
|
/**
|
|
5008
5043
|
* Retrieve the 'serialized' binding info, useful if you want to create your own binding
|
|
5009
5044
|
*
|
|
@@ -5593,6 +5628,13 @@ declare namespace sap {
|
|
|
5593
5628
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
5594
5629
|
}
|
|
5595
5630
|
): Promise<string>;
|
|
5631
|
+
/**
|
|
5632
|
+
* Get the count of the row binding of the table.
|
|
5633
|
+
*
|
|
5634
|
+
*
|
|
5635
|
+
* @returns The count of the row binding
|
|
5636
|
+
*/
|
|
5637
|
+
getCount(): number | undefined;
|
|
5596
5638
|
/**
|
|
5597
5639
|
* Get the variant management applied to the table.
|
|
5598
5640
|
*
|
|
@@ -5760,6 +5802,13 @@ declare namespace sap {
|
|
|
5760
5802
|
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
5761
5803
|
}
|
|
5762
5804
|
): Promise<string>;
|
|
5805
|
+
/**
|
|
5806
|
+
* Get the count of the row binding of the table.
|
|
5807
|
+
*
|
|
5808
|
+
*
|
|
5809
|
+
* @returns The count of the row binding
|
|
5810
|
+
*/
|
|
5811
|
+
getCount(): number | undefined;
|
|
5763
5812
|
/**
|
|
5764
5813
|
* Get the variant management applied to the table.
|
|
5765
5814
|
*
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.insights.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1325,7 +1325,7 @@ declare namespace sap {
|
|
|
1325
1325
|
/**
|
|
1326
1326
|
* List Panel aggregation
|
|
1327
1327
|
*/
|
|
1328
|
-
listPanelStack?:
|
|
1328
|
+
listPanelStack?: sap.ui.vbm.ListPanelStack;
|
|
1329
1329
|
}
|
|
1330
1330
|
|
|
1331
1331
|
/**
|
|
@@ -13183,7 +13183,7 @@ declare namespace sap {
|
|
|
13183
13183
|
*
|
|
13184
13184
|
* List Panel aggregation
|
|
13185
13185
|
*/
|
|
13186
|
-
getListPanelStack():
|
|
13186
|
+
getListPanelStack(): sap.ui.vbm.ListPanelStack;
|
|
13187
13187
|
/**
|
|
13188
13188
|
* Gets current value of property {@link #getShowHome showHome}.
|
|
13189
13189
|
*
|
|
@@ -13249,7 +13249,7 @@ declare namespace sap {
|
|
|
13249
13249
|
/**
|
|
13250
13250
|
* The listPanelStack to set
|
|
13251
13251
|
*/
|
|
13252
|
-
oListPanelStack:
|
|
13252
|
+
oListPanelStack: sap.ui.vbm.ListPanelStack
|
|
13253
13253
|
): this;
|
|
13254
13254
|
/**
|
|
13255
13255
|
* Sets a new value for property {@link #getShowHome showHome}.
|
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2561,7 +2561,17 @@ declare namespace sap {
|
|
|
2561
2561
|
* Describes the settings that can be provided to the LayersPanel constructor.
|
|
2562
2562
|
*/
|
|
2563
2563
|
interface $LayersPanelSettings extends sap.ui.core.$ControlSettings {
|
|
2564
|
-
|
|
2564
|
+
width?:
|
|
2565
|
+
| sap.ui.core.CSSSize
|
|
2566
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2567
|
+
| `{${string}}`;
|
|
2568
|
+
|
|
2569
|
+
height?:
|
|
2570
|
+
| sap.ui.core.CSSSize
|
|
2571
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2572
|
+
| `{${string}}`;
|
|
2573
|
+
|
|
2574
|
+
content?: sap.ui.core.Control;
|
|
2565
2575
|
|
|
2566
2576
|
/**
|
|
2567
2577
|
* An association to the `ContentConnector` instance that manages content resources.
|
|
@@ -2743,17 +2753,35 @@ declare namespace sap {
|
|
|
2743
2753
|
/**
|
|
2744
2754
|
* Gets content of aggregation {@link #getContent content}.
|
|
2745
2755
|
*/
|
|
2746
|
-
getContent(): sap.
|
|
2756
|
+
getContent(): sap.ui.core.Control;
|
|
2747
2757
|
/**
|
|
2748
2758
|
* ID of the element which is the current target of the association {@link #getContentConnector contentConnector},
|
|
2749
2759
|
* or `null`.
|
|
2750
2760
|
*/
|
|
2751
2761
|
getContentConnector(): sap.ui.core.ID | null;
|
|
2762
|
+
/**
|
|
2763
|
+
* Gets current value of property {@link #getHeight height}.
|
|
2764
|
+
*
|
|
2765
|
+
* Default value is `"100%"`.
|
|
2766
|
+
*
|
|
2767
|
+
*
|
|
2768
|
+
* @returns Value of property `height`
|
|
2769
|
+
*/
|
|
2770
|
+
getHeight(): sap.ui.core.CSSSize;
|
|
2752
2771
|
/**
|
|
2753
2772
|
* ID of the element which is the current target of the association {@link #getViewStateManager viewStateManager},
|
|
2754
2773
|
* or `null`.
|
|
2755
2774
|
*/
|
|
2756
2775
|
getViewStateManager(): sap.ui.core.ID | null;
|
|
2776
|
+
/**
|
|
2777
|
+
* Gets current value of property {@link #getWidth width}.
|
|
2778
|
+
*
|
|
2779
|
+
* Default value is `"auto"`.
|
|
2780
|
+
*
|
|
2781
|
+
*
|
|
2782
|
+
* @returns Value of property `width`
|
|
2783
|
+
*/
|
|
2784
|
+
getWidth(): sap.ui.core.CSSSize;
|
|
2757
2785
|
/**
|
|
2758
2786
|
* Sets the aggregated {@link #getContent content}.
|
|
2759
2787
|
*
|
|
@@ -2764,7 +2792,7 @@ declare namespace sap {
|
|
|
2764
2792
|
/**
|
|
2765
2793
|
* The content to set
|
|
2766
2794
|
*/
|
|
2767
|
-
oContent: sap.
|
|
2795
|
+
oContent: sap.ui.core.Control
|
|
2768
2796
|
): this;
|
|
2769
2797
|
/**
|
|
2770
2798
|
* Sets the associated {@link #getContentConnector contentConnector}.
|
|
@@ -2779,6 +2807,22 @@ declare namespace sap {
|
|
|
2779
2807
|
*/
|
|
2780
2808
|
oContentConnector: sap.ui.core.ID | sap.ui.vk.ContentConnector
|
|
2781
2809
|
): this;
|
|
2810
|
+
/**
|
|
2811
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
2812
|
+
*
|
|
2813
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2814
|
+
*
|
|
2815
|
+
* Default value is `"100%"`.
|
|
2816
|
+
*
|
|
2817
|
+
*
|
|
2818
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2819
|
+
*/
|
|
2820
|
+
setHeight(
|
|
2821
|
+
/**
|
|
2822
|
+
* New value for property `height`
|
|
2823
|
+
*/
|
|
2824
|
+
sHeight?: sap.ui.core.CSSSize
|
|
2825
|
+
): this;
|
|
2782
2826
|
/**
|
|
2783
2827
|
* Sets the associated {@link #getViewStateManager viewStateManager}.
|
|
2784
2828
|
*
|
|
@@ -2792,6 +2836,22 @@ declare namespace sap {
|
|
|
2792
2836
|
*/
|
|
2793
2837
|
oViewStateManager: sap.ui.core.ID | sap.ui.vk.ViewStateManagerBase
|
|
2794
2838
|
): this;
|
|
2839
|
+
/**
|
|
2840
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
2841
|
+
*
|
|
2842
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2843
|
+
*
|
|
2844
|
+
* Default value is `"auto"`.
|
|
2845
|
+
*
|
|
2846
|
+
*
|
|
2847
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2848
|
+
*/
|
|
2849
|
+
setWidth(
|
|
2850
|
+
/**
|
|
2851
|
+
* New value for property `width`
|
|
2852
|
+
*/
|
|
2853
|
+
sWidth?: sap.ui.core.CSSSize
|
|
2854
|
+
): this;
|
|
2795
2855
|
}
|
|
2796
2856
|
|
|
2797
2857
|
/**
|
|
@@ -18475,6 +18535,8 @@ declare namespace sap {
|
|
|
18475
18535
|
| `{${string}}`;
|
|
18476
18536
|
|
|
18477
18537
|
/**
|
|
18538
|
+
* The source type of the content resource. Valid types:
|
|
18539
|
+
*
|
|
18478
18540
|
*
|
|
18479
18541
|
* - vds
|
|
18480
18542
|
* - vds4
|
|
@@ -20148,6 +20210,54 @@ declare namespace sap {
|
|
|
20148
20210
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20149
20211
|
| `{${string}}`;
|
|
20150
20212
|
|
|
20213
|
+
/**
|
|
20214
|
+
* Disables the ECAD layers panel control
|
|
20215
|
+
*/
|
|
20216
|
+
enableLayersPanel?:
|
|
20217
|
+
| boolean
|
|
20218
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20219
|
+
| `{${string}}`;
|
|
20220
|
+
|
|
20221
|
+
/**
|
|
20222
|
+
* Shows or hides the ECAD layers panel control
|
|
20223
|
+
*/
|
|
20224
|
+
showLayersPanel?:
|
|
20225
|
+
| boolean
|
|
20226
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20227
|
+
| `{${string}}`;
|
|
20228
|
+
|
|
20229
|
+
/**
|
|
20230
|
+
* Disables the ECAD elements panel control
|
|
20231
|
+
*/
|
|
20232
|
+
enableElementsPanel?:
|
|
20233
|
+
| boolean
|
|
20234
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20235
|
+
| `{${string}}`;
|
|
20236
|
+
|
|
20237
|
+
/**
|
|
20238
|
+
* Shows or hides the ECAD elements panel control
|
|
20239
|
+
*/
|
|
20240
|
+
showElementsPanel?:
|
|
20241
|
+
| boolean
|
|
20242
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20243
|
+
| `{${string}}`;
|
|
20244
|
+
|
|
20245
|
+
/**
|
|
20246
|
+
* Disables the page gallery control
|
|
20247
|
+
*/
|
|
20248
|
+
enablePageGallery?:
|
|
20249
|
+
| boolean
|
|
20250
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20251
|
+
| `{${string}}`;
|
|
20252
|
+
|
|
20253
|
+
/**
|
|
20254
|
+
* Shows or hides the page gallery control
|
|
20255
|
+
*/
|
|
20256
|
+
showPageGallery?:
|
|
20257
|
+
| boolean
|
|
20258
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20259
|
+
| `{${string}}`;
|
|
20260
|
+
|
|
20151
20261
|
/**
|
|
20152
20262
|
* Shows or hides Toolbar control
|
|
20153
20263
|
*/
|
|
@@ -20252,6 +20362,14 @@ declare namespace sap {
|
|
|
20252
20362
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20253
20363
|
| `{${string}}`;
|
|
20254
20364
|
|
|
20365
|
+
/**
|
|
20366
|
+
* Shows or hides showing of all hotspots toggle button
|
|
20367
|
+
*/
|
|
20368
|
+
hotspotsEnabled?:
|
|
20369
|
+
| boolean
|
|
20370
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20371
|
+
| `{${string}}`;
|
|
20372
|
+
|
|
20255
20373
|
/**
|
|
20256
20374
|
* Enables or disables showing of all hotspots
|
|
20257
20375
|
*/
|
|
@@ -25823,6 +25941,8 @@ declare namespace sap {
|
|
|
25823
25941
|
/**
|
|
25824
25942
|
* Gets current value of property {@link #getSourceType sourceType}.
|
|
25825
25943
|
*
|
|
25944
|
+
* The source type of the content resource. Valid types:
|
|
25945
|
+
*
|
|
25826
25946
|
*
|
|
25827
25947
|
* - vds
|
|
25828
25948
|
* - vds4
|
|
@@ -26239,6 +26359,8 @@ declare namespace sap {
|
|
|
26239
26359
|
/**
|
|
26240
26360
|
* Sets a new value for property {@link #getSourceType sourceType}.
|
|
26241
26361
|
*
|
|
26362
|
+
* The source type of the content resource. Valid types:
|
|
26363
|
+
*
|
|
26242
26364
|
*
|
|
26243
26365
|
* - vds
|
|
26244
26366
|
* - vds4
|
|
@@ -38620,7 +38742,12 @@ declare namespace sap {
|
|
|
38620
38742
|
*
|
|
38621
38743
|
* @returns `this` to allow method chaining.
|
|
38622
38744
|
*/
|
|
38623
|
-
activateFullScreenMode(
|
|
38745
|
+
activateFullScreenMode(
|
|
38746
|
+
/**
|
|
38747
|
+
* If `true`, it activates full screen mode; if `false`, it deactivates full screen mode.
|
|
38748
|
+
*/
|
|
38749
|
+
value: boolean
|
|
38750
|
+
): this;
|
|
38624
38751
|
/**
|
|
38625
38752
|
* Activates the redline design control.
|
|
38626
38753
|
*
|
|
@@ -39309,6 +39436,28 @@ declare namespace sap {
|
|
|
39309
39436
|
* Content resources to load and display in the Viewer control.
|
|
39310
39437
|
*/
|
|
39311
39438
|
getContentResources(): sap.ui.vk.ContentResource[];
|
|
39439
|
+
/**
|
|
39440
|
+
* Gets current value of property {@link #getEnableElementsPanel enableElementsPanel}.
|
|
39441
|
+
*
|
|
39442
|
+
* Disables the ECAD elements panel control
|
|
39443
|
+
*
|
|
39444
|
+
* Default value is `true`.
|
|
39445
|
+
*
|
|
39446
|
+
*
|
|
39447
|
+
* @returns Value of property `enableElementsPanel`
|
|
39448
|
+
*/
|
|
39449
|
+
getEnableElementsPanel(): boolean;
|
|
39450
|
+
/**
|
|
39451
|
+
* Gets current value of property {@link #getEnableLayersPanel enableLayersPanel}.
|
|
39452
|
+
*
|
|
39453
|
+
* Disables the ECAD layers panel control
|
|
39454
|
+
*
|
|
39455
|
+
* Default value is `true`.
|
|
39456
|
+
*
|
|
39457
|
+
*
|
|
39458
|
+
* @returns Value of property `enableLayersPanel`
|
|
39459
|
+
*/
|
|
39460
|
+
getEnableLayersPanel(): boolean;
|
|
39312
39461
|
/**
|
|
39313
39462
|
* Gets current value of property {@link #getEnableMiniMap enableMiniMap}.
|
|
39314
39463
|
*
|
|
@@ -39331,6 +39480,17 @@ declare namespace sap {
|
|
|
39331
39480
|
* @returns Value of property `enableNotifications`
|
|
39332
39481
|
*/
|
|
39333
39482
|
getEnableNotifications(): boolean;
|
|
39483
|
+
/**
|
|
39484
|
+
* Gets current value of property {@link #getEnablePageGallery enablePageGallery}.
|
|
39485
|
+
*
|
|
39486
|
+
* Disables the page gallery control
|
|
39487
|
+
*
|
|
39488
|
+
* Default value is `true`.
|
|
39489
|
+
*
|
|
39490
|
+
*
|
|
39491
|
+
* @returns Value of property `enablePageGallery`
|
|
39492
|
+
*/
|
|
39493
|
+
getEnablePageGallery(): boolean;
|
|
39334
39494
|
/**
|
|
39335
39495
|
* Gets current value of property {@link #getEnableProgressIndicator enableProgressIndicator}.
|
|
39336
39496
|
*
|
|
@@ -39398,7 +39558,7 @@ declare namespace sap {
|
|
|
39398
39558
|
*
|
|
39399
39559
|
* Color used for highlighting Smart2D hotspots in the CSS Color format.
|
|
39400
39560
|
*
|
|
39401
|
-
* Default value is `"rgba(
|
|
39561
|
+
* Default value is `"rgba(89, 0, 0, 0.73)"`.
|
|
39402
39562
|
*
|
|
39403
39563
|
*
|
|
39404
39564
|
* @returns Value of property `hotspotColor`
|
|
@@ -39409,12 +39569,23 @@ declare namespace sap {
|
|
|
39409
39569
|
*
|
|
39410
39570
|
* Color used for highlighting Smart2D hotspots in the ABGR format.
|
|
39411
39571
|
*
|
|
39412
|
-
* Default value is `
|
|
39572
|
+
* Default value is `0x590000BB`.
|
|
39413
39573
|
*
|
|
39414
39574
|
*
|
|
39415
39575
|
* @returns Value of property `hotspotColorABGR`
|
|
39416
39576
|
*/
|
|
39417
39577
|
getHotspotColorABGR(): int;
|
|
39578
|
+
/**
|
|
39579
|
+
* Gets current value of property {@link #getHotspotsEnabled hotspotsEnabled}.
|
|
39580
|
+
*
|
|
39581
|
+
* Shows or hides showing of all hotspots toggle button
|
|
39582
|
+
*
|
|
39583
|
+
* Default value is `true`.
|
|
39584
|
+
*
|
|
39585
|
+
*
|
|
39586
|
+
* @returns Value of property `hotspotsEnabled`
|
|
39587
|
+
*/
|
|
39588
|
+
getHotspotsEnabled(): boolean;
|
|
39418
39589
|
/**
|
|
39419
39590
|
* Gets the 2D viewport used for displaying format natively supported by the browser - 2D images etc.
|
|
39420
39591
|
*
|
|
@@ -39516,6 +39687,28 @@ declare namespace sap {
|
|
|
39516
39687
|
* @returns Value of property `showDrawerToolbar`
|
|
39517
39688
|
*/
|
|
39518
39689
|
getShowDrawerToolbar(): boolean;
|
|
39690
|
+
/**
|
|
39691
|
+
* Gets current value of property {@link #getShowElementsPanel showElementsPanel}.
|
|
39692
|
+
*
|
|
39693
|
+
* Shows or hides the ECAD elements panel control
|
|
39694
|
+
*
|
|
39695
|
+
* Default value is `true`.
|
|
39696
|
+
*
|
|
39697
|
+
*
|
|
39698
|
+
* @returns Value of property `showElementsPanel`
|
|
39699
|
+
*/
|
|
39700
|
+
getShowElementsPanel(): boolean;
|
|
39701
|
+
/**
|
|
39702
|
+
* Gets current value of property {@link #getShowLayersPanel showLayersPanel}.
|
|
39703
|
+
*
|
|
39704
|
+
* Shows or hides the ECAD layers panel control
|
|
39705
|
+
*
|
|
39706
|
+
* Default value is `true`.
|
|
39707
|
+
*
|
|
39708
|
+
*
|
|
39709
|
+
* @returns Value of property `showLayersPanel`
|
|
39710
|
+
*/
|
|
39711
|
+
getShowLayersPanel(): boolean;
|
|
39519
39712
|
/**
|
|
39520
39713
|
* Gets current value of property {@link #getShowMiniMap showMiniMap}.
|
|
39521
39714
|
*
|
|
@@ -39527,6 +39720,17 @@ declare namespace sap {
|
|
|
39527
39720
|
* @returns Value of property `showMiniMap`
|
|
39528
39721
|
*/
|
|
39529
39722
|
getShowMiniMap(): boolean;
|
|
39723
|
+
/**
|
|
39724
|
+
* Gets current value of property {@link #getShowPageGallery showPageGallery}.
|
|
39725
|
+
*
|
|
39726
|
+
* Shows or hides the page gallery control
|
|
39727
|
+
*
|
|
39728
|
+
* Default value is `true`.
|
|
39729
|
+
*
|
|
39730
|
+
*
|
|
39731
|
+
* @returns Value of property `showPageGallery`
|
|
39732
|
+
*/
|
|
39733
|
+
getShowPageGallery(): boolean;
|
|
39530
39734
|
/**
|
|
39531
39735
|
* Gets current value of property {@link #getShowSceneTree showSceneTree}.
|
|
39532
39736
|
*
|
|
@@ -39707,6 +39911,42 @@ declare namespace sap {
|
|
|
39707
39911
|
*/
|
|
39708
39912
|
handler: sap.ui.vk.DecryptionHandler
|
|
39709
39913
|
): this;
|
|
39914
|
+
/**
|
|
39915
|
+
* Sets a new value for property {@link #getEnableElementsPanel enableElementsPanel}.
|
|
39916
|
+
*
|
|
39917
|
+
* Disables the ECAD elements panel control
|
|
39918
|
+
*
|
|
39919
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39920
|
+
*
|
|
39921
|
+
* Default value is `true`.
|
|
39922
|
+
*
|
|
39923
|
+
*
|
|
39924
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39925
|
+
*/
|
|
39926
|
+
setEnableElementsPanel(
|
|
39927
|
+
/**
|
|
39928
|
+
* New value for property `enableElementsPanel`
|
|
39929
|
+
*/
|
|
39930
|
+
bEnableElementsPanel?: boolean
|
|
39931
|
+
): this;
|
|
39932
|
+
/**
|
|
39933
|
+
* Sets a new value for property {@link #getEnableLayersPanel enableLayersPanel}.
|
|
39934
|
+
*
|
|
39935
|
+
* Disables the ECAD layers panel control
|
|
39936
|
+
*
|
|
39937
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39938
|
+
*
|
|
39939
|
+
* Default value is `true`.
|
|
39940
|
+
*
|
|
39941
|
+
*
|
|
39942
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39943
|
+
*/
|
|
39944
|
+
setEnableLayersPanel(
|
|
39945
|
+
/**
|
|
39946
|
+
* New value for property `enableLayersPanel`
|
|
39947
|
+
*/
|
|
39948
|
+
bEnableLayersPanel?: boolean
|
|
39949
|
+
): this;
|
|
39710
39950
|
/**
|
|
39711
39951
|
* Sets a new value for property {@link #getEnableMiniMap enableMiniMap}.
|
|
39712
39952
|
*
|
|
@@ -39743,6 +39983,24 @@ declare namespace sap {
|
|
|
39743
39983
|
*/
|
|
39744
39984
|
bEnableNotifications?: boolean
|
|
39745
39985
|
): this;
|
|
39986
|
+
/**
|
|
39987
|
+
* Sets a new value for property {@link #getEnablePageGallery enablePageGallery}.
|
|
39988
|
+
*
|
|
39989
|
+
* Disables the page gallery control
|
|
39990
|
+
*
|
|
39991
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39992
|
+
*
|
|
39993
|
+
* Default value is `true`.
|
|
39994
|
+
*
|
|
39995
|
+
*
|
|
39996
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39997
|
+
*/
|
|
39998
|
+
setEnablePageGallery(
|
|
39999
|
+
/**
|
|
40000
|
+
* New value for property `enablePageGallery`
|
|
40001
|
+
*/
|
|
40002
|
+
bEnablePageGallery?: boolean
|
|
40003
|
+
): this;
|
|
39746
40004
|
/**
|
|
39747
40005
|
* Sets a new value for property {@link #getEnableProgressIndicator enableProgressIndicator}.
|
|
39748
40006
|
*
|
|
@@ -39838,7 +40096,7 @@ declare namespace sap {
|
|
|
39838
40096
|
*
|
|
39839
40097
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39840
40098
|
*
|
|
39841
|
-
* Default value is `"rgba(
|
|
40099
|
+
* Default value is `"rgba(89, 0, 0, 0.73)"`.
|
|
39842
40100
|
*
|
|
39843
40101
|
*
|
|
39844
40102
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39856,7 +40114,7 @@ declare namespace sap {
|
|
|
39856
40114
|
*
|
|
39857
40115
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39858
40116
|
*
|
|
39859
|
-
* Default value is `
|
|
40117
|
+
* Default value is `0x590000BB`.
|
|
39860
40118
|
*
|
|
39861
40119
|
*
|
|
39862
40120
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39867,6 +40125,24 @@ declare namespace sap {
|
|
|
39867
40125
|
*/
|
|
39868
40126
|
iHotspotColorABGR?: int
|
|
39869
40127
|
): this;
|
|
40128
|
+
/**
|
|
40129
|
+
* Sets a new value for property {@link #getHotspotsEnabled hotspotsEnabled}.
|
|
40130
|
+
*
|
|
40131
|
+
* Shows or hides showing of all hotspots toggle button
|
|
40132
|
+
*
|
|
40133
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40134
|
+
*
|
|
40135
|
+
* Default value is `true`.
|
|
40136
|
+
*
|
|
40137
|
+
*
|
|
40138
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
40139
|
+
*/
|
|
40140
|
+
setHotspotsEnabled(
|
|
40141
|
+
/**
|
|
40142
|
+
* New value for property `hotspotsEnabled`
|
|
40143
|
+
*/
|
|
40144
|
+
bHotspotsEnabled?: boolean
|
|
40145
|
+
): this;
|
|
39870
40146
|
/**
|
|
39871
40147
|
* Sets a new value for property {@link #getOverlayStepNavigation overlayStepNavigation}.
|
|
39872
40148
|
*
|
|
@@ -39980,6 +40256,42 @@ declare namespace sap {
|
|
|
39980
40256
|
*/
|
|
39981
40257
|
bShowDrawerToolbar?: boolean
|
|
39982
40258
|
): this;
|
|
40259
|
+
/**
|
|
40260
|
+
* Sets a new value for property {@link #getShowElementsPanel showElementsPanel}.
|
|
40261
|
+
*
|
|
40262
|
+
* Shows or hides the ECAD elements panel control
|
|
40263
|
+
*
|
|
40264
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40265
|
+
*
|
|
40266
|
+
* Default value is `true`.
|
|
40267
|
+
*
|
|
40268
|
+
*
|
|
40269
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
40270
|
+
*/
|
|
40271
|
+
setShowElementsPanel(
|
|
40272
|
+
/**
|
|
40273
|
+
* New value for property `showElementsPanel`
|
|
40274
|
+
*/
|
|
40275
|
+
bShowElementsPanel?: boolean
|
|
40276
|
+
): this;
|
|
40277
|
+
/**
|
|
40278
|
+
* Sets a new value for property {@link #getShowLayersPanel showLayersPanel}.
|
|
40279
|
+
*
|
|
40280
|
+
* Shows or hides the ECAD layers panel control
|
|
40281
|
+
*
|
|
40282
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40283
|
+
*
|
|
40284
|
+
* Default value is `true`.
|
|
40285
|
+
*
|
|
40286
|
+
*
|
|
40287
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
40288
|
+
*/
|
|
40289
|
+
setShowLayersPanel(
|
|
40290
|
+
/**
|
|
40291
|
+
* New value for property `showLayersPanel`
|
|
40292
|
+
*/
|
|
40293
|
+
bShowLayersPanel?: boolean
|
|
40294
|
+
): this;
|
|
39983
40295
|
/**
|
|
39984
40296
|
* Sets a new value for property {@link #getShowMiniMap showMiniMap}.
|
|
39985
40297
|
*
|
|
@@ -39998,6 +40310,24 @@ declare namespace sap {
|
|
|
39998
40310
|
*/
|
|
39999
40311
|
bShowMiniMap?: boolean
|
|
40000
40312
|
): this;
|
|
40313
|
+
/**
|
|
40314
|
+
* Sets a new value for property {@link #getShowPageGallery showPageGallery}.
|
|
40315
|
+
*
|
|
40316
|
+
* Shows or hides the page gallery control
|
|
40317
|
+
*
|
|
40318
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40319
|
+
*
|
|
40320
|
+
* Default value is `true`.
|
|
40321
|
+
*
|
|
40322
|
+
*
|
|
40323
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
40324
|
+
*/
|
|
40325
|
+
setShowPageGallery(
|
|
40326
|
+
/**
|
|
40327
|
+
* New value for property `showPageGallery`
|
|
40328
|
+
*/
|
|
40329
|
+
bShowPageGallery?: boolean
|
|
40330
|
+
): this;
|
|
40001
40331
|
/**
|
|
40002
40332
|
* Sets a new value for property {@link #getShowSceneTree showSceneTree}.
|
|
40003
40333
|
*
|
|
@@ -45339,12 +45669,16 @@ declare namespace sap {
|
|
|
45339
45669
|
enum DrawerToolbarButton {
|
|
45340
45670
|
CrossSection = "VIT-Cross-Section",
|
|
45341
45671
|
|
|
45672
|
+
EcadSeparator = "VIT-ECAD-Separator",
|
|
45673
|
+
|
|
45342
45674
|
FitToPage = "VIT-Fit-To-Page",
|
|
45343
45675
|
|
|
45344
45676
|
FitToView = "VIT-Fit-To-View",
|
|
45345
45677
|
|
|
45346
45678
|
FitToWidth = "VIT-Fit-To-Width",
|
|
45347
45679
|
|
|
45680
|
+
Flip = "VIT-Flip",
|
|
45681
|
+
|
|
45348
45682
|
FullScreen = "VIT-Fullscreen",
|
|
45349
45683
|
|
|
45350
45684
|
Hide = "VIT-Hide",
|
|
@@ -45367,6 +45701,10 @@ declare namespace sap {
|
|
|
45367
45701
|
|
|
45368
45702
|
RectangularSelection = "VIT-Rectangular-Selection",
|
|
45369
45703
|
|
|
45704
|
+
RotateCCW = "VIT-Rotate-CCW",
|
|
45705
|
+
|
|
45706
|
+
RotateCW = "VIT-Rotate-CW",
|
|
45707
|
+
|
|
45370
45708
|
Show = "VIT-Show",
|
|
45371
45709
|
|
|
45372
45710
|
Turntable = "VIT-Turntable",
|
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED