@sapui5/ts-types-esm 1.133.0 → 1.134.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.
Files changed (68) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.cux.home.d.ts +0 -14
  7. package/types/sap.esh.search.ui.d.ts +7 -1
  8. package/types/sap.f.d.ts +53 -9
  9. package/types/sap.fe.base.d.ts +1 -1
  10. package/types/sap.fe.controls.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +25 -3
  12. package/types/sap.fe.ina.d.ts +1 -1
  13. package/types/sap.fe.macros.d.ts +64 -58
  14. package/types/sap.fe.navigation.d.ts +1 -1
  15. package/types/sap.fe.placeholder.d.ts +1 -1
  16. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  17. package/types/sap.fe.templates.d.ts +1 -1
  18. package/types/sap.fe.test.d.ts +1 -1
  19. package/types/sap.fe.tools.d.ts +1 -1
  20. package/types/sap.feedback.ui.d.ts +1 -1
  21. package/types/sap.gantt.d.ts +192 -136
  22. package/types/sap.insights.d.ts +1 -1
  23. package/types/sap.m.d.ts +629 -77
  24. package/types/sap.makit.d.ts +1 -1
  25. package/types/sap.me.d.ts +1 -1
  26. package/types/sap.ndc.d.ts +1 -1
  27. package/types/sap.ovp.d.ts +1 -1
  28. package/types/sap.rules.ui.d.ts +1 -1
  29. package/types/sap.sac.df.d.ts +360 -98
  30. package/types/sap.suite.ui.commons.d.ts +1 -1
  31. package/types/sap.suite.ui.generic.template.d.ts +53 -30
  32. package/types/sap.suite.ui.microchart.d.ts +1 -1
  33. package/types/sap.tnt.d.ts +107 -7
  34. package/types/sap.ui.codeeditor.d.ts +9 -7
  35. package/types/sap.ui.commons.d.ts +1 -1
  36. package/types/sap.ui.comp.d.ts +9 -28
  37. package/types/sap.ui.core.d.ts +46779 -46490
  38. package/types/sap.ui.dt.d.ts +1 -1
  39. package/types/sap.ui.export.d.ts +1 -1
  40. package/types/sap.ui.fl.d.ts +1 -1
  41. package/types/sap.ui.generic.app.d.ts +1 -1
  42. package/types/sap.ui.generic.template.d.ts +1 -1
  43. package/types/sap.ui.integration.d.ts +1 -3
  44. package/types/sap.ui.layout.d.ts +4 -2
  45. package/types/sap.ui.mdc.d.ts +227 -12
  46. package/types/sap.ui.richtexteditor.d.ts +1 -1
  47. package/types/sap.ui.rta.d.ts +76 -1
  48. package/types/sap.ui.suite.d.ts +1 -1
  49. package/types/sap.ui.support.d.ts +1 -1
  50. package/types/sap.ui.table.d.ts +1 -1
  51. package/types/sap.ui.testrecorder.d.ts +1 -1
  52. package/types/sap.ui.unified.d.ts +41 -47
  53. package/types/sap.ui.ux3.d.ts +1 -1
  54. package/types/sap.ui.vbm.d.ts +335 -4
  55. package/types/sap.ui.vk.d.ts +4 -4
  56. package/types/sap.ui.vtm.d.ts +1 -1
  57. package/types/sap.ui.webc.common.d.ts +1 -1
  58. package/types/sap.ui.webc.fiori.d.ts +1 -1
  59. package/types/sap.ui.webc.main.d.ts +1 -1
  60. package/types/sap.uiext.inbox.d.ts +1 -1
  61. package/types/sap.ushell.d.ts +69 -4
  62. package/types/sap.ushell_abap.d.ts +1 -1
  63. package/types/sap.uxap.d.ts +7 -1
  64. package/types/sap.viz.d.ts +1 -1
  65. package/types/sap.webanalytics.core.d.ts +1 -1
  66. package/types/sap.zen.commons.d.ts +1 -1
  67. package/types/sap.zen.crosstab.d.ts +1 -1
  68. 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.133.0
1
+ // For Library Version: 1.134.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -14201,7 +14201,7 @@ declare module "sap/m/ColorPalette" {
14201
14201
  /**
14202
14202
  * the selected color
14203
14203
  */
14204
- color: CSSColor
14204
+ sColor: CSSColor
14205
14205
  ): this;
14206
14206
  /**
14207
14207
  * Sets a new value for property {@link #getColors colors}.
@@ -17481,7 +17481,7 @@ declare module "sap/m/ComboBoxBase" {
17481
17481
  /**
17482
17482
  * A callback function called when typing in a ComboBoxBase control or ancestor.
17483
17483
  */
17484
- fnFilter?: (p1: string, p2: Item) => boolean
17484
+ fnFilter?: (p1?: string, p2?: Item) => boolean
17485
17485
  ): this;
17486
17486
  /**
17487
17487
  * Sets the property `_sPickerType`.
@@ -19163,7 +19163,7 @@ declare module "sap/m/DatePicker" {
19163
19163
  *
19164
19164
  * @returns the value of property `dateValue`
19165
19165
  */
19166
- getDateValue(): Date | UI5Date;
19166
+ getDateValue(): Date | UI5Date | null;
19167
19167
  /**
19168
19168
  * The date is displayed in the input field using this format. By default, the medium format of the used
19169
19169
  * locale is used.
@@ -20052,7 +20052,7 @@ declare module "sap/m/DateRangeSelection" {
20052
20052
  *
20053
20053
  * @returns the value of property `dateValue`
20054
20054
  */
20055
- getDateValue(): Date | UI5Date;
20055
+ getDateValue(): Date | UI5Date | null;
20056
20056
  /**
20057
20057
  * Gets current value of property {@link #getDelimiter delimiter}.
20058
20058
  *
@@ -20072,7 +20072,7 @@ declare module "sap/m/DateRangeSelection" {
20072
20072
  *
20073
20073
  * @returns the start date of the date range
20074
20074
  */
20075
- getFrom(): Date;
20075
+ getFrom(): Date | UI5Date | null;
20076
20076
  /**
20077
20077
  * Getter for property `secondDateValue`.
20078
20078
  *
@@ -20083,7 +20083,7 @@ declare module "sap/m/DateRangeSelection" {
20083
20083
  *
20084
20084
  * @returns the value of property `secondDateValue`
20085
20085
  */
20086
- getSecondDateValue(): Date | UI5Date;
20086
+ getSecondDateValue(): Date | UI5Date | null;
20087
20087
  /**
20088
20088
  * Get the end date of the range.
20089
20089
  *
@@ -20091,7 +20091,7 @@ declare module "sap/m/DateRangeSelection" {
20091
20091
  *
20092
20092
  * @returns the end date of the date range
20093
20093
  */
