@openui5/ts-types 1.120.10 → 1.121.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/sap.f.d.ts +124 -45
- package/types/sap.m.d.ts +2023 -300
- package/types/sap.tnt.d.ts +601 -116
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +86 -8
- package/types/sap.ui.core.d.ts +471 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +221 -26
- package/types/sap.ui.mdc.d.ts +1517 -788
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +57 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uxap.d.ts +55 -5
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -649,6 +649,30 @@ declare namespace sap {
|
|
|
649
649
|
*/
|
|
650
650
|
vBannerLine: int | string | sap.m.Text
|
|
651
651
|
): sap.m.Text | null;
|
|
652
|
+
/**
|
|
653
|
+
* Sets a new value for property {@link #getDataTimestamp dataTimestamp}.
|
|
654
|
+
*
|
|
655
|
+
* Defines the timestamp of the oldest data in the card. Use this to show to the end user how fresh the
|
|
656
|
+
* information in the card is.
|
|
657
|
+
*
|
|
658
|
+
* Must be specified in ISO 8601 format.
|
|
659
|
+
*
|
|
660
|
+
* Will be shown as a relative time like "5 minutes ago".
|
|
661
|
+
*
|
|
662
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
663
|
+
*
|
|
664
|
+
* Default value is `empty string`.
|
|
665
|
+
*
|
|
666
|
+
* @experimental (since 1.89) - this feature is experimental and the API may change.
|
|
667
|
+
*
|
|
668
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
669
|
+
*/
|
|
670
|
+
setDataTimestamp(
|
|
671
|
+
/**
|
|
672
|
+
* New value for property `dataTimestamp`
|
|
673
|
+
*/
|
|
674
|
+
sDataTimestamp?: string
|
|
675
|
+
): this;
|
|
652
676
|
/**
|
|
653
677
|
* Sets a new value for property {@link #getStatusVisible statusVisible}.
|
|
654
678
|
*
|
|
@@ -2347,6 +2371,8 @@ declare namespace sap {
|
|
|
2347
2371
|
/**
|
|
2348
2372
|
* Different options for the position of the header in controls that implement the {@link sap.f.ICard} interface.
|
|
2349
2373
|
*
|
|
2374
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'cards.HeaderPosition'.
|
|
2375
|
+
*
|
|
2350
2376
|
* @since 1.65
|
|
2351
2377
|
*/
|
|
2352
2378
|
enum HeaderPosition {
|
|
@@ -2362,6 +2388,8 @@ declare namespace sap {
|
|
|
2362
2388
|
/**
|
|
2363
2389
|
* Different options for the alignment of the side indicators in the numeric header.
|
|
2364
2390
|
*
|
|
2391
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'cards.NumericHeaderSideIndicatorsAlignment'.
|
|
2392
|
+
*
|
|
2365
2393
|
* @since 1.96
|
|
2366
2394
|
*/
|
|
2367
2395
|
enum NumericHeaderSideIndicatorsAlignment {
|
|
@@ -8514,9 +8542,10 @@ declare namespace sap {
|
|
|
8514
8542
|
* displayed at once.
|
|
8515
8543
|
*
|
|
8516
8544
|
* The interactions that may lead to a state change are:
|
|
8517
|
-
* -
|
|
8518
|
-
*
|
|
8519
|
-
*
|
|
8545
|
+
* - The property `layout` was changed indirectly by the user dragging the column separator or clicking
|
|
8546
|
+
* on its arrow (where arrow is available).
|
|
8547
|
+
* - The user resized the browser window beyond a breakpoint, thus changing the maximum number of columns
|
|
8548
|
+
* that can be displayed at once.
|
|
8520
8549
|
*
|
|
8521
8550
|
* **Note: **The event is suppressed while the control has zero width and will be fired the first time
|
|
8522
8551
|
* it gets a non-zero width
|
|
@@ -9744,12 +9773,14 @@ declare namespace sap {
|
|
|
9744
9773
|
maxColumnsCount?: int;
|
|
9745
9774
|
|
|
9746
9775
|
/**
|
|
9747
|
-
* Indicates whether the layout changed as a result of the user clicking a
|
|
9776
|
+
* Indicates whether the layout changed as a result of the user clicking a column separator's arrow or dragging
|
|
9777
|
+
* the column separators
|
|
9748
9778
|
*/
|
|
9749
9779
|
isNavigationArrow?: boolean;
|
|
9750
9780
|
|
|
9751
9781
|
/**
|
|
9752
|
-
* Indicates whether the maximum number of columns that can be displayed at once changed
|
|
9782
|
+
* Indicates whether the maximum number of columns that can be displayed at once changed due to resize of
|
|
9783
|
+
* the entire browser window
|
|
9753
9784
|
*/
|
|
9754
9785
|
isResize?: boolean;
|
|
9755
9786
|
}
|
|
@@ -9857,6 +9888,11 @@ declare namespace sap {
|
|
|
9857
9888
|
* Reference to the button that has been pressed
|
|
9858
9889
|
*/
|
|
9859
9890
|
image?: sap.m.Image;
|
|
9891
|
+
|
|
9892
|
+
/**
|
|
9893
|
+
* Reference to the button that has been pressed
|
|
9894
|
+
*/
|
|
9895
|
+
button?: sap.m.Button;
|
|
9860
9896
|
}
|
|
9861
9897
|
|
|
9862
9898
|
interface ShellBar$HomeIconPressedEventParameters {
|
|
@@ -10059,8 +10095,6 @@ declare namespace sap {
|
|
|
10059
10095
|
* - You want to use it for other visual content than avatars.
|
|
10060
10096
|
*
|
|
10061
10097
|
* @since 1.73
|
|
10062
|
-
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
10063
|
-
* the API might be changed in future.
|
|
10064
10098
|
*/
|
|
10065
10099
|
class AvatarGroup extends sap.ui.core.Control {
|
|
10066
10100
|
/**
|
|
@@ -11295,7 +11329,7 @@ declare namespace sap {
|
|
|
11295
11329
|
*
|
|
11296
11330
|
* @since 1.65
|
|
11297
11331
|
*/
|
|
11298
|
-
getStickySubheaderProvider(): sap.ui.core.ID;
|
|
11332
|
+
getStickySubheaderProvider(): sap.ui.core.ID | null;
|
|
11299
11333
|
/**
|
|
11300
11334
|
* Gets content of aggregation {@link #getTitle title}.
|
|
11301
11335
|
*
|
|
@@ -13074,7 +13108,11 @@ declare namespace sap {
|
|
|
13074
13108
|
* The width of the three columns is variable.
|
|
13075
13109
|
*
|
|
13076
13110
|
* There are several possible layouts that can be changed either with the control's API, or by the user
|
|
13077
|
-
* with the help of
|
|
13111
|
+
* with the help of the draggable column separators. The draggable column separators allow the user to customize
|
|
13112
|
+
* the column widths for the current layout, or to switch to a new layout (if the user drags the column
|
|
13113
|
+
* separator past a breakpoint that delimits two different layouts). After the user customized the column
|
|
13114
|
+
* widths for a given layout, these user preferences are internally saved and automatically re-applied whenever
|
|
13115
|
+
* the user re-visits the same layout.
|
|
13078
13116
|
*
|
|
13079
13117
|
* Internally the control makes use of three instances of {@link sap.m.NavContainer}, thus forming the three
|
|
13080
13118
|
* columns.
|
|
@@ -13604,9 +13642,10 @@ declare namespace sap {
|
|
|
13604
13642
|
* displayed at once.
|
|
13605
13643
|
*
|
|
13606
13644
|
* The interactions that may lead to a state change are:
|
|
13607
|
-
* -
|
|
13608
|
-
*
|
|
13609
|
-
*
|
|
13645
|
+
* - The property `layout` was changed indirectly by the user dragging the column separator or clicking
|
|
13646
|
+
* on its arrow (where arrow is available).
|
|
13647
|
+
* - The user resized the browser window beyond a breakpoint, thus changing the maximum number of columns
|
|
13648
|
+
* that can be displayed at once.
|
|
13610
13649
|
*
|
|
13611
13650
|
* **Note: **The event is suppressed while the control has zero width and will be fired the first time
|
|
13612
13651
|
* it gets a non-zero width
|
|
@@ -13639,9 +13678,10 @@ declare namespace sap {
|
|
|
13639
13678
|
* displayed at once.
|
|
13640
13679
|
*
|
|
13641
13680
|
* The interactions that may lead to a state change are:
|
|
13642
|
-
* -
|
|
13643
|
-
*
|
|
13644
|
-
*
|
|
13681
|
+
* - The property `layout` was changed indirectly by the user dragging the column separator or clicking
|
|
13682
|
+
* on its arrow (where arrow is available).
|
|
13683
|
+
* - The user resized the browser window beyond a breakpoint, thus changing the maximum number of columns
|
|
13684
|
+
* that can be displayed at once.
|
|
13645
13685
|
*
|
|
13646
13686
|
* **Note: **The event is suppressed while the control has zero width and will be fired the first time
|
|
13647
13687
|
* it gets a non-zero width
|
|
@@ -14225,17 +14265,17 @@ declare namespace sap {
|
|
|
14225
14265
|
* ID of the element which is the current target of the association {@link #getInitialBeginColumnPage initialBeginColumnPage},
|
|
14226
14266
|
* or `null`.
|
|
14227
14267
|
*/
|
|
14228
|
-
getInitialBeginColumnPage(): sap.ui.core.ID;
|
|
14268
|
+
getInitialBeginColumnPage(): sap.ui.core.ID | null;
|
|
14229
14269
|
/**
|
|
14230
14270
|
* ID of the element which is the current target of the association {@link #getInitialEndColumnPage initialEndColumnPage},
|
|
14231
14271
|
* or `null`.
|
|
14232
14272
|
*/
|
|
14233
|
-
getInitialEndColumnPage(): sap.ui.core.ID;
|
|
14273
|
+
getInitialEndColumnPage(): sap.ui.core.ID | null;
|
|
14234
14274
|
/**
|
|
14235
14275
|
* ID of the element which is the current target of the association {@link #getInitialMidColumnPage initialMidColumnPage},
|
|
14236
14276
|
* or `null`.
|
|
14237
14277
|
*/
|
|
14238
|
-
getInitialMidColumnPage(): sap.ui.core.ID;
|
|
14278
|
+
getInitialMidColumnPage(): sap.ui.core.ID | null;
|
|
14239
14279
|
/**
|
|
14240
14280
|
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
14241
14281
|
*
|
|
@@ -16204,7 +16244,7 @@ declare namespace sap {
|
|
|
16204
16244
|
/**
|
|
16205
16245
|
* The item to remove or its index or ID.
|
|
16206
16246
|
*/
|
|
16207
|
-
vItem: int |
|
|
16247
|
+
vItem: int | sap.ui.core.ID | sap.ui.core.Control
|
|
16208
16248
|
): sap.ui.core.Control | null;
|
|
16209
16249
|
/**
|
|
16210
16250
|
* Sets a new value for property {@link #getAllowDenseFill allowDenseFill}.
|
|
@@ -17643,7 +17683,7 @@ declare namespace sap {
|
|
|
17643
17683
|
* ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
|
|
17644
17684
|
* or `null`.
|
|
17645
17685
|
*/
|
|
17646
|
-
getSelectedItem(): sap.ui.core.ID;
|
|
17686
|
+
getSelectedItem(): sap.ui.core.ID | null;
|
|
17647
17687
|
/**
|
|
17648
17688
|
* Checks for the provided `sap.f.ProductSwitchItem` in the aggregation {@link #getItems items}. and returns
|
|
17649
17689
|
* its index if found or -1 otherwise.
|
|
@@ -17708,7 +17748,7 @@ declare namespace sap {
|
|
|
17708
17748
|
* the item with this ID becomes the `selectedItem` association. Alternatively, a `sap.f.ProductSwitchItem`
|
|
17709
17749
|
* instance may be given or `null` to clear the selection.
|
|
17710
17750
|
*/
|
|
17711
|
-
vItem:
|
|
17751
|
+
vItem: sap.ui.core.ID | sap.f.ProductSwitchItem | null
|
|
17712
17752
|
): this;
|
|
17713
17753
|
}
|
|
17714
17754
|
/**
|
|
@@ -19568,6 +19608,25 @@ declare namespace sap {
|
|
|
19568
19608
|
*/
|
|
19569
19609
|
oMenu: sap.m.Menu
|
|
19570
19610
|
): this;
|
|
19611
|
+
/**
|
|
19612
|
+
* Sets a new value for property {@link #getNotificationsNumber notificationsNumber}.
|
|
19613
|
+
*
|
|
19614
|
+
* Defines the displayed number of upcoming notifications.
|
|
19615
|
+
*
|
|
19616
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
19617
|
+
*
|
|
19618
|
+
* Default value is `empty string`.
|
|
19619
|
+
*
|
|
19620
|
+
* @since 1.64
|
|
19621
|
+
*
|
|
19622
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
19623
|
+
*/
|
|
19624
|
+
setNotificationsNumber(
|
|
19625
|
+
/**
|
|
19626
|
+
* New value for property `notificationsNumber`
|
|
19627
|
+
*/
|
|
19628
|
+
sNotificationsNumber?: string
|
|
19629
|
+
): this;
|
|
19571
19630
|
/**
|
|
19572
19631
|
* Sets the aggregated {@link #getProfile profile}.
|
|
19573
19632
|
*
|
|
@@ -20056,7 +20115,7 @@ declare namespace sap {
|
|
|
20056
20115
|
* ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
|
|
20057
20116
|
* or `null`.
|
|
20058
20117
|
*/
|
|
20059
|
-
getSelectedItem(): sap.ui.core.ID;
|
|
20118
|
+
getSelectedItem(): sap.ui.core.ID | null;
|
|
20060
20119
|
/**
|
|
20061
20120
|
* Gets current value of property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
|
|
20062
20121
|
*
|
|
@@ -20591,6 +20650,8 @@ declare namespace sap {
|
|
|
20591
20650
|
/**
|
|
20592
20651
|
* Group modes for the {@link sap.f.AvatarGroup} control.
|
|
20593
20652
|
*
|
|
20653
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'AvatarGroupType'.
|
|
20654
|
+
*
|
|
20594
20655
|
* @since 1.73
|
|
20595
20656
|
* @experimental (since 1.73)
|
|
20596
20657
|
*/
|
|
@@ -20608,6 +20669,8 @@ declare namespace sap {
|
|
|
20608
20669
|
/**
|
|
20609
20670
|
* Defines the areas within the `sap.f.DynamicPageTitle` control.
|
|
20610
20671
|
*
|
|
20672
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'DynamicPageTitleArea'.
|
|
20673
|
+
*
|
|
20611
20674
|
* @since 1.50
|
|
20612
20675
|
* @deprecated (since 1.54) - Consumers of the {@link sap.f.DynamicPageTitle} control should now use the
|
|
20613
20676
|
* `areaShrinkRatio` property instead of the `primaryArea` property.
|
|
@@ -20627,19 +20690,25 @@ declare namespace sap {
|
|
|
20627
20690
|
* Layouts, representing the number of columns to be displayed and their relative widths for a {@link sap.f.FlexibleColumnLayout }
|
|
20628
20691
|
* control.
|
|
20629
20692
|
*
|
|
20630
|
-
* Each layout has a predefined ratio for the three columns, depending on device size. Based on
|
|
20631
|
-
* and layout, some columns are hidden. For more information, refer to the ratios (in %) for
|
|
20632
|
-
* listed below: (dash "-" means non-accessible columns).
|
|
20693
|
+
* Each layout has a default predefined ratio for the three columns, depending on device size. Based on
|
|
20694
|
+
* the device and layout, some columns are hidden. For more information, refer to the ratios (in %) for
|
|
20695
|
+
* each value, listed below: (dash "-" means non-accessible columns).
|
|
20633
20696
|
*
|
|
20634
|
-
* **
|
|
20635
|
-
*
|
|
20636
|
-
*
|
|
20637
|
-
*
|
|
20638
|
-
*
|
|
20697
|
+
* **Notes:**
|
|
20698
|
+
* - The user is allowed to customize the default ratio by dragging the column separators to resize the
|
|
20699
|
+
* columns. The user preferences are then internally saved (in browser localStorage) and automatically re-applied
|
|
20700
|
+
* whenever the user re-visits the same layout.
|
|
20701
|
+
* - Please note that on a phone device, due to the limited screen size, only one column can be displayed
|
|
20702
|
+
* at a time. For all two-column layouts, this column is the `Mid` column, and for all three-column layouts
|
|
20703
|
+
* - the `End` column, even though the respective column may be hidden on desktop and tablet for that particular
|
|
20704
|
+
* layout. Therefore some of the names (such as `ThreeColumnsMidExpandedEndHidden` for example) are representative
|
|
20705
|
+
* of the desktop scenario only.
|
|
20639
20706
|
*
|
|
20640
20707
|
* For more information, see {@link https://ui5.sap.com/#/topic/3b9f760da5b64adf8db7f95247879086 Types of Layout }
|
|
20641
20708
|
* in the documentation.
|
|
20642
20709
|
*
|
|
20710
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'LayoutType'.
|
|
20711
|
+
*
|
|
20643
20712
|
* @since 1.46
|
|
20644
20713
|
*/
|
|
20645
20714
|
enum LayoutType {
|
|
@@ -20674,20 +20743,23 @@ declare namespace sap {
|
|
|
20674
20743
|
*/
|
|
20675
20744
|
OneColumn = "OneColumn",
|
|
20676
20745
|
/**
|
|
20677
|
-
* Desktop: 67/33/0 Begin (expanded) and Mid columns are displayed, End is accessible by
|
|
20746
|
+
* Desktop: default ratio is 67/33/0 Begin (expanded) and Mid columns are displayed, End is accessible by
|
|
20747
|
+
* dragging the column separators
|
|
20678
20748
|
*
|
|
20679
|
-
* Tablet: 67/33/0 Begin (expanded) and Mid columns are displayed, End is accessible by
|
|
20749
|
+
* Tablet: default ratio is 67/33/0 Begin (expanded) and Mid columns are displayed, End is accessible by
|
|
20750
|
+
* dragging the column separators
|
|
20680
20751
|
*
|
|
20681
20752
|
* Phone: -/-/100 only the End column is displayed
|
|
20682
20753
|
*
|
|
20683
20754
|
* Use to display the master and detail pages when the user should focus on the master. The detail-detail
|
|
20684
|
-
* is still loaded and easily accessible
|
|
20755
|
+
* is still loaded and easily accessible by dragging the column separators.
|
|
20685
20756
|
*/
|
|
20686
20757
|
ThreeColumnsBeginExpandedEndHidden = "ThreeColumnsBeginExpandedEndHidden",
|
|
20687
20758
|
/**
|
|
20688
|
-
* Desktop: 25/25/50 Begin, Mid and End (expanded) columns are displayed
|
|
20759
|
+
* Desktop: default ratio is 25/25/50 Begin, Mid and End (expanded) columns are displayed
|
|
20689
20760
|
*
|
|
20690
|
-
* Tablet: 0/33/67 Mid and End (expanded) columns are displayed, Begin is accessible by
|
|
20761
|
+
* Tablet: default ratio is 0/33/67 Mid and End (expanded) columns are displayed, Begin is accessible by
|
|
20762
|
+
* dragging the column separator to expand the column
|
|
20691
20763
|
*
|
|
20692
20764
|
* Phone: -/-/100 (only the End column is displayed)
|
|
20693
20765
|
*
|
|
@@ -20695,9 +20767,10 @@ declare namespace sap {
|
|
|
20695
20767
|
*/
|
|
20696
20768
|
ThreeColumnsEndExpanded = "ThreeColumnsEndExpanded",
|
|
20697
20769
|
/**
|
|
20698
|
-
* Desktop: 25/50/25 Begin, Mid (expanded) and End columns are displayed
|
|
20770
|
+
* Desktop: default ratio is 25/50/25 Begin, Mid (expanded) and End columns are displayed
|
|
20699
20771
|
*
|
|
20700
|
-
* Tablet: 0/67/33 Mid (expanded) and End columns are displayed, Begin is accessible by
|
|
20772
|
+
* Tablet: default ratio is 0/67/33 Mid (expanded) and End columns are displayed, Begin is accessible by
|
|
20773
|
+
* dragging its adjacent column separator to expand the column.
|
|
20701
20774
|
*
|
|
20702
20775
|
* Phone: -/-/100 only the End column is displayed
|
|
20703
20776
|
*
|
|
@@ -20705,20 +20778,22 @@ declare namespace sap {
|
|
|
20705
20778
|
*/
|
|
20706
20779
|
ThreeColumnsMidExpanded = "ThreeColumnsMidExpanded",
|
|
20707
20780
|
/**
|
|
20708
|
-
* Desktop: 33/67/0 Begin and Mid (expanded) columns are displayed, End is accessible by
|
|
20781
|
+
* Desktop: default ratio is 33/67/0 Begin and Mid (expanded) columns are displayed, End is accessible by
|
|
20782
|
+
* dragging the column-separator to expand the column.
|
|
20709
20783
|
*
|
|
20710
|
-
* Tablet: 33/67/0 Begin and Mid (expanded) columns are displayed, End is accessible by
|
|
20784
|
+
* Tablet: default ratio is 33/67/0 Begin and Mid (expanded) columns are displayed, End is accessible by
|
|
20785
|
+
* dragging the column-separator to expand the column.
|
|
20711
20786
|
*
|
|
20712
20787
|
* Phone: -/-/100 only the End column is displayed
|
|
20713
20788
|
*
|
|
20714
20789
|
* Use to display the master and detail pages when the user should focus on the detail. The detail-detail
|
|
20715
|
-
* is still loaded and easily accessible
|
|
20790
|
+
* is still loaded and easily accessible upon dragging the column-separator to expand the column.
|
|
20716
20791
|
*/
|
|
20717
20792
|
ThreeColumnsMidExpandedEndHidden = "ThreeColumnsMidExpandedEndHidden",
|
|
20718
20793
|
/**
|
|
20719
|
-
* Desktop: 67/33/- Begin (expanded) and Mid columns are displayed
|
|
20794
|
+
* Desktop: default ratio is 67/33/- Begin (expanded) and Mid columns are displayed
|
|
20720
20795
|
*
|
|
20721
|
-
* Tablet: 67/33/- Begin (expanded) and Mid columns are displayed
|
|
20796
|
+
* Tablet: default ratio is 67/33/- Begin (expanded) and Mid columns are displayed
|
|
20722
20797
|
*
|
|
20723
20798
|
* Phone: -/100/- only the Mid column is displayed
|
|
20724
20799
|
*
|
|
@@ -20726,9 +20801,9 @@ declare namespace sap {
|
|
|
20726
20801
|
*/
|
|
20727
20802
|
TwoColumnsBeginExpanded = "TwoColumnsBeginExpanded",
|
|
20728
20803
|
/**
|
|
20729
|
-
* Desktop: 33/67/- Begin and Mid (expanded) columns are displayed
|
|
20804
|
+
* Desktop: default ratio is 33/67/- Begin and Mid (expanded) columns are displayed
|
|
20730
20805
|
*
|
|
20731
|
-
* Tablet: 33/67/- Begin and Mid (expanded) columns are displayed
|
|
20806
|
+
* Tablet: default ratio is 33/67/- Begin and Mid (expanded) columns are displayed
|
|
20732
20807
|
*
|
|
20733
20808
|
* Phone: -/100/- only the Mid column is displayed
|
|
20734
20809
|
*
|
|
@@ -20739,6 +20814,8 @@ declare namespace sap {
|
|
|
20739
20814
|
/**
|
|
20740
20815
|
* Enumeration for different navigation directions.
|
|
20741
20816
|
*
|
|
20817
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'NavigationDirection'.
|
|
20818
|
+
*
|
|
20742
20819
|
* @since 1.85
|
|
20743
20820
|
*/
|
|
20744
20821
|
enum NavigationDirection {
|
|
@@ -20762,6 +20839,8 @@ declare namespace sap {
|
|
|
20762
20839
|
/**
|
|
20763
20840
|
* Enumeration for different SidePanel position.
|
|
20764
20841
|
*
|
|
20842
|
+
* This enum is part of the 'sap/f/library' module export and must be accessed by the property 'SidePanelPosition'.
|
|
20843
|
+
*
|
|
20765
20844
|
* @since 1.104
|
|
20766
20845
|
*/
|
|
20767
20846
|
enum SidePanelPosition {
|