@sapui5/types 1.141.3 → 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 +1 -0
- 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 +159 -4
- 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 +471 -32
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +2616 -95
- 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 +79 -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/sap.m.d.ts +401 -55
- 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 -3737
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +28 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +77 -9
- package/types/sap.ui.core.d.ts +1160 -639
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +63 -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/sap.ui.mdc.d.ts +1505 -167
- 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/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 +335 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.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.142.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -2944,9 +2944,6 @@ declare module "sap/m/library" {
|
|
|
2944
2944
|
* Sets grid layout for rendering the table popins. The grid width for each table popin is comparatively
|
|
2945
2945
|
* larger than `GridSmall`, hence this allows less content to be rendered in a single popin row.
|
|
2946
2946
|
*
|
|
2947
|
-
* **Note:** This feature is currently not supported with Internet Explorer and Edge (version lower than
|
|
2948
|
-
* 16) browsers.
|
|
2949
|
-
*
|
|
2950
2947
|
* @since 1.52
|
|
2951
2948
|
*/
|
|
2952
2949
|
GridLarge = "GridLarge",
|
|
@@ -2955,9 +2952,6 @@ declare module "sap/m/library" {
|
|
|
2955
2952
|
* this allows more content to be rendered in a single popin row. This value defines small grid width for
|
|
2956
2953
|
* the table popins.
|
|
2957
2954
|
*
|
|
2958
|
-
* **Note:** This feature is currently not supported with Internet Explorer and Edge (version lower than
|
|
2959
|
-
* 16) browsers.
|
|
2960
|
-
*
|
|
2961
2955
|
* @since 1.52
|
|
2962
2956
|
*/
|
|
2963
2957
|
GridSmall = "GridSmall",
|
|
@@ -3145,6 +3139,25 @@ declare module "sap/m/library" {
|
|
|
3145
3139
|
*/
|
|
3146
3140
|
XXSmall = "XXSmall",
|
|
3147
3141
|
}
|
|
3142
|
+
/**
|
|
3143
|
+
* Different SegmentedButton items sizing modes.
|
|
3144
|
+
*
|
|
3145
|
+
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SegmentedButtonContentMode'.
|
|
3146
|
+
*/
|
|
3147
|
+
export enum SegmentedButtonContentMode {
|
|
3148
|
+
/**
|
|
3149
|
+
* Each item fits its content and extra space is placed after the last item.
|
|
3150
|
+
*
|
|
3151
|
+
* @since 1.42
|
|
3152
|
+
*/
|
|
3153
|
+
ContentFit = "ContentFit",
|
|
3154
|
+
/**
|
|
3155
|
+
* All items are sized equally to fill the available space.
|
|
3156
|
+
*
|
|
3157
|
+
* @since 1.42
|
|
3158
|
+
*/
|
|
3159
|
+
EqualSized = "EqualSized",
|
|
3160
|
+
}
|
|
3148
3161
|
/**
|
|
3149
3162
|
* A string type that represents column ratio.
|
|
3150
3163
|
*
|
|
@@ -7459,6 +7472,15 @@ declare module "sap/m/Avatar" {
|
|
|
7459
7472
|
*/
|
|
7460
7473
|
mParameters?: object
|
|
7461
7474
|
): this;
|
|
7475
|
+
/**
|
|
7476
|
+
* See:
|
|
7477
|
+
* sap.ui.core.Control#getAccessibilityInfo
|
|
7478
|
+
*
|
|
7479
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7480
|
+
*
|
|
7481
|
+
* @returns Current accessibility state of the Avatar
|
|
7482
|
+
*/
|
|
7483
|
+
getAccessibilityInfo(): object;
|
|
7462
7484
|
/**
|
|
7463
7485
|
* Gets current value of property {@link #getActive active}.
|
|
7464
7486
|
*
|
|
@@ -24279,11 +24301,11 @@ declare module "sap/m/Dialog" {
|
|
|
24279
24301
|
rightButton?: Button | string;
|
|
24280
24302
|
|
|
24281
24303
|
/**
|
|
24282
|
-
* In the Dialog focus is set
|
|
24283
|
-
* control needs to
|
|
24284
|
-
* `initialFocus`
|
|
24285
|
-
*
|
|
24286
|
-
* must be triggered by
|
|
24304
|
+
* In the Dialog, focus is initially set on the first focusable element, or on the dialog itself if no such
|
|
24305
|
+
* element is available. If another control needs to receive focus, set the `initialFocus` to the control
|
|
24306
|
+
* that should be focused. Setting `initialFocus` on input controls does not open the on-screen keyboard
|
|
24307
|
+
* on mobile devices. Due to browser restrictions, the on-screen keyboard can't be opened with JavaScript
|
|
24308
|
+
* code; it must be triggered explicitly by the user.
|
|
24287
24309
|
*
|
|
24288
24310
|
* @since 1.15.0
|
|
24289
24311
|
*/
|
|
@@ -53415,7 +53437,7 @@ declare module "sap/m/ListBase" {
|
|
|
53415
53437
|
/**
|
|
53416
53438
|
* The list item action that fired the event
|
|
53417
53439
|
*/
|
|
53418
|
-
|
|
53440
|
+
action?: ListItemAction;
|
|
53419
53441
|
|
|
53420
53442
|
/**
|
|
53421
53443
|
* The list item in which the action was performed
|
|
@@ -58148,7 +58170,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58148
58170
|
/**
|
|
58149
58171
|
* callback function to be called when the user closes the dialog
|
|
58150
58172
|
*/
|
|
58151
|
-
onClose?:
|
|
58173
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58152
58174
|
/**
|
|
58153
58175
|
* Title to be displayed in the alert dialog
|
|
58154
58176
|
*/
|
|
@@ -58277,7 +58299,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58277
58299
|
/**
|
|
58278
58300
|
* Callback to be called when the user closes the dialog
|
|
58279
58301
|
*/
|
|
58280
|
-
onClose?:
|
|
58302
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58281
58303
|
/**
|
|
58282
58304
|
* Title to display in the confirmation dialog
|
|
58283
58305
|
*/
|
|
@@ -58403,7 +58425,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58403
58425
|
/**
|
|
58404
58426
|
* Callback when the user closes the dialog
|
|
58405
58427
|
*/
|
|
58406
|
-
onClose?:
|
|
58428
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58407
58429
|
/**
|
|
58408
58430
|
* Title of the error dialog
|
|
58409
58431
|
*/
|
|
@@ -58526,7 +58548,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58526
58548
|
/**
|
|
58527
58549
|
* Callback when the user closes the dialog
|
|
58528
58550
|
*/
|
|
58529
|
-
onClose?:
|
|
58551
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58530
58552
|
/**
|
|
58531
58553
|
* Title of the information dialog
|
|
58532
58554
|
*/
|
|
@@ -58677,7 +58699,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58677
58699
|
/**
|
|
58678
58700
|
* Function to be called when the user taps a button or closes the message box.
|
|
58679
58701
|
*/
|
|
58680
|
-
onClose?:
|
|
58702
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58681
58703
|
/**
|
|
58682
58704
|
* ID to be used for the dialog. Intended for test scenarios, not recommended for productive apps
|
|
58683
58705
|
*/
|
|
@@ -58781,7 +58803,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58781
58803
|
/**
|
|
58782
58804
|
* Callback when the user closes the dialog
|
|
58783
58805
|
*/
|
|
58784
|
-
onClose?:
|
|
58806
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58785
58807
|
/**
|
|
58786
58808
|
* Title of the success dialog
|
|
58787
58809
|
*/
|
|
@@ -58904,7 +58926,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58904
58926
|
/**
|
|
58905
58927
|
* Callback when the user closes the dialog
|
|
58906
58928
|
*/
|
|
58907
|
-
onClose?:
|
|
58929
|
+
onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
|
|
58908
58930
|
/**
|
|
58909
58931
|
* Title of the warning dialog
|
|
58910
58932
|
*/
|
|
@@ -88950,9 +88972,8 @@ declare module "sap/m/PDFViewer" {
|
|
|
88950
88972
|
* Gets current value of property {@link #getSource source}.
|
|
88951
88973
|
*
|
|
88952
88974
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
88953
|
-
* Optionally, this property can also be set to a data URI path or a blob URL
|
|
88954
|
-
*
|
|
88955
|
-
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
88975
|
+
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
88976
|
+
* 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}.
|
|
88956
88977
|
*
|
|
88957
88978
|
*
|
|
88958
88979
|
* @returns Value of property `source`
|
|
@@ -89200,9 +89221,8 @@ declare module "sap/m/PDFViewer" {
|
|
|
89200
89221
|
* Sets a new value for property {@link #getSource source}.
|
|
89201
89222
|
*
|
|
89202
89223
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
89203
|
-
* Optionally, this property can also be set to a data URI path or a blob URL
|
|
89204
|
-
*
|
|
89205
|
-
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
89224
|
+
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
89225
|
+
* 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}.
|
|
89206
89226
|
*
|
|
89207
89227
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
89208
89228
|
*
|
|
@@ -89269,9 +89289,8 @@ declare module "sap/m/PDFViewer" {
|
|
|
89269
89289
|
|
|
89270
89290
|
/**
|
|
89271
89291
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
89272
|
-
* Optionally, this property can also be set to a data URI path or a blob URL
|
|
89273
|
-
*
|
|
89274
|
-
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
89292
|
+
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
89293
|
+
* 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}.
|
|
89275
89294
|
*/
|
|
89276
89295
|
source?: URI | PropertyBindingInfo | `{${string}}`;
|
|
89277
89296
|
|
|
@@ -90647,7 +90666,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
90647
90666
|
* of the content.
|
|
90648
90667
|
*
|
|
90649
90668
|
* **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
|
|
90650
|
-
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge
|
|
90669
|
+
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
|
|
90651
90670
|
*
|
|
90652
90671
|
* There are also some known issues with respect to the scrolling behavior and focus handling. A few are
|
|
90653
90672
|
* given below:
|
|
@@ -91457,7 +91476,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
91457
91476
|
* of the content.
|
|
91458
91477
|
*
|
|
91459
91478
|
* **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
|
|
91460
|
-
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge
|
|
91479
|
+
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
|
|
91461
91480
|
*
|
|
91462
91481
|
* There are also some known issues with respect to the scrolling behavior and focus handling. A few are
|
|
91463
91482
|
* given below:
|
|
@@ -91721,7 +91740,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
91721
91740
|
* of the content.
|
|
91722
91741
|
*
|
|
91723
91742
|
* **Note:** There is limited browser support, hence the API is in experimental state. Browsers that currently
|
|
91724
|
-
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge
|
|
91743
|
+
* support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
|
|
91725
91744
|
*
|
|
91726
91745
|
* There are also some known issues with respect to the scrolling behavior and focus handling. A few are
|
|
91727
91746
|
* given below:
|
|
@@ -97606,6 +97625,57 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
97606
97625
|
*/
|
|
97607
97626
|
oListener?: object
|
|
97608
97627
|
): this;
|
|
97628
|
+
/**
|
|
97629
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemRenameCanceled itemRenameCanceled} event
|
|
97630
|
+
* of this `sap.m.plugins.UploadSetwithTable`.
|
|
97631
|
+
*
|
|
97632
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
97633
|
+
* otherwise it will be bound to this `sap.m.plugins.UploadSetwithTable` itself.
|
|
97634
|
+
*
|
|
97635
|
+
* The event is triggered when the file renaming process is canceled.
|
|
97636
|
+
*
|
|
97637
|
+
* @since 1.142
|
|
97638
|
+
*
|
|
97639
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
97640
|
+
*/
|
|
97641
|
+
attachItemRenameCanceled(
|
|
97642
|
+
/**
|
|
97643
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
97644
|
+
* object when firing the event
|
|
97645
|
+
*/
|
|
97646
|
+
oData: object,
|
|
97647
|
+
/**
|
|
97648
|
+
* The function to be called when the event occurs
|
|
97649
|
+
*/
|
|
97650
|
+
fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
|
|
97651
|
+
/**
|
|
97652
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.UploadSetwithTable` itself
|
|
97653
|
+
*/
|
|
97654
|
+
oListener?: object
|
|
97655
|
+
): this;
|
|
97656
|
+
/**
|
|
97657
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemRenameCanceled itemRenameCanceled} event
|
|
97658
|
+
* of this `sap.m.plugins.UploadSetwithTable`.
|
|
97659
|
+
*
|
|
97660
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
97661
|
+
* otherwise it will be bound to this `sap.m.plugins.UploadSetwithTable` itself.
|
|
97662
|
+
*
|
|
97663
|
+
* The event is triggered when the file renaming process is canceled.
|
|
97664
|
+
*
|
|
97665
|
+
* @since 1.142
|
|
97666
|
+
*
|
|
97667
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
97668
|
+
*/
|
|
97669
|
+
attachItemRenameCanceled(
|
|
97670
|
+
/**
|
|
97671
|
+
* The function to be called when the event occurs
|
|
97672
|
+
*/
|
|
97673
|
+
fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
|
|
97674
|
+
/**
|
|
97675
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.UploadSetwithTable` itself
|
|
97676
|
+
*/
|
|
97677
|
+
oListener?: object
|
|
97678
|
+
): this;
|
|
97609
97679
|
/**
|
|
97610
97680
|
* Attaches event handler `fnFunction` to the {@link #event:itemRenamed itemRenamed} event of this `sap.m.plugins.UploadSetwithTable`.
|
|
97611
97681
|
*
|
|
@@ -97982,6 +98052,26 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
97982
98052
|
*/
|
|
97983
98053
|
oListener?: object
|
|
97984
98054
|
): this;
|
|
98055
|
+
/**
|
|
98056
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemRenameCanceled itemRenameCanceled} event
|
|
98057
|
+
* of this `sap.m.plugins.UploadSetwithTable`.
|
|
98058
|
+
*
|
|
98059
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
98060
|
+
*
|
|
98061
|
+
* @since 1.142
|
|
98062
|
+
*
|
|
98063
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
98064
|
+
*/
|
|
98065
|
+
detachItemRenameCanceled(
|
|
98066
|
+
/**
|
|
98067
|
+
* The function to be called, when the event occurs
|
|
98068
|
+
*/
|
|
98069
|
+
fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
|
|
98070
|
+
/**
|
|
98071
|
+
* Context object on which the given function had to be called
|
|
98072
|
+
*/
|
|
98073
|
+
oListener?: object
|
|
98074
|
+
): this;
|
|
97985
98075
|
/**
|
|
97986
98076
|
* Detaches event handler `fnFunction` from the {@link #event:itemRenamed itemRenamed} event of this `sap.m.plugins.UploadSetwithTable`.
|
|
97987
98077
|
*
|
|
@@ -98160,6 +98250,20 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
98160
98250
|
*/
|
|
98161
98251
|
mParameters?: UploadSetwithTable$FileTypeMismatchEventParameters
|
|
98162
98252
|
): this;
|
|
98253
|
+
/**
|
|
98254
|
+
* Fires event {@link #event:itemRenameCanceled itemRenameCanceled} to attached listeners.
|
|
98255
|
+
*
|
|
98256
|
+
* @since 1.142
|
|
98257
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
98258
|
+
*
|
|
98259
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
98260
|
+
*/
|
|
98261
|
+
fireItemRenameCanceled(
|
|
98262
|
+
/**
|
|
98263
|
+
* Parameters to pass along with the event
|
|
98264
|
+
*/
|
|
98265
|
+
mParameters?: UploadSetwithTable$ItemRenameCanceledEventParameters
|
|
98266
|
+
): this;
|
|
98163
98267
|
/**
|
|
98164
98268
|
* Fires event {@link #event:itemRenamed itemRenamed} to attached listeners.
|
|
98165
98269
|
*
|
|
@@ -99114,6 +99218,15 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
99114
99218
|
*/
|
|
99115
99219
|
itemRenamed?: (oEvent: UploadSetwithTable$ItemRenamedEvent) => void;
|
|
99116
99220
|
|
|
99221
|
+
/**
|
|
99222
|
+
* The event is triggered when the file renaming process is canceled.
|
|
99223
|
+
*
|
|
99224
|
+
* @since 1.142
|
|
99225
|
+
*/
|
|
99226
|
+
itemRenameCanceled?: (
|
|
99227
|
+
oEvent: UploadSetwithTable$ItemRenameCanceledEvent
|
|
99228
|
+
) => void;
|
|
99229
|
+
|
|
99117
99230
|
/**
|
|
99118
99231
|
* This event is fired right before the upload process begins.
|
|
99119
99232
|
*/
|
|
@@ -99278,6 +99391,24 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
99278
99391
|
UploadSetwithTable
|
|
99279
99392
|
>;
|
|
99280
99393
|
|
|
99394
|
+
/**
|
|
99395
|
+
* Parameters of the UploadSetwithTable#itemRenameCanceled event.
|
|
99396
|
+
*/
|
|
99397
|
+
export interface UploadSetwithTable$ItemRenameCanceledEventParameters {
|
|
99398
|
+
/**
|
|
99399
|
+
* The renamed UI element is of UploadItem type.
|
|
99400
|
+
*/
|
|
99401
|
+
item?: UploadItem;
|
|
99402
|
+
}
|
|
99403
|
+
|
|
99404
|
+
/**
|
|
99405
|
+
* Event object of the UploadSetwithTable#itemRenameCanceled event.
|
|
99406
|
+
*/
|
|
99407
|
+
export type UploadSetwithTable$ItemRenameCanceledEvent = Event<
|
|
99408
|
+
UploadSetwithTable$ItemRenameCanceledEventParameters,
|
|
99409
|
+
UploadSetwithTable
|
|
99410
|
+
>;
|
|
99411
|
+
|
|
99281
99412
|
/**
|
|
99282
99413
|
* Parameters of the UploadSetwithTable#itemRenamed event.
|
|
99283
99414
|
*/
|
|
@@ -111262,6 +111393,7 @@ declare module "sap/m/SegmentedButton" {
|
|
|
111262
111393
|
import {
|
|
111263
111394
|
IOverflowToolbarContent,
|
|
111264
111395
|
IToolbarInteractiveControl,
|
|
111396
|
+
SegmentedButtonContentMode,
|
|
111265
111397
|
} from "sap/m/library";
|
|
111266
111398
|
|
|
111267
111399
|
import Button from "sap/m/Button";
|
|
@@ -111678,6 +111810,20 @@ declare module "sap/m/SegmentedButton" {
|
|
|
111678
111810
|
* @deprecated As of version 1.28.0. replaced by `items` aggregation
|
|
111679
111811
|
*/
|
|
111680
111812
|
getButtons(): Button[];
|
|
111813
|
+
/**
|
|
111814
|
+
* Gets current value of property {@link #getContentMode contentMode}.
|
|
111815
|
+
*
|
|
111816
|
+
* Defines how the content of the SegmentedButton is sized. Possible values:
|
|
111817
|
+
* - **ContentFit**: Each button is sized according to its content.
|
|
111818
|
+
* - **EqualSized**: All buttons have equal width, regardless of their content.
|
|
111819
|
+
*
|
|
111820
|
+
* Default value is `EqualSized`.
|
|
111821
|
+
*
|
|
111822
|
+
* @since 1.42.0
|
|
111823
|
+
*
|
|
111824
|
+
* @returns Value of property `contentMode`
|
|
111825
|
+
*/
|
|
111826
|
+
getContentMode(): SegmentedButtonContentMode;
|
|
111681
111827
|
/**
|
|
111682
111828
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
111683
111829
|
*
|
|
@@ -111737,7 +111883,8 @@ declare module "sap/m/SegmentedButton" {
|
|
|
111737
111883
|
* Gets current value of property {@link #getWidth width}.
|
|
111738
111884
|
*
|
|
111739
111885
|
* Defines the width of the SegmentedButton control. If not set, it uses the minimum required width to make
|
|
111740
|
-
* all buttons inside of the same size (based on the biggest button).
|
|
111886
|
+
* all buttons inside of the same size (based on the biggest button). **Note:** This property functions
|
|
111887
|
+
* only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
|
|
111741
111888
|
*
|
|
111742
111889
|
*
|
|
111743
111890
|
* @returns Value of property `width`
|
|
@@ -111885,6 +112032,29 @@ declare module "sap/m/SegmentedButton" {
|
|
|
111885
112032
|
*/
|
|
111886
112033
|
oItem: SegmentedButtonItem
|
|
111887
112034
|
): void;
|
|
112035
|
+
/**
|
|
112036
|
+
* Sets a new value for property {@link #getContentMode contentMode}.
|
|
112037
|
+
*
|
|
112038
|
+
* Defines how the content of the SegmentedButton is sized. Possible values:
|
|
112039
|
+
* - **ContentFit**: Each button is sized according to its content.
|
|
112040
|
+
* - **EqualSized**: All buttons have equal width, regardless of their content.
|
|
112041
|
+
*
|
|
112042
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
112043
|
+
*
|
|
112044
|
+
* Default value is `EqualSized`.
|
|
112045
|
+
*
|
|
112046
|
+
* @since 1.42.0
|
|
112047
|
+
*
|
|
112048
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
112049
|
+
*/
|
|
112050
|
+
setContentMode(
|
|
112051
|
+
/**
|
|
112052
|
+
* New value for property `contentMode`
|
|
112053
|
+
*/
|
|
112054
|
+
sContentMode?:
|
|
112055
|
+
| SegmentedButtonContentMode
|
|
112056
|
+
| keyof typeof SegmentedButtonContentMode
|
|
112057
|
+
): this;
|
|
111888
112058
|
/**
|
|
111889
112059
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
111890
112060
|
*
|
|
@@ -111950,7 +112120,8 @@ declare module "sap/m/SegmentedButton" {
|
|
|
111950
112120
|
* Sets a new value for property {@link #getWidth width}.
|
|
111951
112121
|
*
|
|
111952
112122
|
* Defines the width of the SegmentedButton control. If not set, it uses the minimum required width to make
|
|
111953
|
-
* all buttons inside of the same size (based on the biggest button).
|
|
112123
|
+
* all buttons inside of the same size (based on the biggest button). **Note:** This property functions
|
|
112124
|
+
* only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
|
|
111954
112125
|
*
|
|
111955
112126
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
111956
112127
|
*
|
|
@@ -111986,7 +112157,8 @@ declare module "sap/m/SegmentedButton" {
|
|
|
111986
112157
|
export interface $SegmentedButtonSettings extends $ControlSettings {
|
|
111987
112158
|
/**
|
|
111988
112159
|
* Defines the width of the SegmentedButton control. If not set, it uses the minimum required width to make
|
|
111989
|
-
* all buttons inside of the same size (based on the biggest button).
|
|
112160
|
+
* all buttons inside of the same size (based on the biggest button). **Note:** This property functions
|
|
112161
|
+
* only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
|
|
111990
112162
|
*/
|
|
111991
112163
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
111992
112164
|
|
|
@@ -112004,6 +112176,18 @@ declare module "sap/m/SegmentedButton" {
|
|
|
112004
112176
|
*/
|
|
112005
112177
|
selectedKey?: string | PropertyBindingInfo;
|
|
112006
112178
|
|
|
112179
|
+
/**
|
|
112180
|
+
* Defines how the content of the SegmentedButton is sized. Possible values:
|
|
112181
|
+
* - **ContentFit**: Each button is sized according to its content.
|
|
112182
|
+
* - **EqualSized**: All buttons have equal width, regardless of their content.
|
|
112183
|
+
*
|
|
112184
|
+
* @since 1.42.0
|
|
112185
|
+
*/
|
|
112186
|
+
contentMode?:
|
|
112187
|
+
| (SegmentedButtonContentMode | keyof typeof SegmentedButtonContentMode)
|
|
112188
|
+
| PropertyBindingInfo
|
|
112189
|
+
| `{${string}}`;
|
|
112190
|
+
|
|
112007
112191
|
/**
|
|
112008
112192
|
* The buttons of the SegmentedButton control. The items set in this aggregation are used as an interface
|
|
112009
112193
|
* for the buttons displayed by the control. Only the properties ID, icon, text, enabled and textDirections
|
|
@@ -112310,7 +112494,8 @@ declare module "sap/m/SegmentedButtonItem" {
|
|
|
112310
112494
|
/**
|
|
112311
112495
|
* Gets current value of property {@link #getWidth width}.
|
|
112312
112496
|
*
|
|
112313
|
-
* Sets the width of the buttons.
|
|
112497
|
+
* Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
|
|
112498
|
+
* is set to EqualSized.
|
|
112314
112499
|
*
|
|
112315
112500
|
*
|
|
112316
112501
|
* @returns Value of property `width`
|
|
@@ -112360,7 +112545,8 @@ declare module "sap/m/SegmentedButtonItem" {
|
|
|
112360
112545
|
/**
|
|
112361
112546
|
* Sets a new value for property {@link #getWidth width}.
|
|
112362
112547
|
*
|
|
112363
|
-
* Sets the width of the buttons.
|
|
112548
|
+
* Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
|
|
112549
|
+
* is set to EqualSized.
|
|
112364
112550
|
*
|
|
112365
112551
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
112366
112552
|
*
|
|
@@ -112390,7 +112576,8 @@ declare module "sap/m/SegmentedButtonItem" {
|
|
|
112390
112576
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
112391
112577
|
|
|
112392
112578
|
/**
|
|
112393
|
-
* Sets the width of the buttons.
|
|
112579
|
+
* Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
|
|
112580
|
+
* is set to EqualSized.
|
|
112394
112581
|
*/
|
|
112395
112582
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
112396
112583
|
|
|
@@ -129026,11 +129213,6 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
129026
129213
|
* Determines which part of the control will remain fixed at the top of the page during vertical scrolling
|
|
129027
129214
|
* as long as the control is in the viewport.
|
|
129028
129215
|
*
|
|
129029
|
-
* **Note:** Limited browser support. Browsers which do not support this feature:
|
|
129030
|
-
* - Microsoft Internet Explorer
|
|
129031
|
-
* - Microsoft Edge lower than version 41 (EdgeHTML 16)
|
|
129032
|
-
* - Mozilla Firefox lower than version 59
|
|
129033
|
-
*
|
|
129034
129216
|
* Default value is `None`.
|
|
129035
129217
|
*
|
|
129036
129218
|
* @since 1.62
|
|
@@ -129668,11 +129850,6 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
129668
129850
|
* Determines which part of the control will remain fixed at the top of the page during vertical scrolling
|
|
129669
129851
|
* as long as the control is in the viewport.
|
|
129670
129852
|
*
|
|
129671
|
-
* **Note:** Limited browser support. Browsers which do not support this feature:
|
|
129672
|
-
* - Microsoft Internet Explorer
|
|
129673
|
-
* - Microsoft Edge lower than version 41 (EdgeHTML 16)
|
|
129674
|
-
* - Mozilla Firefox lower than version 59
|
|
129675
|
-
*
|
|
129676
129853
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
129677
129854
|
*
|
|
129678
129855
|
* Default value is `None`.
|
|
@@ -129759,11 +129936,6 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
129759
129936
|
* Determines which part of the control will remain fixed at the top of the page during vertical scrolling
|
|
129760
129937
|
* as long as the control is in the viewport.
|
|
129761
129938
|
*
|
|
129762
|
-
* **Note:** Limited browser support. Browsers which do not support this feature:
|
|
129763
|
-
* - Microsoft Internet Explorer
|
|
129764
|
-
* - Microsoft Edge lower than version 41 (EdgeHTML 16)
|
|
129765
|
-
* - Mozilla Firefox lower than version 59
|
|
129766
|
-
*
|
|
129767
129939
|
* @since 1.62
|
|
129768
129940
|
*/
|
|
129769
129941
|
stickyMode?:
|
|
@@ -153731,7 +153903,12 @@ declare module "sap/m/Token" {
|
|
|
153731
153903
|
declare module "sap/m/Tokenizer" {
|
|
153732
153904
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
153733
153905
|
|
|
153734
|
-
import {
|
|
153906
|
+
import {
|
|
153907
|
+
ISemanticFormContent,
|
|
153908
|
+
IFormContent,
|
|
153909
|
+
ID,
|
|
153910
|
+
CSSSize,
|
|
153911
|
+
} from "sap/ui/core/library";
|
|
153735
153912
|
|
|
153736
153913
|
import Token from "sap/m/Token";
|
|
153737
153914
|
|
|
@@ -153757,7 +153934,12 @@ declare module "sap/m/Tokenizer" {
|
|
|
153757
153934
|
*
|
|
153758
153935
|
* @since 1.22
|
|
153759
153936
|
*/
|
|
153760
|
-
export default class Tokenizer
|
|
153937
|
+
export default class Tokenizer
|
|
153938
|
+
extends Control
|
|
153939
|
+
implements ISemanticFormContent, IFormContent
|
|
153940
|
+
{
|
|
153941
|
+
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
153942
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
153761
153943
|
/**
|
|
153762
153944
|
* Constructor for a new Tokenizer.
|
|
153763
153945
|
*
|
|
@@ -154268,6 +154450,20 @@ declare module "sap/m/Tokenizer" {
|
|
|
154268
154450
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
154269
154451
|
*/
|
|
154270
154452
|
getAriaLabelledBy(): ID[];
|
|
154453
|
+
/**
|
|
154454
|
+
* Gets current value of property {@link #getDisplayOnly displayOnly}.
|
|
154455
|
+
*
|
|
154456
|
+
* Determines whether the `Tokenizer` is in display only state.
|
|
154457
|
+
*
|
|
154458
|
+
* When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
|
|
154459
|
+
*
|
|
154460
|
+
* Default value is `false`.
|
|
154461
|
+
*
|
|
154462
|
+
* @since 1.142.0
|
|
154463
|
+
*
|
|
154464
|
+
* @returns Value of property `displayOnly`
|
|
154465
|
+
*/
|
|
154466
|
+
getDisplayOnly(): boolean;
|
|
154271
154467
|
/**
|
|
154272
154468
|
* Gets current value of property {@link #getEditable editable}.
|
|
154273
154469
|
*
|
|
@@ -154318,6 +154514,31 @@ declare module "sap/m/Tokenizer" {
|
|
|
154318
154514
|
* @returns Value of property `maxWidth`
|
|
154319
154515
|
*/
|
|
154320
154516
|
getMaxWidth(): CSSSize;
|
|
154517
|
+
/**
|
|
154518
|
+
* Gets current value of property {@link #getMultiLine multiLine}.
|
|
154519
|
+
*
|
|
154520
|
+
* Defines whether tokens are displayed on multiple lines.
|
|
154521
|
+
*
|
|
154522
|
+
* Default value is `false`.
|
|
154523
|
+
*
|
|
154524
|
+
* @experimental As of version 1.142.
|
|
154525
|
+
*
|
|
154526
|
+
* @returns Value of property `multiLine`
|
|
154527
|
+
*/
|
|
154528
|
+
getMultiLine(): boolean;
|
|
154529
|
+
/**
|
|
154530
|
+
* Gets current value of property {@link #getName name}.
|
|
154531
|
+
*
|
|
154532
|
+
* The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
|
|
154533
|
+
* the server via submit).
|
|
154534
|
+
*
|
|
154535
|
+
* Default value is `empty string`.
|
|
154536
|
+
*
|
|
154537
|
+
* @since 1.142.0
|
|
154538
|
+
*
|
|
154539
|
+
* @returns Value of property `name`
|
|
154540
|
+
*/
|
|
154541
|
+
getName(): string;
|
|
154321
154542
|
/**
|
|
154322
154543
|
* Gets current value of property {@link #getRenderMode renderMode}.
|
|
154323
154544
|
*
|
|
@@ -154356,6 +154577,19 @@ declare module "sap/m/Tokenizer" {
|
|
|
154356
154577
|
* @returns Array of selected tokens or empty array
|
|
154357
154578
|
*/
|
|
154358
154579
|
getSelectedTokens(): Token[];
|
|
154580
|
+
/**
|
|
154581
|
+
* Gets current value of property {@link #getShowClearAll showClearAll}.
|
|
154582
|
+
*
|
|
154583
|
+
* Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
|
|
154584
|
+
* will have no effect.
|
|
154585
|
+
*
|
|
154586
|
+
* Default value is `false`.
|
|
154587
|
+
*
|
|
154588
|
+
* @experimental As of version 1.142.
|
|
154589
|
+
*
|
|
154590
|
+
* @returns Value of property `showClearAll`
|
|
154591
|
+
*/
|
|
154592
|
+
getShowClearAll(): boolean;
|
|
154359
154593
|
/**
|
|
154360
154594
|
* Gets content of aggregation {@link #getTokens tokens}.
|
|
154361
154595
|
*
|
|
@@ -154523,6 +154757,27 @@ declare module "sap/m/Tokenizer" {
|
|
|
154523
154757
|
*/
|
|
154524
154758
|
bSelect: boolean
|
|
154525
154759
|
): this;
|
|
154760
|
+
/**
|
|
154761
|
+
* Sets a new value for property {@link #getDisplayOnly displayOnly}.
|
|
154762
|
+
*
|
|
154763
|
+
* Determines whether the `Tokenizer` is in display only state.
|
|
154764
|
+
*
|
|
154765
|
+
* When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
|
|
154766
|
+
*
|
|
154767
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
154768
|
+
*
|
|
154769
|
+
* Default value is `false`.
|
|
154770
|
+
*
|
|
154771
|
+
* @since 1.142.0
|
|
154772
|
+
*
|
|
154773
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
154774
|
+
*/
|
|
154775
|
+
setDisplayOnly(
|
|
154776
|
+
/**
|
|
154777
|
+
* New value for property `displayOnly`
|
|
154778
|
+
*/
|
|
154779
|
+
bDisplayOnly?: boolean
|
|
154780
|
+
): this;
|
|
154526
154781
|
/**
|
|
154527
154782
|
* Sets a new value for property {@link #getEditable editable}.
|
|
154528
154783
|
*
|
|
@@ -154590,6 +154845,45 @@ declare module "sap/m/Tokenizer" {
|
|
|
154590
154845
|
*/
|
|
154591
154846
|
sMaxWidth?: CSSSize
|
|
154592
154847
|
): this;
|
|
154848
|
+
/**
|
|
154849
|
+
* Sets a new value for property {@link #getMultiLine multiLine}.
|
|
154850
|
+
*
|
|
154851
|
+
* Defines whether tokens are displayed on multiple lines.
|
|
154852
|
+
*
|
|
154853
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
154854
|
+
*
|
|
154855
|
+
* Default value is `false`.
|
|
154856
|
+
*
|
|
154857
|
+
* @experimental As of version 1.142.
|
|
154858
|
+
*
|
|
154859
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
154860
|
+
*/
|
|
154861
|
+
setMultiLine(
|
|
154862
|
+
/**
|
|
154863
|
+
* New value for property `multiLine`
|
|
154864
|
+
*/
|
|
154865
|
+
bMultiLine?: boolean
|
|
154866
|
+
): this;
|
|
154867
|
+
/**
|
|
154868
|
+
* Sets a new value for property {@link #getName name}.
|
|
154869
|
+
*
|
|
154870
|
+
* The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
|
|
154871
|
+
* the server via submit).
|
|
154872
|
+
*
|
|
154873
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
154874
|
+
*
|
|
154875
|
+
* Default value is `empty string`.
|
|
154876
|
+
*
|
|
154877
|
+
* @since 1.142.0
|
|
154878
|
+
*
|
|
154879
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
154880
|
+
*/
|
|
154881
|
+
setName(
|
|
154882
|
+
/**
|
|
154883
|
+
* New value for property `name`
|
|
154884
|
+
*/
|
|
154885
|
+
sName?: string
|
|
154886
|
+
): this;
|
|
154593
154887
|
/**
|
|
154594
154888
|
* Function sets the tokenizer's width in pixels.
|
|
154595
154889
|
*/
|
|
@@ -154634,6 +154928,26 @@ declare module "sap/m/Tokenizer" {
|
|
|
154634
154928
|
*/
|
|
154635
154929
|
bShouldRenderTabIndex: boolean
|
|
154636
154930
|
): void;
|
|
154931
|
+
/**
|
|
154932
|
+
* Sets a new value for property {@link #getShowClearAll showClearAll}.
|
|
154933
|
+
*
|
|
154934
|
+
* Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
|
|
154935
|
+
* will have no effect.
|
|
154936
|
+
*
|
|
154937
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
154938
|
+
*
|
|
154939
|
+
* Default value is `false`.
|
|
154940
|
+
*
|
|
154941
|
+
* @experimental As of version 1.142.
|
|
154942
|
+
*
|
|
154943
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
154944
|
+
*/
|
|
154945
|
+
setShowClearAll(
|
|
154946
|
+
/**
|
|
154947
|
+
* New value for property `showClearAll`
|
|
154948
|
+
*/
|
|
154949
|
+
bShowClearAll?: boolean
|
|
154950
|
+
): this;
|
|
154637
154951
|
/**
|
|
154638
154952
|
* Sets a new value for property {@link #getWidth width}.
|
|
154639
154953
|
*
|
|
@@ -154686,6 +155000,38 @@ declare module "sap/m/Tokenizer" {
|
|
|
154686
155000
|
*/
|
|
154687
155001
|
renderMode?: string | PropertyBindingInfo;
|
|
154688
155002
|
|
|
155003
|
+
/**
|
|
155004
|
+
* The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
|
|
155005
|
+
* the server via submit).
|
|
155006
|
+
*
|
|
155007
|
+
* @since 1.142.0
|
|
155008
|
+
*/
|
|
155009
|
+
name?: string | PropertyBindingInfo;
|
|
155010
|
+
|
|
155011
|
+
/**
|
|
155012
|
+
* Determines whether the `Tokenizer` is in display only state.
|
|
155013
|
+
*
|
|
155014
|
+
* When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
|
|
155015
|
+
*
|
|
155016
|
+
* @since 1.142.0
|
|
155017
|
+
*/
|
|
155018
|
+
displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
155019
|
+
|
|
155020
|
+
/**
|
|
155021
|
+
* Defines whether tokens are displayed on multiple lines.
|
|
155022
|
+
*
|
|
155023
|
+
* @experimental As of version 1.142.
|
|
155024
|
+
*/
|
|
155025
|
+
multiLine?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
155026
|
+
|
|
155027
|
+
/**
|
|
155028
|
+
* Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
|
|
155029
|
+
* will have no effect.
|
|
155030
|
+
*
|
|
155031
|
+
* @experimental As of version 1.142.
|
|
155032
|
+
*/
|
|
155033
|
+
showClearAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
155034
|
+
|
|
154689
155035
|
/**
|
|
154690
155036
|
* the currently displayed tokens
|
|
154691
155037
|
*/
|