20094
- getTo(): Date | UI5Date;
20094
+ getTo(): Date | UI5Date | null;
20095
20095
  /**
20096
20096
  * Getter for property `value`.
20097
20097
  *
@@ -20128,7 +20128,7 @@ declare module "sap/m/DateRangeSelection" {
20128
20128
  /**
20129
20129
  * New value for property `dateValue`
20130
20130
  */
20131
- oDateValue: Date | UI5Date
20131
+ oDateValue: Date | UI5Date | null
20132
20132
  ): this;
20133
20133
  /**
20134
20134
  * Sets a new value for property {@link #getDelimiter delimiter}.
@@ -20172,7 +20172,7 @@ declare module "sap/m/DateRangeSelection" {
20172
20172
  /**
20173
20173
  * A date instance
20174
20174
  */
20175
- oFrom: Date | UI5Date
20175
+ oFrom: Date | UI5Date | null
20176
20176
  ): this;
20177
20177
  /**
20178
20178
  * Set maximum date that can be shown and selected in the `DatePicker`. This must be a UI5Date or JavaScript
@@ -20214,7 +20214,7 @@ declare module "sap/m/DateRangeSelection" {
20214
20214
  /**
20215
20215
  * New value for property `dateValue`
20216
20216
  */
20217
- oSecondDateValue: Date | UI5Date
20217
+ oSecondDateValue: Date | UI5Date | null
20218
20218
  ): this;
20219
20219
  /**
20220
20220
  * Set the end date of the range.
@@ -20227,7 +20227,7 @@ declare module "sap/m/DateRangeSelection" {
20227
20227
  /**
20228
20228
  * A date instance
20229
20229
  */
20230
- oTo: Date | UI5Date
20230
+ oTo: Date | UI5Date | null
20231
20231
  ): this;
20232
20232
  /**
20233
20233
  * Setter for property `value`.
@@ -20322,10 +20322,10 @@ declare module "sap/m/DateRangeSelection" {
20322
20322
  declare module "sap/m/DateTimeField" {
20323
20323
  import { default as InputBase, $InputBaseSettings } from "sap/m/InputBase";
20324
20324
 
20325
- import ElementMetadata from "sap/ui/core/ElementMetadata";
20326
-
20327
20325
  import UI5Date from "sap/ui/core/date/UI5Date";
20328
20326
 
20327
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
20328
+
20329
20329
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
20330
20330
 
20331
20331
  import Event from "sap/ui/base/Event";
@@ -20489,18 +20489,16 @@ declare module "sap/m/DateTimeField" {
20489
20489
  mParameters?: DateTimeField$LiveChangeEventParameters
20490
20490
  ): this;
20491
20491
  /**
20492
- * Gets current value of property {@link #getDateValue dateValue}.
20492
+ * Getter for property `dateValue`.
20493
20493
  *
20494
- * Holds a reference to a UI5Date or JavaScript Date object. The `value` (string) property will be set according
20495
- * to it. Alternatively, if the `value` and `valueFormat` pair properties are supplied instead, the `dateValue`
20496
- * will be instantiated according to the parsed `value`. Use `dateValue` as a helper property to easily
20497
- * obtain the day, month, year, hours, minutes and seconds of the chosen date and time. Although possible
20498
- * to bind it, the recommendation is not to do it. When binding is needed, use `value` property instead.
20494
+ * The date and time in DateTimeField as UI5Date or JavaScript Date object.
20495
+ *
20496
+ * **Note:** If this property is used, the `value` property should not be changed from the caller.
20499
20497
  *
20500
20498
  *
20501
- * @returns Value of property `dateValue`
20499
+ * @returns the value of property `dateValue`
20502
20500
  */
20503
- getDateValue(): object;
20501
+ getDateValue(): Date | UI5Date | null;
20504
20502
  /**
20505
20503
  * Gets current value of property {@link #getDisplayFormat displayFormat}.
20506
20504
  *
@@ -20565,7 +20563,7 @@ declare module "sap/m/DateTimeField" {
20565
20563
  /**
20566
20564
  * A date instance
20567
20565
  */
20568
- oDate: Date | UI5Date
20566
+ oDate: Date | UI5Date | null
20569
20567
  ): this;
20570
20568
  /**
20571
20569
  * Sets a new value for property {@link #getDisplayFormat displayFormat}.
@@ -22686,21 +22684,16 @@ declare module "sap/m/Dialog" {
22686
22684
  /**
22687
22685
  * Gets current value of property {@link #getEscapeHandler escapeHandler}.
22688
22686
  *
22689
- * This property expects a function with one parameter of type Promise. In the function, you should call
22690
- * either `resolve()` or `reject()` on the Promise object. The function allows you to define custom behavior
22691
- * which will be executed when the Escape key is pressed. By default, when the Escape key is pressed, the
22692
- * dialog is immediately closed.
22687
+ * This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
22688
+ * closed.
22689
+ * The property expects a function with one object parameter with `resolve` and `reject` properties. In
22690
+ * the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
22693
22691
  *
22692
+ * @since 1.44
22694
22693
  *
22695
22694
  * @returns Value of property `escapeHandler`
22696
22695
  */
22697
- getEscapeHandler():
22698
- | ((p1: {
22699
- resolve: Function;
22700
-
22701
- reject: Function;
22702
- }) => void)
22703
- | null;
22696
+ getEscapeHandler(): EscapeHandler;
22704
22697
  /**
22705
22698
  * Gets content of aggregation {@link #getFooter footer}.
22706
22699
  *
@@ -23176,15 +23169,16 @@ declare module "sap/m/Dialog" {
23176
23169
  oEndButton: Button
23177
23170
  ): this;
23178
23171
  /**
23179
- * Sets a new value for property {@link #setEscapeHandler escapeHandler}.
23172
+ * Sets a new value for property {@link #getEscapeHandler escapeHandler}.
23180
23173
  *
23181
- * This property expects a function with one parameter of type Promise. In the function, you should call
23182
- * either `resolve()` or `reject()` on the Promise object. The function allows you to define custom behavior
23183
- * which will be executed when the Escape key is pressed. By default, when the Escape key is pressed, the
23184
- * dialog is immediately closed.
23174
+ * This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
23175
+ * closed.
23176
+ * The property expects a function with one object parameter with `resolve` and `reject` properties. In
23177
+ * the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
23185
23178
  *
23186
23179
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
23187
23180
  *
23181
+ * @since 1.44
23188
23182
  *
23189
23183
  * @returns Reference to `this` in order to allow method chaining
23190
23184
  */
