@sapui5/ts-types 1.123.2 → 1.124.1
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/{core-1.123.0-d.ts → core-1.124.0-d.ts} +496 -558
- package/types/dt-1.124.0-d.ts +7 -0
- package/types/index.d.ts +7 -7
- package/types/{mdc-1.123.0-d.ts → mdc-1.124.0-d.ts} +623 -908
- package/types/{mobile-1.123.0-d.ts → mobile-1.124.0-d.ts} +3924 -239
- 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 +5 -3
- package/types/sap.esh.search.ui.d.ts +127 -1
- package/types/sap.f.d.ts +55 -15
- package/types/sap.fe.core.d.ts +12 -6
- package/types/sap.fe.macros.d.ts +2051 -184
- 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 +31 -4
- 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 +8 -6
- package/types/sap.insights.d.ts +1 -1
- 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 +220 -313
- package/types/sap.suite.ui.commons.d.ts +21 -13
- package/types/sap.suite.ui.generic.template.d.ts +34 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.123.0-d.ts → sap.ui.commons.d.ts} +33 -17
- package/types/sap.ui.comp.d.ts +197 -49
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -2
- 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 +7 -4
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +6 -4
- package/types/{ux3-1.123.0-d.ts → sap.ui.ux3.d.ts} +7 -4
- package/types/sap.ui.vbm.d.ts +3 -2
- package/types/sap.ui.vk.d.ts +86 -30
- package/types/sap.ui.vtm.d.ts +23 -12
- package/types/sap.ui.webc.common.d.ts +3 -1
- package/types/sap.ui.webc.fiori.d.ts +201 -16
- package/types/sap.ui.webc.main.d.ts +603 -57
- package/types/sap.uiext.inbox.d.ts +73 -17
- package/types/sap.ushell.d.ts +616 -192
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +16 -10
- 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/types/{tnt-1.123.0-d.ts → tnt-1.124.0-d.ts} +5 -3
- package/types/dt-1.123.0-d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -14,11 +14,15 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
14
14
|
*
|
|
15
15
|
* @returns Instance of the contact quick view providing the data for the collaboration functionality
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
enableContactsCollaboration(
|
|
18
18
|
/**
|
|
19
19
|
* Provides the email of the contact to be used for the communication using Microsoft Teams
|
|
20
20
|
*/
|
|
21
|
-
sEmail: string
|
|
21
|
+
sEmail: string,
|
|
22
|
+
/**
|
|
23
|
+
* Parameter object which contains the information to be shared
|
|
24
|
+
*/
|
|
25
|
+
oParams: string
|
|
22
26
|
): object;
|
|
23
27
|
/**
|
|
24
28
|
* Provides a list of all collaboration options
|
|
@@ -32608,7 +32612,8 @@ declare namespace sap {
|
|
|
32608
32612
|
*/
|
|
32609
32613
|
class HeaderContainer
|
|
32610
32614
|
extends sap.ui.core.Control
|
|
32611
|
-
implements sap.m.ObjectHeaderContainer
|
|
32615
|
+
implements sap.m.ObjectHeaderContainer
|
|
32616
|
+
{
|
|
32612
32617
|
__implements__sap_m_ObjectHeaderContainer: boolean;
|
|
32613
32618
|
/**
|
|
32614
32619
|
* Constructor for a new HeaderContainer.
|
|
@@ -34290,7 +34295,8 @@ declare namespace sap {
|
|
|
34290
34295
|
*/
|
|
34291
34296
|
class MicroProcessFlow
|
|
34292
34297
|
extends sap.ui.core.Control
|
|
34293
|
-
implements sap.ui.core.IFormContent
|
|
34298
|
+
implements sap.ui.core.IFormContent
|
|
34299
|
+
{
|
|
34294
34300
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
34295
34301
|
/**
|
|
34296
34302
|
* Constructor for a new MicroProcessFlow.
|
|
@@ -50739,10 +50745,11 @@ declare namespace sap {
|
|
|
50739
50745
|
/**
|
|
50740
50746
|
* Event object of the UnifiedThingInspector#configurationButtonPress event.
|
|
50741
50747
|
*/
|
|
50742
|
-
type UnifiedThingInspector$ConfigurationButtonPressEvent =
|
|
50743
|
-
|
|
50744
|
-
|
|
50745
|
-
|
|
50748
|
+
type UnifiedThingInspector$ConfigurationButtonPressEvent =
|
|
50749
|
+
sap.ui.base.Event<
|
|
50750
|
+
UnifiedThingInspector$ConfigurationButtonPressEventParameters,
|
|
50751
|
+
UnifiedThingInspector
|
|
50752
|
+
>;
|
|
50746
50753
|
|
|
50747
50754
|
/**
|
|
50748
50755
|
* Event object of the UnifiedThingInspector#navigate event.
|
|
@@ -50755,10 +50762,11 @@ declare namespace sap {
|
|
|
50755
50762
|
/**
|
|
50756
50763
|
* Event object of the UnifiedThingInspector#transactionsButtonPress event.
|
|
50757
50764
|
*/
|
|
50758
|
-
type UnifiedThingInspector$TransactionsButtonPressEvent =
|
|
50759
|
-
|
|
50760
|
-
|
|
50761
|
-
|
|
50765
|
+
type UnifiedThingInspector$TransactionsButtonPressEvent =
|
|
50766
|
+
sap.ui.base.Event<
|
|
50767
|
+
UnifiedThingInspector$TransactionsButtonPressEventParameters,
|
|
50768
|
+
UnifiedThingInspector
|
|
50769
|
+
>;
|
|
50762
50770
|
|
|
50763
50771
|
/**
|
|
50764
50772
|
* Event object of the ViewRepeater#changeView event.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -884,6 +884,9 @@ declare namespace sap {
|
|
|
884
884
|
oControl: sap.ui.core.Control
|
|
885
885
|
): Promise<any>;
|
|
886
886
|
/**
|
|
887
|
+
* @deprecated (since 1.124) - please refer the {@link topic:4120052d90374ce8b1cea24a0d8bd317 documentation }
|
|
888
|
+
* for the migration steps.
|
|
889
|
+
*
|
|
887
890
|
* This method can be used to define specific controller extension(s) for a template which is used more
|
|
888
891
|
* than once within a SAP Fiori elements application. More precisely: In the manifest of a SAP Fiori elements
|
|
889
892
|
* application, you can register a controller extension. This controller extension is defined at `sap.ui5/extends/extensions/sap.ui.controllerExtensions/{template}`.
|
|
@@ -1162,6 +1165,11 @@ declare namespace sap {
|
|
|
1162
1165
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1163
1166
|
| `{${string}}`;
|
|
1164
1167
|
|
|
1168
|
+
mergeObjectPageSectionTitle?:
|
|
1169
|
+
| boolean
|
|
1170
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1171
|
+
| `{${string}}`;
|
|
1172
|
+
|
|
1165
1173
|
pageDataLoaded?: (oEvent: sap.ui.base.Event) => void;
|
|
1166
1174
|
}
|
|
1167
1175
|
|
|
@@ -1355,6 +1363,15 @@ declare namespace sap {
|
|
|
1355
1363
|
* @returns Value of property `inboundParameters`
|
|
1356
1364
|
*/
|
|
1357
1365
|
getInboundParameters(): object;
|
|
1366
|
+
/**
|
|
1367
|
+
* Gets current value of property {@link #getMergeObjectPageSectionTitle mergeObjectPageSectionTitle}.
|
|
1368
|
+
*
|
|
1369
|
+
* Default value is `true`.
|
|
1370
|
+
*
|
|
1371
|
+
*
|
|
1372
|
+
* @returns Value of property `mergeObjectPageSectionTitle`
|
|
1373
|
+
*/
|
|
1374
|
+
getMergeObjectPageSectionTitle(): boolean;
|
|
1358
1375
|
/**
|
|
1359
1376
|
* Gets current value of property {@link #getObjectPageColumns objectPageColumns}.
|
|
1360
1377
|
*
|
|
@@ -1524,6 +1541,22 @@ declare namespace sap {
|
|
|
1524
1541
|
*/
|
|
1525
1542
|
oInboundParameters?: object
|
|
1526
1543
|
): this;
|
|
1544
|
+
/**
|
|
1545
|
+
* Sets a new value for property {@link #getMergeObjectPageSectionTitle mergeObjectPageSectionTitle}.
|
|
1546
|
+
*
|
|
1547
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1548
|
+
*
|
|
1549
|
+
* Default value is `true`.
|
|
1550
|
+
*
|
|
1551
|
+
*
|
|
1552
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1553
|
+
*/
|
|
1554
|
+
setMergeObjectPageSectionTitle(
|
|
1555
|
+
/**
|
|
1556
|
+
* New value for property `mergeObjectPageSectionTitle`
|
|
1557
|
+
*/
|
|
1558
|
+
bMergeObjectPageSectionTitle?: boolean
|
|
1559
|
+
): this;
|
|
1527
1560
|
/**
|
|
1528
1561
|
* Sets a new value for property {@link #getObjectPageColumns objectPageColumns}.
|
|
1529
1562
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -10068,7 +10068,8 @@ declare namespace sap {
|
|
|
10068
10068
|
*/
|
|
10069
10069
|
class AutoComplete
|
|
10070
10070
|
extends sap.ui.commons.ComboBox
|
|
10071
|
-
implements sap.ui.commons.ToolbarItem
|
|
10071
|
+
implements sap.ui.commons.ToolbarItem
|
|
10072
|
+
{
|
|
10072
10073
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
10073
10074
|
/**
|
|
10074
10075
|
* Constructor for a new AutoComplete.
|
|
@@ -10287,7 +10288,8 @@ declare namespace sap {
|
|
|
10287
10288
|
*/
|
|
10288
10289
|
class Button
|
|
10289
10290
|
extends sap.ui.core.Control
|
|
10290
|
-
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
10291
|
+
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
10292
|
+
{
|
|
10291
10293
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
10292
10294
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
10293
10295
|
/**
|
|
@@ -11900,7 +11902,8 @@ declare namespace sap {
|
|
|
11900
11902
|
*/
|
|
11901
11903
|
class CheckBox
|
|
11902
11904
|
extends sap.ui.core.Control
|
|
11903
|
-
implements sap.ui.core.IFormContent
|
|
11905
|
+
implements sap.ui.core.IFormContent
|
|
11906
|
+
{
|
|
11904
11907
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
11905
11908
|
/**
|
|
11906
11909
|
* Constructor for a new CheckBox.
|
|
@@ -12459,7 +12462,8 @@ declare namespace sap {
|
|
|
12459
12462
|
*/
|
|
12460
12463
|
class ComboBox
|
|
12461
12464
|
extends sap.ui.commons.TextField
|
|
12462
|
-
implements sap.ui.commons.ToolbarItem
|
|
12465
|
+
implements sap.ui.commons.ToolbarItem
|
|
12466
|
+
{
|
|
12463
12467
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
12464
12468
|
/**
|
|
12465
12469
|
* Constructor for a new ComboBox.
|
|
@@ -13046,7 +13050,8 @@ declare namespace sap {
|
|
|
13046
13050
|
*/
|
|
13047
13051
|
class Dialog
|
|
13048
13052
|
extends sap.ui.core.Control
|
|
13049
|
-
implements sap.ui.core.PopupInterface
|
|
13053
|
+
implements sap.ui.core.PopupInterface
|
|
13054
|
+
{
|
|
13050
13055
|
__implements__sap_ui_core_PopupInterface: boolean;
|
|
13051
13056
|
/**
|
|
13052
13057
|
* Constructor for a new Dialog.
|
|
@@ -14903,7 +14908,8 @@ declare namespace sap {
|
|
|
14903
14908
|
implements
|
|
14904
14909
|
sap.ui.commons.ToolbarItem,
|
|
14905
14910
|
sap.ui.commons.FormattedTextViewControl,
|
|
14906
|
-
sap.ui.core.IFormContent
|
|
14911
|
+
sap.ui.core.IFormContent
|
|
14912
|
+
{
|
|
14907
14913
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
14908
14914
|
__implements__sap_ui_commons_FormattedTextViewControl: boolean;
|
|
14909
14915
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -15886,7 +15892,8 @@ declare namespace sap {
|
|
|
15886
15892
|
*/
|
|
15887
15893
|
class Label
|
|
15888
15894
|
extends sap.ui.core.Control
|
|
15889
|
-
implements sap.ui.commons.ToolbarItem, sap.ui.core.Label
|
|
15895
|
+
implements sap.ui.commons.ToolbarItem, sap.ui.core.Label
|
|
15896
|
+
{
|
|
15890
15897
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
15891
15898
|
__implements__sap_ui_core_Label: boolean;
|
|
15892
15899
|
/**
|
|
@@ -16257,7 +16264,8 @@ declare namespace sap {
|
|
|
16257
16264
|
implements
|
|
16258
16265
|
sap.ui.commons.ToolbarItem,
|
|
16259
16266
|
sap.ui.commons.FormattedTextViewControl,
|
|
16260
|
-
sap.ui.core.IFormContent
|
|
16267
|
+
sap.ui.core.IFormContent
|
|
16268
|
+
{
|
|
16261
16269
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
16262
16270
|
__implements__sap_ui_commons_FormattedTextViewControl: boolean;
|
|
16263
16271
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -20154,7 +20162,8 @@ declare namespace sap {
|
|
|
20154
20162
|
*/
|
|
20155
20163
|
class RadioButton
|
|
20156
20164
|
extends sap.ui.core.Control
|
|
20157
|
-
implements sap.ui.core.IFormContent
|
|
20165
|
+
implements sap.ui.core.IFormContent
|
|
20166
|
+
{
|
|
20158
20167
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
20159
20168
|
/**
|
|
20160
20169
|
* Constructor for a new RadioButton.
|
|
@@ -20634,7 +20643,8 @@ declare namespace sap {
|
|
|
20634
20643
|
*/
|
|
20635
20644
|
class RadioButtonGroup
|
|
20636
20645
|
extends sap.ui.core.Control
|
|
20637
|
-
implements sap.ui.core.IFormContent
|
|
20646
|
+
implements sap.ui.core.IFormContent
|
|
20647
|
+
{
|
|
20638
20648
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
20639
20649
|
/**
|
|
20640
20650
|
* Constructor for a new RadioButtonGroup.
|
|
@@ -24284,7 +24294,8 @@ declare namespace sap {
|
|
|
24284
24294
|
*/
|
|
24285
24295
|
class SearchField
|
|
24286
24296
|
extends sap.ui.core.Control
|
|
24287
|
-
implements sap.ui.commons.ToolbarItem
|
|
24297
|
+
implements sap.ui.commons.ToolbarItem
|
|
24298
|
+
{
|
|
24288
24299
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
24289
24300
|
/**
|
|
24290
24301
|
* Constructor for a new SearchField.
|
|
@@ -25235,7 +25246,8 @@ declare namespace sap {
|
|
|
25235
25246
|
*/
|
|
25236
25247
|
class SegmentedButton
|
|
25237
25248
|
extends sap.ui.core.Control
|
|
25238
|
-
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
25249
|
+
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
25250
|
+
{
|
|
25239
25251
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
25240
25252
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
25241
25253
|
/**
|
|
@@ -25517,7 +25529,8 @@ declare namespace sap {
|
|
|
25517
25529
|
*/
|
|
25518
25530
|
class Slider
|
|
25519
25531
|
extends sap.ui.core.Control
|
|
25520
|
-
implements sap.ui.core.IFormContent
|
|
25532
|
+
implements sap.ui.core.IFormContent
|
|
25533
|
+
{
|
|
25521
25534
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
25522
25535
|
/**
|
|
25523
25536
|
* Constructor for a new `Slider`.
|
|
@@ -27523,7 +27536,8 @@ declare namespace sap {
|
|
|
27523
27536
|
*/
|
|
27524
27537
|
class TextField
|
|
27525
27538
|
extends sap.ui.core.Control
|
|
27526
|
-
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
27539
|
+
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
27540
|
+
{
|
|
27527
27541
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
27528
27542
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
27529
27543
|
/**
|
|
@@ -28384,7 +28398,8 @@ declare namespace sap {
|
|
|
28384
28398
|
*/
|
|
28385
28399
|
class TextView
|
|
28386
28400
|
extends sap.ui.core.Control
|
|
28387
|
-
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
28401
|
+
implements sap.ui.commons.ToolbarItem, sap.ui.core.IFormContent
|
|
28402
|
+
{
|
|
28388
28403
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
28389
28404
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
28390
28405
|
/**
|
|
@@ -29372,7 +29387,8 @@ declare namespace sap {
|
|
|
29372
29387
|
*/
|
|
29373
29388
|
class ToolbarSeparator
|
|
29374
29389
|
extends sap.ui.core.Element
|
|
29375
|
-
implements sap.ui.commons.ToolbarItem
|
|
29390
|
+
implements sap.ui.commons.ToolbarItem
|
|
29391
|
+
{
|
|
29376
29392
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
29377
29393
|
/**
|
|
29378
29394
|
* Constructor for a new ToolbarSeparator.
|