@openui5/ts-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 +46 -1
- package/types/sap.m.d.ts +176 -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 +96 -34
- 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 +23 -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 +3 -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 +46 -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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -8420,6 +8420,18 @@ declare namespace sap {
|
|
|
8420
8420
|
* is set.
|
|
8421
8421
|
*/
|
|
8422
8422
|
footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8423
|
+
|
|
8424
|
+
/**
|
|
8425
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
8426
|
+
* control.
|
|
8427
|
+
*
|
|
8428
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
8429
|
+
*
|
|
8430
|
+
* @since 1.127.0
|
|
8431
|
+
*/
|
|
8432
|
+
headerContentLabel?:
|
|
8433
|
+
| string
|
|
8434
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8423
8435
|
}
|
|
8424
8436
|
|
|
8425
8437
|
/**
|
|
@@ -12120,6 +12132,19 @@ declare namespace sap {
|
|
|
12120
12132
|
* @returns Value of property `footerRole`
|
|
12121
12133
|
*/
|
|
12122
12134
|
getFooterRole(): sap.ui.core.AccessibleLandmarkRole;
|
|
12135
|
+
/**
|
|
12136
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
12137
|
+
*
|
|
12138
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
12139
|
+
* control.
|
|
12140
|
+
*
|
|
12141
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
12142
|
+
*
|
|
12143
|
+
* @since 1.127.0
|
|
12144
|
+
*
|
|
12145
|
+
* @returns Value of property `headerContentLabel`
|
|
12146
|
+
*/
|
|
12147
|
+
getHeaderContentLabel(): string;
|
|
12123
12148
|
/**
|
|
12124
12149
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
12125
12150
|
*
|
|
@@ -12248,6 +12273,26 @@ declare namespace sap {
|
|
|
12248
12273
|
*/
|
|
12249
12274
|
sFooterRole?: sap.ui.core.AccessibleLandmarkRole
|
|
12250
12275
|
): this;
|
|
12276
|
+
/**
|
|
12277
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
12278
|
+
*
|
|
12279
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.f.DynamicPage`
|
|
12280
|
+
* control.
|
|
12281
|
+
*
|
|
12282
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
12283
|
+
*
|
|
12284
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12285
|
+
*
|
|
12286
|
+
* @since 1.127.0
|
|
12287
|
+
*
|
|
12288
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12289
|
+
*/
|
|
12290
|
+
setHeaderContentLabel(
|
|
12291
|
+
/**
|
|
12292
|
+
* New value for property `headerContentLabel`
|
|
12293
|
+
*/
|
|
12294
|
+
sHeaderContentLabel?: string
|
|
12295
|
+
): this;
|
|
12251
12296
|
/**
|
|
12252
12297
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
12253
12298
|
*
|
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -18853,7 +18853,7 @@ declare namespace sap {
|
|
|
18853
18853
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
18854
18854
|
* supported by Internet Explorer 9.
|
|
18855
18855
|
*/
|
|
18856
|
-
readyState?:
|
|
18856
|
+
readyState?: int;
|
|
18857
18857
|
|
|
18858
18858
|
/**
|
|
18859
18859
|
* Status of the XHR request.
|
|
@@ -18861,7 +18861,7 @@ declare namespace sap {
|
|
|
18861
18861
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
18862
18862
|
* by Internet Explorer 9.
|
|
18863
18863
|
*/
|
|
18864
|
-
status?:
|
|
18864
|
+
status?: int;
|
|
18865
18865
|
|
|
18866
18866
|
/**
|
|
18867
18867
|
* Http-Response which comes from the server.
|
|
@@ -27691,6 +27691,26 @@ declare namespace sap {
|
|
|
27691
27691
|
* @experimental (since 1.124)
|
|
27692
27692
|
*/
|
|
27693
27693
|
priorityText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
27694
|
+
|
|
27695
|
+
/**
|
|
27696
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
27697
|
+
*
|
|
27698
|
+
* @experimental (since 1.124)
|
|
27699
|
+
*/
|
|
27700
|
+
badgeIcon?:
|
|
27701
|
+
| sap.ui.core.URI
|
|
27702
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27703
|
+
| `{${string}}`;
|
|
27704
|
+
|
|
27705
|
+
/**
|
|
27706
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
27707
|
+
*
|
|
27708
|
+
* @experimental (since 1.124)
|
|
27709
|
+
*/
|
|
27710
|
+
badgeValueState?:
|
|
27711
|
+
| sap.ui.core.ValueState
|
|
27712
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27713
|
+
| `{${string}}`;
|
|
27694
27714
|
}
|
|
27695
27715
|
|
|
27696
27716
|
/**
|
|
@@ -28158,7 +28178,6 @@ declare namespace sap {
|
|
|
28158
28178
|
* Determines the text of current/last element in the Breadcrumbs path.
|
|
28159
28179
|
*
|
|
28160
28180
|
* @since 1.34
|
|
28161
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
28162
28181
|
*/
|
|
28163
28182
|
currentLocationText?:
|
|
28164
28183
|
| string
|
|
@@ -33759,8 +33778,9 @@ declare namespace sap {
|
|
|
33759
33778
|
| `{${string}}`;
|
|
33760
33779
|
|
|
33761
33780
|
/**
|
|
33762
|
-
* Determines the wrapping of the text within the `Label`.
|
|
33763
|
-
*
|
|
33781
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
33782
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
33783
|
+
* wrap.
|
|
33764
33784
|
*
|
|
33765
33785
|
* @since 1.50
|
|
33766
33786
|
*/
|
|
@@ -37116,7 +37136,7 @@ declare namespace sap {
|
|
|
37116
37136
|
/**
|
|
37117
37137
|
* The OverflowToolbar item can or cannot move to the overflow area
|
|
37118
37138
|
*
|
|
37119
|
-
* @deprecated (since 1.32
|
|
37139
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
37120
37140
|
*/
|
|
37121
37141
|
moveToOverflow?:
|
|
37122
37142
|
| boolean
|
|
@@ -40341,6 +40361,28 @@ declare namespace sap {
|
|
|
40341
40361
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40342
40362
|
| `{${string}}`;
|
|
40343
40363
|
|
|
40364
|
+
/**
|
|
40365
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
40366
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
40367
|
+
* will wrap.
|
|
40368
|
+
*
|
|
40369
|
+
* @since 1.126
|
|
40370
|
+
*/
|
|
40371
|
+
wrapping?:
|
|
40372
|
+
| boolean
|
|
40373
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40374
|
+
| `{${string}}`;
|
|
40375
|
+
|
|
40376
|
+
/**
|
|
40377
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
40378
|
+
*
|
|
40379
|
+
* @since 1.126
|
|
40380
|
+
*/
|
|
40381
|
+
wrappingType?:
|
|
40382
|
+
| sap.m.WrappingType
|
|
40383
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40384
|
+
| `{${string}}`;
|
|
40385
|
+
|
|
40344
40386
|
/**
|
|
40345
40387
|
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
40346
40388
|
*/
|
|
@@ -54137,6 +54179,30 @@ declare namespace sap {
|
|
|
54137
54179
|
* @returns Metadata object describing this class
|
|
54138
54180
|
*/
|
|
54139
54181
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
54182
|
+
/**
|
|
54183
|
+
* Gets current value of property {@link #getBadgeIcon badgeIcon}.
|
|
54184
|
+
*
|
|
54185
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
54186
|
+
*
|
|
54187
|
+
* Default value is `empty string`.
|
|
54188
|
+
*
|
|
54189
|
+
* @experimental (since 1.124)
|
|
54190
|
+
*
|
|
54191
|
+
* @returns Value of property `badgeIcon`
|
|
54192
|
+
*/
|
|
54193
|
+
getBadgeIcon(): sap.ui.core.URI;
|
|
54194
|
+
/**
|
|
54195
|
+
* Gets current value of property {@link #getBadgeValueState badgeValueState}.
|
|
54196
|
+
*
|
|
54197
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
54198
|
+
*
|
|
54199
|
+
* Default value is `None`.
|
|
54200
|
+
*
|
|
54201
|
+
* @experimental (since 1.124)
|
|
54202
|
+
*
|
|
54203
|
+
* @returns Value of property `badgeValueState`
|
|
54204
|
+
*/
|
|
54205
|
+
getBadgeValueState(): sap.ui.core.ValueState;
|
|
54140
54206
|
/**
|
|
54141
54207
|
* Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
54142
54208
|
*
|
|
@@ -54183,6 +54249,30 @@ declare namespace sap {
|
|
|
54183
54249
|
* @returns Value of property `priorityText`
|
|
54184
54250
|
*/
|
|
54185
54251
|
getPriorityText(): string;
|
|
54252
|
+
/**
|
|
54253
|
+
* Sets the badgeIcon property of the ActionTile.
|
|
54254
|
+
*
|
|
54255
|
+
*
|
|
54256
|
+
* @returns The reference to the ActionTile instance.
|
|
54257
|
+
*/
|
|
54258
|
+
setBadgeIcon(
|
|
54259
|
+
/**
|
|
54260
|
+
* The URI of the icon to be displayed as a badge.
|
|
54261
|
+
*/
|
|
54262
|
+
sIcon: string
|
|
54263
|
+
): sap.m.ActionTile;
|
|
54264
|
+
/**
|
|
54265
|
+
* Sets the badgeValueState property of the ActionTile.
|
|
54266
|
+
*
|
|
54267
|
+
*
|
|
54268
|
+
* @returns The reference to the ActionTile instance.
|
|
54269
|
+
*/
|
|
54270
|
+
setBadgeValueState(
|
|
54271
|
+
/**
|
|
54272
|
+
* The value state of the badge.
|
|
54273
|
+
*/
|
|
54274
|
+
sValueState: sap.ui.core.ValueState
|
|
54275
|
+
): sap.m.ActionTile;
|
|
54186
54276
|
/**
|
|
54187
54277
|
* Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
54188
54278
|
*
|
|
@@ -54203,24 +54293,17 @@ declare namespace sap {
|
|
|
54203
54293
|
bEnableDynamicHeight?: boolean
|
|
54204
54294
|
): this;
|
|
54205
54295
|
/**
|
|
54206
|
-
* Sets
|
|
54207
|
-
*
|
|
54208
|
-
* Decides whether the headerImage should have a frame or not.
|
|
54209
|
-
*
|
|
54210
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
54211
|
-
*
|
|
54212
|
-
* Default value is `false`.
|
|
54296
|
+
* Sets the enableIconFrame property of the ActionTile.
|
|
54213
54297
|
*
|
|
54214
|
-
* @experimental (since 1.124)
|
|
54215
54298
|
*
|
|
54216
|
-
* @returns
|
|
54299
|
+
* @returns The reference to the ActionTile instance.
|
|
54217
54300
|
*/
|
|
54218
54301
|
setEnableIconFrame(
|
|
54219
54302
|
/**
|
|
54220
|
-
*
|
|
54303
|
+
* Determines whether the icon frame should be enabled or not.
|
|
54221
54304
|
*/
|
|
54222
|
-
|
|
54223
|
-
):
|
|
54305
|
+
bValue: boolean
|
|
54306
|
+
): sap.m.ActionTile;
|
|
54224
54307
|
/**
|
|
54225
54308
|
* Sets a new value for property {@link #getPriority priority}.
|
|
54226
54309
|
*
|
|
@@ -56813,7 +56896,6 @@ declare namespace sap {
|
|
|
56813
56896
|
* Determines the text of current/last element in the Breadcrumbs path.
|
|
56814
56897
|
*
|
|
56815
56898
|
* @since 1.34
|
|
56816
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
56817
56899
|
*
|
|
56818
56900
|
* @returns Value of property `currentLocationText`
|
|
56819
56901
|
*/
|
|
@@ -56938,7 +57020,6 @@ declare namespace sap {
|
|
|
56938
57020
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
56939
57021
|
*
|
|
56940
57022
|
* @since 1.34
|
|
56941
|
-
* @deprecated (since 1.123) - Use the **currentLocation** aggregation instead.
|
|
56942
57023
|
*
|
|
56943
57024
|
* @returns Reference to `this` in order to allow method chaining
|
|
56944
57025
|
*/
|
|
@@ -86115,8 +86196,9 @@ declare namespace sap {
|
|
|
86115
86196
|
/**
|
|
86116
86197
|
* Gets current value of property {@link #getWrapping wrapping}.
|
|
86117
86198
|
*
|
|
86118
|
-
* Determines the wrapping of the text within the `Label`.
|
|
86119
|
-
*
|
|
86199
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
86200
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
86201
|
+
* wrap.
|
|
86120
86202
|
*
|
|
86121
86203
|
* Default value is `false`.
|
|
86122
86204
|
*
|
|
@@ -86326,8 +86408,9 @@ declare namespace sap {
|
|
|
86326
86408
|
/**
|
|
86327
86409
|
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
86328
86410
|
*
|
|
86329
|
-
* Determines the wrapping of the text within the `Label`.
|
|
86330
|
-
*
|
|
86411
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
86412
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
86413
|
+
* wrap.
|
|
86331
86414
|
*
|
|
86332
86415
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
86333
86416
|
*
|
|
@@ -105837,7 +105920,7 @@ declare namespace sap {
|
|
|
105837
105920
|
*
|
|
105838
105921
|
* Default value is `true`.
|
|
105839
105922
|
*
|
|
105840
|
-
* @deprecated (since 1.32
|
|
105923
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
105841
105924
|
*
|
|
105842
105925
|
* @returns Value of property `moveToOverflow`
|
|
105843
105926
|
*/
|
|
@@ -105917,7 +106000,7 @@ declare namespace sap {
|
|
|
105917
106000
|
*
|
|
105918
106001
|
* Default value is `true`.
|
|
105919
106002
|
*
|
|
105920
|
-
* @deprecated (since 1.32
|
|
106003
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
105921
106004
|
*
|
|
105922
106005
|
* @returns Reference to `this` in order to allow method chaining
|
|
105923
106006
|
*/
|
|
@@ -123330,6 +123413,32 @@ declare namespace sap {
|
|
|
123330
123413
|
* @returns Value of property `width`
|
|
123331
123414
|
*/
|
|
123332
123415
|
getWidth(): sap.ui.core.CSSSize;
|
|
123416
|
+
/**
|
|
123417
|
+
* Gets current value of property {@link #getWrapping wrapping}.
|
|
123418
|
+
*
|
|
123419
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
123420
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
123421
|
+
* will wrap.
|
|
123422
|
+
*
|
|
123423
|
+
* Default value is `false`.
|
|
123424
|
+
*
|
|
123425
|
+
* @since 1.126
|
|
123426
|
+
*
|
|
123427
|
+
* @returns Value of property `wrapping`
|
|
123428
|
+
*/
|
|
123429
|
+
getWrapping(): boolean;
|
|
123430
|
+
/**
|
|
123431
|
+
* Gets current value of property {@link #getWrappingType wrappingType}.
|
|
123432
|
+
*
|
|
123433
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
123434
|
+
*
|
|
123435
|
+
* Default value is `Normal`.
|
|
123436
|
+
*
|
|
123437
|
+
* @since 1.126
|
|
123438
|
+
*
|
|
123439
|
+
* @returns Value of property `wrappingType`
|
|
123440
|
+
*/
|
|
123441
|
+
getWrappingType(): sap.m.WrappingType;
|
|
123333
123442
|
/**
|
|
123334
123443
|
* Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
|
|
123335
123444
|
*/
|
|
@@ -123582,6 +123691,46 @@ declare namespace sap {
|
|
|
123582
123691
|
*/
|
|
123583
123692
|
sWidth?: sap.ui.core.CSSSize
|
|
123584
123693
|
): this;
|
|
123694
|
+
/**
|
|
123695
|
+
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
123696
|
+
*
|
|
123697
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
123698
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
123699
|
+
* will wrap.
|
|
123700
|
+
*
|
|
123701
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
123702
|
+
*
|
|
123703
|
+
* Default value is `false`.
|
|
123704
|
+
*
|
|
123705
|
+
* @since 1.126
|
|
123706
|
+
*
|
|
123707
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123708
|
+
*/
|
|
123709
|
+
setWrapping(
|
|
123710
|
+
/**
|
|
123711
|
+
* New value for property `wrapping`
|
|
123712
|
+
*/
|
|
123713
|
+
bWrapping?: boolean
|
|
123714
|
+
): this;
|
|
123715
|
+
/**
|
|
123716
|
+
* Sets a new value for property {@link #getWrappingType wrappingType}.
|
|
123717
|
+
*
|
|
123718
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
123719
|
+
*
|
|
123720
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
123721
|
+
*
|
|
123722
|
+
* Default value is `Normal`.
|
|
123723
|
+
*
|
|
123724
|
+
* @since 1.126
|
|
123725
|
+
*
|
|
123726
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123727
|
+
*/
|
|
123728
|
+
setWrappingType(
|
|
123729
|
+
/**
|
|
123730
|
+
* New value for property `wrappingType`
|
|
123731
|
+
*/
|
|
123732
|
+
sWrappingType?: sap.m.WrappingType
|
|
123733
|
+
): this;
|
|
123585
123734
|
}
|
|
123586
123735
|
/**
|
|
123587
123736
|
* This control is used as a wrapper for a group of {@link sap.m.RadioButton} controls, which can be used
|
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
|
/**
|
|
@@ -20980,14 +20980,64 @@ declare namespace sap {
|
|
|
20980
20980
|
* **Note:** This static method is automatically propagated to subclasses of `ControllerExtension`.
|
|
20981
20981
|
*
|
|
20982
20982
|
*
|
|
20983
|
-
* @returns
|
|
20983
|
+
* @returns The adapted controller extension class
|
|
20984
20984
|
*/
|
|
20985
|
-
static override
|
|
20985
|
+
static override<
|
|
20986
|
+
TheExtension extends new () => ControllerExtension,
|
|
20987
|
+
AddtlProps extends object,
|
|
20988
|
+
>(
|
|
20989
|
+
this: TheExtension,
|
|
20986
20990
|
/**
|
|
20987
20991
|
* The custom extension definition
|
|
20988
20992
|
*/
|
|
20989
|
-
|
|
20990
|
-
):
|
|
20993
|
+
customExtension: AddtlProps
|
|
20994
|
+
): new () => InstanceType<TheExtension> & AddtlProps;
|
|
20995
|
+
/**
|
|
20996
|
+
* A marker method for applying controller extensions to controller class members in TypeScript code.
|
|
20997
|
+
* This method is only used to make TypeScript usage compatible to the UI5 runtime behavior, where an extension
|
|
20998
|
+
* *class* is assigned when the controller is defined, but each controller instance gets an *instance* of
|
|
20999
|
+
* this extension. This method call is removed in the class transformer when the ES class is transformed
|
|
21000
|
+
* to the traditional UI5 class definition syntax.
|
|
21001
|
+
*
|
|
21002
|
+
* To allow for proper removal, it may only be called directly on the base class `ControllerExtension`,
|
|
21003
|
+
* at the place where a controller extension is assigned to a member property of the new controller class.
|
|
21004
|
+
* The class transformation then removes this call. If it is not removed because it is used in any other
|
|
21005
|
+
* way, then it throws an error at runtime.
|
|
21006
|
+
*
|
|
21007
|
+
* Usage example:
|
|
21008
|
+
* ```javascript
|
|
21009
|
+
* import Routing from "sap/fe/core/controllerextensions/Routing";
|
|
21010
|
+
* import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
21011
|
+
* ...
|
|
21012
|
+
* export default class App extends Controller {
|
|
21013
|
+
* routing = ControllerExtension.use(Routing);
|
|
21014
|
+
* ```
|
|
21015
|
+
*
|
|
21016
|
+
* Usage example with overriding extension callbacks:
|
|
21017
|
+
* ```javascript
|
|
21018
|
+
* import Routing from "sap/fe/core/controllerextensions/Routing";
|
|
21019
|
+
* import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
21020
|
+
* ...
|
|
21021
|
+
* export default class App extends Controller {
|
|
21022
|
+
* routing = ControllerExtension.use(Routing.override({
|
|
21023
|
+
* ...
|
|
21024
|
+
* }));
|
|
21025
|
+
* ```
|
|
21026
|
+
*
|
|
21027
|
+
*
|
|
21028
|
+
*
|
|
21029
|
+
* @returns An instance of the given `ControllerExtension`. **NOTE:** this is only a dummy return type for
|
|
21030
|
+
* proper usage in TypeScript. This method does not actually return an instance of `ControllerExtension`,
|
|
21031
|
+
* but only throws an error at runtime. The sole purpose of this method is to mimic the actual runtime behavior
|
|
21032
|
+
* where a *class* is given when a controller is defined, but an *instance* is present in each controller
|
|
21033
|
+
* instance.
|
|
21034
|
+
*/
|
|
21035
|
+
static use<TheExtension extends sap.ui.core.mvc.ControllerExtension>(
|
|
21036
|
+
/**
|
|
21037
|
+
* The ControllerExtension to use
|
|
21038
|
+
*/
|
|
21039
|
+
extensionClass: new () => TheExtension
|
|
21040
|
+
): TheExtension;
|
|
20991
21041
|
/**
|
|
20992
21042
|
* Returns an Element of the connected view with the given local ID.
|
|
20993
21043
|
*
|
|
@@ -27581,7 +27631,7 @@ declare namespace sap {
|
|
|
27581
27631
|
/**
|
|
27582
27632
|
* Describes the settings that can be provided to the OpenSearchProvider constructor.
|
|
27583
27633
|
*
|
|
27584
|
-
* @deprecated (since 1.120)
|
|
27634
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27585
27635
|
*/
|
|
27586
27636
|
interface $OpenSearchProviderSettings
|
|
27587
27637
|
extends sap.ui.core.search.$SearchProviderSettings {
|
|
@@ -27603,7 +27653,7 @@ declare namespace sap {
|
|
|
27603
27653
|
/**
|
|
27604
27654
|
* Describes the settings that can be provided to the SearchProvider constructor.
|
|
27605
27655
|
*
|
|
27606
|
-
* @deprecated (since 1.120)
|
|
27656
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27607
27657
|
*/
|
|
27608
27658
|
interface $SearchProviderSettings extends sap.ui.core.$ElementSettings {
|
|
27609
27659
|
/**
|
|
@@ -27615,7 +27665,7 @@ declare namespace sap {
|
|
|
27615
27665
|
/**
|
|
27616
27666
|
* A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
|
|
27617
27667
|
*
|
|
27618
|
-
* @deprecated (since 1.120)
|
|
27668
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27619
27669
|
*/
|
|
27620
27670
|
class OpenSearchProvider extends sap.ui.core.search.SearchProvider {
|
|
27621
27671
|
/**
|
|
@@ -27760,7 +27810,7 @@ declare namespace sap {
|
|
|
27760
27810
|
*
|
|
27761
27811
|
* Do not create instances of this class, but use a concrete subclass instead.
|
|
27762
27812
|
*
|
|
27763
|
-
* @deprecated (since 1.120)
|
|
27813
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27764
27814
|
*/
|
|
27765
27815
|
abstract class SearchProvider extends sap.ui.core.Element {
|
|
27766
27816
|
/**
|
|
@@ -28148,7 +28198,8 @@ declare namespace sap {
|
|
|
28148
28198
|
/**
|
|
28149
28199
|
* Describes the settings that can be provided to the DOMAttribute constructor.
|
|
28150
28200
|
*
|
|
28151
|
-
* @deprecated (since 1.56)
|
|
28201
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28202
|
+
* instead.
|
|
28152
28203
|
*/
|
|
28153
28204
|
interface $DOMAttributeSettings extends sap.ui.core.$ElementSettings {
|
|
28154
28205
|
/**
|
|
@@ -28165,7 +28216,8 @@ declare namespace sap {
|
|
|
28165
28216
|
/**
|
|
28166
28217
|
* Describes the settings that can be provided to the DOMElement constructor.
|
|
28167
28218
|
*
|
|
28168
|
-
* @deprecated (since 1.56)
|
|
28219
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28220
|
+
* instead.
|
|
28169
28221
|
*/
|
|
28170
28222
|
interface $DOMElementSettings extends sap.ui.core.$ControlSettings {
|
|
28171
28223
|
/**
|
|
@@ -28200,7 +28252,8 @@ declare namespace sap {
|
|
|
28200
28252
|
/**
|
|
28201
28253
|
* Describes the settings that can be provided to the HandlebarsTemplate constructor.
|
|
28202
28254
|
*
|
|
28203
|
-
* @deprecated (since 1.56)
|
|
28255
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28256
|
+
* instead.
|
|
28204
28257
|
*/
|
|
28205
28258
|
interface $HandlebarsTemplateSettings
|
|
28206
28259
|
extends sap.ui.core.tmpl.$TemplateSettings {}
|
|
@@ -28221,7 +28274,8 @@ declare namespace sap {
|
|
|
28221
28274
|
/**
|
|
28222
28275
|
* Describes the settings that can be provided to the TemplateControl constructor.
|
|
28223
28276
|
*
|
|
28224
|
-
* @deprecated (since 1.56)
|
|
28277
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28278
|
+
* instead.
|
|
28225
28279
|
*/
|
|
28226
28280
|
interface $TemplateControlSettings
|
|
28227
28281
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -28265,7 +28319,8 @@ declare namespace sap {
|
|
|
28265
28319
|
* Represents a DOM attribute of a DOM element.
|
|
28266
28320
|
*
|
|
28267
28321
|
* @since 1.15
|
|
28268
|
-
* @deprecated (since 1.56)
|
|
28322
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28323
|
+
* instead.
|
|
28269
28324
|
*/
|
|
28270
28325
|
class DOMAttribute extends sap.ui.core.Element {
|
|
28271
28326
|
/**
|
|
@@ -28385,7 +28440,8 @@ declare namespace sap {
|
|
|
28385
28440
|
* Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
|
|
28386
28441
|
*
|
|
28387
28442
|
* @since 1.15
|
|
28388
|
-
* @deprecated (since 1.56)
|
|
28443
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28444
|
+
* instead.
|
|
28389
28445
|
*/
|
|
28390
28446
|
class DOMElement extends sap.ui.core.Control {
|
|
28391
28447
|
/**
|
|
@@ -28693,7 +28749,8 @@ declare namespace sap {
|
|
|
28693
28749
|
* The class for Handlebars Templates.
|
|
28694
28750
|
*
|
|
28695
28751
|
* @since 1.15
|
|
28696
|
-
* @deprecated (since 1.56)
|
|
28752
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28753
|
+
* instead.
|
|
28697
28754
|
*/
|
|
28698
28755
|
abstract class HandlebarsTemplate extends sap.ui.core.tmpl.Template {
|
|
28699
28756
|
/**
|
|
@@ -29032,7 +29089,8 @@ declare namespace sap {
|
|
|
29032
29089
|
* This is the base class for all template controls. Template controls are declared based on templates.
|
|
29033
29090
|
*
|
|
29034
29091
|
* @since 1.15
|
|
29035
|
-
* @deprecated (since 1.56)
|
|
29092
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
29093
|
+
* instead.
|
|
29036
29094
|
*/
|
|
29037
29095
|
class TemplateControl extends sap.ui.core.Control {
|
|
29038
29096
|
/**
|
|
@@ -29484,7 +29542,7 @@ declare namespace sap {
|
|
|
29484
29542
|
*
|
|
29485
29543
|
* @since 1.107
|
|
29486
29544
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
29487
|
-
*
|
|
29545
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
29488
29546
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
29489
29547
|
*/
|
|
29490
29548
|
interface registry {
|
|
@@ -29492,7 +29550,7 @@ declare namespace sap {
|
|
|
29492
29550
|
* Number of existing UIAreas.
|
|
29493
29551
|
*
|
|
29494
29552
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
29495
|
-
*
|
|
29553
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
29496
29554
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
29497
29555
|
*/
|
|
29498
29556
|
size: int;
|
|
@@ -29596,8 +29654,8 @@ declare namespace sap {
|
|
|
29596
29654
|
* When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
|
|
29597
29655
|
* returned.
|
|
29598
29656
|
*
|
|
29599
|
-
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in
|
|
29600
|
-
*
|
|
29657
|
+
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in a certain
|
|
29658
|
+
* `UIArea`. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
29601
29659
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
29602
29660
|
*
|
|
29603
29661
|
* @returns UIArea with the given ID or `undefined`
|
|
@@ -31321,7 +31379,7 @@ declare namespace sap {
|
|
|
31321
31379
|
/**
|
|
31322
31380
|
* Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
|
|
31323
31381
|
*/
|
|
31324
|
-
|
|
31382
|
+
class MockServer extends sap.ui.base.ManagedObject {
|
|
31325
31383
|
/**
|
|
31326
31384
|
* Creates a mocked server. This helps to mock some back-end calls, e.g. for OData V2/JSON Models or simple
|
|
31327
31385
|
* XHR calls, without changing the application code. This class can also be used for qunit tests.
|
|
@@ -48871,7 +48929,7 @@ declare namespace sap {
|
|
|
48871
48929
|
* The node must have an ID that will be used as ID for this instance of `UIArea`.
|
|
48872
48930
|
*
|
|
48873
48931
|
* @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
|
|
48874
|
-
* programmatically.
|
|
48932
|
+
* programmatically. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
48875
48933
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
48876
48934
|
*/
|
|
48877
48935
|
setRootNode(
|
|
@@ -54098,9 +54156,13 @@ declare namespace sap {
|
|
|
54098
54156
|
oContext?: sap.ui.model.Context
|
|
54099
54157
|
): any | null | undefined;
|
|
54100
54158
|
/**
|
|
54101
|
-
*
|
|
54102
|
-
*
|
|
54103
|
-
*
|
|
54159
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
54160
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
54161
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
54162
|
+
*
|
|
54163
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
54164
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
54165
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
54104
54166
|
*
|
|
54105
54167
|
*
|
|
54106
54168
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
@@ -54108,15 +54170,16 @@ declare namespace sap {
|
|
|
54108
54170
|
*/
|
|
54109
54171
|
loadData(
|
|
54110
54172
|
/**
|
|
54111
|
-
* A string containing the URL to which the request is sent
|
|
54173
|
+
* A string containing the URL to which the request is sent
|
|
54112
54174
|
*/
|
|
54113
54175
|
sURL: string,
|
|
54114
54176
|
/**
|
|
54115
|
-
*
|
|
54116
|
-
*
|
|
54117
|
-
*
|
|
54118
|
-
*
|
|
54119
|
-
* body.
|
|
54177
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
54178
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
54179
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
54180
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
54181
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
54182
|
+
* Otherwise, the resulting string is added to the request body.
|
|
54120
54183
|
*/
|
|
54121
54184
|
oParameters?: object | string,
|
|
54122
54185
|
/**
|
|
@@ -54126,8 +54189,7 @@ declare namespace sap {
|
|
|
54126
54189
|
*/
|
|
54127
54190
|
bAsync?: boolean,
|
|
54128
54191
|
/**
|
|
54129
|
-
* The
|
|
54130
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
54192
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
54131
54193
|
*/
|
|
54132
54194
|
sType?: string,
|
|
54133
54195
|
/**
|
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";
|
|
@@ -2327,6 +2327,28 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2327
2327
|
*/
|
|
2328
2328
|
iRequestedItems: int
|
|
2329
2329
|
): boolean | Promise<boolean>;
|
|
2330
|
+
/**
|
|
2331
|
+
* Allows control to customize selection behavior in valuelist scenarios
|
|
2332
|
+
*
|
|
2333
|
+
* @since 1.124.2
|
|
2334
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2335
|
+
*
|
|
2336
|
+
* @returns `true` if conditions are considered equal
|
|
2337
|
+
*/
|
|
2338
|
+
compareConditions(
|
|
2339
|
+
/**
|
|
2340
|
+
* The `ValueHelp` control instance
|
|
2341
|
+
*/
|
|
2342
|
+
oValueHelp: sap.ui.mdc.ValueHelp,
|
|
2343
|
+
/**
|
|
2344
|
+
* Condition to compare
|
|
2345
|
+
*/
|
|
2346
|
+
oConditionA: sap.ui.mdc.condition.ConditionObject,
|
|
2347
|
+
/**
|
|
2348
|
+
* Condition to compare
|
|
2349
|
+
*/
|
|
2350
|
+
oConditionB: sap.ui.mdc.condition.ConditionObject
|
|
2351
|
+
): boolean;
|
|
2330
2352
|
/**
|
|
2331
2353
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
2332
2354
|
* 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 namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -118,8 +118,11 @@ declare namespace sap {
|
|
|
118
118
|
|
|
119
119
|
/**
|
|
120
120
|
* Implements a plugin to enable a special multi-selection behavior:
|
|
121
|
-
* -
|
|
122
|
-
*
|
|
121
|
+
* - Select All checkbox for selecting rows up to the set limit.
|
|
122
|
+
* If the number of selected rows is smaller than the limit, all these rows can be selected at once with
|
|
123
|
+
* a single operation. If there are more rows than the limit, the first x rows are selected until the limit
|
|
124
|
+
* x has been reached.
|
|
125
|
+
* - Dedicated Deselect All button for removing the selection
|
|
123
126
|
* - The number of indices which can be selected in a range is defined by the `limit` property. If the
|
|
124
127
|
* user tries to select more indices, the selection is automatically limited, and the table scrolls to the
|
|
125
128
|
* last selected index.
|
package/types/sap.ui.ux3.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 namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -6,6 +6,8 @@ declare namespace sap {
|
|
|
6
6
|
* Namespace for UI5 Web Components Retrofit libraries
|
|
7
7
|
*
|
|
8
8
|
* @since 1.92.0
|
|
9
|
+
* @deprecated (since 1.120) - this Web Components consumption model has been discarded. An alternative
|
|
10
|
+
* consumption model is planned for the future.
|
|
9
11
|
* @experimental (since 1.92.0)
|
|
10
12
|
*/
|
|
11
13
|
namespace webc {
|
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -330,6 +330,18 @@ declare namespace sap {
|
|
|
330
330
|
* is set.
|
|
331
331
|
*/
|
|
332
332
|
footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
336
|
+
* control.
|
|
337
|
+
*
|
|
338
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
339
|
+
*
|
|
340
|
+
* @since 1.127.0
|
|
341
|
+
*/
|
|
342
|
+
headerContentLabel?:
|
|
343
|
+
| string
|
|
344
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
333
345
|
}
|
|
334
346
|
|
|
335
347
|
/**
|
|
@@ -2682,6 +2694,19 @@ declare namespace sap {
|
|
|
2682
2694
|
* @returns Value of property `footerRole`
|
|
2683
2695
|
*/
|
|
2684
2696
|
getFooterRole(): sap.ui.core.AccessibleLandmarkRole;
|
|
2697
|
+
/**
|
|
2698
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
2699
|
+
*
|
|
2700
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
2701
|
+
* control.
|
|
2702
|
+
*
|
|
2703
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
2704
|
+
*
|
|
2705
|
+
* @since 1.127.0
|
|
2706
|
+
*
|
|
2707
|
+
* @returns Value of property `headerContentLabel`
|
|
2708
|
+
*/
|
|
2709
|
+
getHeaderContentLabel(): string;
|
|
2685
2710
|
/**
|
|
2686
2711
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
2687
2712
|
*
|
|
@@ -2840,6 +2865,26 @@ declare namespace sap {
|
|
|
2840
2865
|
*/
|
|
2841
2866
|
sFooterRole?: sap.ui.core.AccessibleLandmarkRole
|
|
2842
2867
|
): this;
|
|
2868
|
+
/**
|
|
2869
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
2870
|
+
*
|
|
2871
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
2872
|
+
* control.
|
|
2873
|
+
*
|
|
2874
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
2875
|
+
*
|
|
2876
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2877
|
+
*
|
|
2878
|
+
* @since 1.127.0
|
|
2879
|
+
*
|
|
2880
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2881
|
+
*/
|
|
2882
|
+
setHeaderContentLabel(
|
|
2883
|
+
/**
|
|
2884
|
+
* New value for property `headerContentLabel`
|
|
2885
|
+
*/
|
|
2886
|
+
sHeaderContentLabel?: string
|
|
2887
|
+
): this;
|
|
2843
2888
|
/**
|
|
2844
2889
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
2845
2890
|
*
|