@@ -23192,11 +23186,7 @@ declare module "sap/m/Dialog" {
23192
23186
  /**
23193
23187
  * New value for property `escapeHandler`
23194
23188
  */
23195
- fnEscapeHandler?: (p1: {
23196
- resolve: Function;
23197
-
23198
- reject: Function;
23199
- }) => void
23189
+ sEscapeHandler?: EscapeHandler
23200
23190
  ): this;
23201
23191
  /**
23202
23192
  * Sets the aggregated {@link #getFooter footer}.
@@ -23495,6 +23485,11 @@ declare module "sap/m/Dialog" {
23495
23485
  bVerticalScrolling?: boolean
23496
23486
  ): this;
23497
23487
  }
23488
+ /**
23489
+ * Escape handler for sap.m.Dialog control.
23490
+ */
23491
+ export type EscapeHandler = (oHandlers: object) => void;
23492
+
23498
23493
  /**
23499
23494
  * Describes the settings that can be provided to the Dialog constructor.
23500
23495
  */
@@ -23621,14 +23616,14 @@ declare module "sap/m/Dialog" {
23621
23616
  draggable?: boolean | PropertyBindingInfo | `{${string}}`;
23622
23617
 
23623
23618
  /**
23624
- * This property expects a function with one parameter of type Promise. In the function, you should call
23625
- * either `resolve()` or `reject()` on the Promise object.
23626
- * The function allows you to define custom behavior which will be executed when the Escape key is pressed.
23627
- * By default, when the Escape key is pressed, the Dialog is immediately closed.
23619
+ * This property allows to define custom behavior if the Escape key is pressed. By default, the Dialog is
23620
+ * closed.
23621
+ * The property expects a function with one object parameter with `resolve` and `reject` properties. In
23622
+ * the function, either call `resolve` to close the dialog or call `reject` to prevent it from being closed.
23628
23623
  *
23629
23624
  * @since 1.44
23630
23625
  */
23631
- escapeHandler?: Function | PropertyBindingInfo | `{${string}}`;
23626
+ escapeHandler?: EscapeHandler | PropertyBindingInfo | `{${string}}`;
23632
23627
 
23633
23628
  /**
23634
23629
  * Indicates whether the Dialog will be closed automatically when a routing navigation occurs.
@@ -31046,7 +31041,11 @@ declare module "sap/m/FeedListItemAction" {
31046
31041
  declare module "sap/m/FlexBox" {
31047
31042
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
31048
31043
 
31049
- import { AccessibilityInfo, CSSSize } from "sap/ui/core/library";
31044
+ import {
31045
+ AccessibilityInfo,
31046
+ CSSSize,
31047
+ CSSGapShortHand,
31048
+ } from "sap/ui/core/library";
31050
31049
 
31051
31050
  import {
31052
31051
  FlexAlignContent,
@@ -31205,6 +31204,18 @@ declare module "sap/m/FlexBox" {
31205
31204
  * @returns Value of property `backgroundDesign`
31206
31205
  */
31207
31206
  getBackgroundDesign(): BackgroundDesign;
31207
+ /**
31208
+ * Gets current value of property {@link #getColumnGap columnGap}.
31209
+ *
31210
+ * The size of the gap between columns.
31211
+ *
31212
+ * Default value is `empty string`.
31213
+ *
31214
+ * @since 1.134
31215
+ *
31216
+ * @returns Value of property `columnGap`
31217
+ */
31218
+ getColumnGap(): CSSSize;
31208
31219
  /**
31209
31220
  * Gets current value of property {@link #getDirection direction}.
31210
31221
  *
@@ -31240,6 +31251,20 @@ declare module "sap/m/FlexBox" {
31240
31251
  * @returns Value of property `fitContainer`
31241
31252
  */
31242
31253
  getFitContainer(): boolean;
31254
+ /**
31255
+ * Gets current value of property {@link #getGap gap}.
31256
+ *
31257
+ * The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
31258
+ * properties. If either of the properties is set, the `gap` value will have lower priority and will be
31259
+ * overwritten.
31260
+ *
31261
+ * Default value is `empty string`.
31262
+ *
31263
+ * @since 1.134
31264
+ *
31265
+ * @returns Value of property `gap`
31266
+ */
31267
+ getGap(): CSSGapShortHand;
31243
31268
  /**
31244
31269
  * Gets current value of property {@link #getHeight height}.
31245
31270
  *
@@ -31283,6 +31308,18 @@ declare module "sap/m/FlexBox" {
31283
31308
  * @returns Value of property `renderType`
31284
31309
  */
31285
31310
  getRenderType(): FlexRendertype;
31311
+ /**
31312
+ * Gets current value of property {@link #getRowGap rowGap}.
31313
+ *
31314
+ * The size of the gap between rows.
31315
+ *
31316
+ * Default value is `empty string`.
31317
+ *
31318
+ * @since 1.134
31319
+ *
31320
+ * @returns Value of property `rowGap`
31321
+ */
31322
+ getRowGap(): CSSSize;
31286
31323
  /**
31287
31324
  * Gets current value of property {@link #getWidth width}.
31288
31325
  *
@@ -31417,6 +31454,25 @@ declare module "sap/m/FlexBox" {
31417
31454
  */
31418
31455
  sBackgroundDesign?: BackgroundDesign | keyof typeof BackgroundDesign
31419
31456
  ): this;
31457
+ /**
31458
+ * Sets a new value for property {@link #getColumnGap columnGap}.
31459
+ *
31460
+ * The size of the gap between columns.
31461
+ *
31462
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
31463
+ *
31464
+ * Default value is `empty string`.
31465
+ *
31466
+ * @since 1.134
31467
+ *
31468
+ * @returns Reference to `this` in order to allow method chaining
31469
+ */
31470
+ setColumnGap(
31471
+ /**
31472
+ * New value for property `columnGap`
31473
+ */
31474
+ sColumnGap?: CSSSize
31475
+ ): this;
31420
31476
  /**
31421
31477
  * Sets a new value for property {@link #getDirection direction}.
31422
31478
  *
@@ -31473,6 +31529,27 @@ declare module "sap/m/FlexBox" {
31473
31529
  */
31474
31530
  bFitContainer?: boolean
31475
31531
  ): this;
