@sapui5/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 +167 -102
- package/types/sap.f.d.ts +73 -526
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +342 -21
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +188 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1022 -207
- 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 +172 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +350 -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 +31 -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 +404 -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 +73 -2
- package/types/sap.ui.core.d.ts +1181 -478
- 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 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +379 -51
- 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 +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +74 -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 +376 -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 +198 -136
- 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
|
@@ -48,7 +48,7 @@ declare module "sap/fe/templates/ListReport/ListReportControllerOverrides" {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
// For Library Version: 1.
|
|
51
|
+
// For Library Version: 1.146.0
|
|
52
52
|
|
|
53
53
|
declare module "sap/fe/templates/library" {}
|
|
54
54
|
|
|
@@ -303,6 +303,17 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
303
303
|
* Hides the message strip below the anchor bar.
|
|
304
304
|
*/
|
|
305
305
|
hideMessage(): void;
|
|
306
|
+
/**
|
|
307
|
+
* Navigate to a specific section or subsection within the current page.
|
|
308
|
+
* Works with Object Page layouts and other section-based layouts.
|
|
309
|
+
*/
|
|
310
|
+
navigateToSubSection(
|
|
311
|
+
/**
|
|
312
|
+
* The ID of the target section or subsection (without a view prefix, for example, "fe::FacetSection::TravelData"
|
|
313
|
+
* or "fe::SubSection::Details")
|
|
314
|
+
*/
|
|
315
|
+
sectionOrSubSectionId: string
|
|
316
|
+
): void;
|
|
306
317
|
/**
|
|
307
318
|
* Refreshes either the whole object page or only parts of it.
|
|
308
319
|
*
|
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 module "sap/fe/test/library" {}
|
|
4
4
|
|
|
@@ -301,6 +301,19 @@ declare module "sap/fe/test/api/DialogAssertions" {
|
|
|
301
301
|
*/
|
|
302
302
|
mButtonState?: object
|
|
303
303
|
): object;
|
|
304
|
+
/**
|
|
305
|
+
* Checks a Contact popup dialog.
|
|
306
|
+
*
|
|
307
|
+
*
|
|
308
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
309
|
+
*/
|
|
310
|
+
iCheckContactDialog(
|
|
311
|
+
/**
|
|
312
|
+
* The expected state of dialog elements Example: { controlType: "sap.m.Title", text: "Domestic HK Customer
|
|
313
|
+
* 1" }
|
|
314
|
+
*/
|
|
315
|
+
mState?: object
|
|
316
|
+
): object;
|
|
304
317
|
/**
|
|
305
318
|
* Checks the content and state of a field in a dialog.
|
|
306
319
|
*
|
|
@@ -1389,6 +1402,18 @@ declare module "sap/fe/test/api/FormActions" {
|
|
|
1389
1402
|
*/
|
|
1390
1403
|
vFieldIdentifier: FieldIdentifier
|
|
1391
1404
|
): object;
|
|
1405
|
+
/**
|
|
1406
|
+
* Clicks a link for a contact-field within a form.
|
|
1407
|
+
*
|
|
1408
|
+
*
|
|
1409
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1410
|
+
*/
|
|
1411
|
+
iClickContactLink(
|
|
1412
|
+
/**
|
|
1413
|
+
* The content of the link to be clicked
|
|
1414
|
+
*/
|
|
1415
|
+
linkContent: string
|
|
1416
|
+
): object;
|
|
1392
1417
|
/**
|
|
1393
1418
|
* Clicks a link within a form.
|
|
1394
1419
|
*
|
|
@@ -1590,6 +1615,19 @@ declare module "sap/fe/test/api/HeaderActions" {
|
|
|
1590
1615
|
*/
|
|
1591
1616
|
protected constructor();
|
|
1592
1617
|
|
|
1618
|
+
/**
|
|
1619
|
+
* Clicks a link within the object page header.
|
|
1620
|
+
*
|
|
1621
|
+
*
|
|
1622
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1623
|
+
*/
|
|
1624
|
+
iClickLink(
|
|
1625
|
+
/**
|
|
1626
|
+
* The content of the link to be clicked. It currently has to be the link text itself, not the label of
|
|
1627
|
+
* the field.
|
|
1628
|
+
*/
|
|
1629
|
+
vLinkIdentifier: string
|
|
1630
|
+
): object;
|
|
1593
1631
|
/**
|
|
1594
1632
|
* Executes an action in the header toolbar of an object page.
|
|
1595
1633
|
*
|
|
@@ -1802,6 +1840,22 @@ declare module "sap/fe/test/api/HeaderAssertions" {
|
|
|
1802
1840
|
*/
|
|
1803
1841
|
vAction: object | string
|
|
1804
1842
|
): object;
|
|
1843
|
+
/**
|
|
1844
|
+
* Checks a MicroChart shown in the header of an object page.
|
|
1845
|
+
*
|
|
1846
|
+
*
|
|
1847
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1848
|
+
*/
|
|
1849
|
+
iCheckMicroChart(
|
|
1850
|
+
/**
|
|
1851
|
+
* Id/Type or Title of MicroChart
|
|
1852
|
+
*/
|
|
1853
|
+
vMicroChartIdentifier: object | string,
|
|
1854
|
+
/**
|
|
1855
|
+
* UoM label of the MicroChart
|
|
1856
|
+
*/
|
|
1857
|
+
sUoMLabel: string
|
|
1858
|
+
): object;
|
|
1805
1859
|
/**
|
|
1806
1860
|
* Checks the paginator down button.
|
|
1807
1861
|
*
|
|
@@ -1826,6 +1880,42 @@ declare module "sap/fe/test/api/HeaderAssertions" {
|
|
|
1826
1880
|
*/
|
|
1827
1881
|
mState: object
|
|
1828
1882
|
): object;
|
|
1883
|
+
/**
|
|
1884
|
+
* Checks a progress indicator data point in the object page header.
|
|
1885
|
+
*
|
|
1886
|
+
*
|
|
1887
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1888
|
+
*/
|
|
1889
|
+
iCheckProgressIndicator(
|
|
1890
|
+
/**
|
|
1891
|
+
* The title of the progress indicator
|
|
1892
|
+
*/
|
|
1893
|
+
Title: string,
|
|
1894
|
+
/**
|
|
1895
|
+
* The expected value of the progress indicator
|
|
1896
|
+
*/
|
|
1897
|
+
PercentValue: number
|
|
1898
|
+
): object;
|
|
1899
|
+
/**
|
|
1900
|
+
* Checks a rating indicator data point in the object page header.
|
|
1901
|
+
*
|
|
1902
|
+
*
|
|
1903
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
1904
|
+
*/
|
|
1905
|
+
iCheckRatingIndicator(
|
|
1906
|
+
/**
|
|
1907
|
+
* The title of the rating indicator
|
|
1908
|
+
*/
|
|
1909
|
+
Title: string,
|
|
1910
|
+
/**
|
|
1911
|
+
* The expected value of the rating indicator
|
|
1912
|
+
*/
|
|
1913
|
+
Value: number,
|
|
1914
|
+
/**
|
|
1915
|
+
* The expected maximum value of the rating indicator
|
|
1916
|
+
*/
|
|
1917
|
+
MaxValue: number
|
|
1918
|
+
): object;
|
|
1829
1919
|
/**
|
|
1830
1920
|
* Checks the `Related Apps` action in the header toolbar.
|
|
1831
1921
|
*
|
|
@@ -3795,6 +3885,65 @@ declare module "sap/fe/test/ObjectPage" {
|
|
|
3795
3885
|
* ObjectPage assertions
|
|
3796
3886
|
*/
|
|
3797
3887
|
interface assertions extends assertions1 {
|
|
3888
|
+
/**
|
|
3889
|
+
* Checks the expected number of sections in an object page.
|
|
3890
|
+
*
|
|
3891
|
+
*
|
|
3892
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
3893
|
+
*/
|
|
3894
|
+
iCheckNumberOfSections(
|
|
3895
|
+
/**
|
|
3896
|
+
* The number of expected sections within the object page.
|
|
3897
|
+
*/
|
|
3898
|
+
ExpectedNumberOfSections: number
|
|
3899
|
+
): object;
|
|
3900
|
+
/**
|
|
3901
|
+
* Checks a section. It is checked if a section is already loaded and therefore the data is visible to the
|
|
3902
|
+
* user. This function does not check properties of the anchor bar buttons for section selection.
|
|
3903
|
+
*
|
|
3904
|
+
*
|
|
3905
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
3906
|
+
*/
|
|
3907
|
+
iCheckSection(
|
|
3908
|
+
/**
|
|
3909
|
+
* The identifier of the section. This can either be a string containing the label of the section or an
|
|
3910
|
+
* object having the pattern
|
|
3911
|
+
* ```javascript
|
|
3912
|
+
*
|
|
3913
|
+
* {
|
|
3914
|
+
* section:
|
|
3915
|
+
* }
|
|
3916
|
+
* ```
|
|
3917
|
+
*/
|
|
3918
|
+
SectionIdentifier: string | SectionIdentifier,
|
|
3919
|
+
/**
|
|
3920
|
+
* Defines the expected state of the section, e.g. its visibility
|
|
3921
|
+
*/
|
|
3922
|
+
mState: object
|
|
3923
|
+
): object;
|
|
3924
|
+
/**
|
|
3925
|
+
* Checks a sub-section.
|
|
3926
|
+
*
|
|
3927
|
+
*
|
|
3928
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
3929
|
+
*/
|
|
3930
|
+
iCheckSubSection(
|
|
3931
|
+
/**
|
|
3932
|
+
* The identifier of the sub-section to be checked for visibility. This can either be a string containing
|
|
3933
|
+
* the label of the sub-section or an object having the pattern
|
|
3934
|
+
* ```javascript
|
|
3935
|
+
*
|
|
3936
|
+
* {
|
|
3937
|
+
* section:
|
|
3938
|
+
* }
|
|
3939
|
+
* ```
|
|
3940
|
+
*/
|
|
3941
|
+
SubSectionIdentifier: string | SectionIdentifier,
|
|
3942
|
+
/**
|
|
3943
|
+
* Defines the expected state of the sub-section, e.g. its visibility
|
|
3944
|
+
*/
|
|
3945
|
+
mState: object
|
|
3946
|
+
): object;
|
|
3798
3947
|
/**
|
|
3799
3948
|
* Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
|
|
3800
3949
|
*
|
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 module "sap/gantt/library" {
|
|
4
4
|
import ChartScheme from "sap/gantt/config/ChartScheme";
|
|
@@ -35568,6 +35568,44 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
35568
35568
|
* @returns Value of property `hoverable`
|
|
35569
35569
|
*/
|
|
35570
35570
|
getHoverable(): boolean;
|
|
35571
|
+
/**
|
|
35572
|
+
* Gets current value of property {@link #getHoverFillColor hoverFillColor}.
|
|
35573
|
+
*
|
|
35574
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
35575
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
35576
|
+
* a shape is selected.
|
|
35577
|
+
*
|
|
35578
|
+
* @since 1.145
|
|
35579
|
+
*
|
|
35580
|
+
* @returns Value of property `hoverFillColor`
|
|
35581
|
+
*/
|
|
35582
|
+
getHoverFillColor(): ValueSVGPaintServer;
|
|
35583
|
+
/**
|
|
35584
|
+
* Gets current value of property {@link #getHoverStrokeColor hoverStrokeColor}.
|
|
35585
|
+
*
|
|
35586
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
35587
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
35588
|
+
* a shape is selected.
|
|
35589
|
+
*
|
|
35590
|
+
* @since 1.145
|
|
35591
|
+
*
|
|
35592
|
+
* @returns Value of property `hoverStrokeColor`
|
|
35593
|
+
*/
|
|
35594
|
+
getHoverStrokeColor(): ValueSVGPaintServer;
|
|
35595
|
+
/**
|
|
35596
|
+
* Gets current value of property {@link #getHoverStrokeWidth hoverStrokeWidth}.
|
|
35597
|
+
*
|
|
35598
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
35599
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
35600
|
+
* a shape is selected.
|
|
35601
|
+
*
|
|
35602
|
+
* Default value is `0`.
|
|
35603
|
+
*
|
|
35604
|
+
* @since 1.145
|
|
35605
|
+
*
|
|
35606
|
+
* @returns Value of property `hoverStrokeWidth`
|
|
35607
|
+
*/
|
|
35608
|
+
getHoverStrokeWidth(): float;
|
|
35571
35609
|
/**
|
|
35572
35610
|
* Gets current value of property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
35573
35611
|
*
|
|
@@ -36282,6 +36320,65 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
36282
36320
|
*/
|
|
36283
36321
|
bHoverable?: boolean
|
|
36284
36322
|
): this;
|
|
36323
|
+
/**
|
|
36324
|
+
* Sets a new value for property {@link #getHoverFillColor hoverFillColor}.
|
|
36325
|
+
*
|
|
36326
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
36327
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
36328
|
+
* a shape is selected.
|
|
36329
|
+
*
|
|
36330
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
36331
|
+
*
|
|
36332
|
+
* @since 1.145
|
|
36333
|
+
*
|
|
36334
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
36335
|
+
*/
|
|
36336
|
+
setHoverFillColor(
|
|
36337
|
+
/**
|
|
36338
|
+
* New value for property `hoverFillColor`
|
|
36339
|
+
*/
|
|
36340
|
+
sHoverFillColor: ValueSVGPaintServer
|
|
36341
|
+
): this;
|
|
36342
|
+
/**
|
|
36343
|
+
* Sets a new value for property {@link #getHoverStrokeColor hoverStrokeColor}.
|
|
36344
|
+
*
|
|
36345
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
36346
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
36347
|
+
* a shape is selected.
|
|
36348
|
+
*
|
|
36349
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
36350
|
+
*
|
|
36351
|
+
* @since 1.145
|
|
36352
|
+
*
|
|
36353
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
36354
|
+
*/
|
|
36355
|
+
setHoverStrokeColor(
|
|
36356
|
+
/**
|
|
36357
|
+
* New value for property `hoverStrokeColor`
|
|
36358
|
+
*/
|
|
36359
|
+
sHoverStrokeColor: ValueSVGPaintServer
|
|
36360
|
+
): this;
|
|
36361
|
+
/**
|
|
36362
|
+
* Sets a new value for property {@link #getHoverStrokeWidth hoverStrokeWidth}.
|
|
36363
|
+
*
|
|
36364
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
36365
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
36366
|
+
* a shape is selected.
|
|
36367
|
+
*
|
|
36368
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
36369
|
+
*
|
|
36370
|
+
* Default value is `0`.
|
|
36371
|
+
*
|
|
36372
|
+
* @since 1.145
|
|
36373
|
+
*
|
|
36374
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
36375
|
+
*/
|
|
36376
|
+
setHoverStrokeWidth(
|
|
36377
|
+
/**
|
|
36378
|
+
* New value for property `hoverStrokeWidth`
|
|
36379
|
+
*/
|
|
36380
|
+
fHoverStrokeWidth?: float
|
|
36381
|
+
): this;
|
|
36285
36382
|
/**
|
|
36286
36383
|
* Sets a new value for property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
36287
36384
|
*
|
|
@@ -37147,6 +37244,36 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
37147
37244
|
* @since 1.131
|
|
37148
37245
|
*/
|
|
37149
37246
|
rightAnchorPosition?: int | PropertyBindingInfo | `{${string}}`;
|
|
37247
|
+
|
|
37248
|
+
/**
|
|
37249
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
37250
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
37251
|
+
* a shape is selected.
|
|
37252
|
+
*
|
|
37253
|
+
* @since 1.145
|
|
37254
|
+
*/
|
|
37255
|
+
hoverFillColor?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
37256
|
+
|
|
37257
|
+
/**
|
|
37258
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
37259
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
37260
|
+
* a shape is selected.
|
|
37261
|
+
*
|
|
37262
|
+
* @since 1.145
|
|
37263
|
+
*/
|
|
37264
|
+
hoverStrokeColor?:
|
|
37265
|
+
| ValueSVGPaintServer
|
|
37266
|
+
| PropertyBindingInfo
|
|
37267
|
+
| `{${string}}`;
|
|
37268
|
+
|
|
37269
|
+
/**
|
|
37270
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
37271
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
37272
|
+
* a shape is selected.
|
|
37273
|
+
*
|
|
37274
|
+
* @since 1.145
|
|
37275
|
+
*/
|
|
37276
|
+
hoverStrokeWidth?: float | PropertyBindingInfo | `{${string}}`;
|
|
37150
37277
|
}
|
|
37151
37278
|
}
|
|
37152
37279
|
|
|
@@ -45672,6 +45799,20 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45672
45799
|
* @returns Value of property `useParentShapeOnExpand`
|
|
45673
45800
|
*/
|
|
45674
45801
|
getUseParentShapeOnExpand(): boolean;
|
|
45802
|
+
/**
|
|
45803
|
+
* Gets current value of property {@link #getUseShapeFillForGhost useShapeFillForGhost}.
|
|
45804
|
+
*
|
|
45805
|
+
* Flag to use the shape fill for the ghost shape when dragging. When the flag is enabled, the ghost shape
|
|
45806
|
+
* has the same fill color as the original shape. The property takes effect only when `shapeStyles` does
|
|
45807
|
+
* not have a fill explicitly set.
|
|
45808
|
+
*
|
|
45809
|
+
* Default value is `false`.
|
|
45810
|
+
*
|
|
45811
|
+
* @since 1.146
|
|
45812
|
+
*
|
|
45813
|
+
* @returns Value of property `useShapeFillForGhost`
|
|
45814
|
+
*/
|
|
45815
|
+
getUseShapeFillForGhost(): boolean;
|
|
45675
45816
|
/**
|
|
45676
45817
|
* Gets current value of property {@link #getWidth width}.
|
|
45677
45818
|
*
|
|
@@ -47297,6 +47438,27 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
47297
47438
|
*/
|
|
47298
47439
|
bUseParentShapeOnExpand?: boolean
|
|
47299
47440
|
): this;
|
|
47441
|
+
/**
|
|
47442
|
+
* Sets a new value for property {@link #getUseShapeFillForGhost useShapeFillForGhost}.
|
|
47443
|
+
*
|
|
47444
|
+
* Flag to use the shape fill for the ghost shape when dragging. When the flag is enabled, the ghost shape
|
|
47445
|
+
* has the same fill color as the original shape. The property takes effect only when `shapeStyles` does
|
|
47446
|
+
* not have a fill explicitly set.
|
|
47447
|
+
*
|
|
47448
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
47449
|
+
*
|
|
47450
|
+
* Default value is `false`.
|
|
47451
|
+
*
|
|
47452
|
+
* @since 1.146
|
|
47453
|
+
*
|
|
47454
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
47455
|
+
*/
|
|
47456
|
+
setUseShapeFillForGhost(
|
|
47457
|
+
/**
|
|
47458
|
+
* New value for property `useShapeFillForGhost`
|
|
47459
|
+
*/
|
|
47460
|
+
bUseShapeFillForGhost?: boolean
|
|
47461
|
+
): this;
|
|
47300
47462
|
/**
|
|
47301
47463
|
* Sets a new value for property {@link #getWidth width}.
|
|
47302
47464
|
*
|
|
@@ -47920,6 +48082,15 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
47920
48082
|
*/
|
|
47921
48083
|
optimiseRelationships?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
47922
48084
|
|
|
48085
|
+
/**
|
|
48086
|
+
* Flag to use the shape fill for the ghost shape when dragging. When the flag is enabled, the ghost shape
|
|
48087
|
+
* has the same fill color as the original shape. The property takes effect only when `shapeStyles` does
|
|
48088
|
+
* not have a fill explicitly set.
|
|
48089
|
+
*
|
|
48090
|
+
* @since 1.146
|
|
48091
|
+
*/
|
|
48092
|
+
useShapeFillForGhost?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
48093
|
+
|
|
47923
48094
|
/**
|
|
47924
48095
|
* Table of the Gantt Chart
|
|
47925
48096
|
*
|
package/types/sap.insights.d.ts
CHANGED