@openui5/ts-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.f.d.ts +1 -1
- package/types/sap.m.d.ts +174 -22
- 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 +42 -30
- 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 +1 -1
package/package.json
CHANGED
package/types/sap.f.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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -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
|
/**
|
|
@@ -33759,8 +33779,9 @@ declare namespace sap {
|
|
|
33759
33779
|
| `{${string}}`;
|
|
33760
33780
|
|
|
33761
33781
|
/**
|
|
33762
|
-
* Determines the wrapping of the text within the `Label`.
|
|
33763
|
-
*
|
|
33782
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
33783
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
33784
|
+
* wrap.
|
|
33764
33785
|
*
|
|
33765
33786
|
* @since 1.50
|
|
33766
33787
|
*/
|
|
@@ -37116,7 +37137,7 @@ declare namespace sap {
|
|
|
37116
37137
|
/**
|
|
37117
37138
|
* The OverflowToolbar item can or cannot move to the overflow area
|
|
37118
37139
|
*
|
|
37119
|
-
* @deprecated (since 1.32
|
|
37140
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
37120
37141
|
*/
|
|
37121
37142
|
moveToOverflow?:
|
|
37122
37143
|
| boolean
|
|
@@ -40341,6 +40362,28 @@ declare namespace sap {
|
|
|
40341
40362
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40342
40363
|
| `{${string}}`;
|
|
40343
40364
|
|
|
40365
|
+
/**
|
|
40366
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
40367
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
40368
|
+
* will wrap.
|
|
40369
|
+
*
|
|
40370
|
+
* @since 1.126
|
|
40371
|
+
*/
|
|
40372
|
+
wrapping?:
|
|
40373
|
+
| boolean
|
|
40374
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40375
|
+
| `{${string}}`;
|
|
40376
|
+
|
|
40377
|
+
/**
|
|
40378
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
40379
|
+
*
|
|
40380
|
+
* @since 1.126
|
|
40381
|
+
*/
|
|
40382
|
+
wrappingType?:
|
|
40383
|
+
| sap.m.WrappingType
|
|
40384
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40385
|
+
| `{${string}}`;
|
|
40386
|
+
|
|
40344
40387
|
/**
|
|
40345
40388
|
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
40346
40389
|
*/
|
|
@@ -54137,6 +54180,30 @@ declare namespace sap {
|
|
|
54137
54180
|
* @returns Metadata object describing this class
|
|
54138
54181
|
*/
|
|
54139
54182
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
54183
|
+
/**
|
|
54184
|
+
* Gets current value of property {@link #getBadgeIcon badgeIcon}.
|
|
54185
|
+
*
|
|
54186
|
+
* Defines what type of icon is displayed as visual affordance for the icon frame badge.
|
|
54187
|
+
*
|
|
54188
|
+
* Default value is `empty string`.
|
|
54189
|
+
*
|
|
54190
|
+
* @experimental (since 1.124)
|
|
54191
|
+
*
|
|
54192
|
+
* @returns Value of property `badgeIcon`
|
|
54193
|
+
*/
|
|
54194
|
+
getBadgeIcon(): sap.ui.core.URI;
|
|
54195
|
+
/**
|
|
54196
|
+
* Gets current value of property {@link #getBadgeValueState badgeValueState}.
|
|
54197
|
+
*
|
|
54198
|
+
* Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
54199
|
+
*
|
|
54200
|
+
* Default value is `None`.
|
|
54201
|
+
*
|
|
54202
|
+
* @experimental (since 1.124)
|
|
54203
|
+
*
|
|
54204
|
+
* @returns Value of property `badgeValueState`
|
|
54205
|
+
*/
|
|
54206
|
+
getBadgeValueState(): sap.ui.core.ValueState;
|
|
54140
54207
|
/**
|
|
54141
54208
|
* Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
54142
54209
|
*
|
|
@@ -54183,6 +54250,30 @@ declare namespace sap {
|
|
|
54183
54250
|
* @returns Value of property `priorityText`
|
|
54184
54251
|
*/
|
|
54185
54252
|
getPriorityText(): string;
|
|
54253
|
+
/**
|
|
54254
|
+
* Sets the badgeIcon property of the ActionTile.
|
|
54255
|
+
*
|
|
54256
|
+
*
|
|
54257
|
+
* @returns The reference to the ActionTile instance.
|
|
54258
|
+
*/
|
|
54259
|
+
setBadgeIcon(
|
|
54260
|
+
/**
|
|
54261
|
+
* The URI of the icon to be displayed as a badge.
|
|
54262
|
+
*/
|
|
54263
|
+
sIcon: string
|
|
54264
|
+
): sap.m.ActionTile;
|
|
54265
|
+
/**
|
|
54266
|
+
* Sets the badgeValueState property of the ActionTile.
|
|
54267
|
+
*
|
|
54268
|
+
*
|
|
54269
|
+
* @returns The reference to the ActionTile instance.
|
|
54270
|
+
*/
|
|
54271
|
+
setBadgeValueState(
|
|
54272
|
+
/**
|
|
54273
|
+
* The value state of the badge.
|
|
54274
|
+
*/
|
|
54275
|
+
sValueState: sap.ui.core.ValueState
|
|
54276
|
+
): sap.m.ActionTile;
|
|
54186
54277
|
/**
|
|
54187
54278
|
* Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
|
|
54188
54279
|
*
|
|
@@ -54203,24 +54294,17 @@ declare namespace sap {
|
|
|
54203
54294
|
bEnableDynamicHeight?: boolean
|
|
54204
54295
|
): this;
|
|
54205
54296
|
/**
|
|
54206
|
-
* Sets
|
|
54297
|
+
* Sets the enableIconFrame property of the ActionTile.
|
|
54207
54298
|
*
|
|
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`.
|
|
54213
|
-
*
|
|
54214
|
-
* @experimental (since 1.124)
|
|
54215
54299
|
*
|
|
54216
|
-
* @returns
|
|
54300
|
+
* @returns The reference to the ActionTile instance.
|
|
54217
54301
|
*/
|
|
54218
54302
|
setEnableIconFrame(
|
|
54219
54303
|
/**
|
|
54220
|
-
*
|
|
54304
|
+
* Determines whether the icon frame should be enabled or not.
|
|
54221
54305
|
*/
|
|
54222
|
-
|
|
54223
|
-
):
|
|
54306
|
+
bValue: boolean
|
|
54307
|
+
): sap.m.ActionTile;
|
|
54224
54308
|
/**
|
|
54225
54309
|
* Sets a new value for property {@link #getPriority priority}.
|
|
54226
54310
|
*
|
|
@@ -86115,8 +86199,9 @@ declare namespace sap {
|
|
|
86115
86199
|
/**
|
|
86116
86200
|
* Gets current value of property {@link #getWrapping wrapping}.
|
|
86117
86201
|
*
|
|
86118
|
-
* Determines the wrapping of the text within the `Label`.
|
|
86119
|
-
*
|
|
86202
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
86203
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
86204
|
+
* wrap.
|
|
86120
86205
|
*
|
|
86121
86206
|
* Default value is `false`.
|
|
86122
86207
|
*
|
|
@@ -86326,8 +86411,9 @@ declare namespace sap {
|
|
|
86326
86411
|
/**
|
|
86327
86412
|
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
86328
86413
|
*
|
|
86329
|
-
* Determines the wrapping of the text within the `Label`.
|
|
86330
|
-
*
|
|
86414
|
+
* Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
|
|
86415
|
+
* will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
|
|
86416
|
+
* wrap.
|
|
86331
86417
|
*
|
|
86332
86418
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
86333
86419
|
*
|
|
@@ -105837,7 +105923,7 @@ declare namespace sap {
|
|
|
105837
105923
|
*
|
|
105838
105924
|
* Default value is `true`.
|
|
105839
105925
|
*
|
|
105840
|
-
* @deprecated (since 1.32
|
|
105926
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
105841
105927
|
*
|
|
105842
105928
|
* @returns Value of property `moveToOverflow`
|
|
105843
105929
|
*/
|
|
@@ -105917,7 +106003,7 @@ declare namespace sap {
|
|
|
105917
106003
|
*
|
|
105918
106004
|
* Default value is `true`.
|
|
105919
106005
|
*
|
|
105920
|
-
* @deprecated (since 1.32
|
|
106006
|
+
* @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
|
|
105921
106007
|
*
|
|
105922
106008
|
* @returns Reference to `this` in order to allow method chaining
|
|
105923
106009
|
*/
|
|
@@ -123330,6 +123416,32 @@ declare namespace sap {
|
|
|
123330
123416
|
* @returns Value of property `width`
|
|
123331
123417
|
*/
|
|
123332
123418
|
getWidth(): sap.ui.core.CSSSize;
|
|
123419
|
+
/**
|
|
123420
|
+
* Gets current value of property {@link #getWrapping wrapping}.
|
|
123421
|
+
*
|
|
123422
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
123423
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
123424
|
+
* will wrap.
|
|
123425
|
+
*
|
|
123426
|
+
* Default value is `false`.
|
|
123427
|
+
*
|
|
123428
|
+
* @since 1.126
|
|
123429
|
+
*
|
|
123430
|
+
* @returns Value of property `wrapping`
|
|
123431
|
+
*/
|
|
123432
|
+
getWrapping(): boolean;
|
|
123433
|
+
/**
|
|
123434
|
+
* Gets current value of property {@link #getWrappingType wrappingType}.
|
|
123435
|
+
*
|
|
123436
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
123437
|
+
*
|
|
123438
|
+
* Default value is `Normal`.
|
|
123439
|
+
*
|
|
123440
|
+
* @since 1.126
|
|
123441
|
+
*
|
|
123442
|
+
* @returns Value of property `wrappingType`
|
|
123443
|
+
*/
|
|
123444
|
+
getWrappingType(): sap.m.WrappingType;
|
|
123333
123445
|
/**
|
|
123334
123446
|
* Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
|
|
123335
123447
|
*/
|
|
@@ -123582,6 +123694,46 @@ declare namespace sap {
|
|
|
123582
123694
|
*/
|
|
123583
123695
|
sWidth?: sap.ui.core.CSSSize
|
|
123584
123696
|
): this;
|
|
123697
|
+
/**
|
|
123698
|
+
* Sets a new value for property {@link #getWrapping wrapping}.
|
|
123699
|
+
*
|
|
123700
|
+
* Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
|
|
123701
|
+
* label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
|
|
123702
|
+
* will wrap.
|
|
123703
|
+
*
|
|
123704
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
123705
|
+
*
|
|
123706
|
+
* Default value is `false`.
|
|
123707
|
+
*
|
|
123708
|
+
* @since 1.126
|
|
123709
|
+
*
|
|
123710
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123711
|
+
*/
|
|
123712
|
+
setWrapping(
|
|
123713
|
+
/**
|
|
123714
|
+
* New value for property `wrapping`
|
|
123715
|
+
*/
|
|
123716
|
+
bWrapping?: boolean
|
|
123717
|
+
): this;
|
|
123718
|
+
/**
|
|
123719
|
+
* Sets a new value for property {@link #getWrappingType wrappingType}.
|
|
123720
|
+
*
|
|
123721
|
+
* Defines the type of wrapping to be used for the label text (hyphenated or normal).
|
|
123722
|
+
*
|
|
123723
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
123724
|
+
*
|
|
123725
|
+
* Default value is `Normal`.
|
|
123726
|
+
*
|
|
123727
|
+
* @since 1.126
|
|
123728
|
+
*
|
|
123729
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
123730
|
+
*/
|
|
123731
|
+
setWrappingType(
|
|
123732
|
+
/**
|
|
123733
|
+
* New value for property `wrappingType`
|
|
123734
|
+
*/
|
|
123735
|
+
sWrappingType?: sap.m.WrappingType
|
|
123736
|
+
): this;
|
|
123585
123737
|
}
|
|
123586
123738
|
/**
|
|
123587
123739
|
* 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.2
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -27581,7 +27581,7 @@ declare namespace sap {
|
|
|
27581
27581
|
/**
|
|
27582
27582
|
* Describes the settings that can be provided to the OpenSearchProvider constructor.
|
|
27583
27583
|
*
|
|
27584
|
-
* @deprecated (since 1.120)
|
|
27584
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27585
27585
|
*/
|
|
27586
27586
|
interface $OpenSearchProviderSettings
|
|
27587
27587
|
extends sap.ui.core.search.$SearchProviderSettings {
|
|
@@ -27603,7 +27603,7 @@ declare namespace sap {
|
|
|
27603
27603
|
/**
|
|
27604
27604
|
* Describes the settings that can be provided to the SearchProvider constructor.
|
|
27605
27605
|
*
|
|
27606
|
-
* @deprecated (since 1.120)
|
|
27606
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27607
27607
|
*/
|
|
27608
27608
|
interface $SearchProviderSettings extends sap.ui.core.$ElementSettings {
|
|
27609
27609
|
/**
|
|
@@ -27615,7 +27615,7 @@ declare namespace sap {
|
|
|
27615
27615
|
/**
|
|
27616
27616
|
* A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
|
|
27617
27617
|
*
|
|
27618
|
-
* @deprecated (since 1.120)
|
|
27618
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27619
27619
|
*/
|
|
27620
27620
|
class OpenSearchProvider extends sap.ui.core.search.SearchProvider {
|
|
27621
27621
|
/**
|
|
@@ -27760,7 +27760,7 @@ declare namespace sap {
|
|
|
27760
27760
|
*
|
|
27761
27761
|
* Do not create instances of this class, but use a concrete subclass instead.
|
|
27762
27762
|
*
|
|
27763
|
-
* @deprecated (since 1.120)
|
|
27763
|
+
* @deprecated (since 1.120) - There is no API replacement.
|
|
27764
27764
|
*/
|
|
27765
27765
|
abstract class SearchProvider extends sap.ui.core.Element {
|
|
27766
27766
|
/**
|
|
@@ -28148,7 +28148,8 @@ declare namespace sap {
|
|
|
28148
28148
|
/**
|
|
28149
28149
|
* Describes the settings that can be provided to the DOMAttribute constructor.
|
|
28150
28150
|
*
|
|
28151
|
-
* @deprecated (since 1.56)
|
|
28151
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28152
|
+
* instead.
|
|
28152
28153
|
*/
|
|
28153
28154
|
interface $DOMAttributeSettings extends sap.ui.core.$ElementSettings {
|
|
28154
28155
|
/**
|
|
@@ -28165,7 +28166,8 @@ declare namespace sap {
|
|
|
28165
28166
|
/**
|
|
28166
28167
|
* Describes the settings that can be provided to the DOMElement constructor.
|
|
28167
28168
|
*
|
|
28168
|
-
* @deprecated (since 1.56)
|
|
28169
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28170
|
+
* instead.
|
|
28169
28171
|
*/
|
|
28170
28172
|
interface $DOMElementSettings extends sap.ui.core.$ControlSettings {
|
|
28171
28173
|
/**
|
|
@@ -28200,7 +28202,8 @@ declare namespace sap {
|
|
|
28200
28202
|
/**
|
|
28201
28203
|
* Describes the settings that can be provided to the HandlebarsTemplate constructor.
|
|
28202
28204
|
*
|
|
28203
|
-
* @deprecated (since 1.56)
|
|
28205
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28206
|
+
* instead.
|
|
28204
28207
|
*/
|
|
28205
28208
|
interface $HandlebarsTemplateSettings
|
|
28206
28209
|
extends sap.ui.core.tmpl.$TemplateSettings {}
|
|
@@ -28221,7 +28224,8 @@ declare namespace sap {
|
|
|
28221
28224
|
/**
|
|
28222
28225
|
* Describes the settings that can be provided to the TemplateControl constructor.
|
|
28223
28226
|
*
|
|
28224
|
-
* @deprecated (since 1.56)
|
|
28227
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28228
|
+
* instead.
|
|
28225
28229
|
*/
|
|
28226
28230
|
interface $TemplateControlSettings
|
|
28227
28231
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -28265,7 +28269,8 @@ declare namespace sap {
|
|
|
28265
28269
|
* Represents a DOM attribute of a DOM element.
|
|
28266
28270
|
*
|
|
28267
28271
|
* @since 1.15
|
|
28268
|
-
* @deprecated (since 1.56)
|
|
28272
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28273
|
+
* instead.
|
|
28269
28274
|
*/
|
|
28270
28275
|
class DOMAttribute extends sap.ui.core.Element {
|
|
28271
28276
|
/**
|
|
@@ -28385,7 +28390,8 @@ declare namespace sap {
|
|
|
28385
28390
|
* Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
|
|
28386
28391
|
*
|
|
28387
28392
|
* @since 1.15
|
|
28388
|
-
* @deprecated (since 1.56)
|
|
28393
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28394
|
+
* instead.
|
|
28389
28395
|
*/
|
|
28390
28396
|
class DOMElement extends sap.ui.core.Control {
|
|
28391
28397
|
/**
|
|
@@ -28693,7 +28699,8 @@ declare namespace sap {
|
|
|
28693
28699
|
* The class for Handlebars Templates.
|
|
28694
28700
|
*
|
|
28695
28701
|
* @since 1.15
|
|
28696
|
-
* @deprecated (since 1.56)
|
|
28702
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
28703
|
+
* instead.
|
|
28697
28704
|
*/
|
|
28698
28705
|
abstract class HandlebarsTemplate extends sap.ui.core.tmpl.Template {
|
|
28699
28706
|
/**
|
|
@@ -29032,7 +29039,8 @@ declare namespace sap {
|
|
|
29032
29039
|
* This is the base class for all template controls. Template controls are declared based on templates.
|
|
29033
29040
|
*
|
|
29034
29041
|
* @since 1.15
|
|
29035
|
-
* @deprecated (since 1.56)
|
|
29042
|
+
* @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
|
|
29043
|
+
* instead.
|
|
29036
29044
|
*/
|
|
29037
29045
|
class TemplateControl extends sap.ui.core.Control {
|
|
29038
29046
|
/**
|
|
@@ -29484,7 +29492,7 @@ declare namespace sap {
|
|
|
29484
29492
|
*
|
|
29485
29493
|
* @since 1.107
|
|
29486
29494
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
29487
|
-
*
|
|
29495
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
29488
29496
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
29489
29497
|
*/
|
|
29490
29498
|
interface registry {
|
|
@@ -29492,7 +29500,7 @@ declare namespace sap {
|
|
|
29492
29500
|
* Number of existing UIAreas.
|
|
29493
29501
|
*
|
|
29494
29502
|
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
|
|
29495
|
-
*
|
|
29503
|
+
* `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
29496
29504
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
29497
29505
|
*/
|
|
29498
29506
|
size: int;
|
|
@@ -29596,8 +29604,8 @@ declare namespace sap {
|
|
|
29596
29604
|
* When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
|
|
29597
29605
|
* returned.
|
|
29598
29606
|
*
|
|
29599
|
-
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in
|
|
29600
|
-
*
|
|
29607
|
+
* @deprecated (since 1.120) - without a replacement. Applications should not be interested in a certain
|
|
29608
|
+
* `UIArea`. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
29601
29609
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
29602
29610
|
*
|
|
29603
29611
|
* @returns UIArea with the given ID or `undefined`
|
|
@@ -31321,7 +31329,7 @@ declare namespace sap {
|
|
|
31321
31329
|
/**
|
|
31322
31330
|
* Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
|
|
31323
31331
|
*/
|
|
31324
|
-
|
|
31332
|
+
class MockServer extends sap.ui.base.ManagedObject {
|
|
31325
31333
|
/**
|
|
31326
31334
|
* Creates a mocked server. This helps to mock some back-end calls, e.g. for OData V2/JSON Models or simple
|
|
31327
31335
|
* XHR calls, without changing the application code. This class can also be used for qunit tests.
|
|
@@ -48871,7 +48879,7 @@ declare namespace sap {
|
|
|
48871
48879
|
* The node must have an ID that will be used as ID for this instance of `UIArea`.
|
|
48872
48880
|
*
|
|
48873
48881
|
* @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
|
|
48874
|
-
* programmatically.
|
|
48882
|
+
* programmatically. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
|
|
48875
48883
|
* or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
|
|
48876
48884
|
*/
|
|
48877
48885
|
setRootNode(
|
|
@@ -54098,9 +54106,13 @@ declare namespace sap {
|
|
|
54098
54106
|
oContext?: sap.ui.model.Context
|
|
54099
54107
|
): any | null | undefined;
|
|
54100
54108
|
/**
|
|
54101
|
-
*
|
|
54102
|
-
*
|
|
54103
|
-
*
|
|
54109
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
54110
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
54111
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
54112
|
+
*
|
|
54113
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
54114
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
54115
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
54104
54116
|
*
|
|
54105
54117
|
*
|
|
54106
54118
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
@@ -54108,15 +54120,16 @@ declare namespace sap {
|
|
|
54108
54120
|
*/
|
|
54109
54121
|
loadData(
|
|
54110
54122
|
/**
|
|
54111
|
-
* A string containing the URL to which the request is sent
|
|
54123
|
+
* A string containing the URL to which the request is sent
|
|
54112
54124
|
*/
|
|
54113
54125
|
sURL: string,
|
|
54114
54126
|
/**
|
|
54115
|
-
*
|
|
54116
|
-
*
|
|
54117
|
-
*
|
|
54118
|
-
*
|
|
54119
|
-
* body.
|
|
54127
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
54128
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
54129
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
54130
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
54131
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
54132
|
+
* Otherwise, the resulting string is added to the request body.
|
|
54120
54133
|
*/
|
|
54121
54134
|
oParameters?: object | string,
|
|
54122
54135
|
/**
|
|
@@ -54126,8 +54139,7 @@ declare namespace sap {
|
|
|
54126
54139
|
*/
|
|
54127
54140
|
bAsync?: boolean,
|
|
54128
54141
|
/**
|
|
54129
|
-
* The
|
|
54130
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
54142
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
54131
54143
|
*/
|
|
54132
54144
|
sType?: string,
|
|
54133
54145
|
/**
|
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.2
|
|
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.2
|
|
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.2
|
|
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