31532
+ /**
31533
+ * Sets a new value for property {@link #getGap gap}.
31534
+ *
31535
+ * The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
31536
+ * properties. If either of the properties is set, the `gap` value will have lower priority and will be
31537
+ * overwritten.
31538
+ *
31539
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
31540
+ *
31541
+ * Default value is `empty string`.
31542
+ *
31543
+ * @since 1.134
31544
+ *
31545
+ * @returns Reference to `this` in order to allow method chaining
31546
+ */
31547
+ setGap(
31548
+ /**
31549
+ * New value for property `gap`
31550
+ */
31551
+ sGap?: CSSGapShortHand
31552
+ ): this;
31476
31553
  /**
31477
31554
  * Sets a new value for property {@link #getHeight height}.
31478
31555
  *
@@ -31523,6 +31600,25 @@ declare module "sap/m/FlexBox" {
31523
31600
  */
31524
31601
  sValue: FlexRendertype | keyof typeof FlexRendertype
31525
31602
  ): this;
31603
+ /**
31604
+ * Sets a new value for property {@link #getRowGap rowGap}.
31605
+ *
31606
+ * The size of the gap between rows.
31607
+ *
31608
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
31609
+ *
31610
+ * Default value is `empty string`.
31611
+ *
31612
+ * @since 1.134
31613
+ *
31614
+ * @returns Reference to `this` in order to allow method chaining
31615
+ */
31616
+ setRowGap(
31617
+ /**
31618
+ * New value for property `rowGap`
31619
+ */
31620
+ sRowGap?: CSSSize
31621
+ ): this;
31526
31622
  /**
31527
31623
  * Sets a new value for property {@link #getWidth width}.
31528
31624
  *
@@ -31661,6 +31757,29 @@ declare module "sap/m/FlexBox" {
31661
31757
  | PropertyBindingInfo
31662
31758
  | `{${string}}`;
31663
31759
 
31760
+ /**
31761
+ * The size of the gap between columns and rows. It serves as a shorthand property for `rowGap` and `columnGap`
31762
+ * properties. If either of the properties is set, the `gap` value will have lower priority and will be
31763
+ * overwritten.
31764
+ *
31765
+ * @since 1.134
31766
+ */
31767
+ gap?: CSSGapShortHand | PropertyBindingInfo | `{${string}}`;
31768
+
31769
+ /**
31770
+ * The size of the gap between rows.
31771
+ *
31772
+ * @since 1.134
31773
+ */
31774
+ rowGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
31775
+
31776
+ /**
31777
+ * The size of the gap between columns.
31778
+ *
31779
+ * @since 1.134
31780
+ */
31781
+ columnGap?: CSSSize | PropertyBindingInfo | `{${string}}`;
31782
+
31664
31783
  /**
31665
31784
  * Flex items within the flexible box layout
31666
31785
  */
@@ -32265,6 +32384,17 @@ declare module "sap/m/FormattedText" {
32265
32384
  * @returns Value of property `convertLinksToAnchorTags`
32266
32385
  */
32267
32386
  getConvertLinksToAnchorTags(): LinkConversion;
32387
+ /**
32388
+ * Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
32389
+ *
32390
+ * Disables rendering of the `style` attribute in the `FormattedText`.
32391
+ *
32392
+ * Default value is `false`.
32393
+ *
32394
+ *
32395
+ * @returns Value of property `disableStyleAttribute`
32396
+ */
32397
+ getDisableStyleAttribute(): boolean;
32268
32398
  /**
32269
32399
  * Gets current value of property {@link #getHeight height}.
32270
32400
  *
@@ -32449,6 +32579,24 @@ declare module "sap/m/FormattedText" {
32449
32579
  */
32450
32580
  sConvertLinksToAnchorTags?: LinkConversion | keyof typeof LinkConversion
32451
32581
  ): this;
32582
+ /**
32583
+ * Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
32584
+ *
32585
+ * Disables rendering of the `style` attribute in the `FormattedText`.
32586
+ *
32587
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
32588
+ *
32589
+ * Default value is `false`.
32590
+ *
32591
+ *
32592
+ * @returns Reference to `this` in order to allow method chaining
32593
+ */
32594
+ setDisableStyleAttribute(
32595
+ /**
32596
+ * New value for property `disableStyleAttribute`
32597
+ */
32598
+ bDisableStyleAttribute?: boolean
32599
+ ): this;
32452
32600
  /**
32453
32601
  * Sets a new value for property {@link #getHeight height}.
32454
32602
  *
@@ -32636,6 +32784,11 @@ declare module "sap/m/FormattedText" {
32636
32784
  | PropertyBindingInfo
32637
32785
  | `{${string}}`;
32638
32786
 
32787
+ /**
32788
+ * Disables rendering of the `style` attribute in the `FormattedText`.
32789
+ */
32790
+ disableStyleAttribute?: boolean | PropertyBindingInfo | `{${string}}`;
32791
+
32639
32792
  /**
32640
32793
  * List of `sap.m.Link` controls that will be used to replace the placeholders in the text. Placeholders
32641
32794
  * are replaced according to their indexes. The placeholder with index %%0 will be replaced by the first
@@ -33125,7 +33278,11 @@ declare module "sap/m/GenericTile" {
33125
33278
  *
33126
33279
  * @since 1.34.0
33127
33280
  */
