@openui5/ts-types 1.96.2 → 1.97.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 +1 -1
- package/types/sap.m.d.ts +490 -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.0
|
|
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
|
*/
|
|
@@ -16269,6 +16301,17 @@ declare namespace sap {
|
|
|
16269
16301
|
*/
|
|
16270
16302
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16271
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
|
+
|
|
16272
16315
|
/**
|
|
16273
16316
|
* Determines the visibility of the MessagePage header. Can be used to hide the header of the MessagePage
|
|
16274
16317
|
* when it's embedded in another page.
|
|
@@ -19426,6 +19469,17 @@ declare namespace sap {
|
|
|
19426
19469
|
*/
|
|
19427
19470
|
firstDayOfWeek?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19428
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
|
+
|
|
19429
19483
|
/**
|
|
19430
19484
|
* Rows of the `PlanningCalendar`.
|
|
19431
19485
|
*/
|
|
@@ -23879,6 +23933,21 @@ declare namespace sap {
|
|
|
23879
23933
|
*/
|
|
23880
23934
|
support2400?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23881
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
|
+
|
|
23882
23951
|
/**
|
|
23883
23952
|
* A list of validation rules (one rule per mask character).
|
|
23884
23953
|
*/
|
|
@@ -25194,6 +25263,63 @@ declare namespace sap {
|
|
|
25194
25263
|
activate?: (oEvent: sap.ui.base.Event) => void;
|
|
25195
25264
|
}
|
|
25196
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
|
+
|
|
25197
25323
|
/**
|
|
25198
25324
|
* @SINCE 1.9.2
|
|
25199
25325
|
*
|
|
@@ -28087,6 +28213,18 @@ declare namespace sap {
|
|
|
28087
28213
|
* Default value is `"1.125rem"`.
|
|
28088
28214
|
*/
|
|
28089
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;
|
|
28090
28228
|
/**
|
|
28091
28229
|
* Gets content of aggregation {@link #getDetailBox detailBox}.
|
|
28092
28230
|
*
|
|
@@ -28266,6 +28404,25 @@ declare namespace sap {
|
|
|
28266
28404
|
*/
|
|
28267
28405
|
sCustomFontSize?: sap.ui.core.CSSSize
|
|
28268
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;
|
|
28269
28426
|
/**
|
|
28270
28427
|
* Sets the `detailBox` aggregation.
|
|
28271
28428
|
*/
|
|
@@ -34243,7 +34400,18 @@ declare namespace sap {
|
|
|
34243
34400
|
/**
|
|
34244
34401
|
* Gets the flag indicating whether the list items should be recreated
|
|
34245
34402
|
*/
|
|
34246
|
-
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;
|
|
34247
34415
|
/**
|
|
34248
34416
|
* @SINCE 1.60
|
|
34249
34417
|
*
|
|
@@ -34256,13 +34424,23 @@ declare namespace sap {
|
|
|
34256
34424
|
*/
|
|
34257
34425
|
getShowSecondaryValues(): boolean;
|
|
34258
34426
|
/**
|
|
34259
|
-
* Fires when an object gets inserted in the items aggregation
|
|
34427
|
+
* Fires when an object gets inserted in the items aggregation.
|
|
34260
34428
|
*/
|
|
34261
|
-
handleItemInsertion(
|
|
34429
|
+
handleItemInsertion(
|
|
34430
|
+
/**
|
|
34431
|
+
* The item that should be inserted
|
|
34432
|
+
*/
|
|
34433
|
+
oItem: sap.ui.core.Item
|
|
34434
|
+
): void;
|
|
34262
34435
|
/**
|
|
34263
|
-
* Fires when an object gets removed from the items aggregation
|
|
34436
|
+
* Fires when an object gets removed from the items aggregation.
|
|
34264
34437
|
*/
|
|
34265
|
-
handleItemRemoval(
|
|
34438
|
+
handleItemRemoval(
|
|
34439
|
+
/**
|
|
34440
|
+
* The item that should be removed
|
|
34441
|
+
*/
|
|
34442
|
+
oItem: sap.ui.core.Item
|
|
34443
|
+
): void;
|
|
34266
34444
|
/**
|
|
34267
34445
|
* Determines whether the control has content or not.
|
|
34268
34446
|
*/
|
|
@@ -34399,9 +34577,14 @@ declare namespace sap {
|
|
|
34399
34577
|
sPickerType: string
|
|
34400
34578
|
): void;
|
|
34401
34579
|
/**
|
|
34402
|
-
* Sets whether the list items should be recreated
|
|
34580
|
+
* Sets whether the list items should be recreated.
|
|
34403
34581
|
*/
|
|
34404
|
-
setRecreateItems(
|
|
34582
|
+
setRecreateItems(
|
|
34583
|
+
/**
|
|
34584
|
+
* True if the list items should be recreated
|
|
34585
|
+
*/
|
|
34586
|
+
bRecreate: boolean
|
|
34587
|
+
): void;
|
|
34405
34588
|
/**
|
|
34406
34589
|
* Sets the selectable property of `sap.ui.core.Item`
|
|
34407
34590
|
*/
|
|
@@ -34415,6 +34598,24 @@ declare namespace sap {
|
|
|
34415
34598
|
*/
|
|
34416
34599
|
bSelectable: boolean
|
|
34417
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;
|
|
34418
34619
|
/**
|
|
34419
34620
|
* @SINCE 1.60
|
|
34420
34621
|
*
|
|
@@ -34442,6 +34643,15 @@ declare namespace sap {
|
|
|
34442
34643
|
*/
|
|
34443
34644
|
oTextField: sap.m.ComboBoxTextField | sap.m.Input
|
|
34444
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;
|
|
34445
34655
|
/**
|
|
34446
34656
|
* @SINCE 1.64
|
|
34447
34657
|
* @EXPERIMENTAL (since 1.64)
|
|
@@ -34499,6 +34709,12 @@ declare namespace sap {
|
|
|
34499
34709
|
*/
|
|
34500
34710
|
mSettings?: sap.m.$ComboBoxTextFieldSettings
|
|
34501
34711
|
);
|
|
34712
|
+
/**
|
|
34713
|
+
* Returns the arrow icon
|
|
34714
|
+
*
|
|
34715
|
+
* Left for backward compatibility.
|
|
34716
|
+
*/
|
|
34717
|
+
getIcon: undefined;
|
|
34502
34718
|
|
|
34503
34719
|
/**
|
|
34504
34720
|
* Creates a new subclass of class sap.m.ComboBoxTextField with name `sClassName` and enriches it with the
|
|
@@ -34525,10 +34741,6 @@ declare namespace sap {
|
|
|
34525
34741
|
* Returns a metadata object for class sap.m.ComboBoxTextField.
|
|
34526
34742
|
*/
|
|
34527
34743
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
34528
|
-
/**
|
|
34529
|
-
* Returns the arrow icon
|
|
34530
|
-
*/
|
|
34531
|
-
getIcon(): sap.ui.core.Icon;
|
|
34532
34744
|
/**
|
|
34533
34745
|
* Gets current value of property {@link #getMaxWidth maxWidth}.
|
|
34534
34746
|
*
|
|
@@ -35537,6 +35749,24 @@ declare namespace sap {
|
|
|
35537
35749
|
* Default value is `empty string`.
|
|
35538
35750
|
*/
|
|
35539
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;
|
|
35540
35770
|
/**
|
|
35541
35771
|
* @SINCE 1.38.5
|
|
35542
35772
|
*
|
|
@@ -35674,6 +35904,26 @@ declare namespace sap {
|
|
|
35674
35904
|
* Returns if the last entered value is valid.
|
|
35675
35905
|
*/
|
|
35676
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;
|
|
35677
35927
|
/**
|
|
35678
35928
|
* @SINCE 1.38.5
|
|
35679
35929
|
*
|
|
@@ -35722,6 +35972,31 @@ declare namespace sap {
|
|
|
35722
35972
|
*/
|
|
35723
35973
|
sDisplayFormatType?: string
|
|
35724
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;
|
|
35725
36000
|
/**
|
|
35726
36001
|
* @SINCE 1.38.5
|
|
35727
36002
|
*
|
|
@@ -37025,8 +37300,8 @@ declare namespace sap {
|
|
|
37025
37300
|
*
|
|
37026
37301
|
* Gets current value of property {@link #getMinutesStep minutesStep}.
|
|
37027
37302
|
*
|
|
37028
|
-
* Sets the minutes
|
|
37029
|
-
*
|
|
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.
|
|
37030
37305
|
*
|
|
37031
37306
|
* Default value is `1`.
|
|
37032
37307
|
*/
|
|
@@ -37036,8 +37311,8 @@ declare namespace sap {
|
|
|
37036
37311
|
*
|
|
37037
37312
|
* Gets current value of property {@link #getSecondsStep secondsStep}.
|
|
37038
37313
|
*
|
|
37039
|
-
* Sets the seconds
|
|
37040
|
-
*
|
|
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.
|
|
37041
37316
|
*
|
|
37042
37317
|
* Default value is `1`.
|
|
37043
37318
|
*/
|
|
@@ -37047,8 +37322,8 @@ declare namespace sap {
|
|
|
37047
37322
|
*
|
|
37048
37323
|
* Sets a new value for property {@link #getMinutesStep minutesStep}.
|
|
37049
37324
|
*
|
|
37050
|
-
* Sets the minutes
|
|
37051
|
-
*
|
|
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.
|
|
37052
37327
|
*
|
|
37053
37328
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37054
37329
|
*
|
|
@@ -37065,8 +37340,8 @@ declare namespace sap {
|
|
|
37065
37340
|
*
|
|
37066
37341
|
* Sets a new value for property {@link #getSecondsStep secondsStep}.
|
|
37067
37342
|
*
|
|
37068
|
-
* Sets the seconds
|
|
37069
|
-
*
|
|
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.
|
|
37070
37345
|
*
|
|
37071
37346
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37072
37347
|
*
|
|
@@ -44056,6 +44331,17 @@ declare namespace sap {
|
|
|
44056
44331
|
* Returns a metadata object for class sap.m.GenericTag.
|
|
44057
44332
|
*/
|
|
44058
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;
|
|
44059
44345
|
/**
|
|
44060
44346
|
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
|
|
44061
44347
|
*
|
|
@@ -44125,6 +44411,13 @@ declare namespace sap {
|
|
|
44125
44411
|
*/
|
|
44126
44412
|
mParameters?: object
|
|
44127
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[];
|
|
44128
44421
|
/**
|
|
44129
44422
|
* Gets current value of property {@link #getDesign design}.
|
|
44130
44423
|
*
|
|
@@ -44171,6 +44464,23 @@ declare namespace sap {
|
|
|
44171
44464
|
* Default value is `None`.
|
|
44172
44465
|
*/
|
|
44173
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;
|
|
44174
44484
|
/**
|
|
44175
44485
|
* Sets a new value for property {@link #getDesign design}.
|
|
44176
44486
|
*
|
|
@@ -58116,6 +58426,18 @@ declare namespace sap {
|
|
|
58116
58426
|
* Determines the title in the header of MessagePage.
|
|
58117
58427
|
*/
|
|
58118
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;
|
|
58119
58441
|
/**
|
|
58120
58442
|
* @SINCE 1.54
|
|
58121
58443
|
*
|
|
@@ -58347,6 +58669,25 @@ declare namespace sap {
|
|
|
58347
58669
|
*/
|
|
58348
58670
|
sTitle?: string
|
|
58349
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;
|
|
58350
58691
|
}
|
|
58351
58692
|
/**
|
|
58352
58693
|
* @SINCE 1.28
|
|
@@ -60801,10 +61142,6 @@ declare namespace sap {
|
|
|
60801
61142
|
* This hook method is called before the MultiComboBox is rendered.
|
|
60802
61143
|
*/
|
|
60803
61144
|
onBeforeRendering(): void;
|
|
60804
|
-
/**
|
|
60805
|
-
* This hook method is called before the MultiComboBox's Pop-up is rendered.
|
|
60806
|
-
*/
|
|
60807
|
-
onBeforeRenderingPicker(): void;
|
|
60808
61145
|
/**
|
|
60809
61146
|
* Handles control click event.
|
|
60810
61147
|
*/
|
|
@@ -76684,6 +77021,18 @@ declare namespace sap {
|
|
|
76684
77021
|
* date of the month in which the `minDate` belongs.
|
|
76685
77022
|
*/
|
|
76686
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;
|
|
76687
77036
|
/**
|
|
76688
77037
|
* Gets current value of property {@link #getNoDataText noDataText}.
|
|
76689
77038
|
*
|
|
@@ -77248,6 +77597,25 @@ declare namespace sap {
|
|
|
77248
77597
|
*/
|
|
77249
77598
|
oMinDate?: object
|
|
77250
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;
|
|
77251
77619
|
/**
|
|
77252
77620
|
* Sets a new value for property {@link #getNoDataText noDataText}.
|
|
77253
77621
|
*
|
|
@@ -77505,16 +77873,12 @@ declare namespace sap {
|
|
|
77505
77873
|
*
|
|
77506
77874
|
* Defines the text displayed in the header of the appointment items list. It is commonly related to the
|
|
77507
77875
|
* calendar appointments.
|
|
77508
|
-
*
|
|
77509
|
-
* Default value is `"Appointments"`.
|
|
77510
77876
|
*/
|
|
77511
77877
|
getAppointmentItemsHeader(): string;
|
|
77512
77878
|
/**
|
|
77513
77879
|
* Gets current value of property {@link #getItemsHeader itemsHeader}.
|
|
77514
77880
|
*
|
|
77515
77881
|
* Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
|
|
77516
|
-
*
|
|
77517
|
-
* Default value is `"Calendar"`.
|
|
77518
77882
|
*/
|
|
77519
77883
|
getItemsHeader(): string;
|
|
77520
77884
|
/**
|
|
@@ -77564,14 +77928,12 @@ declare namespace sap {
|
|
|
77564
77928
|
* calendar appointments.
|
|
77565
77929
|
*
|
|
77566
77930
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
77567
|
-
*
|
|
77568
|
-
* Default value is `"Appointments"`.
|
|
77569
77931
|
*/
|
|
77570
77932
|
setAppointmentItemsHeader(
|
|
77571
77933
|
/**
|
|
77572
77934
|
* New value for property `appointmentItemsHeader`
|
|
77573
77935
|
*/
|
|
77574
|
-
sAppointmentItemsHeader
|
|
77936
|
+
sAppointmentItemsHeader: string
|
|
77575
77937
|
): this;
|
|
77576
77938
|
/**
|
|
77577
77939
|
* Sets a new value for property {@link #getItemsHeader itemsHeader}.
|
|
@@ -77579,14 +77941,12 @@ declare namespace sap {
|
|
|
77579
77941
|
* Defines the text displayed in the header of the items list. It is commonly related to the calendar days.
|
|
77580
77942
|
*
|
|
77581
77943
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
77582
|
-
*
|
|
77583
|
-
* Default value is `"Calendar"`.
|
|
77584
77944
|
*/
|
|
77585
77945
|
setItemsHeader(
|
|
77586
77946
|
/**
|
|
77587
77947
|
* New value for property `itemsHeader`
|
|
77588
77948
|
*/
|
|
77589
|
-
sItemsHeader
|
|
77949
|
+
sItemsHeader: string
|
|
77590
77950
|
): this;
|
|
77591
77951
|
}
|
|
77592
77952
|
/**
|
|
@@ -86820,6 +87180,11 @@ declare namespace sap {
|
|
|
86820
87180
|
item?: sap.m.SegmentedButtonItem;
|
|
86821
87181
|
}
|
|
86822
87182
|
): this;
|
|
87183
|
+
/**
|
|
87184
|
+
* See:
|
|
87185
|
+
* sap.ui.core.Control#getAccessibilityInfo
|
|
87186
|
+
*/
|
|
87187
|
+
getAccessibilityInfo(): object;
|
|
86823
87188
|
/**
|
|
86824
87189
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
86825
87190
|
* ariaDescribedBy}.
|
|
@@ -104288,6 +104653,24 @@ declare namespace sap {
|
|
|
104288
104653
|
* the binding itself.
|
|
104289
104654
|
*/
|
|
104290
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;
|
|
104291
104674
|
/**
|
|
104292
104675
|
* Gets current value of property {@link #getLocaleId localeId}.
|
|
104293
104676
|
*
|
|
@@ -104435,6 +104818,26 @@ declare namespace sap {
|
|
|
104435
104818
|
* Called before the clock picker appears.
|
|
104436
104819
|
*/
|
|
104437
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;
|
|
104438
104841
|
/**
|
|
104439
104842
|
* Removes all the controls from the aggregation {@link #getRules rules}.
|
|
104440
104843
|
*
|
|
@@ -104468,6 +104871,31 @@ declare namespace sap {
|
|
|
104468
104871
|
*/
|
|
104469
104872
|
sDisplayFormat: string
|
|
104470
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;
|
|
104471
104899
|
/**
|
|
104472
104900
|
* Sets the locale of the control.
|
|
104473
104901
|
*
|
|
@@ -115679,6 +116107,19 @@ declare namespace sap {
|
|
|
115679
116107
|
*/
|
|
115680
116108
|
sort = "sort",
|
|
115681
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
|
+
}
|
|
115682
116123
|
/**
|
|
115683
116124
|
* Available Page Background Design.
|
|
115684
116125
|
*/
|
|
@@ -116690,6 +117131,8 @@ declare namespace sap {
|
|
|
116690
117131
|
|
|
116691
117132
|
"sap/m/DynamicDateRange": undefined;
|
|
116692
117133
|
|
|
117134
|
+
"sap/m/DynamicDateUtil": undefined;
|
|
117135
|
+
|
|
116693
117136
|
"sap/m/DynamicDateValueHelpUIType": undefined;
|
|
116694
117137
|
|
|
116695
117138
|
"sap/m/ExpandableText": undefined;
|
|
@@ -116838,6 +117281,8 @@ declare namespace sap {
|
|
|
116838
117281
|
|
|
116839
117282
|
"sap/m/p13n/GroupPanel": undefined;
|
|
116840
117283
|
|
|
117284
|
+
"sap/m/p13n/Popup": undefined;
|
|
117285
|
+
|
|
116841
117286
|
"sap/m/p13n/QueryPanel": undefined;
|
|
116842
117287
|
|
|
116843
117288
|
"sap/m/p13n/SelectionPanel": undefined;
|