@openui5/ts-types-esm 1.98.0 → 1.101.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/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.98.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -774,12 +774,14 @@ declare module "sap/m/library" {
774
774
  */
775
775
  HeaderMode = "HeaderMode",
776
776
  /**
777
+ * @SINCE 1.96
777
778
  * @EXPERIMENTAL (since 1.96)
778
779
  *
779
780
  * Icon mode.
780
781
  *
781
- * GenericTile displays a combination of icon and header title. It is applicable only for the OneByOne FrameType
782
- * and TwoByHalf FrameType.
782
+ * GenericTile displays a combination of icon and header title.
783
+ *
784
+ * It is applicable only for the OneByOne FrameType and TwoByHalf FrameType.
783
785
  */
784
786
  IconMode = "IconMode",
785
787
  /**
@@ -2176,6 +2178,14 @@ declare module "sap/m/library" {
2176
2178
  * The range will be selected from a calendar.
2177
2179
  */
2178
2180
  DATERANGE = "DATERANGE",
2181
+ /**
2182
+ * The date and time will be selected from a calendar and time picker.
2183
+ */
2184
+ DATETIME = "DATETIME",
2185
+ /**
2186
+ * The range will be selected from two DateTimePicker controls.
2187
+ */
2188
+ DATETIMERANGE = "DATETIMERANGE",
2179
2189
  /**
2180
2190
  * The range will start from the date selected from a calendar and ends with the last day of the current
2181
2191
  * year.
@@ -2201,6 +2211,10 @@ declare module "sap/m/library" {
2201
2211
  * The range will start from a date selected from a calendar.
2202
2212
  */
2203
2213
  FROM = "FROM",
2214
+ /**
2215
+ * The range will start from a date and time selected from a calendar and time picker.
2216
+ */
2217
+ FROMDATETIME = "FROMDATETIME",
2204
2218
  /**
2205
2219
  * The date will be the last day of the current month.
2206
2220
  */
@@ -2309,6 +2323,10 @@ declare module "sap/m/library" {
2309
2323
  * The range will contain a month selected from a MonthPicker.
2310
2324
  */
2311
2325
  SPECIFICMONTH = "SPECIFICMONTH",
2326
+ /**
2327
+ * The range will contain a month in exact year selected from a MonthPicker.
2328
+ */
2329
+ SPECIFICMONTHINYEAR = "SPECIFICMONTHINYEAR",
2312
2330
  /**
2313
2331
  * The range will contain the days in the current month.
2314
2332
  */
@@ -2329,6 +2347,10 @@ declare module "sap/m/library" {
2329
2347
  * The range will end in a date selected from a calendar.
2330
2348
  */
2331
2349
  TO = "TO",
2350
+ /**
2351
+ * The range will end in a date and time selected from a calendar and time picker.
2352
+ */
2353
+ TODATETIME = "TODATETIME",
2332
2354
  /**
2333
2355
  * The date will be the day of selection.
2334
2356
  */
@@ -2999,7 +3021,7 @@ declare module "sap/m/library" {
2999
3021
  /**
3000
3022
  * The image to update. If undefined, a new image will be created.
3001
3023
  */
3002
- oImageControl: Image,
3024
+ oImage: Image,
3003
3025
  /**
3004
3026
  * oImageControl's parentControl.
3005
3027
  */
@@ -4681,7 +4703,7 @@ declare module "sap/m/App" {
4681
4703
  declare module "sap/m/Avatar" {
4682
4704
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
4683
4705
 
4684
- import { ID, URI, CSSSize } from "sap/ui/core/library";
4706
+ import { ID, aria, URI, CSSSize } from "sap/ui/core/library";
4685
4707
 
4686
4708
  import Event from "sap/ui/base/Event";
4687
4709
 
@@ -4891,6 +4913,25 @@ declare module "sap/m/Avatar" {
4891
4913
  * ariaDescribedBy}.
4892
4914
  */
4893
4915
  getAriaDescribedBy(): ID[];
4916
+ /**
4917
+ * @SINCE 1.99.0
4918
+ *
4919
+ * Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
4920
+ *
4921
+ * Specifies the value of the `aria-haspopup` attribute
4922
+ *
4923
+ * If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
4924
+ * value.
4925
+ *
4926
+ * NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
4927
+ * to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
4928
+ * if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
4929
+ * Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
4930
+ * on overlay over the application.
4931
+ *
4932
+ * Default value is `None`.
4933
+ */
4934
+ getAriaHasPopup(): aria.HasPopup | keyof typeof aria.HasPopup;
4894
4935
  /**
4895
4936
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
4896
4937
  * ariaLabelledBy}.
@@ -5052,6 +5093,32 @@ declare module "sap/m/Avatar" {
5052
5093
  */
5053
5094
  vAriaLabelledBy: int | ID | Control
5054
5095
  ): ID;
5096
+ /**
5097
+ * @SINCE 1.99.0
5098
+ *
5099
+ * Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
5100
+ *
5101
+ * Specifies the value of the `aria-haspopup` attribute
5102
+ *
5103
+ * If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
5104
+ * value.
5105
+ *
5106
+ * NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
5107
+ * to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
5108
+ * if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
5109
+ * Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
5110
+ * on overlay over the application.
5111
+ *
5112
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5113
+ *
5114
+ * Default value is `None`.
5115
+ */
5116
+ setAriaHasPopup(
5117
+ /**
5118
+ * New value for property `ariaHasPopup`
5119
+ */
5120
+ sAriaHasPopup?: aria.HasPopup | keyof typeof aria.HasPopup
5121
+ ): this;
5055
5122
  /**
5056
5123
  * Sets a new value for property {@link #getBackgroundColor backgroundColor}.
5057
5124
  *
@@ -5376,6 +5443,24 @@ declare module "sap/m/Avatar" {
5376
5443
  */
5377
5444
  decorative?: boolean | PropertyBindingInfo;
5378
5445
 
5446
+ /**
5447
+ * @SINCE 1.99.0
5448
+ *
5449
+ * Specifies the value of the `aria-haspopup` attribute
5450
+ *
5451
+ * If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
5452
+ * value.
5453
+ *
5454
+ * NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
5455
+ * to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
5456
+ * if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
5457
+ * Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
5458
+ * on overlay over the application.
5459
+ */
5460
+ ariaHasPopup?:
5461
+ | (aria.HasPopup | keyof typeof aria.HasPopup)
5462
+ | PropertyBindingInfo;
5463
+
5379
5464
  /**
5380
5465
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
5381
5466
  * control.
@@ -16088,6 +16173,25 @@ declare module "sap/m/DateTimePicker" {
16088
16173
  * Default value is `false`.
16089
16174
  */
16090
16175
  getShowCurrentTimeButton(): boolean;
16176
+ /**
16177
+ * @SINCE 1.99
16178
+ *
16179
+ * Gets current value of property {@link #getShowTimezone showTimezone}.
16180
+ *
16181
+ * Determines whether to show the timezone or not.
16182
+ */
16183
+ getShowTimezone(): boolean;
16184
+ /**
16185
+ * @SINCE 1.99
16186
+ *
16187
+ * Gets current value of property {@link #getTimezone timezone}.
16188
+ *
16189
+ * The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
16190
+ * property string is treated as if it is formatted in this timezone. However, the `dateValue` property
16191
+ * is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
16192
+ * it is adjusted when the `timezone` changes.
16193
+ */
16194
+ getTimezone(): string;
16091
16195
  /**
16092
16196
  * @SINCE 1.56
16093
16197
  *
@@ -16141,6 +16245,39 @@ declare module "sap/m/DateTimePicker" {
16141
16245
  */
16142
16246
  bShowCurrentTimeButton?: boolean
16143
16247
  ): this;
16248
+ /**
16249
+ * @SINCE 1.99
16250
+ *
16251
+ * Sets a new value for property {@link #getShowTimezone showTimezone}.
16252
+ *
16253
+ * Determines whether to show the timezone or not.
16254
+ *
16255
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16256
+ */
16257
+ setShowTimezone(
16258
+ /**
16259
+ * New value for property `showTimezone`
16260
+ */
16261
+ bShowTimezone: boolean
16262
+ ): this;
16263
+ /**
16264
+ * @SINCE 1.99
16265
+ *
16266
+ * Sets a new value for property {@link #getTimezone timezone}.
16267
+ *
16268
+ * The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
16269
+ * property string is treated as if it is formatted in this timezone. However, the `dateValue` property
16270
+ * is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
16271
+ * it is adjusted when the `timezone` changes.
16272
+ *
16273
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16274
+ */
16275
+ setTimezone(
16276
+ /**
16277
+ * New value for property `timezone`
16278
+ */
16279
+ sTimezone: string
16280
+ ): this;
16144
16281
  }
16145
16282
 
16146
16283
  export interface $DateTimePickerSettings extends $DatePickerSettings {
@@ -16166,6 +16303,23 @@ declare module "sap/m/DateTimePicker" {
16166
16303
  * Determines whether there is a shortcut navigation to current time.
16167
16304
  */
16168
16305
  showCurrentTimeButton?: boolean | PropertyBindingInfo;
16306
+
16307
+ /**
16308
+ * @SINCE 1.99
16309
+ *
16310
+ * Determines whether to show the timezone or not.
16311
+ */
16312
+ showTimezone?: boolean | PropertyBindingInfo;
16313
+
16314
+ /**
16315
+ * @SINCE 1.99
16316
+ *
16317
+ * The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
16318
+ * property string is treated as if it is formatted in this timezone. However, the `dateValue` property
16319
+ * is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
16320
+ * it is adjusted when the `timezone` changes.
16321
+ */
16322
+ timezone?: string | PropertyBindingInfo;
16169
16323
  }
16170
16324
  }
16171
16325
 
@@ -16225,9 +16379,9 @@ declare module "sap/m/Dialog" {
16225
16379
  * - If the `contentWidth` and/or `contentHeight` properties are set, the Dialog will try to fill those
16226
16380
  * sizes.
16227
16381
  * - If there is no specific sizing, the Dialog will try to adjust its size to its content. When
16228
- * using the `sap.m.Dialog` in SAP Quartz themes, the breakpoints and layout paddings could be determined
16229
- * by the Dialog's width. To enable this concept and add responsive paddings to an element of the Dialog
16230
- * control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
16382
+ * using the `sap.m.Dialog` in SAP Quartz and Horizon themes, the breakpoints and layout paddings could
16383
+ * be determined by the Dialog's width. To enable this concept and add responsive paddings to an element
16384
+ * of the Dialog control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
16231
16385
  * `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
16232
16386
  * Smartphones: If the Dialog has one or two actions, they will cover the entire footer. If there are more
16233
16387
  * actions, they will overflow. Tablets: The action buttons in the toolbar are **right-aligned**. Use **cozy**
@@ -18164,7 +18318,11 @@ declare module "sap/m/DynamicDateFormat" {
18164
18318
  /**
18165
18319
  * String value to be parsed
18166
18320
  */
18167
- sValue: string
18321
+ sValue: string,
18322
+ /**
18323
+ * String value of the key we will parse for
18324
+ */
18325
+ sKey: string
18168
18326
  ): object;
18169
18327
  }
18170
18328
  }
@@ -18677,11 +18835,12 @@ declare module "sap/m/DynamicDateRange" {
18677
18835
  * Array of standard and custom option keys
18678
18836
  *
18679
18837
  * Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
18680
- * "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "FROM",
18681
- * "TO", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS",
18682
- * "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO", "THISWEEK", "LASTWEEK",
18683
- * "NEXTWEEK", "SPECIFICMONTH", "THISMONTH", "LASTMONTH", "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER",
18684
- * "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4", "THISYEAR", "LASTYEAR", "NEXTYEAR"]`.
18838
+ * "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "DATETIMERANGE",
18839
+ * "FROM", "TO", "FROMDATETIME", "TODATETIME", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS",
18840
+ * "LASTQUARTERS", "LASTYEARS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO",
18841
+ * "THISWEEK", "LASTWEEK", "NEXTWEEK", "SPECIFICMONTH", "SPECIFICMONTHINYEAR", "THISMONTH", "LASTMONTH",
18842
+ * "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER", "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4",
18843
+ * "THISYEAR", "LASTYEAR", "NEXTYEAR", "DATETIME"]`.
18685
18844
  */
18686
18845
  getOptions(): string[];
18687
18846
  /**
@@ -18875,11 +19034,12 @@ declare module "sap/m/DynamicDateRange" {
18875
19034
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18876
19035
  *
18877
19036
  * Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
18878
- * "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "FROM",
18879
- * "TO", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS", "LASTQUARTERS", "LASTYEARS",
18880
- * "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO", "THISWEEK", "LASTWEEK",
18881
- * "NEXTWEEK", "SPECIFICMONTH", "THISMONTH", "LASTMONTH", "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER",
18882
- * "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4", "THISYEAR", "LASTYEAR", "NEXTYEAR"]`.
19037
+ * "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "DATETIMERANGE",
19038
+ * "FROM", "TO", "FROMDATETIME", "TODATETIME", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS",
19039
+ * "LASTQUARTERS", "LASTYEARS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO",
19040
+ * "THISWEEK", "LASTWEEK", "NEXTWEEK", "SPECIFICMONTH", "SPECIFICMONTHINYEAR", "THISMONTH", "LASTMONTH",
19041
+ * "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER", "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4",
19042
+ * "THISYEAR", "LASTYEAR", "NEXTYEAR", "DATETIME"]`.
18883
19043
  */
18884
19044
  setOptions(
18885
19045
  /**
@@ -27093,6 +27253,17 @@ declare module "sap/m/HeaderContainer" {
27093
27253
  * Content to add to HeaderContainer.
27094
27254
  */
27095
27255
  getContent(): Control[];
27256
+ /**
27257
+ * @SINCE 1.99
27258
+ * @EXPERIMENTAL (since 1.99)
27259
+ *
27260
+ * Gets current value of property {@link #getGridLayout gridLayout}.
27261
+ *
27262
+ * Enables grid layout in mobile view.
27263
+ *
27264
+ * Default value is `false`.
27265
+ */
27266
+ getGridLayout(): boolean;
27096
27267
  /**
27097
27268
  * Gets current value of property {@link #getHeight height}.
27098
27269
  *
@@ -27231,6 +27402,24 @@ declare module "sap/m/HeaderContainer" {
27231
27402
  */
27232
27403
  sBackgroundDesign?: BackgroundDesign | keyof typeof BackgroundDesign
27233
27404
  ): this;
27405
+ /**
27406
+ * @SINCE 1.99
27407
+ * @EXPERIMENTAL (since 1.99)
27408
+ *
27409
+ * Sets a new value for property {@link #getGridLayout gridLayout}.
27410
+ *
27411
+ * Enables grid layout in mobile view.
27412
+ *
27413
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
27414
+ *
27415
+ * Default value is `false`.
27416
+ */
27417
+ setGridLayout(
27418
+ /**
27419
+ * New value for property `gridLayout`
27420
+ */
27421
+ bGridLayout?: boolean
27422
+ ): this;
27234
27423
  /**
27235
27424
  * Sets a new value for property {@link #getHeight height}.
27236
27425
  *
@@ -27410,6 +27599,14 @@ declare module "sap/m/HeaderContainer" {
27410
27599
  */
27411
27600
  height?: CSSSize | PropertyBindingInfo;
27412
27601
 
27602
+ /**
27603
+ * @SINCE 1.99
27604
+ * @EXPERIMENTAL (since 1.99)
27605
+ *
27606
+ * Enables grid layout in mobile view.
27607
+ */
27608
+ gridLayout?: boolean | PropertyBindingInfo;
27609
+
27413
27610
  /**
27414
27611
  * Content to add to HeaderContainer.
27415
27612
  */
@@ -27497,9 +27694,10 @@ declare module "sap/m/IconTabBar" {
27497
27694
  * - On desktop, tabs can be dragged and dropped (property `enableTabReordering`).
27498
27695
  * - If you have a large number of tabs, only the tabs that can fit on screen will be visible. All other
27499
27696
  * tabs that can't fit on the screen are available in an overflow tab "More". When using the `sap.m.IconTabBar`
27500
- * in SAP Quartz themes, the breakpoints and layout paddings could be determined by the Icon Tab Bar's width.
27501
- * To enable this concept and add responsive paddings to an element of the Icon Tab Bar control, you have
27502
- * to add the following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`.
27697
+ * in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the Icon
27698
+ * Tab Bar's width. To enable this concept and add responsive paddings to an element of the Icon Tab Bar
27699
+ * control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
27700
+ * `sapUiResponsivePadding--content`.
27503
27701
  */
27504
27702
  export default class IconTabBar
27505
27703
  extends Control
@@ -29968,6 +30166,13 @@ declare module "sap/m/IllustratedMessage" {
29968
30166
  * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
29969
30167
  */
29970
30168
  destroyAdditionalContent(): this;
30169
+ /**
30170
+ * @SINCE 1.101
30171
+ *
30172
+ * See:
30173
+ * sap.ui.core.Control#getAccessibilityInfo
30174
+ */
30175
+ getAccessibilityInfo(): object;
29971
30176
  /**
29972
30177
  * @SINCE 1.98.0
29973
30178
  *
@@ -30430,9 +30635,9 @@ declare module "sap/m/IllustratedMessageType" {
30430
30635
  */
30431
30636
  SimpleCalendar = "sapIllus-SimpleCalendar",
30432
30637
  /**
30433
- * "Simple Checkmark" illustration type.
30638
+ * "Simple CheckMark" illustration type.
30434
30639
  */
30435
- SimpleCheckmark = "sapIllus-SimpleCheckmark",
30640
+ SimpleCheckMark = "sapIllus-SimpleCheckMark",
30436
30641
  /**
30437
30642
  * "Simple Connection" illustration type.
30438
30643
  */
@@ -30481,6 +30686,18 @@ declare module "sap/m/IllustratedMessageType" {
30481
30686
  * "Sort Column" illustration type.
30482
30687
  */
30483
30688
  SortColumn = "sapIllus-SortColumn",
30689
+ /**
30690
+ * "Success Balloon" illustration type.
30691
+ */
30692
+ SuccessBalloon = "sapIllus-SuccessBalloon",
30693
+ /**
30694
+ * "Success CheckMark" illustration type.
30695
+ */
30696
+ SuccessCheckMark = "sapIllus-SuccessCheckMark",
30697
+ /**
30698
+ * "Success HighFive" illustration type.
30699
+ */
30700
+ SuccessHighFive = "sapIllus-SuccessHighFive",
30484
30701
  /**
30485
30702
  * "Success Screen" illustration type.
30486
30703
  */
@@ -30493,6 +30710,10 @@ declare module "sap/m/IllustratedMessageType" {
30493
30710
  * "Unable To Load" illustration type.
30494
30711
  */
30495
30712
  UnableToLoad = "sapIllus-UnableToLoad",
30713
+ /**
30714
+ * "Unable To Load Image" illustration type.
30715
+ */
30716
+ UnableToLoadImage = "sapIllus-UnableToLoadImage",
30496
30717
  /**
30497
30718
  * "Unable To Upload" illustration type.
30498
30719
  */
@@ -33844,7 +34065,7 @@ declare module "sap/m/Input" {
33844
34065
  * Ontap event.
33845
34066
  */
33846
34067
  oEvent: jQuery.Event
33847
- ): Boolean;
34068
+ ): boolean;
33848
34069
  /**
33849
34070
  * @SINCE 1.64
33850
34071
  * @EXPERIMENTAL (since 1.64)
@@ -35046,6 +35267,411 @@ declare module "sap/m/InputBase" {
35046
35267
  }
35047
35268
  }
35048
35269
 
35270
+ declare module "sap/m/InputBaseRenderer" {
35271
+ import RenderManager from "sap/ui/core/RenderManager";
35272
+
35273
+ import InputBase from "sap/m/InputBase";
35274
+
35275
+ import Icon from "sap/ui/core/Icon";
35276
+
35277
+ /**
35278
+ * InputBase renderer.
35279
+ */
35280
+ interface InputBaseRenderer {
35281
+ /**
35282
+ * This method is reserved for derived class to set width inline style
35283
+ */
35284
+ addControlWidth(
35285
+ /**
35286
+ * The RenderManager that can be used for writing to the render output buffer.
35287
+ */
35288
+ oRm: RenderManager,
35289
+ /**
35290
+ * An object representation of the control that should be rendered.
35291
+ */
35292
+ oControl: InputBase
35293
+ ): void;
35294
+ /**
35295
+ * Add cursor class to input container.
35296
+ */
35297
+ addCursorClass(
35298
+ /**
35299
+ * The RenderManager that can be used for writing to the render output buffer.
35300
+ */
35301
+ oRm: RenderManager,
35302
+ /**
35303
+ * An object representation of the control that should be rendered.
35304
+ */
35305
+ oControl: InputBase
35306
+ ): void;
35307
+ /**
35308
+ * This method is reserved for derived classes to add extra classes for input element.
35309
+ */
35310
+ addInnerClasses(
35311
+ /**
35312
+ * The RenderManager that can be used for writing to the render output buffer.
35313
+ */
35314
+ oRm: RenderManager,
35315
+ /**
35316
+ * An object representation of the control that should be rendered.
35317
+ */
35318
+ oControl: InputBase
35319
+ ): void;
35320
+ /**
35321
+ * This method is reserved for derived classes to add extra styles for input element.
35322
+ */
35323
+ addInnerStyles(
35324
+ /**
35325
+ * The RenderManager that can be used for writing to the render output buffer.
35326
+ */
35327
+ oRm: RenderManager,
35328
+ /**
35329
+ * An object representation of the control that should be rendered.
35330
+ */
35331
+ oControl: InputBase
35332
+ ): void;
35333
+ /**
35334
+ * This method is reserved for derived classes to add extra classes for input container.
35335
+ */
35336
+ addOuterClasses(
35337
+ /**
35338
+ * The RenderManager that can be used for writing to the render output buffer.
35339
+ */
35340
+ oRm: RenderManager,
35341
+ /**
35342
+ * An object representation of the control that should be rendered.
35343
+ */
35344
+ oControl: InputBase
35345
+ ): void;
35346
+ /**
35347
+ * This method is reserved for derived class to add extra styles for input container.
35348
+ */
35349
+ addOuterStyles(
35350
+ /**
35351
+ * The RenderManager that can be used for writing to the render output buffer.
35352
+ */
35353
+ oRm: RenderManager,
35354
+ /**
35355
+ * An object representation of the control that should be rendered.
35356
+ */
35357
+ oControl: InputBase
35358
+ ): void;
35359
+ /**
35360
+ * Add a padding class to input container. May be overwritten by subclasses.
35361
+ */
35362
+ addPaddingClass(
35363
+ /**
35364
+ * The RenderManager that can be used for writing to the render output buffer.
35365
+ */
35366
+ oRm: RenderManager,
35367
+ /**
35368
+ * An object representation of the control that should be rendered.
35369
+ */
35370
+ oControl: InputBase
35371
+ ): void;
35372
+ /**
35373
+ * @deprecated
35374
+ *
35375
+ * Adds custom placeholder classes, if native placeholder is not used. To be overwritten by subclasses.
35376
+ * Note that this method should not be used anymore as native placeholder is used on all browsers
35377
+ */
35378
+ addPlaceholderClasses(
35379
+ /**
35380
+ * The RenderManager that can be used for writing to the render output buffer.
35381
+ */
35382
+ oRm: RenderManager,
35383
+ /**
35384
+ * An object representation of the control that should be rendered.
35385
+ */
35386
+ oControl: InputBase
35387
+ ): void;
35388
+ /**
35389
+ * @deprecated
35390
+ *
35391
+ * This method is reserved for derived classes to add extra styles for the placeholder, if rendered as label.
35392
+ */
35393
+ addPlaceholderStyles(
35394
+ /**
35395
+ * The RenderManager that can be used for writing to the render output buffer.
35396
+ */
35397
+ oRm: RenderManager,
35398
+ /**
35399
+ * An object representation of the control that should be rendered.
35400
+ */
35401
+ oControl: InputBase
35402
+ ): void;
35403
+ /**
35404
+ * Add the CSS value state classes to the control's root element using the provided {@link sap.ui.core.RenderManager}.
35405
+ * To be overwritten by subclasses.
35406
+ */
35407
+ addValueStateClasses(
35408
+ /**
35409
+ * The RenderManager that can be used for writing to the render output buffer.
35410
+ */
35411
+ oRm: RenderManager,
35412
+ /**
35413
+ * An object representation of the control that should be rendered.
35414
+ */
35415
+ oControl: InputBase
35416
+ ): void;
35417
+ /**
35418
+ * This method is reserved for derived classes to add extra styles for input element.
35419
+ */
35420
+ addWrapperStyles(
35421
+ /**
35422
+ * The RenderManager that can be used for writing to the render output buffer.
35423
+ */
35424
+ oRm: RenderManager,
35425
+ /**
35426
+ * An object representation of the control that should be rendered.
35427
+ */
35428
+ oControl: InputBase
35429
+ ): void;
35430
+ /**
35431
+ * Write the closing tag name of the input.
35432
+ */
35433
+ closeInputTag(
35434
+ /**
35435
+ * The RenderManager that can be used for writing to the render output buffer.
35436
+ */
35437
+ oRm: RenderManager,
35438
+ /**
35439
+ * An object representation of the control that should be rendered.
35440
+ */
35441
+ oControl: InputBase
35442
+ ): void;
35443
+ /**
35444
+ * Ends opened input tag.
35445
+ */
35446
+ endInputTag(
35447
+ /**
35448
+ * The RenderManager that can be used for writing to the render output buffer.
35449
+ */
35450
+ oRm: RenderManager,
35451
+ /**
35452
+ * An object representation of the control that should be rendered.
35453
+ */
35454
+ oControl: InputBase
35455
+ ): void;
35456
+ /**
35457
+ * Returns the accessibility state of the control. Hook for the subclasses.
35458
+ */
35459
+ getAccessibilityState(
35460
+ /**
35461
+ * an object representation of the control.
35462
+ */
35463
+ oControl: InputBase
35464
+ ): Object;
35465
+ /**
35466
+ * Returns the inner aria describedby ids for the accessibility. Hook for the subclasses.
35467
+ */
35468
+ getAriaDescribedBy(
35469
+ /**
35470
+ * an object representation of the control.
35471
+ */
35472
+ oControl: InputBase
35473
+ ): string | undefined;
35474
+ /**
35475
+ * Returns the inner aria labelledby ids for the accessibility. Hook for the subclasses.
35476
+ */
35477
+ getAriaLabelledBy(
35478
+ /**
35479
+ * an object representation of the control.
35480
+ */
35481
+ oControl: InputBase
35482
+ ): string | undefined;
35483
+ /**
35484
+ * Returns aria accessibility role for the control. Hook for the subclasses.
35485
+ */
35486
+ getAriaRole(
35487
+ /**
35488
+ * an object representation of the control
35489
+ */
35490
+ oControl: InputBase
35491
+ ): string;
35492
+ /**
35493
+ * Returns the inner aria describedby announcement texts for the accessibility. Hook for the subclasses.
35494
+ */
35495
+ getDescribedByAnnouncement(
35496
+ /**
35497
+ * an object representation of the control.
35498
+ */
35499
+ oControl: InputBase
35500
+ ): string;
35501
+ /**
35502
+ * Defines the ID suffix of the inner element
35503
+ */
35504
+ getInnerSuffix(): string;
35505
+ /**
35506
+ * Returns the inner aria labelledby announcement texts for the accessibility. Hook for the subclasses.
35507
+ */
35508
+ getLabelledByAnnouncement(
35509
+ /**
35510
+ * an object representation of the control.
35511
+ */
35512
+ oControl: InputBase
35513
+ ): string;
35514
+ /**
35515
+ * Write the opening tag name of the input.
35516
+ */
35517
+ openInputTag(
35518
+ /**
35519
+ * The RenderManager that can be used for writing to the render output buffer.
35520
+ */
35521
+ oRm: RenderManager,
35522
+ /**
35523
+ * An object representation of the control that should be rendered.
35524
+ */
35525
+ oControl: InputBase
35526
+ ): void;
35527
+ /**
35528
+ * This method is reserved for derived classes to prepend inner content.
35529
+ */
35530
+ prependInnerContent(
35531
+ /**
35532
+ * The RenderManager that can be used for writing to the render output buffer.
35533
+ */
35534
+ oRm: RenderManager,
35535
+ /**
35536
+ * An object representation of the control that should be rendered.
35537
+ */
35538
+ oControl: InputBase
35539
+ ): void;
35540
+ /**
35541
+ * Renders the hidden aria labelledby node for the accessibility. Hook for the subclasses.
35542
+ */
35543
+ renderAriaDescribedBy(
35544
+ /**
35545
+ * The RenderManager that can be used for writing to the render output buffer.
35546
+ */
35547
+ oRm: RenderManager,
35548
+ /**
35549
+ * An object representation of the control that should be rendered.
35550
+ */
35551
+ oControl: InputBase
35552
+ ): void;
35553
+ /**
35554
+ * Renders the hidden aria labelledby node for the accessibility. Hook for the subclasses.
35555
+ */
35556
+ renderAriaLabelledBy(
35557
+ /**
35558
+ * The RenderManager that can be used for writing to the render output buffer.
35559
+ */
35560
+ oRm: RenderManager,
35561
+ /**
35562
+ * An object representation of the control that should be rendered.
35563
+ */
35564
+ oControl: InputBase
35565
+ ): void;
35566
+ /**
35567
+ * Renders the hidden aria describedby and errormessage nodes for the accessibility.
35568
+ */
35569
+ renderValueStateAccDom(
35570
+ /**
35571
+ * The RenderManager that can be used for writing to the render output buffer.
35572
+ */
35573
+ oRm: RenderManager,
35574
+ /**
35575
+ * An object representation of the control that should be rendered.
35576
+ */
35577
+ oControl: InputBase
35578
+ ): void;
35579
+ /**
35580
+ * Writes the accessibility state of the control. Hook for the subclasses.
35581
+ */
35582
+ writeAccessibilityState(
35583
+ /**
35584
+ * The RenderManager that can be used for writing to the render output buffer.
35585
+ */
35586
+ oRm: RenderManager,
35587
+ /**
35588
+ * An object representation of the control that should be rendered.
35589
+ */
35590
+ oControl: InputBase
35591
+ ): void;
35592
+ /**
35593
+ * Write the decorations of the input - description and value-help icon.
35594
+ */
35595
+ writeDecorations(
35596
+ /**
35597
+ * The RenderManager that can be used for writing to the render output buffer.
35598
+ */
35599
+ oRm: RenderManager,
35600
+ /**
35601
+ * An object representation of the control that should be rendered.
35602
+ */
35603
+ oControl: InputBase
35604
+ ): void;
35605
+ /**
35606
+ * Renders icons from the icon aggregations.
35607
+ */
35608
+ writeIcons(
35609
+ /**
35610
+ * The RenderManager that can be used for writing to the render output buffer.
35611
+ */
35612
+ oRm: RenderManager,
35613
+ /**
35614
+ * List of icons to render
35615
+ */
35616
+ aIcons: Icon[]
35617
+ ): void;
35618
+ /**
35619
+ * This method is reserved for derived classes to add extra attributes for the input element.
35620
+ */
35621
+ writeInnerAttributes(
35622
+ /**
35623
+ * The RenderManager that can be used for writing to the render output buffer.
35624
+ */
35625
+ oRm: RenderManager,
35626
+ /**
35627
+ * An object representation of the control that should be rendered.
35628
+ */
35629
+ oControl: InputBase
35630
+ ): void;
35631
+ /**
35632
+ * Write the value of the input.
35633
+ */
35634
+ writeInnerContent(
35635
+ /**
35636
+ * The RenderManager that can be used for writing to the render output buffer.
35637
+ */
35638
+ oRm: RenderManager,
35639
+ /**
35640
+ * An object representation of the control that should be rendered.
35641
+ */
35642
+ oControl: InputBase
35643
+ ): void;
35644
+ /**
35645
+ * Write the value of the input.
35646
+ */
35647
+ writeInnerValue(
35648
+ /**
35649
+ * The RenderManager that can be used for writing to the render output buffer.
35650
+ */
35651
+ oRm: RenderManager,
35652
+ /**
35653
+ * An object representation of the control that should be rendered.
35654
+ */
35655
+ oControl: InputBase
35656
+ ): void;
35657
+ /**
35658
+ * This method is reserved for derived class to add extra attributes for input container.
35659
+ */
35660
+ writeOuterAttributes(
35661
+ /**
35662
+ * The RenderManager that can be used for writing to the render output buffer.
35663
+ */
35664
+ oRm: RenderManager,
35665
+ /**
35666
+ * An object representation of the control that should be rendered.
35667
+ */
35668
+ oControl: InputBase
35669
+ ): void;
35670
+ }
35671
+ const InputBaseRenderer: InputBaseRenderer;
35672
+ export default InputBaseRenderer;
35673
+ }
35674
+
35049
35675
  declare module "sap/m/InputListItem" {
35050
35676
  import {
35051
35677
  default as ListItemBase,
@@ -35275,6 +35901,105 @@ declare module "sap/m/InputListItem" {
35275
35901
  }
35276
35902
  }
35277
35903
 
35904
+ declare module "sap/m/InputRenderer" {
35905
+ import RenderManager from "sap/ui/core/RenderManager";
35906
+
35907
+ import Input from "sap/m/Input";
35908
+
35909
+ /**
35910
+ * Input renderer.
35911
+ *
35912
+ * InputRenderer extends the InputBaseRenderer
35913
+ */
35914
+ interface InputRenderer {
35915
+ /**
35916
+ * Adds inner css classes to the input field
35917
+ */
35918
+ addInnerClasses(
35919
+ /**
35920
+ * the RenderManager that can be used for writing to the render output buffer
35921
+ */
35922
+ oRm: RenderManager,
35923
+ /**
35924
+ * an object representation of the control that should be rendered
35925
+ */
35926
+ oControl: Input
35927
+ ): void;
35928
+ /**
35929
+ * Adds control specific class
35930
+ */
35931
+ addOuterClasses(
35932
+ /**
35933
+ * the RenderManager that can be used for writing to the render output buffer
35934
+ */
35935
+ oRm: RenderManager,
35936
+ /**
35937
+ * an object representation of the control that should be rendered
35938
+ */
35939
+ oControl: Input
35940
+ ): void;
35941
+ /**
35942
+ * Adds extra styles to the wrapper of the input field.
35943
+ */
35944
+ addWrapperStyles(
35945
+ /**
35946
+ * The RenderManager that can be used for writing to the render output buffer.
35947
+ */
35948
+ oRm: RenderManager,
35949
+ /**
35950
+ * An object representation of the control that should be rendered.
35951
+ */
35952
+ oControl: Input
35953
+ ): void;
35954
+ /**
35955
+ * Returns the inner aria describedby ids for the accessibility.
35956
+ */
35957
+ getAriaDescribedBy(
35958
+ /**
35959
+ * an object representation of the control.
35960
+ */
35961
+ oControl: Input
35962
+ ): string | undefined;
35963
+ /**
35964
+ * Returns aria accessibility role for the control. Hook for the subclasses.
35965
+ */
35966
+ getAriaRole(
35967
+ /**
35968
+ * an object representation of the control
35969
+ */
35970
+ oControl: Input
35971
+ ): string;
35972
+ /**
35973
+ * Write the decorations of the input - description and value-help icon.
35974
+ */
35975
+ writeDecorations(
35976
+ /**
35977
+ * The RenderManager that can be used for writing to the render output buffer.
35978
+ */
35979
+ oRm: RenderManager,
35980
+ /**
35981
+ * An object representation of the control that should be rendered.
35982
+ */
35983
+ oControl: Input
35984
+ ): void;
35985
+ /**
35986
+ * add extra attributes to Input
35987
+ */
35988
+ writeInnerAttributes(
35989
+ /**
35990
+ * the RenderManager that can be used for writing to the render output buffer
35991
+ */
35992
+ oRm: RenderManager,
35993
+ /**
35994
+ * an object representation of the control that should be rendered
35995
+ */
35996
+ oControl: Input
35997
+ ): void;
35998
+ }
35999
+ const InputRenderer: InputRenderer;
36000
+ export default InputRenderer;
36001
+ }
36002
+
35278
36003
  declare module "sap/m/InstanceManager" {
35279
36004
  import Control from "sap/ui/core/Control";
35280
36005
 
@@ -36009,7 +36734,7 @@ declare module "sap/m/Label" {
36009
36734
  showColon?: boolean | PropertyBindingInfo;
36010
36735
 
36011
36736
  /**
36012
- * Association to the labeled control. By default the label set the for attribute to the ID of the labeled
36737
+ * Association to the labelled control. By default, the label sets the for attribute to the ID of the labelled
36013
36738
  * control. This can be changed by implementing the function getIdForLabel on the labelled control.
36014
36739
  */
36015
36740
  labelFor?: Control | string;
@@ -36378,7 +37103,7 @@ declare module "sap/m/LightBoxItem" {
36378
37103
  /**
36379
37104
  * The image subtitle
36380
37105
  */
36381
- subtitleText: string
37106
+ sSubtitleText: string
36382
37107
  ): this;
36383
37108
  /**
36384
37109
  * Sets the title of the image.
@@ -37950,6 +38675,12 @@ declare module "sap/m/ListBase" {
37950
38675
  * Destroys all the items in the aggregation {@link #getItems items}.
37951
38676
  */
37952
38677
  destroyItems(): this;
38678
+ /**
38679
+ * @SINCE 1.101
38680
+ *
38681
+ * Destroys the noData in the aggregation {@link #getNoData noData}.
38682
+ */
38683
+ destroyNoData(): this;
37953
38684
  /**
37954
38685
  * Destroys the swipeContent in the aggregation {@link #getSwipeContent swipeContent}.
37955
38686
  */
@@ -38563,10 +39294,22 @@ declare module "sap/m/ListBase" {
38563
39294
  * Default value is `Default`.
38564
39295
  */
38565
39296
  getMultiSelectMode(): MultiSelectMode | keyof typeof MultiSelectMode;
39297
+ /**
39298
+ * @SINCE 1.101
39299
+ *
39300
+ * Gets content of aggregation {@link #getNoData noData}.
39301
+ *
39302
+ * Defines the custom visualization if there is no data available. **Note:** If both a `noDataText` property
39303
+ * and a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
39304
+ * is undefined or set to null, the `noDataText` property is used instead.
39305
+ */
39306
+ getNoData(): Control | string;
38566
39307
  /**
38567
39308
  * Gets current value of property {@link #getNoDataText noDataText}.
38568
39309
  *
38569
- * This text is displayed when the control contains no items.
39310
+ * This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
39311
+ * a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
39312
+ * is undefined or set to null, the `noDataText` property is used instead.
38570
39313
  */
38571
39314
  getNoDataText(): string;
38572
39315
  /**
@@ -39084,10 +39827,23 @@ declare module "sap/m/ListBase" {
39084
39827
  */
39085
39828
  sMultiSelectMode?: MultiSelectMode | keyof typeof MultiSelectMode
39086
39829
  ): this;
39830
+ /**
39831
+ * @SINCE 1.101
39832
+ *
39833
+ * Sets the aggregated {@link #getNoData noData}.
39834
+ */
39835
+ setNoData(
39836
+ /**
39837
+ * The noData to set
39838
+ */
39839
+ vNoData: Control | string
39840
+ ): this;
39087
39841
  /**
39088
39842
  * Sets a new value for property {@link #getNoDataText noDataText}.
39089
39843
  *
39090
- * This text is displayed when the control contains no items.
39844
+ * This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
39845
+ * a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
39846
+ * is undefined or set to null, the `noDataText` property is used instead.
39091
39847
  *
39092
39848
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39093
39849
  */
@@ -39267,7 +40023,7 @@ declare module "sap/m/ListBase" {
39267
40023
  * This callback function is called with two parameters(swipedListItem and swipedContent) after swipe-out
39268
40024
  * animation is finished.
39269
40025
  */
39270
- oCallback: any
40026
+ callback: Function
39271
40027
  ): this;
39272
40028
  /**
39273
40029
  * Unbinds aggregation {@link #getItems items} from model data.
@@ -39325,7 +40081,9 @@ declare module "sap/m/ListBase" {
39325
40081
  showUnread?: boolean | PropertyBindingInfo;
39326
40082
 
39327
40083
  /**
39328
- * This text is displayed when the control contains no items.
40084
+ * This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
40085
+ * a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
40086
+ * is undefined or set to null, the `noDataText` property is used instead.
39329
40087
  */
39330
40088
  noDataText?: string | PropertyBindingInfo;
39331
40089
 
@@ -39504,6 +40262,15 @@ declare module "sap/m/ListBase" {
39504
40262
  */
39505
40263
  contextMenu?: IContextMenu;
39506
40264
 
40265
+ /**
40266
+ * @SINCE 1.101
40267
+ *
40268
+ * Defines the custom visualization if there is no data available. **Note:** If both a `noDataText` property
40269
+ * and a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
40270
+ * is undefined or set to null, the `noDataText` property is used instead.
40271
+ */
40272
+ noData?: string | Control | PropertyBindingInfo;
40273
+
39507
40274
  /**
39508
40275
  * @SINCE 1.28.0
39509
40276
  *
@@ -40341,6 +41108,15 @@ declare module "sap/m/MaskInput" {
40341
41108
  * The `sap.m.MaskInput` control allows users to easily enter data in a certain format and in a fixed-width
40342
41109
  * input (for example: date, time, phone number, credit card number, currency, IP address, MAC address,
40343
41110
  * and others).
41111
+ *
41112
+ * When focused, the masked input field is formatted and prefilled. The `placeholderSymbol` property value
41113
+ * is reserved for a placeholder. The value that has to be entered in this field is in the `mask` property
41114
+ * value format where every symbol corresponds to a rule. A rule is a set of characters that are allowed
41115
+ * for their particular position. Symbols that do not have a rule are immutable characters and are part
41116
+ * of the value formatting.
41117
+ *
41118
+ * Descriptive text as `placeholder` property value should be added, in order guide users what
41119
+ * input is expected based on the particular control configuration.
40344
41120
  */
40345
41121
  export default class MaskInput extends InputBase {
40346
41122
  /**
@@ -41387,6 +42163,10 @@ declare module "sap/m/MenuButton" {
41387
42163
  *
41388
42164
  * Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
41389
42165
  * from the icon font.
42166
+ *
42167
+ * Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
42168
+ * icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
42169
+ * selection since there is not enough space for a text.
41390
42170
  */
41391
42171
  getIcon(): URI;
41392
42172
  /**
@@ -41545,6 +42325,10 @@ declare module "sap/m/MenuButton" {
41545
42325
  * Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
41546
42326
  * from the icon font.
41547
42327
  *
42328
+ * Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
42329
+ * icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
42330
+ * selection since there is not enough space for a text.
42331
+ *
41548
42332
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
41549
42333
  */
41550
42334
  setIcon(
@@ -41721,6 +42505,10 @@ declare module "sap/m/MenuButton" {
41721
42505
  /**
41722
42506
  * Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
41723
42507
  * from the icon font.
42508
+ *
42509
+ * Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
42510
+ * icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
42511
+ * selection since there is not enough space for a text.
41724
42512
  */
41725
42513
  icon?: URI | PropertyBindingInfo;
41726
42514
 
@@ -42324,10 +43112,10 @@ declare module "sap/m/MessageBox" {
42324
43112
  * ```
42325
43113
  *
42326
43114
  *
42327
- * When using the `sap.m.MessageBox` in SAP Quartz themes, the breakpoints and layout paddings could be
42328
- * determined by the MessageBox' width. To enable this concept and add responsive paddings to an element
42329
- * of the MessageBox control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
42330
- * `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
43115
+ * When using the `sap.m.MessageBox` in SAP Quartz and Horizon themes, the breakpoints and layout paddings
43116
+ * could be determined by the MessageBox' width. To enable this concept and add responsive paddings to an
43117
+ * element of the MessageBox control, you have to add the following classes depending on your use case:
43118
+ * `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
42331
43119
  * See:
42332
43120
  * {@link fiori:https://experience.sap.com/fiori-design-web/message-box/ Message Box}
42333
43121
  */
@@ -45055,6 +45843,8 @@ declare module "sap/m/MessagePopover" {
45055
45843
  */
45056
45844
  getAsyncURLHandler(): any;
45057
45845
  /**
45846
+ * @SINCE 1.73
45847
+ *
45058
45848
  * Gets current value of property {@link #getGroupItems groupItems}.
45059
45849
  *
45060
45850
  * Defines whether the MessageItems are grouped or not.
@@ -45181,6 +45971,8 @@ declare module "sap/m/MessagePopover" {
45181
45971
  oAsyncURLHandler?: any
45182
45972
  ): this;
45183
45973
  /**
45974
+ * @SINCE 1.73
45975
+ *
45184
45976
  * Sets a new value for property {@link #getGroupItems groupItems}.
45185
45977
  *
45186
45978
  * Defines whether the MessageItems are grouped or not.
@@ -45280,6 +46072,8 @@ declare module "sap/m/MessagePopover" {
45280
46072
  initiallyExpanded?: boolean | PropertyBindingInfo;
45281
46073
 
45282
46074
  /**
46075
+ * @SINCE 1.73
46076
+ *
45283
46077
  * Defines whether the MessageItems are grouped or not.
45284
46078
  */
45285
46079
  groupItems?: boolean | PropertyBindingInfo;
@@ -48153,8 +48947,8 @@ declare module "sap/m/NavContainer" {
48153
48947
  * using the given data. For back navigation this can be used e.g. when returning from a detail page to
48154
48948
  * transfer any settings done there.
48155
48949
  *
48156
- * When the "transitionParameters" object is used, this "data" object must also be given (either as object
48157
- * or as null) in order to have a proper parameter order.
48950
+ * When the `oTransitionParameters` parameter is used, this `backData` parameter must also be given (either
48951
+ * as object or as `null` or `undefined`) in order to have a proper parameter order.
48158
48952
  */
48159
48953
  backData?: object,
48160
48954
  /**
@@ -48162,8 +48956,8 @@ declare module "sap/m/NavContainer" {
48162
48956
  * like the DOM element which triggered the transition or the desired transition duration. The animation
48163
48957
  * type can NOT be selected here - it is always the inverse of the "to" navigation.
48164
48958
  *
48165
- * In order to use the "transitionParameters" property, the "data" property must be used (at least "null"
48166
- * must be given) for a proper parameter order.
48959
+ * In order to use the `oTransitionParameters parameter, the backData` parameter must be used
48960
+ * (at least `null` or `undefined` must be given) for a proper parameter order.
48167
48961
  *
48168
48962
  * NOTE: it depends on the transition function how the object should be structured and which parameters
48169
48963
  * are actually used to influence the transition.
@@ -48195,22 +48989,22 @@ declare module "sap/m/NavContainer" {
48195
48989
  * the "backToPage" navigation. The event on the target page will contain this data object as "backData"
48196
48990
  * property.
48197
48991
  *
48198
- * When the "transitionParameters" object is used, this "data" object must also be given (either as object
48199
- * or as null) in order to have a proper parameter order.
48992
+ * When the `oTransitionParameters` parameter is used, this `backData` parameter must also be given (either
48993
+ * as object or as `null` or `undefined`) in order to have a proper parameter order.
48200
48994
  */
48201
- backData: object,
48995
+ backData?: object,
48202
48996
  /**
48203
48997
  * This optional object can give additional information to the transition function, like the DOM element
48204
48998
  * which triggered the transition or the desired transition duration. The animation type can NOT be selected
48205
48999
  * here - it is always the inverse of the "to" navigation.
48206
49000
  *
48207
- * In order to use the "transitionParameters" property, the "data" property must be used (at least "null"
48208
- * must be given) for a proper parameter order.
49001
+ * In order to use the `oTransitionParameters parameter, the backData` parameter must be used
49002
+ * (at least `null` or `undefined` must be given) for a proper parameter order.
48209
49003
  *
48210
49004
  * NOTE: it depends on the transition function how the object should be structured and which parameters
48211
49005
  * are actually used to influence the transition.
48212
49006
  */
48213
- oTransitionParameters: object
49007
+ oTransitionParameters?: object
48214
49008
  ): this;
48215
49009
  /**
48216
49010
  * @SINCE 1.7.1
@@ -48231,8 +49025,8 @@ declare module "sap/m/NavContainer" {
48231
49025
  * the "backToTop" navigation. The event on the target page will contain this data object as "backData"
48232
49026
  * property.
48233
49027
  *
48234
- * When the "transitionParameters" object is used, this "data" object must also be given (either as object
48235
- * or as null) in order to have a proper parameter order.
49028
+ * When the `oTransitionParameters` parameter is used, this `backData` parameter must also be given (either
49029
+ * as object or as `null` or `undefined`) in order to have a proper parameter order.
48236
49030
  */
48237
49031
  backData?: object,
48238
49032
  /**
@@ -48240,8 +49034,8 @@ declare module "sap/m/NavContainer" {
48240
49034
  * which triggered the transition or the desired transition duration. The animation type can NOT be selected
48241
49035
  * here - it is always the inverse of the "to" navigation.
48242
49036
  *
48243
- * In order to use the "transitionParameters" property, the "data" property must be used (at least "null"
48244
- * must be given) for a proper parameter order.
49037
+ * In order to use the `oTransitionParameters parameter, the backData` parameter must be used
49038
+ * (at least `null` or `undefined` must be given) for a proper parameter order.
48245
49039
  *
48246
49040
  * NOTE: it depends on the transition function how the object should be structured and which parameters
48247
49041
  * are actually used to influence the transition.
@@ -48721,60 +49515,14 @@ declare module "sap/m/NavContainer" {
48721
49515
  /**
48722
49516
  * The screen to which drilldown should happen. The ID or the control itself can be given.
48723
49517
  */
48724
- pageId: string,
49518
+ vPageIdOrControl: string,
48725
49519
  /**
48726
49520
  * The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right),
48727
49521
  * "baseSlide", "fade", "flip", and "show" and the names of any registered custom transitions.
48728
49522
  *
48729
49523
  * None of the standard transitions is currently making use of any given transition parameters.
48730
49524
  */
48731
- transitionName: string,
48732
- /**
48733
- * Since version 1.7.1. This optional object can carry any payload data which should be made available to
48734
- * the target page. The "BeforeShow" event on the target page will contain this data object as "data" property.
48735
- * Use case: in scenarios where the entity triggering the navigation can or should not directly initialize
48736
- * the target page, it can fill this object and the target page itself (or a listener on it) can take over
48737
- * the initialization, using the given data.
48738
- *
48739
- * When the "transitionParameters" object is used, this "data" object must also be given (either as object
48740
- * or as null) in order to have a proper parameter order.
48741
- */
48742
- data: object,
48743
- /**
48744
- * Since version 1.7.1. This optional object can contain additional information for the transition function,
48745
- * like the DOM element which triggered the transition or the desired transition duration.
48746
- *
48747
- * For a proper parameter order, the "data" parameter must be given when the "transitionParameters" parameter
48748
- * is used. (it can be given as "null")
48749
- *
48750
- * NOTE: it depends on the transition function how the object should be structured and which parameters
48751
- * are actually used to influence the transition. The "show", "slide", "baseSlide" and "fade" transitions
48752
- * do not use any parameter.
48753
- */
48754
- oTransitionParameters: object
48755
- ): this;
48756
- /**
48757
- * Navigates to the next page (with drill-down semantic) with the given (or default) animation. This creates
48758
- * a new history item inside the NavContainer and allows going back.
48759
- *
48760
- * Note that any modifications to the target page (like setting its title, or anything else that could cause
48761
- * a re-rendering) should be done BEFORE calling to(), in order to avoid unwanted side effects, e.g. related
48762
- * to the page animation.
48763
- *
48764
- * Available transitions currently include "slide" (default), "baseSlide", "fade", "flip", and "show". None
48765
- * of these is currently making use of any given transitionParameters.
48766
- *
48767
- * Calling this navigation method triggers first the (cancelable) "navigate" event on the NavContainer,
48768
- * then the "BeforeHide" pseudo event on the source page and "BeforeFirstShow" (if applicable) and"BeforeShow"
48769
- * on the target page. Later - after the transition has completed - the "AfterShow" pseudo event is triggered
48770
- * on the target page and "AfterHide" on the page which has been left. The given data object is available
48771
- * in the "BeforeFirstShow", "BeforeShow" and "AfterShow" event object as "data" property.
48772
- */
48773
- to(
48774
- /**
48775
- * The screen to which drilldown should happen. The ID or the control itself can be given.
48776
- */
48777
- pageId: string,
49525
+ sTransitionName?: string,
48778
49526
  /**
48779
49527
  * Since version 1.7.1. This optional object can carry any payload data which should be made available to
48780
49528
  * the target page. The "BeforeShow" event on the target page will contain this data object as "data" property.
@@ -48782,22 +49530,22 @@ declare module "sap/m/NavContainer" {
48782
49530
  * the target page, it can fill this object and the target page itself (or a listener on it) can take over
48783
49531
  * the initialization, using the given data.
48784
49532
  *
48785
- * When the "transitionParameters" object is used, this "data" object must also be given (either as object
48786
- * or as null) in order to have a proper parameter order.
49533
+ * When the `oTransitionParameters` parameter is used, this `oData` parameter must also be given (either
49534
+ * as object or as `null` or `undefined`) in order to have a proper parameter order.
48787
49535
  */
48788
- data: object,
49536
+ oData?: object,
48789
49537
  /**
48790
49538
  * Since version 1.7.1. This optional object can contain additional information for the transition function,
48791
49539
  * like the DOM element which triggered the transition or the desired transition duration.
48792
49540
  *
48793
- * For a proper parameter order, the "data" parameter must be given when the "transitionParameters" parameter
48794
- * is used. (it can be given as "null")
49541
+ * For a proper parameter order, the `oData` parameter must be given when the `oTransitionParameters` parameter
49542
+ * is used (it can be given as `null` or `undefined`).
48795
49543
  *
48796
49544
  * NOTE: it depends on the transition function how the object should be structured and which parameters
48797
49545
  * are actually used to influence the transition. The "show", "slide", "baseSlide" and "fade" transitions
48798
49546
  * do not use any parameter.
48799
49547
  */
48800
- oTransitionParameters: object
49548
+ oTransitionParameters?: object
48801
49549
  ): this;
48802
49550
  }
48803
49551
  /**
@@ -52001,6 +52749,9 @@ declare module "sap/m/ObjectHeader" {
52001
52749
  *
52002
52750
  * Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
52003
52751
  * icon is not available, or cannot be displayed.
52752
+ *
52753
+ * **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
52754
+ * decoration only.
52004
52755
  */
52005
52756
  getIconAlt(): string;
52006
52757
  /**
@@ -52591,18 +53342,13 @@ declare module "sap/m/ObjectHeader" {
52591
53342
  bIconActive?: boolean
52592
53343
  ): this;
52593
53344
  /**
52594
- * Sets a new value for property {@link #getIconAlt iconAlt}.
52595
- *
52596
- * Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
52597
- * icon is not available, or cannot be displayed.
52598
- *
52599
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
53345
+ * Sets the alternative text of the `ObjectHeader` icon.
52600
53346
  */
52601
53347
  setIconAlt(
52602
53348
  /**
52603
- * New value for property `iconAlt`
53349
+ * the alternative icon text
52604
53350
  */
52605
- sIconAlt?: string
53351
+ sIconAlt: boolean
52606
53352
  ): this;
52607
53353
  /**
52608
53354
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
@@ -53014,6 +53760,9 @@ declare module "sap/m/ObjectHeader" {
53014
53760
  /**
53015
53761
  * Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
53016
53762
  * icon is not available, or cannot be displayed.
53763
+ *
53764
+ * **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
53765
+ * decoration only.
53017
53766
  */
53018
53767
  iconAlt?: string | PropertyBindingInfo;
53019
53768
 
@@ -56518,15 +57267,15 @@ declare module "sap/m/p13n/GroupPanel" {
56518
57267
  /**
56519
57268
  * The unique key of the item
56520
57269
  */
56521
- name: String;
57270
+ name: string;
56522
57271
  /**
56523
57272
  * The label describing the personalization item
56524
57273
  */
56525
- label: String;
57274
+ label: string;
56526
57275
  /**
56527
57276
  * Defines the grouping state of the personalization item
56528
57277
  */
56529
- grouped: Boolean;
57278
+ grouped: boolean;
56530
57279
  };
56531
57280
 
56532
57281
  /**
@@ -57247,7 +57996,7 @@ declare module "sap/m/p13n/SelectionPanel" {
57247
57996
  /**
57248
57997
  * An array containing the personalization state that is represented by the `SelectionPanel`.
57249
57998
  */
57250
- aP13nData: Item
57999
+ aP13nData: Item[]
57251
58000
  ): void;
57252
58001
  /**
57253
58002
  * Sets a new value for property {@link #getShowHeader showHeader}.
@@ -57307,19 +58056,19 @@ declare module "sap/m/p13n/SortPanel" {
57307
58056
  /**
57308
58057
  * The unique key of the item
57309
58058
  */
57310
- name: String;
58059
+ name: string;
57311
58060
  /**
57312
58061
  * The label describing the personalization item
57313
58062
  */
57314
- label: String;
58063
+ label: string;
57315
58064
  /**
57316
58065
  * Defines the sorting state of the personalization item
57317
58066
  */
57318
- sorted: Boolean;
58067
+ sorted: boolean;
57319
58068
  /**
57320
58069
  * Defines the descending state of the personalization item
57321
58070
  */
57322
- descending: Boolean;
58071
+ descending: boolean;
57323
58072
  };
57324
58073
 
57325
58074
  /**
@@ -57332,6 +58081,13 @@ declare module "sap/m/p13n/SortPanel" {
57332
58081
  /* was: sap.m.p13n.QueryPanel */ extends Object {
57333
58082
  /**
57334
58083
  * Constructor for a new `SortPanel`.
58084
+ *
58085
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
58086
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
58087
+ * of the syntax of the settings object.
58088
+ *
58089
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
58090
+ * sap.m.p13n.QueryPanel} can be used.
57335
58091
  */
57336
58092
  constructor(
57337
58093
  /**
@@ -57341,6 +58097,13 @@ declare module "sap/m/p13n/SortPanel" {
57341
58097
  );
57342
58098
  /**
57343
58099
  * Constructor for a new `SortPanel`.
58100
+ *
58101
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
58102
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
58103
+ * of the syntax of the settings object.
58104
+ *
58105
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
58106
+ * sap.m.p13n.QueryPanel} can be used.
57344
58107
  */
57345
58108
  constructor(
57346
58109
  /**
@@ -67037,6 +67800,8 @@ declare module "sap/m/PlanningCalendar" {
67037
67800
  */
67038
67801
  getCustomAppointmentsSorterCallback(): appointmentsSorterCallback;
67039
67802
  /**
67803
+ * @SINCE 1.87
67804
+ *
67040
67805
  * Getter for the end point in time of the shown interval
67041
67806
  */
67042
67807
  getEndDate(): Date;
@@ -76556,12 +77321,7 @@ declare module "sap/m/RangeSlider" {
76556
77321
  /**
76557
77322
  * Updates values of the advanced tooltips.
76558
77323
  */
76559
- updateAdvancedTooltipDom(
76560
- /**
76561
- * The new value
76562
- */
76563
- sNewValue: string
76564
- ): void;
77324
+ updateAdvancedTooltipDom(): void;
76565
77325
  }
76566
77326
 
76567
77327
  export interface $RangeSliderSettings extends $SliderSettings {
@@ -77107,7 +77867,7 @@ declare module "sap/m/RatingIndicator" {
77107
77867
  /**
77108
77868
  * The rating value to be set.
77109
77869
  */
77110
- fValue: float
77870
+ vValue: float | string
77111
77871
  ): this;
77112
77872
  /**
77113
77873
  * Sets a new value for property {@link #getVisualMode visualMode}.
@@ -81851,6 +82611,61 @@ declare module "sap/m/Select" {
81851
82611
  */
81852
82612
  oListener?: object
81853
82613
  ): this;
82614
+ /**
82615
+ * @SINCE 1.100
82616
+ *
82617
+ * Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.Select`.
82618
+ *
82619
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
82620
+ * otherwise it will be bound to this `sap.m.Select` itself.
82621
+ *
82622
+ * Fires when the user navigates through the `Select` items. It's also fired on revert of the currently
82623
+ * selected item.
82624
+ *
82625
+ * **Note:** Revert occurs in some of the following actions:
82626
+ * - The user clicks outside of the `Select`
82627
+ * - The Escape key is pressed
82628
+ */
82629
+ attachLiveChange(
82630
+ /**
82631
+ * An application-specific payload object that will be passed to the event handler along with the event
82632
+ * object when firing the event
82633
+ */
82634
+ oData: object,
82635
+ /**
82636
+ * The function to be called when the event occurs
82637
+ */
82638
+ fnFunction: (p1: Event) => void,
82639
+ /**
82640
+ * Context object to call the event handler with. Defaults to this `sap.m.Select` itself
82641
+ */
82642
+ oListener?: object
82643
+ ): this;
82644
+ /**
82645
+ * @SINCE 1.100
82646
+ *
82647
+ * Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.Select`.
82648
+ *
82649
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
82650
+ * otherwise it will be bound to this `sap.m.Select` itself.
82651
+ *
82652
+ * Fires when the user navigates through the `Select` items. It's also fired on revert of the currently
82653
+ * selected item.
82654
+ *
82655
+ * **Note:** Revert occurs in some of the following actions:
82656
+ * - The user clicks outside of the `Select`
82657
+ * - The Escape key is pressed
82658
+ */
82659
+ attachLiveChange(
82660
+ /**
82661
+ * The function to be called when the event occurs
82662
+ */
82663
+ fnFunction: (p1: Event) => void,
82664
+ /**
82665
+ * Context object to call the event handler with. Defaults to this `sap.m.Select` itself
82666
+ */
82667
+ oListener?: object
82668
+ ): this;
81854
82669
  /**
81855
82670
  * Binds aggregation {@link #getItems items} to model data.
81856
82671
  *
@@ -81897,6 +82712,23 @@ declare module "sap/m/Select" {
81897
82712
  */
81898
82713
  oListener?: object
81899
82714
  ): this;
82715
+ /**
82716
+ * @SINCE 1.100
82717
+ *
82718
+ * Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.Select`.
82719
+ *
82720
+ * The passed function and listener object must match the ones used for event registration.
82721
+ */
82722
+ detachLiveChange(
82723
+ /**
82724
+ * The function to be called, when the event occurs
82725
+ */
82726
+ fnFunction: (p1: Event) => void,
82727
+ /**
82728
+ * Context object on which the given function had to be called
82729
+ */
82730
+ oListener?: object
82731
+ ): this;
81900
82732
  /**
81901
82733
  * Fires event {@link #event:change change} to attached listeners.
81902
82734
  */
@@ -81915,6 +82747,22 @@ declare module "sap/m/Select" {
81915
82747
  previousSelectedItem?: Item;
81916
82748
  }
81917
82749
  ): this;
82750
+ /**
82751
+ * @SINCE 1.100
82752
+ *
82753
+ * Fires event {@link #event:liveChange liveChange} to attached listeners.
82754
+ */
82755
+ fireLiveChange(
82756
+ /**
82757
+ * Parameters to pass along with the event
82758
+ */
82759
+ mParameters?: {
82760
+ /**
82761
+ * The selected item.
82762
+ */
82763
+ selectedItem?: Item;
82764
+ }
82765
+ ): this;
81918
82766
  /**
81919
82767
  * Returns the `sap.m.Select` accessibility information.
81920
82768
  * See:
@@ -82134,6 +82982,8 @@ declare module "sap/m/Select" {
82134
82982
  * - If invalid or none `selectedKey` is used, the first item is being selected.
82135
82983
  * - Invalid or missing `selectedKey` leads to severe functional issues in `sap.ui.table.Table`, when
82136
82984
  * the `sap.m.Select` is used inside a `sap.ui.table.Table` column.
82985
+ * - If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
82986
+ * property is set to `true`.
82137
82987
  *
82138
82988
  * Default value is `empty string`.
82139
82989
  */
@@ -82519,8 +83369,8 @@ declare module "sap/m/Select" {
82519
83369
  * `sKey` is an empty string `""` or `undefined`, the value of `sKey` is changed to match the `key` of the
82520
83370
  * first enabled item and the first enabled item is selected (if any items exist).
82521
83371
  *
82522
- * In the case that an item has the default key value, it is selected instead. If duplicate keys exist,
82523
- * the first item matching the key is selected.
83372
+ * If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
83373
+ * property is set to `true`. If duplicate keys exist, the first item matching the key is selected.
82524
83374
  */
82525
83375
  sKey: string
82526
83376
  ): this;
@@ -82718,6 +83568,8 @@ declare module "sap/m/Select" {
82718
83568
  * - If invalid or none `selectedKey` is used, the first item is being selected.
82719
83569
  * - Invalid or missing `selectedKey` leads to severe functional issues in `sap.ui.table.Table`, when
82720
83570
  * the `sap.m.Select` is used inside a `sap.ui.table.Table` column.
83571
+ * - If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
83572
+ * property is set to `true`.
82721
83573
  */
82722
83574
  selectedKey?: string | PropertyBindingInfo;
82723
83575
 
@@ -82869,6 +83721,18 @@ declare module "sap/m/Select" {
82869
83721
  * - The item is pressed
82870
83722
  */
82871
83723
  change?: (oEvent: Event) => void;
83724
+
83725
+ /**
83726
+ * @SINCE 1.100
83727
+ *
83728
+ * Fires when the user navigates through the `Select` items. It's also fired on revert of the currently
83729
+ * selected item.
83730
+ *
83731
+ * **Note:** Revert occurs in some of the following actions:
83732
+ * - The user clicks outside of the `Select`
83733
+ * - The Escape key is pressed
83734
+ */
83735
+ liveChange?: (oEvent: Event) => void;
82872
83736
  }
82873
83737
  }
82874
83738
 
@@ -82936,9 +83800,9 @@ declare module "sap/m/SelectDialog" {
82936
83800
  * we recommend setting the `growing` property to `false`. Responsive Behavior:
82937
83801
  * - On phones, the select dialog takes up the whole screen.
82938
83802
  * - On desktop and tablet devices, the select dialog appears as a popover. When using the `sap.m.SelectDialog`
82939
- * in SAP Quartz themes, the breakpoints and layout paddings could be determined by the dialog's width.
82940
- * To enable this concept and add responsive paddings to an element of the control, you have to add the
82941
- * following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`,
83803
+ * in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the dialog's
83804
+ * width. To enable this concept and add responsive paddings to an element of the control, you have to add
83805
+ * the following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`,
82942
83806
  * `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
82943
83807
  */
82944
83808
  export default class SelectDialog extends SelectDialogBase {
@@ -93562,6 +94426,18 @@ declare module "sap/m/SinglePlanningCalendar" {
93562
94426
  * ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
93563
94427
  */
93564
94428
  getLegend(): ID;
94429
+ /**
94430
+ * @SINCE 1.99
94431
+ *
94432
+ * Gets current value of property {@link #getScaleFactor scaleFactor}.
94433
+ *
94434
+ * Determines scale factor for the appointments.
94435
+ *
94436
+ * Acceptable range is from 1 to 6.
94437
+ *
94438
+ * Default value is `1`.
94439
+ */
94440
+ getScaleFactor(): float;
93565
94441
  /**
93566
94442
  * @SINCE 1.62
93567
94443
  *
@@ -93939,6 +94815,25 @@ declare module "sap/m/SinglePlanningCalendar" {
93939
94815
  */
93940
94816
  oLegend: ID | PlanningCalendarLegend
93941
94817
  ): this;
94818
+ /**
94819
+ * @SINCE 1.99
94820
+ *
94821
+ * Sets a new value for property {@link #getScaleFactor scaleFactor}.
94822
+ *
94823
+ * Determines scale factor for the appointments.
94824
+ *
94825
+ * Acceptable range is from 1 to 6.
94826
+ *
94827
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
94828
+ *
94829
+ * Default value is `1`.
94830
+ */
94831
+ setScaleFactor(
94832
+ /**
94833
+ * New value for property `scaleFactor`
94834
+ */
94835
+ fScaleFactor?: float
94836
+ ): this;
93942
94837
  /**
93943
94838
  * Sets the associated {@link #getSelectedView selectedView}.
93944
94839
  */
@@ -94066,6 +94961,15 @@ declare module "sap/m/SinglePlanningCalendar" {
94066
94961
  | (PlanningCalendarStickyMode | keyof typeof PlanningCalendarStickyMode)
94067
94962
  | PropertyBindingInfo;
94068
94963
 
94964
+ /**
94965
+ * @SINCE 1.99
94966
+ *
94967
+ * Determines scale factor for the appointments.
94968
+ *
94969
+ * Acceptable range is from 1 to 6.
94970
+ */
94971
+ scaleFactor?: float | PropertyBindingInfo;
94972
+
94069
94973
  /**
94070
94974
  * @SINCE 1.64
94071
94975
  *
@@ -97040,8 +97944,8 @@ declare module "sap/m/SplitContainer" {
97040
97944
  * NOTE: it depends on the transition function how the object should be structured and which parameters
97041
97945
  * are actually used to influence the transition.
97042
97946
  */
97043
- oTransitionParameter: object
97044
- ): this;
97947
+ oTransitionParameters: object
97948
+ ): void;
97045
97949
  /**
97046
97950
  * Navigates back to the previous master page which is found in the history.
97047
97951
  */
@@ -97071,8 +97975,8 @@ declare module "sap/m/SplitContainer" {
97071
97975
  * NOTE: it depends on the transition function how the object should be structured and which parameters
97072
97976
  * are actually used to influence the transition.
97073
97977
  */
97074
- oTransitionParameter: object
97075
- ): this;
97978
+ oTransitionParameters: object
97979
+ ): void;
97076
97980
  /**
97077
97981
  * @SINCE 1.10.0
97078
97982
  *
@@ -97118,7 +98022,7 @@ declare module "sap/m/SplitContainer" {
97118
98022
  * are actually used to influence the transition.
97119
98023
  */
97120
98024
  oTransitionParameters: object
97121
- ): this;
98025
+ ): void;
97122
98026
  /**
97123
98027
  * Navigates back to the initial/top level of Detail (this is the element aggregated as initialPage, or
97124
98028
  * the first added element). NOTE: If already on the initial page, nothing happens. The transition effect
@@ -97150,8 +98054,8 @@ declare module "sap/m/SplitContainer" {
97150
98054
  * NOTE: it depends on the transition function how the object should be structured and which parameters
97151
98055
  * are actually used to influence the transition.
97152
98056
  */
97153
- oTransitionParameter: object
97154
- ): Control;
98057
+ oTransitionParameters: object
98058
+ ): void;
97155
98059
  /**
97156
98060
  * Navigates back to the initial/top level of Master (this is the element aggregated as "initialPage", or
97157
98061
  * the first added element). NOTE: If already on the initial page, nothing happens. The transition effect
@@ -97183,8 +98087,8 @@ declare module "sap/m/SplitContainer" {
97183
98087
  * NOTE: it depends on the transition function how the object should be structured and which parameters
97184
98088
  * are actually used to influence the transition.
97185
98089
  */
97186
- oTransitionParameter: object
97187
- ): Control;
98090
+ oTransitionParameters: object
98091
+ ): void;
97188
98092
  /**
97189
98093
  * Destroys all the detailPages in the aggregation {@link #getDetailPages detailPages}.
97190
98094
  */
@@ -97691,8 +98595,8 @@ declare module "sap/m/SplitContainer" {
97691
98595
  /**
97692
98596
  * The ID of the page that needs to be fetched.
97693
98597
  */
97694
- sId: string
97695
- ): Control;
98598
+ pageId: string
98599
+ ): Control | null;
97696
98600
  /**
97697
98601
  * Gets content of aggregation {@link #getDetailPages detailPages}.
97698
98602
  *
@@ -97743,8 +98647,8 @@ declare module "sap/m/SplitContainer" {
97743
98647
  /**
97744
98648
  * The ID of the page that needs to be fetched
97745
98649
  */
97746
- sId: string
97747
- ): Control;
98650
+ pageId: string
98651
+ ): Control | null;
97748
98652
  /**
97749
98653
  * Gets content of aggregation {@link #getMasterPages masterPages}.
97750
98654
  *
@@ -97774,13 +98678,13 @@ declare module "sap/m/SplitContainer" {
97774
98678
  /**
97775
98679
  * The ID of the page that needs to be fetched
97776
98680
  */
97777
- sId: string,
98681
+ pageId: string,
97778
98682
  /**
97779
98683
  * If the page with given ID should be fetched from the master area. If it's set to false, the page will
97780
98684
  * be fetched from detail area.
97781
98685
  */
97782
98686
  bMaster: boolean
97783
- ): Control;
98687
+ ): Control | null;
97784
98688
  /**
97785
98689
  * Returns the previous page (the page, from which the user drilled down to the current page with to()).
97786
98690
  * Note: this is not the page, which the user has seen before, but the page which is the target of the next
@@ -97895,10 +98799,11 @@ declare module "sap/m/SplitContainer" {
97895
98799
  /**
97896
98800
  * @SINCE 1.16.5
97897
98801
  *
97898
- * Returns whether master area is currently displayed on the screen. In desktop browser or tablet, this
97899
- * method returns true when master area is displayed on the screen, regardless if in portrait or landscape
97900
- * mode. On mobile phone devices, this method returns true when the currently displayed page is from the
97901
- * pages, which are added to the master area, otherwise, it returns false.
98802
+ * Returns whether master area is currently displayed on the screen.
98803
+ *
98804
+ * In desktop browser or tablet, this method returns true when master area is displayed on the screen, regardless
98805
+ * if in portrait or landscape mode. On mobile phone devices, this method returns true when the currently
98806
+ * displayed page is from the pages, which are added to the master area, otherwise, it returns false.
97902
98807
  */
97903
98808
  isMasterShown(): boolean;
97904
98809
  /**
@@ -98114,7 +99019,7 @@ declare module "sap/m/SplitContainer" {
98114
99019
  /**
98115
99020
  * Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
98116
99021
  */
98117
- showMaster(): this;
99022
+ showMaster(): void;
98118
99023
  /**
98119
99024
  * @SINCE 1.10.0
98120
99025
  *
@@ -98157,7 +99062,7 @@ declare module "sap/m/SplitContainer" {
98157
99062
  * any parameter.
98158
99063
  */
98159
99064
  oTransitionParameters: object
98160
- ): this;
99065
+ ): void;
98161
99066
  /**
98162
99067
  * @SINCE 1.10.0
98163
99068
  *
@@ -98193,7 +99098,7 @@ declare module "sap/m/SplitContainer" {
98193
99098
  * any parameter.
98194
99099
  */
98195
99100
  oTransitionParameters: object
98196
- ): this;
99101
+ ): void;
98197
99102
  /**
98198
99103
  * Navigates to a given detail page.
98199
99104
  */
@@ -98229,8 +99134,8 @@ declare module "sap/m/SplitContainer" {
98229
99134
  * are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
98230
99135
  * any parameter.
98231
99136
  */
98232
- oTransitionParameter: object
98233
- ): this;
99137
+ oTransitionParameters: object
99138
+ ): void;
98234
99139
  /**
98235
99140
  * Navigates to a given master page.
98236
99141
  */
@@ -98270,7 +99175,7 @@ declare module "sap/m/SplitContainer" {
98270
99175
  * any parameter.
98271
99176
  */
98272
99177
  oTransitionParameters: object
98273
- ): this;
99178
+ ): void;
98274
99179
  }
98275
99180
 
98276
99181
  export interface $SplitContainerSettings extends $ControlSettings {
@@ -104056,10 +104961,11 @@ declare module "sap/m/TableSelectDialog" {
104056
104961
  * only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase
104057
104962
  * sap.m.ListBase} `sticky` property. Responsive Behavior:
104058
104963
  * - On smaller screens, the columns of the table wrap and build a list that shows all the information.
104059
- * When using the `sap.m.TableSelectDialog` in SAP Quartz themes, the breakpoints and layout paddings
104060
- * could be determined by the dialog's width. To enable this concept and add responsive paddings to an element
104061
- * of the control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
104062
- * `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
104964
+ * When using the `sap.m.TableSelectDialog` in SAP Quartz and Horizon themes, the breakpoints and
104965
+ * layout paddings could be determined by the dialog's width. To enable this concept and add responsive
104966
+ * paddings to an element of the control, you have to add the following classes depending on your use case:
104967
+ * `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`,
104968
+ * `sapUiResponsivePadding--footer`.
104063
104969
  */
104064
104970
  export default class TableSelectDialog extends SelectDialogBase {
104065
104971
  /**
@@ -104762,9 +105668,9 @@ declare module "sap/m/TableSelectDialog" {
104762
105668
  */
104763
105669
  setBusy(
104764
105670
  /**
104765
- * for enabling busy indicator
105671
+ * flag for enabling busy indicator
104766
105672
  */
104767
- flag: boolean
105673
+ bBusy: boolean
104768
105674
  ): this;
104769
105675
  /**
104770
105676
  * Sets the busyIndicatorDelay value to the internal table
@@ -104841,7 +105747,7 @@ declare module "sap/m/TableSelectDialog" {
104841
105747
  /**
104842
105748
  * The optional model name
104843
105749
  */
104844
- sName?: string
105750
+ sModelName?: string
104845
105751
  ): this;
104846
105752
  /**
104847
105753
  * Enables/Disables multi selection mode.
@@ -106847,7 +107753,7 @@ declare module "sap/m/TileContent" {
106847
107753
  PropertyBindingInfo,
106848
107754
  } from "sap/ui/base/ManagedObject";
106849
107755
 
106850
- import { ValueColor, FrameType, Size } from "sap/m/library";
107756
+ import { ValueColor, FrameType, Size, LoadState } from "sap/m/library";
106851
107757
 
106852
107758
  import ElementMetadata from "sap/ui/core/ElementMetadata";
106853
107759
 
@@ -106991,6 +107897,16 @@ declare module "sap/m/TileContent" {
106991
107897
  * Default value is `"Auto"`.
106992
107898
  */
106993
107899
  getSize(): Size | keyof typeof Size;
107900
+ /**
107901
+ * @SINCE 1.100.0
107902
+ *
107903
+ * Gets current value of property {@link #getState state}.
107904
+ *
107905
+ * The load status.
107906
+ *
107907
+ * Default value is `Loaded`.
107908
+ */
107909
+ getState(): LoadState | keyof typeof LoadState;
106994
107910
  /**
106995
107911
  * Gets current value of property {@link #getUnit unit}.
106996
107912
  *
@@ -107122,6 +108038,23 @@ declare module "sap/m/TileContent" {
107122
108038
  */
107123
108039
  sSize?: Size | keyof typeof Size
107124
108040
  ): this;
108041
+ /**
108042
+ * @SINCE 1.100.0
108043
+ *
108044
+ * Sets a new value for property {@link #getState state}.
108045
+ *
108046
+ * The load status.
108047
+ *
108048
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
108049
+ *
108050
+ * Default value is `Loaded`.
108051
+ */
108052
+ setState(
108053
+ /**
108054
+ * New value for property `state`
108055
+ */
108056
+ sState?: LoadState | keyof typeof LoadState
108057
+ ): this;
107125
108058
  /**
107126
108059
  * Sets a new value for property {@link #getUnit unit}.
107127
108060
  *
@@ -107185,6 +108118,13 @@ declare module "sap/m/TileContent" {
107185
108118
  */
107186
108119
  priority?: (Priority | keyof typeof Priority) | PropertyBindingInfo;
107187
108120
 
108121
+ /**
108122
+ * @SINCE 1.100.0
108123
+ *
108124
+ * The load status.
108125
+ */
108126
+ state?: (LoadState | keyof typeof LoadState) | PropertyBindingInfo;
108127
+
107188
108128
  /**
107189
108129
  * The switchable view that depends on the tile type.
107190
108130
  */
@@ -107557,10 +108497,6 @@ declare module "sap/m/TimePicker" {
107557
108497
  * Called after the clock picker appears.
107558
108498
  */
107559
108499
  onAfterOpen(): void;
107560
- /**
107561
- * Called before the clock picker closes.
107562
- */
107563
- onBeforeClose(): void;
107564
108500
  /**
107565
108501
  * Called before the clock picker appears.
107566
108502
  */
@@ -112450,6 +113386,8 @@ declare module "sap/m/upload/UploadSet" {
112450
113386
 
112451
113387
  import ElementMetadata from "sap/ui/core/ElementMetadata";
112452
113388
 
113389
+ import { ListMode } from "sap/m/library";
113390
+
112453
113391
  import OverflowToolbar from "sap/m/OverflowToolbar";
112454
113392
 
112455
113393
  import Uploader from "sap/m/upload/Uploader";
@@ -112960,6 +113898,51 @@ declare module "sap/m/upload/UploadSet" {
112960
113898
  */
112961
113899
  oListener?: object
112962
113900
  ): this;
113901
+ /**
113902
+ * @SINCE 1.100.0
113903
+ *
113904
+ * Attaches event handler `fnFunction` to the {@link #event:fileRenamed fileRenamed} event of this `sap.m.upload.UploadSet`.
113905
+ *
113906
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
113907
+ * otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
113908
+ *
113909
+ * The event is triggered when the file name is changed.
113910
+ */
113911
+ attachFileRenamed(
113912
+ /**
113913
+ * An application-specific payload object that will be passed to the event handler along with the event
113914
+ * object when firing the event
113915
+ */
113916
+ oData: object,
113917
+ /**
113918
+ * The function to be called when the event occurs
113919
+ */
113920
+ fnFunction: (p1: Event) => void,
113921
+ /**
113922
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
113923
+ */
113924
+ oListener?: object
113925
+ ): this;
113926
+ /**
113927
+ * @SINCE 1.100.0
113928
+ *
113929
+ * Attaches event handler `fnFunction` to the {@link #event:fileRenamed fileRenamed} event of this `sap.m.upload.UploadSet`.
113930
+ *
113931
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
113932
+ * otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
113933
+ *
113934
+ * The event is triggered when the file name is changed.
113935
+ */
113936
+ attachFileRenamed(
113937
+ /**
113938
+ * The function to be called when the event occurs
113939
+ */
113940
+ fnFunction: (p1: Event) => void,
113941
+ /**
113942
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
113943
+ */
113944
+ oListener?: object
113945
+ ): this;
112963
113946
  /**
112964
113947
  * Attaches event handler `fnFunction` to the {@link #event:fileSizeExceeded fileSizeExceeded} event of
112965
113948
  * this `sap.m.upload.UploadSet`.
@@ -113062,6 +114045,96 @@ declare module "sap/m/upload/UploadSet" {
113062
114045
  */
113063
114046
  oListener?: object
113064
114047
  ): this;
114048
+ /**
114049
+ * @SINCE 1.99
114050
+ *
114051
+ * Attaches event handler `fnFunction` to the {@link #event:itemDragStart itemDragStart} event of this `sap.m.upload.UploadSet`.
114052
+ *
114053
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
114054
+ * otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
114055
+ *
114056
+ * This event is fired when the user starts dragging an uploaded item.
114057
+ */
114058
+ attachItemDragStart(
114059
+ /**
114060
+ * An application-specific payload object that will be passed to the event handler along with the event
114061
+ * object when firing the event
114062
+ */
114063
+ oData: object,
114064
+ /**
114065
+ * The function to be called when the event occurs
114066
+ */
114067
+ fnFunction: (p1: Event) => void,
114068
+ /**
114069
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
114070
+ */
114071
+ oListener?: object
114072
+ ): this;
114073
+ /**
114074
+ * @SINCE 1.99
114075
+ *
114076
+ * Attaches event handler `fnFunction` to the {@link #event:itemDragStart itemDragStart} event of this `sap.m.upload.UploadSet`.
114077
+ *
114078
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
114079
+ * otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
114080
+ *
114081
+ * This event is fired when the user starts dragging an uploaded item.
114082
+ */
114083
+ attachItemDragStart(
114084
+ /**
114085
+ * The function to be called when the event occurs
114086
+ */
114087
+ fnFunction: (p1: Event) => void,
114088
+ /**
114089
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
114090
+ */
114091
+ oListener?: object
114092
+ ): this;
114093
+ /**
114094
+ * @SINCE 1.99
114095
+ *
114096
+ * Attaches event handler `fnFunction` to the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
114097
+ *
114098
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
114099
+ * otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
114100
+ *
114101
+ * This event is fired when an uploaded item is dropped on the new list position.
114102
+ */
114103
+ attachItemDrop(
114104
+ /**
114105
+ * An application-specific payload object that will be passed to the event handler along with the event
114106
+ * object when firing the event
114107
+ */
114108
+ oData: object,
114109
+ /**
114110
+ * The function to be called when the event occurs
114111
+ */
114112
+ fnFunction: (p1: Event) => void,
114113
+ /**
114114
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
114115
+ */
114116
+ oListener?: object
114117
+ ): this;
114118
+ /**
114119
+ * @SINCE 1.99
114120
+ *
114121
+ * Attaches event handler `fnFunction` to the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
114122
+ *
114123
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
114124
+ * otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
114125
+ *
114126
+ * This event is fired when an uploaded item is dropped on the new list position.
114127
+ */
114128
+ attachItemDrop(
114129
+ /**
114130
+ * The function to be called when the event occurs
114131
+ */
114132
+ fnFunction: (p1: Event) => void,
114133
+ /**
114134
+ * Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
114135
+ */
114136
+ oListener?: object
114137
+ ): this;
113065
114138
  /**
113066
114139
  * Attaches event handler `fnFunction` to the {@link #event:mediaTypeMismatch mediaTypeMismatch} event of
113067
114140
  * this `sap.m.upload.UploadSet`.
@@ -113408,6 +114481,23 @@ declare module "sap/m/upload/UploadSet" {
113408
114481
  */
113409
114482
  oListener?: object
113410
114483
  ): this;
114484
+ /**
114485
+ * @SINCE 1.100.0
114486
+ *
114487
+ * Detaches event handler `fnFunction` from the {@link #event:fileRenamed fileRenamed} event of this `sap.m.upload.UploadSet`.
114488
+ *
114489
+ * The passed function and listener object must match the ones used for event registration.
114490
+ */
114491
+ detachFileRenamed(
114492
+ /**
114493
+ * The function to be called, when the event occurs
114494
+ */
114495
+ fnFunction: (p1: Event) => void,
114496
+ /**
114497
+ * Context object on which the given function had to be called
114498
+ */
114499
+ oListener?: object
114500
+ ): this;
113411
114501
  /**
113412
114502
  * Detaches event handler `fnFunction` from the {@link #event:fileSizeExceeded fileSizeExceeded} event of
113413
114503
  * this `sap.m.upload.UploadSet`.
@@ -113440,6 +114530,41 @@ declare module "sap/m/upload/UploadSet" {
113440
114530
  */
113441
114531
  oListener?: object
113442
114532
  ): this;
114533
+ /**
114534
+ * @SINCE 1.99
114535
+ *
114536
+ * Detaches event handler `fnFunction` from the {@link #event:itemDragStart itemDragStart} event of this
114537
+ * `sap.m.upload.UploadSet`.
114538
+ *
114539
+ * The passed function and listener object must match the ones used for event registration.
114540
+ */
114541
+ detachItemDragStart(
114542
+ /**
114543
+ * The function to be called, when the event occurs
114544
+ */
114545
+ fnFunction: (p1: Event) => void,
114546
+ /**
114547
+ * Context object on which the given function had to be called
114548
+ */
114549
+ oListener?: object
114550
+ ): this;
114551
+ /**
114552
+ * @SINCE 1.99
114553
+ *
114554
+ * Detaches event handler `fnFunction` from the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
114555
+ *
114556
+ * The passed function and listener object must match the ones used for event registration.
114557
+ */
114558
+ detachItemDrop(
114559
+ /**
114560
+ * The function to be called, when the event occurs
114561
+ */
114562
+ fnFunction: (p1: Event) => void,
114563
+ /**
114564
+ * Context object on which the given function had to be called
114565
+ */
114566
+ oListener?: object
114567
+ ): this;
113443
114568
  /**
113444
114569
  * Detaches event handler `fnFunction` from the {@link #event:mediaTypeMismatch mediaTypeMismatch} event
113445
114570
  * of this `sap.m.upload.UploadSet`.
@@ -113649,6 +114774,22 @@ declare module "sap/m/upload/UploadSet" {
113649
114774
  item?: UploadSetItem;
113650
114775
  }
113651
114776
  ): this;
114777
+ /**
114778
+ * @SINCE 1.100.0
114779
+ *
114780
+ * Fires event {@link #event:fileRenamed fileRenamed} to attached listeners.
114781
+ */
114782
+ fireFileRenamed(
114783
+ /**
114784
+ * Parameters to pass along with the event
114785
+ */
114786
+ mParameters?: {
114787
+ /**
114788
+ * The renamed UI element as an UploadSetItem.
114789
+ */
114790
+ item?: UploadSetItem;
114791
+ }
114792
+ ): this;
113652
114793
  /**
113653
114794
  * Fires event {@link #event:fileSizeExceeded fileSizeExceeded} to attached listeners.
113654
114795
  */
@@ -113677,6 +114818,28 @@ declare module "sap/m/upload/UploadSet" {
113677
114818
  item?: UploadSetItem;
113678
114819
  }
113679
114820
  ): this;
114821
+ /**
114822
+ * @SINCE 1.99
114823
+ *
114824
+ * Fires event {@link #event:itemDragStart itemDragStart} to attached listeners.
114825
+ */
114826
+ fireItemDragStart(
114827
+ /**
114828
+ * Parameters to pass along with the event
114829
+ */
114830
+ mParameters?: object
114831
+ ): this;
114832
+ /**
114833
+ * @SINCE 1.99
114834
+ *
114835
+ * Fires event {@link #event:itemDrop itemDrop} to attached listeners.
114836
+ */
114837
+ fireItemDrop(
114838
+ /**
114839
+ * Parameters to pass along with the event
114840
+ */
114841
+ mParameters?: object
114842
+ ): this;
113680
114843
  /**
113681
114844
  * Fires event {@link #event:mediaTypeMismatch mediaTypeMismatch} to attached listeners.
113682
114845
  */
@@ -113848,6 +115011,31 @@ declare module "sap/m/upload/UploadSet" {
113848
115011
  * If this property is not set, any file can be uploaded.
113849
115012
  */
113850
115013
  getMediaTypes(): string[];
115014
+ /**
115015
+ * @SINCE 1.100.0
115016
+ *
115017
+ * Gets current value of property {@link #getMode mode}.
115018
+ *
115019
+ * Defines the selection mode of the control (e.g. None, SingleSelect, MultiSelect, SingleSelectLeft, SingleSelectMaster).
115020
+ * Since the UploadSet reacts like a list for attachments, the API is close to the ListBase Interface. sap.m.ListMode.Delete
115021
+ * mode is not supported and will be automatically set to sap.m.ListMode.None. In addition, if instant upload
115022
+ * is set to false the mode sap.m.ListMode.MultiSelect is not supported and will be automatically set to
115023
+ * sap.m.ListMode.None.
115024
+ *
115025
+ * Default value is `MultiSelect`.
115026
+ */
115027
+ getMode(): ListMode | keyof typeof ListMode;
115028
+ /**
115029
+ * Gets current value of property {@link #getMultiple multiple}.
115030
+ *
115031
+ * Lets the user select multiple files from the same folder and then upload them.
115032
+ *
115033
+ * If multiple property is set to false, the control shows an error message if more than one file is chosen
115034
+ * for drag & drop.
115035
+ *
115036
+ * Default value is `false`.
115037
+ */
115038
+ getMultiple(): boolean;
113851
115039
  /**
113852
115040
  * Gets current value of property {@link #getNoDataDescription noDataDescription}.
113853
115041
  *
@@ -113860,6 +115048,29 @@ declare module "sap/m/upload/UploadSet" {
113860
115048
  * Defines custom text for the 'No data' text label.
113861
115049
  */
113862
115050
  getNoDataText(): string;
115051
+ /**
115052
+ * @SINCE 1.100.0
115053
+ *
115054
+ * Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
115055
+ *
115056
+ * Allows the user to use the same name for a file while editing the file name. 'Same name' refers to an
115057
+ * already existing file name in the list.
115058
+ *
115059
+ * Default value is `false`.
115060
+ */
115061
+ getSameFilenameAllowed(): boolean;
115062
+ /**
115063
+ * @SINCE 1.100.0
115064
+ *
115065
+ * Retrieves the currently selected UploadSetItem.
115066
+ */
115067
+ getSelectedItem(): UploadSetItem | null;
115068
+ /**
115069
+ * @SINCE 1.100.0
115070
+ *
115071
+ * Returns an array containing the selected UploadSetItems.
115072
+ */
115073
+ getSelectedItems(): UploadSetItem[];
113863
115074
  /**
113864
115075
  * Gets current value of property {@link #getShowIcons showIcons}.
113865
115076
  *
@@ -113882,6 +115093,16 @@ declare module "sap/m/upload/UploadSet" {
113882
115093
  * Main toolbar of the `UploadSet` control.
113883
115094
  */
113884
115095
  getToolbar(): OverflowToolbar;
115096
+ /**
115097
+ * @SINCE 1.99.0
115098
+ *
115099
+ * Gets current value of property {@link #getUploadButtonInvisible uploadButtonInvisible}.
115100
+ *
115101
+ * If set to true, the button used for uploading files become invisible.
115102
+ *
115103
+ * Default value is `false`.
115104
+ */
115105
+ getUploadButtonInvisible(): boolean;
113885
115106
  /**
113886
115107
  * Gets current value of property {@link #getUploadEnabled uploadEnabled}.
113887
115108
  *
@@ -114032,6 +115253,12 @@ declare module "sap/m/upload/UploadSet" {
114032
115253
  */
114033
115254
  vItem: int | string | UploadSetItem
114034
115255
  ): UploadSetItem;
115256
+ /**
115257
+ * @SINCE 1.100.0
115258
+ *
115259
+ * Select all items in "MultiSelection" mode.
115260
+ */
115261
+ selectAll(): this;
114035
115262
  /**
114036
115263
  * Sets a new value for property {@link #getFileTypes fileTypes}.
114037
115264
  *
@@ -114121,6 +115348,45 @@ declare module "sap/m/upload/UploadSet" {
114121
115348
  */
114122
115349
  sMediaTypes?: string[]
114123
115350
  ): this;
115351
+ /**
115352
+ * @SINCE 1.100.0
115353
+ *
115354
+ * Sets a new value for property {@link #getMode mode}.
115355
+ *
115356
+ * Defines the selection mode of the control (e.g. None, SingleSelect, MultiSelect, SingleSelectLeft, SingleSelectMaster).
115357
+ * Since the UploadSet reacts like a list for attachments, the API is close to the ListBase Interface. sap.m.ListMode.Delete
115358
+ * mode is not supported and will be automatically set to sap.m.ListMode.None. In addition, if instant upload
115359
+ * is set to false the mode sap.m.ListMode.MultiSelect is not supported and will be automatically set to
115360
+ * sap.m.ListMode.None.
115361
+ *
115362
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115363
+ *
115364
+ * Default value is `MultiSelect`.
115365
+ */
115366
+ setMode(
115367
+ /**
115368
+ * New value for property `mode`
115369
+ */
115370
+ sMode?: ListMode | keyof typeof ListMode
115371
+ ): this;
115372
+ /**
115373
+ * Sets a new value for property {@link #getMultiple multiple}.
115374
+ *
115375
+ * Lets the user select multiple files from the same folder and then upload them.
115376
+ *
115377
+ * If multiple property is set to false, the control shows an error message if more than one file is chosen
115378
+ * for drag & drop.
115379
+ *
115380
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115381
+ *
115382
+ * Default value is `false`.
115383
+ */
115384
+ setMultiple(
115385
+ /**
115386
+ * New value for property `multiple`
115387
+ */
115388
+ bMultiple?: boolean
115389
+ ): this;
114124
115390
  /**
114125
115391
  * Sets a new value for property {@link #getNoDataDescription noDataDescription}.
114126
115392
  *
@@ -114147,6 +115413,55 @@ declare module "sap/m/upload/UploadSet" {
114147
115413
  */
114148
115414
  sNoDataText?: string
114149
115415
  ): this;
115416
+ /**
115417
+ * @SINCE 1.100.0
115418
+ *
115419
+ * Sets a new value for property {@link #getSameFilenameAllowed sameFilenameAllowed}.
115420
+ *
115421
+ * Allows the user to use the same name for a file while editing the file name. 'Same name' refers to an
115422
+ * already existing file name in the list.
115423
+ *
115424
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115425
+ *
115426
+ * Default value is `false`.
115427
+ */
115428
+ setSameFilenameAllowed(
115429
+ /**
115430
+ * New value for property `sameFilenameAllowed`
115431
+ */
115432
+ bSameFilenameAllowed?: boolean
115433
+ ): this;
115434
+ /**
115435
+ * @SINCE 1.100.0
115436
+ *
115437
+ * Selects or deselects the given list item.
115438
+ */
115439
+ setSelectedItem(
115440
+ /**
115441
+ * The item whose selection is to be changed. This parameter is mandatory.
115442
+ */
115443
+ uploadSetItem: UploadSetItem,
115444
+ /**
115445
+ * The selection state of the item.
115446
+ */
115447
+ select?: boolean
115448
+ ): this;
115449
+ /**
115450
+ * @SINCE 1.100.0
115451
+ *
115452
+ * Sets an UploadSetItem to be selected by ID. In single selection mode, the method removes the previous
115453
+ * selection.
115454
+ */
115455
+ setSelectedItemById(
115456
+ /**
115457
+ * The ID of the item whose selection is to be changed.
115458
+ */
115459
+ id: string,
115460
+ /**
115461
+ * The selection state of the item.
115462
+ */
115463
+ select?: boolean
115464
+ ): this;
114150
115465
  /**
114151
115466
  * Sets a new value for property {@link #getShowIcons showIcons}.
114152
115467
  *
@@ -114186,6 +115501,23 @@ declare module "sap/m/upload/UploadSet" {
114186
115501
  */
114187
115502
  oToolbar: OverflowToolbar
114188
115503
  ): this;
115504
+ /**
115505
+ * @SINCE 1.99.0
115506
+ *
115507
+ * Sets a new value for property {@link #getUploadButtonInvisible uploadButtonInvisible}.
115508
+ *
115509
+ * If set to true, the button used for uploading files become invisible.
115510
+ *
115511
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115512
+ *
115513
+ * Default value is `false`.
115514
+ */
115515
+ setUploadButtonInvisible(
115516
+ /**
115517
+ * New value for property `uploadButtonInvisible`
115518
+ */
115519
+ bUploadButtonInvisible?: boolean
115520
+ ): this;
114189
115521
  /**
114190
115522
  * Sets a new value for property {@link #getUploadEnabled uploadEnabled}.
114191
115523
  *
@@ -114303,6 +115635,21 @@ declare module "sap/m/upload/UploadSet" {
114303
115635
  */
114304
115636
  uploadUrl?: string | PropertyBindingInfo;
114305
115637
 
115638
+ /**
115639
+ * @SINCE 1.99.0
115640
+ *
115641
+ * If set to true, the button used for uploading files become invisible.
115642
+ */
115643
+ uploadButtonInvisible?: boolean | PropertyBindingInfo;
115644
+
115645
+ /**
115646
+ * @SINCE 1.100.0
115647
+ *
115648
+ * Allows the user to use the same name for a file while editing the file name. 'Same name' refers to an
115649
+ * already existing file name in the list.
115650
+ */
115651
+ sameFilenameAllowed?: boolean | PropertyBindingInfo;
115652
+
114306
115653
  /**
114307
115654
  * @SINCE 1.90
114308
115655
  *
@@ -114310,6 +115657,25 @@ declare module "sap/m/upload/UploadSet" {
114310
115657
  */
114311
115658
  httpRequestMethod?: UploaderHttpRequestMethod | PropertyBindingInfo;
114312
115659
 
115660
+ /**
115661
+ * Lets the user select multiple files from the same folder and then upload them.
115662
+ *
115663
+ * If multiple property is set to false, the control shows an error message if more than one file is chosen
115664
+ * for drag & drop.
115665
+ */
115666
+ multiple?: boolean | PropertyBindingInfo;
115667
+
115668
+ /**
115669
+ * @SINCE 1.100.0
115670
+ *
115671
+ * Defines the selection mode of the control (e.g. None, SingleSelect, MultiSelect, SingleSelectLeft, SingleSelectMaster).
115672
+ * Since the UploadSet reacts like a list for attachments, the API is close to the ListBase Interface. sap.m.ListMode.Delete
115673
+ * mode is not supported and will be automatically set to sap.m.ListMode.None. In addition, if instant upload
115674
+ * is set to false the mode sap.m.ListMode.MultiSelect is not supported and will be automatically set to
115675
+ * sap.m.ListMode.None.
115676
+ */
115677
+ mode?: (ListMode | keyof typeof ListMode) | PropertyBindingInfo;
115678
+
114313
115679
  /**
114314
115680
  * Items representing files that have already been uploaded.
114315
115681
  */
@@ -114340,6 +115706,13 @@ declare module "sap/m/upload/UploadSet" {
114340
115706
  */
114341
115707
  afterItemAdded?: (oEvent: Event) => void;
114342
115708
 
115709
+ /**
115710
+ * @SINCE 1.100.0
115711
+ *
115712
+ * The event is triggered when the file name is changed.
115713
+ */
115714
+ fileRenamed?: (oEvent: Event) => void;
115715
+
114343
115716
  /**
114344
115717
  * @SINCE 1.83
114345
115718
  *
@@ -114431,6 +115804,20 @@ declare module "sap/m/upload/UploadSet" {
114431
115804
  * This event is fired simultaneously with the respective event in the inner {@link sap.m.List} control.
114432
115805
  */
114433
115806
  selectionChanged?: (oEvent: Event) => void;
115807
+
115808
+ /**
115809
+ * @SINCE 1.99
115810
+ *
115811
+ * This event is fired when the user starts dragging an uploaded item.
115812
+ */
115813
+ itemDragStart?: (oEvent: Event) => void;
115814
+
115815
+ /**
115816
+ * @SINCE 1.99
115817
+ *
115818
+ * This event is fired when an uploaded item is dropped on the new list position.
115819
+ */
115820
+ itemDrop?: (oEvent: Event) => void;
114434
115821
  }
114435
115822
  }
114436
115823
 
@@ -114778,6 +116165,16 @@ declare module "sap/m/upload/UploadSetItem" {
114778
116165
  * Specifies the MIME type of the file.
114779
116166
  */
114780
116167
  getMediaType(): string;
116168
+ /**
116169
+ * @SINCE 1.100.0
116170
+ *
116171
+ * Gets current value of property {@link #getSelected selected}.
116172
+ *
116173
+ * Defines the selected state of the UploadSetItem.
116174
+ *
116175
+ * Default value is `false`.
116176
+ */
116177
+ getSelected(): boolean;
114781
116178
  /**
114782
116179
  * Gets content of aggregation {@link #getStatuses statuses}.
114783
116180
  *
@@ -115068,6 +116465,23 @@ declare module "sap/m/upload/UploadSetItem" {
115068
116465
  */
115069
116466
  iProgress: int
115070
116467
  ): this;
116468
+ /**
116469
+ * @SINCE 1.100.0
116470
+ *
116471
+ * Sets a new value for property {@link #getSelected selected}.
116472
+ *
116473
+ * Defines the selected state of the UploadSetItem.
116474
+ *
116475
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116476
+ *
116477
+ * Default value is `false`.
116478
+ */
116479
+ setSelected(
116480
+ /**
116481
+ * New value for property `selected`
116482
+ */
116483
+ bSelected?: boolean
116484
+ ): this;
115071
116485
  /**
115072
116486
  * Sets a new value for property {@link #getThumbnailUrl thumbnailUrl}.
115073
116487
  *
@@ -115213,6 +116627,13 @@ declare module "sap/m/upload/UploadSetItem" {
115213
116627
  */
115214
116628
  uploadUrl?: string | PropertyBindingInfo;
115215
116629
 
116630
+ /**
116631
+ * @SINCE 1.100.0
116632
+ *
116633
+ * Defines the selected state of the UploadSetItem.
116634
+ */
116635
+ selected?: boolean | PropertyBindingInfo;
116636
+
115216
116637
  /**
115217
116638
  * Attributes of the item.
115218
116639
  */
@@ -119959,11 +121380,11 @@ declare module "sap/m/ViewSettingsDialog" {
119959
121380
  oSelectedFilterKeys: object
119960
121381
  ): this;
119961
121382
  /**
119962
- * Sets the selected group item (either by key or by item).
121383
+ * Sets the selected group item (either by key, item id or item instance).
119963
121384
  */
119964
121385
  setSelectedGroupItem(
119965
121386
  /**
119966
- * The selected item or the item's key string
121387
+ * The selected item, the item's string key or the item id
119967
121388
  */
119968
121389
  vItemOrKey: ViewSettingsItem | string
119969
121390
  ): this;
@@ -119977,11 +121398,11 @@ declare module "sap/m/ViewSettingsDialog" {
119977
121398
  vItemOrKey: ViewSettingsItem | string | null
119978
121399
  ): this;
119979
121400
  /**
119980
- * Sets the selected sort item (either by key or by item).
121401
+ * Sets the selected sort item (either by key, item id or item instance).
119981
121402
  */
119982
121403
  setSelectedSortItem(
119983
121404
  /**
119984
- * The selected item or the item's key string
121405
+ * The selected item, the item's string key or the item id
119985
121406
  */
119986
121407
  vItemOrKey: ViewSettingsItem | string
119987
121408
  ): this;
@@ -121538,6 +122959,55 @@ declare module "sap/m/Wizard" {
121538
122959
  */
121539
122960
  oListener?: object
121540
122961
  ): this;
122962
+ /**
122963
+ * @SINCE 1.101
122964
+ *
122965
+ * Attaches event handler `fnFunction` to the {@link #event:navigationChange navigationChange} event of
122966
+ * this `sap.m.Wizard`.
122967
+ *
122968
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
122969
+ * otherwise it will be bound to this `sap.m.Wizard` itself.
122970
+ *
122971
+ * This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
122972
+ * or scrolling through the steps.
122973
+ */
122974
+ attachNavigationChange(
122975
+ /**
122976
+ * An application-specific payload object that will be passed to the event handler along with the event
122977
+ * object when firing the event
122978
+ */
122979
+ oData: object,
122980
+ /**
122981
+ * The function to be called when the event occurs
122982
+ */
122983
+ fnFunction: (p1: Event) => void,
122984
+ /**
122985
+ * Context object to call the event handler with. Defaults to this `sap.m.Wizard` itself
122986
+ */
122987
+ oListener?: object
122988
+ ): this;
122989
+ /**
122990
+ * @SINCE 1.101
122991
+ *
122992
+ * Attaches event handler `fnFunction` to the {@link #event:navigationChange navigationChange} event of
122993
+ * this `sap.m.Wizard`.
122994
+ *
122995
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
122996
+ * otherwise it will be bound to this `sap.m.Wizard` itself.
122997
+ *
122998
+ * This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
122999
+ * or scrolling through the steps.
123000
+ */
123001
+ attachNavigationChange(
123002
+ /**
123003
+ * The function to be called when the event occurs
123004
+ */
123005
+ fnFunction: (p1: Event) => void,
123006
+ /**
123007
+ * Context object to call the event handler with. Defaults to this `sap.m.Wizard` itself
123008
+ */
123009
+ oListener?: object
123010
+ ): this;
121541
123011
  /**
121542
123012
  * Attaches event handler `fnFunction` to the {@link #event:stepActivate stepActivate} event of this `sap.m.Wizard`.
121543
123013
  *
@@ -121598,6 +123068,24 @@ declare module "sap/m/Wizard" {
121598
123068
  */
121599
123069
  oListener?: object
121600
123070
  ): this;
123071
+ /**
123072
+ * @SINCE 1.101
123073
+ *
123074
+ * Detaches event handler `fnFunction` from the {@link #event:navigationChange navigationChange} event of
123075
+ * this `sap.m.Wizard`.
123076
+ *
123077
+ * The passed function and listener object must match the ones used for event registration.
123078
+ */
123079
+ detachNavigationChange(
123080
+ /**
123081
+ * The function to be called, when the event occurs
123082
+ */
123083
+ fnFunction: (p1: Event) => void,
123084
+ /**
123085
+ * Context object on which the given function had to be called
123086
+ */
123087
+ oListener?: object
123088
+ ): this;
121601
123089
  /**
121602
123090
  * Detaches event handler `fnFunction` from the {@link #event:stepActivate stepActivate} event of this `sap.m.Wizard`.
121603
123091
  *
@@ -121636,6 +123124,22 @@ declare module "sap/m/Wizard" {
121636
123124
  */
121637
123125
  mParameters?: object
121638
123126
  ): this;
123127
+ /**
123128
+ * @SINCE 1.101
123129
+ *
123130
+ * Fires event {@link #event:navigationChange navigationChange} to attached listeners.
123131
+ */
123132
+ fireNavigationChange(
123133
+ /**
123134
+ * Parameters to pass along with the event
123135
+ */
123136
+ mParameters?: {
123137
+ /**
123138
+ * The newly selected step.
123139
+ */
123140
+ step?: WizardStep;
123141
+ }
123142
+ ): this;
121639
123143
  /**
121640
123144
  * Fires event {@link #event:stepActivate stepActivate} to attached listeners.
121641
123145
  */
@@ -121703,7 +123207,7 @@ declare module "sap/m/Wizard" {
121703
123207
  */
121704
123208
  getProgressStep(): WizardStep;
121705
123209
  /**
121706
- * @EXPERIMENTAL (since 1.84)
123210
+ * @SINCE 1.84
121707
123211
  *
121708
123212
  * Gets current value of property {@link #getRenderMode renderMode}.
121709
123213
  *
@@ -121843,7 +123347,7 @@ declare module "sap/m/Wizard" {
121843
123347
  sHeight?: CSSSize
121844
123348
  ): this;
121845
123349
  /**
121846
- * @EXPERIMENTAL (since 1.84)
123350
+ * @SINCE 1.84
121847
123351
  *
121848
123352
  * Sets a new value for property {@link #getRenderMode renderMode}.
121849
123353
  *
@@ -121938,7 +123442,7 @@ declare module "sap/m/Wizard" {
121938
123442
  | PropertyBindingInfo;
121939
123443
 
121940
123444
  /**
121941
- * @EXPERIMENTAL (since 1.84)
123445
+ * @SINCE 1.84
121942
123446
  *
121943
123447
  * Defines how the steps of the Wizard would be visualized.
121944
123448
  */
@@ -121965,6 +123469,14 @@ declare module "sap/m/Wizard" {
121965
123469
  */
121966
123470
  stepActivate?: (oEvent: Event) => void;
121967
123471
 
123472
+ /**
123473
+ * @SINCE 1.101
123474
+ *
123475
+ * This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
123476
+ * or scrolling through the steps.
123477
+ */
123478
+ navigationChange?: (oEvent: Event) => void;
123479
+
121968
123480
  /**
121969
123481
  * The complete event is fired when the user clicks the finish button of the Wizard. The finish button is
121970
123482
  * only available on the last step of the Wizard.
@@ -122658,7 +124170,7 @@ declare namespace sap {
122658
124170
  /**
122659
124171
  * The image to update. If undefined, a new image will be created.
122660
124172
  */
122661
- oImageControl: import("sap/m/Image").default,
124173
+ oImage: import("sap/m/Image").default,
122662
124174
  /**
122663
124175
  * oImageControl's parentControl.
122664
124176
  */
@@ -123004,8 +124516,12 @@ declare namespace sap {
123004
124516
 
123005
124517
  "sap/m/InputBase": undefined;
123006
124518
 
124519
+ "sap/m/InputBaseRenderer": undefined;
124520
+
123007
124521
  "sap/m/InputListItem": undefined;
123008
124522
 
124523
+ "sap/m/InputRenderer": undefined;
124524
+
123009
124525
  "sap/m/InstanceManager": undefined;
123010
124526
 
123011
124527
  "sap/m/Label": undefined;