33128
- export default class GenericTile extends Control {
33281
+ export default class GenericTile
33282
+ extends Control
33283
+ implements /* was: sap.f.IGridContainerItem */ Object
33284
+ {
33285
+ __implements__sap_f_IGridContainerItem: boolean;
33129
33286
  /**
33130
33287
  * Constructor for a new sap.m.GenericTile control.
33131
33288
  *
@@ -33432,7 +33589,8 @@ declare module "sap/m/GenericTile" {
33432
33589
  /**
33433
33590
  * Gets current value of property {@link #getAriaRole ariaRole}.
33434
33591
  *
33435
- * Additional description for aria-role.
33592
+ * Additional description for aria-role. *Note:** When the control is placed inside a `sap.f.GridContainer`,
33593
+ * its accessibility role is overridden by the accessibility role specified by the `sap.f.GridContainer`.
33436
33594
  *
33437
33595
  * @since 1.83
33438
33596
  *
@@ -33521,6 +33679,13 @@ declare module "sap/m/GenericTile" {
33521
33679
  * @returns Value of property `frameType`
33522
33680
  */
33523
33681
  getFrameType(): FrameType;
33682
+ /**
33683
+ * Returns the accessibility role for the `sap.f.GridContainer` item.
33684
+ *
33685
+ *
33686
+ * @returns The accessibility role for the `sap.f.GridContainer` item
33687
+ */
33688
+ getGridItemRole(): string;
33524
33689
  /**
33525
33690
  * Gets current value of property {@link #getHeader header}.
33526
33691
  *
@@ -33984,7 +34149,8 @@ declare module "sap/m/GenericTile" {
33984
34149
  /**
33985
34150
  * Sets a new value for property {@link #getAriaRole ariaRole}.
33986
34151
  *
33987
- * Additional description for aria-role.
34152
+ * Additional description for aria-role. *Note:** When the control is placed inside a `sap.f.GridContainer`,
34153
+ * its accessibility role is overridden by the accessibility role specified by the `sap.f.GridContainer`.
33988
34154
  *
33989
34155
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
33990
34156
  *
@@ -34635,6 +34801,9 @@ declare module "sap/m/GenericTile" {
34635
34801
  /**
34636
34802
  * Additional description for aria-role.
34637
34803
  *
34804
+ * **Note:** When the control is placed inside a `sap.f.GridContainer`, its accessibility role is overridden
34805
+ * by the accessibility role specified by the `sap.f.GridContainer`.
34806
+ *
34638
34807
  * @since 1.83
34639
34808
  */
34640
34809
  ariaRole?: string | PropertyBindingInfo;
@@ -43667,9 +43836,9 @@ declare module "sap/m/Input" {
43667
43836
  * filtered. Returning true will add this item to the popup, returning false will not display it.
43668
43837
  */
43669
43838
  fnFilter: (
43670
- p1: string,
43671
- p2: Item,
43672
- p3: boolean
43839
+ p1?: string,
43840
+ p2?: Item,
43841
+ p3?: boolean
43673
43842
  ) => boolean | undefined | Function
43674
43843
  ): this;
43675
43844
  /**
@@ -43747,9 +43916,9 @@ declare module "sap/m/Input" {
43747
43916
  * must return a result string that will be displayed as the input field's value.
43748
43917
  */
43749
43918
  fnFilter: (
43750
- p1: string,
43751
- p2: Item,
43752
- p3: boolean
43919
+ p1?: string,
43920
+ p2?: Item,
43921
+ p3?: boolean
43753
43922
  ) => boolean | undefined | Function
43754
43923
  ): this;
43755
43924
  /**
@@ -112203,7 +112372,10 @@ declare module "sap/m/SelectDialog" {
112203
112372
  * instead. Note:: The property `growing` determines the progressive loading. If it's set to `true`
112204
112373
  * (the default value), the selected count (if present) and search, will work for currently loaded items
112205
112374
  * only. To make sure that all items in the list are loaded at once and the above features works properly,
112206
- * we recommend setting the `growing` property to `false`. Responsive Behavior:
112375
+ * we recommend setting the `growing` property to `false`. **Note: **The default size limit for entries
112376
+ * used for list bindings is set to 100. To change this behavior, you can adjust the size limit by using
112377
+ * `sap.ui.model.Model.prototype.setSizeLimit`; see {@link sap.ui.model.Model#setSizeLimit}. Responsive
112378
+ * Behavior:
112207
112379
  * - On phones, the select dialog takes up the whole screen.
112208
112380
  * - On desktop and tablet devices, the select dialog appears as a popover. When using the `sap.m.SelectDialog`
112209
112381
  * in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the dialog's
@@ -112689,8 +112861,8 @@ declare module "sap/m/SelectDialog" {
112689
112861
  * bound model (progressive loading). **Note:** This feature only works when an `items` aggregation is bound.
112690
112862
  * **Note:** Growing property, must not be used together with two-way binding. **Note:** If the property
112691
112863
  * is set to `true`, selected count (if present) and search, will work for currently loaded items only.
112692
- * To make sure that all items in the table are loaded at once and the above features work properly, we
112693
- * recommend setting the `growing` property to false.
112864
+ * To make sure that all items in the list are loaded at once and the above features work properly, we recommend
112865
+ * setting the `growing` property to false.
112694
112866
  *
112695
112867
  * Default value is `true`.
112696
112868
  *
@@ -113195,8 +113367,8 @@ declare module "sap/m/SelectDialog" {
113195
113367
  * bound model (progressive loading). **Note:** This feature only works when an `items` aggregation is bound.
113196
113368
  * **Note:** Growing property, must not be used together with two-way binding. **Note:** If the property
113197
113369
  * is set to `true`, selected count (if present) and search, will work for currently loaded items only.
113198
- * To make sure that all items in the table are loaded at once and the above features work properly, we
113199
- * recommend setting the `growing` property to false.
113370
+ * To make sure that all items in the list are loaded at once and the above features work properly, we recommend
113371
+ * setting the `growing` property to false.
113200
113372
  *
113201
113373
  * @since 1.56
113202
113374
  */
@@ -143567,12 +143739,15 @@ declare module "sap/m/TableSelectDialog" {
143567
143739
  * - The property `growing` must not be used together with two-way binding. When the property `growing`
143568
143740
  * is set to `true` (default value), selected count (if present) and search, will work for currently loaded
143569
143741
  * items only. To make sure that all items in the table are loaded at once and the above features work properly,
143570
- * set the property to `false`. Since version 1.58, the columns headers and the info toolbar are sticky
143571
- * (remain fixed on top when scrolling). This feature is not supported in all browsers. The TableSelectDialog
143572
- * is usually displayed at the center of the screen. Its size and position can be changed by the user. To
143573
- * enable this you need to set the `resizable` and `draggable` properties. Both properties are available
143574
- * only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase sap.m.ListBase }
143575
- * `sticky` property. Responsive Behavior:
143742
+ * set the property to `false`. **Note: **The default size limit for entries used for table bindings is
143743
+ * set to 100. To change this behavior, you can adjust the size limit by using `sap.ui.model.Model.prototype.setSizeLimit`;
143744
+ * see {@link sap.ui.model.Model#setSizeLimit}. Since version 1.58, the columns headers and the info
143745
+ * toolbar are sticky (remain fixed on top when scrolling). This feature is not supported in all browsers.
143746
+ * The TableSelectDialog is usually displayed at the center of the screen. Its size and position can
143747
+ * be changed by the user. To enable this you need to set the `resizable` and `draggable` properties. Both
143748
+ * properties are available only in desktop mode. For more information on current restrictions, you can
143749
+ * refer to the {@link sap.m.ListBase sap.m.ListBase} `sticky` property. Responsive Behavior:
143750
+ *
143576
143751
  * - On smaller screens, the columns of the table wrap and build a list that shows all the information.
143577
143752
  * When using the `sap.m.TableSelectDialog` in SAP Quartz and Horizon themes, the breakpoints and
143578
143753
  * layout paddings could be determined by the dialog's width. To enable this concept and add responsive
@@ -149199,6 +149374,8 @@ declare module "sap/m/TimePickerClocks" {
149199
149374
 
149200
149375
  import UI5Date from "sap/ui/core/date/UI5Date";
149201
149376
 
149377
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
149378
+
149202
149379
  /**
149203
149380
  * A picker clocks container control used inside the {@link sap.m.TimePicker}.
149204
149381
  *
@@ -149267,6 +149444,17 @@ declare module "sap/m/TimePickerClocks" {
149267
149444
  * @returns Metadata object describing this class
149268
149445
  */
149269
149446
  static getMetadata(): ElementMetadata;
149447
+ /**
149448
+ * Gets current value of property {@link #getSkipAnimation skipAnimation}.
149449
+ *
149450
+ * When set to `true`, the clock will be displayed without the animation.
149451
+ *
149452
+ * Default value is `false`.
149453
+ *
149454
+ *
149455
+ * @returns Value of property `skipAnimation`
149456
+ */
149457
+ getSkipAnimation(): boolean;
149270
149458
  /**
149271
149459
  * Gets the time values from the clocks, as a date object.
149272
149460
  *
@@ -149279,29 +149467,53 @@ declare module "sap/m/TimePickerClocks" {
149279
149467
  */
149280
149468
  init(): void;
149281
149469
  /**
149282
- * Sets the value of the `TimePickerClocks` container.
149470
+ * Prepare the control for opening. If there are already clock and button objects created, set their appearance-related
149471
+ * properties.
149283
149472
  *
149284
149473
  *
149285
149474
  * @returns Pointer to the control instance to allow method chaining
149286
149475
  */
149287
- setValue(
149476
+ prepareForOpen(): this;
149477
+ /**
149478
+ * Sets a new value for property {@link #getSkipAnimation skipAnimation}.
149479
+ *
149480
+ * When set to `true`, the clock will be displayed without the animation.
149481
+ *
149482
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
149483
+ *
149484
+ * Default value is `false`.
149485
+ *
149486
+ *
149487
+ * @returns Reference to `this` in order to allow method chaining
149488
+ */
149489
+ setSkipAnimation(
149288
149490
  /**
149289
- * The value of the `TimePickerClocks`
149491
+ * New value for property `skipAnimation`
149290
149492
  */
149291
- sValue: string
149493
+ bSkipAnimation?: boolean
149292
149494
  ): this;
149293
149495
  /**
149294
- * Opens first clock.
149496
+ * Sets the value of the `TimePickerClocks` container.
149295
149497
  *
149296
149498
  *
149297
149499
  * @returns Pointer to the control instance to allow method chaining
149298
149500
  */
149299
- showFirstClock(): this;
149501
+ setValue(
149502
+ /**
149503
+ * The value of the `TimePickerClocks`
149504
+ */
149505
+ sValue: string
149506
+ ): this;
149300
149507
  }
149301
149508
  /**
149302
149509
  * Describes the settings that can be provided to the TimePickerClocks constructor.
149303
149510
  */
149304
- export interface $TimePickerClocksSettings extends $ControlSettings {}
149511
+ export interface $TimePickerClocksSettings extends $ControlSettings {
149512
+ /**
149513
+ * When set to `true`, the clock will be displayed without the animation.
149514
+ */
149515
+ skipAnimation?: boolean | PropertyBindingInfo | `{${string}}`;
149516
+ }
149305
149517
  }
149306
149518
 
149307
149519
  declare module "sap/m/TimePickerInputs" {
@@ -155823,6 +156035,55 @@ declare module "sap/m/upload/UploaderTableItem" {
155823
156035
  */
155824
156036
  oListener?: object
155825
156037
  ): this;
156038
+ /**
156039
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
156040
+ * this `sap.m.upload.UploaderTableItem`.
156041
+ *
156042
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
156043
+ * otherwise it will be bound to this `sap.m.upload.UploaderTableItem` itself.
156044
+ *
156045
+ * The event is fired when an XHR request reports its termination.
156046
+ *
156047
+ *
156048
+ * @returns Reference to `this` in order to allow method chaining
156049
+ */
156050
+ attachUploadTerminated(
156051
+ /**
156052
+ * An application-specific payload object that will be passed to the event handler along with the event
156053
+ * object when firing the event
156054
+ */
156055
+ oData: object,
156056
+ /**
156057
+ * The function to be called when the event occurs
156058
+ */
156059
+ fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
156060
+ /**
156061
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploaderTableItem` itself
156062
+ */
156063
+ oListener?: object
156064
+ ): this;
156065
+ /**
156066
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
156067
+ * this `sap.m.upload.UploaderTableItem`.
156068
+ *
156069
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
156070
+ * otherwise it will be bound to this `sap.m.upload.UploaderTableItem` itself.
156071
+ *
156072
+ * The event is fired when an XHR request reports its termination.
156073
+ *
156074
+ *
156075
+ * @returns Reference to `this` in order to allow method chaining
156076
+ */
156077
+ attachUploadTerminated(
156078
+ /**
156079
+ * The function to be called when the event occurs
156080
+ */
156081
+ fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
156082
+ /**
156083
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploaderTableItem` itself
156084
+ */
156085
+ oListener?: object
156086
+ ): this;
155826
156087
  /**
155827
156088
  * Detaches event handler `fnFunction` from the {@link #event:uploadCompleted uploadCompleted} event of
155828
156089
  * this `sap.m.upload.UploaderTableItem`.
@@ -155880,6 +156141,25 @@ declare module "sap/m/upload/UploaderTableItem" {
155880
156141
  */
155881
156142
  oListener?: object
155882
156143
  ): this;
156144
+ /**
156145
+ * Detaches event handler `fnFunction` from the {@link #event:uploadTerminated uploadTerminated} event of
156146
+ * this `sap.m.upload.UploaderTableItem`.
156147
+ *
156148
+ * The passed function and listener object must match the ones used for event registration.
156149
+ *
156150
+ *
156151
+ * @returns Reference to `this` in order to allow method chaining
156152
+ */
156153
+ detachUploadTerminated(
156154
+ /**
156155
+ * The function to be called, when the event occurs
156156
+ */
156157
+ fnFunction: (p1: UploaderTableItem$UploadTerminatedEvent) => void,
156158
+ /**
156159
+ * Context object on which the given function had to be called
156160
+ */
156161
+ oListener?: object
156162
+ ): this;
155883
156163
  /**
155884
156164
  * Starts the process of downloading a file.
155885
156165
  *
@@ -155939,6 +156219,19 @@ declare module "sap/m/upload/UploaderTableItem" {
155939
156219
  */
155940
156220
  mParameters?: UploaderTableItem$UploadStartedEventParameters
155941
156221
  ): this;
156222
+ /**
156223
+ * Fires event {@link #event:uploadTerminated uploadTerminated} to attached listeners.
156224
+ *
156225
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
156226
+ *
156227
+ * @returns Reference to `this` in order to allow method chaining
156228
+ */
156229
+ fireUploadTerminated(
156230
+ /**
156231
+ * Parameters to pass along with the event
156232
+ */
156233
+ mParameters?: UploaderTableItem$UploadTerminatedEventParameters
156234
+ ): this;
155942
156235
  /**
155943
156236
  * Gets current value of property {@link #getDownloadUrl downloadUrl}.
155944
156237
  *
@@ -156049,6 +156342,15 @@ declare module "sap/m/upload/UploaderTableItem" {
156049
156342
  */
156050
156343
  bUseMultipart?: boolean
156051
156344
  ): this;
