@sapui5/ts-types 1.144.1 → 1.146.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.esh.search.ui.d.ts +172 -99
- package/types/sap.f.d.ts +71 -528
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +300 -28
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +165 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1137 -290
- 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 +12 -1
- package/types/sap.fe.test.d.ts +150 -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 +181 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +356 -29
- 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 +32 -2
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +403 -21
- package/types/sap.suite.ui.generic.template.d.ts +46 -1
- package/types/sap.suite.ui.microchart.d.ts +2 -1
- package/types/sap.tnt.d.ts +27 -26
- 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 +76 -2
- package/types/sap.ui.core.d.ts +1173 -456
- 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 +9 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +65 -265
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +357 -50
- package/types/sap.ui.richtexteditor.d.ts +33 -11
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +77 -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 +390 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- 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 +188 -131
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
- 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.146.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -234,6 +234,17 @@ declare namespace sap {
|
|
|
234
234
|
* Hides the message strip below the anchor bar.
|
|
235
235
|
*/
|
|
236
236
|
hideMessage(): void;
|
|
237
|
+
/**
|
|
238
|
+
* Navigate to a specific section or subsection within the current page.
|
|
239
|
+
* Works with Object Page layouts and other section-based layouts.
|
|
240
|
+
*/
|
|
241
|
+
navigateToSubSection(
|
|
242
|
+
/**
|
|
243
|
+
* The ID of the target section or subsection (without a view prefix, for example, "fe::FacetSection::TravelData"
|
|
244
|
+
* or "fe::SubSection::Details")
|
|
245
|
+
*/
|
|
246
|
+
sectionOrSubSectionId: string
|
|
247
|
+
): void;
|
|
237
248
|
/**
|
|
238
249
|
* Refreshes either the whole object page or only parts of it.
|
|
239
250
|
*
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -112,6 +112,19 @@ declare namespace sap {
|
|
|
112
112
|
*/
|
|
113
113
|
mButtonState?: object
|
|
114
114
|
): object;
|
|
115
|
+
/**
|
|
116
|
+
* Checks a Contact popup dialog.
|
|
117
|
+
*
|
|
118
|
+
*
|
|
119
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
120
|
+
*/
|
|
121
|
+
iCheckContactDialog(
|
|
122
|
+
/**
|
|
123
|
+
* The expected state of dialog elements Example: { controlType: "sap.m.Title", text: "Domestic HK Customer
|
|
124
|
+
* 1" }
|
|
125
|
+
*/
|
|
126
|
+
mState?: object
|
|
127
|
+
): object;
|
|
115
128
|
/**
|
|
116
129
|
* Checks the content and state of a field in a dialog.
|
|
117
130
|
*
|
|
@@ -1056,6 +1069,18 @@ declare namespace sap {
|
|
|
1056
1069
|
*/
|
|
1057
1070
|
vFieldIdentifier: sap.fe.test.api.FieldIdentifier
|
|
1058
1071
|
): object;
|
|
1072
|
+
/**
|
|
1073
|
+
* Clicks a link for a contact-field within a form.
|
|
1074
|
+
*
|
|
1075
|
+
*
|
|
1076
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1077
|
+
*/
|
|
1078
|
+
iClickContactLink(
|
|
1079
|
+
/**
|
|
1080
|
+
* The content of the link to be clicked
|
|
1081
|
+
*/
|
|
1082
|
+
linkContent: string
|
|
1083
|
+
): object;
|
|
1059
1084
|
/**
|
|
1060
1085
|
* Clicks a link within a form.
|
|
1061
1086
|
*
|
|
@@ -1228,6 +1253,19 @@ declare namespace sap {
|
|
|
1228
1253
|
*/
|
|
1229
1254
|
protected constructor();
|
|
1230
1255
|
|
|
1256
|
+
/**
|
|
1257
|
+
* Clicks a link within the object page header.
|
|
1258
|
+
*
|
|
1259
|
+
*
|
|
1260
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1261
|
+
*/
|
|
1262
|
+
iClickLink(
|
|
1263
|
+
/**
|
|
1264
|
+
* The content of the link to be clicked. It currently has to be the link text itself, not the label of
|
|
1265
|
+
* the field.
|
|
1266
|
+
*/
|
|
1267
|
+
vLinkIdentifier: string
|
|
1268
|
+
): object;
|
|
1231
1269
|
/**
|
|
1232
1270
|
* Executes an action in the header toolbar of an object page.
|
|
1233
1271
|
*
|
|
@@ -1430,6 +1468,22 @@ declare namespace sap {
|
|
|
1430
1468
|
*/
|
|
1431
1469
|
vAction: object | string
|
|
1432
1470
|
): object;
|
|
1471
|
+
/**
|
|
1472
|
+
* Checks a MicroChart shown in the header of an object page.
|
|
1473
|
+
*
|
|
1474
|
+
*
|
|
1475
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1476
|
+
*/
|
|
1477
|
+
iCheckMicroChart(
|
|
1478
|
+
/**
|
|
1479
|
+
* Id/Type or Title of MicroChart
|
|
1480
|
+
*/
|
|
1481
|
+
vMicroChartIdentifier: object | string,
|
|
1482
|
+
/**
|
|
1483
|
+
* UoM label of the MicroChart
|
|
1484
|
+
*/
|
|
1485
|
+
sUoMLabel: string
|
|
1486
|
+
): object;
|
|
1433
1487
|
/**
|
|
1434
1488
|
* Checks the paginator down button.
|
|
1435
1489
|
*
|
|
@@ -1454,6 +1508,42 @@ declare namespace sap {
|
|
|
1454
1508
|
*/
|
|
1455
1509
|
mState: object
|
|
1456
1510
|
): object;
|
|
1511
|
+
/**
|
|
1512
|
+
* Checks a progress indicator data point in the object page header.
|
|
1513
|
+
*
|
|
1514
|
+
*
|
|
1515
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1516
|
+
*/
|
|
1517
|
+
iCheckProgressIndicator(
|
|
1518
|
+
/**
|
|
1519
|
+
* The title of the progress indicator
|
|
1520
|
+
*/
|
|
1521
|
+
Title: string,
|
|
1522
|
+
/**
|
|
1523
|
+
* The expected value of the progress indicator
|
|
1524
|
+
*/
|
|
1525
|
+
PercentValue: number
|
|
1526
|
+
): object;
|
|
1527
|
+
/**
|
|
1528
|
+
* Checks a rating indicator data point in the object page header.
|
|
1529
|
+
*
|
|
1530
|
+
*
|
|
1531
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1532
|
+
*/
|
|
1533
|
+
iCheckRatingIndicator(
|
|
1534
|
+
/**
|
|
1535
|
+
* The title of the rating indicator
|
|
1536
|
+
*/
|
|
1537
|
+
Title: string,
|
|
1538
|
+
/**
|
|
1539
|
+
* The expected value of the rating indicator
|
|
1540
|
+
*/
|
|
1541
|
+
Value: number,
|
|
1542
|
+
/**
|
|
1543
|
+
* The expected maximum value of the rating indicator
|
|
1544
|
+
*/
|
|
1545
|
+
MaxValue: number
|
|
1546
|
+
): object;
|
|
1457
1547
|
/**
|
|
1458
1548
|
* Checks the `Related Apps` action in the header toolbar.
|
|
1459
1549
|
*
|
|
@@ -3000,6 +3090,65 @@ declare namespace sap {
|
|
|
3000
3090
|
* ObjectPage assertions
|
|
3001
3091
|
*/
|
|
3002
3092
|
interface assertions extends sap.fe.test.TemplatePage.assertions {
|
|
3093
|
+
/**
|
|
3094
|
+
* Checks the expected number of sections in an object page.
|
|
3095
|
+
*
|
|
3096
|
+
*
|
|
3097
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
3098
|
+
*/
|
|
3099
|
+
iCheckNumberOfSections(
|
|
3100
|
+
/**
|
|
3101
|
+
* The number of expected sections within the object page.
|
|
3102
|
+
*/
|
|
3103
|
+
ExpectedNumberOfSections: number
|
|
3104
|
+
): object;
|
|
3105
|
+
/**
|
|
3106
|
+
* Checks a section. It is checked if a section is already loaded and therefore the data is visible to the
|
|
3107
|
+
* user. This function does not check properties of the anchor bar buttons for section selection.
|
|
3108
|
+
*
|
|
3109
|
+
*
|
|
3110
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
3111
|
+
*/
|
|
3112
|
+
iCheckSection(
|
|
3113
|
+
/**
|
|
3114
|
+
* The identifier of the section. This can either be a string containing the label of the section or an
|
|
3115
|
+
* object having the pattern
|
|
3116
|
+
* ```javascript
|
|
3117
|
+
*
|
|
3118
|
+
* {
|
|
3119
|
+
* section:
|
|
3120
|
+
* }
|
|
3121
|
+
* ```
|
|
3122
|
+
*/
|
|
3123
|
+
SectionIdentifier: string | sap.fe.test.api.SectionIdentifier,
|
|
3124
|
+
/**
|
|
3125
|
+
* Defines the expected state of the section, e.g. its visibility
|
|
3126
|
+
*/
|
|
3127
|
+
mState: object
|
|
3128
|
+
): object;
|
|
3129
|
+
/**
|
|
3130
|
+
* Checks a sub-section.
|
|
3131
|
+
*
|
|
3132
|
+
*
|
|
3133
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
3134
|
+
*/
|
|
3135
|
+
iCheckSubSection(
|
|
3136
|
+
/**
|
|
3137
|
+
* The identifier of the sub-section to be checked for visibility. This can either be a string containing
|
|
3138
|
+
* the label of the sub-section or an object having the pattern
|
|
3139
|
+
* ```javascript
|
|
3140
|
+
*
|
|
3141
|
+
* {
|
|
3142
|
+
* section:
|
|
3143
|
+
* }
|
|
3144
|
+
* ```
|
|
3145
|
+
*/
|
|
3146
|
+
SubSectionIdentifier: string | sap.fe.test.api.SectionIdentifier,
|
|
3147
|
+
/**
|
|
3148
|
+
* Defines the expected state of the sub-section, e.g. its visibility
|
|
3149
|
+
*/
|
|
3150
|
+
mState: object
|
|
3151
|
+
): object;
|
|
3003
3152
|
/**
|
|
3004
3153
|
* Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
|
|
3005
3154
|
*
|
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -25670,6 +25670,42 @@ declare namespace sap {
|
|
|
25670
25670
|
| int
|
|
25671
25671
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25672
25672
|
| `{${string}}`;
|
|
25673
|
+
|
|
25674
|
+
/**
|
|
25675
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
25676
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
25677
|
+
* a shape is selected.
|
|
25678
|
+
*
|
|
25679
|
+
* @since 1.145
|
|
25680
|
+
*/
|
|
25681
|
+
hoverFillColor?:
|
|
25682
|
+
| sap.gantt.ValueSVGPaintServer
|
|
25683
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25684
|
+
| `{${string}}`;
|
|
25685
|
+
|
|
25686
|
+
/**
|
|
25687
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
25688
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
25689
|
+
* a shape is selected.
|
|
25690
|
+
*
|
|
25691
|
+
* @since 1.145
|
|
25692
|
+
*/
|
|
25693
|
+
hoverStrokeColor?:
|
|
25694
|
+
| sap.gantt.ValueSVGPaintServer
|
|
25695
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25696
|
+
| `{${string}}`;
|
|
25697
|
+
|
|
25698
|
+
/**
|
|
25699
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
25700
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
25701
|
+
* a shape is selected.
|
|
25702
|
+
*
|
|
25703
|
+
* @since 1.145
|
|
25704
|
+
*/
|
|
25705
|
+
hoverStrokeWidth?:
|
|
25706
|
+
| float
|
|
25707
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25708
|
+
| `{${string}}`;
|
|
25673
25709
|
}
|
|
25674
25710
|
|
|
25675
25711
|
/**
|
|
@@ -27108,6 +27144,18 @@ declare namespace sap {
|
|
|
27108
27144
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27109
27145
|
| `{${string}}`;
|
|
27110
27146
|
|
|
27147
|
+
/**
|
|
27148
|
+
* Flag to use the shape fill for the ghost shape when dragging. When the flag is enabled, the ghost shape
|
|
27149
|
+
* has the same fill color as the original shape. The property takes effect only when `shapeStyles` does
|
|
27150
|
+
* not have a fill explicitly set.
|
|
27151
|
+
*
|
|
27152
|
+
* @since 1.146
|
|
27153
|
+
*/
|
|
27154
|
+
useShapeFillForGhost?:
|
|
27155
|
+
| boolean
|
|
27156
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27157
|
+
| `{${string}}`;
|
|
27158
|
+
|
|
27111
27159
|
/**
|
|
27112
27160
|
* Table of the Gantt Chart
|
|
27113
27161
|
*
|
|
@@ -32487,6 +32535,44 @@ declare namespace sap {
|
|
|
32487
32535
|
* @returns Value of property `hoverable`
|
|
32488
32536
|
*/
|
|
32489
32537
|
getHoverable(): boolean;
|
|
32538
|
+
/**
|
|
32539
|
+
* Gets current value of property {@link #getHoverFillColor hoverFillColor}.
|
|
32540
|
+
*
|
|
32541
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
32542
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
32543
|
+
* a shape is selected.
|
|
32544
|
+
*
|
|
32545
|
+
* @since 1.145
|
|
32546
|
+
*
|
|
32547
|
+
* @returns Value of property `hoverFillColor`
|
|
32548
|
+
*/
|
|
32549
|
+
getHoverFillColor(): sap.gantt.ValueSVGPaintServer;
|
|
32550
|
+
/**
|
|
32551
|
+
* Gets current value of property {@link #getHoverStrokeColor hoverStrokeColor}.
|
|
32552
|
+
*
|
|
32553
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
32554
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
32555
|
+
* a shape is selected.
|
|
32556
|
+
*
|
|
32557
|
+
* @since 1.145
|
|
32558
|
+
*
|
|
32559
|
+
* @returns Value of property `hoverStrokeColor`
|
|
32560
|
+
*/
|
|
32561
|
+
getHoverStrokeColor(): sap.gantt.ValueSVGPaintServer;
|
|
32562
|
+
/**
|
|
32563
|
+
* Gets current value of property {@link #getHoverStrokeWidth hoverStrokeWidth}.
|
|
32564
|
+
*
|
|
32565
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
32566
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
32567
|
+
* a shape is selected.
|
|
32568
|
+
*
|
|
32569
|
+
* Default value is `0`.
|
|
32570
|
+
*
|
|
32571
|
+
* @since 1.145
|
|
32572
|
+
*
|
|
32573
|
+
* @returns Value of property `hoverStrokeWidth`
|
|
32574
|
+
*/
|
|
32575
|
+
getHoverStrokeWidth(): float;
|
|
32490
32576
|
/**
|
|
32491
32577
|
* Gets current value of property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
32492
32578
|
*
|
|
@@ -33197,6 +33283,65 @@ declare namespace sap {
|
|
|
33197
33283
|
*/
|
|
33198
33284
|
bHoverable?: boolean
|
|
33199
33285
|
): this;
|
|
33286
|
+
/**
|
|
33287
|
+
* Sets a new value for property {@link #getHoverFillColor hoverFillColor}.
|
|
33288
|
+
*
|
|
33289
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
33290
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
33291
|
+
* a shape is selected.
|
|
33292
|
+
*
|
|
33293
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33294
|
+
*
|
|
33295
|
+
* @since 1.145
|
|
33296
|
+
*
|
|
33297
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33298
|
+
*/
|
|
33299
|
+
setHoverFillColor(
|
|
33300
|
+
/**
|
|
33301
|
+
* New value for property `hoverFillColor`
|
|
33302
|
+
*/
|
|
33303
|
+
sHoverFillColor: sap.gantt.ValueSVGPaintServer
|
|
33304
|
+
): this;
|
|
33305
|
+
/**
|
|
33306
|
+
* Sets a new value for property {@link #getHoverStrokeColor hoverStrokeColor}.
|
|
33307
|
+
*
|
|
33308
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
33309
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
33310
|
+
* a shape is selected.
|
|
33311
|
+
*
|
|
33312
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33313
|
+
*
|
|
33314
|
+
* @since 1.145
|
|
33315
|
+
*
|
|
33316
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33317
|
+
*/
|
|
33318
|
+
setHoverStrokeColor(
|
|
33319
|
+
/**
|
|
33320
|
+
* New value for property `hoverStrokeColor`
|
|
33321
|
+
*/
|
|
33322
|
+
sHoverStrokeColor: sap.gantt.ValueSVGPaintServer
|
|
33323
|
+
): this;
|
|
33324
|
+
/**
|
|
33325
|
+
* Sets a new value for property {@link #getHoverStrokeWidth hoverStrokeWidth}.
|
|
33326
|
+
*
|
|
33327
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
33328
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
33329
|
+
* a shape is selected.
|
|
33330
|
+
*
|
|
33331
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33332
|
+
*
|
|
33333
|
+
* Default value is `0`.
|
|
33334
|
+
*
|
|
33335
|
+
* @since 1.145
|
|
33336
|
+
*
|
|
33337
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33338
|
+
*/
|
|
33339
|
+
setHoverStrokeWidth(
|
|
33340
|
+
/**
|
|
33341
|
+
* New value for property `hoverStrokeWidth`
|
|
33342
|
+
*/
|
|
33343
|
+
fHoverStrokeWidth?: float
|
|
33344
|
+
): this;
|
|
33200
33345
|
/**
|
|
33201
33346
|
* Sets a new value for property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
33202
33347
|
*
|
|
@@ -41052,6 +41197,20 @@ declare namespace sap {
|
|
|
41052
41197
|
* @returns Value of property `useParentShapeOnExpand`
|
|
41053
41198
|
*/
|
|
41054
41199
|
getUseParentShapeOnExpand(): boolean;
|
|
41200
|
+
/**
|
|
41201
|
+
* Gets current value of property {@link #getUseShapeFillForGhost useShapeFillForGhost}.
|
|
41202
|
+
*
|
|
41203
|
+
* Flag to use the shape fill for the ghost shape when dragging. When the flag is enabled, the ghost shape
|
|
41204
|
+
* has the same fill color as the original shape. The property takes effect only when `shapeStyles` does
|
|
41205
|
+
* not have a fill explicitly set.
|
|
41206
|
+
*
|
|
41207
|
+
* Default value is `false`.
|
|
41208
|
+
*
|
|
41209
|
+
* @since 1.146
|
|
41210
|
+
*
|
|
41211
|
+
* @returns Value of property `useShapeFillForGhost`
|
|
41212
|
+
*/
|
|
41213
|
+
getUseShapeFillForGhost(): boolean;
|
|
41055
41214
|
/**
|
|
41056
41215
|
* Gets current value of property {@link #getWidth width}.
|
|
41057
41216
|
*
|
|
@@ -42676,6 +42835,27 @@ declare namespace sap {
|
|
|
42676
42835
|
*/
|
|
42677
42836
|
bUseParentShapeOnExpand?: boolean
|
|
42678
42837
|
): this;
|
|
42838
|
+
/**
|
|
42839
|
+
* Sets a new value for property {@link #getUseShapeFillForGhost useShapeFillForGhost}.
|
|
42840
|
+
*
|
|
42841
|
+
* Flag to use the shape fill for the ghost shape when dragging. When the flag is enabled, the ghost shape
|
|
42842
|
+
* has the same fill color as the original shape. The property takes effect only when `shapeStyles` does
|
|
42843
|
+
* not have a fill explicitly set.
|
|
42844
|
+
*
|
|
42845
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
42846
|
+
*
|
|
42847
|
+
* Default value is `false`.
|
|
42848
|
+
*
|
|
42849
|
+
* @since 1.146
|
|
42850
|
+
*
|
|
42851
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
42852
|
+
*/
|
|
42853
|
+
setUseShapeFillForGhost(
|
|
42854
|
+
/**
|
|
42855
|
+
* New value for property `useShapeFillForGhost`
|
|
42856
|
+
*/
|
|
42857
|
+
bUseShapeFillForGhost?: boolean
|
|
42858
|
+
): this;
|
|
42679
42859
|
/**
|
|
42680
42860
|
* Sets a new value for property {@link #getWidth width}.
|
|
42681
42861
|
*
|
package/types/sap.insights.d.ts
CHANGED