@openui5/ts-types 1.95.0 → 1.96.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +59 -40
- package/types/sap.m.d.ts +563 -107
- package/types/sap.tnt.d.ts +31 -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 +681 -487
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +220 -1
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +39 -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 +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- 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.96.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1497,8 +1497,11 @@ declare namespace sap {
|
|
|
1497
1497
|
* Used for closing dialogs and showing transitions in `NavContainers` when targets are displayed.
|
|
1498
1498
|
*
|
|
1499
1499
|
* **Note:** You should not create an own instance of this class. It is created when using `{@link sap.m.routing.Router}`
|
|
1500
|
-
* or `{@link sap.m.routing.Targets}`.
|
|
1501
|
-
*
|
|
1500
|
+
* or `{@link sap.m.routing.Targets}`.
|
|
1501
|
+
*
|
|
1502
|
+
* **Note:** You may use the `{@link #setCloseDialogs}` function to specify if dialogs should be closed
|
|
1503
|
+
* on displaying other views. The dialogs are closed when a different target is displayed than the previously
|
|
1504
|
+
* displayed one, otherwise the dialogs are kept open.
|
|
1502
1505
|
*/
|
|
1503
1506
|
class TargetHandler extends sap.ui.base.Object {
|
|
1504
1507
|
/**
|
|
@@ -1506,8 +1509,8 @@ declare namespace sap {
|
|
|
1506
1509
|
*/
|
|
1507
1510
|
constructor(
|
|
1508
1511
|
/**
|
|
1509
|
-
* Closes all open dialogs before navigating, if set to `true` (default). If set to
|
|
1510
|
-
* navigate without closing dialogs.
|
|
1512
|
+
* Closes all open dialogs before navigating to a different target, if set to `true` (default). If set to
|
|
1513
|
+
* `false`, it will just navigate without closing dialogs.
|
|
1511
1514
|
*/
|
|
1512
1515
|
closeDialogs: boolean
|
|
1513
1516
|
);
|
|
@@ -1543,6 +1546,9 @@ declare namespace sap {
|
|
|
1543
1546
|
getCloseDialogs(): boolean;
|
|
1544
1547
|
/**
|
|
1545
1548
|
* Sets if a navigation should close dialogs.
|
|
1549
|
+
*
|
|
1550
|
+
* **Note:** The dialogs are closed when a different target is displayed than the previous one, otherwise
|
|
1551
|
+
* the dialogs are kept open even when `bCloseDialogs` is `true`.
|
|
1546
1552
|
*/
|
|
1547
1553
|
setCloseDialogs(
|
|
1548
1554
|
/**
|
|
@@ -12385,7 +12391,7 @@ declare namespace sap {
|
|
|
12385
12391
|
* @SINCE 1.11.2
|
|
12386
12392
|
* @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
|
|
12387
12393
|
* even on tablet and desktop. If you want to achieve the same effect as `stretchOnPhone`, please set the
|
|
12388
|
-
* stretch with
|
|
12394
|
+
* stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
|
|
12389
12395
|
*
|
|
12390
12396
|
* Determines whether the Dialog will be displayed on full screen on a phone.
|
|
12391
12397
|
*/
|
|
@@ -13899,6 +13905,32 @@ declare namespace sap {
|
|
|
13899
13905
|
*/
|
|
13900
13906
|
url?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13901
13907
|
|
|
13908
|
+
/**
|
|
13909
|
+
* @EXPERIMENTAL (since 1.96)
|
|
13910
|
+
*
|
|
13911
|
+
* Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
|
|
13912
|
+
* Works only in ArticleMode.
|
|
13913
|
+
*/
|
|
13914
|
+
enableNavigationButton?:
|
|
13915
|
+
| boolean
|
|
13916
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13917
|
+
|
|
13918
|
+
/**
|
|
13919
|
+
* @EXPERIMENTAL (since 1.96)
|
|
13920
|
+
*
|
|
13921
|
+
* Disables press event for the tile control.
|
|
13922
|
+
*/
|
|
13923
|
+
pressEnabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13924
|
+
|
|
13925
|
+
/**
|
|
13926
|
+
* @EXPERIMENTAL (since 1.96)
|
|
13927
|
+
*
|
|
13928
|
+
* Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
|
|
13929
|
+
*/
|
|
13930
|
+
navigationButtonText?:
|
|
13931
|
+
| string
|
|
13932
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13933
|
+
|
|
13902
13934
|
/**
|
|
13903
13935
|
* @SINCE 1.60
|
|
13904
13936
|
*
|
|
@@ -13926,6 +13958,36 @@ declare namespace sap {
|
|
|
13926
13958
|
| string
|
|
13927
13959
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13928
13960
|
|
|
13961
|
+
/**
|
|
13962
|
+
* @SINCE 1.96
|
|
13963
|
+
* @EXPERIMENTAL (since 1.96)
|
|
13964
|
+
*
|
|
13965
|
+
* Icon of the GenericTile. Only applicable for IconMode.
|
|
13966
|
+
*/
|
|
13967
|
+
tileIcon?:
|
|
13968
|
+
| sap.ui.core.URI
|
|
13969
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13970
|
+
|
|
13971
|
+
/**
|
|
13972
|
+
* @SINCE 1.96
|
|
13973
|
+
* @EXPERIMENTAL (since 1.96)
|
|
13974
|
+
*
|
|
13975
|
+
* Background color of the GenericTile. Only applicable for IconMode.
|
|
13976
|
+
*/
|
|
13977
|
+
backgroundColor?:
|
|
13978
|
+
| sap.ui.core.CSSColor
|
|
13979
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13980
|
+
|
|
13981
|
+
/**
|
|
13982
|
+
* @SINCE 1.95
|
|
13983
|
+
* @EXPERIMENTAL
|
|
13984
|
+
*
|
|
13985
|
+
* The semantic color of the value.
|
|
13986
|
+
*/
|
|
13987
|
+
valueColor?:
|
|
13988
|
+
| sap.m.ValueColor
|
|
13989
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13990
|
+
|
|
13929
13991
|
/**
|
|
13930
13992
|
* The content of the tile.
|
|
13931
13993
|
*/
|
|
@@ -13943,6 +14005,16 @@ declare namespace sap {
|
|
|
13943
14005
|
*/
|
|
13944
14006
|
icon?: sap.ui.core.Control;
|
|
13945
14007
|
|
|
14008
|
+
/**
|
|
14009
|
+
* @EXPERIMENTAL (since 1.96)
|
|
14010
|
+
*
|
|
14011
|
+
* Action buttons added in ActionMode.
|
|
14012
|
+
*/
|
|
14013
|
+
actionButtons?:
|
|
14014
|
+
| sap.m.Button[]
|
|
14015
|
+
| sap.m.Button
|
|
14016
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
14017
|
+
|
|
13946
14018
|
/**
|
|
13947
14019
|
* The event is triggered when the user presses the tile.
|
|
13948
14020
|
*/
|
|
@@ -15905,6 +15977,14 @@ declare namespace sap {
|
|
|
15905
15977
|
*/
|
|
15906
15978
|
mask?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15907
15979
|
|
|
15980
|
+
/**
|
|
15981
|
+
* @SINCE 1.96
|
|
15982
|
+
*
|
|
15983
|
+
* Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
|
|
15984
|
+
* event.
|
|
15985
|
+
*/
|
|
15986
|
+
showClearIcon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15987
|
+
|
|
15908
15988
|
/**
|
|
15909
15989
|
* A list of validation rules (one rule per mask character).
|
|
15910
15990
|
*/
|
|
@@ -16523,6 +16603,11 @@ declare namespace sap {
|
|
|
16523
16603
|
*/
|
|
16524
16604
|
selectedKeys?: string[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16525
16605
|
|
|
16606
|
+
/**
|
|
16607
|
+
* Determines if the select all checkbox is visible on top of suggestions.
|
|
16608
|
+
*/
|
|
16609
|
+
showSelectAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16610
|
+
|
|
16526
16611
|
/**
|
|
16527
16612
|
* Provides getter and setter for the selected items from the aggregation named items.
|
|
16528
16613
|
*/
|
|
@@ -19237,8 +19322,8 @@ declare namespace sap {
|
|
|
19237
19322
|
* @SINCE 1.81.0
|
|
19238
19323
|
* @EXPERIMENTAL (since 1.81.0)
|
|
19239
19324
|
*
|
|
19240
|
-
* Defines rounding of the width CalendarAppoinment **Note:** This property is applied, when
|
|
19241
|
-
*
|
|
19325
|
+
* Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
|
|
19326
|
+
* interval type is day and the view shows more than 20 days
|
|
19242
19327
|
*/
|
|
19243
19328
|
appointmentRoundWidth?:
|
|
19244
19329
|
| sap.ui.unified.CalendarAppointmentRoundWidth
|
|
@@ -22264,6 +22349,16 @@ declare namespace sap {
|
|
|
22264
22349
|
| sap.ui.core.CSSSize
|
|
22265
22350
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22266
22351
|
|
|
22352
|
+
/**
|
|
22353
|
+
* @SINCE 1.96
|
|
22354
|
+
* @EXPERIMENTAL
|
|
22355
|
+
*
|
|
22356
|
+
* Height of the control.
|
|
22357
|
+
*/
|
|
22358
|
+
height?:
|
|
22359
|
+
| sap.ui.core.CSSSize
|
|
22360
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22361
|
+
|
|
22267
22362
|
/**
|
|
22268
22363
|
* The set of Generic Tiles to be shown in the control.
|
|
22269
22364
|
*/
|
|
@@ -23695,6 +23790,15 @@ declare namespace sap {
|
|
|
23695
23790
|
| sap.m.FrameType
|
|
23696
23791
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23697
23792
|
|
|
23793
|
+
/**
|
|
23794
|
+
* @EXPERIMENTAL (since 1.96)
|
|
23795
|
+
*
|
|
23796
|
+
* Adds a priority badge before the content. Works only in Generic Tile ActionMode.
|
|
23797
|
+
*/
|
|
23798
|
+
priority?:
|
|
23799
|
+
| sap.ui.core.Priority
|
|
23800
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23801
|
+
|
|
23698
23802
|
/**
|
|
23699
23803
|
* The switchable view that depends on the tile type.
|
|
23700
23804
|
*/
|
|
@@ -31847,11 +31951,13 @@ declare namespace sap {
|
|
|
31847
31951
|
* See:
|
|
31848
31952
|
* {@link sap.m.ColorPalettePopover}
|
|
31849
31953
|
*
|
|
31850
|
-
* **Note:** The
|
|
31954
|
+
* **Note:** The application developers should add dependency to `sap.ui.unified` library
|
|
31955
|
+
* on application level to ensure that the library is loaded before the module dependencies will be required.
|
|
31956
|
+
* The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
|
|
31851
31957
|
* is opened (not used for the initial rendering). If the `sap.ui.unified` library is not loaded
|
|
31852
|
-
* before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to
|
|
31853
|
-
* time when the `ColorPicker` is opened for the first time.
|
|
31854
|
-
* `ColorPalette` should also load the `sap.ui.unified` library.
|
|
31958
|
+
* before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to CSP compliance
|
|
31959
|
+
* issues and adds an additional waiting time when the `ColorPicker` is opened for the first time.
|
|
31960
|
+
* To prevent this, apps using the `ColorPalette` should also load the `sap.ui.unified` library in advance.
|
|
31855
31961
|
*/
|
|
31856
31962
|
constructor(
|
|
31857
31963
|
/**
|
|
@@ -31868,11 +31974,13 @@ declare namespace sap {
|
|
|
31868
31974
|
* See:
|
|
31869
31975
|
* {@link sap.m.ColorPalettePopover}
|
|
31870
31976
|
*
|
|
31871
|
-
* **Note:** The
|
|
31977
|
+
* **Note:** The application developers should add dependency to `sap.ui.unified` library
|
|
31978
|
+
* on application level to ensure that the library is loaded before the module dependencies will be required.
|
|
31979
|
+
* The {@link sap.ui.unified.ColorPicker} is used internally only if the `ColorPicker`
|
|
31872
31980
|
* is opened (not used for the initial rendering). If the `sap.ui.unified` library is not loaded
|
|
31873
|
-
* before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to
|
|
31874
|
-
* time when the `ColorPicker` is opened for the first time.
|
|
31875
|
-
* `ColorPalette` should also load the `sap.ui.unified` library.
|
|
31981
|
+
* before the `ColorPicker` is opened, it will be loaded upon opening. This could lead to CSP compliance
|
|
31982
|
+
* issues and adds an additional waiting time when the `ColorPicker` is opened for the first time.
|
|
31983
|
+
* To prevent this, apps using the `ColorPalette` should also load the `sap.ui.unified` library in advance.
|
|
31876
31984
|
*/
|
|
31877
31985
|
constructor(
|
|
31878
31986
|
/**
|
|
@@ -35171,11 +35279,13 @@ declare namespace sap {
|
|
|
35171
35279
|
* The `DatePicker` lets the users select a localized date using touch, mouse, or keyboard input. It consists
|
|
35172
35280
|
* of two parts: the date input field and the date picker.
|
|
35173
35281
|
*
|
|
35174
|
-
* **Note:** The
|
|
35175
|
-
*
|
|
35176
|
-
* is
|
|
35177
|
-
*
|
|
35178
|
-
*
|
|
35282
|
+
* **Note:** The application developer should add dependency to `sap.ui.unified` library on application
|
|
35283
|
+
* level to ensure that the library is loaded before the module dependencies will be required. The {@link
|
|
35284
|
+
* sap.ui.unified.Calendar} is used internally only if the `DatePicker` is opened (not used for the initial
|
|
35285
|
+
* rendering). If the `sap.ui.unified` library is not loaded before the `DatePicker` is opened, it will
|
|
35286
|
+
* be loaded upon opening. This could lead to CSP compliance issues and adds an additional waiting time
|
|
35287
|
+
* when the `DatePicker` is opened for the first time. To prevent this, apps using the `DatePicker` should
|
|
35288
|
+
* also load the `sap.ui.unified` library in advance.
|
|
35179
35289
|
*
|
|
35180
35290
|
* Usage:
|
|
35181
35291
|
*
|
|
@@ -35751,11 +35861,13 @@ declare namespace sap {
|
|
|
35751
35861
|
* **Note:** The control is not UTC aware and the selected date range starts from 00:00:00:000 of the first
|
|
35752
35862
|
* date and ends in 23:59:59:999 on the second date.
|
|
35753
35863
|
*
|
|
35754
|
-
* The
|
|
35755
|
-
*
|
|
35756
|
-
* is
|
|
35864
|
+
* The application developer should add dependency to `sap.ui.unified` library on application level to ensure
|
|
35865
|
+
* that the library is loaded before the module dependencies will be required. The {@link sap.ui.unified.Calendar}
|
|
35866
|
+
* is used internally only if the `DateRangeSelection` is opened (not used for the initial rendering). If
|
|
35867
|
+
* the `sap.ui.unified` library is not loaded before the `DateRangeSelection` is opened, it will be loaded
|
|
35868
|
+
* upon opening. This could lead to CSP compliance issues and adds an additional waiting time when the `DateRangeSelection`
|
|
35757
35869
|
* is opened for the first time. To prevent this, apps using the `DateRangeSelection` should also load the
|
|
35758
|
-
* `sap.ui.unified` library.
|
|
35870
|
+
* `sap.ui.unified` library in advance.
|
|
35759
35871
|
*
|
|
35760
35872
|
* Usage:
|
|
35761
35873
|
*
|
|
@@ -36782,11 +36894,13 @@ declare namespace sap {
|
|
|
36782
36894
|
*
|
|
36783
36895
|
* The `DateTimePicker` control consists of two parts: the input field and the date/time picker.
|
|
36784
36896
|
*
|
|
36785
|
-
* **Note:** The
|
|
36786
|
-
*
|
|
36787
|
-
* is
|
|
36788
|
-
*
|
|
36789
|
-
*
|
|
36897
|
+
* **Note:** The application developer should add dependency to `sap.ui.unified` library on application
|
|
36898
|
+
* level to ensure that the library is loaded before the module dependencies will be required. The {@link
|
|
36899
|
+
* sap.ui.unified.Calendar} is used internally only if the `DateTimePicker` is opened (not used for the
|
|
36900
|
+
* initial rendering). If the `sap.ui.unified` library is not loaded before the `DateTimePicker` is opened,
|
|
36901
|
+
* it will be loaded upon opening. This could lead to CSP compliance issues and adds an additional waiting
|
|
36902
|
+
* time when the `DateTimePicker` is opened for the first time. To prevent this, apps using the `DateTimePicker`
|
|
36903
|
+
* should also load the `sap.ui.unified` library in advance.
|
|
36790
36904
|
*
|
|
36791
36905
|
* Usage:
|
|
36792
36906
|
*
|
|
@@ -37647,7 +37761,7 @@ declare namespace sap {
|
|
|
37647
37761
|
* @SINCE 1.11.2
|
|
37648
37762
|
* @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
|
|
37649
37763
|
* even on tablet and desktop. If you want to achieve the same effect as `stretchOnPhone`, please set the
|
|
37650
|
-
* stretch with
|
|
37764
|
+
* stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
|
|
37651
37765
|
*
|
|
37652
37766
|
* Gets current value of property {@link #getStretchOnPhone stretchOnPhone}.
|
|
37653
37767
|
*
|
|
@@ -38109,7 +38223,7 @@ declare namespace sap {
|
|
|
38109
38223
|
* @SINCE 1.11.2
|
|
38110
38224
|
* @deprecated (since 1.13.1) - Please use the new stretch property instead. This enables a stretched Dialog
|
|
38111
38225
|
* even on tablet and desktop. If you want to achieve the same effect as `stretchOnPhone`, please set the
|
|
38112
|
-
* stretch with
|
|
38226
|
+
* stretch with `Device.system.phone`, then the Dialog is only stretched when it runs on a phone.
|
|
38113
38227
|
*
|
|
38114
38228
|
* Sets a new value for property {@link #getStretchOnPhone stretchOnPhone}.
|
|
38115
38229
|
*
|
|
@@ -44189,6 +44303,17 @@ declare namespace sap {
|
|
|
44189
44303
|
* Returns a metadata object for class sap.m.GenericTile.
|
|
44190
44304
|
*/
|
|
44191
44305
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
44306
|
+
/**
|
|
44307
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44308
|
+
*
|
|
44309
|
+
* Adds some actionButton to the aggregation {@link #getActionButtons actionButtons}.
|
|
44310
|
+
*/
|
|
44311
|
+
addActionButton(
|
|
44312
|
+
/**
|
|
44313
|
+
* The actionButton to add; if empty, nothing is inserted
|
|
44314
|
+
*/
|
|
44315
|
+
oActionButton: sap.m.Button
|
|
44316
|
+
): this;
|
|
44192
44317
|
/**
|
|
44193
44318
|
* Adds some tileContent to the aggregation {@link #getTileContent tileContent}.
|
|
44194
44319
|
*/
|
|
@@ -44239,6 +44364,20 @@ declare namespace sap {
|
|
|
44239
44364
|
*/
|
|
44240
44365
|
oListener?: object
|
|
44241
44366
|
): this;
|
|
44367
|
+
/**
|
|
44368
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44369
|
+
*
|
|
44370
|
+
* Binds aggregation {@link #getActionButtons actionButtons} to model data.
|
|
44371
|
+
*
|
|
44372
|
+
* See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
|
|
44373
|
+
* of the possible properties of `oBindingInfo`.
|
|
44374
|
+
*/
|
|
44375
|
+
bindActionButtons(
|
|
44376
|
+
/**
|
|
44377
|
+
* The binding information
|
|
44378
|
+
*/
|
|
44379
|
+
oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
44380
|
+
): this;
|
|
44242
44381
|
/**
|
|
44243
44382
|
* Binds aggregation {@link #getTileContent tileContent} to model data.
|
|
44244
44383
|
*
|
|
@@ -44251,6 +44390,12 @@ declare namespace sap {
|
|
|
44251
44390
|
*/
|
|
44252
44391
|
oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
44253
44392
|
): this;
|
|
44393
|
+
/**
|
|
44394
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44395
|
+
*
|
|
44396
|
+
* Destroys all the actionButtons in the aggregation {@link #getActionButtons actionButtons}.
|
|
44397
|
+
*/
|
|
44398
|
+
destroyActionButtons(): this;
|
|
44254
44399
|
/**
|
|
44255
44400
|
* @deprecated (since 1.36.0) - This aggregation is deprecated, use sap.m.ImageContent control to display
|
|
44256
44401
|
* an icon instead.
|
|
@@ -44302,6 +44447,14 @@ declare namespace sap {
|
|
|
44302
44447
|
domRef?: any;
|
|
44303
44448
|
}
|
|
44304
44449
|
): this;
|
|
44450
|
+
/**
|
|
44451
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44452
|
+
*
|
|
44453
|
+
* Gets content of aggregation {@link #getActionButtons actionButtons}.
|
|
44454
|
+
*
|
|
44455
|
+
* Action buttons added in ActionMode.
|
|
44456
|
+
*/
|
|
44457
|
+
getActionButtons(): sap.m.Button[];
|
|
44305
44458
|
/**
|
|
44306
44459
|
* @SINCE 1.82
|
|
44307
44460
|
*
|
|
@@ -44343,6 +44496,15 @@ declare namespace sap {
|
|
|
44343
44496
|
* Additional description for aria-roledescription.
|
|
44344
44497
|
*/
|
|
44345
44498
|
getAriaRoleDescription(): string;
|
|
44499
|
+
/**
|
|
44500
|
+
* @SINCE 1.96
|
|
44501
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44502
|
+
*
|
|
44503
|
+
* Gets current value of property {@link #getBackgroundColor backgroundColor}.
|
|
44504
|
+
*
|
|
44505
|
+
* Background color of the GenericTile. Only applicable for IconMode.
|
|
44506
|
+
*/
|
|
44507
|
+
getBackgroundColor(): sap.ui.core.CSSColor;
|
|
44346
44508
|
/**
|
|
44347
44509
|
* Gets current value of property {@link #getBackgroundImage backgroundImage}.
|
|
44348
44510
|
*
|
|
@@ -44355,6 +44517,17 @@ declare namespace sap {
|
|
|
44355
44517
|
* Provides an interface to the tile's layout information consistent in all modes and content densities.
|
|
44356
44518
|
*/
|
|
44357
44519
|
getBoundingRects(): object[];
|
|
44520
|
+
/**
|
|
44521
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44522
|
+
*
|
|
44523
|
+
* Gets current value of property {@link #getEnableNavigationButton enableNavigationButton}.
|
|
44524
|
+
*
|
|
44525
|
+
* Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
|
|
44526
|
+
* Works only in ArticleMode.
|
|
44527
|
+
*
|
|
44528
|
+
* Default value is `false`.
|
|
44529
|
+
*/
|
|
44530
|
+
getEnableNavigationButton(): boolean;
|
|
44358
44531
|
/**
|
|
44359
44532
|
* Gets current value of property {@link #getFailedText failedText}.
|
|
44360
44533
|
*
|
|
@@ -44407,6 +44580,24 @@ declare namespace sap {
|
|
|
44407
44580
|
* Default value is `ContentMode`.
|
|
44408
44581
|
*/
|
|
44409
44582
|
getMode(): sap.m.GenericTileMode;
|
|
44583
|
+
/**
|
|
44584
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44585
|
+
*
|
|
44586
|
+
* Gets current value of property {@link #getNavigationButtonText navigationButtonText}.
|
|
44587
|
+
*
|
|
44588
|
+
* Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
|
|
44589
|
+
*/
|
|
44590
|
+
getNavigationButtonText(): string;
|
|
44591
|
+
/**
|
|
44592
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44593
|
+
*
|
|
44594
|
+
* Gets current value of property {@link #getPressEnabled pressEnabled}.
|
|
44595
|
+
*
|
|
44596
|
+
* Disables press event for the tile control.
|
|
44597
|
+
*
|
|
44598
|
+
* Default value is `true`.
|
|
44599
|
+
*/
|
|
44600
|
+
getPressEnabled(): boolean;
|
|
44410
44601
|
/**
|
|
44411
44602
|
* @SINCE 1.46.0
|
|
44412
44603
|
*
|
|
@@ -44467,6 +44658,15 @@ declare namespace sap {
|
|
|
44467
44658
|
* The content of the tile.
|
|
44468
44659
|
*/
|
|
44469
44660
|
getTileContent(): sap.m.TileContent[];
|
|
44661
|
+
/**
|
|
44662
|
+
* @SINCE 1.96
|
|
44663
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44664
|
+
*
|
|
44665
|
+
* Gets current value of property {@link #getTileIcon tileIcon}.
|
|
44666
|
+
*
|
|
44667
|
+
* Icon of the GenericTile. Only applicable for IconMode.
|
|
44668
|
+
*/
|
|
44669
|
+
getTileIcon(): sap.ui.core.URI;
|
|
44470
44670
|
/**
|
|
44471
44671
|
* @SINCE 1.76
|
|
44472
44672
|
*
|
|
@@ -44475,6 +44675,17 @@ declare namespace sap {
|
|
|
44475
44675
|
* Renders the given link as root element and therefore enables the open in new tab / window functionality
|
|
44476
44676
|
*/
|
|
44477
44677
|
getUrl(): sap.ui.core.URI;
|
|
44678
|
+
/**
|
|
44679
|
+
* @SINCE 1.95
|
|
44680
|
+
* @EXPERIMENTAL
|
|
44681
|
+
*
|
|
44682
|
+
* Gets current value of property {@link #getValueColor valueColor}.
|
|
44683
|
+
*
|
|
44684
|
+
* The semantic color of the value.
|
|
44685
|
+
*
|
|
44686
|
+
* Default value is `"None"`.
|
|
44687
|
+
*/
|
|
44688
|
+
getValueColor(): sap.m.ValueColor;
|
|
44478
44689
|
/**
|
|
44479
44690
|
* @SINCE 1.72
|
|
44480
44691
|
*
|
|
@@ -44493,6 +44704,18 @@ declare namespace sap {
|
|
|
44493
44704
|
* Default value is `Normal`.
|
|
44494
44705
|
*/
|
|
44495
44706
|
getWrappingType(): sap.m.WrappingType;
|
|
44707
|
+
/**
|
|
44708
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44709
|
+
*
|
|
44710
|
+
* Checks for the provided `sap.m.Button` in the aggregation {@link #getActionButtons actionButtons}. and
|
|
44711
|
+
* returns its index if found or -1 otherwise.
|
|
44712
|
+
*/
|
|
44713
|
+
indexOfActionButton(
|
|
44714
|
+
/**
|
|
44715
|
+
* The actionButton whose index is looked for
|
|
44716
|
+
*/
|
|
44717
|
+
oActionButton: sap.m.Button
|
|
44718
|
+
): int;
|
|
44496
44719
|
/**
|
|
44497
44720
|
* Checks for the provided `sap.m.TileContent` in the aggregation {@link #getTileContent tileContent}. and
|
|
44498
44721
|
* returns its index if found or -1 otherwise.
|
|
@@ -44503,6 +44726,23 @@ declare namespace sap {
|
|
|
44503
44726
|
*/
|
|
44504
44727
|
oTileContent: sap.m.TileContent
|
|
44505
44728
|
): int;
|
|
44729
|
+
/**
|
|
44730
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44731
|
+
*
|
|
44732
|
+
* Inserts a actionButton into the aggregation {@link #getActionButtons actionButtons}.
|
|
44733
|
+
*/
|
|
44734
|
+
insertActionButton(
|
|
44735
|
+
/**
|
|
44736
|
+
* The actionButton to insert; if empty, nothing is inserted
|
|
44737
|
+
*/
|
|
44738
|
+
oActionButton: sap.m.Button,
|
|
44739
|
+
/**
|
|
44740
|
+
* The `0`-based index the actionButton should be inserted at; for a negative value of `iIndex`, the actionButton
|
|
44741
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the actionButton
|
|
44742
|
+
* is inserted at the last position
|
|
44743
|
+
*/
|
|
44744
|
+
iIndex: int
|
|
44745
|
+
): this;
|
|
44506
44746
|
/**
|
|
44507
44747
|
* Inserts a tileContent into the aggregation {@link #getTileContent tileContent}.
|
|
44508
44748
|
*/
|
|
@@ -44518,6 +44758,25 @@ declare namespace sap {
|
|
|
44518
44758
|
*/
|
|
44519
44759
|
iIndex: int
|
|
44520
44760
|
): this;
|
|
44761
|
+
/**
|
|
44762
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44763
|
+
*
|
|
44764
|
+
* Removes a actionButton from the aggregation {@link #getActionButtons actionButtons}.
|
|
44765
|
+
*/
|
|
44766
|
+
removeActionButton(
|
|
44767
|
+
/**
|
|
44768
|
+
* The actionButton to remove or its index or id
|
|
44769
|
+
*/
|
|
44770
|
+
vActionButton: int | string | sap.m.Button
|
|
44771
|
+
): sap.m.Button;
|
|
44772
|
+
/**
|
|
44773
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44774
|
+
*
|
|
44775
|
+
* Removes all the controls from the aggregation {@link #getActionButtons actionButtons}.
|
|
44776
|
+
*
|
|
44777
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
44778
|
+
*/
|
|
44779
|
+
removeAllActionButtons(): sap.m.Button[];
|
|
44521
44780
|
/**
|
|
44522
44781
|
* Removes all the controls from the aggregation {@link #getTileContent tileContent}.
|
|
44523
44782
|
*
|
|
@@ -44609,6 +44868,22 @@ declare namespace sap {
|
|
|
44609
44868
|
*/
|
|
44610
44869
|
sAriaRoleDescription?: string
|
|
44611
44870
|
): this;
|
|
44871
|
+
/**
|
|
44872
|
+
* @SINCE 1.96
|
|
44873
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44874
|
+
*
|
|
44875
|
+
* Sets a new value for property {@link #getBackgroundColor backgroundColor}.
|
|
44876
|
+
*
|
|
44877
|
+
* Background color of the GenericTile. Only applicable for IconMode.
|
|
44878
|
+
*
|
|
44879
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44880
|
+
*/
|
|
44881
|
+
setBackgroundColor(
|
|
44882
|
+
/**
|
|
44883
|
+
* New value for property `backgroundColor`
|
|
44884
|
+
*/
|
|
44885
|
+
sBackgroundColor: sap.ui.core.CSSColor
|
|
44886
|
+
): this;
|
|
44612
44887
|
/**
|
|
44613
44888
|
* Sets a new value for property {@link #getBackgroundImage backgroundImage}.
|
|
44614
44889
|
*
|
|
@@ -44622,6 +44897,24 @@ declare namespace sap {
|
|
|
44622
44897
|
*/
|
|
44623
44898
|
sBackgroundImage?: sap.ui.core.URI
|
|
44624
44899
|
): this;
|
|
44900
|
+
/**
|
|
44901
|
+
* @EXPERIMENTAL (since 1.96)
|
|
44902
|
+
*
|
|
44903
|
+
* Sets a new value for property {@link #getEnableNavigationButton enableNavigationButton}.
|
|
44904
|
+
*
|
|
44905
|
+
* Renders the given link as a button, enabling the option of opening the link in new tab/window functionality.
|
|
44906
|
+
* Works only in ArticleMode.
|
|
44907
|
+
*
|
|
44908
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44909
|
+
*
|
|
44910
|
+
* Default value is `false`.
|
|
44911
|
+
*/
|
|
44912
|
+
setEnableNavigationButton(
|
|
44913
|
+
/**
|
|
44914
|
+
* New value for property `enableNavigationButton`
|
|
44915
|
+
*/
|
|
44916
|
+
bEnableNavigationButton?: boolean
|
|
44917
|
+
): this;
|
|
44625
44918
|
/**
|
|
44626
44919
|
* Sets a new value for property {@link #getFailedText failedText}.
|
|
44627
44920
|
*
|
|
@@ -44718,6 +45011,21 @@ declare namespace sap {
|
|
|
44718
45011
|
*/
|
|
44719
45012
|
sMode?: sap.m.GenericTileMode
|
|
44720
45013
|
): this;
|
|
45014
|
+
/**
|
|
45015
|
+
* @EXPERIMENTAL (since 1.96)
|
|
45016
|
+
*
|
|
45017
|
+
* Sets a new value for property {@link #getNavigationButtonText navigationButtonText}.
|
|
45018
|
+
*
|
|
45019
|
+
* Text for navigate action button. Default Value is "Read More". Works only in ArticleMode.
|
|
45020
|
+
*
|
|
45021
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45022
|
+
*/
|
|
45023
|
+
setNavigationButtonText(
|
|
45024
|
+
/**
|
|
45025
|
+
* New value for property `navigationButtonText`
|
|
45026
|
+
*/
|
|
45027
|
+
sNavigationButtonText?: string
|
|
45028
|
+
): this;
|
|
44721
45029
|
/**
|
|
44722
45030
|
* @SINCE 1.46
|
|
44723
45031
|
*
|
|
@@ -44825,6 +45133,22 @@ declare namespace sap {
|
|
|
44825
45133
|
*/
|
|
44826
45134
|
sSystemInfo?: string
|
|
44827
45135
|
): this;
|
|
45136
|
+
/**
|
|
45137
|
+
* @SINCE 1.96
|
|
45138
|
+
* @EXPERIMENTAL (since 1.96)
|
|
45139
|
+
*
|
|
45140
|
+
* Sets a new value for property {@link #getTileIcon tileIcon}.
|
|
45141
|
+
*
|
|
45142
|
+
* Icon of the GenericTile. Only applicable for IconMode.
|
|
45143
|
+
*
|
|
45144
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45145
|
+
*/
|
|
45146
|
+
setTileIcon(
|
|
45147
|
+
/**
|
|
45148
|
+
* New value for property `tileIcon`
|
|
45149
|
+
*/
|
|
45150
|
+
sTileIcon: sap.ui.core.URI
|
|
45151
|
+
): this;
|
|
44828
45152
|
/**
|
|
44829
45153
|
* @SINCE 1.76
|
|
44830
45154
|
*
|
|
@@ -44840,6 +45164,24 @@ declare namespace sap {
|
|
|
44840
45164
|
*/
|
|
44841
45165
|
sUrl?: sap.ui.core.URI
|
|
44842
45166
|
): this;
|
|
45167
|
+
/**
|
|
45168
|
+
* @SINCE 1.95
|
|
45169
|
+
* @EXPERIMENTAL
|
|
45170
|
+
*
|
|
45171
|
+
* Sets a new value for property {@link #getValueColor valueColor}.
|
|
45172
|
+
*
|
|
45173
|
+
* The semantic color of the value.
|
|
45174
|
+
*
|
|
45175
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45176
|
+
*
|
|
45177
|
+
* Default value is `"None"`.
|
|
45178
|
+
*/
|
|
45179
|
+
setValueColor(
|
|
45180
|
+
/**
|
|
45181
|
+
* New value for property `valueColor`
|
|
45182
|
+
*/
|
|
45183
|
+
sValueColor?: sap.m.ValueColor
|
|
45184
|
+
): this;
|
|
44843
45185
|
/**
|
|
44844
45186
|
* @SINCE 1.72
|
|
44845
45187
|
*
|
|
@@ -44884,6 +45226,12 @@ declare namespace sap {
|
|
|
44884
45226
|
*/
|
|
44885
45227
|
value: boolean
|
|
44886
45228
|
): void;
|
|
45229
|
+
/**
|
|
45230
|
+
* @EXPERIMENTAL (since 1.96)
|
|
45231
|
+
*
|
|
45232
|
+
* Unbinds aggregation {@link #getActionButtons actionButtons} from model data.
|
|
45233
|
+
*/
|
|
45234
|
+
unbindActionButtons(): this;
|
|
44887
45235
|
/**
|
|
44888
45236
|
* Unbinds aggregation {@link #getTileContent tileContent} from model data.
|
|
44889
45237
|
*/
|
|
@@ -46071,6 +46419,10 @@ declare namespace sap {
|
|
|
46071
46419
|
* The key of the selected item
|
|
46072
46420
|
*/
|
|
46073
46421
|
key?: string;
|
|
46422
|
+
/**
|
|
46423
|
+
* The key of the previous selected item
|
|
46424
|
+
*/
|
|
46425
|
+
previousKey?: string;
|
|
46074
46426
|
/**
|
|
46075
46427
|
* The selected item
|
|
46076
46428
|
*/
|
|
@@ -47173,6 +47525,10 @@ declare namespace sap {
|
|
|
47173
47525
|
* The key of the selected item
|
|
47174
47526
|
*/
|
|
47175
47527
|
key?: string;
|
|
47528
|
+
/**
|
|
47529
|
+
* The key of the previous selected item
|
|
47530
|
+
*/
|
|
47531
|
+
previousKey?: string;
|
|
47176
47532
|
}
|
|
47177
47533
|
): this;
|
|
47178
47534
|
/**
|
|
@@ -50977,6 +51333,10 @@ declare namespace sap {
|
|
|
50977
51333
|
* Defines the value of the control.
|
|
50978
51334
|
*/
|
|
50979
51335
|
getValue(): string;
|
|
51336
|
+
/**
|
|
51337
|
+
* Gets the value of the accessibility description info field.
|
|
51338
|
+
*/
|
|
51339
|
+
getValueDescriptionInfo(): string;
|
|
50980
51340
|
/**
|
|
50981
51341
|
* Gets current value of property {@link #getValueState valueState}.
|
|
50982
51342
|
*
|
|
@@ -55603,6 +55963,17 @@ declare namespace sap {
|
|
|
55603
55963
|
* A list of validation rules (one rule per mask character).
|
|
55604
55964
|
*/
|
|
55605
55965
|
getRules(): sap.m.MaskInputRule[];
|
|
55966
|
+
/**
|
|
55967
|
+
* @SINCE 1.96
|
|
55968
|
+
*
|
|
55969
|
+
* Gets current value of property {@link #getShowClearIcon showClearIcon}.
|
|
55970
|
+
*
|
|
55971
|
+
* Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
|
|
55972
|
+
* event.
|
|
55973
|
+
*
|
|
55974
|
+
* Default value is `false`.
|
|
55975
|
+
*/
|
|
55976
|
+
getShowClearIcon(): boolean;
|
|
55606
55977
|
/**
|
|
55607
55978
|
* Checks for the provided `sap.m.MaskInputRule` in the aggregation {@link #getRules rules}. and returns
|
|
55608
55979
|
* its index if found or -1 otherwise.
|
|
@@ -55678,6 +56049,24 @@ declare namespace sap {
|
|
|
55678
56049
|
*/
|
|
55679
56050
|
sPlaceholderSymbol?: string
|
|
55680
56051
|
): this;
|
|
56052
|
+
/**
|
|
56053
|
+
* @SINCE 1.96
|
|
56054
|
+
*
|
|
56055
|
+
* Sets a new value for property {@link #getShowClearIcon showClearIcon}.
|
|
56056
|
+
*
|
|
56057
|
+
* Specifies whether a clear icon is shown. Pressing the icon will clear input's value and fire the change
|
|
56058
|
+
* event.
|
|
56059
|
+
*
|
|
56060
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
56061
|
+
*
|
|
56062
|
+
* Default value is `false`.
|
|
56063
|
+
*/
|
|
56064
|
+
setShowClearIcon(
|
|
56065
|
+
/**
|
|
56066
|
+
* New value for property `showClearIcon`
|
|
56067
|
+
*/
|
|
56068
|
+
bShowClearIcon?: boolean
|
|
56069
|
+
): this;
|
|
55681
56070
|
}
|
|
55682
56071
|
/**
|
|
55683
56072
|
* @SINCE 1.34.0
|
|
@@ -55792,6 +56181,11 @@ declare namespace sap {
|
|
|
55792
56181
|
/**
|
|
55793
56182
|
* The `sap.m.Menu` control represents a hierarchical menu. When opened on mobile devices it occupies the
|
|
55794
56183
|
* whole screen.
|
|
56184
|
+
*
|
|
56185
|
+
* **Note:** The application developer should add dependency to `sap.ui.unified` library on application
|
|
56186
|
+
* level to ensure that the library is loaded before the module dependencies will be required. If the `sap.ui.unified`
|
|
56187
|
+
* library is not loaded in advance, this could lead to CSP compliance issues and adds an additional waiting
|
|
56188
|
+
* time. To prevent this, ensure that the `sap.ui.unified` library is loaded in advance.
|
|
55795
56189
|
*/
|
|
55796
56190
|
class Menu extends sap.ui.core.Control implements sap.ui.core.IContextMenu {
|
|
55797
56191
|
__implements__sap_ui_core_IContextMenu: boolean;
|
|
@@ -60382,6 +60776,14 @@ declare namespace sap {
|
|
|
60382
60776
|
* Default value is `[]`.
|
|
60383
60777
|
*/
|
|
60384
60778
|
getSelectedKeys(): string[];
|
|
60779
|
+
/**
|
|
60780
|
+
* Gets current value of property {@link #getShowSelectAll showSelectAll}.
|
|
60781
|
+
*
|
|
60782
|
+
* Determines if the select all checkbox is visible on top of suggestions.
|
|
60783
|
+
*
|
|
60784
|
+
* Default value is `false`.
|
|
60785
|
+
*/
|
|
60786
|
+
getShowSelectAll(): boolean;
|
|
60385
60787
|
/**
|
|
60386
60788
|
* Checks whether an item is selected.
|
|
60387
60789
|
*/
|
|
@@ -60456,6 +60858,21 @@ declare namespace sap {
|
|
|
60456
60858
|
*/
|
|
60457
60859
|
aKeys: string[]
|
|
60458
60860
|
): this;
|
|
60861
|
+
/**
|
|
60862
|
+
* Sets a new value for property {@link #getShowSelectAll showSelectAll}.
|
|
60863
|
+
*
|
|
60864
|
+
* Determines if the select all checkbox is visible on top of suggestions.
|
|
60865
|
+
*
|
|
60866
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
60867
|
+
*
|
|
60868
|
+
* Default value is `false`.
|
|
60869
|
+
*/
|
|
60870
|
+
setShowSelectAll(
|
|
60871
|
+
/**
|
|
60872
|
+
* New value for property `showSelectAll`
|
|
60873
|
+
*/
|
|
60874
|
+
bShowSelectAll?: boolean
|
|
60875
|
+
): this;
|
|
60459
60876
|
/**
|
|
60460
60877
|
* Creates picker if doesn't exist yet and sync with Control items
|
|
60461
60878
|
*/
|
|
@@ -61656,12 +62073,6 @@ declare namespace sap {
|
|
|
61656
62073
|
* Default value is `'100%'`.
|
|
61657
62074
|
*/
|
|
61658
62075
|
getWidth(): sap.ui.core.CSSSize;
|
|
61659
|
-
/**
|
|
61660
|
-
* @SINCE 1.91
|
|
61661
|
-
*
|
|
61662
|
-
* Hides the placeholder and removes the 'onAfterRendering' placeholder delegate.
|
|
61663
|
-
*/
|
|
61664
|
-
hidePlaceholder(): void;
|
|
61665
62076
|
/**
|
|
61666
62077
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getPages pages}. and returns
|
|
61667
62078
|
* its index if found or -1 otherwise.
|
|
@@ -61858,23 +62269,6 @@ declare namespace sap {
|
|
|
61858
62269
|
*/
|
|
61859
62270
|
sWidth?: sap.ui.core.CSSSize
|
|
61860
62271
|
): this;
|
|
61861
|
-
/**
|
|
61862
|
-
* @SINCE 1.91
|
|
61863
|
-
*
|
|
61864
|
-
* Shows the placeholder if NavContainer is rendered. Otherwise, registers the 'onAfterRendering' delegate
|
|
61865
|
-
* which shows the placeholder.
|
|
61866
|
-
*/
|
|
61867
|
-
showPlaceholder(
|
|
61868
|
-
/**
|
|
61869
|
-
* Object containing the placeholder instance
|
|
61870
|
-
*/
|
|
61871
|
-
mSettings: {
|
|
61872
|
-
/**
|
|
61873
|
-
* The placeholder instance
|
|
61874
|
-
*/
|
|
61875
|
-
placeholder: /* was: sap.ui.core.Placeholder */ any;
|
|
61876
|
-
}
|
|
61877
|
-
): Promise<any>;
|
|
61878
62272
|
/**
|
|
61879
62273
|
* Navigates to the next page (with drill-down semantic) with the given (or default) animation. This creates
|
|
61880
62274
|
* a new history item inside the NavContainer and allows going back.
|
|
@@ -75517,10 +75911,12 @@ declare namespace sap {
|
|
|
75517
75911
|
* and even a whole week/month. The available navigation allows the user to select a specific interval using
|
|
75518
75912
|
* a picker, or move to the previous/next interval using arrows.
|
|
75519
75913
|
*
|
|
75520
|
-
* **Note:** The
|
|
75521
|
-
*
|
|
75522
|
-
*
|
|
75523
|
-
*
|
|
75914
|
+
* **Note:** The application developer should add dependency to `sap.ui.unified` library on application
|
|
75915
|
+
* level to ensure that the library is loaded before the module dependencies will be required. The `PlanningCalendar`
|
|
75916
|
+
* uses parts of the `sap.ui.unified` library. This library will be loaded after the `PlanningCalendar`,
|
|
75917
|
+
* if it wasn't loaded first. This could lead to CSP compliance issues and adds an additional waiting time
|
|
75918
|
+
* when a `PlanningCalendar` is used for the first time. To prevent this, apps that use the `PlanningCalendar`
|
|
75919
|
+
* should also load the `sap.ui.unified` library in advance.
|
|
75524
75920
|
*
|
|
75525
75921
|
* Usage:
|
|
75526
75922
|
*
|
|
@@ -76161,8 +76557,8 @@ declare namespace sap {
|
|
|
76161
76557
|
*
|
|
76162
76558
|
* Gets current value of property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
|
|
76163
76559
|
*
|
|
76164
|
-
* Defines rounding of the width CalendarAppoinment **Note:** This property is applied, when
|
|
76165
|
-
*
|
|
76560
|
+
* Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
|
|
76561
|
+
* interval type is day and the view shows more than 20 days
|
|
76166
76562
|
*
|
|
76167
76563
|
* Default value is `None`.
|
|
76168
76564
|
*/
|
|
@@ -76664,8 +77060,8 @@ declare namespace sap {
|
|
|
76664
77060
|
*
|
|
76665
77061
|
* Sets a new value for property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
|
|
76666
77062
|
*
|
|
76667
|
-
* Defines rounding of the width CalendarAppoinment **Note:** This property is applied, when
|
|
76668
|
-
*
|
|
77063
|
+
* Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
|
|
77064
|
+
* interval type is day and the view shows more than 20 days
|
|
76669
77065
|
*
|
|
76670
77066
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
76671
77067
|
*
|
|
@@ -91459,10 +91855,12 @@ declare namespace sap {
|
|
|
91459
91855
|
*
|
|
91460
91856
|
* Overview:
|
|
91461
91857
|
*
|
|
91462
|
-
* **Note:** The
|
|
91463
|
-
*
|
|
91858
|
+
* **Note:** The application developer should add dependency to `sap.ui.unified` library on application
|
|
91859
|
+
* level to ensure that the library is loaded before the module dependencies will be required. The `SinglePlanningCalendar`
|
|
91860
|
+
* uses parts of the `sap.ui.unified` library. This library will be loaded after the `SinglePlanningCalendar`,
|
|
91861
|
+
* if it wasn't previously loaded. This could lead to CSP compliance issues and adds an additional waiting
|
|
91464
91862
|
* time when a `SinglePlanningCalendar` is used for the first time. To prevent this, apps using the `SinglePlanningCalendar`
|
|
91465
|
-
* must also load the `sap.ui.unified` library.
|
|
91863
|
+
* must also load the `sap.ui.unified` library in advance.
|
|
91466
91864
|
*
|
|
91467
91865
|
* The `SinglePlanningCalendar` has the following structure:
|
|
91468
91866
|
*
|
|
@@ -94295,6 +94693,15 @@ declare namespace sap {
|
|
|
94295
94693
|
* Default value is `5000`.
|
|
94296
94694
|
*/
|
|
94297
94695
|
getDisplayTime(): int;
|
|
94696
|
+
/**
|
|
94697
|
+
* @SINCE 1.96
|
|
94698
|
+
* @EXPERIMENTAL
|
|
94699
|
+
*
|
|
94700
|
+
* Gets current value of property {@link #getHeight height}.
|
|
94701
|
+
*
|
|
94702
|
+
* Height of the control.
|
|
94703
|
+
*/
|
|
94704
|
+
getHeight(): sap.ui.core.CSSSize;
|
|
94298
94705
|
/**
|
|
94299
94706
|
* @SINCE 1.46.0
|
|
94300
94707
|
*
|
|
@@ -94393,6 +94800,22 @@ declare namespace sap {
|
|
|
94393
94800
|
*/
|
|
94394
94801
|
iDisplayTime?: int
|
|
94395
94802
|
): this;
|
|
94803
|
+
/**
|
|
94804
|
+
* @SINCE 1.96
|
|
94805
|
+
* @EXPERIMENTAL
|
|
94806
|
+
*
|
|
94807
|
+
* Sets a new value for property {@link #getHeight height}.
|
|
94808
|
+
*
|
|
94809
|
+
* Height of the control.
|
|
94810
|
+
*
|
|
94811
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
94812
|
+
*/
|
|
94813
|
+
setHeight(
|
|
94814
|
+
/**
|
|
94815
|
+
* New value for property `height`
|
|
94816
|
+
*/
|
|
94817
|
+
sHeight: sap.ui.core.CSSSize
|
|
94818
|
+
): this;
|
|
94396
94819
|
/**
|
|
94397
94820
|
* @SINCE 1.46.0
|
|
94398
94821
|
*
|
|
@@ -95981,22 +96404,6 @@ declare namespace sap {
|
|
|
95981
96404
|
* Used to hide the master page when in ShowHideMode and the device is in portrait mode.
|
|
95982
96405
|
*/
|
|
95983
96406
|
hideMaster(): this;
|
|
95984
|
-
/**
|
|
95985
|
-
* @SINCE 1.91
|
|
95986
|
-
*
|
|
95987
|
-
* Hides the placeholder on the corresponding column for the provided aggregation name.
|
|
95988
|
-
*/
|
|
95989
|
-
hidePlaceholder(
|
|
95990
|
-
/**
|
|
95991
|
-
* Object containing the aggregation name
|
|
95992
|
-
*/
|
|
95993
|
-
mSettings: {
|
|
95994
|
-
/**
|
|
95995
|
-
* The aggregation name to decide on which column/container the placeholder should be hidden
|
|
95996
|
-
*/
|
|
95997
|
-
aggregation: string;
|
|
95998
|
-
}
|
|
95999
|
-
): void;
|
|
96000
96407
|
/**
|
|
96001
96408
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getDetailPages detailPages}.
|
|
96002
96409
|
* and returns its index if found or -1 otherwise.
|
|
@@ -96315,22 +96722,6 @@ declare namespace sap {
|
|
|
96315
96722
|
* Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
|
|
96316
96723
|
*/
|
|
96317
96724
|
showMaster(): this;
|
|
96318
|
-
/**
|
|
96319
|
-
* @SINCE 1.91
|
|
96320
|
-
*
|
|
96321
|
-
* Shows the placeholder on the corresponding column for the provided aggregation name.
|
|
96322
|
-
*/
|
|
96323
|
-
showPlaceholder(
|
|
96324
|
-
/**
|
|
96325
|
-
* Object containing the aggregation name
|
|
96326
|
-
*/
|
|
96327
|
-
mSettings: {
|
|
96328
|
-
/**
|
|
96329
|
-
* The aggregation name to decide on which column/container the placeholder should be shown
|
|
96330
|
-
*/
|
|
96331
|
-
aggregation: string;
|
|
96332
|
-
}
|
|
96333
|
-
): void;
|
|
96334
96725
|
/**
|
|
96335
96726
|
* @SINCE 1.10.0
|
|
96336
96727
|
*
|
|
@@ -103547,6 +103938,16 @@ declare namespace sap {
|
|
|
103547
103938
|
* Default value is `"Auto"`.
|
|
103548
103939
|
*/
|
|
103549
103940
|
getFrameType(): sap.m.FrameType;
|
|
103941
|
+
/**
|
|
103942
|
+
* @EXPERIMENTAL (since 1.96)
|
|
103943
|
+
*
|
|
103944
|
+
* Gets current value of property {@link #getPriority priority}.
|
|
103945
|
+
*
|
|
103946
|
+
* Adds a priority badge before the content. Works only in Generic Tile ActionMode.
|
|
103947
|
+
*
|
|
103948
|
+
* Default value is `None`.
|
|
103949
|
+
*/
|
|
103950
|
+
getPriority(): sap.ui.core.Priority;
|
|
103550
103951
|
/**
|
|
103551
103952
|
* @deprecated (since 1.38.0) - The TileContent control has now a fixed size, depending on the used media
|
|
103552
103953
|
* (desktop, tablet or phone).
|
|
@@ -103634,6 +104035,23 @@ declare namespace sap {
|
|
|
103634
104035
|
*/
|
|
103635
104036
|
sFrameType?: sap.m.FrameType
|
|
103636
104037
|
): this;
|
|
104038
|
+
/**
|
|
104039
|
+
* @EXPERIMENTAL (since 1.96)
|
|
104040
|
+
*
|
|
104041
|
+
* Sets a new value for property {@link #getPriority priority}.
|
|
104042
|
+
*
|
|
104043
|
+
* Adds a priority badge before the content. Works only in Generic Tile ActionMode.
|
|
104044
|
+
*
|
|
104045
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
104046
|
+
*
|
|
104047
|
+
* Default value is `None`.
|
|
104048
|
+
*/
|
|
104049
|
+
setPriority(
|
|
104050
|
+
/**
|
|
104051
|
+
* New value for property `priority`
|
|
104052
|
+
*/
|
|
104053
|
+
sPriority?: sap.ui.core.Priority
|
|
104054
|
+
): this;
|
|
103637
104055
|
/**
|
|
103638
104056
|
* Setter for protected property to enable or disable content rendering. This function does not invalidate
|
|
103639
104057
|
* the control.
|
|
@@ -112840,14 +113258,15 @@ declare namespace sap {
|
|
|
112840
113258
|
* - Steps can be branching depending on choices the user made in their input - this is set by the `enableBranching`
|
|
112841
113259
|
* property.
|
|
112842
113260
|
* - Steps can have different visual representations - numbers or icons. You can add labels for better
|
|
112843
|
-
* readability
|
|
112844
|
-
*
|
|
112845
|
-
*
|
|
112846
|
-
*
|
|
112847
|
-
*
|
|
112848
|
-
*
|
|
112849
|
-
*
|
|
112850
|
-
*
|
|
113261
|
+
* readability **Note:** Dynamic step insertion is not supported. Even if branching steps are used,
|
|
113262
|
+
* the steps should be known in advance. Content: The content occupies the main part of the page. It can
|
|
113263
|
+
* hold any type of input controls. The content is kept in {@link sap.m.WizardStep wizard steps}. Next Step
|
|
113264
|
+
* Button: The next step button is displayed below the content. It can be hidden by setting `showNextButton`
|
|
113265
|
+
* to `false` and displayed, for example, only after the user has filled all mandatory fields. Usage: When
|
|
113266
|
+
* to use:: When the user has to accomplish a long or unfamiliar task. When not to use:: When the user has
|
|
113267
|
+
* to accomplish a routine task that is clear and familiar. When the task has only two steps or less. Responsive
|
|
113268
|
+
* Behavior: On mobile devices the steps in the StepNavigator are grouped together and overlap. Tapping
|
|
113269
|
+
* on them will show a popover to select the step to navigate to.
|
|
112851
113270
|
*
|
|
112852
113271
|
* When using the sap.m.Wizard in SAP Quartz theme, the breakpoints and layout paddings could be determined
|
|
112853
113272
|
* by the container's width. To enable this concept and add responsive paddings to the navigation area and
|
|
@@ -114554,6 +114973,22 @@ declare namespace sap {
|
|
|
114554
114973
|
* Defines the mode of GenericTile.
|
|
114555
114974
|
*/
|
|
114556
114975
|
enum GenericTileMode {
|
|
114976
|
+
/**
|
|
114977
|
+
* @EXPERIMENTAL (since 1.96)
|
|
114978
|
+
*
|
|
114979
|
+
* Action Mode (Two lines for the header).
|
|
114980
|
+
*
|
|
114981
|
+
* Generic Tile renders buttons that are specified under 'actionButtons' aggregation
|
|
114982
|
+
*/
|
|
114983
|
+
ActionMode = "ActionMode",
|
|
114984
|
+
/**
|
|
114985
|
+
* @EXPERIMENTAL (since 1.96)
|
|
114986
|
+
*
|
|
114987
|
+
* Article Mode (Two lines for the header and one line for the subtitle).
|
|
114988
|
+
*
|
|
114989
|
+
* Enables Article Mode.
|
|
114990
|
+
*/
|
|
114991
|
+
ArticleMode = "ArticleMode",
|
|
114557
114992
|
/**
|
|
114558
114993
|
* Default mode (Two lines for the header and one line for the subtitle).
|
|
114559
114994
|
*/
|
|
@@ -114562,6 +114997,15 @@ declare namespace sap {
|
|
|
114562
114997
|
* Header mode (Four lines for the header and one line for the subtitle).
|
|
114563
114998
|
*/
|
|
114564
114999
|
HeaderMode = "HeaderMode",
|
|
115000
|
+
/**
|
|
115001
|
+
* @EXPERIMENTAL (since 1.96)
|
|
115002
|
+
*
|
|
115003
|
+
* Icon mode.
|
|
115004
|
+
*
|
|
115005
|
+
* GenericTile displays a combination of icon and header title. It is applicable only for the OneByOne FrameType
|
|
115006
|
+
* and TwoByHalf FrameType.
|
|
115007
|
+
*/
|
|
115008
|
+
IconMode = "IconMode",
|
|
114565
115009
|
/**
|
|
114566
115010
|
* @SINCE 1.44.0
|
|
114567
115011
|
*
|
|
@@ -115943,7 +116387,7 @@ declare namespace sap {
|
|
|
115943
116387
|
*/
|
|
115944
116388
|
Auto = "Auto",
|
|
115945
116389
|
/**
|
|
115946
|
-
* Explicitly sets the alignment to the
|
|
116390
|
+
* Explicitly sets the alignment to the center
|
|
115947
116391
|
*/
|
|
115948
116392
|
Center = "Center",
|
|
115949
116393
|
/**
|
|
@@ -116388,6 +116832,18 @@ declare namespace sap {
|
|
|
116388
116832
|
|
|
116389
116833
|
"sap/m/OverflowToolbarToggleButton": undefined;
|
|
116390
116834
|
|
|
116835
|
+
"sap/m/p13n/BasePanel": undefined;
|
|
116836
|
+
|
|
116837
|
+
"sap/m/p13n/Container": undefined;
|
|
116838
|
+
|
|
116839
|
+
"sap/m/p13n/GroupPanel": undefined;
|
|
116840
|
+
|
|
116841
|
+
"sap/m/p13n/QueryPanel": undefined;
|
|
116842
|
+
|
|
116843
|
+
"sap/m/p13n/SelectionPanel": undefined;
|
|
116844
|
+
|
|
116845
|
+
"sap/m/p13n/SortPanel": undefined;
|
|
116846
|
+
|
|
116391
116847
|
"sap/m/P13nColumnsItem": undefined;
|
|
116392
116848
|
|
|
116393
116849
|
"sap/m/P13nColumnsPanel": undefined;
|