@openui5/ts-types 1.98.0 → 1.99.0
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 +156 -64
- package/types/sap.m.d.ts +1024 -66
- 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 +564 -190
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +7 -5
- package/types/sap.ui.integration.d.ts +9 -9
- package/types/sap.ui.layout.d.ts +4 -1
- package/types/sap.ui.mdc.d.ts +5 -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 +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +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 +2438 -554
- package/types/sap.ui.webc.main.d.ts +2187 -394
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.99.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1074,7 +1074,7 @@ declare namespace sap {
|
|
|
1074
1074
|
/**
|
|
1075
1075
|
* An array containing the personalization state that is represented by the `SelectionPanel`.
|
|
1076
1076
|
*/
|
|
1077
|
-
aP13nData: sap.m.p13n.Item
|
|
1077
|
+
aP13nData: sap.m.p13n.Item[]
|
|
1078
1078
|
): void;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -1165,15 +1165,15 @@ declare namespace sap {
|
|
|
1165
1165
|
/**
|
|
1166
1166
|
* The unique key of the item
|
|
1167
1167
|
*/
|
|
1168
|
-
name:
|
|
1168
|
+
name: string;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* The label describing the personalization item
|
|
1171
1171
|
*/
|
|
1172
|
-
label:
|
|
1172
|
+
label: string;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* Defines the grouping state of the personalization item
|
|
1175
1175
|
*/
|
|
1176
|
-
grouped:
|
|
1176
|
+
grouped: boolean;
|
|
1177
1177
|
};
|
|
1178
1178
|
|
|
1179
1179
|
/**
|
|
@@ -1201,19 +1201,19 @@ declare namespace sap {
|
|
|
1201
1201
|
/**
|
|
1202
1202
|
* The unique key of the item
|
|
1203
1203
|
*/
|
|
1204
|
-
name:
|
|
1204
|
+
name: string;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* The label describing the personalization item
|
|
1207
1207
|
*/
|
|
1208
|
-
label:
|
|
1208
|
+
label: string;
|
|
1209
1209
|
/**
|
|
1210
1210
|
* Defines the sorting state of the personalization item
|
|
1211
1211
|
*/
|
|
1212
|
-
sorted:
|
|
1212
|
+
sorted: boolean;
|
|
1213
1213
|
/**
|
|
1214
1214
|
* Defines the descending state of the personalization item
|
|
1215
1215
|
*/
|
|
1216
|
-
descending:
|
|
1216
|
+
descending: boolean;
|
|
1217
1217
|
};
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
@@ -8062,6 +8062,15 @@ declare namespace sap {
|
|
|
8062
8062
|
*/
|
|
8063
8063
|
uploadUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8064
8064
|
|
|
8065
|
+
/**
|
|
8066
|
+
* @SINCE 1.99.0
|
|
8067
|
+
*
|
|
8068
|
+
* If set to true, the button used for uploading files become invisible.
|
|
8069
|
+
*/
|
|
8070
|
+
uploadButtonInvisible?:
|
|
8071
|
+
| boolean
|
|
8072
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8073
|
+
|
|
8065
8074
|
/**
|
|
8066
8075
|
* @SINCE 1.90
|
|
8067
8076
|
*
|
|
@@ -8201,6 +8210,20 @@ declare namespace sap {
|
|
|
8201
8210
|
* This event is fired simultaneously with the respective event in the inner {@link sap.m.List} control.
|
|
8202
8211
|
*/
|
|
8203
8212
|
selectionChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
8213
|
+
|
|
8214
|
+
/**
|
|
8215
|
+
* @SINCE 1.99
|
|
8216
|
+
*
|
|
8217
|
+
* This event is fired when the user starts dragging an uploaded item.
|
|
8218
|
+
*/
|
|
8219
|
+
itemDragStart?: (oEvent: sap.ui.base.Event) => void;
|
|
8220
|
+
|
|
8221
|
+
/**
|
|
8222
|
+
* @SINCE 1.99
|
|
8223
|
+
*
|
|
8224
|
+
* This event is fired when an uploaded item is dropped on the new list position.
|
|
8225
|
+
*/
|
|
8226
|
+
itemDrop?: (oEvent: sap.ui.base.Event) => void;
|
|
8204
8227
|
}
|
|
8205
8228
|
|
|
8206
8229
|
interface $UploadSetItemSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -9413,6 +9436,96 @@ declare namespace sap {
|
|
|
9413
9436
|
*/
|
|
9414
9437
|
oListener?: object
|
|
9415
9438
|
): this;
|
|
9439
|
+
/**
|
|
9440
|
+
* @SINCE 1.99
|
|
9441
|
+
*
|
|
9442
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDragStart itemDragStart} event of this `sap.m.upload.UploadSet`.
|
|
9443
|
+
*
|
|
9444
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9445
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9446
|
+
*
|
|
9447
|
+
* This event is fired when the user starts dragging an uploaded item.
|
|
9448
|
+
*/
|
|
9449
|
+
attachItemDragStart(
|
|
9450
|
+
/**
|
|
9451
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
9452
|
+
* object when firing the event
|
|
9453
|
+
*/
|
|
9454
|
+
oData: object,
|
|
9455
|
+
/**
|
|
9456
|
+
* The function to be called when the event occurs
|
|
9457
|
+
*/
|
|
9458
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9459
|
+
/**
|
|
9460
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9461
|
+
*/
|
|
9462
|
+
oListener?: object
|
|
9463
|
+
): this;
|
|
9464
|
+
/**
|
|
9465
|
+
* @SINCE 1.99
|
|
9466
|
+
*
|
|
9467
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDragStart itemDragStart} event of this `sap.m.upload.UploadSet`.
|
|
9468
|
+
*
|
|
9469
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9470
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9471
|
+
*
|
|
9472
|
+
* This event is fired when the user starts dragging an uploaded item.
|
|
9473
|
+
*/
|
|
9474
|
+
attachItemDragStart(
|
|
9475
|
+
/**
|
|
9476
|
+
* The function to be called when the event occurs
|
|
9477
|
+
*/
|
|
9478
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9479
|
+
/**
|
|
9480
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9481
|
+
*/
|
|
9482
|
+
oListener?: object
|
|
9483
|
+
): this;
|
|
9484
|
+
/**
|
|
9485
|
+
* @SINCE 1.99
|
|
9486
|
+
*
|
|
9487
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
|
|
9488
|
+
*
|
|
9489
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9490
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9491
|
+
*
|
|
9492
|
+
* This event is fired when an uploaded item is dropped on the new list position.
|
|
9493
|
+
*/
|
|
9494
|
+
attachItemDrop(
|
|
9495
|
+
/**
|
|
9496
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
9497
|
+
* object when firing the event
|
|
9498
|
+
*/
|
|
9499
|
+
oData: object,
|
|
9500
|
+
/**
|
|
9501
|
+
* The function to be called when the event occurs
|
|
9502
|
+
*/
|
|
9503
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9504
|
+
/**
|
|
9505
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9506
|
+
*/
|
|
9507
|
+
oListener?: object
|
|
9508
|
+
): this;
|
|
9509
|
+
/**
|
|
9510
|
+
* @SINCE 1.99
|
|
9511
|
+
*
|
|
9512
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
|
|
9513
|
+
*
|
|
9514
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9515
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9516
|
+
*
|
|
9517
|
+
* This event is fired when an uploaded item is dropped on the new list position.
|
|
9518
|
+
*/
|
|
9519
|
+
attachItemDrop(
|
|
9520
|
+
/**
|
|
9521
|
+
* The function to be called when the event occurs
|
|
9522
|
+
*/
|
|
9523
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9524
|
+
/**
|
|
9525
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9526
|
+
*/
|
|
9527
|
+
oListener?: object
|
|
9528
|
+
): this;
|
|
9416
9529
|
/**
|
|
9417
9530
|
* Attaches event handler `fnFunction` to the {@link #event:mediaTypeMismatch mediaTypeMismatch} event of
|
|
9418
9531
|
* this `sap.m.upload.UploadSet`.
|
|
@@ -9791,6 +9904,41 @@ declare namespace sap {
|
|
|
9791
9904
|
*/
|
|
9792
9905
|
oListener?: object
|
|
9793
9906
|
): this;
|
|
9907
|
+
/**
|
|
9908
|
+
* @SINCE 1.99
|
|
9909
|
+
*
|
|
9910
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemDragStart itemDragStart} event of this
|
|
9911
|
+
* `sap.m.upload.UploadSet`.
|
|
9912
|
+
*
|
|
9913
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
9914
|
+
*/
|
|
9915
|
+
detachItemDragStart(
|
|
9916
|
+
/**
|
|
9917
|
+
* The function to be called, when the event occurs
|
|
9918
|
+
*/
|
|
9919
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9920
|
+
/**
|
|
9921
|
+
* Context object on which the given function had to be called
|
|
9922
|
+
*/
|
|
9923
|
+
oListener?: object
|
|
9924
|
+
): this;
|
|
9925
|
+
/**
|
|
9926
|
+
* @SINCE 1.99
|
|
9927
|
+
*
|
|
9928
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
|
|
9929
|
+
*
|
|
9930
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
9931
|
+
*/
|
|
9932
|
+
detachItemDrop(
|
|
9933
|
+
/**
|
|
9934
|
+
* The function to be called, when the event occurs
|
|
9935
|
+
*/
|
|
9936
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9937
|
+
/**
|
|
9938
|
+
* Context object on which the given function had to be called
|
|
9939
|
+
*/
|
|
9940
|
+
oListener?: object
|
|
9941
|
+
): this;
|
|
9794
9942
|
/**
|
|
9795
9943
|
* Detaches event handler `fnFunction` from the {@link #event:mediaTypeMismatch mediaTypeMismatch} event
|
|
9796
9944
|
* of this `sap.m.upload.UploadSet`.
|
|
@@ -10028,6 +10176,28 @@ declare namespace sap {
|
|
|
10028
10176
|
item?: sap.m.upload.UploadSetItem;
|
|
10029
10177
|
}
|
|
10030
10178
|
): this;
|
|
10179
|
+
/**
|
|
10180
|
+
* @SINCE 1.99
|
|
10181
|
+
*
|
|
10182
|
+
* Fires event {@link #event:itemDragStart itemDragStart} to attached listeners.
|
|
10183
|
+
*/
|
|
10184
|
+
fireItemDragStart(
|
|
10185
|
+
/**
|
|
10186
|
+
* Parameters to pass along with the event
|
|
10187
|
+
*/
|
|
10188
|
+
mParameters?: object
|
|
10189
|
+
): this;
|
|
10190
|
+
/**
|
|
10191
|
+
* @SINCE 1.99
|
|
10192
|
+
*
|
|
10193
|
+
* Fires event {@link #event:itemDrop itemDrop} to attached listeners.
|
|
10194
|
+
*/
|
|
10195
|
+
fireItemDrop(
|
|
10196
|
+
/**
|
|
10197
|
+
* Parameters to pass along with the event
|
|
10198
|
+
*/
|
|
10199
|
+
mParameters?: object
|
|
10200
|
+
): this;
|
|
10031
10201
|
/**
|
|
10032
10202
|
* Fires event {@link #event:mediaTypeMismatch mediaTypeMismatch} to attached listeners.
|
|
10033
10203
|
*/
|
|
@@ -10233,6 +10403,16 @@ declare namespace sap {
|
|
|
10233
10403
|
* Main toolbar of the `UploadSet` control.
|
|
10234
10404
|
*/
|
|
10235
10405
|
getToolbar(): sap.m.OverflowToolbar;
|
|
10406
|
+
/**
|
|
10407
|
+
* @SINCE 1.99.0
|
|
10408
|
+
*
|
|
10409
|
+
* Gets current value of property {@link #getUploadButtonInvisible uploadButtonInvisible}.
|
|
10410
|
+
*
|
|
10411
|
+
* If set to true, the button used for uploading files become invisible.
|
|
10412
|
+
*
|
|
10413
|
+
* Default value is `false`.
|
|
10414
|
+
*/
|
|
10415
|
+
getUploadButtonInvisible(): boolean;
|
|
10236
10416
|
/**
|
|
10237
10417
|
* Gets current value of property {@link #getUploadEnabled uploadEnabled}.
|
|
10238
10418
|
*
|
|
@@ -10537,6 +10717,23 @@ declare namespace sap {
|
|
|
10537
10717
|
*/
|
|
10538
10718
|
oToolbar: sap.m.OverflowToolbar
|
|
10539
10719
|
): this;
|
|
10720
|
+
/**
|
|
10721
|
+
* @SINCE 1.99.0
|
|
10722
|
+
*
|
|
10723
|
+
* Sets a new value for property {@link #getUploadButtonInvisible uploadButtonInvisible}.
|
|
10724
|
+
*
|
|
10725
|
+
* If set to true, the button used for uploading files become invisible.
|
|
10726
|
+
*
|
|
10727
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10728
|
+
*
|
|
10729
|
+
* Default value is `false`.
|
|
10730
|
+
*/
|
|
10731
|
+
setUploadButtonInvisible(
|
|
10732
|
+
/**
|
|
10733
|
+
* New value for property `uploadButtonInvisible`
|
|
10734
|
+
*/
|
|
10735
|
+
bUploadButtonInvisible?: boolean
|
|
10736
|
+
): this;
|
|
10540
10737
|
/**
|
|
10541
10738
|
* Sets a new value for property {@link #getUploadEnabled uploadEnabled}.
|
|
10542
10739
|
*
|
|
@@ -11823,6 +12020,24 @@ declare namespace sap {
|
|
|
11823
12020
|
*/
|
|
11824
12021
|
decorative?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
11825
12022
|
|
|
12023
|
+
/**
|
|
12024
|
+
* @SINCE 1.99.0
|
|
12025
|
+
*
|
|
12026
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
12027
|
+
*
|
|
12028
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
12029
|
+
* value.
|
|
12030
|
+
*
|
|
12031
|
+
* NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
|
|
12032
|
+
* to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
|
|
12033
|
+
* if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
|
|
12034
|
+
* Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
|
|
12035
|
+
* on overlay over the application.
|
|
12036
|
+
*/
|
|
12037
|
+
ariaHasPopup?:
|
|
12038
|
+
| sap.ui.core.aria.HasPopup
|
|
12039
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12040
|
+
|
|
11826
12041
|
/**
|
|
11827
12042
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
11828
12043
|
* control.
|
|
@@ -13312,6 +13527,23 @@ declare namespace sap {
|
|
|
13312
13527
|
showCurrentTimeButton?:
|
|
13313
13528
|
| boolean
|
|
13314
13529
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13530
|
+
|
|
13531
|
+
/**
|
|
13532
|
+
* @SINCE 1.99
|
|
13533
|
+
*
|
|
13534
|
+
* Determines whether to show the timezone or not.
|
|
13535
|
+
*/
|
|
13536
|
+
showTimezone?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13537
|
+
|
|
13538
|
+
/**
|
|
13539
|
+
* @SINCE 1.99
|
|
13540
|
+
*
|
|
13541
|
+
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
13542
|
+
* property string is treated as if it is formatted in this timezone. However, the `dateValue` property
|
|
13543
|
+
* is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
|
|
13544
|
+
* it is adjusted when the `timezone` changes.
|
|
13545
|
+
*/
|
|
13546
|
+
timezone?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13315
13547
|
}
|
|
13316
13548
|
|
|
13317
13549
|
interface $DialogSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -15122,6 +15354,14 @@ declare namespace sap {
|
|
|
15122
15354
|
| sap.ui.core.CSSSize
|
|
15123
15355
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15124
15356
|
|
|
15357
|
+
/**
|
|
15358
|
+
* @SINCE 1.99
|
|
15359
|
+
* @EXPERIMENTAL (since 1.99)
|
|
15360
|
+
*
|
|
15361
|
+
* Enables grid layout in mobile view.
|
|
15362
|
+
*/
|
|
15363
|
+
gridLayout?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15364
|
+
|
|
15125
15365
|
/**
|
|
15126
15366
|
* Content to add to HeaderContainer.
|
|
15127
15367
|
*/
|
|
@@ -16423,7 +16663,7 @@ declare namespace sap {
|
|
|
16423
16663
|
showColon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16424
16664
|
|
|
16425
16665
|
/**
|
|
16426
|
-
* Association to the
|
|
16666
|
+
* Association to the labelled control. By default, the label sets the for attribute to the ID of the labelled
|
|
16427
16667
|
* control. This can be changed by implementing the function getIdForLabel on the labelled control.
|
|
16428
16668
|
*/
|
|
16429
16669
|
labelFor?: sap.ui.core.Control | string;
|
|
@@ -17485,6 +17725,8 @@ declare namespace sap {
|
|
|
17485
17725
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17486
17726
|
|
|
17487
17727
|
/**
|
|
17728
|
+
* @SINCE 1.73
|
|
17729
|
+
*
|
|
17488
17730
|
* Defines whether the MessageItems are grouped or not.
|
|
17489
17731
|
*/
|
|
17490
17732
|
groupItems?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
@@ -18275,6 +18517,9 @@ declare namespace sap {
|
|
|
18275
18517
|
/**
|
|
18276
18518
|
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
18277
18519
|
* icon is not available, or cannot be displayed.
|
|
18520
|
+
*
|
|
18521
|
+
* **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
|
|
18522
|
+
* decoration only.
|
|
18278
18523
|
*/
|
|
18279
18524
|
iconAlt?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18280
18525
|
|
|
@@ -23128,6 +23373,15 @@ declare namespace sap {
|
|
|
23128
23373
|
| sap.m.PlanningCalendarStickyMode
|
|
23129
23374
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23130
23375
|
|
|
23376
|
+
/**
|
|
23377
|
+
* @SINCE 1.99
|
|
23378
|
+
*
|
|
23379
|
+
* Determines scale factor for the appointments.
|
|
23380
|
+
*
|
|
23381
|
+
* Acceptable range is from 1 to 6.
|
|
23382
|
+
*/
|
|
23383
|
+
scaleFactor?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23384
|
+
|
|
23131
23385
|
/**
|
|
23132
23386
|
* @SINCE 1.64
|
|
23133
23387
|
*
|
|
@@ -26504,6 +26758,498 @@ declare namespace sap {
|
|
|
26504
26758
|
}
|
|
26505
26759
|
const IllustrationPool: IllustrationPool;
|
|
26506
26760
|
|
|
26761
|
+
/**
|
|
26762
|
+
* InputBase renderer.
|
|
26763
|
+
*/
|
|
26764
|
+
interface InputBaseRenderer {
|
|
26765
|
+
/**
|
|
26766
|
+
* This method is reserved for derived class to set width inline style
|
|
26767
|
+
*/
|
|
26768
|
+
addControlWidth(
|
|
26769
|
+
/**
|
|
26770
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26771
|
+
*/
|
|
26772
|
+
oRm: sap.ui.core.RenderManager,
|
|
26773
|
+
/**
|
|
26774
|
+
* An object representation of the control that should be rendered.
|
|
26775
|
+
*/
|
|
26776
|
+
oControl: sap.m.InputBase
|
|
26777
|
+
): void;
|
|
26778
|
+
/**
|
|
26779
|
+
* Add cursor class to input container.
|
|
26780
|
+
*/
|
|
26781
|
+
addCursorClass(
|
|
26782
|
+
/**
|
|
26783
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26784
|
+
*/
|
|
26785
|
+
oRm: sap.ui.core.RenderManager,
|
|
26786
|
+
/**
|
|
26787
|
+
* An object representation of the control that should be rendered.
|
|
26788
|
+
*/
|
|
26789
|
+
oControl: sap.m.InputBase
|
|
26790
|
+
): void;
|
|
26791
|
+
/**
|
|
26792
|
+
* This method is reserved for derived classes to add extra classes for input element.
|
|
26793
|
+
*/
|
|
26794
|
+
addInnerClasses(
|
|
26795
|
+
/**
|
|
26796
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26797
|
+
*/
|
|
26798
|
+
oRm: sap.ui.core.RenderManager,
|
|
26799
|
+
/**
|
|
26800
|
+
* An object representation of the control that should be rendered.
|
|
26801
|
+
*/
|
|
26802
|
+
oControl: sap.m.InputBase
|
|
26803
|
+
): void;
|
|
26804
|
+
/**
|
|
26805
|
+
* This method is reserved for derived classes to add extra styles for input element.
|
|
26806
|
+
*/
|
|
26807
|
+
addInnerStyles(
|
|
26808
|
+
/**
|
|
26809
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26810
|
+
*/
|
|
26811
|
+
oRm: sap.ui.core.RenderManager,
|
|
26812
|
+
/**
|
|
26813
|
+
* An object representation of the control that should be rendered.
|
|
26814
|
+
*/
|
|
26815
|
+
oControl: sap.m.InputBase
|
|
26816
|
+
): void;
|
|
26817
|
+
/**
|
|
26818
|
+
* This method is reserved for derived classes to add extra classes for input container.
|
|
26819
|
+
*/
|
|
26820
|
+
addOuterClasses(
|
|
26821
|
+
/**
|
|
26822
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26823
|
+
*/
|
|
26824
|
+
oRm: sap.ui.core.RenderManager,
|
|
26825
|
+
/**
|
|
26826
|
+
* An object representation of the control that should be rendered.
|
|
26827
|
+
*/
|
|
26828
|
+
oControl: sap.m.InputBase
|
|
26829
|
+
): void;
|
|
26830
|
+
/**
|
|
26831
|
+
* This method is reserved for derived class to add extra styles for input container.
|
|
26832
|
+
*/
|
|
26833
|
+
addOuterStyles(
|
|
26834
|
+
/**
|
|
26835
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26836
|
+
*/
|
|
26837
|
+
oRm: sap.ui.core.RenderManager,
|
|
26838
|
+
/**
|
|
26839
|
+
* An object representation of the control that should be rendered.
|
|
26840
|
+
*/
|
|
26841
|
+
oControl: sap.m.InputBase
|
|
26842
|
+
): void;
|
|
26843
|
+
/**
|
|
26844
|
+
* Add a padding class to input container. May be overwritten by subclasses.
|
|
26845
|
+
*/
|
|
26846
|
+
addPaddingClass(
|
|
26847
|
+
/**
|
|
26848
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26849
|
+
*/
|
|
26850
|
+
oRm: sap.ui.core.RenderManager,
|
|
26851
|
+
/**
|
|
26852
|
+
* An object representation of the control that should be rendered.
|
|
26853
|
+
*/
|
|
26854
|
+
oControl: sap.m.InputBase
|
|
26855
|
+
): void;
|
|
26856
|
+
/**
|
|
26857
|
+
* @deprecated
|
|
26858
|
+
*
|
|
26859
|
+
* Adds custom placeholder classes, if native placeholder is not used. To be overwritten by subclasses.
|
|
26860
|
+
* Note that this method should not be used anymore as native placeholder is used on all browsers
|
|
26861
|
+
*/
|
|
26862
|
+
addPlaceholderClasses(
|
|
26863
|
+
/**
|
|
26864
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26865
|
+
*/
|
|
26866
|
+
oRm: sap.ui.core.RenderManager,
|
|
26867
|
+
/**
|
|
26868
|
+
* An object representation of the control that should be rendered.
|
|
26869
|
+
*/
|
|
26870
|
+
oControl: sap.m.InputBase
|
|
26871
|
+
): void;
|
|
26872
|
+
/**
|
|
26873
|
+
* @deprecated
|
|
26874
|
+
*
|
|
26875
|
+
* This method is reserved for derived classes to add extra styles for the placeholder, if rendered as label.
|
|
26876
|
+
*/
|
|
26877
|
+
addPlaceholderStyles(
|
|
26878
|
+
/**
|
|
26879
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26880
|
+
*/
|
|
26881
|
+
oRm: sap.ui.core.RenderManager,
|
|
26882
|
+
/**
|
|
26883
|
+
* An object representation of the control that should be rendered.
|
|
26884
|
+
*/
|
|
26885
|
+
oControl: sap.m.InputBase
|
|
26886
|
+
): void;
|
|
26887
|
+
/**
|
|
26888
|
+
* Add the CSS value state classes to the control's root element using the provided {@link sap.ui.core.RenderManager}.
|
|
26889
|
+
* To be overwritten by subclasses.
|
|
26890
|
+
*/
|
|
26891
|
+
addValueStateClasses(
|
|
26892
|
+
/**
|
|
26893
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26894
|
+
*/
|
|
26895
|
+
oRm: sap.ui.core.RenderManager,
|
|
26896
|
+
/**
|
|
26897
|
+
* An object representation of the control that should be rendered.
|
|
26898
|
+
*/
|
|
26899
|
+
oControl: sap.m.InputBase
|
|
26900
|
+
): void;
|
|
26901
|
+
/**
|
|
26902
|
+
* This method is reserved for derived classes to add extra styles for input element.
|
|
26903
|
+
*/
|
|
26904
|
+
addWrapperStyles(
|
|
26905
|
+
/**
|
|
26906
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26907
|
+
*/
|
|
26908
|
+
oRm: sap.ui.core.RenderManager,
|
|
26909
|
+
/**
|
|
26910
|
+
* An object representation of the control that should be rendered.
|
|
26911
|
+
*/
|
|
26912
|
+
oControl: sap.m.InputBase
|
|
26913
|
+
): void;
|
|
26914
|
+
/**
|
|
26915
|
+
* Write the closing tag name of the input.
|
|
26916
|
+
*/
|
|
26917
|
+
closeInputTag(
|
|
26918
|
+
/**
|
|
26919
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26920
|
+
*/
|
|
26921
|
+
oRm: sap.ui.core.RenderManager,
|
|
26922
|
+
/**
|
|
26923
|
+
* An object representation of the control that should be rendered.
|
|
26924
|
+
*/
|
|
26925
|
+
oControl: sap.m.InputBase
|
|
26926
|
+
): void;
|
|
26927
|
+
/**
|
|
26928
|
+
* Ends opened input tag.
|
|
26929
|
+
*/
|
|
26930
|
+
endInputTag(
|
|
26931
|
+
/**
|
|
26932
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
26933
|
+
*/
|
|
26934
|
+
oRm: sap.ui.core.RenderManager,
|
|
26935
|
+
/**
|
|
26936
|
+
* An object representation of the control that should be rendered.
|
|
26937
|
+
*/
|
|
26938
|
+
oControl: sap.m.InputBase
|
|
26939
|
+
): void;
|
|
26940
|
+
/**
|
|
26941
|
+
* Returns the accessibility state of the control. Hook for the subclasses.
|
|
26942
|
+
*/
|
|
26943
|
+
getAccessibilityState(
|
|
26944
|
+
/**
|
|
26945
|
+
* an object representation of the control.
|
|
26946
|
+
*/
|
|
26947
|
+
oControl: sap.m.InputBase
|
|
26948
|
+
): Object;
|
|
26949
|
+
/**
|
|
26950
|
+
* Returns the inner aria describedby ids for the accessibility. Hook for the subclasses.
|
|
26951
|
+
*/
|
|
26952
|
+
getAriaDescribedBy(
|
|
26953
|
+
/**
|
|
26954
|
+
* an object representation of the control.
|
|
26955
|
+
*/
|
|
26956
|
+
oControl: sap.m.InputBase
|
|
26957
|
+
): string | undefined;
|
|
26958
|
+
/**
|
|
26959
|
+
* Returns the inner aria labelledby ids for the accessibility. Hook for the subclasses.
|
|
26960
|
+
*/
|
|
26961
|
+
getAriaLabelledBy(
|
|
26962
|
+
/**
|
|
26963
|
+
* an object representation of the control.
|
|
26964
|
+
*/
|
|
26965
|
+
oControl: sap.m.InputBase
|
|
26966
|
+
): string | undefined;
|
|
26967
|
+
/**
|
|
26968
|
+
* Returns aria accessibility role for the control. Hook for the subclasses.
|
|
26969
|
+
*/
|
|
26970
|
+
getAriaRole(
|
|
26971
|
+
/**
|
|
26972
|
+
* an object representation of the control
|
|
26973
|
+
*/
|
|
26974
|
+
oControl: sap.m.InputBase
|
|
26975
|
+
): string;
|
|
26976
|
+
/**
|
|
26977
|
+
* Returns the inner aria describedby announcement texts for the accessibility. Hook for the subclasses.
|
|
26978
|
+
*/
|
|
26979
|
+
getDescribedByAnnouncement(
|
|
26980
|
+
/**
|
|
26981
|
+
* an object representation of the control.
|
|
26982
|
+
*/
|
|
26983
|
+
oControl: sap.m.InputBase
|
|
26984
|
+
): string;
|
|
26985
|
+
/**
|
|
26986
|
+
* Defines the ID suffix of the inner element
|
|
26987
|
+
*/
|
|
26988
|
+
getInnerSuffix(): string;
|
|
26989
|
+
/**
|
|
26990
|
+
* Returns the inner aria labelledby announcement texts for the accessibility. Hook for the subclasses.
|
|
26991
|
+
*/
|
|
26992
|
+
getLabelledByAnnouncement(
|
|
26993
|
+
/**
|
|
26994
|
+
* an object representation of the control.
|
|
26995
|
+
*/
|
|
26996
|
+
oControl: sap.m.InputBase
|
|
26997
|
+
): string;
|
|
26998
|
+
/**
|
|
26999
|
+
* Write the opening tag name of the input.
|
|
27000
|
+
*/
|
|
27001
|
+
openInputTag(
|
|
27002
|
+
/**
|
|
27003
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27004
|
+
*/
|
|
27005
|
+
oRm: sap.ui.core.RenderManager,
|
|
27006
|
+
/**
|
|
27007
|
+
* An object representation of the control that should be rendered.
|
|
27008
|
+
*/
|
|
27009
|
+
oControl: sap.m.InputBase
|
|
27010
|
+
): void;
|
|
27011
|
+
/**
|
|
27012
|
+
* This method is reserved for derived classes to prepend inner content.
|
|
27013
|
+
*/
|
|
27014
|
+
prependInnerContent(
|
|
27015
|
+
/**
|
|
27016
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27017
|
+
*/
|
|
27018
|
+
oRm: sap.ui.core.RenderManager,
|
|
27019
|
+
/**
|
|
27020
|
+
* An object representation of the control that should be rendered.
|
|
27021
|
+
*/
|
|
27022
|
+
oControl: sap.m.InputBase
|
|
27023
|
+
): void;
|
|
27024
|
+
/**
|
|
27025
|
+
* Renders the hidden aria labelledby node for the accessibility. Hook for the subclasses.
|
|
27026
|
+
*/
|
|
27027
|
+
renderAriaDescribedBy(
|
|
27028
|
+
/**
|
|
27029
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27030
|
+
*/
|
|
27031
|
+
oRm: sap.ui.core.RenderManager,
|
|
27032
|
+
/**
|
|
27033
|
+
* An object representation of the control that should be rendered.
|
|
27034
|
+
*/
|
|
27035
|
+
oControl: sap.m.InputBase
|
|
27036
|
+
): void;
|
|
27037
|
+
/**
|
|
27038
|
+
* Renders the hidden aria labelledby node for the accessibility. Hook for the subclasses.
|
|
27039
|
+
*/
|
|
27040
|
+
renderAriaLabelledBy(
|
|
27041
|
+
/**
|
|
27042
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27043
|
+
*/
|
|
27044
|
+
oRm: sap.ui.core.RenderManager,
|
|
27045
|
+
/**
|
|
27046
|
+
* An object representation of the control that should be rendered.
|
|
27047
|
+
*/
|
|
27048
|
+
oControl: sap.m.InputBase
|
|
27049
|
+
): void;
|
|
27050
|
+
/**
|
|
27051
|
+
* Renders the hidden aria describedby and errormessage nodes for the accessibility.
|
|
27052
|
+
*/
|
|
27053
|
+
renderValueStateAccDom(
|
|
27054
|
+
/**
|
|
27055
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27056
|
+
*/
|
|
27057
|
+
oRm: sap.ui.core.RenderManager,
|
|
27058
|
+
/**
|
|
27059
|
+
* An object representation of the control that should be rendered.
|
|
27060
|
+
*/
|
|
27061
|
+
oControl: sap.m.InputBase
|
|
27062
|
+
): void;
|
|
27063
|
+
/**
|
|
27064
|
+
* Writes the accessibility state of the control. Hook for the subclasses.
|
|
27065
|
+
*/
|
|
27066
|
+
writeAccessibilityState(
|
|
27067
|
+
/**
|
|
27068
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27069
|
+
*/
|
|
27070
|
+
oRm: sap.ui.core.RenderManager,
|
|
27071
|
+
/**
|
|
27072
|
+
* An object representation of the control that should be rendered.
|
|
27073
|
+
*/
|
|
27074
|
+
oControl: sap.m.InputBase
|
|
27075
|
+
): void;
|
|
27076
|
+
/**
|
|
27077
|
+
* Write the decorations of the input - description and value-help icon.
|
|
27078
|
+
*/
|
|
27079
|
+
writeDecorations(
|
|
27080
|
+
/**
|
|
27081
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27082
|
+
*/
|
|
27083
|
+
oRm: sap.ui.core.RenderManager,
|
|
27084
|
+
/**
|
|
27085
|
+
* An object representation of the control that should be rendered.
|
|
27086
|
+
*/
|
|
27087
|
+
oControl: sap.m.InputBase
|
|
27088
|
+
): void;
|
|
27089
|
+
/**
|
|
27090
|
+
* Renders icons from the icon aggregations.
|
|
27091
|
+
*/
|
|
27092
|
+
writeIcons(
|
|
27093
|
+
/**
|
|
27094
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27095
|
+
*/
|
|
27096
|
+
oRm: sap.ui.core.RenderManager,
|
|
27097
|
+
/**
|
|
27098
|
+
* An object representation of the control that should be rendered.
|
|
27099
|
+
*/
|
|
27100
|
+
oControl: sap.m.InputBase,
|
|
27101
|
+
/**
|
|
27102
|
+
* An aggregation from which the icon should be rendered - begin or end.
|
|
27103
|
+
*/
|
|
27104
|
+
sPosition: string
|
|
27105
|
+
): void;
|
|
27106
|
+
/**
|
|
27107
|
+
* This method is reserved for derived classes to add extra attributes for the input element.
|
|
27108
|
+
*/
|
|
27109
|
+
writeInnerAttributes(
|
|
27110
|
+
/**
|
|
27111
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27112
|
+
*/
|
|
27113
|
+
oRm: sap.ui.core.RenderManager,
|
|
27114
|
+
/**
|
|
27115
|
+
* An object representation of the control that should be rendered.
|
|
27116
|
+
*/
|
|
27117
|
+
oControl: sap.m.InputBase
|
|
27118
|
+
): void;
|
|
27119
|
+
/**
|
|
27120
|
+
* Write the value of the input.
|
|
27121
|
+
*/
|
|
27122
|
+
writeInnerContent(
|
|
27123
|
+
/**
|
|
27124
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27125
|
+
*/
|
|
27126
|
+
oRm: sap.ui.core.RenderManager,
|
|
27127
|
+
/**
|
|
27128
|
+
* An object representation of the control that should be rendered.
|
|
27129
|
+
*/
|
|
27130
|
+
oControl: sap.m.InputBase
|
|
27131
|
+
): void;
|
|
27132
|
+
/**
|
|
27133
|
+
* Write the value of the input.
|
|
27134
|
+
*/
|
|
27135
|
+
writeInnerValue(
|
|
27136
|
+
/**
|
|
27137
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27138
|
+
*/
|
|
27139
|
+
oRm: sap.ui.core.RenderManager,
|
|
27140
|
+
/**
|
|
27141
|
+
* An object representation of the control that should be rendered.
|
|
27142
|
+
*/
|
|
27143
|
+
oControl: sap.m.InputBase
|
|
27144
|
+
): void;
|
|
27145
|
+
/**
|
|
27146
|
+
* This method is reserved for derived class to add extra attributes for input container.
|
|
27147
|
+
*/
|
|
27148
|
+
writeOuterAttributes(
|
|
27149
|
+
/**
|
|
27150
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27151
|
+
*/
|
|
27152
|
+
oRm: sap.ui.core.RenderManager,
|
|
27153
|
+
/**
|
|
27154
|
+
* An object representation of the control that should be rendered.
|
|
27155
|
+
*/
|
|
27156
|
+
oControl: sap.m.InputBase
|
|
27157
|
+
): void;
|
|
27158
|
+
}
|
|
27159
|
+
const InputBaseRenderer: InputBaseRenderer;
|
|
27160
|
+
|
|
27161
|
+
/**
|
|
27162
|
+
* Input renderer.
|
|
27163
|
+
*
|
|
27164
|
+
* InputRenderer extends the InputBaseRenderer
|
|
27165
|
+
*/
|
|
27166
|
+
interface InputRenderer {
|
|
27167
|
+
/**
|
|
27168
|
+
* Adds inner css classes to the input field
|
|
27169
|
+
*/
|
|
27170
|
+
addInnerClasses(
|
|
27171
|
+
/**
|
|
27172
|
+
* the RenderManager that can be used for writing to the render output buffer
|
|
27173
|
+
*/
|
|
27174
|
+
oRm: sap.ui.core.RenderManager,
|
|
27175
|
+
/**
|
|
27176
|
+
* an object representation of the control that should be rendered
|
|
27177
|
+
*/
|
|
27178
|
+
oControl: sap.m.Input
|
|
27179
|
+
): void;
|
|
27180
|
+
/**
|
|
27181
|
+
* Adds control specific class
|
|
27182
|
+
*/
|
|
27183
|
+
addOuterClasses(
|
|
27184
|
+
/**
|
|
27185
|
+
* the RenderManager that can be used for writing to the render output buffer
|
|
27186
|
+
*/
|
|
27187
|
+
oRm: sap.ui.core.RenderManager,
|
|
27188
|
+
/**
|
|
27189
|
+
* an object representation of the control that should be rendered
|
|
27190
|
+
*/
|
|
27191
|
+
oControl: sap.m.Input
|
|
27192
|
+
): void;
|
|
27193
|
+
/**
|
|
27194
|
+
* Adds extra styles to the wrapper of the input field.
|
|
27195
|
+
*/
|
|
27196
|
+
addWrapperStyles(
|
|
27197
|
+
/**
|
|
27198
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27199
|
+
*/
|
|
27200
|
+
oRm: sap.ui.core.RenderManager,
|
|
27201
|
+
/**
|
|
27202
|
+
* An object representation of the control that should be rendered.
|
|
27203
|
+
*/
|
|
27204
|
+
oControl: sap.m.Input
|
|
27205
|
+
): void;
|
|
27206
|
+
/**
|
|
27207
|
+
* Returns the inner aria describedby ids for the accessibility.
|
|
27208
|
+
*/
|
|
27209
|
+
getAriaDescribedBy(
|
|
27210
|
+
/**
|
|
27211
|
+
* an object representation of the control.
|
|
27212
|
+
*/
|
|
27213
|
+
oControl: sap.m.Input
|
|
27214
|
+
): string | undefined;
|
|
27215
|
+
/**
|
|
27216
|
+
* Returns aria accessibility role for the control. Hook for the subclasses.
|
|
27217
|
+
*/
|
|
27218
|
+
getAriaRole(
|
|
27219
|
+
/**
|
|
27220
|
+
* an object representation of the control
|
|
27221
|
+
*/
|
|
27222
|
+
oControl: sap.m.Input
|
|
27223
|
+
): string;
|
|
27224
|
+
/**
|
|
27225
|
+
* Write the decorations of the input - description and value-help icon.
|
|
27226
|
+
*/
|
|
27227
|
+
writeDecorations(
|
|
27228
|
+
/**
|
|
27229
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27230
|
+
*/
|
|
27231
|
+
oRm: sap.ui.core.RenderManager,
|
|
27232
|
+
/**
|
|
27233
|
+
* An object representation of the control that should be rendered.
|
|
27234
|
+
*/
|
|
27235
|
+
oControl: sap.m.Input
|
|
27236
|
+
): void;
|
|
27237
|
+
/**
|
|
27238
|
+
* add extra attributes to Input
|
|
27239
|
+
*/
|
|
27240
|
+
writeInnerAttributes(
|
|
27241
|
+
/**
|
|
27242
|
+
* the RenderManager that can be used for writing to the render output buffer
|
|
27243
|
+
*/
|
|
27244
|
+
oRm: sap.ui.core.RenderManager,
|
|
27245
|
+
/**
|
|
27246
|
+
* an object representation of the control that should be rendered
|
|
27247
|
+
*/
|
|
27248
|
+
oControl: sap.m.Input
|
|
27249
|
+
): void;
|
|
27250
|
+
}
|
|
27251
|
+
const InputRenderer: InputRenderer;
|
|
27252
|
+
|
|
26507
27253
|
/**
|
|
26508
27254
|
* @SINCE 1.9.2
|
|
26509
27255
|
*
|
|
@@ -29337,6 +30083,25 @@ declare namespace sap {
|
|
|
29337
30083
|
* ariaDescribedBy}.
|
|
29338
30084
|
*/
|
|
29339
30085
|
getAriaDescribedBy(): sap.ui.core.ID[];
|
|
30086
|
+
/**
|
|
30087
|
+
* @SINCE 1.99.0
|
|
30088
|
+
*
|
|
30089
|
+
* Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
|
|
30090
|
+
*
|
|
30091
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
30092
|
+
*
|
|
30093
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
30094
|
+
* value.
|
|
30095
|
+
*
|
|
30096
|
+
* NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
|
|
30097
|
+
* to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
|
|
30098
|
+
* if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
|
|
30099
|
+
* Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
|
|
30100
|
+
* on overlay over the application.
|
|
30101
|
+
*
|
|
30102
|
+
* Default value is `None`.
|
|
30103
|
+
*/
|
|
30104
|
+
getAriaHasPopup(): sap.ui.core.aria.HasPopup;
|
|
29340
30105
|
/**
|
|
29341
30106
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
29342
30107
|
* ariaLabelledBy}.
|
|
@@ -29498,6 +30263,32 @@ declare namespace sap {
|
|
|
29498
30263
|
*/
|
|
29499
30264
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
29500
30265
|
): sap.ui.core.ID;
|
|
30266
|
+
/**
|
|
30267
|
+
* @SINCE 1.99.0
|
|
30268
|
+
*
|
|
30269
|
+
* Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
|
|
30270
|
+
*
|
|
30271
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
30272
|
+
*
|
|
30273
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
30274
|
+
* value.
|
|
30275
|
+
*
|
|
30276
|
+
* NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
|
|
30277
|
+
* to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
|
|
30278
|
+
* if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
|
|
30279
|
+
* Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
|
|
30280
|
+
* on overlay over the application.
|
|
30281
|
+
*
|
|
30282
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30283
|
+
*
|
|
30284
|
+
* Default value is `None`.
|
|
30285
|
+
*/
|
|
30286
|
+
setAriaHasPopup(
|
|
30287
|
+
/**
|
|
30288
|
+
* New value for property `ariaHasPopup`
|
|
30289
|
+
*/
|
|
30290
|
+
sAriaHasPopup?: sap.ui.core.aria.HasPopup
|
|
30291
|
+
): this;
|
|
29501
30292
|
/**
|
|
29502
30293
|
* Sets a new value for property {@link #getBackgroundColor backgroundColor}.
|
|
29503
30294
|
*
|
|
@@ -38518,6 +39309,25 @@ declare namespace sap {
|
|
|
38518
39309
|
* Default value is `false`.
|
|
38519
39310
|
*/
|
|
38520
39311
|
getShowCurrentTimeButton(): boolean;
|
|
39312
|
+
/**
|
|
39313
|
+
* @SINCE 1.99
|
|
39314
|
+
*
|
|
39315
|
+
* Gets current value of property {@link #getShowTimezone showTimezone}.
|
|
39316
|
+
*
|
|
39317
|
+
* Determines whether to show the timezone or not.
|
|
39318
|
+
*/
|
|
39319
|
+
getShowTimezone(): boolean;
|
|
39320
|
+
/**
|
|
39321
|
+
* @SINCE 1.99
|
|
39322
|
+
*
|
|
39323
|
+
* Gets current value of property {@link #getTimezone timezone}.
|
|
39324
|
+
*
|
|
39325
|
+
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
39326
|
+
* property string is treated as if it is formatted in this timezone. However, the `dateValue` property
|
|
39327
|
+
* is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
|
|
39328
|
+
* it is adjusted when the `timezone` changes.
|
|
39329
|
+
*/
|
|
39330
|
+
getTimezone(): string;
|
|
38521
39331
|
/**
|
|
38522
39332
|
* @SINCE 1.56
|
|
38523
39333
|
*
|
|
@@ -38571,6 +39381,39 @@ declare namespace sap {
|
|
|
38571
39381
|
*/
|
|
38572
39382
|
bShowCurrentTimeButton?: boolean
|
|
38573
39383
|
): this;
|
|
39384
|
+
/**
|
|
39385
|
+
* @SINCE 1.99
|
|
39386
|
+
*
|
|
39387
|
+
* Sets a new value for property {@link #getShowTimezone showTimezone}.
|
|
39388
|
+
*
|
|
39389
|
+
* Determines whether to show the timezone or not.
|
|
39390
|
+
*
|
|
39391
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39392
|
+
*/
|
|
39393
|
+
setShowTimezone(
|
|
39394
|
+
/**
|
|
39395
|
+
* New value for property `showTimezone`
|
|
39396
|
+
*/
|
|
39397
|
+
bShowTimezone: boolean
|
|
39398
|
+
): this;
|
|
39399
|
+
/**
|
|
39400
|
+
* @SINCE 1.99
|
|
39401
|
+
*
|
|
39402
|
+
* Sets a new value for property {@link #getTimezone timezone}.
|
|
39403
|
+
*
|
|
39404
|
+
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
39405
|
+
* property string is treated as if it is formatted in this timezone. However, the `dateValue` property
|
|
39406
|
+
* is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
|
|
39407
|
+
* it is adjusted when the `timezone` changes.
|
|
39408
|
+
*
|
|
39409
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39410
|
+
*/
|
|
39411
|
+
setTimezone(
|
|
39412
|
+
/**
|
|
39413
|
+
* New value for property `timezone`
|
|
39414
|
+
*/
|
|
39415
|
+
sTimezone: string
|
|
39416
|
+
): this;
|
|
38574
39417
|
}
|
|
38575
39418
|
/**
|
|
38576
39419
|
* A popup that interrupts the current processing and prompts the user for an action or an input in a modal
|
|
@@ -40203,7 +41046,11 @@ declare namespace sap {
|
|
|
40203
41046
|
/**
|
|
40204
41047
|
* String value to be parsed
|
|
40205
41048
|
*/
|
|
40206
|
-
sValue: string
|
|
41049
|
+
sValue: string,
|
|
41050
|
+
/**
|
|
41051
|
+
* String value of the key we will parse for
|
|
41052
|
+
*/
|
|
41053
|
+
sKey: string
|
|
40207
41054
|
): object;
|
|
40208
41055
|
}
|
|
40209
41056
|
/**
|
|
@@ -40674,11 +41521,12 @@ declare namespace sap {
|
|
|
40674
41521
|
* Array of standard and custom option keys
|
|
40675
41522
|
*
|
|
40676
41523
|
* Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
|
|
40677
|
-
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "
|
|
40678
|
-
* "TO", "
|
|
40679
|
-
* "
|
|
40680
|
-
* "
|
|
40681
|
-
* "
|
|
41524
|
+
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "DATETIMERANGE",
|
|
41525
|
+
* "FROM", "TO", "FROMDATETIME", "TODATETIME", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS",
|
|
41526
|
+
* "LASTQUARTERS", "LASTYEARS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO",
|
|
41527
|
+
* "THISWEEK", "LASTWEEK", "NEXTWEEK", "SPECIFICMONTH", "SPECIFICMONTHINYEAR", "THISMONTH", "LASTMONTH",
|
|
41528
|
+
* "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER", "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4",
|
|
41529
|
+
* "THISYEAR", "LASTYEAR", "NEXTYEAR", "DATETIME"]`.
|
|
40682
41530
|
*/
|
|
40683
41531
|
getOptions(): string[];
|
|
40684
41532
|
/**
|
|
@@ -40872,11 +41720,12 @@ declare namespace sap {
|
|
|
40872
41720
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40873
41721
|
*
|
|
40874
41722
|
* Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
|
|
40875
|
-
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "
|
|
40876
|
-
* "TO", "
|
|
40877
|
-
* "
|
|
40878
|
-
* "
|
|
40879
|
-
* "
|
|
41723
|
+
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "DATETIMERANGE",
|
|
41724
|
+
* "FROM", "TO", "FROMDATETIME", "TODATETIME", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS",
|
|
41725
|
+
* "LASTQUARTERS", "LASTYEARS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO",
|
|
41726
|
+
* "THISWEEK", "LASTWEEK", "NEXTWEEK", "SPECIFICMONTH", "SPECIFICMONTHINYEAR", "THISMONTH", "LASTMONTH",
|
|
41727
|
+
* "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER", "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4",
|
|
41728
|
+
* "THISYEAR", "LASTYEAR", "NEXTYEAR", "DATETIME"]`.
|
|
40880
41729
|
*/
|
|
40881
41730
|
setOptions(
|
|
40882
41731
|
/**
|
|
@@ -47399,6 +48248,17 @@ declare namespace sap {
|
|
|
47399
48248
|
* Content to add to HeaderContainer.
|
|
47400
48249
|
*/
|
|
47401
48250
|
getContent(): sap.ui.core.Control[];
|
|
48251
|
+
/**
|
|
48252
|
+
* @SINCE 1.99
|
|
48253
|
+
* @EXPERIMENTAL (since 1.99)
|
|
48254
|
+
*
|
|
48255
|
+
* Gets current value of property {@link #getGridLayout gridLayout}.
|
|
48256
|
+
*
|
|
48257
|
+
* Enables grid layout in mobile view.
|
|
48258
|
+
*
|
|
48259
|
+
* Default value is `false`.
|
|
48260
|
+
*/
|
|
48261
|
+
getGridLayout(): boolean;
|
|
47402
48262
|
/**
|
|
47403
48263
|
* Gets current value of property {@link #getHeight height}.
|
|
47404
48264
|
*
|
|
@@ -47537,6 +48397,24 @@ declare namespace sap {
|
|
|
47537
48397
|
*/
|
|
47538
48398
|
sBackgroundDesign?: sap.m.BackgroundDesign
|
|
47539
48399
|
): this;
|
|
48400
|
+
/**
|
|
48401
|
+
* @SINCE 1.99
|
|
48402
|
+
* @EXPERIMENTAL (since 1.99)
|
|
48403
|
+
*
|
|
48404
|
+
* Sets a new value for property {@link #getGridLayout gridLayout}.
|
|
48405
|
+
*
|
|
48406
|
+
* Enables grid layout in mobile view.
|
|
48407
|
+
*
|
|
48408
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48409
|
+
*
|
|
48410
|
+
* Default value is `false`.
|
|
48411
|
+
*/
|
|
48412
|
+
setGridLayout(
|
|
48413
|
+
/**
|
|
48414
|
+
* New value for property `gridLayout`
|
|
48415
|
+
*/
|
|
48416
|
+
bGridLayout?: boolean
|
|
48417
|
+
): this;
|
|
47540
48418
|
/**
|
|
47541
48419
|
* Sets a new value for property {@link #getHeight height}.
|
|
47542
48420
|
*
|
|
@@ -52936,7 +53814,7 @@ declare namespace sap {
|
|
|
52936
53814
|
* Ontap event.
|
|
52937
53815
|
*/
|
|
52938
53816
|
oEvent: jQuery.Event
|
|
52939
|
-
):
|
|
53817
|
+
): boolean;
|
|
52940
53818
|
/**
|
|
52941
53819
|
* @SINCE 1.64
|
|
52942
53820
|
* @EXPERIMENTAL (since 1.64)
|
|
@@ -54633,7 +55511,7 @@ declare namespace sap {
|
|
|
54633
55511
|
/**
|
|
54634
55512
|
* The image subtitle
|
|
54635
55513
|
*/
|
|
54636
|
-
|
|
55514
|
+
sSubtitleText: string
|
|
54637
55515
|
): this;
|
|
54638
55516
|
/**
|
|
54639
55517
|
* Sets the title of the image.
|
|
@@ -57279,7 +58157,7 @@ declare namespace sap {
|
|
|
57279
58157
|
* This callback function is called with two parameters(swipedListItem and swipedContent) after swipe-out
|
|
57280
58158
|
* animation is finished.
|
|
57281
58159
|
*/
|
|
57282
|
-
|
|
58160
|
+
callback: Function
|
|
57283
58161
|
): this;
|
|
57284
58162
|
/**
|
|
57285
58163
|
* Unbinds aggregation {@link #getItems items} from model data.
|
|
@@ -57913,6 +58791,15 @@ declare namespace sap {
|
|
|
57913
58791
|
* The `sap.m.MaskInput` control allows users to easily enter data in a certain format and in a fixed-width
|
|
57914
58792
|
* input (for example: date, time, phone number, credit card number, currency, IP address, MAC address,
|
|
57915
58793
|
* and others).
|
|
58794
|
+
*
|
|
58795
|
+
* When focused, the masked input field is formatted and prefilled. The `placeholderSymbol` property value
|
|
58796
|
+
* is reserved for a placeholder. The value that has to be entered in this field is in the `mask` property
|
|
58797
|
+
* value format where every symbol corresponds to a rule. A rule is a set of characters that are allowed
|
|
58798
|
+
* for their particular position. Symbols that do not have a rule are immutable characters and are part
|
|
58799
|
+
* of the value formatting.
|
|
58800
|
+
*
|
|
58801
|
+
* Descriptive text as `placeholder` property value should be added, in order guide users what
|
|
58802
|
+
* input is expected based on the particular control configuration.
|
|
57916
58803
|
*/
|
|
57917
58804
|
class MaskInput extends sap.m.InputBase {
|
|
57918
58805
|
/**
|
|
@@ -61225,6 +62112,8 @@ declare namespace sap {
|
|
|
61225
62112
|
*/
|
|
61226
62113
|
getAsyncURLHandler(): any;
|
|
61227
62114
|
/**
|
|
62115
|
+
* @SINCE 1.73
|
|
62116
|
+
*
|
|
61228
62117
|
* Gets current value of property {@link #getGroupItems groupItems}.
|
|
61229
62118
|
*
|
|
61230
62119
|
* Defines whether the MessageItems are grouped or not.
|
|
@@ -61351,6 +62240,8 @@ declare namespace sap {
|
|
|
61351
62240
|
oAsyncURLHandler?: any
|
|
61352
62241
|
): this;
|
|
61353
62242
|
/**
|
|
62243
|
+
* @SINCE 1.73
|
|
62244
|
+
*
|
|
61354
62245
|
* Sets a new value for property {@link #getGroupItems groupItems}.
|
|
61355
62246
|
*
|
|
61356
62247
|
* Defines whether the MessageItems are grouped or not.
|
|
@@ -67051,6 +67942,9 @@ declare namespace sap {
|
|
|
67051
67942
|
*
|
|
67052
67943
|
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
67053
67944
|
* icon is not available, or cannot be displayed.
|
|
67945
|
+
*
|
|
67946
|
+
* **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
|
|
67947
|
+
* decoration only.
|
|
67054
67948
|
*/
|
|
67055
67949
|
getIconAlt(): string;
|
|
67056
67950
|
/**
|
|
@@ -67639,18 +68533,13 @@ declare namespace sap {
|
|
|
67639
68533
|
bIconActive?: boolean
|
|
67640
68534
|
): this;
|
|
67641
68535
|
/**
|
|
67642
|
-
* Sets
|
|
67643
|
-
*
|
|
67644
|
-
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
67645
|
-
* icon is not available, or cannot be displayed.
|
|
67646
|
-
*
|
|
67647
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
68536
|
+
* Sets the alternative text of the `ObjectHeader` icon.
|
|
67648
68537
|
*/
|
|
67649
68538
|
setIconAlt(
|
|
67650
68539
|
/**
|
|
67651
|
-
*
|
|
68540
|
+
* the alternative icon text
|
|
67652
68541
|
*/
|
|
67653
|
-
sIconAlt
|
|
68542
|
+
sIconAlt: boolean
|
|
67654
68543
|
): this;
|
|
67655
68544
|
/**
|
|
67656
68545
|
* Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
|
|
@@ -78744,6 +79633,8 @@ declare namespace sap {
|
|
|
78744
79633
|
*/
|
|
78745
79634
|
getCustomAppointmentsSorterCallback(): sap.m.PlanningCalendar.appointmentsSorterCallback;
|
|
78746
79635
|
/**
|
|
79636
|
+
* @SINCE 1.87
|
|
79637
|
+
*
|
|
78747
79638
|
* Getter for the end point in time of the shown interval
|
|
78748
79639
|
*/
|
|
78749
79640
|
getEndDate(): Date;
|
|
@@ -85858,12 +86749,7 @@ declare namespace sap {
|
|
|
85858
86749
|
/**
|
|
85859
86750
|
* Updates values of the advanced tooltips.
|
|
85860
86751
|
*/
|
|
85861
|
-
updateAdvancedTooltipDom(
|
|
85862
|
-
/**
|
|
85863
|
-
* The new value
|
|
85864
|
-
*/
|
|
85865
|
-
sNewValue: string
|
|
85866
|
-
): void;
|
|
86752
|
+
updateAdvancedTooltipDom(): void;
|
|
85867
86753
|
}
|
|
85868
86754
|
/**
|
|
85869
86755
|
* @SINCE 1.14
|
|
@@ -94967,6 +95853,18 @@ declare namespace sap {
|
|
|
94967
95853
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
94968
95854
|
*/
|
|
94969
95855
|
getLegend(): sap.ui.core.ID;
|
|
95856
|
+
/**
|
|
95857
|
+
* @SINCE 1.99
|
|
95858
|
+
*
|
|
95859
|
+
* Gets current value of property {@link #getScaleFactor scaleFactor}.
|
|
95860
|
+
*
|
|
95861
|
+
* Determines scale factor for the appointments.
|
|
95862
|
+
*
|
|
95863
|
+
* Acceptable range is from 1 to 6.
|
|
95864
|
+
*
|
|
95865
|
+
* Default value is `1`.
|
|
95866
|
+
*/
|
|
95867
|
+
getScaleFactor(): float;
|
|
94970
95868
|
/**
|
|
94971
95869
|
* @SINCE 1.62
|
|
94972
95870
|
*
|
|
@@ -95342,6 +96240,25 @@ declare namespace sap {
|
|
|
95342
96240
|
*/
|
|
95343
96241
|
oLegend: sap.ui.core.ID | sap.m.PlanningCalendarLegend
|
|
95344
96242
|
): this;
|
|
96243
|
+
/**
|
|
96244
|
+
* @SINCE 1.99
|
|
96245
|
+
*
|
|
96246
|
+
* Sets a new value for property {@link #getScaleFactor scaleFactor}.
|
|
96247
|
+
*
|
|
96248
|
+
* Determines scale factor for the appointments.
|
|
96249
|
+
*
|
|
96250
|
+
* Acceptable range is from 1 to 6.
|
|
96251
|
+
*
|
|
96252
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
96253
|
+
*
|
|
96254
|
+
* Default value is `1`.
|
|
96255
|
+
*/
|
|
96256
|
+
setScaleFactor(
|
|
96257
|
+
/**
|
|
96258
|
+
* New value for property `scaleFactor`
|
|
96259
|
+
*/
|
|
96260
|
+
fScaleFactor?: float
|
|
96261
|
+
): this;
|
|
95345
96262
|
/**
|
|
95346
96263
|
* Sets the associated {@link #getSelectedView selectedView}.
|
|
95347
96264
|
*/
|
|
@@ -97873,8 +98790,8 @@ declare namespace sap {
|
|
|
97873
98790
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
97874
98791
|
* are actually used to influence the transition.
|
|
97875
98792
|
*/
|
|
97876
|
-
|
|
97877
|
-
):
|
|
98793
|
+
oTransitionParameters: object
|
|
98794
|
+
): void;
|
|
97878
98795
|
/**
|
|
97879
98796
|
* Navigates back to the previous master page which is found in the history.
|
|
97880
98797
|
*/
|
|
@@ -97904,8 +98821,8 @@ declare namespace sap {
|
|
|
97904
98821
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
97905
98822
|
* are actually used to influence the transition.
|
|
97906
98823
|
*/
|
|
97907
|
-
|
|
97908
|
-
):
|
|
98824
|
+
oTransitionParameters: object
|
|
98825
|
+
): void;
|
|
97909
98826
|
/**
|
|
97910
98827
|
* @SINCE 1.10.0
|
|
97911
98828
|
*
|
|
@@ -97951,7 +98868,7 @@ declare namespace sap {
|
|
|
97951
98868
|
* are actually used to influence the transition.
|
|
97952
98869
|
*/
|
|
97953
98870
|
oTransitionParameters: object
|
|
97954
|
-
):
|
|
98871
|
+
): void;
|
|
97955
98872
|
/**
|
|
97956
98873
|
* Navigates back to the initial/top level of Detail (this is the element aggregated as initialPage, or
|
|
97957
98874
|
* the first added element). NOTE: If already on the initial page, nothing happens. The transition effect
|
|
@@ -97983,8 +98900,8 @@ declare namespace sap {
|
|
|
97983
98900
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
97984
98901
|
* are actually used to influence the transition.
|
|
97985
98902
|
*/
|
|
97986
|
-
|
|
97987
|
-
):
|
|
98903
|
+
oTransitionParameters: object
|
|
98904
|
+
): void;
|
|
97988
98905
|
/**
|
|
97989
98906
|
* Navigates back to the initial/top level of Master (this is the element aggregated as "initialPage", or
|
|
97990
98907
|
* the first added element). NOTE: If already on the initial page, nothing happens. The transition effect
|
|
@@ -98016,8 +98933,8 @@ declare namespace sap {
|
|
|
98016
98933
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
98017
98934
|
* are actually used to influence the transition.
|
|
98018
98935
|
*/
|
|
98019
|
-
|
|
98020
|
-
):
|
|
98936
|
+
oTransitionParameters: object
|
|
98937
|
+
): void;
|
|
98021
98938
|
/**
|
|
98022
98939
|
* Destroys all the detailPages in the aggregation {@link #getDetailPages detailPages}.
|
|
98023
98940
|
*/
|
|
@@ -98525,7 +99442,7 @@ declare namespace sap {
|
|
|
98525
99442
|
* The ID of the page that needs to be fetched.
|
|
98526
99443
|
*/
|
|
98527
99444
|
sId: string
|
|
98528
|
-
): sap.ui.core.Control;
|
|
99445
|
+
): sap.ui.core.Control | null;
|
|
98529
99446
|
/**
|
|
98530
99447
|
* Gets content of aggregation {@link #getDetailPages detailPages}.
|
|
98531
99448
|
*
|
|
@@ -98577,7 +99494,7 @@ declare namespace sap {
|
|
|
98577
99494
|
* The ID of the page that needs to be fetched
|
|
98578
99495
|
*/
|
|
98579
99496
|
sId: string
|
|
98580
|
-
): sap.ui.core.Control;
|
|
99497
|
+
): sap.ui.core.Control | null;
|
|
98581
99498
|
/**
|
|
98582
99499
|
* Gets content of aggregation {@link #getMasterPages masterPages}.
|
|
98583
99500
|
*
|
|
@@ -98607,13 +99524,13 @@ declare namespace sap {
|
|
|
98607
99524
|
/**
|
|
98608
99525
|
* The ID of the page that needs to be fetched
|
|
98609
99526
|
*/
|
|
98610
|
-
|
|
99527
|
+
pageId: string,
|
|
98611
99528
|
/**
|
|
98612
99529
|
* If the page with given ID should be fetched from the master area. If it's set to false, the page will
|
|
98613
99530
|
* be fetched from detail area.
|
|
98614
99531
|
*/
|
|
98615
99532
|
bMaster: boolean
|
|
98616
|
-
): sap.ui.core.Control;
|
|
99533
|
+
): sap.ui.core.Control | null;
|
|
98617
99534
|
/**
|
|
98618
99535
|
* Returns the previous page (the page, from which the user drilled down to the current page with to()).
|
|
98619
99536
|
* Note: this is not the page, which the user has seen before, but the page which is the target of the next
|
|
@@ -98728,10 +99645,11 @@ declare namespace sap {
|
|
|
98728
99645
|
/**
|
|
98729
99646
|
* @SINCE 1.16.5
|
|
98730
99647
|
*
|
|
98731
|
-
* Returns whether master area is currently displayed on the screen.
|
|
98732
|
-
*
|
|
98733
|
-
*
|
|
98734
|
-
*
|
|
99648
|
+
* Returns whether master area is currently displayed on the screen.
|
|
99649
|
+
*
|
|
99650
|
+
* In desktop browser or tablet, this method returns true when master area is displayed on the screen, regardless
|
|
99651
|
+
* if in portrait or landscape mode. On mobile phone devices, this method returns true when the currently
|
|
99652
|
+
* displayed page is from the pages, which are added to the master area, otherwise, it returns false.
|
|
98735
99653
|
*/
|
|
98736
99654
|
isMasterShown(): boolean;
|
|
98737
99655
|
/**
|
|
@@ -98947,7 +99865,7 @@ declare namespace sap {
|
|
|
98947
99865
|
/**
|
|
98948
99866
|
* Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
|
|
98949
99867
|
*/
|
|
98950
|
-
showMaster():
|
|
99868
|
+
showMaster(): void;
|
|
98951
99869
|
/**
|
|
98952
99870
|
* @SINCE 1.10.0
|
|
98953
99871
|
*
|
|
@@ -98990,7 +99908,7 @@ declare namespace sap {
|
|
|
98990
99908
|
* any parameter.
|
|
98991
99909
|
*/
|
|
98992
99910
|
oTransitionParameters: object
|
|
98993
|
-
):
|
|
99911
|
+
): void;
|
|
98994
99912
|
/**
|
|
98995
99913
|
* @SINCE 1.10.0
|
|
98996
99914
|
*
|
|
@@ -99026,7 +99944,7 @@ declare namespace sap {
|
|
|
99026
99944
|
* any parameter.
|
|
99027
99945
|
*/
|
|
99028
99946
|
oTransitionParameters: object
|
|
99029
|
-
):
|
|
99947
|
+
): void;
|
|
99030
99948
|
/**
|
|
99031
99949
|
* Navigates to a given detail page.
|
|
99032
99950
|
*/
|
|
@@ -99062,8 +99980,8 @@ declare namespace sap {
|
|
|
99062
99980
|
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
99063
99981
|
* any parameter.
|
|
99064
99982
|
*/
|
|
99065
|
-
|
|
99066
|
-
):
|
|
99983
|
+
oTransitionParameters: object
|
|
99984
|
+
): void;
|
|
99067
99985
|
/**
|
|
99068
99986
|
* Navigates to a given master page.
|
|
99069
99987
|
*/
|
|
@@ -99103,7 +100021,7 @@ declare namespace sap {
|
|
|
99103
100021
|
* any parameter.
|
|
99104
100022
|
*/
|
|
99105
100023
|
oTransitionParameters: object
|
|
99106
|
-
):
|
|
100024
|
+
): void;
|
|
99107
100025
|
}
|
|
99108
100026
|
/**
|
|
99109
100027
|
* @EXPERIMENTAL (since 1.92)
|
|
@@ -104424,9 +105342,9 @@ declare namespace sap {
|
|
|
104424
105342
|
*/
|
|
104425
105343
|
setBusy(
|
|
104426
105344
|
/**
|
|
104427
|
-
* for enabling busy indicator
|
|
105345
|
+
* flag for enabling busy indicator
|
|
104428
105346
|
*/
|
|
104429
|
-
|
|
105347
|
+
bBusy: boolean
|
|
104430
105348
|
): this;
|
|
104431
105349
|
/**
|
|
104432
105350
|
* Sets the busyIndicatorDelay value to the internal table
|
|
@@ -104503,7 +105421,7 @@ declare namespace sap {
|
|
|
104503
105421
|
/**
|
|
104504
105422
|
* The optional model name
|
|
104505
105423
|
*/
|
|
104506
|
-
|
|
105424
|
+
sModelName?: string
|
|
104507
105425
|
): this;
|
|
104508
105426
|
/**
|
|
104509
105427
|
* Enables/Disables multi selection mode.
|
|
@@ -117672,9 +118590,9 @@ declare namespace sap {
|
|
|
117672
118590
|
*/
|
|
117673
118591
|
SimpleCalendar = "sapIllus-SimpleCalendar",
|
|
117674
118592
|
/**
|
|
117675
|
-
* "Simple
|
|
118593
|
+
* "Simple CheckMark" illustration type.
|
|
117676
118594
|
*/
|
|
117677
|
-
|
|
118595
|
+
SimpleCheckMark = "sapIllus-SimpleCheckMark",
|
|
117678
118596
|
/**
|
|
117679
118597
|
* "Simple Connection" illustration type.
|
|
117680
118598
|
*/
|
|
@@ -117723,6 +118641,18 @@ declare namespace sap {
|
|
|
117723
118641
|
* "Sort Column" illustration type.
|
|
117724
118642
|
*/
|
|
117725
118643
|
SortColumn = "sapIllus-SortColumn",
|
|
118644
|
+
/**
|
|
118645
|
+
* "Success Balloon" illustration type.
|
|
118646
|
+
*/
|
|
118647
|
+
SuccessBalloon = "sapIllus-SuccessBalloon",
|
|
118648
|
+
/**
|
|
118649
|
+
* "Success CheckMark" illustration type.
|
|
118650
|
+
*/
|
|
118651
|
+
SuccessCheckMark = "sapIllus-SuccessCheckMark",
|
|
118652
|
+
/**
|
|
118653
|
+
* "Success HighFive" illustration type.
|
|
118654
|
+
*/
|
|
118655
|
+
SuccessHighFive = "sapIllus-SuccessHighFive",
|
|
117726
118656
|
/**
|
|
117727
118657
|
* "Success Screen" illustration type.
|
|
117728
118658
|
*/
|
|
@@ -117735,6 +118665,10 @@ declare namespace sap {
|
|
|
117735
118665
|
* "Unable To Load" illustration type.
|
|
117736
118666
|
*/
|
|
117737
118667
|
UnableToLoad = "sapIllus-UnableToLoad",
|
|
118668
|
+
/**
|
|
118669
|
+
* "Unable To Load Image" illustration type.
|
|
118670
|
+
*/
|
|
118671
|
+
UnableToLoadImage = "sapIllus-UnableToLoadImage",
|
|
117738
118672
|
/**
|
|
117739
118673
|
* "Unable To Upload" illustration type.
|
|
117740
118674
|
*/
|
|
@@ -118807,6 +119741,14 @@ declare namespace sap {
|
|
|
118807
119741
|
* The range will be selected from a calendar.
|
|
118808
119742
|
*/
|
|
118809
119743
|
DATERANGE = "DATERANGE",
|
|
119744
|
+
/**
|
|
119745
|
+
* The date and time will be selected from a calendar and time picker.
|
|
119746
|
+
*/
|
|
119747
|
+
DATETIME = "DATETIME",
|
|
119748
|
+
/**
|
|
119749
|
+
* The range will be selected from two DateTimePicker controls.
|
|
119750
|
+
*/
|
|
119751
|
+
DATETIMERANGE = "DATETIMERANGE",
|
|
118810
119752
|
/**
|
|
118811
119753
|
* The range will start from the date selected from a calendar and ends with the last day of the current
|
|
118812
119754
|
* year.
|
|
@@ -118832,6 +119774,10 @@ declare namespace sap {
|
|
|
118832
119774
|
* The range will start from a date selected from a calendar.
|
|
118833
119775
|
*/
|
|
118834
119776
|
FROM = "FROM",
|
|
119777
|
+
/**
|
|
119778
|
+
* The range will start from a date and time selected from a calendar and time picker.
|
|
119779
|
+
*/
|
|
119780
|
+
FROMDATETIME = "FROMDATETIME",
|
|
118835
119781
|
/**
|
|
118836
119782
|
* The date will be the last day of the current month.
|
|
118837
119783
|
*/
|
|
@@ -118940,6 +119886,10 @@ declare namespace sap {
|
|
|
118940
119886
|
* The range will contain a month selected from a MonthPicker.
|
|
118941
119887
|
*/
|
|
118942
119888
|
SPECIFICMONTH = "SPECIFICMONTH",
|
|
119889
|
+
/**
|
|
119890
|
+
* The range will contain a month in exact year selected from a MonthPicker.
|
|
119891
|
+
*/
|
|
119892
|
+
SPECIFICMONTHINYEAR = "SPECIFICMONTHINYEAR",
|
|
118943
119893
|
/**
|
|
118944
119894
|
* The range will contain the days in the current month.
|
|
118945
119895
|
*/
|
|
@@ -118960,6 +119910,10 @@ declare namespace sap {
|
|
|
118960
119910
|
* The range will end in a date selected from a calendar.
|
|
118961
119911
|
*/
|
|
118962
119912
|
TO = "TO",
|
|
119913
|
+
/**
|
|
119914
|
+
* The range will end in a date and time selected from a calendar and time picker.
|
|
119915
|
+
*/
|
|
119916
|
+
TODATETIME = "TODATETIME",
|
|
118963
119917
|
/**
|
|
118964
119918
|
* The date will be the day of selection.
|
|
118965
119919
|
*/
|
|
@@ -119563,8 +120517,12 @@ declare namespace sap {
|
|
|
119563
120517
|
|
|
119564
120518
|
"sap/m/InputBase": undefined;
|
|
119565
120519
|
|
|
120520
|
+
"sap/m/InputBaseRenderer": undefined;
|
|
120521
|
+
|
|
119566
120522
|
"sap/m/InputListItem": undefined;
|
|
119567
120523
|
|
|
120524
|
+
"sap/m/InputRenderer": undefined;
|
|
120525
|
+
|
|
119568
120526
|
"sap/m/InstanceManager": undefined;
|
|
119569
120527
|
|
|
119570
120528
|
"sap/m/Label": undefined;
|