156345
+ /**
156346
+ * Attempts to terminate the process of uploading the specified file.
156347
+ */
156348
+ terminateItem(
156349
+ /**
156350
+ * Item representing the file whose ongoing upload process is to be terminated.
156351
+ */
156352
+ oItem: UploadItem
156353
+ ): void;
156052
156354
  /**
156053
156355
  * Starts the process of uploading the specified file.
156054
156356
  */
@@ -156107,6 +156409,13 @@ declare module "sap/m/upload/UploaderTableItem" {
156107
156409
  * The event is fired when an XHR request reports successful completion of upload process.
156108
156410
  */
156109
156411
  uploadCompleted?: (oEvent: UploaderTableItem$UploadCompletedEvent) => void;
156412
+
156413
+ /**
156414
+ * The event is fired when an XHR request reports its termination.
156415
+ */
156416
+ uploadTerminated?: (
156417
+ oEvent: UploaderTableItem$UploadTerminatedEvent
156418
+ ) => void;
156110
156419
  }
156111
156420
 
156112
156421
  /**
@@ -156190,6 +156499,24 @@ declare module "sap/m/upload/UploaderTableItem" {
156190
156499
  UploaderTableItem$UploadStartedEventParameters,
156191
156500
  UploaderTableItem
156192
156501
  >;
156502
+
156503
+ /**
156504
+ * Parameters of the UploaderTableItem#uploadTerminated event.
156505
+ */
156506
+ export interface UploaderTableItem$UploadTerminatedEventParameters {
156507
+ /**
156508
+ * The item that is going to be deleted.
156509
+ */
156510
+ item?: UploadItem;
156511
+ }
156512
+
156513
+ /**
156514
+ * Event object of the UploaderTableItem#uploadTerminated event.
156515
+ */
156516
+ export type UploaderTableItem$UploadTerminatedEvent = Event<
156517
+ UploaderTableItem$UploadTerminatedEventParameters,
156518
+ UploaderTableItem
156519
+ >;
156193
156520
  }
156194
156521
 
156195
156522
  declare module "sap/m/upload/UploadItem" {
@@ -156206,6 +156533,8 @@ declare module "sap/m/upload/UploadItem" {
156206
156533
  AggregationBindingInfo,
156207
156534
  } from "sap/ui/base/ManagedObject";
156208
156535
 
156536
+ import Event from "sap/ui/base/Event";
156537
+
156209
156538
  /**
156210
156539
  * `sap.m.upload.UploadItem` represents one item to be uploaded using the {@link sap.m.plugins.UploadSetwithTable UploadSetwithTable}
156211
156540
  *
@@ -156289,6 +156618,104 @@ declare module "sap/m/upload/UploadItem" {
156289
156618
  */
156290
156619
  oHeaderField: Item
156291
156620
  ): this;
156621
+ /**
156622
+ * Attaches event handler `fnFunction` to the {@link #event:uploadProgress uploadProgress} event of this
156623
+ * `sap.m.upload.UploadItem`.
156624
+ *
156625
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
156626
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
156627
+ *
156628
+ * The event is fired every time an XHR request reports progress while uploading.
156629
+ *
156630
+ *
156631
+ * @returns Reference to `this` in order to allow method chaining
156632
+ */
156633
+ attachUploadProgress(
156634
+ /**
156635
+ * An application-specific payload object that will be passed to the event handler along with the event
156636
+ * object when firing the event
156637
+ */
156638
+ oData: object,
156639
+ /**
156640
+ * The function to be called when the event occurs
156641
+ */
156642
+ fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
156643
+ /**
156644
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
156645
+ */
156646
+ oListener?: object
156647
+ ): this;
156648
+ /**
156649
+ * Attaches event handler `fnFunction` to the {@link #event:uploadProgress uploadProgress} event of this
156650
+ * `sap.m.upload.UploadItem`.
156651
+ *
156652
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
156653
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
156654
+ *
156655
+ * The event is fired every time an XHR request reports progress while uploading.
156656
+ *
156657
+ *
156658
+ * @returns Reference to `this` in order to allow method chaining
156659
+ */
156660
+ attachUploadProgress(
156661
+ /**
156662
+ * The function to be called when the event occurs
156663
+ */
156664
+ fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
156665
+ /**
156666
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
156667
+ */
156668
+ oListener?: object
156669
+ ): this;
156670
+ /**
156671
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
156672
+ * this `sap.m.upload.UploadItem`.
156673
+ *
156674
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
156675
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
156676
+ *
156677
+ * This event is fired right after the upload is terminated.
156678
+ *
156679
+ *
156680
+ * @returns Reference to `this` in order to allow method chaining
156681
+ */
156682
+ attachUploadTerminated(
156683
+ /**
156684
+ * An application-specific payload object that will be passed to the event handler along with the event
156685
+ * object when firing the event
156686
+ */
156687
+ oData: object,
156688
+ /**
156689
+ * The function to be called when the event occurs
156690
+ */
156691
+ fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
156692
+ /**
156693
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
156694
+ */
156695
+ oListener?: object
156696
+ ): this;
156697
+ /**
156698
+ * Attaches event handler `fnFunction` to the {@link #event:uploadTerminated uploadTerminated} event of
156699
+ * this `sap.m.upload.UploadItem`.
156700
+ *
156701
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
156702
+ * otherwise it will be bound to this `sap.m.upload.UploadItem` itself.
156703
+ *
156704
+ * This event is fired right after the upload is terminated.
156705
+ *
156706
+ *
156707
+ * @returns Reference to `this` in order to allow method chaining
156708
+ */
156709
+ attachUploadTerminated(
156710
+ /**
156711
+ * The function to be called when the event occurs
156712
+ */
156713
+ fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
156714
+ /**
156715
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadItem` itself
156716
+ */
156717
+ oListener?: object
156718
+ ): this;
156292
156719
  /**
156293
156720
  * Destroys all the headerFields in the aggregation {@link #getHeaderFields headerFields}.
156294
156721
  *
@@ -156296,6 +156723,44 @@ declare module "sap/m/upload/UploadItem" {
156296
156723
  * @returns Reference to `this` in order to allow method chaining
156297
156724
  */
