@sapui5/types 1.144.1 → 1.145.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 +110 -85
- package/types/sap.f.d.ts +1 -1
- 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 +853 -203
- 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 +128 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +29 -12
- 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 +230 -15
- 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 +19 -11
- 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 +140 -99
- 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 +5 -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 +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +378 -50
- package/types/sap.ui.richtexteditor.d.ts +29 -7
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +39 -1
- 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 +168 -1
- 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 +5 -1
- 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.145.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.145.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.145.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
|
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -3996,6 +3996,12 @@ declare module "sap/m/library" {
|
|
|
3996
3996
|
* @since 1.54
|
|
3997
3997
|
*/
|
|
3998
3998
|
export enum TimePickerMaskMode {
|
|
3999
|
+
/**
|
|
4000
|
+
* The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
|
|
4001
|
+
* fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
|
|
4002
|
+
* may lead to unpredictable behavior.
|
|
4003
|
+
*/
|
|
4004
|
+
Enforce = "Enforce",
|
|
3999
4005
|
/**
|
|
4000
4006
|
* The mask is disabled for the `sap.m.TimePicker`.
|
|
4001
4007
|
*/
|
|
@@ -4539,6 +4545,20 @@ declare module "sap/m/library" {
|
|
|
4539
4545
|
* @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
|
|
4540
4546
|
*/
|
|
4541
4547
|
getVerticalScrolling?(): boolean;
|
|
4548
|
+
/**
|
|
4549
|
+
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
|
|
4550
|
+
* the popup is closed
|
|
4551
|
+
*
|
|
4552
|
+
* @since 1.145
|
|
4553
|
+
*
|
|
4554
|
+
* @returns A Promise that is fullfilled if the panel is ready to be closed
|
|
4555
|
+
*/
|
|
4556
|
+
onBeforeClose?(
|
|
4557
|
+
/**
|
|
4558
|
+
* reason for closing the container
|
|
4559
|
+
*/
|
|
4560
|
+
sReason: string
|
|
4561
|
+
): Promise<any>;
|
|
4542
4562
|
/**
|
|
4543
4563
|
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
|
|
4544
4564
|
* reset on the panel
|
|
@@ -14767,7 +14787,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14767
14787
|
* The last selected color in the ColorPalette.
|
|
14768
14788
|
*
|
|
14769
14789
|
* @since 1.122
|
|
14770
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14771
14790
|
*
|
|
14772
14791
|
* @returns Value of property `selectedColor`
|
|
14773
14792
|
*/
|
|
@@ -14811,7 +14830,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14811
14830
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14812
14831
|
*
|
|
14813
14832
|
* @since 1.122
|
|
14814
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14815
14833
|
*
|
|
14816
14834
|
* @returns Reference to `this` in order to allow method chaining
|
|
14817
14835
|
*/
|
|
@@ -14835,7 +14853,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14835
14853
|
* The last selected color in the ColorPalette.
|
|
14836
14854
|
*
|
|
14837
14855
|
* @since 1.122
|
|
14838
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14839
14856
|
*/
|
|
14840
14857
|
selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
14841
14858
|
|
|
@@ -15223,7 +15240,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15223
15240
|
* The last selected color in the ColorPalette.
|
|
15224
15241
|
*
|
|
15225
15242
|
* @since 1.122
|
|
15226
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15227
15243
|
*
|
|
15228
15244
|
* @returns Value of property `selectedColor`
|
|
15229
15245
|
*/
|
|
@@ -15356,7 +15372,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15356
15372
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15357
15373
|
*
|
|
15358
15374
|
* @since 1.122
|
|
15359
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15360
15375
|
*
|
|
15361
15376
|
* @returns Reference to `this` in order to allow method chaining
|
|
15362
15377
|
*/
|
|
@@ -15442,7 +15457,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15442
15457
|
* The last selected color in the ColorPalette.
|
|
15443
15458
|
*
|
|
15444
15459
|
* @since 1.122
|
|
15445
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15446
15460
|
*/
|
|
15447
15461
|
selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
15448
15462
|
|
|
@@ -86235,7 +86249,7 @@ declare module "sap/m/Page" {
|
|
|
86235
86249
|
*
|
|
86236
86250
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
86237
86251
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
86238
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
86252
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
86239
86253
|
*/
|
|
86240
86254
|
getCustomHeader(): IBar;
|
|
86241
86255
|
/**
|
|
@@ -87062,7 +87076,7 @@ declare module "sap/m/Page" {
|
|
|
87062
87076
|
/**
|
|
87063
87077
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
87064
87078
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
87065
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
87079
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
87066
87080
|
*/
|
|
87067
87081
|
customHeader?: IBar;
|
|
87068
87082
|
|
|
@@ -135965,7 +135979,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
135965
135979
|
/**
|
|
135966
135980
|
* Gets current value of property {@link #getIcon icon}.
|
|
135967
135981
|
*
|
|
135968
|
-
* Defines the list item icon.
|
|
135982
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
135983
|
+
* options, use the `avatar` aggregation.
|
|
135969
135984
|
*
|
|
135970
135985
|
*
|
|
135971
135986
|
* @returns Value of property `icon`
|
|
@@ -136176,7 +136191,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
136176
136191
|
/**
|
|
136177
136192
|
* Sets a new value for property {@link #getIcon icon}.
|
|
136178
136193
|
*
|
|
136179
|
-
* Defines the list item icon.
|
|
136194
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136195
|
+
* options, use the `avatar` aggregation.
|
|
136180
136196
|
*
|
|
136181
136197
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
136182
136198
|
*
|
|
@@ -136411,7 +136427,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
136411
136427
|
description?: string | PropertyBindingInfo;
|
|
136412
136428
|
|
|
136413
136429
|
/**
|
|
136414
|
-
* Defines the list item icon.
|
|
136430
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136431
|
+
* options, use the `avatar` aggregation.
|
|
136415
136432
|
*/
|
|
136416
136433
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
136417
136434
|
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ovp/library" {}
|
|
4
4
|
|
|
@@ -10,6 +10,8 @@ declare module "sap/ovp/app/Component" {
|
|
|
10
10
|
|
|
11
11
|
import ComponentMetadata from "sap/ui/core/ComponentMetadata";
|
|
12
12
|
|
|
13
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
14
|
+
|
|
13
15
|
/**
|
|
14
16
|
* Overview Page Application Component
|
|
15
17
|
*/
|
|
@@ -62,11 +64,38 @@ declare module "sap/ovp/app/Component" {
|
|
|
62
64
|
* @returns Metadata object describing this class
|
|
63
65
|
*/
|
|
64
66
|
static getMetadata(): ComponentMetadata;
|
|
67
|
+
/**
|
|
68
|
+
* Gets current value of property {@link #getRenderLeanView renderLeanView}.
|
|
69
|
+
*
|
|
70
|
+
* Default value is `true`.
|
|
71
|
+
*
|
|
72
|
+
*
|
|
73
|
+
* @returns Value of property `renderLeanView`
|
|
74
|
+
*/
|
|
75
|
+
getRenderLeanView(): boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Sets a new value for property {@link #getRenderLeanView renderLeanView}.
|
|
78
|
+
*
|
|
79
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
80
|
+
*
|
|
81
|
+
* Default value is `true`.
|
|
82
|
+
*
|
|
83
|
+
*
|
|
84
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
85
|
+
*/
|
|
86
|
+
setRenderLeanView(
|
|
87
|
+
/**
|
|
88
|
+
* New value for property `renderLeanView`
|
|
89
|
+
*/
|
|
90
|
+
bRenderLeanView?: boolean
|
|
91
|
+
): this;
|
|
65
92
|
}
|
|
66
93
|
/**
|
|
67
94
|
* Describes the settings that can be provided to the Component constructor.
|
|
68
95
|
*/
|
|
69
|
-
export interface $ComponentSettings extends $AppComponentSettings {
|
|
96
|
+
export interface $ComponentSettings extends $AppComponentSettings {
|
|
97
|
+
renderLeanView?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
98
|
+
}
|
|
70
99
|
}
|
|
71
100
|
|
|
72
101
|
declare module "sap/ovp/app/TemplateBaseExtension" {
|
package/types/sap.rules.ui.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED