@sapui5/ts-types 1.141.2 → 1.142.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/index.d.ts +8 -7
- 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.cux.base.d.ts +3 -0
- package/types/sap.esh.search.ui.d.ts +152 -3
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +50 -32
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +2646 -125
- package/types/sap.fe.navigation.d.ts +2 -2
- 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 +23 -11
- package/types/sap.fe.test.d.ts +8 -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 +4 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.141.0-d.ts → sap.m.d.ts} +401 -54
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +106 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +13 -3587
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +30 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/{tnt-1.141.0-d.ts → sap.tnt.d.ts} +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.141.0-d.ts → sap.ui.commons.d.ts} +1 -1
- package/types/sap.ui.comp.d.ts +78 -9
- package/types/{core-1.141.0-d.ts → sap.ui.core.d.ts} +712 -187
- package/types/{dt-1.141.0-d.ts → sap.ui.dt.d.ts} +1 -1
- package/types/sap.ui.export.d.ts +56 -1
- package/types/sap.ui.fl.d.ts +1 -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.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +100 -94
- package/types/{mdc-1.141.0-d.ts → sap.ui.mdc.d.ts} +1600 -260
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +13 -41
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +34 -78
- package/types/{ux3-1.141.0-d.ts → sap.ui.ux3.d.ts} +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -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 +13 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +326 -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.142.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -1228,6 +1228,10 @@ declare namespace sap {
|
|
|
1228
1228
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1229
1229
|
| `{${string}}`;
|
|
1230
1230
|
|
|
1231
|
+
noDataRepresentation?:
|
|
1232
|
+
| string
|
|
1233
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1234
|
+
|
|
1231
1235
|
pageDataLoaded?: (oEvent: sap.ui.base.Event) => void;
|
|
1232
1236
|
}
|
|
1233
1237
|
|
|
@@ -1463,6 +1467,15 @@ declare namespace sap {
|
|
|
1463
1467
|
* @returns Value of property `mergeObjectPageSectionTitle`
|
|
1464
1468
|
*/
|
|
1465
1469
|
getMergeObjectPageSectionTitle(): boolean;
|
|
1470
|
+
/**
|
|
1471
|
+
* Gets current value of property {@link #getNoDataRepresentation noDataRepresentation}.
|
|
1472
|
+
*
|
|
1473
|
+
* Default value is `"illustration"`.
|
|
1474
|
+
*
|
|
1475
|
+
*
|
|
1476
|
+
* @returns Value of property `noDataRepresentation`
|
|
1477
|
+
*/
|
|
1478
|
+
getNoDataRepresentation(): string;
|
|
1466
1479
|
/**
|
|
1467
1480
|
* Gets current value of property {@link #getObjectPageColumns objectPageColumns}.
|
|
1468
1481
|
*
|
|
@@ -1678,6 +1691,22 @@ declare namespace sap {
|
|
|
1678
1691
|
*/
|
|
1679
1692
|
bMergeObjectPageSectionTitle?: boolean
|
|
1680
1693
|
): this;
|
|
1694
|
+
/**
|
|
1695
|
+
* Sets a new value for property {@link #getNoDataRepresentation noDataRepresentation}.
|
|
1696
|
+
*
|
|
1697
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1698
|
+
*
|
|
1699
|
+
* Default value is `"illustration"`.
|
|
1700
|
+
*
|
|
1701
|
+
*
|
|
1702
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1703
|
+
*/
|
|
1704
|
+
setNoDataRepresentation(
|
|
1705
|
+
/**
|
|
1706
|
+
* New value for property `noDataRepresentation`
|
|
1707
|
+
*/
|
|
1708
|
+
sNoDataRepresentation?: string
|
|
1709
|
+
): this;
|
|
1681
1710
|
/**
|
|
1682
1711
|
* Sets a new value for property {@link #getObjectPageColumns objectPageColumns}.
|
|
1683
1712
|
*
|
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.142.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1062,14 +1062,6 @@ declare namespace sap {
|
|
|
1062
1062
|
*/
|
|
1063
1063
|
oParameter: sap.ui.comp.filterbar.FilterGroupItem
|
|
1064
1064
|
): this;
|
|
1065
|
-
/**
|
|
1066
|
-
* Checks if running on phone.
|
|
1067
|
-
*
|
|
1068
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1069
|
-
*
|
|
1070
|
-
* @returns `True` if phone, `false` otherwise
|
|
1071
|
-
*/
|
|
1072
|
-
_isPhone(): boolean;
|
|
1073
1065
|
/**
|
|
1074
1066
|
* Checks if running on tablet.
|
|
1075
1067
|
*
|
|
@@ -11092,6 +11084,13 @@ declare namespace sap {
|
|
|
11092
11084
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
11093
11085
|
| `{${string}}`;
|
|
11094
11086
|
|
|
11087
|
+
/**
|
|
11088
|
+
* `IllustratedMessage` shown when no data is available.
|
|
11089
|
+
*
|
|
11090
|
+
* @since 1.142
|
|
11091
|
+
*/
|
|
11092
|
+
noDataIllustratedMessage?: sap.m.IllustratedMessage;
|
|
11093
|
+
|
|
11095
11094
|
/**
|
|
11096
11095
|
* Identifies the SmartVariant control which should be used for the personalization. Will be ignored if
|
|
11097
11096
|
* the advanced mode is set.
|
|
@@ -12008,6 +12007,14 @@ declare namespace sap {
|
|
|
12008
12007
|
*/
|
|
12009
12008
|
oListener?: object
|
|
12010
12009
|
): this;
|
|
12010
|
+
/**
|
|
12011
|
+
* Destroys the noDataIllustratedMessage in the aggregation {@link #getNoDataIllustratedMessage noDataIllustratedMessage}.
|
|
12012
|
+
*
|
|
12013
|
+
* @since 1.142
|
|
12014
|
+
*
|
|
12015
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12016
|
+
*/
|
|
12017
|
+
destroyNoDataIllustratedMessage(): this;
|
|
12011
12018
|
/**
|
|
12012
12019
|
* Destroys all the selectionDetailsActionGroups in the aggregation {@link #getSelectionDetailsActionGroups selectionDetailsActionGroups}.
|
|
12013
12020
|
*
|
|
@@ -12633,6 +12640,14 @@ declare namespace sap {
|
|
|
12633
12640
|
* @returns Value of property `noData`
|
|
12634
12641
|
*/
|
|
12635
12642
|
getNoData(): string;
|
|
12643
|
+
/**
|
|
12644
|
+
* Gets content of aggregation {@link #getNoDataIllustratedMessage noDataIllustratedMessage}.
|
|
12645
|
+
*
|
|
12646
|
+
* `IllustratedMessage` shown when no data is available.
|
|
12647
|
+
*
|
|
12648
|
+
* @since 1.142
|
|
12649
|
+
*/
|
|
12650
|
+
getNoDataIllustratedMessage(): sap.m.IllustratedMessage;
|
|
12636
12651
|
/**
|
|
12637
12652
|
* Gets current value of property {@link #getNotAssignedText notAssignedText}.
|
|
12638
12653
|
*
|
|
@@ -13387,6 +13402,19 @@ declare namespace sap {
|
|
|
13387
13402
|
*/
|
|
13388
13403
|
sNoData?: string
|
|
13389
13404
|
): this;
|
|
13405
|
+
/**
|
|
13406
|
+
* Sets the aggregated {@link #getNoDataIllustratedMessage noDataIllustratedMessage}.
|
|
13407
|
+
*
|
|
13408
|
+
* @since 1.142
|
|
13409
|
+
*
|
|
13410
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13411
|
+
*/
|
|
13412
|
+
setNoDataIllustratedMessage(
|
|
13413
|
+
/**
|
|
13414
|
+
* The noDataIllustratedMessage to set
|
|
13415
|
+
*/
|
|
13416
|
+
oNoDataIllustratedMessage: sap.m.IllustratedMessage
|
|
13417
|
+
): this;
|
|
13390
13418
|
/**
|
|
13391
13419
|
* Sets a new value for property {@link #getNotAssignedText notAssignedText}.
|
|
13392
13420
|
*
|
|
@@ -14608,6 +14636,16 @@ declare namespace sap {
|
|
|
14608
14636
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
14609
14637
|
| `{${string}}`;
|
|
14610
14638
|
|
|
14639
|
+
/**
|
|
14640
|
+
* Controls if changes to the InParameters should trigger a description request.
|
|
14641
|
+
*
|
|
14642
|
+
* @since 1.142
|
|
14643
|
+
*/
|
|
14644
|
+
refreshOnInParamChange?:
|
|
14645
|
+
| boolean
|
|
14646
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
14647
|
+
| `{${string}}`;
|
|
14648
|
+
|
|
14611
14649
|
/**
|
|
14612
14650
|
* Optional configuration for `SmartField`.
|
|
14613
14651
|
*
|
|
@@ -17112,6 +17150,18 @@ declare namespace sap {
|
|
|
17112
17150
|
* @returns Value of property `proposedControl`
|
|
17113
17151
|
*/
|
|
17114
17152
|
getProposedControl(): sap.ui.comp.smartfield.ControlProposalType;
|
|
17153
|
+
/**
|
|
17154
|
+
* Gets current value of property {@link #getRefreshOnInParamChange refreshOnInParamChange}.
|
|
17155
|
+
*
|
|
17156
|
+
* Controls if changes to the InParameters should trigger a description request.
|
|
17157
|
+
*
|
|
17158
|
+
* Default value is `false`.
|
|
17159
|
+
*
|
|
17160
|
+
* @since 1.142
|
|
17161
|
+
*
|
|
17162
|
+
* @returns Value of property `refreshOnInParamChange`
|
|
17163
|
+
*/
|
|
17164
|
+
getRefreshOnInParamChange(): boolean;
|
|
17115
17165
|
/**
|
|
17116
17166
|
* Gets the value of the `mandatory` property.
|
|
17117
17167
|
*
|
|
@@ -17978,6 +18028,25 @@ declare namespace sap {
|
|
|
17978
18028
|
*/
|
|
17979
18029
|
sProposedControl?: sap.ui.comp.smartfield.ControlProposalType
|
|
17980
18030
|
): this;
|
|
18031
|
+
/**
|
|
18032
|
+
* Sets a new value for property {@link #getRefreshOnInParamChange refreshOnInParamChange}.
|
|
18033
|
+
*
|
|
18034
|
+
* Controls if changes to the InParameters should trigger a description request.
|
|
18035
|
+
*
|
|
18036
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18037
|
+
*
|
|
18038
|
+
* Default value is `false`.
|
|
18039
|
+
*
|
|
18040
|
+
* @since 1.142
|
|
18041
|
+
*
|
|
18042
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18043
|
+
*/
|
|
18044
|
+
setRefreshOnInParamChange(
|
|
18045
|
+
/**
|
|
18046
|
+
* New value for property `refreshOnInParamChange`
|
|
18047
|
+
*/
|
|
18048
|
+
bRefreshOnInParamChange?: boolean
|
|
18049
|
+
): this;
|
|
17981
18050
|
/**
|
|
17982
18051
|
* Sets the aggregated {@link #getSemanticObjectController semanticObjectController}.
|
|
17983
18052
|
*
|