156298
156725
  destroyHeaderFields(): this;
156726
+ /**
156727
+ * Detaches event handler `fnFunction` from the {@link #event:uploadProgress uploadProgress} event of this
156728
+ * `sap.m.upload.UploadItem`.
156729
+ *
156730
+ * The passed function and listener object must match the ones used for event registration.
156731
+ *
156732
+ *
156733
+ * @returns Reference to `this` in order to allow method chaining
156734
+ */
156735
+ detachUploadProgress(
156736
+ /**
156737
+ * The function to be called, when the event occurs
156738
+ */
156739
+ fnFunction: (p1: UploadItem$UploadProgressEvent) => void,
156740
+ /**
156741
+ * Context object on which the given function had to be called
156742
+ */
156743
+ oListener?: object
156744
+ ): this;
156745
+ /**
156746
+ * Detaches event handler `fnFunction` from the {@link #event:uploadTerminated uploadTerminated} event of
156747
+ * this `sap.m.upload.UploadItem`.
156748
+ *
156749
+ * The passed function and listener object must match the ones used for event registration.
156750
+ *
156751
+ *
156752
+ * @returns Reference to `this` in order to allow method chaining
156753
+ */
156754
+ detachUploadTerminated(
156755
+ /**
156756
+ * The function to be called, when the event occurs
156757
+ */
156758
+ fnFunction: (p1: UploadItem$UploadTerminatedEvent) => void,
156759
+ /**
156760
+ * Context object on which the given function had to be called
156761
+ */
156762
+ oListener?: object
156763
+ ): this;
156299
156764
  /**
156300
156765
  * Downloads the item. Only possible when the item has a valid URL specified in the `url` property.
156301
156766
  *
@@ -156308,6 +156773,32 @@ declare module "sap/m/upload/UploadItem" {
156308
156773
  */
156309
156774
  bAskForLocation: boolean
156310
156775
  ): boolean;
156776
+ /**
156777
+ * Fires event {@link #event:uploadProgress uploadProgress} to attached listeners.
156778
+ *
156779
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
156780
+ *
156781
+ * @returns Reference to `this` in order to allow method chaining
156782
+ */
156783
+ fireUploadProgress(
156784
+ /**
156785
+ * Parameters to pass along with the event
156786
+ */
156787
+ mParameters?: UploadItem$UploadProgressEventParameters
156788
+ ): this;
156789
+ /**
156790
+ * Fires event {@link #event:uploadTerminated uploadTerminated} to attached listeners.
156791
+ *
156792
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
156793
+ *
156794
+ * @returns Reference to `this` in order to allow method chaining
156795
+ */
156796
+ fireUploadTerminated(
156797
+ /**
156798
+ * Parameters to pass along with the event
156799
+ */
156800
+ mParameters?: UploadItem$UploadTerminatedEventParameters
156801
+ ): this;
156311
156802
  /**
156312
156803
  * Returns the details of the file selected from the CloudFilePicker control.
156313
156804
  *
@@ -156606,6 +157097,14 @@ declare module "sap/m/upload/UploadItem" {
156606
157097
  */
156607
157098
  sUrl?: string
156608
157099
  ): this;
157100
+ /**
157101
+ * API to terminate the upload of an item. With success, the event `uploadTerminated` is fired on the `UploadItem`.
157102
+ * Termination is only possible if the item is in `Uploading` state and uploadItem is associated with `UploadSetwithTable`
157103
+ * plugin.
157104
+ *
157105
+ * @since 1.134
157106
+ */
157107
+ terminateUpload(): void;
156609
157108
  }
156610
157109
  /**
156611
157110
  * Describes the settings that can be provided to the UploadItem constructor.
@@ -156662,7 +157161,60 @@ declare module "sap/m/upload/UploadItem" {
156662
157161
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
156663
157162
  */
156664
157163
  headerFields?: Item[] | Item | AggregationBindingInfo | `{${string}}`;
157164
+
157165
+ /**
157166
+ * The event is fired every time an XHR request reports progress while uploading.
157167
+ */
157168
+ uploadProgress?: (oEvent: UploadItem$UploadProgressEvent) => void;
157169
+
157170
+ /**
157171
+ * This event is fired right after the upload is terminated.
157172
+ */
157173
+ uploadTerminated?: (oEvent: UploadItem$UploadTerminatedEvent) => void;
156665
157174
  }
157175
+
157176
+ /**
157177
+ * Parameters of the UploadItem#uploadProgress event.
157178
+ */
157179
+ export interface UploadItem$UploadProgressEventParameters {
157180
+ /**
157181
+ * The number of bytes transferred since the beginning of the operation. laoded parameter doesn't include
157182
+ * headers and other overhead, but only the content itself
157183
+ */
157184
+ loaded?: int;
157185
+
157186
+ /**
157187
+ * The total number of bytes of content that is transferred during the operation. If the total size is unknown,
157188
+ * this value is zero.
157189
+ */
157190
+ total?: int;
157191
+ }
157192
+
157193
+ /**
157194
+ * Event object of the UploadItem#uploadProgress event.
157195
+ */
157196
+ export type UploadItem$UploadProgressEvent = Event<
157197
+ UploadItem$UploadProgressEventParameters,
157198
+ UploadItem
157199
+ >;
157200
+
157201
+ /**
157202
+ * Parameters of the UploadItem#uploadTerminated event.
157203
+ */
157204
+ export interface UploadItem$UploadTerminatedEventParameters {
157205
+ /**
157206
+ * The file whose upload has just been terminated.
157207
+ */
157208
+ item?: UploadItem;
157209
+ }
157210
+
157211
+ /**
157212
+ * Event object of the UploadItem#uploadTerminated event.
157213
+ */
157214
+ export type UploadItem$UploadTerminatedEvent = Event<
157215
+ UploadItem$UploadTerminatedEventParameters,
157216
+ UploadItem
157217
+ >;
156666
157218
  }
156667
157219
 
156668
157220
  declare module "sap/m/upload/UploadItemConfiguration" {