@openui5/types 1.141.2 → 1.142.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/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.141.2
1
+ // For Library Version: 1.142.1
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 first on the `beginButton` and then on `endButton`, when available. If another
24283
- * control needs to get the focus, set the `initialFocus` with the control which should be focused on. Setting
24284
- * `initialFocus` to input controls doesn't open the On-Screen keyboard on mobile device as, due to browser
24285
- * restriction, the On-Screen keyboard can't be opened with JavaScript code. The opening of On-Screen keyboard
24286
- * must be triggered by real user action.
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
- itemAction?: ListItemAction;
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?: Function;
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?: Function;
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?: Function;
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?: Function;
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?: Function;
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?: Function;
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?: Function;
58929
+ onClose?: (p1: (Action | keyof typeof Action) | string | null) => void;
58908
58930
  /**
58909
58931
  * Title of the warning dialog
58910
58932
  */
@@ -88950,9 +88972,13 @@ 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 in all major web browsers
88954
- * except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
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}.
88977
+ *
88978
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
88979
+ * GET request to ensure it exists and is accessible. This validation:
88980
+ * - Prevents loading invalid or non-existent PDF files
88981
+ * - If validation fails, error content is displayed instead of attempting PDF load
88956
88982
  *
88957
88983
  *
88958
88984
  * @returns Value of property `source`
@@ -89200,9 +89226,13 @@ declare module "sap/m/PDFViewer" {
89200
89226
  * Sets a new value for property {@link #getSource source}.
89201
89227
  *
89202
89228
  * 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 in all major web browsers
89204
- * except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
89205
- * For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
89229
+ * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
89230
+ * 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}.
89231
+ *
89232
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
89233
+ * GET request to ensure it exists and is accessible. This validation:
89234
+ * - Prevents loading invalid or non-existent PDF files
89235
+ * - If validation fails, error content is displayed instead of attempting PDF load
89206
89236
  *
89207
89237
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
89208
89238
  *
@@ -89269,9 +89299,13 @@ declare module "sap/m/PDFViewer" {
89269
89299
 
89270
89300
  /**
89271
89301
  * 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 in all major web browsers
89273
- * except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
89274
- * For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
89302
+ * Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
89303
+ * 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}.
89304
+ *
89305
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
89306
+ * GET request to ensure it exists and is accessible. This validation:
89307
+ * - Prevents loading invalid or non-existent PDF files
89308
+ * - If validation fails, error content is displayed instead of attempting PDF load
89275
89309
  */
89276
89310
  source?: URI | PropertyBindingInfo | `{${string}}`;
89277
89311
 
@@ -90647,7 +90681,7 @@ declare module "sap/m/PlanningCalendar" {
90647
90681
  * of the content.
90648
90682
  *
90649
90683
  * **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 41.
90684
+ * support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
90651
90685
  *
90652
90686
  * There are also some known issues with respect to the scrolling behavior and focus handling. A few are
90653
90687
  * given below:
@@ -91457,7 +91491,7 @@ declare module "sap/m/PlanningCalendar" {
91457
91491
  * of the content.
91458
91492
  *
91459
91493
  * **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 41.
91494
+ * support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
91461
91495
  *
91462
91496
  * There are also some known issues with respect to the scrolling behavior and focus handling. A few are
91463
91497
  * given below:
@@ -91721,7 +91755,7 @@ declare module "sap/m/PlanningCalendar" {
91721
91755
  * of the content.
91722
91756
  *
91723
91757
  * **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 41.
91758
+ * support this feature are Chrome (desktop and mobile), Safari (desktop and mobile) and Edge.
91725
91759
  *
91726
91760
  * There are also some known issues with respect to the scrolling behavior and focus handling. A few are
91727
91761
  * given below:
@@ -97606,6 +97640,57 @@ declare module "sap/m/plugins/UploadSetwithTable" {
97606
97640
  */
97607
97641
  oListener?: object
97608
97642
  ): this;
97643
+ /**
97644
+ * Attaches event handler `fnFunction` to the {@link #event:itemRenameCanceled itemRenameCanceled} event
97645
+ * of this `sap.m.plugins.UploadSetwithTable`.
97646
+ *
97647
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
97648
+ * otherwise it will be bound to this `sap.m.plugins.UploadSetwithTable` itself.
97649
+ *
97650
+ * The event is triggered when the file renaming process is canceled.
97651
+ *
97652
+ * @since 1.142
97653
+ *
97654
+ * @returns Reference to `this` in order to allow method chaining
97655
+ */
97656
+ attachItemRenameCanceled(
97657
+ /**
97658
+ * An application-specific payload object that will be passed to the event handler along with the event
97659
+ * object when firing the event
97660
+ */
97661
+ oData: object,
97662
+ /**
97663
+ * The function to be called when the event occurs
97664
+ */
97665
+ fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
97666
+ /**
97667
+ * Context object to call the event handler with. Defaults to this `sap.m.plugins.UploadSetwithTable` itself
97668
+ */
97669
+ oListener?: object
97670
+ ): this;
97671
+ /**
97672
+ * Attaches event handler `fnFunction` to the {@link #event:itemRenameCanceled itemRenameCanceled} event
97673
+ * of this `sap.m.plugins.UploadSetwithTable`.
97674
+ *
97675
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
97676
+ * otherwise it will be bound to this `sap.m.plugins.UploadSetwithTable` itself.
97677
+ *
97678
+ * The event is triggered when the file renaming process is canceled.
97679
+ *
97680
+ * @since 1.142
97681
+ *
97682
+ * @returns Reference to `this` in order to allow method chaining
97683
+ */
97684
+ attachItemRenameCanceled(
97685
+ /**
97686
+ * The function to be called when the event occurs
97687
+ */
97688
+ fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
97689
+ /**
97690
+ * Context object to call the event handler with. Defaults to this `sap.m.plugins.UploadSetwithTable` itself
97691
+ */
97692
+ oListener?: object
97693
+ ): this;
97609
97694
  /**
97610
97695
  * Attaches event handler `fnFunction` to the {@link #event:itemRenamed itemRenamed} event of this `sap.m.plugins.UploadSetwithTable`.
97611
97696
  *
@@ -97982,6 +98067,26 @@ declare module "sap/m/plugins/UploadSetwithTable" {
97982
98067
  */
97983
98068
  oListener?: object
97984
98069
  ): this;
98070
+ /**
98071
+ * Detaches event handler `fnFunction` from the {@link #event:itemRenameCanceled itemRenameCanceled} event
98072
+ * of this `sap.m.plugins.UploadSetwithTable`.
98073
+ *
98074
+ * The passed function and listener object must match the ones used for event registration.
98075
+ *
98076
+ * @since 1.142
98077
+ *
98078
+ * @returns Reference to `this` in order to allow method chaining
98079
+ */
98080
+ detachItemRenameCanceled(
98081
+ /**
98082
+ * The function to be called, when the event occurs
98083
+ */
98084
+ fnFunction: (p1: UploadSetwithTable$ItemRenameCanceledEvent) => void,
98085
+ /**
98086
+ * Context object on which the given function had to be called
98087
+ */
98088
+ oListener?: object
98089
+ ): this;
97985
98090
  /**
97986
98091
  * Detaches event handler `fnFunction` from the {@link #event:itemRenamed itemRenamed} event of this `sap.m.plugins.UploadSetwithTable`.
97987
98092
  *
@@ -98160,6 +98265,20 @@ declare module "sap/m/plugins/UploadSetwithTable" {
98160
98265
  */
98161
98266
  mParameters?: UploadSetwithTable$FileTypeMismatchEventParameters
98162
98267
  ): this;
98268
+ /**
98269
+ * Fires event {@link #event:itemRenameCanceled itemRenameCanceled} to attached listeners.
98270
+ *
98271
+ * @since 1.142
98272
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
98273
+ *
98274
+ * @returns Reference to `this` in order to allow method chaining
98275
+ */
98276
+ fireItemRenameCanceled(
98277
+ /**
98278
+ * Parameters to pass along with the event
98279
+ */
98280
+ mParameters?: UploadSetwithTable$ItemRenameCanceledEventParameters
98281
+ ): this;
98163
98282
  /**
98164
98283
  * Fires event {@link #event:itemRenamed itemRenamed} to attached listeners.
98165
98284
  *
@@ -99114,6 +99233,15 @@ declare module "sap/m/plugins/UploadSetwithTable" {
99114
99233
  */
99115
99234
  itemRenamed?: (oEvent: UploadSetwithTable$ItemRenamedEvent) => void;
99116
99235
 
99236
+ /**
99237
+ * The event is triggered when the file renaming process is canceled.
99238
+ *
99239
+ * @since 1.142
99240
+ */
99241
+ itemRenameCanceled?: (
99242
+ oEvent: UploadSetwithTable$ItemRenameCanceledEvent
99243
+ ) => void;
99244
+
99117
99245
  /**
99118
99246
  * This event is fired right before the upload process begins.
99119
99247
  */
@@ -99278,6 +99406,24 @@ declare module "sap/m/plugins/UploadSetwithTable" {
99278
99406
  UploadSetwithTable
99279
99407
  >;
99280
99408
 
99409
+ /**
99410
+ * Parameters of the UploadSetwithTable#itemRenameCanceled event.
99411
+ */
99412
+ export interface UploadSetwithTable$ItemRenameCanceledEventParameters {
99413
+ /**
99414
+ * The renamed UI element is of UploadItem type.
99415
+ */
99416
+ item?: UploadItem;
99417
+ }
99418
+
99419
+ /**
99420
+ * Event object of the UploadSetwithTable#itemRenameCanceled event.
99421
+ */
99422
+ export type UploadSetwithTable$ItemRenameCanceledEvent = Event<
99423
+ UploadSetwithTable$ItemRenameCanceledEventParameters,
99424
+ UploadSetwithTable
99425
+ >;
99426
+
99281
99427
  /**
99282
99428
  * Parameters of the UploadSetwithTable#itemRenamed event.
99283
99429
  */
@@ -109985,7 +110131,11 @@ declare module "sap/m/SearchField" {
109985
110131
 
109986
110132
  import { IShellBar } from "sap/f/library";
109987
110133
 
109988
- import { IToolbarInteractiveControl } from "sap/m/library";
110134
+ import {
110135
+ IToolbarInteractiveControl,
110136
+ IOverflowToolbarContent,
110137
+ OverflowToolbarConfig,
110138
+ } from "sap/m/library";
109989
110139
 
109990
110140
  import SuggestionItem from "sap/m/SuggestionItem";
109991
110141
 
@@ -110016,11 +110166,16 @@ declare module "sap/m/SearchField" {
110016
110166
  */
110017
110167
  export default class SearchField
110018
110168
  extends Control
110019
- implements IFormContent, IShellBar, IToolbarInteractiveControl
110169
+ implements
110170
+ IFormContent,
110171
+ IShellBar,
110172
+ IToolbarInteractiveControl,
110173
+ IOverflowToolbarContent
110020
110174
  {
110021
110175
  __implements__sap_ui_core_IFormContent: boolean;
110022
110176
  __implements__sap_f_IShellBar: boolean;
110023
110177
  __implements__sap_m_IToolbarInteractiveControl: boolean;
110178
+ __implements__sap_m_IOverflowToolbarContent: boolean;
110024
110179
  /**
110025
110180
  * Constructor for a new SearchField.
110026
110181
  *
@@ -110523,6 +110678,14 @@ declare module "sap/m/SearchField" {
110523
110678
  * @returns Value of property `maxLength`
110524
110679
  */
110525
110680
  getMaxLength(): int;
110681
+ /**
110682
+ * Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
110683
+ * interface.
110684
+ *
110685
+ *
110686
+ * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
110687
+ */
110688
+ getOverflowToolbarConfig(): OverflowToolbarConfig;
110526
110689
  /**
110527
110690
  * Gets current value of property {@link #getPlaceholder placeholder}.
110528
110691
  *
@@ -111262,6 +111425,7 @@ declare module "sap/m/SegmentedButton" {
111262
111425
  import {
111263
111426
  IOverflowToolbarContent,
111264
111427
  IToolbarInteractiveControl,
111428
+ SegmentedButtonContentMode,
111265
111429
  } from "sap/m/library";
111266
111430
 
111267
111431
  import Button from "sap/m/Button";
@@ -111678,6 +111842,20 @@ declare module "sap/m/SegmentedButton" {
111678
111842
  * @deprecated As of version 1.28.0. replaced by `items` aggregation
111679
111843
  */
111680
111844
  getButtons(): Button[];
111845
+ /**
111846
+ * Gets current value of property {@link #getContentMode contentMode}.
111847
+ *
111848
+ * Defines how the content of the SegmentedButton is sized. Possible values:
111849
+ * - **ContentFit**: Each button is sized according to its content.
111850
+ * - **EqualSized**: All buttons have equal width, regardless of their content.
111851
+ *
111852
+ * Default value is `EqualSized`.
111853
+ *
111854
+ * @since 1.42.0
111855
+ *
111856
+ * @returns Value of property `contentMode`
111857
+ */
111858
+ getContentMode(): SegmentedButtonContentMode;
111681
111859
  /**
111682
111860
  * Gets current value of property {@link #getEnabled enabled}.
111683
111861
  *
@@ -111737,7 +111915,8 @@ declare module "sap/m/SegmentedButton" {
111737
111915
  * Gets current value of property {@link #getWidth width}.
111738
111916
  *
111739
111917
  * 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).
111918
+ * all buttons inside of the same size (based on the biggest button). **Note:** This property functions
111919
+ * only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
111741
111920
  *
111742
111921
  *
111743
111922
  * @returns Value of property `width`
@@ -111885,6 +112064,29 @@ declare module "sap/m/SegmentedButton" {
111885
112064
  */
111886
112065
  oItem: SegmentedButtonItem
111887
112066
  ): void;
112067
+ /**
112068
+ * Sets a new value for property {@link #getContentMode contentMode}.
112069
+ *
112070
+ * Defines how the content of the SegmentedButton is sized. Possible values:
112071
+ * - **ContentFit**: Each button is sized according to its content.
112072
+ * - **EqualSized**: All buttons have equal width, regardless of their content.
112073
+ *
112074
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
112075
+ *
112076
+ * Default value is `EqualSized`.
112077
+ *
112078
+ * @since 1.42.0
112079
+ *
112080
+ * @returns Reference to `this` in order to allow method chaining
112081
+ */
112082
+ setContentMode(
112083
+ /**
112084
+ * New value for property `contentMode`
112085
+ */
112086
+ sContentMode?:
112087
+ | SegmentedButtonContentMode
112088
+ | keyof typeof SegmentedButtonContentMode
112089
+ ): this;
111888
112090
  /**
111889
112091
  * Sets a new value for property {@link #getEnabled enabled}.
111890
112092
  *
@@ -111950,7 +112152,8 @@ declare module "sap/m/SegmentedButton" {
111950
112152
  * Sets a new value for property {@link #getWidth width}.
111951
112153
  *
111952
112154
  * 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).
112155
+ * all buttons inside of the same size (based on the biggest button). **Note:** This property functions
112156
+ * only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
111954
112157
  *
111955
112158
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
111956
112159
  *
@@ -111986,7 +112189,8 @@ declare module "sap/m/SegmentedButton" {
111986
112189
  export interface $SegmentedButtonSettings extends $ControlSettings {
111987
112190
  /**
111988
112191
  * 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).
112192
+ * all buttons inside of the same size (based on the biggest button). **Note:** This property functions
112193
+ * only when the {@link sap.m.SegmentedButton#getContentMode contentMode} is set to EqualSized.
111990
112194
  */
111991
112195
  width?: CSSSize | PropertyBindingInfo | `{${string}}`;
111992
112196
 
@@ -112004,6 +112208,18 @@ declare module "sap/m/SegmentedButton" {
112004
112208
  */
112005
112209
  selectedKey?: string | PropertyBindingInfo;
112006
112210
 
112211
+ /**
112212
+ * Defines how the content of the SegmentedButton is sized. Possible values:
112213
+ * - **ContentFit**: Each button is sized according to its content.
112214
+ * - **EqualSized**: All buttons have equal width, regardless of their content.
112215
+ *
112216
+ * @since 1.42.0
112217
+ */
112218
+ contentMode?:
112219
+ | (SegmentedButtonContentMode | keyof typeof SegmentedButtonContentMode)
112220
+ | PropertyBindingInfo
112221
+ | `{${string}}`;
112222
+
112007
112223
  /**
112008
112224
  * The buttons of the SegmentedButton control. The items set in this aggregation are used as an interface
112009
112225
  * for the buttons displayed by the control. Only the properties ID, icon, text, enabled and textDirections
@@ -112310,7 +112526,8 @@ declare module "sap/m/SegmentedButtonItem" {
112310
112526
  /**
112311
112527
  * Gets current value of property {@link #getWidth width}.
112312
112528
  *
112313
- * Sets the width of the buttons.
112529
+ * Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
112530
+ * is set to EqualSized.
112314
112531
  *
112315
112532
  *
112316
112533
  * @returns Value of property `width`
@@ -112360,7 +112577,8 @@ declare module "sap/m/SegmentedButtonItem" {
112360
112577
  /**
112361
112578
  * Sets a new value for property {@link #getWidth width}.
112362
112579
  *
112363
- * Sets the width of the buttons.
112580
+ * Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
112581
+ * is set to EqualSized.
112364
112582
  *
112365
112583
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
112366
112584
  *
@@ -112390,7 +112608,8 @@ declare module "sap/m/SegmentedButtonItem" {
112390
112608
  visible?: boolean | PropertyBindingInfo | `{${string}}`;
112391
112609
 
112392
112610
  /**
112393
- * Sets the width of the buttons.
112611
+ * Sets the width of the buttons **Note:** This property functions only when the {@link sap.m.SegmentedButton#getContentMode contentMode }
112612
+ * is set to EqualSized.
112394
112613
  */
112395
112614
  width?: CSSSize | PropertyBindingInfo | `{${string}}`;
112396
112615
 
@@ -129026,11 +129245,6 @@ declare module "sap/m/SinglePlanningCalendar" {
129026
129245
  * Determines which part of the control will remain fixed at the top of the page during vertical scrolling
129027
129246
  * as long as the control is in the viewport.
129028
129247
  *
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
129248
  * Default value is `None`.
129035
129249
  *
129036
129250
  * @since 1.62
@@ -129668,11 +129882,6 @@ declare module "sap/m/SinglePlanningCalendar" {
129668
129882
  * Determines which part of the control will remain fixed at the top of the page during vertical scrolling
129669
129883
  * as long as the control is in the viewport.
129670
129884
  *
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
129885
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
129677
129886
  *
129678
129887
  * Default value is `None`.
@@ -129759,11 +129968,6 @@ declare module "sap/m/SinglePlanningCalendar" {
129759
129968
  * Determines which part of the control will remain fixed at the top of the page during vertical scrolling
129760
129969
  * as long as the control is in the viewport.
129761
129970
  *
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
129971
  * @since 1.62
129768
129972
  */
129769
129973
  stickyMode?:
@@ -130198,6 +130402,11 @@ declare module "sap/m/SinglePlanningCalendar" {
130198
130402
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
130199
130403
  */
130200
130404
  endDate?: object;
130405
+
130406
+ /**
130407
+ * The original browser event.
130408
+ */
130409
+ originalEvent?: object;
130201
130410
  }
130202
130411
 
130203
130412
  /**
@@ -153731,7 +153940,12 @@ declare module "sap/m/Token" {
153731
153940
  declare module "sap/m/Tokenizer" {
153732
153941
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
153733
153942
 
153734
- import { ID, CSSSize } from "sap/ui/core/library";
153943
+ import {
153944
+ ISemanticFormContent,
153945
+ IFormContent,
153946
+ ID,
153947
+ CSSSize,
153948
+ } from "sap/ui/core/library";
153735
153949
 
153736
153950
  import Token from "sap/m/Token";
153737
153951
 
@@ -153757,7 +153971,12 @@ declare module "sap/m/Tokenizer" {
153757
153971
  *
153758
153972
  * @since 1.22
153759
153973
  */
153760
- export default class Tokenizer extends Control {
153974
+ export default class Tokenizer
153975
+ extends Control
153976
+ implements ISemanticFormContent, IFormContent
153977
+ {
153978
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
153979
+ __implements__sap_ui_core_IFormContent: boolean;
153761
153980
  /**
153762
153981
  * Constructor for a new Tokenizer.
153763
153982
  *
@@ -154268,6 +154487,20 @@ declare module "sap/m/Tokenizer" {
154268
154487
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
154269
154488
  */
154270
154489
  getAriaLabelledBy(): ID[];
154490
+ /**
154491
+ * Gets current value of property {@link #getDisplayOnly displayOnly}.
154492
+ *
154493
+ * Determines whether the `Tokenizer` is in display only state.
154494
+ *
154495
+ * When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
154496
+ *
154497
+ * Default value is `false`.
154498
+ *
154499
+ * @since 1.142.0
154500
+ *
154501
+ * @returns Value of property `displayOnly`
154502
+ */
154503
+ getDisplayOnly(): boolean;
154271
154504
  /**
154272
154505
  * Gets current value of property {@link #getEditable editable}.
154273
154506
  *
@@ -154318,6 +154551,31 @@ declare module "sap/m/Tokenizer" {
154318
154551
  * @returns Value of property `maxWidth`
154319
154552
  */
154320
154553
  getMaxWidth(): CSSSize;
154554
+ /**
154555
+ * Gets current value of property {@link #getMultiLine multiLine}.
154556
+ *
154557
+ * Defines whether tokens are displayed on multiple lines.
154558
+ *
154559
+ * Default value is `false`.
154560
+ *
154561
+ * @experimental As of version 1.142.
154562
+ *
154563
+ * @returns Value of property `multiLine`
154564
+ */
154565
+ getMultiLine(): boolean;
154566
+ /**
154567
+ * Gets current value of property {@link #getName name}.
154568
+ *
154569
+ * The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
154570
+ * the server via submit).
154571
+ *
154572
+ * Default value is `empty string`.
154573
+ *
154574
+ * @since 1.142.0
154575
+ *
154576
+ * @returns Value of property `name`
154577
+ */
154578
+ getName(): string;
154321
154579
  /**
154322
154580
  * Gets current value of property {@link #getRenderMode renderMode}.
154323
154581
  *
@@ -154356,6 +154614,19 @@ declare module "sap/m/Tokenizer" {
154356
154614
  * @returns Array of selected tokens or empty array
154357
154615
  */
154358
154616
  getSelectedTokens(): Token[];
154617
+ /**
154618
+ * Gets current value of property {@link #getShowClearAll showClearAll}.
154619
+ *
154620
+ * Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
154621
+ * will have no effect.
154622
+ *
154623
+ * Default value is `false`.
154624
+ *
154625
+ * @experimental As of version 1.142.
154626
+ *
154627
+ * @returns Value of property `showClearAll`
154628
+ */
154629
+ getShowClearAll(): boolean;
154359
154630
  /**
154360
154631
  * Gets content of aggregation {@link #getTokens tokens}.
154361
154632
  *
@@ -154523,6 +154794,27 @@ declare module "sap/m/Tokenizer" {
154523
154794
  */
154524
154795
  bSelect: boolean
154525
154796
  ): this;
154797
+ /**
154798
+ * Sets a new value for property {@link #getDisplayOnly displayOnly}.
154799
+ *
154800
+ * Determines whether the `Tokenizer` is in display only state.
154801
+ *
154802
+ * When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
154803
+ *
154804
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154805
+ *
154806
+ * Default value is `false`.
154807
+ *
154808
+ * @since 1.142.0
154809
+ *
154810
+ * @returns Reference to `this` in order to allow method chaining
154811
+ */
154812
+ setDisplayOnly(
154813
+ /**
154814
+ * New value for property `displayOnly`
154815
+ */
154816
+ bDisplayOnly?: boolean
154817
+ ): this;
154526
154818
  /**
154527
154819
  * Sets a new value for property {@link #getEditable editable}.
154528
154820
  *
@@ -154590,6 +154882,45 @@ declare module "sap/m/Tokenizer" {
154590
154882
  */
154591
154883
  sMaxWidth?: CSSSize
154592
154884
  ): this;
154885
+ /**
154886
+ * Sets a new value for property {@link #getMultiLine multiLine}.
154887
+ *
154888
+ * Defines whether tokens are displayed on multiple lines.
154889
+ *
154890
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154891
+ *
154892
+ * Default value is `false`.
154893
+ *
154894
+ * @experimental As of version 1.142.
154895
+ *
154896
+ * @returns Reference to `this` in order to allow method chaining
154897
+ */
154898
+ setMultiLine(
154899
+ /**
154900
+ * New value for property `multiLine`
154901
+ */
154902
+ bMultiLine?: boolean
154903
+ ): this;
154904
+ /**
154905
+ * Sets a new value for property {@link #getName name}.
154906
+ *
154907
+ * The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
154908
+ * the server via submit).
154909
+ *
154910
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154911
+ *
154912
+ * Default value is `empty string`.
154913
+ *
154914
+ * @since 1.142.0
154915
+ *
154916
+ * @returns Reference to `this` in order to allow method chaining
154917
+ */
154918
+ setName(
154919
+ /**
154920
+ * New value for property `name`
154921
+ */
154922
+ sName?: string
154923
+ ): this;
154593
154924
  /**
154594
154925
  * Function sets the tokenizer's width in pixels.
154595
154926
  */
@@ -154634,6 +154965,26 @@ declare module "sap/m/Tokenizer" {
154634
154965
  */
154635
154966
  bShouldRenderTabIndex: boolean
154636
154967
  ): void;
154968
+ /**
154969
+ * Sets a new value for property {@link #getShowClearAll showClearAll}.
154970
+ *
154971
+ * Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
154972
+ * will have no effect.
154973
+ *
154974
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154975
+ *
154976
+ * Default value is `false`.
154977
+ *
154978
+ * @experimental As of version 1.142.
154979
+ *
154980
+ * @returns Reference to `this` in order to allow method chaining
154981
+ */
154982
+ setShowClearAll(
154983
+ /**
154984
+ * New value for property `showClearAll`
154985
+ */
154986
+ bShowClearAll?: boolean
154987
+ ): this;
154637
154988
  /**
154638
154989
  * Sets a new value for property {@link #getWidth width}.
154639
154990
  *
@@ -154686,6 +155037,38 @@ declare module "sap/m/Tokenizer" {
154686
155037
  */
154687
155038
  renderMode?: string | PropertyBindingInfo;
154688
155039
 
155040
+ /**
155041
+ * The name property to be used in the HTML code for the tokenizer (e.g. for HTML forms that send data to
155042
+ * the server via submit).
155043
+ *
155044
+ * @since 1.142.0
155045
+ */
155046
+ name?: string | PropertyBindingInfo;
155047
+
155048
+ /**
155049
+ * Determines whether the `Tokenizer` is in display only state.
155050
+ *
155051
+ * When set to `true`, the `Tokenizer` is not editable. This setting is used for forms in review mode.
155052
+ *
155053
+ * @since 1.142.0
155054
+ */
155055
+ displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
155056
+
155057
+ /**
155058
+ * Defines whether tokens are displayed on multiple lines.
155059
+ *
155060
+ * @experimental As of version 1.142.
155061
+ */
155062
+ multiLine?: boolean | PropertyBindingInfo | `{${string}}`;
155063
+
155064
+ /**
155065
+ * Defines whether "Clear All" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll`
155066
+ * will have no effect.
155067
+ *
155068
+ * @experimental As of version 1.142.
155069
+ */
155070
+ showClearAll?: boolean | PropertyBindingInfo | `{${string}}`;
155071
+
154689
155072
  /**
154690
155073
  * the currently displayed tokens
154691
155074
  */