@openui5/types 1.124.1 → 1.124.3
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.f.d.ts +44 -1
- package/types/sap.m.d.ts +174 -27
- 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.core.d.ts +97 -35
- package/types/sap.ui.dt.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.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.uxap.d.ts +44 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -5349,6 +5349,19 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5349
5349
|
getFooterRole():
|
|
5350
5350
|
| AccessibleLandmarkRole
|
|
5351
5351
|
| keyof typeof AccessibleLandmarkRole;
|
|
5352
|
+
/**
|
|
5353
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
5354
|
+
*
|
|
5355
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5356
|
+
* control.
|
|
5357
|
+
*
|
|
5358
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5359
|
+
*
|
|
5360
|
+
* @since 1.127.0
|
|
5361
|
+
*
|
|
5362
|
+
* @returns Value of property `headerContentLabel`
|
|
5363
|
+
*/
|
|
5364
|
+
getHeaderContentLabel(): string;
|
|
5352
5365
|
/**
|
|
5353
5366
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
5354
5367
|
*
|
|
@@ -5481,6 +5494,26 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5481
5494
|
*/
|
|
5482
5495
|
sFooterRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
5483
5496
|
): this;
|
|
5497
|
+
/**
|
|
5498
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
5499
|
+
*
|
|
5500
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5501
|
+
* control.
|
|
5502
|
+
*
|
|
5503
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5504
|
+
*
|
|
5505
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5506
|
+
*
|
|
5507
|
+
* @since 1.127.0
|
|
5508
|
+
*
|
|
5509
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5510
|
+
*/
|
|
5511
|
+
setHeaderContentLabel(
|
|
5512
|
+
/**
|
|
5513
|
+
* New value for property `headerContentLabel`
|
|
5514
|
+
*/
|
|
5515
|
+
sHeaderContentLabel?: string
|
|
5516
|
+
): this;
|
|
5484
5517
|
/**
|
|
5485
5518
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
5486
5519
|
*
|
|
@@ -5636,6 +5669,16 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5636
5669
|
* is set.
|
|
5637
5670
|
*/
|
|
5638
5671
|
footerLabel?: string | PropertyBindingInfo;
|
|
5672
|
+
|
|
5673
|
+
/**
|
|
5674
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
5675
|
+
* control.
|
|
5676
|
+
*
|
|
5677
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
5678
|
+
*
|
|
5679
|
+
* @since 1.127.0
|
|
5680
|
+
*/
|
|
5681
|
+
headerContentLabel?: string | PropertyBindingInfo;
|
|
5639
5682
|
}
|
|
5640
5683
|
}
|
|
5641
5684
|
|
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.3
|
|
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
|
|
|
@@ -8911,7 +8971,6 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
8911
8971
|
* Determines the text of current/last element in the Breadcrumbs path.
|
|
8912
8972
|
*
|
|
8913
8973
|
* @since 1.34
|
|
8914
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
8915
8974
|
*
|
|
8916
8975
|
* @returns Value of property `currentLocationText`
|
|
8917
8976
|
*/
|
|
@@ -9038,7 +9097,6 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
9038
9097
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9039
9098
|
*
|
|
9040
9099
|
* @since 1.34
|
|
9041
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
9042
9100
|
*
|
|
9043
9101
|
* @returns Reference to `this` in order to allow method chaining
|
|
9044
9102
|
*/
|
|
@@ -9069,7 +9127,6 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
9069
9127
|
* Determines the text of current/last element in the Breadcrumbs path.
|
|
9070
9128
|
*
|
|
9071
9129
|
* @since 1.34
|
|
9072
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
9073
9130
|
*/
|
|
9074
9131
|
currentLocationText?: string | PropertyBindingInfo;
|
|
9075
9132
|
|
|
@@ -46563,8 +46620,9 @@ declare module "sap/m/Label" {
|
|
|
46563
46620
|
/**
|
|
46564
46621
|
* Gets current value of property {@link #getWrapping wrapping}.
|
|
46565
46622
|
*
|
|
46566
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46567
|
-
*
|
|
46623
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46624
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46625
|
+
* wrap.
|
|
46568
46626
|
*
|
|
46569
46627
|
* Default value is `false`.
|
|
46570
46628
|
*
|
|
@@ -46774,8 +46832,9 @@ declare module "sap/m/Label" {
|
|
|
46774
46832
|
/**
|
|
46775
46833
|
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
46776
46834
|
*
|
|
46777
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46778
|
-
*
|
|
46835
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46836
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46837
|
+
* wrap.
|
|
46779
46838
|
*
|
|
46780
46839
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46781
46840
|
*
|
|
@@ -46868,8 +46927,9 @@ declare module "sap/m/Label" {
|
|
|
46868
46927
|
displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46869
46928
|
|
|
46870
46929
|
/**
|
|
46871
|
-
* Determines the wrapping of the text within the `Label`.
|
|
46872
|
-
*
|
|
46930
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
46931
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
46932
|
+
* wrap.
|
|
46873
46933
|
*
|
|
46874
46934
|
* @since 1.50
|
|
46875
46935
|
*/
|
|
@@ -72379,7 +72439,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72379
72439
|
*
|
|
72380
72440
|
* Default value is `true`.
|
|
72381
72441
|
*
|
|
72382
|
-
* @deprecated (since 1.32
|
|
72442
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72383
72443
|
*
|
|
72384
72444
|
* @returns Value of property `moveToOverflow`
|
|
72385
72445
|
*/
|
|
@@ -72461,7 +72521,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72461
72521
|
*
|
|
72462
72522
|
* Default value is `true`.
|
|
72463
72523
|
*
|
|
72464
|
-
* @deprecated (since 1.32
|
|
72524
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72465
72525
|
*
|
|
72466
72526
|
* @returns Reference to `this` in order to allow method chaining
|
|
72467
72527
|
*/
|
|
@@ -72519,7 +72579,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
|
|
|
72519
72579
|
/**
|
|
72520
72580
|
* The OverflowToolbar item can or cannot move to the overflow area
|
|
72521
72581
|
*
|
|
72522
|
-
* @deprecated (since 1.32
|
|
72582
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
72523
72583
|
*/
|
|
72524
72584
|
moveToOverflow?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
72525
72585
|
|
|
@@ -100546,6 +100606,8 @@ declare module "sap/m/RadioButton" {
|
|
|
100546
100606
|
|
|
100547
100607
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
100548
100608
|
|
|
100609
|
+
import { WrappingType } from "sap/m/library";
|
|
100610
|
+
|
|
100549
100611
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
100550
100612
|
|
|
100551
100613
|
import Event from "sap/ui/base/Event";
|
|
@@ -100919,6 +100981,32 @@ declare module "sap/m/RadioButton" {
|
|
|
100919
100981
|
* @returns Value of property `width`
|
|
100920
100982
|
*/
|
|
100921
100983
|
getWidth(): CSSSize;
|
|
100984
|
+
/**
|
|
100985
|
+
* Gets current value of property {@link #getWrapping wrapping}.
|
|
100986
|
+
*
|
|
100987
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
100988
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
100989
|
+
* will wrap.
|
|
100990
|
+
*
|
|
100991
|
+
* Default value is `false`.
|
|
100992
|
+
*
|
|
100993
|
+
* @since 1.126
|
|
100994
|
+
*
|
|
100995
|
+
* @returns Value of property `wrapping`
|
|
100996
|
+
*/
|
|
100997
|
+
getWrapping(): boolean;
|
|
100998
|
+
/**
|
|
100999
|
+
* Gets current value of property {@link #getWrappingType wrappingType}.
|
|
101000
|
+
*
|
|
101001
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101002
|
+
*
|
|
101003
|
+
* Default value is `Normal`.
|
|
101004
|
+
*
|
|
101005
|
+
* @since 1.126
|
|
101006
|
+
*
|
|
101007
|
+
* @returns Value of property `wrappingType`
|
|
101008
|
+
*/
|
|
101009
|
+
getWrappingType(): WrappingType | keyof typeof WrappingType;
|
|
100922
101010
|
/**
|
|
100923
101011
|
* Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
|
|
100924
101012
|
*/
|
|
@@ -101171,6 +101259,46 @@ declare module "sap/m/RadioButton" {
|
|
|
101171
101259
|
*/
|
|
101172
101260
|
sWidth?: CSSSize
|
|
101173
101261
|
): this;
|
|
101262
|
+
/**
|
|
101263
|
+
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
101264
|
+
*
|
|
101265
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
101266
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
101267
|
+
* will wrap.
|
|
101268
|
+
*
|
|
101269
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101270
|
+
*
|
|
101271
|
+
* Default value is `false`.
|
|
101272
|
+
*
|
|
101273
|
+
* @since 1.126
|
|
101274
|
+
*
|
|
101275
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101276
|
+
*/
|
|
101277
|
+
setWrapping(
|
|
101278
|
+
/**
|
|
101279
|
+
* New value for property `wrapping`
|
|
101280
|
+
*/
|
|
101281
|
+
bWrapping?: boolean
|
|
101282
|
+
): this;
|
|
101283
|
+
/**
|
|
101284
|
+
* Sets a new value for property {@link #getWrappingType wrappingType}.
|
|
101285
|
+
*
|
|
101286
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101287
|
+
*
|
|
101288
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
101289
|
+
*
|
|
101290
|
+
* Default value is `Normal`.
|
|
101291
|
+
*
|
|
101292
|
+
* @since 1.126
|
|
101293
|
+
*
|
|
101294
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
101295
|
+
*/
|
|
101296
|
+
setWrappingType(
|
|
101297
|
+
/**
|
|
101298
|
+
* New value for property `wrappingType`
|
|
101299
|
+
*/
|
|
101300
|
+
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
101301
|
+
): this;
|
|
101174
101302
|
}
|
|
101175
101303
|
/**
|
|
101176
101304
|
* Describes the settings that can be provided to the RadioButton constructor.
|
|
@@ -101261,6 +101389,25 @@ declare module "sap/m/RadioButton" {
|
|
|
101261
101389
|
| PropertyBindingInfo
|
|
101262
101390
|
| `{${string}}`;
|
|
101263
101391
|
|
|
101392
|
+
/**
|
|
101393
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
101394
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
101395
|
+
* will wrap.
|
|
101396
|
+
*
|
|
101397
|
+
* @since 1.126
|
|
101398
|
+
*/
|
|
101399
|
+
wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
101400
|
+
|
|
101401
|
+
/**
|
|
101402
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
101403
|
+
*
|
|
101404
|
+
* @since 1.126
|
|
101405
|
+
*/
|
|
101406
|
+
wrappingType?:
|
|
101407
|
+
| (WrappingType | keyof typeof WrappingType)
|
|
101408
|
+
| PropertyBindingInfo
|
|
101409
|
+
| `{${string}}`;
|
|
101410
|
+
|
|
101264
101411
|
/**
|
|
101265
101412
|
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
101266
101413
|
*/
|
|
@@ -157672,7 +157819,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
157672
157819
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
157673
157820
|
* supported by Internet Explorer 9.
|
|
157674
157821
|
*/
|
|
157675
|
-
readyState?:
|
|
157822
|
+
readyState?: int;
|
|
157676
157823
|
|
|
157677
157824
|
/**
|
|
157678
157825
|
* Status of the XHR request.
|
|
@@ -157680,7 +157827,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
157680
157827
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
157681
157828
|
* by Internet Explorer 9.
|
|
157682
157829
|
*/
|
|
157683
|
-
status?:
|
|
157830
|
+
status?: int;
|
|
157684
157831
|
|
|
157685
157832
|
/**
|
|
157686
157833
|
* Http-Response which comes from the server.
|
package/types/sap.tnt.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.3
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -33739,14 +33739,64 @@ declare module "sap/ui/core/mvc/ControllerExtension" {
|
|
|
33739
33739
|
* **Note:** This static method is automatically propagated to subclasses of `ControllerExtension`.
|
|
33740
33740
|
*
|
|
33741
33741
|
*
|
|
33742
|
-
* @returns
|
|
33742
|
+
* @returns The adapted controller extension class
|
|
33743
33743
|
*/
|
|
33744
|
-
static override
|
|
33744
|
+
static override<
|
|
33745
|
+
TheExtension extends new () => ControllerExtension,
|
|
33746
|
+
AddtlProps extends object,
|
|
33747
|
+
>(
|
|
33748
|
+
this: TheExtension,
|
|
33745
33749
|
/**
|
|
33746
33750
|
* The custom extension definition
|
|
33747
33751
|
*/
|
|
33748
|
-
|
|
33749
|
-
):
|
|
33752
|
+
customExtension: AddtlProps
|
|
33753
|
+
): new () => InstanceType<TheExtension> & AddtlProps;
|
|
33754
|
+
/**
|
|
33755
|
+
* A marker method for applying controller extensions to controller class members in TypeScript code.
|
|
33756
|
+
* This method is only used to make TypeScript usage compatible to the UI5 runtime behavior, where an extension
|
|
33757
|
+
* *class* is assigned when the controller is defined, but each controller instance gets an *instance* of
|
|
33758
|
+
* this extension. This method call is removed in the class transformer when the ES class is transformed
|
|
33759
|
+
* to the traditional UI5 class definition syntax.
|
|
33760
|
+
*
|
|
33761
|
+
* To allow for proper removal, it may only be called directly on the base class `ControllerExtension`,
|
|
33762
|
+
* at the place where a controller extension is assigned to a member property of the new controller class.
|
|
33763
|
+
* The class transformation then removes this call. If it is not removed because it is used in any other
|
|
33764
|
+
* way, then it throws an error at runtime.
|
|
33765
|
+
*
|
|
33766
|
+
* Usage example:
|
|
33767
|
+
* ```javascript
|
|
33768
|
+
* import Routing from "sap/fe/core/controllerextensions/Routing";
|
|
33769
|
+
* import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
33770
|
+
* ...
|
|
33771
|
+
* export default class App extends Controller {
|
|
33772
|
+
* routing = ControllerExtension.use(Routing);
|
|
33773
|
+
* ```
|
|
33774
|
+
*
|
|
33775
|
+
* Usage example with overriding extension callbacks:
|
|
33776
|
+
* ```javascript
|
|
33777
|
+
* import Routing from "sap/fe/core/controllerextensions/Routing";
|
|
33778
|
+
* import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
33779
|
+
* ...
|
|
33780
|
+
* export default class App extends Controller {
|
|
33781
|
+
* routing = ControllerExtension.use(Routing.override({
|
|
33782
|
+
* ...
|
|
33783
|
+
* }));
|
|
33784
|
+
* ```
|
|
33785
|
+
*
|
|
33786
|
+
*
|
|
33787
|
+
*
|
|
33788
|
+
* @returns An instance of the given `ControllerExtension`. **NOTE:** this is only a dummy return type for
|
|
33789
|
+
* proper usage in TypeScript. This method does not actually return an instance of `ControllerExtension`,
|
|
33790
|
+
* but only throws an error at runtime. The sole purpose of this method is to mimic the actual runtime behavior
|
|
33791
|
+
* where a *class* is given when a controller is defined, but an *instance* is present in each controller
|
|
33792
|
+
* instance.
|
|
33793
|
+
*/
|
|
33794
|
+
static use<TheExtension extends ControllerExtension>(
|
|
33795
|
+
/**
|
|
33796
|
+
* The ControllerExtension to use
|
|
33797
|
+
*/
|
|
33798
|
+
extensionClass: new () => TheExtension
|
|
33799
|
+
): TheExtension;
|
|
33750
33800
|
/**
|
|
33751
33801
|
* Returns an Element of the connected view with the given local ID.
|
|
33752
33802
|
*
|
|
@@ -42230,7 +42280,7 @@ declare module "sap/ui/core/search/OpenSearchProvider" {
|
|
|
42230
42280
|
/**
|
|
42231
42281
|
* A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
|
|
42232
42282
|
*
|
|
42233
|
-
* @deprecated (since 1.120)
|
|
42283
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42234
42284
|
*/
|
|
42235
42285
|
export default class OpenSearchProvider extends SearchProvider {
|
|
42236
42286
|
/**
|
|
@@ -42370,7 +42420,7 @@ declare module "sap/ui/core/search/OpenSearchProvider" {
|
|
|
42370
42420
|
/**
|
|
42371
42421
|
* Describes the settings that can be provided to the OpenSearchProvider constructor.
|
|
42372
42422
|
*
|
|
42373
|
-
* @deprecated (since 1.120)
|
|
42423
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42374
42424
|
*/
|
|
42375
42425
|
export interface $OpenSearchProviderSettings extends $SearchProviderSettings {
|
|
42376
42426
|
/**
|
|
@@ -42398,7 +42448,7 @@ declare module "sap/ui/core/search/SearchProvider" {
|
|
|
42398
42448
|
*
|
|
42399
42449
|
* Do not create instances of this class, but use a concrete subclass instead.
|
|
42400
42450
|
*
|
|
42401
|
-
* @deprecated (since 1.120)
|
|
42451
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42402
42452
|
*/
|
|
42403
42453
|
export default abstract class SearchProvider extends UI5Element {
|
|
42404
42454
|
/**
|
|
@@ -42507,7 +42557,7 @@ declare module "sap/ui/core/search/SearchProvider" {
|
|
|
42507
42557
|
/**
|
|
42508
42558
|
* Describes the settings that can be provided to the SearchProvider constructor.
|
|
42509
42559
|
*
|
|
42510
|
-
* @deprecated (since 1.120)
|
|
42560
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
42511
42561
|
*/
|
|
42512
42562
|
export interface $SearchProviderSettings extends $ElementSettings {
|
|
42513
42563
|
/**
|
|
@@ -43117,7 +43167,8 @@ declare module "sap/ui/core/tmpl/DOMAttribute" {
|
|
|
43117
43167
|
* Represents a DOM attribute of a DOM element.
|
|
43118
43168
|
*
|
|
43119
43169
|
* @since 1.15
|
|
43120
|
-
* @deprecated (since 1.56)
|
|
43170
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43171
|
+
* instead.
|
|
43121
43172
|
*/
|
|
43122
43173
|
export default class DOMAttribute extends UI5Element {
|
|
43123
43174
|
/**
|
|
@@ -43236,7 +43287,8 @@ declare module "sap/ui/core/tmpl/DOMAttribute" {
|
|
|
43236
43287
|
/**
|
|
43237
43288
|
* Describes the settings that can be provided to the DOMAttribute constructor.
|
|
43238
43289
|
*
|
|
43239
|
-
* @deprecated (since 1.56)
|
|
43290
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43291
|
+
* instead.
|
|
43240
43292
|
*/
|
|
43241
43293
|
export interface $DOMAttributeSettings extends $ElementSettings {
|
|
43242
43294
|
/**
|
|
@@ -43267,7 +43319,8 @@ declare module "sap/ui/core/tmpl/DOMElement" {
|
|
|
43267
43319
|
* Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
|
|
43268
43320
|
*
|
|
43269
43321
|
* @since 1.15
|
|
43270
|
-
* @deprecated (since 1.56)
|
|
43322
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43323
|
+
* instead.
|
|
43271
43324
|
*/
|
|
43272
43325
|
export default class DOMElement extends Control {
|
|
43273
43326
|
/**
|
|
@@ -43574,7 +43627,8 @@ declare module "sap/ui/core/tmpl/DOMElement" {
|
|
|
43574
43627
|
/**
|
|
43575
43628
|
* Describes the settings that can be provided to the DOMElement constructor.
|
|
43576
43629
|
*
|
|
43577
|
-
* @deprecated (since 1.56)
|
|
43630
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43631
|
+
* instead.
|
|
43578
43632
|
*/
|
|
43579
43633
|
export interface $DOMElementSettings extends $ControlSettings {
|
|
43580
43634
|
/**
|
|
@@ -43619,7 +43673,8 @@ declare module "sap/ui/core/tmpl/HandlebarsTemplate" {
|
|
|
43619
43673
|
* The class for Handlebars Templates.
|
|
43620
43674
|
*
|
|
43621
43675
|
* @since 1.15
|
|
43622
|
-
* @deprecated (since 1.56)
|
|
43676
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43677
|
+
* instead.
|
|
43623
43678
|
*/
|
|
43624
43679
|
export default abstract class HandlebarsTemplate extends Template {
|
|
43625
43680
|
/**
|
|
@@ -43701,7 +43756,8 @@ declare module "sap/ui/core/tmpl/HandlebarsTemplate" {
|
|
|
43701
43756
|
/**
|
|
43702
43757
|
* Describes the settings that can be provided to the HandlebarsTemplate constructor.
|
|
43703
43758
|
*
|
|
43704
|
-
* @deprecated (since 1.56)
|
|
43759
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
43760
|
+
* instead.
|
|
43705
43761
|
*/
|
|
43706
43762
|
export interface $HandlebarsTemplateSettings extends $TemplateSettings {}
|
|
43707
43763
|
}
|
|
@@ -43998,7 +44054,8 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
|
|
|
43998
44054
|
* This is the base class for all template controls. Template controls are declared based on templates.
|
|
43999
44055
|
*
|
|
44000
44056
|
* @since 1.15
|
|
44001
|
-
* @deprecated (since 1.56)
|
|
44057
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
44058
|
+
* instead.
|
|
44002
44059
|
*/
|
|
44003
44060
|
export default class TemplateControl extends Control {
|
|
44004
44061
|
/**
|
|
@@ -44429,7 +44486,8 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
|
|
|
44429
44486
|
/**
|
|
44430
44487
|
* Describes the settings that can be provided to the TemplateControl constructor.
|
|
44431
44488
|
*
|
|
44432
|
-
* @deprecated (since 1.56)
|
|
44489
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
44490
|
+
* instead.
|
|
44433
44491
|
*/
|
|
44434
44492
|
export interface $TemplateControlSettings extends $ControlSettings {
|
|
44435
44493
|
/**
|
|
@@ -45034,7 +45092,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45034
45092
|
*
|
|
45035
45093
|
* @since 1.107
|
|
45036
45094
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
45037
|
-
*
|
|
45095
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45038
45096
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45039
45097
|
*/
|
|
45040
45098
|
static registry: registry;
|
|
@@ -45350,7 +45408,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45350
45408
|
* The node must have an ID that will be used as ID for this instance of `UIArea`.
|
|
45351
45409
|
*
|
|
45352
45410
|
* @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
|
|
45353
|
-
* programmatically.
|
|
45411
|
+
* programmatically. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45354
45412
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45355
45413
|
*/
|
|
45356
45414
|
setRootNode(
|
|
@@ -45371,7 +45429,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45371
45429
|
*
|
|
45372
45430
|
* @since 1.107
|
|
45373
45431
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
45374
|
-
*
|
|
45432
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45375
45433
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45376
45434
|
*/
|
|
45377
45435
|
interface registry {
|
|
@@ -45379,7 +45437,7 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45379
45437
|
* Number of existing UIAreas.
|
|
45380
45438
|
*
|
|
45381
45439
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
45382
|
-
*
|
|
45440
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45383
45441
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45384
45442
|
*/
|
|
45385
45443
|
size: int;
|
|
@@ -45483,8 +45541,8 @@ declare module "sap/ui/core/UIArea" {
|
|
|
45483
45541
|
* When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
|
|
45484
45542
|
* returned.
|
|
45485
45543
|
*
|
|
45486
|
-
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in
|
|
45487
|
-
*
|
|
45544
|
+
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in a certain
|
|
45545
|
+
* `UIArea`. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
45488
45546
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
45489
45547
|
*
|
|
45490
45548
|
* @returns UIArea with the given ID or `undefined`
|
|
@@ -47243,7 +47301,7 @@ declare module "sap/ui/core/util/MockServer" {
|
|
|
47243
47301
|
/**
|
|
47244
47302
|
* Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
|
|
47245
47303
|
*/
|
|
47246
|
-
export default
|
|
47304
|
+
export default class MockServer extends ManagedObject {
|
|
47247
47305
|
/**
|
|
47248
47306
|
* Creates a mocked server. This helps to mock some back-end calls, e.g. for OData V2/JSON Models or simple
|
|
47249
47307
|
* XHR calls, without changing the application code. This class can also be used for qunit tests.
|
|
@@ -56126,9 +56184,13 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56126
56184
|
oContext?: Context
|
|
56127
56185
|
): any | null | undefined;
|
|
56128
56186
|
/**
|
|
56129
|
-
*
|
|
56130
|
-
*
|
|
56131
|
-
*
|
|
56187
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
56188
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
56189
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
56190
|
+
*
|
|
56191
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
56192
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
56193
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
56132
56194
|
*
|
|
56133
56195
|
*
|
|
56134
56196
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
@@ -56136,15 +56198,16 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56136
56198
|
*/
|
|
56137
56199
|
loadData(
|
|
56138
56200
|
/**
|
|
56139
|
-
* A string containing the URL to which the request is sent
|
|
56201
|
+
* A string containing the URL to which the request is sent
|
|
56140
56202
|
*/
|
|
56141
56203
|
sURL: string,
|
|
56142
56204
|
/**
|
|
56143
|
-
*
|
|
56144
|
-
*
|
|
56145
|
-
*
|
|
56146
|
-
*
|
|
56147
|
-
* body.
|
|
56205
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
56206
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
56207
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
56208
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
56209
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
56210
|
+
* Otherwise, the resulting string is added to the request body.
|
|
56148
56211
|
*/
|
|
56149
56212
|
oParameters?: object | string,
|
|
56150
56213
|
/**
|
|
@@ -56154,8 +56217,7 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56154
56217
|
*/
|
|
56155
56218
|
bAsync?: boolean,
|
|
56156
56219
|
/**
|
|
56157
|
-
* The
|
|
56158
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
56220
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
56159
56221
|
*/
|
|
56160
56222
|
sType?: string,
|
|
56161
56223
|
/**
|
package/types/sap.ui.dt.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.3
|
|
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.3
|
|
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.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -1675,6 +1675,19 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1675
1675
|
getFooterRole():
|
|
1676
1676
|
| AccessibleLandmarkRole
|
|
1677
1677
|
| keyof typeof AccessibleLandmarkRole;
|
|
1678
|
+
/**
|
|
1679
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
1680
|
+
*
|
|
1681
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
1682
|
+
* control.
|
|
1683
|
+
*
|
|
1684
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
1685
|
+
*
|
|
1686
|
+
* @since 1.127.0
|
|
1687
|
+
*
|
|
1688
|
+
* @returns Value of property `headerContentLabel`
|
|
1689
|
+
*/
|
|
1690
|
+
getHeaderContentLabel(): string;
|
|
1678
1691
|
/**
|
|
1679
1692
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
1680
1693
|
*
|
|
@@ -1839,6 +1852,26 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1839
1852
|
*/
|
|
1840
1853
|
sFooterRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
1841
1854
|
): this;
|
|
1855
|
+
/**
|
|
1856
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
1857
|
+
*
|
|
1858
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
1859
|
+
* control.
|
|
1860
|
+
*
|
|
1861
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
1862
|
+
*
|
|
1863
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1864
|
+
*
|
|
1865
|
+
* @since 1.127.0
|
|
1866
|
+
*
|
|
1867
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1868
|
+
*/
|
|
1869
|
+
setHeaderContentLabel(
|
|
1870
|
+
/**
|
|
1871
|
+
* New value for property `headerContentLabel`
|
|
1872
|
+
*/
|
|
1873
|
+
sHeaderContentLabel?: string
|
|
1874
|
+
): this;
|
|
1842
1875
|
/**
|
|
1843
1876
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
1844
1877
|
*
|
|
@@ -2061,6 +2094,16 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
2061
2094
|
* is set.
|
|
2062
2095
|
*/
|
|
2063
2096
|
footerLabel?: string | PropertyBindingInfo;
|
|
2097
|
+
|
|
2098
|
+
/**
|
|
2099
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
2100
|
+
* control.
|
|
2101
|
+
*
|
|
2102
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
2103
|
+
*
|
|
2104
|
+
* @since 1.127.0
|
|
2105
|
+
*/
|
|
2106
|
+
headerContentLabel?: string | PropertyBindingInfo;
|
|
2064
2107
|
}
|
|
2065
2108
|
}
|
|
2066
2109
|
|