@sapui5/types 1.124.1 → 1.124.2
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.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +12 -2
- package/types/sap.fe.macros.d.ts +1 -1
- 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 +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +172 -22
- 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.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +6 -5
- package/types/sap.suite.ui.generic.template.d.ts +7 -4
- 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 +1 -1
- package/types/sap.ui.core.d.ts +43 -31
- 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 +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 +25 -3
- 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 +6 -3
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.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 +1 -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.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.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -1039,7 +1039,17 @@ declare module "sap/fe/core/controllerextensions/Routing" {
|
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Object containing the context to be navigated to
|
|
1041
1041
|
*/
|
|
1042
|
-
oContext: Context
|
|
1042
|
+
oContext: Context,
|
|
1043
|
+
/**
|
|
1044
|
+
* Object containing the parameters for the navigation
|
|
1045
|
+
*/
|
|
1046
|
+
parameters?: {
|
|
1047
|
+
/**
|
|
1048
|
+
* By default, the internal algorithm decides whether the navigation preserves the previous entry. PreserveHistory
|
|
1049
|
+
* allows you to override this behavior.
|
|
1050
|
+
*/
|
|
1051
|
+
preserveHistory: boolean;
|
|
1052
|
+
}
|
|
1043
1053
|
): void;
|
|
1044
1054
|
/**
|
|
1045
1055
|
* Navigate to another target.
|
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -5336,6 +5336,8 @@ declare module "sap/m/ActionTile" {
|
|
|
5336
5336
|
$GenericTileSettings,
|
|
5337
5337
|
} from "sap/m/GenericTile";
|
|
5338
5338
|
|
|
5339
|
+
import { URI, ValueState } from "sap/ui/core/library";
|
|
5340
|
+
|
|
5339
5341
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5340
5342
|
|
|
5341
5343
|
import { Priority } from "sap/m/library";
|
|
@@ -5412,6 +5414,30 @@ declare module "sap/m/ActionTile" {
|
|
|
5412
5414
|
* @returns Metadata object describing this class
|
|
5413
5415
|
*/
|
|
5414
5416
|
static getMetadata(): ElementMetadata;
|
|
5417
|
+
/**
|
|
5418
|
+
* Gets current value of property {@link #getBadgeIcon badgeIcon}.
|
|
5419
|
+
*
|
|
5420
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
5421
|
+
*
|
|
5422
|
+
* Default value is `empty string`.
|
|
5423
|
+
*
|
|
5424
|
+
* @experimental (since 1.124)
|
|
5425
|
+
*
|
|
5426
|
+
* @returns Value of property `badgeIcon`
|
|
5427
|
+
*/
|
|
5428
|
+
getBadgeIcon(): URI;
|
|
5429
|
+
/**
|
|
5430
|
+
* Gets current value of property {@link #getBadgeValueState badgeValueState}.
|
|
5431
|
+
*
|
|
5432
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
5433
|
+
*
|
|
5434
|
+
* Default value is `None`.
|
|
5435
|
+
*
|
|
5436
|
+
* @experimental (since 1.124)
|
|
5437
|
+
*
|
|
5438
|
+
* @returns Value of property `badgeValueState`
|
|
5439
|
+
*/
|
|
5440
|
+
getBadgeValueState(): ValueState | keyof typeof ValueState;
|
|
5415
5441
|
/**
|
|
5416
5442
|
* Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
5417
5443
|
*
|
|
@@ -5458,6 +5484,30 @@ declare module "sap/m/ActionTile" {
|
|
|
5458
5484
|
* @returns Value of property `priorityText`
|
|
5459
5485
|
*/
|
|
5460
5486
|
getPriorityText(): string;
|
|
5487
|
+
/**
|
|
5488
|
+
* Sets the badgeIcon property of the ActionTile.
|
|
5489
|
+
*
|
|
5490
|
+
*
|
|
5491
|
+
* @returns The reference to the ActionTile instance.
|
|
5492
|
+
*/
|
|
5493
|
+
setBadgeIcon(
|
|
5494
|
+
/**
|
|
5495
|
+
* The URI of the icon to be displayed as a badge.
|
|
5496
|
+
*/
|
|
5497
|
+
sIcon: string
|
|
5498
|
+
): ActionTile;
|
|
5499
|
+
/**
|
|
5500
|
+
* Sets the badgeValueState property of the ActionTile.
|
|
5501
|
+
*
|
|
5502
|
+
*
|
|
5503
|
+
* @returns The reference to the ActionTile instance.
|
|
5504
|
+
*/
|
|
5505
|
+
setBadgeValueState(
|
|
5506
|
+
/**
|
|
5507
|
+
* The value state of the badge.
|
|
5508
|
+
*/
|
|
5509
|
+
sValueState: ValueState | keyof typeof ValueState
|
|
5510
|
+
): ActionTile;
|
|
5461
5511
|
/**
|
|
5462
5512
|
* Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
5463
5513
|
*
|
|
@@ -5478,24 +5528,17 @@ declare module "sap/m/ActionTile" {
|
|
|
5478
5528
|
bEnableDynamicHeight?: boolean
|
|
5479
5529
|
): this;
|
|
5480
5530
|
/**
|
|
5481
|
-
* Sets
|
|
5531
|
+
* Sets the enableIconFrame property of the ActionTile.
|
|
5482
5532
|
*
|
|
5483
|
-
* Decides whether the headerImage should have a frame or not.
|
|
5484
5533
|
*
|
|
5485
|
-
*
|
|
5486
|
-
*
|
|
5487
|
-
* Default value is `false`.
|
|
5488
|
-
*
|
|
5489
|
-
* @experimental (since 1.124)
|
|
5490
|
-
*
|
|
5491
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
5534
|
+
* @returns The reference to the ActionTile instance.
|
|
5492
5535
|
*/
|
|
5493
5536
|
setEnableIconFrame(
|
|
5494
5537
|
/**
|
|
5495
|
-
*
|
|
5538
|
+
* Determines whether the icon frame should be enabled or not.
|
|
5496
5539
|
*/
|
|
5497
|
-
|
|
5498
|
-
):
|
|
5540
|
+
bValue: boolean
|
|
5541
|
+
): ActionTile;
|
|
5499
5542
|
/**
|
|
5500
5543
|
* Sets a new value for property {@link #getPriority priority}.
|
|
5501
5544
|
*
|
|
@@ -5569,6 +5612,23 @@ declare module "sap/m/ActionTile" {
|
|
|
5569
5612
|
* @experimental (since 1.124)
|
|
5570
5613
|
*/
|
|
5571
5614
|
priorityText?: string | PropertyBindingInfo;
|
|
5615
|
+
|
|
5616
|
+
/**
|
|
5617
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
5618
|
+
*
|
|
5619
|
+
* @experimental (since 1.124)
|
|
5620
|
+
*/
|
|
5621
|
+
badgeIcon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
5622
|
+
|
|
5623
|
+
/**
|
|
5624
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
5625
|
+
*
|
|
5626
|
+
* @experimental (since 1.124)
|
|
5627
|
+
*/
|
|
5628
|
+
badgeValueState?:
|
|
5629
|
+
| (ValueState | keyof typeof ValueState)
|
|
5630
|
+
| PropertyBindingInfo
|
|
5631
|
+
| `{${string}}`;
|
|
5572
5632
|
}
|
|
5573
5633
|
}
|
|
5574
5634
|
|
|
@@ -46563,8 +46623,9 @@ declare module "sap/m/Label" {
|
|
|
46563
46623
|
/**
|
|
46564
46624
|
* Gets current value of property {@link #getWrapping wrapping}.
|
|
46565
46625
|
*
|
|
46566
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46567
|
-
*
|
|
46626
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46627
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46628
|
+
* wrap.
|
|
46568
46629
|
*
|
|
46569
46630
|
* Default value is `false`.
|
|
46570
46631
|
*
|
|
@@ -46774,8 +46835,9 @@ declare module "sap/m/Label" {
|
|
|
46774
46835
|
/**
|
|
46775
46836
|
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
46776
46837
|
*
|
|
46777
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46778
|
-
*
|
|
46838
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46839
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46840
|
+
* wrap.
|
|
46779
46841
|
*
|
|
46780
46842
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46781
46843
|
*
|
|
@@ -46868,8 +46930,9 @@ declare module "sap/m/Label" {
|
|
|
46868
46930
|
displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46869
46931
|
|
|
46870
46932
|
/**
|
|
46871
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46872
|
-
*
|
|
46933
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46934
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46935
|
+
* wrap.
|
|
46873
46936
|
*
|
|
46874
46937
|
* @since 1.50
|
|
46875
46938
|
*/
|
|
@@ -72379,7 +72442,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72379
72442
|
*
|
|
72380
72443
|
* Default value is `true`.
|
|
72381
72444
|
*
|
|
72382
|
-
* @deprecated (since 1.32
|
|
72445
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72383
72446
|
*
|
|
72384
72447
|
* @returns Value of property `moveToOverflow`
|
|
72385
72448
|
*/
|
|
@@ -72461,7 +72524,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72461
72524
|
*
|
|
72462
72525
|
* Default value is `true`.
|
|
72463
72526
|
*
|
|
72464
|
-
* @deprecated (since 1.32
|
|
72527
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72465
72528
|
*
|
|
72466
72529
|
* @returns Reference to `this` in order to allow method chaining
|
|
72467
72530
|
*/
|
|
@@ -72519,7 +72582,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72519
72582
|
/**
|
|
72520
72583
|
* The OverflowToolbar item can or cannot move to the overflow area
|
|
72521
72584
|
*
|
|
72522
|
-
* @deprecated (since 1.32
|
|
72585
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72523
72586
|
*/
|
|
72524
72587
|
moveToOverflow?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
72525
72588
|
|
|
@@ -100546,6 +100609,8 @@ declare module "sap/m/RadioButton" {
|
|
|
100546
100609
|
|
|
100547
100610
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
100548
100611
|
|
|
100612
|
+
import { WrappingType } from "sap/m/library";
|
|
100613
|
+
|
|
100549
100614
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
100550
100615
|
|
|
100551
100616
|
import Event from "sap/ui/base/Event";
|
|
@@ -100919,6 +100984,32 @@ declare module "sap/m/RadioButton" {
|
|
|
100919
100984
|
* @returns Value of property `width`
|
|
100920
100985
|
*/
|
|
100921
100986
|
getWidth(): CSSSize;
|
|
100987
|
+
/**
|
|
100988
|
+
* Gets current value of property {@link #getWrapping wrapping}.
|
|
100989
|
+
*
|
|
100990
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
100991
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
100992
|
+
* will wrap.
|
|
100993
|
+
*
|
|
100994
|
+
* Default value is `false`.
|
|
100995
|
+
*
|
|
100996
|
+
* @since 1.126
|
|
100997
|
+
*
|
|
100998
|
+
* @returns Value of property `wrapping`
|
|
100999
|
+
*/
|
|
101000
|
+
getWrapping(): boolean;
|
|
101001
|
+
/**
|
|
101002
|
+
* Gets current value of property {@link #getWrappingType wrappingType}.
|
|
101003
|
+
*
|
|
101004
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101005
|
+
*
|
|
101006
|
+
* Default value is `Normal`.
|
|
101007
|
+
*
|
|
101008
|
+
* @since 1.126
|
|
101009
|
+
*
|
|
101010
|
+
* @returns Value of property `wrappingType`
|
|
101011
|
+
*/
|
|
101012
|
+
getWrappingType(): WrappingType | keyof typeof WrappingType;
|
|
100922
101013
|
/**
|
|
100923
101014
|
* Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
|
|
100924
101015
|
*/
|
|
@@ -101171,6 +101262,46 @@ declare module "sap/m/RadioButton" {
|
|
|
101171
101262
|
*/
|
|
101172
101263
|
sWidth?: CSSSize
|
|
101173
101264
|
): this;
|
|
101265
|
+
/**
|
|
101266
|
+
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
101267
|
+
*
|
|
101268
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
101269
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
101270
|
+
* will wrap.
|
|
101271
|
+
*
|
|
101272
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101273
|
+
*
|
|
101274
|
+
* Default value is `false`.
|
|
101275
|
+
*
|
|
101276
|
+
* @since 1.126
|
|
101277
|
+
*
|
|
101278
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101279
|
+
*/
|
|
101280
|
+
setWrapping(
|
|
101281
|
+
/**
|
|
101282
|
+
* New value for property `wrapping`
|
|
101283
|
+
*/
|
|
101284
|
+
bWrapping?: boolean
|
|
101285
|
+
): this;
|
|
101286
|
+
/**
|
|
101287
|
+
* Sets a new value for property {@link #getWrappingType wrappingType}.
|
|
101288
|
+
*
|
|
101289
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101290
|
+
*
|
|
101291
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101292
|
+
*
|
|
101293
|
+
* Default value is `Normal`.
|
|
101294
|
+
*
|
|
101295
|
+
* @since 1.126
|
|
101296
|
+
*
|
|
101297
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101298
|
+
*/
|
|
101299
|
+
setWrappingType(
|
|
101300
|
+
/**
|
|
101301
|
+
* New value for property `wrappingType`
|
|
101302
|
+
*/
|
|
101303
|
+
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
101304
|
+
): this;
|
|
101174
101305
|
}
|
|
101175
101306
|
/**
|
|
101176
101307
|
* Describes the settings that can be provided to the RadioButton constructor.
|
|
@@ -101261,6 +101392,25 @@ declare module "sap/m/RadioButton" {
|
|
|
101261
101392
|
| PropertyBindingInfo
|
|
101262
101393
|
| `{${string}}`;
|
|
101263
101394
|
|
|
101395
|
+
/**
|
|
101396
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
101397
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
101398
|
+
* will wrap.
|
|
101399
|
+
*
|
|
101400
|
+
* @since 1.126
|
|
101401
|
+
*/
|
|
101402
|
+
wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
101403
|
+
|
|
101404
|
+
/**
|
|
101405
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101406
|
+
*
|
|
101407
|
+
* @since 1.126
|
|
101408
|
+
*/
|
|
101409
|
+
wrappingType?:
|
|
101410
|
+
| (WrappingType | keyof typeof WrappingType)
|
|
101411
|
+
| PropertyBindingInfo
|
|
101412
|
+
| `{${string}}`;
|
|
101413
|
+
|
|
101264
101414
|
/**
|
|
101265
101415
|
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
101266
101416
|
*/
|
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
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -12,7 +12,8 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
12
12
|
* to start a message, audio call or video call
|
|
13
13
|
*
|
|
14
14
|
*
|
|
15
|
-
* @returns
|
|
15
|
+
* @returns Returns a promise that resolves to an instance of the contact quick view providing the data
|
|
16
|
+
* for the collaboration functionality
|
|
16
17
|
*/
|
|
17
18
|
enableContactsCollaboration(
|
|
18
19
|
/**
|
|
@@ -23,7 +24,7 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
23
24
|
* Parameter object which contains the information to be shared
|
|
24
25
|
*/
|
|
25
26
|
oParams: string
|
|
26
|
-
):
|
|
27
|
+
): Promise<any>;
|
|
27
28
|
/**
|
|
28
29
|
* Provides a list of all collaboration options
|
|
29
30
|
*
|
|
@@ -53,9 +54,9 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
53
54
|
* Provides the Microsoft Teams collaboration options for the contact quick view
|
|
54
55
|
*
|
|
55
56
|
*
|
|
56
|
-
* @returns
|
|
57
|
+
* @returns Returns a promise that provides the options for the Microsoft Teams collaboration functionality
|
|
57
58
|
*/
|
|
58
|
-
getTeamsContactCollabOptions():
|
|
59
|
+
getTeamsContactCollabOptions(): Promise<any>;
|
|
59
60
|
/**
|
|
60
61
|
* Checks if collaboration with contacts is supported in Microsoft Teams
|
|
61
62
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -498,6 +498,9 @@ declare module "sap/suite/ui/generic/template/AnalyticalListPage/extensionAPI/Ex
|
|
|
498
498
|
*/
|
|
499
499
|
getNavigationController(): NavigationController;
|
|
500
500
|
/**
|
|
501
|
+
* Generally, this method returns the currently selected contexts in the given ui element (table, chart,
|
|
502
|
+
* or list). In case the context menu is opened, it returns the contexts applicable to the context menu.
|
|
503
|
+
*
|
|
501
504
|
* Get the list entries currently selected
|
|
502
505
|
*
|
|
503
506
|
*
|
|
@@ -940,9 +943,6 @@ declare module "sap/suite/ui/generic/template/extensionAPI/extensionAPI" {
|
|
|
940
943
|
oControl: Control
|
|
941
944
|
): Promise<any>;
|
|
942
945
|
/**
|
|
943
|
-
* @deprecated (since 1.124) - please refer the {@link topic:4120052d90374ce8b1cea24a0d8bd317 documentation }
|
|
944
|
-
* for the migration steps.
|
|
945
|
-
*
|
|
946
946
|
* This method can be used to define specific controller extension(s) for a template which is used more
|
|
947
947
|
* than once within a SAP Fiori elements application. More precisely: In the manifest of a SAP Fiori elements
|
|
948
948
|
* application, you can register a controller extension. This controller extension is defined at `sap.ui5/extends/extensions/sap.ui.controllerExtensions/{template}`.
|
|
@@ -963,6 +963,9 @@ declare module "sap/suite/ui/generic/template/extensionAPI/extensionAPI" {
|
|
|
963
963
|
* in a member variable. This variable can be used whenever standard controller functionality is needed
|
|
964
964
|
* (e.g. `oController.byId()` or `oController.extensionAPI`.
|
|
965
965
|
* In the definition of the controller extension specified in the manifest, simply call `registerControllerExtensions`.
|
|
966
|
+
*
|
|
967
|
+
* @deprecated (since 1.120) - please refer the {@link topic:4120052d90374ce8b1cea24a0d8bd317 documentation }
|
|
968
|
+
* for the migration steps.
|
|
966
969
|
*/
|
|
967
970
|
registerControllerExtensions(
|
|
968
971
|
/**
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.124.
|
|
282
|
+
// For Library Version: 1.124.2
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -42230,7 +42230,7 @@ declare module "sap/ui/core/search/OpenSearchProvider" {
|
|
|
42230
42230
|
/**
|
|
42231
42231
|
* A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
|
|
42232
42232
|
*
|
|
42233
|
-
* @deprecated (since 1.120)
|
|
42233
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42234
42234
|
*/
|
|
42235
42235
|
export default class OpenSearchProvider extends SearchProvider {
|
|
42236
42236
|
/**
|
|
@@ -42370,7 +42370,7 @@ declare module "sap/ui/core/search/OpenSearchProvider" {
|
|
|
42370
42370
|
/**
|
|
42371
42371
|
* Describes the settings that can be provided to the OpenSearchProvider constructor.
|
|
42372
42372
|
*
|
|
42373
|
-
* @deprecated (since 1.120)
|
|
42373
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42374
42374
|
*/
|
|
42375
42375
|
export interface $OpenSearchProviderSettings extends $SearchProviderSettings {
|
|
42376
42376
|
/**
|
|
@@ -42398,7 +42398,7 @@ declare module "sap/ui/core/search/SearchProvider" {
|
|
|
42398
42398
|
*
|
|
42399
42399
|
* Do not create instances of this class, but use a concrete subclass instead.
|
|
42400
42400
|
*
|
|
42401
|
-
* @deprecated (since 1.120)
|
|
42401
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42402
42402
|
*/
|
|
42403
42403
|
export default abstract class SearchProvider extends UI5Element {
|
|
42404
42404
|
/**
|
|
@@ -42507,7 +42507,7 @@ declare module "sap/ui/core/search/SearchProvider" {
|
|
|
42507
42507
|
/**
|
|
42508
42508
|
* Describes the settings that can be provided to the SearchProvider constructor.
|
|
42509
42509
|
*
|
|
42510
|
-
* @deprecated (since 1.120)
|
|
42510
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42511
42511
|
*/
|
|
42512
42512
|
export interface $SearchProviderSettings extends $ElementSettings {
|
|
42513
42513
|
/**
|
|
@@ -43117,7 +43117,8 @@ declare module "sap/ui/core/tmpl/DOMAttribute" {
|
|
|
43117
43117
|
* Represents a DOM attribute of a DOM element.
|
|
43118
43118
|
*
|
|
43119
43119
|
* @since 1.15
|
|
43120
|
-
* @deprecated (since 1.56)
|
|
43120
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43121
|
+
* instead.
|
|
43121
43122
|
*/
|
|
43122
43123
|
export default class DOMAttribute extends UI5Element {
|
|
43123
43124
|
/**
|
|
@@ -43236,7 +43237,8 @@ declare module "sap/ui/core/tmpl/DOMAttribute" {
|
|
|
43236
43237
|
/**
|
|
43237
43238
|
* Describes the settings that can be provided to the DOMAttribute constructor.
|
|
43238
43239
|
*
|
|
43239
|
-
* @deprecated (since 1.56)
|
|
43240
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43241
|
+
* instead.
|
|
43240
43242
|
*/
|
|
43241
43243
|
export interface $DOMAttributeSettings extends $ElementSettings {
|
|
43242
43244
|
/**
|
|
@@ -43267,7 +43269,8 @@ declare module "sap/ui/core/tmpl/DOMElement" {
|
|
|
43267
43269
|
* Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
|
|
43268
43270
|
*
|
|
43269
43271
|
* @since 1.15
|
|
43270
|
-
* @deprecated (since 1.56)
|
|
43272
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43273
|
+
* instead.
|
|
43271
43274
|
*/
|
|
43272
43275
|
export default class DOMElement extends Control {
|
|
43273
43276
|
/**
|
|
@@ -43574,7 +43577,8 @@ declare module "sap/ui/core/tmpl/DOMElement" {
|
|
|
43574
43577
|
/**
|
|
43575
43578
|
* Describes the settings that can be provided to the DOMElement constructor.
|
|
43576
43579
|
*
|
|
43577
|
-
* @deprecated (since 1.56)
|
|
43580
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43581
|
+
* instead.
|
|
43578
43582
|
*/
|
|
43579
43583
|
export interface $DOMElementSettings extends $ControlSettings {
|
|
43580
43584
|
/**
|
|
@@ -43619,7 +43623,8 @@ declare module "sap/ui/core/tmpl/HandlebarsTemplate" {
|
|
|
43619
43623
|
* The class for Handlebars Templates.
|
|
43620
43624
|
*
|
|
43621
43625
|
* @since 1.15
|
|
43622
|
-
* @deprecated (since 1.56)
|
|
43626
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43627
|
+
* instead.
|
|
43623
43628
|
*/
|
|
43624
43629
|
export default abstract class HandlebarsTemplate extends Template {
|
|
43625
43630
|
/**
|
|
@@ -43701,7 +43706,8 @@ declare module "sap/ui/core/tmpl/HandlebarsTemplate" {
|
|
|
43701
43706
|
/**
|
|
43702
43707
|
* Describes the settings that can be provided to the HandlebarsTemplate constructor.
|
|
43703
43708
|
*
|
|
43704
|
-
* @deprecated (since 1.56)
|
|
43709
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43710
|
+
* instead.
|
|
43705
43711
|
*/
|
|
43706
43712
|
export interface $HandlebarsTemplateSettings extends $TemplateSettings {}
|
|
43707
43713
|
}
|
|
@@ -43998,7 +44004,8 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
|
|
|
43998
44004
|
* This is the base class for all template controls. Template controls are declared based on templates.
|
|
43999
44005
|
*
|
|
44000
44006
|
* @since 1.15
|
|
44001
|
-
* @deprecated (since 1.56)
|
|
44007
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
44008
|
+
* instead.
|
|
44002
44009
|
*/
|
|
44003
44010
|
export default class TemplateControl extends Control {
|
|
44004
44011
|
/**
|
|
@@ -44429,7 +44436,8 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
|
|
|
44429
44436
|
/**
|
|
44430
44437
|
* Describes the settings that can be provided to the TemplateControl constructor.
|
|
44431
44438
|
*
|
|
44432
|
-
* @deprecated (since 1.56)
|
|
44439
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
44440
|
+
* instead.
|
|
44433
44441
|
*/
|
|
44434
44442
|
export interface $TemplateControlSettings extends $ControlSettings {
|
|
44435
44443
|
/**
|
|
@@ -45034,7 +45042,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45034
45042
|
*
|
|
45035
45043
|
* @since 1.107
|
|
45036
45044
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
45037
|
-
*
|
|
45045
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45038
45046
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45039
45047
|
*/
|
|
45040
45048
|
static registry: registry;
|
|
@@ -45350,7 +45358,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45350
45358
|
* The node must have an ID that will be used as ID for this instance of `UIArea`.
|
|
45351
45359
|
*
|
|
45352
45360
|
* @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
|
|
45353
|
-
* programmatically.
|
|
45361
|
+
* programmatically. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45354
45362
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45355
45363
|
*/
|
|
45356
45364
|
setRootNode(
|
|
@@ -45371,7 +45379,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45371
45379
|
*
|
|
45372
45380
|
* @since 1.107
|
|
45373
45381
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
45374
|
-
*
|
|
45382
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45375
45383
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45376
45384
|
*/
|
|
45377
45385
|
interface registry {
|
|
@@ -45379,7 +45387,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45379
45387
|
* Number of existing UIAreas.
|
|
45380
45388
|
*
|
|
45381
45389
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
45382
|
-
*
|
|
45390
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45383
45391
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45384
45392
|
*/
|
|
45385
45393
|
size: int;
|
|
@@ -45483,8 +45491,8 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45483
45491
|
* When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
|
|
45484
45492
|
* returned.
|
|
45485
45493
|
*
|
|
45486
|
-
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in
|
|
45487
|
-
*
|
|
45494
|
+
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in a certain
|
|
45495
|
+
* `UIArea`. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45488
45496
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45489
45497
|
*
|
|
45490
45498
|
* @returns UIArea with the given ID or `undefined`
|
|
@@ -47243,7 +47251,7 @@ declare module "sap/ui/core/util/MockServer" {
|
|
|
47243
47251
|
/**
|
|
47244
47252
|
* Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
|
|
47245
47253
|
*/
|
|
47246
|
-
export default
|
|
47254
|
+
export default class MockServer extends ManagedObject {
|
|
47247
47255
|
/**
|
|
47248
47256
|
* Creates a mocked server. This helps to mock some back-end calls, e.g. for OData V2/JSON Models or simple
|
|
47249
47257
|
* XHR calls, without changing the application code. This class can also be used for qunit tests.
|
|
@@ -56126,9 +56134,13 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56126
56134
|
oContext?: Context
|
|
56127
56135
|
): any | null | undefined;
|
|
56128
56136
|
/**
|
|
56129
|
-
*
|
|
56130
|
-
*
|
|
56131
|
-
*
|
|
56137
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
56138
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
56139
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
56140
|
+
*
|
|
56141
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
56142
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
56143
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
56132
56144
|
*
|
|
56133
56145
|
*
|
|
56134
56146
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
@@ -56136,15 +56148,16 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56136
56148
|
*/
|
|
56137
56149
|
loadData(
|
|
56138
56150
|
/**
|
|
56139
|
-
* A string containing the URL to which the request is sent
|
|
56151
|
+
* A string containing the URL to which the request is sent
|
|
56140
56152
|
*/
|
|
56141
56153
|
sURL: string,
|
|
56142
56154
|
/**
|
|
56143
|
-
*
|
|
56144
|
-
*
|
|
56145
|
-
*
|
|
56146
|
-
*
|
|
56147
|
-
* body.
|
|
56155
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
56156
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
56157
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
56158
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
56159
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
56160
|
+
* Otherwise, the resulting string is added to the request body.
|
|
56148
56161
|
*/
|
|
56149
56162
|
oParameters?: object | string,
|
|
56150
56163
|
/**
|
|
@@ -56154,8 +56167,7 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56154
56167
|
*/
|
|
56155
56168
|
bAsync?: boolean,
|
|
56156
56169
|
/**
|
|
56157
|
-
* The
|
|
56158
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
56170
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
56159
56171
|
*/
|
|
56160
56172
|
sType?: string,
|
|
56161
56173
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -2457,12 +2457,12 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2457
2457
|
|
|
2458
2458
|
import ListBinding from "sap/ui/model/ListBinding";
|
|
2459
2459
|
|
|
2460
|
+
import { ConditionObject } from "sap/ui/mdc/condition/Condition";
|
|
2461
|
+
|
|
2460
2462
|
import FilterableListContent from "sap/ui/mdc/valuehelp/base/FilterableListContent";
|
|
2461
2463
|
|
|
2462
2464
|
import Context from "sap/ui/model/Context";
|
|
2463
2465
|
|
|
2464
|
-
import { ConditionObject } from "sap/ui/mdc/condition/Condition";
|
|
2465
|
-
|
|
2466
2466
|
import { util } from "sap/ui/mdc/library";
|
|
2467
2467
|
|
|
2468
2468
|
import Filter from "sap/ui/model/Filter";
|
|
@@ -2507,6 +2507,28 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2507
2507
|
*/
|
|
2508
2508
|
iRequestedItems: int
|
|
2509
2509
|
): boolean | Promise<boolean>;
|
|
2510
|
+
/**
|
|
2511
|
+
* Allows control to customize selection behavior in valuelist scenarios
|
|
2512
|
+
*
|
|
2513
|
+
* @since 1.124.2
|
|
2514
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2515
|
+
*
|
|
2516
|
+
* @returns `true` if conditions are considered equal
|
|
2517
|
+
*/
|
|
2518
|
+
compareConditions(
|
|
2519
|
+
/**
|
|
2520
|
+
* The `ValueHelp` control instance
|
|
2521
|
+
*/
|
|
2522
|
+
oValueHelp: ValueHelp,
|
|
2523
|
+
/**
|
|
2524
|
+
* Condition to compare
|
|
2525
|
+
*/
|
|
2526
|
+
oConditionA: ConditionObject,
|
|
2527
|
+
/**
|
|
2528
|
+
* Condition to compare
|
|
2529
|
+
*/
|
|
2530
|
+
oConditionB: ConditionObject
|
|
2531
|
+
): boolean;
|
|
2510
2532
|
/**
|
|
2511
2533
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
2512
2534
|
* conditions with data relevant for combined key or out parameter scenarios.
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -3005,8 +3005,11 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3005
3005
|
|
|
3006
3006
|
/**
|
|
3007
3007
|
* Implements a plugin to enable a special multi-selection behavior:
|
|
3008
|
-
* -
|
|
3009
|
-
*
|
|
3008
|
+
* - Select All checkbox for selecting rows up to the set limit.
|
|
3009
|
+
* If the number of selected rows is smaller than the limit, all these rows can be selected at once with
|
|
3010
|
+
* a single operation. If there are more rows than the limit, the first x rows are selected until the limit
|
|
3011
|
+
* x has been reached.
|
|
3012
|
+
* - Dedicated Deselect All button for removing the selection
|
|
3010
3013
|
* - The number of indices which can be selected in a range is defined by the `limit` property. If the
|
|
3011
3014
|
* user tries to select more indices, the selection is automatically limited, and the table scrolls to the
|
|
3012
3015
|
* last selected index.
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED