@openui5/ts-types 1.96.1 → 1.97.1
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/index.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +511 -45
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +7 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +389 -165
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -3
- package/types/sap.ui.integration.d.ts +42 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +20 -10
- package/types/sap.ui.rta.d.ts +5 -11
- 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 +3 -3
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +43 -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 +679 -59
- package/types/sap.ui.webc.main.d.ts +1026 -506
- 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.97.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -8,13 +8,6 @@ declare namespace sap {
|
|
|
8
8
|
* browsers.
|
|
9
9
|
*/
|
|
10
10
|
namespace m {
|
|
11
|
-
/**
|
|
12
|
-
* @EXPERIMENTAL (since 1.92)
|
|
13
|
-
*
|
|
14
|
-
* A utility class for working with the DynamicDateOption instances.
|
|
15
|
-
*/
|
|
16
|
-
export const DynamicDateUtil: undefined;
|
|
17
|
-
|
|
18
11
|
/**
|
|
19
12
|
* @EXPERIMENTAL (since 1.92)
|
|
20
13
|
*
|
|
@@ -10889,6 +10882,15 @@ declare namespace sap {
|
|
|
10889
10882
|
*/
|
|
10890
10883
|
badgeTooltip?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
10891
10884
|
|
|
10885
|
+
/**
|
|
10886
|
+
* @SINCE 1.97
|
|
10887
|
+
*
|
|
10888
|
+
* Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
|
|
10889
|
+
*
|
|
10890
|
+
* **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
|
|
10891
|
+
*/
|
|
10892
|
+
decorative?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
10893
|
+
|
|
10892
10894
|
/**
|
|
10893
10895
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
10894
10896
|
* control.
|
|
@@ -11893,6 +11895,14 @@ declare namespace sap {
|
|
|
11893
11895
|
*/
|
|
11894
11896
|
open?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
11895
11897
|
|
|
11898
|
+
/**
|
|
11899
|
+
* @SINCE 1.96
|
|
11900
|
+
*
|
|
11901
|
+
* Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
|
|
11902
|
+
* and liveChange events.
|
|
11903
|
+
*/
|
|
11904
|
+
showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
11905
|
+
|
|
11896
11906
|
/**
|
|
11897
11907
|
* Defines the items contained within this control. **Note:** Disabled items are not visualized in the list
|
|
11898
11908
|
* with the available options, however they can still be accessed through the aggregation.
|
|
@@ -12107,6 +12117,21 @@ declare namespace sap {
|
|
|
12107
12117
|
| boolean
|
|
12108
12118
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12109
12119
|
|
|
12120
|
+
/**
|
|
12121
|
+
* @SINCE 1.97
|
|
12122
|
+
*
|
|
12123
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
12124
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
12125
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
12126
|
+
* must be provided as parameter.
|
|
12127
|
+
*
|
|
12128
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
12129
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
12130
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
12131
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
12132
|
+
*/
|
|
12133
|
+
hideInput?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12134
|
+
|
|
12110
12135
|
/**
|
|
12111
12136
|
* @SINCE 1.38.5
|
|
12112
12137
|
*
|
|
@@ -12334,16 +12359,16 @@ declare namespace sap {
|
|
|
12334
12359
|
/**
|
|
12335
12360
|
* @SINCE 1.56
|
|
12336
12361
|
*
|
|
12337
|
-
* Sets the minutes
|
|
12338
|
-
*
|
|
12362
|
+
* Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
|
|
12363
|
+
* minutes clock is populated only by multiples of the step.
|
|
12339
12364
|
*/
|
|
12340
12365
|
minutesStep?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12341
12366
|
|
|
12342
12367
|
/**
|
|
12343
12368
|
* @SINCE 1.56
|
|
12344
12369
|
*
|
|
12345
|
-
* Sets the seconds
|
|
12346
|
-
*
|
|
12370
|
+
* Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
|
|
12371
|
+
* seconds clock is populated only by multiples of the step.
|
|
12347
12372
|
*/
|
|
12348
12373
|
secondsStep?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12349
12374
|
}
|
|
@@ -13771,6 +13796,13 @@ declare namespace sap {
|
|
|
13771
13796
|
*/
|
|
13772
13797
|
value?: sap.m.ObjectNumber;
|
|
13773
13798
|
|
|
13799
|
+
/**
|
|
13800
|
+
* @SINCE 1.97.0
|
|
13801
|
+
*
|
|
13802
|
+
* Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy).
|
|
13803
|
+
*/
|
|
13804
|
+
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
13805
|
+
|
|
13774
13806
|
/**
|
|
13775
13807
|
* Fired when the user clicks/taps on the control.
|
|
13776
13808
|
*/
|
|
@@ -13915,6 +13947,13 @@ declare namespace sap {
|
|
|
13915
13947
|
| boolean
|
|
13916
13948
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13917
13949
|
|
|
13950
|
+
/**
|
|
13951
|
+
* @EXPERIMENTAL (since 1.96)
|
|
13952
|
+
*
|
|
13953
|
+
* Disables press event for the tile control.
|
|
13954
|
+
*/
|
|
13955
|
+
pressEnabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13956
|
+
|
|
13918
13957
|
/**
|
|
13919
13958
|
* @EXPERIMENTAL (since 1.96)
|
|
13920
13959
|
*
|
|
@@ -16262,6 +16301,17 @@ declare namespace sap {
|
|
|
16262
16301
|
*/
|
|
16263
16302
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16264
16303
|
|
|
16304
|
+
/**
|
|
16305
|
+
* @SINCE 1.97
|
|
16306
|
+
*
|
|
16307
|
+
* Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
|
|
16308
|
+
*
|
|
16309
|
+
* **Note:** Used for accessibility purposes only.
|
|
16310
|
+
*/
|
|
16311
|
+
titleLevel?:
|
|
16312
|
+
| sap.ui.core.TitleLevel
|
|
16313
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16314
|
+
|
|
16265
16315
|
/**
|
|
16266
16316
|
* Determines the visibility of the MessagePage header. Can be used to hide the header of the MessagePage
|
|
16267
16317
|
* when it's embedded in another page.
|
|
@@ -19419,6 +19469,17 @@ declare namespace sap {
|
|
|
19419
19469
|
*/
|
|
19420
19470
|
firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19421
19471
|
|
|
19472
|
+
/**
|
|
19473
|
+
* @SINCE 1.97
|
|
19474
|
+
*
|
|
19475
|
+
* Determines whether the selection of multiple appointments is enabled.
|
|
19476
|
+
*
|
|
19477
|
+
* Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
|
|
19478
|
+
*/
|
|
19479
|
+
multipleAppointmentsSelection?:
|
|
19480
|
+
| boolean
|
|
19481
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19482
|
+
|
|
19422
19483
|
/**
|
|
19423
19484
|
* Rows of the `PlanningCalendar`.
|
|
19424
19485
|
*/
|
|
@@ -23872,6 +23933,21 @@ declare namespace sap {
|
|
|
23872
23933
|
*/
|
|
23873
23934
|
support2400?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23874
23935
|
|
|
23936
|
+
/**
|
|
23937
|
+
* @SINCE 1.97
|
|
23938
|
+
*
|
|
23939
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
23940
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
23941
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
23942
|
+
* must be provided as parameter.
|
|
23943
|
+
*
|
|
23944
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
23945
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
23946
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
|
|
23947
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
23948
|
+
*/
|
|
23949
|
+
hideInput?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23950
|
+
|
|
23875
23951
|
/**
|
|
23876
23952
|
* A list of validation rules (one rule per mask character).
|
|
23877
23953
|
*/
|
|
@@ -25187,6 +25263,63 @@ declare namespace sap {
|
|
|
25187
25263
|
activate?: (oEvent: sap.ui.base.Event) => void;
|
|
25188
25264
|
}
|
|
25189
25265
|
|
|
25266
|
+
/**
|
|
25267
|
+
* @EXPERIMENTAL (since 1.92)
|
|
25268
|
+
*
|
|
25269
|
+
* The DynamicDateUtil is a utility class for working with the DynamicDateOption instances.
|
|
25270
|
+
*/
|
|
25271
|
+
interface DynamicDateUtil {
|
|
25272
|
+
/**
|
|
25273
|
+
* Adds an option to be reused as a global object.
|
|
25274
|
+
*/
|
|
25275
|
+
addOption(
|
|
25276
|
+
/**
|
|
25277
|
+
* The option to be added
|
|
25278
|
+
*/
|
|
25279
|
+
option: sap.m.DynamicDateOption
|
|
25280
|
+
): void;
|
|
25281
|
+
/**
|
|
25282
|
+
* Gets all available standard and custom dynamic date option keys.
|
|
25283
|
+
*/
|
|
25284
|
+
getAllOptionKeys(): string[];
|
|
25285
|
+
/**
|
|
25286
|
+
* Gets an option by its key.
|
|
25287
|
+
*/
|
|
25288
|
+
getOption(
|
|
25289
|
+
/**
|
|
25290
|
+
* The option key
|
|
25291
|
+
*/
|
|
25292
|
+
sKey: string
|
|
25293
|
+
): sap.m.DynamicDateOption;
|
|
25294
|
+
/**
|
|
25295
|
+
* Parses a string to an array of objects in the DynamicDateRange's value format. Uses the provided formatter.
|
|
25296
|
+
*/
|
|
25297
|
+
parse(
|
|
25298
|
+
/**
|
|
25299
|
+
* The string to be parsed
|
|
25300
|
+
*/
|
|
25301
|
+
sValue: string,
|
|
25302
|
+
/**
|
|
25303
|
+
* A dynamic date formatter
|
|
25304
|
+
*/
|
|
25305
|
+
oFormatter: sap.m.DynamicDateFormat,
|
|
25306
|
+
/**
|
|
25307
|
+
* array of option names
|
|
25308
|
+
*/
|
|
25309
|
+
aOptionKeys: any[]
|
|
25310
|
+
): object[];
|
|
25311
|
+
/**
|
|
25312
|
+
* Calculates a date range from a provided object in the format of the DynamicDateRange's value.
|
|
25313
|
+
*/
|
|
25314
|
+
toDates(
|
|
25315
|
+
/**
|
|
25316
|
+
* The provided value
|
|
25317
|
+
*/
|
|
25318
|
+
oValue: string
|
|
25319
|
+
): /* was: sap.ui.core.date.UniversalDate */ any[];
|
|
25320
|
+
}
|
|
25321
|
+
const DynamicDateUtil: DynamicDateUtil;
|
|
25322
|
+
|
|
25190
25323
|
/**
|
|
25191
25324
|
* @SINCE 1.9.2
|
|
25192
25325
|
*
|
|
@@ -28080,6 +28213,18 @@ declare namespace sap {
|
|
|
28080
28213
|
* Default value is `"1.125rem"`.
|
|
28081
28214
|
*/
|
|
28082
28215
|
getCustomFontSize(): sap.ui.core.CSSSize;
|
|
28216
|
+
/**
|
|
28217
|
+
* @SINCE 1.97
|
|
28218
|
+
*
|
|
28219
|
+
* Gets current value of property {@link #getDecorative decorative}.
|
|
28220
|
+
*
|
|
28221
|
+
* Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
|
|
28222
|
+
*
|
|
28223
|
+
* **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
|
|
28224
|
+
*
|
|
28225
|
+
* Default value is `false`.
|
|
28226
|
+
*/
|
|
28227
|
+
getDecorative(): boolean;
|
|
28083
28228
|
/**
|
|
28084
28229
|
* Gets content of aggregation {@link #getDetailBox detailBox}.
|
|
28085
28230
|
*
|
|
@@ -28259,6 +28404,25 @@ declare namespace sap {
|
|
|
28259
28404
|
*/
|
|
28260
28405
|
sCustomFontSize?: sap.ui.core.CSSSize
|
|
28261
28406
|
): this;
|
|
28407
|
+
/**
|
|
28408
|
+
* @SINCE 1.97
|
|
28409
|
+
*
|
|
28410
|
+
* Sets a new value for property {@link #getDecorative decorative}.
|
|
28411
|
+
*
|
|
28412
|
+
* Defines whether the `sap.m.Avatar` is used for decorative purposes and is ignored by accessibility tools.
|
|
28413
|
+
*
|
|
28414
|
+
* **Note:** This property doesn't take effect if `sap.m.Avatar` has a `press` handler.
|
|
28415
|
+
*
|
|
28416
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
28417
|
+
*
|
|
28418
|
+
* Default value is `false`.
|
|
28419
|
+
*/
|
|
28420
|
+
setDecorative(
|
|
28421
|
+
/**
|
|
28422
|
+
* New value for property `decorative`
|
|
28423
|
+
*/
|
|
28424
|
+
bDecorative?: boolean
|
|
28425
|
+
): this;
|
|
28262
28426
|
/**
|
|
28263
28427
|
* Sets the `detailBox` aggregation.
|
|
28264
28428
|
*/
|
|
@@ -34236,7 +34400,18 @@ declare namespace sap {
|
|
|
34236
34400
|
/**
|
|
34237
34401
|
* Gets the flag indicating whether the list items should be recreated
|
|
34238
34402
|
*/
|
|
34239
|
-
getRecreateItems():
|
|
34403
|
+
getRecreateItems(): boolean;
|
|
34404
|
+
/**
|
|
34405
|
+
* @SINCE 1.96
|
|
34406
|
+
*
|
|
34407
|
+
* Gets current value of property {@link #getShowClearIcon showClearIcon}.
|
|
34408
|
+
*
|
|
34409
|
+
* Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
|
|
34410
|
+
* and liveChange events.
|
|
34411
|
+
*
|
|
34412
|
+
* Default value is `false`.
|
|
34413
|
+
*/
|
|
34414
|
+
getShowClearIcon(): boolean;
|
|
34240
34415
|
/**
|
|
34241
34416
|
* @SINCE 1.60
|
|
34242
34417
|
*
|
|
@@ -34249,13 +34424,23 @@ declare namespace sap {
|
|
|
34249
34424
|
*/
|
|
34250
34425
|
getShowSecondaryValues(): boolean;
|
|
34251
34426
|
/**
|
|
34252
|
-
* Fires when an object gets inserted in the items aggregation
|
|
34427
|
+
* Fires when an object gets inserted in the items aggregation.
|
|
34253
34428
|
*/
|
|
34254
|
-
handleItemInsertion(
|
|
34429
|
+
handleItemInsertion(
|
|
34430
|
+
/**
|
|
34431
|
+
* The item that should be inserted
|
|
34432
|
+
*/
|
|
34433
|
+
oItem: sap.ui.core.Item
|
|
34434
|
+
): void;
|
|
34255
34435
|
/**
|
|
34256
|
-
* Fires when an object gets removed from the items aggregation
|
|
34436
|
+
* Fires when an object gets removed from the items aggregation.
|
|
34257
34437
|
*/
|
|
34258
|
-
handleItemRemoval(
|
|
34438
|
+
handleItemRemoval(
|
|
34439
|
+
/**
|
|
34440
|
+
* The item that should be removed
|
|
34441
|
+
*/
|
|
34442
|
+
oItem: sap.ui.core.Item
|
|
34443
|
+
): void;
|
|
34259
34444
|
/**
|
|
34260
34445
|
* Determines whether the control has content or not.
|
|
34261
34446
|
*/
|
|
@@ -34392,9 +34577,14 @@ declare namespace sap {
|
|
|
34392
34577
|
sPickerType: string
|
|
34393
34578
|
): void;
|
|
34394
34579
|
/**
|
|
34395
|
-
* Sets whether the list items should be recreated
|
|
34580
|
+
* Sets whether the list items should be recreated.
|
|
34396
34581
|
*/
|
|
34397
|
-
setRecreateItems(
|
|
34582
|
+
setRecreateItems(
|
|
34583
|
+
/**
|
|
34584
|
+
* True if the list items should be recreated
|
|
34585
|
+
*/
|
|
34586
|
+
bRecreate: boolean
|
|
34587
|
+
): void;
|
|
34398
34588
|
/**
|
|
34399
34589
|
* Sets the selectable property of `sap.ui.core.Item`
|
|
34400
34590
|
*/
|
|
@@ -34408,6 +34598,24 @@ declare namespace sap {
|
|
|
34408
34598
|
*/
|
|
34409
34599
|
bSelectable: boolean
|
|
34410
34600
|
): void;
|
|
34601
|
+
/**
|
|
34602
|
+
* @SINCE 1.96
|
|
34603
|
+
*
|
|
34604
|
+
* Sets a new value for property {@link #getShowClearIcon showClearIcon}.
|
|
34605
|
+
*
|
|
34606
|
+
* Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the change
|
|
34607
|
+
* and liveChange events.
|
|
34608
|
+
*
|
|
34609
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34610
|
+
*
|
|
34611
|
+
* Default value is `false`.
|
|
34612
|
+
*/
|
|
34613
|
+
setShowClearIcon(
|
|
34614
|
+
/**
|
|
34615
|
+
* New value for property `showClearIcon`
|
|
34616
|
+
*/
|
|
34617
|
+
bShowClearIcon?: boolean
|
|
34618
|
+
): this;
|
|
34411
34619
|
/**
|
|
34412
34620
|
* @SINCE 1.60
|
|
34413
34621
|
*
|
|
@@ -34435,6 +34643,15 @@ declare namespace sap {
|
|
|
34435
34643
|
*/
|
|
34436
34644
|
oTextField: sap.m.ComboBoxTextField | sap.m.Input
|
|
34437
34645
|
): void;
|
|
34646
|
+
/**
|
|
34647
|
+
* Sets the value property of the control.
|
|
34648
|
+
*/
|
|
34649
|
+
setValue(
|
|
34650
|
+
/**
|
|
34651
|
+
* The new value
|
|
34652
|
+
*/
|
|
34653
|
+
sValue: string
|
|
34654
|
+
): this;
|
|
34438
34655
|
/**
|
|
34439
34656
|
* @SINCE 1.64
|
|
34440
34657
|
* @EXPERIMENTAL (since 1.64)
|
|
@@ -34492,6 +34709,12 @@ declare namespace sap {
|
|
|
34492
34709
|
*/
|
|
34493
34710
|
mSettings?: sap.m.$ComboBoxTextFieldSettings
|
|
34494
34711
|
);
|
|
34712
|
+
/**
|
|
34713
|
+
* Returns the arrow icon
|
|
34714
|
+
*
|
|
34715
|
+
* Left for backward compatibility.
|
|
34716
|
+
*/
|
|
34717
|
+
getIcon: undefined;
|
|
34495
34718
|
|
|
34496
34719
|
/**
|
|
34497
34720
|
* Creates a new subclass of class sap.m.ComboBoxTextField with name `sClassName` and enriches it with the
|
|
@@ -34518,10 +34741,6 @@ declare namespace sap {
|
|
|
34518
34741
|
* Returns a metadata object for class sap.m.ComboBoxTextField.
|
|
34519
34742
|
*/
|
|
34520
34743
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
34521
|
-
/**
|
|
34522
|
-
* Returns the arrow icon
|
|
34523
|
-
*/
|
|
34524
|
-
getIcon(): sap.ui.core.Icon;
|
|
34525
34744
|
/**
|
|
34526
34745
|
* Gets current value of property {@link #getMaxWidth maxWidth}.
|
|
34527
34746
|
*
|
|
@@ -35530,6 +35749,24 @@ declare namespace sap {
|
|
|
35530
35749
|
* Default value is `empty string`.
|
|
35531
35750
|
*/
|
|
35532
35751
|
getDisplayFormatType(): string;
|
|
35752
|
+
/**
|
|
35753
|
+
* @SINCE 1.97
|
|
35754
|
+
*
|
|
35755
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
35756
|
+
*
|
|
35757
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
35758
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
35759
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
35760
|
+
* must be provided as parameter.
|
|
35761
|
+
*
|
|
35762
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
35763
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
35764
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
35765
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
35766
|
+
*
|
|
35767
|
+
* Default value is `false`.
|
|
35768
|
+
*/
|
|
35769
|
+
getHideInput(): boolean;
|
|
35533
35770
|
/**
|
|
35534
35771
|
* @SINCE 1.38.5
|
|
35535
35772
|
*
|
|
@@ -35667,6 +35904,26 @@ declare namespace sap {
|
|
|
35667
35904
|
* Returns if the last entered value is valid.
|
|
35668
35905
|
*/
|
|
35669
35906
|
isValidValue(): boolean;
|
|
35907
|
+
/**
|
|
35908
|
+
* @SINCE 1.97
|
|
35909
|
+
*
|
|
35910
|
+
* Opens the picker popover. The popover is positioned relatively to the control given as `oDomRef` parameter
|
|
35911
|
+
* on tablet or desktop and is full screen on phone. Therefore the control parameter is only used on tablet
|
|
35912
|
+
* or desktop and is ignored on phone.
|
|
35913
|
+
*
|
|
35914
|
+
* Note: use this method to open the picker popover only when the `hideInput` property is set to `true`.
|
|
35915
|
+
* Please consider opening of the picker popover by another control only in scenarios that comply with Fiori
|
|
35916
|
+
* guidelines. For example, opening the picker popover by another popover is not recommended. The application
|
|
35917
|
+
* developer should implement the following accessibility attributes to the opening control: a text or tooltip
|
|
35918
|
+
* that describes the action (example: "Open Date Picker"), and aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
35919
|
+
*/
|
|
35920
|
+
openBy(
|
|
35921
|
+
/**
|
|
35922
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
35923
|
+
* control.
|
|
35924
|
+
*/
|
|
35925
|
+
oDomRef: HTMLElement
|
|
35926
|
+
): void;
|
|
35670
35927
|
/**
|
|
35671
35928
|
* @SINCE 1.38.5
|
|
35672
35929
|
*
|
|
@@ -35715,6 +35972,31 @@ declare namespace sap {
|
|
|
35715
35972
|
*/
|
|
35716
35973
|
sDisplayFormatType?: string
|
|
35717
35974
|
): this;
|
|
35975
|
+
/**
|
|
35976
|
+
* @SINCE 1.97
|
|
35977
|
+
*
|
|
35978
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
35979
|
+
*
|
|
35980
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
35981
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
35982
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
35983
|
+
* must be provided as parameter.
|
|
35984
|
+
*
|
|
35985
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
35986
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
35987
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Date
|
|
35988
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
35989
|
+
*
|
|
35990
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35991
|
+
*
|
|
35992
|
+
* Default value is `false`.
|
|
35993
|
+
*/
|
|
35994
|
+
setHideInput(
|
|
35995
|
+
/**
|
|
35996
|
+
* New value for property `hideInput`
|
|
35997
|
+
*/
|
|
35998
|
+
bHideInput?: boolean
|
|
35999
|
+
): this;
|
|
35718
36000
|
/**
|
|
35719
36001
|
* @SINCE 1.38.5
|
|
35720
36002
|
*
|
|
@@ -37018,8 +37300,8 @@ declare namespace sap {
|
|
|
37018
37300
|
*
|
|
37019
37301
|
* Gets current value of property {@link #getMinutesStep minutesStep}.
|
|
37020
37302
|
*
|
|
37021
|
-
* Sets the minutes
|
|
37022
|
-
*
|
|
37303
|
+
* Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
|
|
37304
|
+
* minutes clock is populated only by multiples of the step.
|
|
37023
37305
|
*
|
|
37024
37306
|
* Default value is `1`.
|
|
37025
37307
|
*/
|
|
@@ -37029,8 +37311,8 @@ declare namespace sap {
|
|
|
37029
37311
|
*
|
|
37030
37312
|
* Gets current value of property {@link #getSecondsStep secondsStep}.
|
|
37031
37313
|
*
|
|
37032
|
-
* Sets the seconds
|
|
37033
|
-
*
|
|
37314
|
+
* Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
|
|
37315
|
+
* seconds clock is populated only by multiples of the step.
|
|
37034
37316
|
*
|
|
37035
37317
|
* Default value is `1`.
|
|
37036
37318
|
*/
|
|
@@ -37040,8 +37322,8 @@ declare namespace sap {
|
|
|
37040
37322
|
*
|
|
37041
37323
|
* Sets a new value for property {@link #getMinutesStep minutesStep}.
|
|
37042
37324
|
*
|
|
37043
|
-
* Sets the minutes
|
|
37044
|
-
*
|
|
37325
|
+
* Sets the minutes step. If the step is less than 1, it will be automatically converted back to 1. The
|
|
37326
|
+
* minutes clock is populated only by multiples of the step.
|
|
37045
37327
|
*
|
|
37046
37328
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37047
37329
|
*
|
|
@@ -37058,8 +37340,8 @@ declare namespace sap {
|
|
|
37058
37340
|
*
|
|
37059
37341
|
* Sets a new value for property {@link #getSecondsStep secondsStep}.
|
|
37060
37342
|
*
|
|
37061
|
-
* Sets the seconds
|
|
37062
|
-
*
|
|
37343
|
+
* Sets the seconds step. If the step is less than 1, it will be automatically converted back to 1. The
|
|
37344
|
+
* seconds clock is populated only by multiples of the step.
|
|
37063
37345
|
*
|
|
37064
37346
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37065
37347
|
*
|
|
@@ -44049,6 +44331,17 @@ declare namespace sap {
|
|
|
44049
44331
|
* Returns a metadata object for class sap.m.GenericTag.
|
|
44050
44332
|
*/
|
|
44051
44333
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
44334
|
+
/**
|
|
44335
|
+
* @SINCE 1.97.0
|
|
44336
|
+
*
|
|
44337
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
44338
|
+
*/
|
|
44339
|
+
addAriaLabelledBy(
|
|
44340
|
+
/**
|
|
44341
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
44342
|
+
*/
|
|
44343
|
+
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
44344
|
+
): this;
|
|
44052
44345
|
/**
|
|
44053
44346
|
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
|
|
44054
44347
|
*
|
|
@@ -44118,6 +44411,13 @@ declare namespace sap {
|
|
|
44118
44411
|
*/
|
|
44119
44412
|
mParameters?: object
|
|
44120
44413
|
): this;
|
|
44414
|
+
/**
|
|
44415
|
+
* @SINCE 1.97.0
|
|
44416
|
+
*
|
|
44417
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
44418
|
+
* ariaLabelledBy}.
|
|
44419
|
+
*/
|
|
44420
|
+
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
44121
44421
|
/**
|
|
44122
44422
|
* Gets current value of property {@link #getDesign design}.
|
|
44123
44423
|
*
|
|
@@ -44164,6 +44464,23 @@ declare namespace sap {
|
|
|
44164
44464
|
* Default value is `None`.
|
|
44165
44465
|
*/
|
|
44166
44466
|
getValueState(): sap.m.GenericTagValueState;
|
|
44467
|
+
/**
|
|
44468
|
+
* @SINCE 1.97.0
|
|
44469
|
+
*
|
|
44470
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
44471
|
+
*/
|
|
44472
|
+
removeAllAriaLabelledBy(): sap.ui.core.ID[];
|
|
44473
|
+
/**
|
|
44474
|
+
* @SINCE 1.97.0
|
|
44475
|
+
*
|
|
44476
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
44477
|
+
*/
|
|
44478
|
+
removeAriaLabelledBy(
|
|
44479
|
+
/**
|
|
44480
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
44481
|
+
*/
|
|
44482
|
+
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
44483
|
+
): sap.ui.core.ID;
|
|
44167
44484
|
/**
|
|
44168
44485
|
* Sets a new value for property {@link #getDesign design}.
|
|
44169
44486
|
*
|
|
@@ -44581,6 +44898,16 @@ declare namespace sap {
|
|
|
44581
44898
|
* Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
|
|
44582
44899
|
*/
|
|
44583
44900
|
getNavigationButtonText(): string;
|
|
44901
|
+
/**
|
|
44902
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44903
|
+
*
|
|
44904
|
+
* Gets current value of property {@link #getPressEnabled pressEnabled}.
|
|
44905
|
+
*
|
|
44906
|
+
* Disables press event for the tile control.
|
|
44907
|
+
*
|
|
44908
|
+
* Default value is `true`.
|
|
44909
|
+
*/
|
|
44910
|
+
getPressEnabled(): boolean;
|
|
44584
44911
|
/**
|
|
44585
44912
|
* @SINCE 1.46.0
|
|
44586
44913
|
*
|
|
@@ -51316,6 +51643,10 @@ declare namespace sap {
|
|
|
51316
51643
|
* Defines the value of the control.
|
|
51317
51644
|
*/
|
|
51318
51645
|
getValue(): string;
|
|
51646
|
+
/**
|
|
51647
|
+
* Gets the value of the accessibility description info field.
|
|
51648
|
+
*/
|
|
51649
|
+
getValueDescriptionInfo(): string;
|
|
51319
51650
|
/**
|
|
51320
51651
|
* Gets current value of property {@link #getValueState valueState}.
|
|
51321
51652
|
*
|
|
@@ -58095,6 +58426,18 @@ declare namespace sap {
|
|
|
58095
58426
|
* Determines the title in the header of MessagePage.
|
|
58096
58427
|
*/
|
|
58097
58428
|
getTitle(): string;
|
|
58429
|
+
/**
|
|
58430
|
+
* @SINCE 1.97
|
|
58431
|
+
*
|
|
58432
|
+
* Gets current value of property {@link #getTitleLevel titleLevel}.
|
|
58433
|
+
*
|
|
58434
|
+
* Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
|
|
58435
|
+
*
|
|
58436
|
+
* **Note:** Used for accessibility purposes only.
|
|
58437
|
+
*
|
|
58438
|
+
* Default value is `Auto`.
|
|
58439
|
+
*/
|
|
58440
|
+
getTitleLevel(): sap.ui.core.TitleLevel;
|
|
58098
58441
|
/**
|
|
58099
58442
|
* @SINCE 1.54
|
|
58100
58443
|
*
|
|
@@ -58326,6 +58669,25 @@ declare namespace sap {
|
|
|
58326
58669
|
*/
|
|
58327
58670
|
sTitle?: string
|
|
58328
58671
|
): this;
|
|
58672
|
+
/**
|
|
58673
|
+
* @SINCE 1.97
|
|
58674
|
+
*
|
|
58675
|
+
* Sets a new value for property {@link #getTitleLevel titleLevel}.
|
|
58676
|
+
*
|
|
58677
|
+
* Defines the semantic level of the title. When using `Auto`, no explicit level information is written.
|
|
58678
|
+
*
|
|
58679
|
+
* **Note:** Used for accessibility purposes only.
|
|
58680
|
+
*
|
|
58681
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
58682
|
+
*
|
|
58683
|
+
* Default value is `Auto`.
|
|
58684
|
+
*/
|
|
58685
|
+
setTitleLevel(
|
|
58686
|
+
/**
|
|
58687
|
+
* New value for property `titleLevel`
|
|
58688
|
+
*/
|
|
58689
|
+
sTitleLevel?: sap.ui.core.TitleLevel
|
|
58690
|
+
): this;
|
|
58329
58691
|
}
|
|
58330
58692
|
/**
|
|
58331
58693
|
* @SINCE 1.28
|
|
@@ -60780,10 +61142,6 @@ declare namespace sap {
|
|
|
60780
61142
|
* This hook method is called before the MultiComboBox is rendered.
|
|
60781
61143
|
*/
|
|
60782
61144
|
onBeforeRendering(): void;
|
|
60783
|
-
/**
|
|
60784
|
-
* This hook method is called before the MultiComboBox's Pop-up is rendered.
|
|
60785
|
-
*/
|
|
60786
|
-
onBeforeRenderingPicker(): void;
|
|
60787
61145
|
/**
|
|
60788
61146
|
* Handles control click event.
|
|
60789
61147
|
*/
|
|
@@ -76663,6 +77021,18 @@ declare namespace sap {
|
|
|
76663
77021
|
* date of the month in which the `minDate` belongs.
|
|
76664
77022
|
*/
|
|
76665
77023
|
getMinDate(): object;
|
|
77024
|
+
/**
|
|
77025
|
+
* @SINCE 1.97
|
|
77026
|
+
*
|
|
77027
|
+
* Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
|
|
77028
|
+
*
|
|
77029
|
+
* Determines whether the selection of multiple appointments is enabled.
|
|
77030
|
+
*
|
|
77031
|
+
* Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
|
|
77032
|
+
*
|
|
77033
|
+
* Default value is `false`.
|
|
77034
|
+
*/
|
|
77035
|
+
getMultipleAppointmentsSelection(): boolean;
|
|
76666
77036
|
/**
|
|
76667
77037
|
* Gets current value of property {@link #getNoDataText noDataText}.
|
|
76668
77038
|
*
|
|
@@ -77227,6 +77597,25 @@ declare namespace sap {
|
|
|
77227
77597
|
*/
|
|
77228
77598
|
oMinDate?: object
|
|
77229
77599
|
): this;
|
|
77600
|
+
/**
|
|
77601
|
+
* @SINCE 1.97
|
|
77602
|
+
*
|
|
77603
|
+
* Sets a new value for property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
|
|
77604
|
+
*
|
|
77605
|
+
* Determines whether the selection of multiple appointments is enabled.
|
|
77606
|
+
*
|
|
77607
|
+
* Note: selection of multiple appointments is possible using CTRL key regardless of the value of this property.
|
|
77608
|
+
*
|
|
77609
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
77610
|
+
*
|
|
77611
|
+
* Default value is `false`.
|
|
77612
|
+
*/
|
|
77613
|
+
setMultipleAppointmentsSelection(
|
|
77614
|
+
/**
|
|
77615
|
+
* New value for property `multipleAppointmentsSelection`
|
|
77616
|
+
*/
|
|
77617
|
+
bMultipleAppointmentsSelection?: boolean
|
|
77618
|
+
): this;
|
|
77230
77619
|
/**
|
|
77231
77620
|
* Sets a new value for property {@link #getNoDataText noDataText}.
|
|
77232
77621
|
*
|
|
@@ -77484,16 +77873,12 @@ declare namespace sap {
|
|
|
77484
77873
|
*
|
|
77485
77874
|
* Defines the text displayed in the header of the appointment items list. It is commonly related to the
|
|
77486
77875
|
* calendar appointments.
|
|
77487
|
-
*
|
|
77488
|
-
* Default value is `"Appointments"`.
|
|
77489
77876
|
*/
|
|
77490
77877
|
getAppointmentItemsHeader(): string;
|
|
77491
77878
|
/**
|
|
77492
77879
|
* Gets current value of property {@link #getItemsHeader itemsHeader}.
|
|
77493
77880
|
*
|
|
77494
77881
|
* Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
|
|
77495
|
-
*
|
|
77496
|
-
* Default value is `"Calendar"`.
|
|
77497
77882
|
*/
|
|
77498
77883
|
getItemsHeader(): string;
|
|
77499
77884
|
/**
|
|
@@ -77543,14 +77928,12 @@ declare namespace sap {
|
|
|
77543
77928
|
* calendar appointments.
|
|
77544
77929
|
*
|
|
77545
77930
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
77546
|
-
*
|
|
77547
|
-
* Default value is `"Appointments"`.
|
|
77548
77931
|
*/
|
|
77549
77932
|
setAppointmentItemsHeader(
|
|
77550
77933
|
/**
|
|
77551
77934
|
* New value for property `appointmentItemsHeader`
|
|
77552
77935
|
*/
|
|
77553
|
-
sAppointmentItemsHeader
|
|
77936
|
+
sAppointmentItemsHeader: string
|
|
77554
77937
|
): this;
|
|
77555
77938
|
/**
|
|
77556
77939
|
* Sets a new value for property {@link #getItemsHeader itemsHeader}.
|
|
@@ -77558,14 +77941,12 @@ declare namespace sap {
|
|
|
77558
77941
|
* Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
|
|
77559
77942
|
*
|
|
77560
77943
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
77561
|
-
*
|
|
77562
|
-
* Default value is `"Calendar"`.
|
|
77563
77944
|
*/
|
|
77564
77945
|
setItemsHeader(
|
|
77565
77946
|
/**
|
|
77566
77947
|
* New value for property `itemsHeader`
|
|
77567
77948
|
*/
|
|
77568
|
-
sItemsHeader
|
|
77949
|
+
sItemsHeader: string
|
|
77569
77950
|
): this;
|
|
77570
77951
|
}
|
|
77571
77952
|
/**
|
|
@@ -86799,6 +87180,11 @@ declare namespace sap {
|
|
|
86799
87180
|
item?: sap.m.SegmentedButtonItem;
|
|
86800
87181
|
}
|
|
86801
87182
|
): this;
|
|
87183
|
+
/**
|
|
87184
|
+
* See:
|
|
87185
|
+
* sap.ui.core.Control#getAccessibilityInfo
|
|
87186
|
+
*/
|
|
87187
|
+
getAccessibilityInfo(): object;
|
|
86802
87188
|
/**
|
|
86803
87189
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
86804
87190
|
* ariaDescribedBy}.
|
|
@@ -104267,6 +104653,24 @@ declare namespace sap {
|
|
|
104267
104653
|
* the binding itself.
|
|
104268
104654
|
*/
|
|
104269
104655
|
getDisplayFormat(): string;
|
|
104656
|
+
/**
|
|
104657
|
+
* @SINCE 1.97
|
|
104658
|
+
*
|
|
104659
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
104660
|
+
*
|
|
104661
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
104662
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
104663
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
104664
|
+
* must be provided as parameter.
|
|
104665
|
+
*
|
|
104666
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
104667
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
104668
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
|
|
104669
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
104670
|
+
*
|
|
104671
|
+
* Default value is `false`.
|
|
104672
|
+
*/
|
|
104673
|
+
getHideInput(): boolean;
|
|
104270
104674
|
/**
|
|
104271
104675
|
* Gets current value of property {@link #getLocaleId localeId}.
|
|
104272
104676
|
*
|
|
@@ -104414,6 +104818,26 @@ declare namespace sap {
|
|
|
104414
104818
|
* Called before the clock picker appears.
|
|
104415
104819
|
*/
|
|
104416
104820
|
onBeforeOpen(): void;
|
|
104821
|
+
/**
|
|
104822
|
+
* @SINCE 1.97
|
|
104823
|
+
*
|
|
104824
|
+
* Opens the picker popover. The popover is positioned relatively to the control given as `oDomRef` parameter
|
|
104825
|
+
* on tablet or desktop and is full screen on phone. Therefore the control parameter is only used on tablet
|
|
104826
|
+
* or desktop and is ignored on phone.
|
|
104827
|
+
*
|
|
104828
|
+
* Note: use this method to open the picker popover only when the `hideInput` property is set to `true`.
|
|
104829
|
+
* Please consider opening of the picker popover by another control only in scenarios that comply with Fiori
|
|
104830
|
+
* guidelines. For example, opening the picker popover by another popover is not recommended. The application
|
|
104831
|
+
* developer should implement the following accessibility attributes to the opening control: a text or tooltip
|
|
104832
|
+
* that describes the action (example: "Open Time Picker"), and aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
104833
|
+
*/
|
|
104834
|
+
openBy(
|
|
104835
|
+
/**
|
|
104836
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
104837
|
+
* control.
|
|
104838
|
+
*/
|
|
104839
|
+
oDomRef: HTMLElement
|
|
104840
|
+
): void;
|
|
104417
104841
|
/**
|
|
104418
104842
|
* Removes all the controls from the aggregation {@link #getRules rules}.
|
|
104419
104843
|
*
|
|
@@ -104447,6 +104871,31 @@ declare namespace sap {
|
|
|
104447
104871
|
*/
|
|
104448
104872
|
sDisplayFormat: string
|
|
104449
104873
|
): this;
|
|
104874
|
+
/**
|
|
104875
|
+
* @SINCE 1.97
|
|
104876
|
+
*
|
|
104877
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
104878
|
+
*
|
|
104879
|
+
* Determines whether the input field of the picker is hidden or visible. When set to `true`, the input
|
|
104880
|
+
* field becomes invisible and there is no way to open the picker popover. In that case it can be opened
|
|
104881
|
+
* by another control through calling of picker's `openBy` method, and the opening control's DOM reference
|
|
104882
|
+
* must be provided as parameter.
|
|
104883
|
+
*
|
|
104884
|
+
* Note: Since the picker is not responsible for accessibility attributes of the control which opens its
|
|
104885
|
+
* popover, those attributes should be added by the application developer. The following is recommended
|
|
104886
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Time
|
|
104887
|
+
* Picker"), and also aria-haspopup attribute with value of `sap.ui.core.aria.HasPopup.Dialog`.
|
|
104888
|
+
*
|
|
104889
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
104890
|
+
*
|
|
104891
|
+
* Default value is `false`.
|
|
104892
|
+
*/
|
|
104893
|
+
setHideInput(
|
|
104894
|
+
/**
|
|
104895
|
+
* New value for property `hideInput`
|
|
104896
|
+
*/
|
|
104897
|
+
bHideInput?: boolean
|
|
104898
|
+
): this;
|
|
104450
104899
|
/**
|
|
104451
104900
|
* Sets the locale of the control.
|
|
104452
104901
|
*
|
|
@@ -115658,6 +116107,19 @@ declare namespace sap {
|
|
|
115658
116107
|
*/
|
|
115659
116108
|
sort = "sort",
|
|
115660
116109
|
}
|
|
116110
|
+
/**
|
|
116111
|
+
* Type of popup used in the `sap.m.p13n.Popup`.
|
|
116112
|
+
*/
|
|
116113
|
+
enum P13nPopupMode {
|
|
116114
|
+
/**
|
|
116115
|
+
* Dialog type as popup type.
|
|
116116
|
+
*/
|
|
116117
|
+
Dialog = "Dialog",
|
|
116118
|
+
/**
|
|
116119
|
+
* ResponsivePopover type as popup type.
|
|
116120
|
+
*/
|
|
116121
|
+
ResponsivePopover = "ResponsivePopover",
|
|
116122
|
+
}
|
|
115661
116123
|
/**
|
|
115662
116124
|
* Available Page Background Design.
|
|
115663
116125
|
*/
|
|
@@ -116669,6 +117131,8 @@ declare namespace sap {
|
|
|
116669
117131
|
|
|
116670
117132
|
"sap/m/DynamicDateRange": undefined;
|
|
116671
117133
|
|
|
117134
|
+
"sap/m/DynamicDateUtil": undefined;
|
|
117135
|
+
|
|
116672
117136
|
"sap/m/DynamicDateValueHelpUIType": undefined;
|
|
116673
117137
|
|
|
116674
117138
|
"sap/m/ExpandableText": undefined;
|
|
@@ -116817,6 +117281,8 @@ declare namespace sap {
|
|
|
116817
117281
|
|
|
116818
117282
|
"sap/m/p13n/GroupPanel": undefined;
|
|
116819
117283
|
|
|
117284
|
+
"sap/m/p13n/Popup": undefined;
|
|
117285
|
+
|
|
116820
117286
|
"sap/m/p13n/QueryPanel": undefined;
|
|
116821
117287
|
|
|
116822
117288
|
"sap/m/p13n/SelectionPanel": undefined;
|