@sapui5/ts-types 1.144.0 → 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 +112 -82
- package/types/sap.f.d.ts +1 -1
- 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 +913 -289
- 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 +134 -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 +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 +234 -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 +76 -2
- package/types/sap.ui.core.d.ts +140 -97
- 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 +356 -49
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +42 -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 +175 -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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.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.145.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.145.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
|
/**
|
|
@@ -32487,6 +32523,44 @@ declare namespace sap {
|
|
|
32487
32523
|
* @returns Value of property `hoverable`
|
|
32488
32524
|
*/
|
|
32489
32525
|
getHoverable(): boolean;
|
|
32526
|
+
/**
|
|
32527
|
+
* Gets current value of property {@link #getHoverFillColor hoverFillColor}.
|
|
32528
|
+
*
|
|
32529
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
32530
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
32531
|
+
* a shape is selected.
|
|
32532
|
+
*
|
|
32533
|
+
* @since 1.145
|
|
32534
|
+
*
|
|
32535
|
+
* @returns Value of property `hoverFillColor`
|
|
32536
|
+
*/
|
|
32537
|
+
getHoverFillColor(): sap.gantt.ValueSVGPaintServer;
|
|
32538
|
+
/**
|
|
32539
|
+
* Gets current value of property {@link #getHoverStrokeColor hoverStrokeColor}.
|
|
32540
|
+
*
|
|
32541
|
+
* The hoverStrokeColor property lets you define the stroke 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 `hoverStrokeColor`
|
|
32548
|
+
*/
|
|
32549
|
+
getHoverStrokeColor(): sap.gantt.ValueSVGPaintServer;
|
|
32550
|
+
/**
|
|
32551
|
+
* Gets current value of property {@link #getHoverStrokeWidth hoverStrokeWidth}.
|
|
32552
|
+
*
|
|
32553
|
+
* The hoverStrokeWidth property lets you define the stroke-width 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
|
+
* Default value is `0`.
|
|
32558
|
+
*
|
|
32559
|
+
* @since 1.145
|
|
32560
|
+
*
|
|
32561
|
+
* @returns Value of property `hoverStrokeWidth`
|
|
32562
|
+
*/
|
|
32563
|
+
getHoverStrokeWidth(): float;
|
|
32490
32564
|
/**
|
|
32491
32565
|
* Gets current value of property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
32492
32566
|
*
|
|
@@ -33197,6 +33271,65 @@ declare namespace sap {
|
|
|
33197
33271
|
*/
|
|
33198
33272
|
bHoverable?: boolean
|
|
33199
33273
|
): this;
|
|
33274
|
+
/**
|
|
33275
|
+
* Sets a new value for property {@link #getHoverFillColor hoverFillColor}.
|
|
33276
|
+
*
|
|
33277
|
+
* The hoverFillColor property lets you define the fill color for shapes upon hovering. These properties
|
|
33278
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
33279
|
+
* a shape is selected.
|
|
33280
|
+
*
|
|
33281
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33282
|
+
*
|
|
33283
|
+
* @since 1.145
|
|
33284
|
+
*
|
|
33285
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33286
|
+
*/
|
|
33287
|
+
setHoverFillColor(
|
|
33288
|
+
/**
|
|
33289
|
+
* New value for property `hoverFillColor`
|
|
33290
|
+
*/
|
|
33291
|
+
sHoverFillColor: sap.gantt.ValueSVGPaintServer
|
|
33292
|
+
): this;
|
|
33293
|
+
/**
|
|
33294
|
+
* Sets a new value for property {@link #getHoverStrokeColor hoverStrokeColor}.
|
|
33295
|
+
*
|
|
33296
|
+
* The hoverStrokeColor property lets you define the stroke color for shapes upon hovering. These properties
|
|
33297
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
33298
|
+
* a shape is selected.
|
|
33299
|
+
*
|
|
33300
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33301
|
+
*
|
|
33302
|
+
* @since 1.145
|
|
33303
|
+
*
|
|
33304
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33305
|
+
*/
|
|
33306
|
+
setHoverStrokeColor(
|
|
33307
|
+
/**
|
|
33308
|
+
* New value for property `hoverStrokeColor`
|
|
33309
|
+
*/
|
|
33310
|
+
sHoverStrokeColor: sap.gantt.ValueSVGPaintServer
|
|
33311
|
+
): this;
|
|
33312
|
+
/**
|
|
33313
|
+
* Sets a new value for property {@link #getHoverStrokeWidth hoverStrokeWidth}.
|
|
33314
|
+
*
|
|
33315
|
+
* The hoverStrokeWidth property lets you define the stroke-width for shapes upon hovering. These properties
|
|
33316
|
+
* do not apply to adhoc lines, delta lines, calendars, charts and images. These settings are ignored if
|
|
33317
|
+
* a shape is selected.
|
|
33318
|
+
*
|
|
33319
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33320
|
+
*
|
|
33321
|
+
* Default value is `0`.
|
|
33322
|
+
*
|
|
33323
|
+
* @since 1.145
|
|
33324
|
+
*
|
|
33325
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33326
|
+
*/
|
|
33327
|
+
setHoverStrokeWidth(
|
|
33328
|
+
/**
|
|
33329
|
+
* New value for property `hoverStrokeWidth`
|
|
33330
|
+
*/
|
|
33331
|
+
fHoverStrokeWidth?: float
|
|
33332
|
+
): this;
|
|
33200
33333
|
/**
|
|
33201
33334
|
* Sets a new value for property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
33202
33335
|
*
|
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/m/p13n/Engine" {
|
|
4
4
|
/**
|
|
@@ -253,6 +253,20 @@ declare namespace sap {
|
|
|
253
253
|
* @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
|
|
254
254
|
*/
|
|
255
255
|
getVerticalScrolling?(): boolean;
|
|
256
|
+
/**
|
|
257
|
+
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
|
|
258
|
+
* the popup is closed
|
|
259
|
+
*
|
|
260
|
+
* @since 1.145
|
|
261
|
+
*
|
|
262
|
+
* @returns A Promise that is fullfilled if the panel is ready to be closed
|
|
263
|
+
*/
|
|
264
|
+
onBeforeClose?(
|
|
265
|
+
/**
|
|
266
|
+
* reason for closing the container
|
|
267
|
+
*/
|
|
268
|
+
sReason: string
|
|
269
|
+
): Promise<any>;
|
|
256
270
|
/**
|
|
257
271
|
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
|
|
258
272
|
* reset on the panel
|
|
@@ -28220,7 +28234,6 @@ declare namespace sap {
|
|
|
28220
28234
|
* The last selected color in the ColorPalette.
|
|
28221
28235
|
*
|
|
28222
28236
|
* @since 1.122
|
|
28223
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
28224
28237
|
*/
|
|
28225
28238
|
selectedColor?:
|
|
28226
28239
|
| sap.ui.core.CSSColor
|
|
@@ -28267,7 +28280,6 @@ declare namespace sap {
|
|
|
28267
28280
|
* The last selected color in the ColorPalette.
|
|
28268
28281
|
*
|
|
28269
28282
|
* @since 1.122
|
|
28270
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
28271
28283
|
*/
|
|
28272
28284
|
selectedColor?:
|
|
28273
28285
|
| sap.ui.core.CSSColor
|
|
@@ -37946,7 +37958,7 @@ declare namespace sap {
|
|
|
37946
37958
|
/**
|
|
37947
37959
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
37948
37960
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
37949
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
37961
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
37950
37962
|
*/
|
|
37951
37963
|
customHeader?: sap.m.IBar;
|
|
37952
37964
|
|
|
@@ -42845,7 +42857,8 @@ declare namespace sap {
|
|
|
42845
42857
|
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
42846
42858
|
|
|
42847
42859
|
/**
|
|
42848
|
-
* Defines the list item icon.
|
|
42860
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
42861
|
+
* options, use the `avatar` aggregation.
|
|
42849
42862
|
*/
|
|
42850
42863
|
icon?:
|
|
42851
42864
|
| sap.ui.core.URI
|
|
@@ -60904,7 +60917,6 @@ declare namespace sap {
|
|
|
60904
60917
|
* The last selected color in the ColorPalette.
|
|
60905
60918
|
*
|
|
60906
60919
|
* @since 1.122
|
|
60907
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
60908
60920
|
*
|
|
60909
60921
|
* @returns Value of property `selectedColor`
|
|
60910
60922
|
*/
|
|
@@ -60948,7 +60960,6 @@ declare namespace sap {
|
|
|
60948
60960
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
60949
60961
|
*
|
|
60950
60962
|
* @since 1.122
|
|
60951
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
60952
60963
|
*
|
|
60953
60964
|
* @returns Reference to `this` in order to allow method chaining
|
|
60954
60965
|
*/
|
|
@@ -61234,7 +61245,6 @@ declare namespace sap {
|
|
|
61234
61245
|
* The last selected color in the ColorPalette.
|
|
61235
61246
|
*
|
|
61236
61247
|
* @since 1.122
|
|
61237
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
61238
61248
|
*
|
|
61239
61249
|
* @returns Value of property `selectedColor`
|
|
61240
61250
|
*/
|
|
@@ -61365,7 +61375,6 @@ declare namespace sap {
|
|
|
61365
61375
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
61366
61376
|
*
|
|
61367
61377
|
* @since 1.122
|
|
61368
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
61369
61378
|
*
|
|
61370
61379
|
* @returns Reference to `this` in order to allow method chaining
|
|
61371
61380
|
*/
|
|
@@ -114571,7 +114580,7 @@ declare namespace sap {
|
|
|
114571
114580
|
*
|
|
114572
114581
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
114573
114582
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
114574
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
114583
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
114575
114584
|
*/
|
|
114576
114585
|
getCustomHeader(): sap.m.IBar;
|
|
114577
114586
|
/**
|
|
@@ -142971,7 +142980,8 @@ declare namespace sap {
|
|
|
142971
142980
|
/**
|
|
142972
142981
|
* Gets current value of property {@link #getIcon icon}.
|
|
142973
142982
|
*
|
|
142974
|
-
* Defines the list item icon.
|
|
142983
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
142984
|
+
* options, use the `avatar` aggregation.
|
|
142975
142985
|
*
|
|
142976
142986
|
*
|
|
142977
142987
|
* @returns Value of property `icon`
|
|
@@ -143182,7 +143192,8 @@ declare namespace sap {
|
|
|
143182
143192
|
/**
|
|
143183
143193
|
* Sets a new value for property {@link #getIcon icon}.
|
|
143184
143194
|
*
|
|
143185
|
-
* Defines the list item icon.
|
|
143195
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
143196
|
+
* options, use the `avatar` aggregation.
|
|
143186
143197
|
*
|
|
143187
143198
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
143188
143199
|
*
|
|
@@ -169390,6 +169401,12 @@ declare namespace sap {
|
|
|
169390
169401
|
* @since 1.54
|
|
169391
169402
|
*/
|
|
169392
169403
|
enum TimePickerMaskMode {
|
|
169404
|
+
/**
|
|
169405
|
+
* The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
|
|
169406
|
+
* fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
|
|
169407
|
+
* may lead to unpredictable behavior.
|
|
169408
|
+
*/
|
|
169409
|
+
Enforce = "Enforce",
|
|
169393
169410
|
/**
|
|
169394
169411
|
* The mask is disabled for the `sap.m.TimePicker`.
|
|
169395
169412
|
*/
|
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -9,7 +9,12 @@ declare namespace sap {
|
|
|
9
9
|
/**
|
|
10
10
|
* Describes the settings that can be provided to the Component constructor.
|
|
11
11
|
*/
|
|
12
|
-
interface $ComponentSettings extends sap.fe.core.$AppComponentSettings {
|
|
12
|
+
interface $ComponentSettings extends sap.fe.core.$AppComponentSettings {
|
|
13
|
+
renderLeanView?:
|
|
14
|
+
| boolean
|
|
15
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16
|
+
| `{${string}}`;
|
|
17
|
+
}
|
|
13
18
|
|
|
14
19
|
/**
|
|
15
20
|
* This class contains all extension functions that can be implemented by the application developers in
|
|
@@ -107,6 +112,31 @@ declare namespace sap {
|
|
|
107
112
|
* @returns Metadata object describing this class
|
|
108
113
|
*/
|
|
109
114
|
static getMetadata(): sap.ui.core.ComponentMetadata;
|
|
115
|
+
/**
|
|
116
|
+
* Gets current value of property {@link #getRenderLeanView renderLeanView}.
|
|
117
|
+
*
|
|
118
|
+
* Default value is `true`.
|
|
119
|
+
*
|
|
120
|
+
*
|
|
121
|
+
* @returns Value of property `renderLeanView`
|
|
122
|
+
*/
|
|
123
|
+
getRenderLeanView(): boolean;
|
|
124
|
+
/**
|
|
125
|
+
* Sets a new value for property {@link #getRenderLeanView renderLeanView}.
|
|
126
|
+
*
|
|
127
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
128
|
+
*
|
|
129
|
+
* Default value is `true`.
|
|
130
|
+
*
|
|
131
|
+
*
|
|
132
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
133
|
+
*/
|
|
134
|
+
setRenderLeanView(
|
|
135
|
+
/**
|
|
136
|
+
* New value for property `renderLeanView`
|
|
137
|
+
*/
|
|
138
|
+
bRenderLeanView?: boolean
|
|
139
|
+
): this;
|
|
110
140
|
}
|
|
111
141
|
}
|
|
112
142
|
}
|
package/types/sap.rules.ui.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED