@sapui5/ts-types 1.141.2 → 1.142.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/index.d.ts +8 -7
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.base.d.ts +3 -0
- package/types/sap.esh.search.ui.d.ts +152 -3
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +50 -32
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +2646 -125
- package/types/sap.fe.navigation.d.ts +2 -2
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +23 -11
- package/types/sap.fe.test.d.ts +8 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +4 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.141.0-d.ts → sap.m.d.ts} +401 -54
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +106 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +13 -3587
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +30 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/{tnt-1.141.0-d.ts → sap.tnt.d.ts} +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.141.0-d.ts → sap.ui.commons.d.ts} +1 -1
- package/types/sap.ui.comp.d.ts +78 -9
- package/types/{core-1.141.0-d.ts → sap.ui.core.d.ts} +712 -187
- package/types/{dt-1.141.0-d.ts → sap.ui.dt.d.ts} +1 -1
- package/types/sap.ui.export.d.ts +56 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +100 -94
- package/types/{mdc-1.141.0-d.ts → sap.ui.mdc.d.ts} +1600 -260
- package/types/sap.ui.richtexteditor.d.ts +1 -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 +1 -1
- package/types/sap.ui.table.d.ts +13 -41
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +34 -78
- package/types/{ux3-1.141.0-d.ts → sap.ui.ux3.d.ts} +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +13 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +326 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.142.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/m/p13n/Engine" {
|
|
4
4
|
/**
|
|
@@ -3288,6 +3288,15 @@ declare namespace sap {
|
|
|
3288
3288
|
*/
|
|
3289
3289
|
itemRenamed?: (oEvent: UploadSetwithTable$ItemRenamedEvent) => void;
|
|
3290
3290
|
|
|
3291
|
+
/**
|
|
3292
|
+
* The event is triggered when the file renaming process is canceled.
|
|
3293
|
+
*
|
|
3294
|
+
* @since 1.142
|
|
3295
|
+
*/
|
|
3296
|
+
itemRenameCanceled?: (
|
|
3297
|
+
oEvent: UploadSetwithTable$ItemRenameCanceledEvent
|
|
3298
|
+
) => void;
|
|
3299
|
+
|
|
3291
3300
|
/**
|
|
3292
3301
|
* This event is fired right before the upload process begins.
|
|
3293
3302
|
*/
|
|
@@ -3507,6 +3516,16 @@ declare namespace sap {
|
|
|
3507
3516
|
item?: sap.m.upload.UploadItem;
|
|
3508
3517
|
}
|
|
3509
3518
|
|
|
3519
|
+
/**
|
|
3520
|
+
* Parameters of the UploadSetwithTable#itemRenameCanceled event.
|
|
3521
|
+
*/
|
|
3522
|
+
interface UploadSetwithTable$ItemRenameCanceledEventParameters {
|
|
3523
|
+
/**
|
|
3524
|
+
* The renamed UI element is of UploadItem type.
|
|
3525
|
+
*/
|
|
3526
|
+
item?: sap.m.upload.UploadItem;
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3510
3529
|
/**
|
|
3511
3530
|
* Parameters of the UploadSetwithTable#itemRenamed event.
|
|
3512
3531
|
*/
|
|
@@ -5937,6 +5956,57 @@ declare namespace sap {
|
|
|
5937
5956
|
*/
|
|
5938
5957
|
oListener?: object
|
|
5939
5958
|
): this;
|
|
5959
|
+
/**
|
|
5960
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemRenameCanceled itemRenameCanceled} event
|
|
5961
|
+
* of this `sap.m.plugins.UploadSetwithTable`.
|
|
5962
|
+
*
|
|
5963
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5964
|
+
* otherwise it will be bound to this `sap.m.plugins.UploadSetwithTable` itself.
|
|
5965
|
+
*
|
|
5966
|
+
* The event is triggered when the file renaming process is canceled.
|
|
5967
|
+
*
|
|
5968
|
+
* @since 1.142
|
|
5969
|
+
*
|
|
5970
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5971
|
+
*/
|
|
5972
|
+
attachItemRenameCanceled(
|
|
5973
|
+
/**
|
|
5974
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
5975
|
+
* object when firing the event
|
|
5976
|
+
*/
|
|
5977
|
+
oData: object,
|
|
5978
|
+
/**
|
|
5979
|
+
* The function to be called when the event occurs
|
|
5980
|
+
*/
|
|
5981
|
+
fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
|
|
5982
|
+
/**
|
|
5983
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.UploadSetwithTable` itself
|
|
5984
|
+
*/
|
|
5985
|
+
oListener?: object
|
|
5986
|
+
): this;
|
|
5987
|
+
/**
|
|
5988
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemRenameCanceled itemRenameCanceled} event
|
|
5989
|
+
* of this `sap.m.plugins.UploadSetwithTable`.
|
|
5990
|
+
*
|
|
5991
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5992
|
+
* otherwise it will be bound to this `sap.m.plugins.UploadSetwithTable` itself.
|
|
5993
|
+
*
|
|
5994
|
+
* The event is triggered when the file renaming process is canceled.
|
|
5995
|
+
*
|
|
5996
|
+
* @since 1.142
|
|
5997
|
+
*
|
|
5998
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5999
|
+
*/
|
|
6000
|
+
attachItemRenameCanceled(
|
|
6001
|
+
/**
|
|
6002
|
+
* The function to be called when the event occurs
|
|
6003
|
+
*/
|
|
6004
|
+
fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
|
|
6005
|
+
/**
|
|
6006
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.UploadSetwithTable` itself
|
|
6007
|
+
*/
|
|
6008
|
+
oListener?: object
|
|
6009
|
+
): this;
|
|
5940
6010
|
/**
|
|
5941
6011
|
* Attaches event handler `fnFunction` to the {@link #event:itemRenamed itemRenamed} event of this `sap.m.plugins.UploadSetwithTable`.
|
|
5942
6012
|
*
|
|
@@ -6315,6 +6385,26 @@ declare namespace sap {
|
|
|
6315
6385
|
*/
|
|
6316
6386
|
oListener?: object
|
|
6317
6387
|
): this;
|
|
6388
|
+
/**
|
|
6389
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemRenameCanceled itemRenameCanceled} event
|
|
6390
|
+
* of this `sap.m.plugins.UploadSetwithTable`.
|
|
6391
|
+
*
|
|
6392
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
6393
|
+
*
|
|
6394
|
+
* @since 1.142
|
|
6395
|
+
*
|
|
6396
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6397
|
+
*/
|
|
6398
|
+
detachItemRenameCanceled(
|
|
6399
|
+
/**
|
|
6400
|
+
* The function to be called, when the event occurs
|
|
6401
|
+
*/
|
|
6402
|
+
fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
|
|
6403
|
+
/**
|
|
6404
|
+
* Context object on which the given function had to be called
|
|
6405
|
+
*/
|
|
6406
|
+
oListener?: object
|
|
6407
|
+
): this;
|
|
6318
6408
|
/**
|
|
6319
6409
|
* Detaches event handler `fnFunction` from the {@link #event:itemRenamed itemRenamed} event of this `sap.m.plugins.UploadSetwithTable`.
|
|
6320
6410
|
*
|
|
@@ -6493,6 +6583,20 @@ declare namespace sap {
|
|
|
6493
6583
|
*/
|
|
6494
6584
|
mParameters?: sap.m.plugins.UploadSetwithTable$FileTypeMismatchEventParameters
|
|
6495
6585
|
): this;
|
|
6586
|
+
/**
|
|
6587
|
+
* Fires event {@link #event:itemRenameCanceled itemRenameCanceled} to attached listeners.
|
|
6588
|
+
*
|
|
6589
|
+
* @since 1.142
|
|
6590
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6591
|
+
*
|
|
6592
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6593
|
+
*/
|
|
6594
|
+
fireItemRenameCanceled(
|
|
6595
|
+
/**
|
|
6596
|
+
* Parameters to pass along with the event
|
|
6597
|
+
*/
|
|
6598
|
+
mParameters?: sap.m.plugins.UploadSetwithTable$ItemRenameCanceledEventParameters
|
|
6599
|
+
): this;
|
|
6496
6600
|
/**
|
|
6497
6601
|
* Fires event {@link #event:itemRenamed itemRenamed} to attached listeners.
|
|
6498
6602
|
*
|
|
@@ -7381,6 +7485,14 @@ declare namespace sap {
|
|
|
7381
7485
|
UploadSetwithTable
|
|
7382
7486
|
>;
|
|
7383
7487
|
|
|
7488
|
+
/**
|
|
7489
|
+
* Event object of the UploadSetwithTable#itemRenameCanceled event.
|
|
7490
|
+
*/
|
|
7491
|
+
type UploadSetwithTable$ItemRenameCanceledEvent = sap.ui.base.Event<
|
|
7492
|
+
UploadSetwithTable$ItemRenameCanceledEventParameters,
|
|
7493
|
+
UploadSetwithTable
|
|
7494
|
+
>;
|
|
7495
|
+
|
|
7384
7496
|
/**
|
|
7385
7497
|
* Event object of the UploadSetwithTable#itemRenamed event.
|
|
7386
7498
|
*/
|
|
@@ -29301,11 +29413,11 @@ declare namespace sap {
|
|
|
29301
29413
|
rightButton?: sap.m.Button | string;
|
|
29302
29414
|
|
|
29303
29415
|
/**
|
|
29304
|
-
* In the Dialog focus is set
|
|
29305
|
-
* control needs to
|
|
29306
|
-
* `initialFocus`
|
|
29307
|
-
*
|
|
29308
|
-
* must be triggered by
|
|
29416
|
+
* In the Dialog, focus is initially set on the first focusable element, or on the dialog itself if no such
|
|
29417
|
+
* element is available. If another control needs to receive focus, set the `initialFocus` to the control
|
|
29418
|
+
* that should be focused. Setting `initialFocus` on input controls does not open the on-screen keyboard
|
|
29419
|
+
* on mobile devices. Due to browser restrictions, the on-screen keyboard can't be opened with JavaScript
|
|
29420
|
+
* code; it must be triggered explicitly by the user.
|
|
29309
29421
|
*
|
|
29310
29422
|
* @since 1.15.0
|
|
29311
29423
|
*/
|
|
@@ -38041,9 +38153,8 @@ declare namespace sap {
|
|
|
38041
38153
|
|
|
38042
38154
|
/**
|
|
38043
38155
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
38044
|
-
* Optionally, this property can also be set to a data URI path or a blob URL
|
|
38045
|
-
*
|
|
38046
|
-
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
38156
|
+
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
38157
|
+
* URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
38047
38158
|
*/
|
|
38048
38159
|
source?:
|
|
38049
38160
|
| sap.ui.core.URI
|
|
@@ -38380,7 +38491,7 @@ declare namespace sap {
|
|
|
38380
38491
|
* of the content.
|
|
38381
38492
|
*
|
|
38382
38493
|
* **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
|
|
38383
|
-
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge
|
|
38494
|
+
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
|
|
38384
38495
|
*
|
|
38385
38496
|
* There are also some known issues with respect to the scrolling behavior and focus handling. A few are
|
|
38386
38497
|
* given below:
|
|
@@ -40634,7 +40745,8 @@ declare namespace sap {
|
|
|
40634
40745
|
interface $SegmentedButtonSettings extends sap.ui.core.$ControlSettings {
|
|
40635
40746
|
/**
|
|
40636
40747
|
* Defines the width of the SegmentedButton control. If not set, it uses the minimum required width to make
|
|
40637
|
-
* all buttons inside of the same size (based on the biggest button).
|
|
40748
|
+
* all buttons inside of the same size (based on the biggest button). **Note:** This property functions
|
|
40749
|
+
* only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
|
|
40638
40750
|
*/
|
|
40639
40751
|
width?:
|
|
40640
40752
|
| sap.ui.core.CSSSize
|
|
@@ -40658,6 +40770,18 @@ declare namespace sap {
|
|
|
40658
40770
|
*/
|
|
40659
40771
|
selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
40660
40772
|
|
|
40773
|
+
/**
|
|
40774
|
+
* Defines how the content of the SegmentedButton is sized. Possible values:
|
|
40775
|
+
* - **ContentFit**: Each button is sized according to its content.
|
|
40776
|
+
* - **EqualSized**: All buttons have equal width, regardless of their content.
|
|
40777
|
+
*
|
|
40778
|
+
* @since 1.42.0
|
|
40779
|
+
*/
|
|
40780
|
+
contentMode?:
|
|
40781
|
+
| sap.m.SegmentedButtonContentMode
|
|
40782
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40783
|
+
| `{${string}}`;
|
|
40784
|
+
|
|
40661
40785
|
/**
|
|
40662
40786
|
* The buttons of the SegmentedButton control. The items set in this aggregation are used as an interface
|
|
40663
40787
|
* for the buttons displayed by the control. Only the properties ID, icon, text, enabled and textDirections
|
|
@@ -40748,7 +40872,8 @@ declare namespace sap {
|
|
|
40748
40872
|
| `{${string}}`;
|
|
40749
40873
|
|
|
40750
40874
|
/**
|
|
40751
|
-
* Sets the width of the buttons.
|
|
40875
|
+
* Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
|
|
40876
|
+
* is set to EqualSized.
|
|
40752
40877
|
*/
|
|
40753
40878
|
width?:
|
|
40754
40879
|
| sap.ui.core.CSSSize
|
|
@@ -41698,11 +41823,6 @@ declare namespace sap {
|
|
|
41698
41823
|
* Determines which part of the control will remain fixed at the top of the page during vertical scrolling
|
|
41699
41824
|
* as long as the control is in the viewport.
|
|
41700
41825
|
*
|
|
41701
|
-
* **Note:** Limited browser support. Browsers which do not support this feature:
|
|
41702
|
-
* - Microsoft Internet Explorer
|
|
41703
|
-
* - Microsoft Edge lower than version 41 (EdgeHTML 16)
|
|
41704
|
-
* - Mozilla Firefox lower than version 59
|
|
41705
|
-
*
|
|
41706
41826
|
* @since 1.62
|
|
41707
41827
|
*/
|
|
41708
41828
|
stickyMode?:
|
|
@@ -44679,6 +44799,47 @@ declare namespace sap {
|
|
|
44679
44799
|
*/
|
|
44680
44800
|
renderMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
44681
44801
|
|
|
44802
|
+
/**
|
|
44803
|
+
* The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
|
|
44804
|
+
* the server via submit).
|
|
44805
|
+
*
|
|
44806
|
+
* @since 1.142.0
|
|
44807
|
+
*/
|
|
44808
|
+
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
44809
|
+
|
|
44810
|
+
/**
|
|
44811
|
+
* Determines whether the `Tokenizer` is in display only state.
|
|
44812
|
+
*
|
|
44813
|
+
* When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
|
|
44814
|
+
*
|
|
44815
|
+
* @since 1.142.0
|
|
44816
|
+
*/
|
|
44817
|
+
displayOnly?:
|
|
44818
|
+
| boolean
|
|
44819
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
44820
|
+
| `{${string}}`;
|
|
44821
|
+
|
|
44822
|
+
/**
|
|
44823
|
+
* Defines whether tokens are displayed on multiple lines.
|
|
44824
|
+
*
|
|
44825
|
+
* @experimental As of version 1.142.
|
|
44826
|
+
*/
|
|
44827
|
+
multiLine?:
|
|
44828
|
+
| boolean
|
|
44829
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
44830
|
+
| `{${string}}`;
|
|
44831
|
+
|
|
44832
|
+
/**
|
|
44833
|
+
* Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
|
|
44834
|
+
* will have no effect.
|
|
44835
|
+
*
|
|
44836
|
+
* @experimental As of version 1.142.
|
|
44837
|
+
*/
|
|
44838
|
+
showClearAll?:
|
|
44839
|
+
| boolean
|
|
44840
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
44841
|
+
| `{${string}}`;
|
|
44842
|
+
|
|
44682
44843
|
/**
|
|
44683
44844
|
* the currently displayed tokens
|
|
44684
44845
|
*/
|
|
@@ -47083,7 +47244,7 @@ declare namespace sap {
|
|
|
47083
47244
|
/**
|
|
47084
47245
|
* The list item action that fired the event
|
|
47085
47246
|
*/
|
|
47086
|
-
|
|
47247
|
+
action?: sap.m.ListItemAction;
|
|
47087
47248
|
|
|
47088
47249
|
/**
|
|
47089
47250
|
* The list item in which the action was performed
|
|
@@ -51525,7 +51686,7 @@ declare namespace sap {
|
|
|
51525
51686
|
/**
|
|
51526
51687
|
* callback function to be called when the user closes the dialog
|
|
51527
51688
|
*/
|
|
51528
|
-
onClose?:
|
|
51689
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
51529
51690
|
/**
|
|
51530
51691
|
* Title to be displayed in the alert dialog
|
|
51531
51692
|
*/
|
|
@@ -51654,7 +51815,7 @@ declare namespace sap {
|
|
|
51654
51815
|
/**
|
|
51655
51816
|
* Callback to be called when the user closes the dialog
|
|
51656
51817
|
*/
|
|
51657
|
-
onClose?:
|
|
51818
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
51658
51819
|
/**
|
|
51659
51820
|
* Title to display in the confirmation dialog
|
|
51660
51821
|
*/
|
|
@@ -51780,7 +51941,7 @@ declare namespace sap {
|
|
|
51780
51941
|
/**
|
|
51781
51942
|
* Callback when the user closes the dialog
|
|
51782
51943
|
*/
|
|
51783
|
-
onClose?:
|
|
51944
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
51784
51945
|
/**
|
|
51785
51946
|
* Title of the error dialog
|
|
51786
51947
|
*/
|
|
@@ -51903,7 +52064,7 @@ declare namespace sap {
|
|
|
51903
52064
|
/**
|
|
51904
52065
|
* Callback when the user closes the dialog
|
|
51905
52066
|
*/
|
|
51906
|
-
onClose?:
|
|
52067
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
51907
52068
|
/**
|
|
51908
52069
|
* Title of the information dialog
|
|
51909
52070
|
*/
|
|
@@ -52054,7 +52215,7 @@ declare namespace sap {
|
|
|
52054
52215
|
/**
|
|
52055
52216
|
* Function to be called when the user taps a button or closes the message box.
|
|
52056
52217
|
*/
|
|
52057
|
-
onClose?:
|
|
52218
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
52058
52219
|
/**
|
|
52059
52220
|
* ID to be used for the dialog. Intended for test scenarios, not recommended for productive apps
|
|
52060
52221
|
*/
|
|
@@ -52158,7 +52319,7 @@ declare namespace sap {
|
|
|
52158
52319
|
/**
|
|
52159
52320
|
* Callback when the user closes the dialog
|
|
52160
52321
|
*/
|
|
52161
|
-
onClose?:
|
|
52322
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
52162
52323
|
/**
|
|
52163
52324
|
* Title of the success dialog
|
|
52164
52325
|
*/
|
|
@@ -52281,7 +52442,7 @@ declare namespace sap {
|
|
|
52281
52442
|
/**
|
|
52282
52443
|
* Callback when the user closes the dialog
|
|
52283
52444
|
*/
|
|
52284
|
-
onClose?:
|
|
52445
|
+
onClose?: (p1: sap.m.MessageBox.Action | string | null) => void;
|
|
52285
52446
|
/**
|
|
52286
52447
|
* Title of the warning dialog
|
|
52287
52448
|
*/
|
|
@@ -54889,6 +55050,15 @@ declare namespace sap {
|
|
|
54889
55050
|
*/
|
|
54890
55051
|
mParameters?: object
|
|
54891
55052
|
): this;
|
|
55053
|
+
/**
|
|
55054
|
+
* See:
|
|
55055
|
+
* sap.ui.core.Control#getAccessibilityInfo
|
|
55056
|
+
*
|
|
55057
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
55058
|
+
*
|
|
55059
|
+
* @returns Current accessibility state of the Avatar
|
|
55060
|
+
*/
|
|
55061
|
+
getAccessibilityInfo(): object;
|
|
54892
55062
|
/**
|
|
54893
55063
|
* Gets current value of property {@link #getActive active}.
|
|
54894
55064
|
*
|
|
@@ -116520,9 +116690,8 @@ declare namespace sap {
|
|
|
116520
116690
|
* Gets current value of property {@link #getSource source}.
|
|
116521
116691
|
*
|
|
116522
116692
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
116523
|
-
* Optionally, this property can also be set to a data URI path or a blob URL
|
|
116524
|
-
*
|
|
116525
|
-
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
116693
|
+
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
116694
|
+
* URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
116526
116695
|
*
|
|
116527
116696
|
*
|
|
116528
116697
|
* @returns Value of property `source`
|
|
@@ -116770,9 +116939,8 @@ declare namespace sap {
|
|
|
116770
116939
|
* Sets a new value for property {@link #getSource source}.
|
|
116771
116940
|
*
|
|
116772
116941
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
116773
|
-
* Optionally, this property can also be set to a data URI path or a blob URL
|
|
116774
|
-
*
|
|
116775
|
-
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
116942
|
+
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
116943
|
+
* URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
116776
116944
|
*
|
|
116777
116945
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
116778
116946
|
*
|
|
@@ -118008,7 +118176,7 @@ declare namespace sap {
|
|
|
118008
118176
|
* of the content.
|
|
118009
118177
|
*
|
|
118010
118178
|
* **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
|
|
118011
|
-
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge
|
|
118179
|
+
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
|
|
118012
118180
|
*
|
|
118013
118181
|
* There are also some known issues with respect to the scrolling behavior and focus handling. A few are
|
|
118014
118182
|
* given below:
|
|
@@ -118808,7 +118976,7 @@ declare namespace sap {
|
|
|
118808
118976
|
* of the content.
|
|
118809
118977
|
*
|
|
118810
118978
|
* **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
|
|
118811
|
-
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge
|
|
118979
|
+
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
|
|
118812
118980
|
*
|
|
118813
118981
|
* There are also some known issues with respect to the scrolling behavior and focus handling. A few are
|
|
118814
118982
|
* given below:
|
|
@@ -130067,6 +130235,20 @@ declare namespace sap {
|
|
|
130067
130235
|
* @deprecated As of version 1.28.0. replaced by `items` aggregation
|
|
130068
130236
|
*/
|
|
130069
130237
|
getButtons(): sap.m.Button[];
|
|
130238
|
+
/**
|
|
130239
|
+
* Gets current value of property {@link #getContentMode contentMode}.
|
|
130240
|
+
*
|
|
130241
|
+
* Defines how the content of the SegmentedButton is sized. Possible values:
|
|
130242
|
+
* - **ContentFit**: Each button is sized according to its content.
|
|
130243
|
+
* - **EqualSized**: All buttons have equal width, regardless of their content.
|
|
130244
|
+
*
|
|
130245
|
+
* Default value is `EqualSized`.
|
|
130246
|
+
*
|
|
130247
|
+
* @since 1.42.0
|
|
130248
|
+
*
|
|
130249
|
+
* @returns Value of property `contentMode`
|
|
130250
|
+
*/
|
|
130251
|
+
getContentMode(): sap.m.SegmentedButtonContentMode;
|
|
130070
130252
|
/**
|
|
130071
130253
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
130072
130254
|
*
|
|
@@ -130126,7 +130308,8 @@ declare namespace sap {
|
|
|
130126
130308
|
* Gets current value of property {@link #getWidth width}.
|
|
130127
130309
|
*
|
|
130128
130310
|
* Defines the width of the SegmentedButton control. If not set, it uses the minimum required width to make
|
|
130129
|
-
* all buttons inside of the same size (based on the biggest button).
|
|
130311
|
+
* all buttons inside of the same size (based on the biggest button). **Note:** This property functions
|
|
130312
|
+
* only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
|
|
130130
130313
|
*
|
|
130131
130314
|
*
|
|
130132
130315
|
* @returns Value of property `width`
|
|
@@ -130274,6 +130457,27 @@ declare namespace sap {
|
|
|
130274
130457
|
*/
|
|
130275
130458
|
oItem: sap.m.SegmentedButtonItem
|
|
130276
130459
|
): void;
|
|
130460
|
+
/**
|
|
130461
|
+
* Sets a new value for property {@link #getContentMode contentMode}.
|
|
130462
|
+
*
|
|
130463
|
+
* Defines how the content of the SegmentedButton is sized. Possible values:
|
|
130464
|
+
* - **ContentFit**: Each button is sized according to its content.
|
|
130465
|
+
* - **EqualSized**: All buttons have equal width, regardless of their content.
|
|
130466
|
+
*
|
|
130467
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
130468
|
+
*
|
|
130469
|
+
* Default value is `EqualSized`.
|
|
130470
|
+
*
|
|
130471
|
+
* @since 1.42.0
|
|
130472
|
+
*
|
|
130473
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
130474
|
+
*/
|
|
130475
|
+
setContentMode(
|
|
130476
|
+
/**
|
|
130477
|
+
* New value for property `contentMode`
|
|
130478
|
+
*/
|
|
130479
|
+
sContentMode?: sap.m.SegmentedButtonContentMode
|
|
130480
|
+
): this;
|
|
130277
130481
|
/**
|
|
130278
130482
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
130279
130483
|
*
|
|
@@ -130339,7 +130543,8 @@ declare namespace sap {
|
|
|
130339
130543
|
* Sets a new value for property {@link #getWidth width}.
|
|
130340
130544
|
*
|
|
130341
130545
|
* Defines the width of the SegmentedButton control. If not set, it uses the minimum required width to make
|
|
130342
|
-
* all buttons inside of the same size (based on the biggest button).
|
|
130546
|
+
* all buttons inside of the same size (based on the biggest button). **Note:** This property functions
|
|
130547
|
+
* only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
|
|
130343
130548
|
*
|
|
130344
130549
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
130345
130550
|
*
|
|
@@ -130545,7 +130750,8 @@ declare namespace sap {
|
|
|
130545
130750
|
/**
|
|
130546
130751
|
* Gets current value of property {@link #getWidth width}.
|
|
130547
130752
|
*
|
|
130548
|
-
* Sets the width of the buttons.
|
|
130753
|
+
* Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
|
|
130754
|
+
* is set to EqualSized.
|
|
130549
130755
|
*
|
|
130550
130756
|
*
|
|
130551
130757
|
* @returns Value of property `width`
|
|
@@ -130595,7 +130801,8 @@ declare namespace sap {
|
|
|
130595
130801
|
/**
|
|
130596
130802
|
* Sets a new value for property {@link #getWidth width}.
|
|
130597
130803
|
*
|
|
130598
|
-
* Sets the width of the buttons.
|
|
130804
|
+
* Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
|
|
130805
|
+
* is set to EqualSized.
|
|
130599
130806
|
*
|
|
130600
130807
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
130601
130808
|
*
|
|
@@ -137614,11 +137821,6 @@ declare namespace sap {
|
|
|
137614
137821
|
* Determines which part of the control will remain fixed at the top of the page during vertical scrolling
|
|
137615
137822
|
* as long as the control is in the viewport.
|
|
137616
137823
|
*
|
|
137617
|
-
* **Note:** Limited browser support. Browsers which do not support this feature:
|
|
137618
|
-
* - Microsoft Internet Explorer
|
|
137619
|
-
* - Microsoft Edge lower than version 41 (EdgeHTML 16)
|
|
137620
|
-
* - Mozilla Firefox lower than version 59
|
|
137621
|
-
*
|
|
137622
137824
|
* Default value is `None`.
|
|
137623
137825
|
*
|
|
137624
137826
|
* @since 1.62
|
|
@@ -138252,11 +138454,6 @@ declare namespace sap {
|
|
|
138252
138454
|
* Determines which part of the control will remain fixed at the top of the page during vertical scrolling
|
|
138253
138455
|
* as long as the control is in the viewport.
|
|
138254
138456
|
*
|
|
138255
|
-
* **Note:** Limited browser support. Browsers which do not support this feature:
|
|
138256
|
-
* - Microsoft Internet Explorer
|
|
138257
|
-
* - Microsoft Edge lower than version 41 (EdgeHTML 16)
|
|
138258
|
-
* - Mozilla Firefox lower than version 59
|
|
138259
|
-
*
|
|
138260
138457
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
138261
138458
|
*
|
|
138262
138459
|
* Default value is `None`.
|
|
@@ -154001,7 +154198,12 @@ declare namespace sap {
|
|
|
154001
154198
|
*
|
|
154002
154199
|
* @since 1.22
|
|
154003
154200
|
*/
|
|
154004
|
-
class Tokenizer
|
|
154201
|
+
class Tokenizer
|
|
154202
|
+
extends sap.ui.core.Control
|
|
154203
|
+
implements sap.ui.core.ISemanticFormContent, sap.ui.core.IFormContent
|
|
154204
|
+
{
|
|
154205
|
+
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
154206
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
154005
154207
|
/**
|
|
154006
154208
|
* Constructor for a new Tokenizer.
|
|
154007
154209
|
*
|
|
@@ -154512,6 +154714,20 @@ declare namespace sap {
|
|
|
154512
154714
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
154513
154715
|
*/
|
|
154514
154716
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
154717
|
+
/**
|
|
154718
|
+
* Gets current value of property {@link #getDisplayOnly displayOnly}.
|
|
154719
|
+
*
|
|
154720
|
+
* Determines whether the `Tokenizer` is in display only state.
|
|
154721
|
+
*
|
|
154722
|
+
* When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
|
|
154723
|
+
*
|
|
154724
|
+
* Default value is `false`.
|
|
154725
|
+
*
|
|
154726
|
+
* @since 1.142.0
|
|
154727
|
+
*
|
|
154728
|
+
* @returns Value of property `displayOnly`
|
|
154729
|
+
*/
|
|
154730
|
+
getDisplayOnly(): boolean;
|
|
154515
154731
|
/**
|
|
154516
154732
|
* Gets current value of property {@link #getEditable editable}.
|
|
154517
154733
|
*
|
|
@@ -154562,6 +154778,31 @@ declare namespace sap {
|
|
|
154562
154778
|
* @returns Value of property `maxWidth`
|
|
154563
154779
|
*/
|
|
154564
154780
|
getMaxWidth(): sap.ui.core.CSSSize;
|
|
154781
|
+
/**
|
|
154782
|
+
* Gets current value of property {@link #getMultiLine multiLine}.
|
|
154783
|
+
*
|
|
154784
|
+
* Defines whether tokens are displayed on multiple lines.
|
|
154785
|
+
*
|
|
154786
|
+
* Default value is `false`.
|
|
154787
|
+
*
|
|
154788
|
+
* @experimental As of version 1.142.
|
|
154789
|
+
*
|
|
154790
|
+
* @returns Value of property `multiLine`
|
|
154791
|
+
*/
|
|
154792
|
+
getMultiLine(): boolean;
|
|
154793
|
+
/**
|
|
154794
|
+
* Gets current value of property {@link #getName name}.
|
|
154795
|
+
*
|
|
154796
|
+
* The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
|
|
154797
|
+
* the server via submit).
|
|
154798
|
+
*
|
|
154799
|
+
* Default value is `empty string`.
|
|
154800
|
+
*
|
|
154801
|
+
* @since 1.142.0
|
|
154802
|
+
*
|
|
154803
|
+
* @returns Value of property `name`
|
|
154804
|
+
*/
|
|
154805
|
+
getName(): string;
|
|
154565
154806
|
/**
|
|
154566
154807
|
* Gets current value of property {@link #getRenderMode renderMode}.
|
|
154567
154808
|
*
|
|
@@ -154600,6 +154841,19 @@ declare namespace sap {
|
|
|
154600
154841
|
* @returns Array of selected tokens or empty array
|
|
154601
154842
|
*/
|
|
154602
154843
|
getSelectedTokens(): sap.m.Token[];
|
|
154844
|
+
/**
|
|
154845
|
+
* Gets current value of property {@link #getShowClearAll showClearAll}.
|
|
154846
|
+
*
|
|
154847
|
+
* Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
|
|
154848
|
+
* will have no effect.
|
|
154849
|
+
*
|
|
154850
|
+
* Default value is `false`.
|
|
154851
|
+
*
|
|
154852
|
+
* @experimental As of version 1.142.
|
|
154853
|
+
*
|
|
154854
|
+
* @returns Value of property `showClearAll`
|
|
154855
|
+
*/
|
|
154856
|
+
getShowClearAll(): boolean;
|
|
154603
154857
|
/**
|
|
154604
154858
|
* Gets content of aggregation {@link #getTokens tokens}.
|
|
154605
154859
|
*
|
|
@@ -154767,6 +155021,27 @@ declare namespace sap {
|
|
|
154767
155021
|
*/
|
|
154768
155022
|
bSelect: boolean
|
|
154769
155023
|
): this;
|
|
155024
|
+
/**
|
|
155025
|
+
* Sets a new value for property {@link #getDisplayOnly displayOnly}.
|
|
155026
|
+
*
|
|
155027
|
+
* Determines whether the `Tokenizer` is in display only state.
|
|
155028
|
+
*
|
|
155029
|
+
* When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
|
|
155030
|
+
*
|
|
155031
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
155032
|
+
*
|
|
155033
|
+
* Default value is `false`.
|
|
155034
|
+
*
|
|
155035
|
+
* @since 1.142.0
|
|
155036
|
+
*
|
|
155037
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
155038
|
+
*/
|
|
155039
|
+
setDisplayOnly(
|
|
155040
|
+
/**
|
|
155041
|
+
* New value for property `displayOnly`
|
|
155042
|
+
*/
|
|
155043
|
+
bDisplayOnly?: boolean
|
|
155044
|
+
): this;
|
|
154770
155045
|
/**
|
|
154771
155046
|
* Sets a new value for property {@link #getEditable editable}.
|
|
154772
155047
|
*
|
|
@@ -154834,6 +155109,45 @@ declare namespace sap {
|
|
|
154834
155109
|
*/
|
|
154835
155110
|
sMaxWidth?: sap.ui.core.CSSSize
|
|
154836
155111
|
): this;
|
|
155112
|
+
/**
|
|
155113
|
+
* Sets a new value for property {@link #getMultiLine multiLine}.
|
|
155114
|
+
*
|
|
155115
|
+
* Defines whether tokens are displayed on multiple lines.
|
|
155116
|
+
*
|
|
155117
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
155118
|
+
*
|
|
155119
|
+
* Default value is `false`.
|
|
155120
|
+
*
|
|
155121
|
+
* @experimental As of version 1.142.
|
|
155122
|
+
*
|
|
155123
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
155124
|
+
*/
|
|
155125
|
+
setMultiLine(
|
|
155126
|
+
/**
|
|
155127
|
+
* New value for property `multiLine`
|
|
155128
|
+
*/
|
|
155129
|
+
bMultiLine?: boolean
|
|
155130
|
+
): this;
|
|
155131
|
+
/**
|
|
155132
|
+
* Sets a new value for property {@link #getName name}.
|
|
155133
|
+
*
|
|
155134
|
+
* The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
|
|
155135
|
+
* the server via submit).
|
|
155136
|
+
*
|
|
155137
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
155138
|
+
*
|
|
155139
|
+
* Default value is `empty string`.
|
|
155140
|
+
*
|
|
155141
|
+
* @since 1.142.0
|
|
155142
|
+
*
|
|
155143
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
155144
|
+
*/
|
|
155145
|
+
setName(
|
|
155146
|
+
/**
|
|
155147
|
+
* New value for property `name`
|
|
155148
|
+
*/
|
|
155149
|
+
sName?: string
|
|
155150
|
+
): this;
|
|
154837
155151
|
/**
|
|
154838
155152
|
* Function sets the tokenizer's width in pixels.
|
|
154839
155153
|
*/
|
|
@@ -154878,6 +155192,26 @@ declare namespace sap {
|
|
|
154878
155192
|
*/
|
|
154879
155193
|
bShouldRenderTabIndex: boolean
|
|
154880
155194
|
): void;
|
|
155195
|
+
/**
|
|
155196
|
+
* Sets a new value for property {@link #getShowClearAll showClearAll}.
|
|
155197
|
+
*
|
|
155198
|
+
* Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
|
|
155199
|
+
* will have no effect.
|
|
155200
|
+
*
|
|
155201
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
155202
|
+
*
|
|
155203
|
+
* Default value is `false`.
|
|
155204
|
+
*
|
|
155205
|
+
* @experimental As of version 1.142.
|
|
155206
|
+
*
|
|
155207
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
155208
|
+
*/
|
|
155209
|
+
setShowClearAll(
|
|
155210
|
+
/**
|
|
155211
|
+
* New value for property `showClearAll`
|
|
155212
|
+
*/
|
|
155213
|
+
bShowClearAll?: boolean
|
|
155214
|
+
): this;
|
|
154881
155215
|
/**
|
|
154882
155216
|
* Sets a new value for property {@link #getWidth width}.
|
|
154883
155217
|
*
|
|
@@ -167691,9 +168025,6 @@ declare namespace sap {
|
|
|
167691
168025
|
* Sets grid layout for rendering the table popins. The grid width for each table popin is comparatively
|
|
167692
168026
|
* larger than `GridSmall`, hence this allows less content to be rendered in a single popin row.
|
|
167693
168027
|
*
|
|
167694
|
-
* **Note:** This feature is currently not supported with Internet Explorer and Edge (version lower than
|
|
167695
|
-
* 16) browsers.
|
|
167696
|
-
*
|
|
167697
168028
|
* @since 1.52
|
|
167698
168029
|
*/
|
|
167699
168030
|
GridLarge = "GridLarge",
|
|
@@ -167702,9 +168033,6 @@ declare namespace sap {
|
|
|
167702
168033
|
* this allows more content to be rendered in a single popin row. This value defines small grid width for
|
|
167703
168034
|
* the table popins.
|
|
167704
168035
|
*
|
|
167705
|
-
* **Note:** This feature is currently not supported with Internet Explorer and Edge (version lower than
|
|
167706
|
-
* 16) browsers.
|
|
167707
|
-
*
|
|
167708
168036
|
* @since 1.52
|
|
167709
168037
|
*/
|
|
167710
168038
|
GridSmall = "GridSmall",
|
|
@@ -167864,6 +168192,25 @@ declare namespace sap {
|
|
|
167864
168192
|
*/
|
|
167865
168193
|
XXSmall = "XXSmall",
|
|
167866
168194
|
}
|
|
168195
|
+
/**
|
|
168196
|
+
* Different SegmentedButton items sizing modes.
|
|
168197
|
+
*
|
|
168198
|
+
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SegmentedButtonContentMode'.
|
|
168199
|
+
*/
|
|
168200
|
+
enum SegmentedButtonContentMode {
|
|
168201
|
+
/**
|
|
168202
|
+
* Each item fits its content and extra space is placed after the last item.
|
|
168203
|
+
*
|
|
168204
|
+
* @since 1.42
|
|
168205
|
+
*/
|
|
168206
|
+
ContentFit = "ContentFit",
|
|
168207
|
+
/**
|
|
168208
|
+
* All items are sized equally to fill the available space.
|
|
168209
|
+
*
|
|
168210
|
+
* @since 1.42
|
|
168211
|
+
*/
|
|
168212
|
+
EqualSized = "EqualSized",
|
|
168213
|
+
}
|
|
167867
168214
|
/**
|
|
167868
168215
|
* Defines the control that will receive the initial focus in the `sap.m.SelectDialog` or `sap.m.TableSelectDialog`.
|
|
167869
168216
|
*
|