@sapui5/ts-types 1.128.0 → 1.129.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.cux.home.d.ts +37 -0
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +10 -10
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +116 -30
- package/types/sap.fe.navigation.d.ts +9 -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 +1 -1
- package/types/sap.fe.test.d.ts +1 -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 +17 -4
- package/types/sap.insights.d.ts +7 -1
- package/types/sap.m.d.ts +195 -27
- 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 +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +355 -20
- package/types/sap.suite.ui.commons.d.ts +118 -2
- package/types/sap.suite.ui.generic.template.d.ts +27 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- 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 +427 -982
- package/types/sap.ui.core.d.ts +59 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +13 -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 +37 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +531 -27
- 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 +71 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +103 -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 +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 +43 -25
- 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 +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.apf.d.ts
CHANGED
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.cux.home.d.ts
CHANGED
|
@@ -185,6 +185,33 @@ declare namespace sap {
|
|
|
185
185
|
*/
|
|
186
186
|
settings?: /* was: sap.cux.home.BaseContainer.$BaseContainerSettings */ any
|
|
187
187
|
);
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Sets property value for colorPersonalization.
|
|
191
|
+
* Overridden to update cached personalizations.
|
|
192
|
+
* Sets a new value for property "colorPersonalizations".
|
|
193
|
+
* Color Personalizations for Spaces & Pages
|
|
194
|
+
* When called with a value of "null" or "undefined", the default value of the property will be restored.
|
|
195
|
+
* Default value is: []
|
|
196
|
+
*
|
|
197
|
+
*
|
|
198
|
+
*
|
|
199
|
+
* @returns the container for chaining
|
|
200
|
+
*/
|
|
201
|
+
setColorPersonalizations(): NewsAndPagesContainer;
|
|
202
|
+
/**
|
|
203
|
+
* Sets property value for iconPersonalization.
|
|
204
|
+
* Overridden to update cached personalizations.
|
|
205
|
+
* Sets a new value for property "iconPersonalizations".
|
|
206
|
+
* Icon Personalizations for Spaces & Pages
|
|
207
|
+
* When called with a value of "null" or "undefined", the default value of the property will be restored.
|
|
208
|
+
* Default value is: []
|
|
209
|
+
*
|
|
210
|
+
*
|
|
211
|
+
*
|
|
212
|
+
* @returns the container for chaining
|
|
213
|
+
*/
|
|
214
|
+
setIconPersonalizations(): NewsAndPagesContainer;
|
|
188
215
|
}
|
|
189
216
|
/**
|
|
190
217
|
* Panel class for managing and storing News.
|
|
@@ -207,6 +234,14 @@ declare namespace sap {
|
|
|
207
234
|
settings?: /* was: sap.cux.home.BaseNewsPanel.$BaseNewsPanelSettings */ any
|
|
208
235
|
);
|
|
209
236
|
}
|
|
237
|
+
/**
|
|
238
|
+
* Container class to show no data content.
|
|
239
|
+
*
|
|
240
|
+
* @since 1.121
|
|
241
|
+
* @experimental (since 1.121)
|
|
242
|
+
*/
|
|
243
|
+
class NoDataContainer
|
|
244
|
+
extends /* was: sap.cux.home.BaseContainer */ Object {}
|
|
210
245
|
/**
|
|
211
246
|
* Panel class for managing and storing Pages.
|
|
212
247
|
*
|
|
@@ -468,6 +503,8 @@ declare namespace sap {
|
|
|
468
503
|
|
|
469
504
|
"sap/cux/home/NewsPanel": undefined;
|
|
470
505
|
|
|
506
|
+
"sap/cux/home/NoDataContainer": undefined;
|
|
507
|
+
|
|
471
508
|
"sap/cux/home/PagePanel": undefined;
|
|
472
509
|
|
|
473
510
|
"sap/cux/home/RecentAppPanel": undefined;
|
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1079,17 +1079,17 @@ declare namespace sap {
|
|
|
1079
1079
|
* ```javascript
|
|
1080
1080
|
*
|
|
1081
1081
|
* "myCustomPage": {
|
|
1082
|
-
*
|
|
1083
|
-
*
|
|
1084
|
-
*
|
|
1085
|
-
*
|
|
1086
|
-
*
|
|
1082
|
+
* "type": "Component",
|
|
1083
|
+
* "id": "myCustomPage",
|
|
1084
|
+
* "name": "sap.fe.core.fpm",
|
|
1085
|
+
* "title": "My Custom Page",
|
|
1086
|
+
* "options": {
|
|
1087
1087
|
* "settings": {
|
|
1088
1088
|
* "viewName": "myNamespace.myView",
|
|
1089
1089
|
* "contextPath": "/MyEntitySet"
|
|
1090
|
-
* }
|
|
1091
1090
|
* }
|
|
1092
|
-
*
|
|
1091
|
+
* }
|
|
1092
|
+
* }
|
|
1093
1093
|
* ```
|
|
1094
1094
|
*
|
|
1095
1095
|
*
|
|
@@ -1168,9 +1168,9 @@ declare namespace sap {
|
|
|
1168
1168
|
* When you use sap.fe.core.AppComponent as the base component, you also need to use a rootView. SAP Fiori
|
|
1169
1169
|
* elements provides two options:
|
|
1170
1170
|
*
|
|
1171
|
-
*
|
|
1171
|
+
* - sap.fe.core.rootView.NavContainer when using sap.m.routing.Router
|
|
1172
1172
|
*
|
|
1173
|
-
*
|
|
1173
|
+
* - sap.fe.core.rootView.Fcl when using sap.f.routing.Router (FCL use case)
|
|
1174
1174
|
*/
|
|
1175
1175
|
class AppComponent
|
|
1176
1176
|
extends sap.ui.core.UIComponent
|
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -140,13 +140,13 @@ declare namespace sap {
|
|
|
140
140
|
*
|
|
141
141
|
* Available options are:
|
|
142
142
|
*
|
|
143
|
-
*
|
|
143
|
+
* - Sort
|
|
144
144
|
*
|
|
145
|
-
*
|
|
145
|
+
* - Type
|
|
146
146
|
*
|
|
147
|
-
*
|
|
147
|
+
* - Item
|
|
148
148
|
*
|
|
149
|
-
*
|
|
149
|
+
* - Filter
|
|
150
150
|
*/
|
|
151
151
|
personalization?:
|
|
152
152
|
| string
|
|
@@ -713,6 +713,20 @@ declare namespace sap {
|
|
|
713
713
|
*/
|
|
714
714
|
placement?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
715
715
|
|
|
716
|
+
/**
|
|
717
|
+
* Defines which property will be influenced by the FilterField.
|
|
718
|
+
* This must be a valid property of the entity as this can be used for SAP Companion integration
|
|
719
|
+
*/
|
|
720
|
+
property?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
721
|
+
|
|
722
|
+
/**
|
|
723
|
+
* If set, the FilterField will be marked as a mandatory field.
|
|
724
|
+
*/
|
|
725
|
+
required?:
|
|
726
|
+
| boolean
|
|
727
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
728
|
+
| `{${string}}`;
|
|
729
|
+
|
|
716
730
|
/**
|
|
717
731
|
* If set, possible errors that occur during the search will be displayed in a message box.
|
|
718
732
|
*/
|
|
@@ -1329,6 +1343,15 @@ declare namespace sap {
|
|
|
1329
1343
|
*/
|
|
1330
1344
|
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1331
1345
|
|
|
1346
|
+
/**
|
|
1347
|
+
* Changes the size of the IllustratedMessage in the table, or removes it completely.
|
|
1348
|
+
* Allowed values are `illustratedMessage-Auto`, `illustratedMessage-Base`, `illustratedMessage-Dialog`,
|
|
1349
|
+
* `illustratedMessage-Dot`, `illustratedMessage-Scene`, `illustratedMessage-Spot` or `text`.
|
|
1350
|
+
*/
|
|
1351
|
+
modeForNoDataMessage?:
|
|
1352
|
+
| string
|
|
1353
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1354
|
+
|
|
1332
1355
|
/**
|
|
1333
1356
|
* Controls which options should be enabled for the table personalization dialog.
|
|
1334
1357
|
* If it is set to `true`, all possible options for this kind of table are enabled.
|
|
@@ -1342,11 +1365,11 @@ declare namespace sap {
|
|
|
1342
1365
|
*
|
|
1343
1366
|
* Available options are:
|
|
1344
1367
|
*
|
|
1345
|
-
*
|
|
1368
|
+
* - Sort
|
|
1346
1369
|
*
|
|
1347
|
-
*
|
|
1370
|
+
* - Column
|
|
1348
1371
|
*
|
|
1349
|
-
*
|
|
1372
|
+
* - Filter
|
|
1350
1373
|
*/
|
|
1351
1374
|
personalization?:
|
|
1352
1375
|
| string
|
|
@@ -1441,6 +1464,15 @@ declare namespace sap {
|
|
|
1441
1464
|
| sap.fe.macros.table.Column
|
|
1442
1465
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
1443
1466
|
| `{${string}}`;
|
|
1467
|
+
|
|
1468
|
+
/**
|
|
1469
|
+
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
1470
|
+
*/
|
|
1471
|
+
noData?:
|
|
1472
|
+
| sap.m.Text
|
|
1473
|
+
| sap.m.IllustratedMessage
|
|
1474
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1475
|
+
| `{${string}}`;
|
|
1444
1476
|
}
|
|
1445
1477
|
|
|
1446
1478
|
/**
|
|
@@ -1647,6 +1679,15 @@ declare namespace sap {
|
|
|
1647
1679
|
*/
|
|
1648
1680
|
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1649
1681
|
|
|
1682
|
+
/**
|
|
1683
|
+
* Changes the size of the IllustratedMessage in the table, or removes it completely.
|
|
1684
|
+
* Allowed values are `illustratedMessage-Auto`, `illustratedMessage-Base`, `illustratedMessage-Dialog`,
|
|
1685
|
+
* `illustratedMessage-Dot`, `illustratedMessage-Scene`, `illustratedMessage-Spot` or `text`.
|
|
1686
|
+
*/
|
|
1687
|
+
modeForNoDataMessage?:
|
|
1688
|
+
| string
|
|
1689
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1690
|
+
|
|
1650
1691
|
/**
|
|
1651
1692
|
* Controls which options should be enabled for the table personalization dialog.
|
|
1652
1693
|
* If it is set to `true`, all possible options for this kind of table are enabled.
|
|
@@ -1660,11 +1701,11 @@ declare namespace sap {
|
|
|
1660
1701
|
*
|
|
1661
1702
|
* Available options are:
|
|
1662
1703
|
*
|
|
1663
|
-
*
|
|
1704
|
+
* - Sort
|
|
1664
1705
|
*
|
|
1665
|
-
*
|
|
1706
|
+
* - Column
|
|
1666
1707
|
*
|
|
1667
|
-
*
|
|
1708
|
+
* - Filter
|
|
1668
1709
|
*/
|
|
1669
1710
|
personalization?:
|
|
1670
1711
|
| string
|
|
@@ -1760,6 +1801,15 @@ declare namespace sap {
|
|
|
1760
1801
|
| sap.fe.macros.table.Column
|
|
1761
1802
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
1762
1803
|
| `{${string}}`;
|
|
1804
|
+
|
|
1805
|
+
/**
|
|
1806
|
+
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
1807
|
+
*/
|
|
1808
|
+
noData?:
|
|
1809
|
+
| sap.m.Text
|
|
1810
|
+
| sap.m.IllustratedMessage
|
|
1811
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1812
|
+
| `{${string}}`;
|
|
1763
1813
|
}
|
|
1764
1814
|
|
|
1765
1815
|
/**
|
|
@@ -1952,7 +2002,7 @@ declare namespace sap {
|
|
|
1952
2002
|
/**
|
|
1953
2003
|
* Message type
|
|
1954
2004
|
*/
|
|
1955
|
-
type?: sap.ui.core.MessageType;
|
|
2005
|
+
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
1956
2006
|
}
|
|
1957
2007
|
): string;
|
|
1958
2008
|
/**
|
|
@@ -2231,7 +2281,7 @@ declare namespace sap {
|
|
|
2231
2281
|
/**
|
|
2232
2282
|
* Message type
|
|
2233
2283
|
*/
|
|
2234
|
-
type?: sap.ui.core.MessageType;
|
|
2284
|
+
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
2235
2285
|
}
|
|
2236
2286
|
): string;
|
|
2237
2287
|
/**
|
|
@@ -2679,13 +2729,13 @@ declare namespace sap {
|
|
|
2679
2729
|
*
|
|
2680
2730
|
* Available options are:
|
|
2681
2731
|
*
|
|
2682
|
-
*
|
|
2732
|
+
* - Sort
|
|
2683
2733
|
*
|
|
2684
|
-
*
|
|
2734
|
+
* - Type
|
|
2685
2735
|
*
|
|
2686
|
-
*
|
|
2736
|
+
* - Item
|
|
2687
2737
|
*
|
|
2688
|
-
*
|
|
2738
|
+
* - Filter
|
|
2689
2739
|
*/
|
|
2690
2740
|
personalization?:
|
|
2691
2741
|
| string
|
|
@@ -3153,6 +3203,15 @@ declare namespace sap {
|
|
|
3153
3203
|
*/
|
|
3154
3204
|
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3155
3205
|
|
|
3206
|
+
/**
|
|
3207
|
+
* Changes the size of the IllustratedMessage in the table, or removes it completely.
|
|
3208
|
+
* Allowed values are `illustratedMessage-Auto`, `illustratedMessage-Base`, `illustratedMessage-Dialog`,
|
|
3209
|
+
* `illustratedMessage-Dot`, `illustratedMessage-Scene`, `illustratedMessage-Spot` or `text`.
|
|
3210
|
+
*/
|
|
3211
|
+
modeForNoDataMessage?:
|
|
3212
|
+
| string
|
|
3213
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3214
|
+
|
|
3156
3215
|
/**
|
|
3157
3216
|
* Controls which options should be enabled for the table personalization dialog.
|
|
3158
3217
|
* If it is set to `true`, all possible options for this kind of table are enabled.
|
|
@@ -3166,11 +3225,11 @@ declare namespace sap {
|
|
|
3166
3225
|
*
|
|
3167
3226
|
* Available options are:
|
|
3168
3227
|
*
|
|
3169
|
-
*
|
|
3228
|
+
* - Sort
|
|
3170
3229
|
*
|
|
3171
|
-
*
|
|
3230
|
+
* - Column
|
|
3172
3231
|
*
|
|
3173
|
-
*
|
|
3232
|
+
* - Filter
|
|
3174
3233
|
*/
|
|
3175
3234
|
personalization?:
|
|
3176
3235
|
| string
|
|
@@ -3261,6 +3320,15 @@ declare namespace sap {
|
|
|
3261
3320
|
| sap.fe.macros.table.Column
|
|
3262
3321
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
3263
3322
|
| `{${string}}`;
|
|
3323
|
+
|
|
3324
|
+
/**
|
|
3325
|
+
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
3326
|
+
*/
|
|
3327
|
+
noData?:
|
|
3328
|
+
| sap.m.Text
|
|
3329
|
+
| sap.m.IllustratedMessage
|
|
3330
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3331
|
+
| `{${string}}`;
|
|
3264
3332
|
}
|
|
3265
3333
|
|
|
3266
3334
|
/**
|
|
@@ -3407,6 +3475,15 @@ declare namespace sap {
|
|
|
3407
3475
|
*/
|
|
3408
3476
|
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3409
3477
|
|
|
3478
|
+
/**
|
|
3479
|
+
* Changes the size of the IllustratedMessage in the table, or removes it completely.
|
|
3480
|
+
* Allowed values are `illustratedMessage-Auto`, `illustratedMessage-Base`, `illustratedMessage-Dialog`,
|
|
3481
|
+
* `illustratedMessage-Dot`, `illustratedMessage-Scene`, `illustratedMessage-Spot` or `text`.
|
|
3482
|
+
*/
|
|
3483
|
+
modeForNoDataMessage?:
|
|
3484
|
+
| string
|
|
3485
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3486
|
+
|
|
3410
3487
|
/**
|
|
3411
3488
|
* Controls which options should be enabled for the table personalization dialog.
|
|
3412
3489
|
* If it is set to `true`, all possible options for this kind of table are enabled.
|
|
@@ -3420,11 +3497,11 @@ declare namespace sap {
|
|
|
3420
3497
|
*
|
|
3421
3498
|
* Available options are:
|
|
3422
3499
|
*
|
|
3423
|
-
*
|
|
3500
|
+
* - Sort
|
|
3424
3501
|
*
|
|
3425
|
-
*
|
|
3502
|
+
* - Column
|
|
3426
3503
|
*
|
|
3427
|
-
*
|
|
3504
|
+
* - Filter
|
|
3428
3505
|
*/
|
|
3429
3506
|
personalization?:
|
|
3430
3507
|
| string
|
|
@@ -3516,6 +3593,15 @@ declare namespace sap {
|
|
|
3516
3593
|
| sap.fe.macros.table.Column
|
|
3517
3594
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
3518
3595
|
| `{${string}}`;
|
|
3596
|
+
|
|
3597
|
+
/**
|
|
3598
|
+
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
3599
|
+
*/
|
|
3600
|
+
noData?:
|
|
3601
|
+
| sap.m.Text
|
|
3602
|
+
| sap.m.IllustratedMessage
|
|
3603
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3604
|
+
| `{${string}}`;
|
|
3519
3605
|
}
|
|
3520
3606
|
|
|
3521
3607
|
/**
|
|
@@ -3662,10 +3748,10 @@ declare namespace sap {
|
|
|
3662
3748
|
* ```javascript
|
|
3663
3749
|
*
|
|
3664
3750
|
* <macro:MultiValueField
|
|
3665
|
-
*
|
|
3666
|
-
*
|
|
3667
|
-
*
|
|
3668
|
-
*
|
|
3751
|
+
* id="SomeUniqueIdentifier"
|
|
3752
|
+
* contextPath="{entitySet>}"
|
|
3753
|
+
* metaPath="{dataField>}"
|
|
3754
|
+
* />
|
|
3669
3755
|
* ```
|
|
3670
3756
|
*
|
|
3671
3757
|
*
|
|
@@ -4104,7 +4190,7 @@ declare namespace sap {
|
|
|
4104
4190
|
* ```javascript
|
|
4105
4191
|
*
|
|
4106
4192
|
* <macros:Share
|
|
4107
|
-
*
|
|
4193
|
+
* id="someID"
|
|
4108
4194
|
* visible="true"
|
|
4109
4195
|
* />
|
|
4110
4196
|
* ```
|
|
@@ -4163,7 +4249,7 @@ declare namespace sap {
|
|
|
4163
4249
|
/**
|
|
4164
4250
|
* Message type
|
|
4165
4251
|
*/
|
|
4166
|
-
type?: sap.ui.core.MessageType;
|
|
4252
|
+
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
4167
4253
|
}
|
|
4168
4254
|
): string;
|
|
4169
4255
|
/**
|
|
@@ -4328,7 +4414,7 @@ declare namespace sap {
|
|
|
4328
4414
|
/**
|
|
4329
4415
|
* Message type
|
|
4330
4416
|
*/
|
|
4331
|
-
type?: sap.ui.core.MessageType;
|
|
4417
|
+
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
4332
4418
|
}
|
|
4333
4419
|
): string;
|
|
4334
4420
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -206,7 +206,7 @@ declare namespace sap {
|
|
|
206
206
|
* .
|
|
207
207
|
*
|
|
208
208
|
*
|
|
209
|
-
* @returns
|
|
209
|
+
* @returns An Array containing the technical parameters.
|
|
210
210
|
*/
|
|
211
211
|
getTechnicalParameters(): string[];
|
|
212
212
|
/**
|
|
@@ -716,6 +716,13 @@ declare namespace sap {
|
|
|
716
716
|
toJSONString(): string;
|
|
717
717
|
}
|
|
718
718
|
/**
|
|
719
|
+
* This is the successor of {@link sap.ui.generic.app.navigation.service.SelectionVariant }.
|
|
720
|
+
*
|
|
721
|
+
* Creates a new instance of a SelectionVariant class. If no parameter is passed,
|
|
722
|
+
* an new empty instance is created whose ID has been set to `""`.
|
|
723
|
+
* Passing a JSON-serialized string complying to the Selection Variant Specification will parse it,
|
|
724
|
+
* and the newly created instance will contain the same information.
|
|
725
|
+
*
|
|
719
726
|
* @since 1.83.0
|
|
720
727
|
*/
|
|
721
728
|
class SelectionVariant extends sap.ui.base.Object {
|
package/types/sap.fe.test.d.ts
CHANGED
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.129.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -23260,6 +23260,19 @@ declare namespace sap {
|
|
|
23260
23260
|
*/
|
|
23261
23261
|
constructor();
|
|
23262
23262
|
|
|
23263
|
+
/**
|
|
23264
|
+
* Converts an ABAP timestamp that is in UTC (eg:"20150909000000") into a date instance.
|
|
23265
|
+
*
|
|
23266
|
+
* @since 1.129
|
|
23267
|
+
*
|
|
23268
|
+
* @returns The output date instance
|
|
23269
|
+
*/
|
|
23270
|
+
static abapTimestampInUTCToDate(
|
|
23271
|
+
/**
|
|
23272
|
+
* The ABAP timestamp to convert
|
|
23273
|
+
*/
|
|
23274
|
+
sTimestamp: string
|
|
23275
|
+
): Date;
|
|
23263
23276
|
/**
|
|
23264
23277
|
* Converts an ABAP timestamp(eg:"20150909000000" ) into a Date instance.
|
|
23265
23278
|
*
|
|
@@ -26128,7 +26141,7 @@ declare namespace sap {
|
|
|
26128
26141
|
*
|
|
26129
26142
|
* @experimental (since 1.102)
|
|
26130
26143
|
*/
|
|
26131
|
-
searchSidePanelList?:
|
|
26144
|
+
searchSidePanelList?: sap.tnt.NavigationList;
|
|
26132
26145
|
|
|
26133
26146
|
/**
|
|
26134
26147
|
* Side panel to place custom control within the Gantt Chart Container.
|
|
@@ -37205,7 +37218,7 @@ declare namespace sap {
|
|
|
37205
37218
|
*
|
|
37206
37219
|
* @experimental (since 1.102)
|
|
37207
37220
|
*/
|
|
37208
|
-
getSearchSidePanelList():
|
|
37221
|
+
getSearchSidePanelList(): sap.tnt.NavigationList;
|
|
37209
37222
|
/**
|
|
37210
37223
|
* Gets content of aggregation {@link #getSidePanel sidePanel}.
|
|
37211
37224
|
*
|
|
@@ -37683,7 +37696,7 @@ declare namespace sap {
|
|
|
37683
37696
|
/**
|
|
37684
37697
|
* The searchSidePanelList to set
|
|
37685
37698
|
*/
|
|
37686
|
-
oSearchSidePanelList:
|
|
37699
|
+
oSearchSidePanelList: sap.tnt.NavigationList
|
|
37687
37700
|
): this;
|
|
37688
37701
|
/**
|
|
37689
37702
|
* Sets the aggregated {@link #getSidePanel sidePanel}.
|
package/types/sap.insights.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -162,6 +162,12 @@ declare namespace sap {
|
|
|
162
162
|
*/
|
|
163
163
|
interface CardHelperService {
|
|
164
164
|
__implements__sap_insights_CardHelperService: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* Show preview for Add Card With Search Dialog
|
|
167
|
+
*
|
|
168
|
+
* @experimental
|
|
169
|
+
*/
|
|
170
|
+
showAddCardWithSearchDialog: undefined;
|
|
165
171
|
|
|
166
172
|
/**
|
|
167
173
|
* Updates Cards Ranking in case of Drag & Drop of Cards
|