@sapui5/ts-types 1.100.2 → 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.
Files changed (61) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +2 -2
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +674 -2
  8. package/types/sap.f.d.ts +236 -25
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +8 -63
  11. package/types/sap.fe.macros.d.ts +17 -9
  12. package/types/sap.fe.navigation.d.ts +5 -71
  13. package/types/sap.fe.templates.d.ts +97 -190
  14. package/types/sap.fe.test.d.ts +43 -24
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +40 -15
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +209 -38
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +1 -1
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +40 -5
  24. package/types/sap.sac.df.d.ts +981 -0
  25. package/types/sap.sac.grid.d.ts +25 -1
  26. package/types/sap.suite.ui.commons.d.ts +18 -1
  27. package/types/sap.suite.ui.generic.template.d.ts +115 -8
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +1 -1
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +1 -1
  32. package/types/sap.ui.comp.d.ts +154 -15
  33. package/types/sap.ui.core.d.ts +73 -27
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +1 -1
  37. package/types/sap.ui.generic.app.d.ts +10 -10
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +1 -1
  40. package/types/sap.ui.layout.d.ts +1 -1
  41. package/types/sap.ui.mdc.d.ts +9 -1
  42. package/types/sap.ui.richtexteditor.d.ts +1 -1
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -1
  45. package/types/sap.ui.support.d.ts +10 -6
  46. package/types/sap.ui.table.d.ts +11 -34
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +1 -1
  49. package/types/sap.ui.ux3.d.ts +1 -1
  50. package/types/sap.ui.vbm.d.ts +1 -1
  51. package/types/sap.ui.vk.d.ts +683 -26
  52. package/types/sap.ui.vtm.d.ts +1 -1
  53. package/types/sap.uiext.inbox.d.ts +1 -1
  54. package/types/sap.ushell.d.ts +549 -113
  55. package/types/sap.ushell_abap.d.ts +1 -1
  56. package/types/sap.uxap.d.ts +2 -2
  57. package/types/sap.viz.d.ts +1 -1
  58. package/types/sap.webanalytics.core.d.ts +1 -1
  59. package/types/sap.zen.commons.d.ts +1 -1585
  60. package/types/sap.zen.crosstab.d.ts +1 -1
  61. package/types/sap.zen.dsh.d.ts +1303 -4047
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -18835,6 +18835,15 @@ declare namespace sap {
18835
18835
  */
18836
18836
  oDate: Date
18837
18837
  ): string;
18838
+ /**
18839
+ * Converts an ISO timestamp (example: "2021-04-19T17:13:10.000Z") into an ABAP timestamp.
18840
+ */
18841
+ static isoTimestampToAbapTimestamp(
18842
+ /**
18843
+ * The ISO timestamp to convert
18844
+ */
18845
+ sTimestamp: string
18846
+ ): string;
18838
18847
  /**
18839
18848
  * Converts a relative time object into an absolute time object. Use this method only in relative time axis
18840
18849
  * mode.
@@ -19674,6 +19683,13 @@ declare namespace sap {
19674
19683
 
19675
19684
  interface $BaseCalendarSettings
19676
19685
  extends sap.gantt.simple.$BaseRectangleSettings {
19686
+ /**
19687
+ * Calendar name is used to map the base calendar with its calendar definition pattern. Do not set this
19688
+ * property if you do not want to reuse the calendar definition across rows, and you want row wise different
19689
+ * calendars. Instead set the time, endtime and fill the properties for the calendar shape. Providing values
19690
+ * for calendarName, and time or endTime is considered as invalid. In such cases, time or endTime are ignored
19691
+ * even if the calendarName is not available in calendar definitions.
19692
+ */
19677
19693
  calendarName?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
19678
19694
  }
19679
19695
 
@@ -23205,12 +23221,13 @@ declare namespace sap {
23205
23221
  /**
23206
23222
  * BaseCalendar shape.
23207
23223
  *
23208
- * The Calendar shape must be used in combination with Calendar def class {@link sap.gantt.def.cal.Calendar}
23209
- * which draws the SVG 'defs' tag.
23224
+ * The Calendar shape can either be used in combination with Calendar def class {@link sap.gantt.def.cal.Calendar}
23225
+ * which draws the SVG 'defs' tag, or it can be used as a standalone shape with time and end time defined.
23210
23226
  */
23211
23227
  class BaseCalendar extends sap.gantt.simple.BaseRectangle {
23212
23228
  /**
23213
- * Creates a Calendar shape which consumes pattern from Calendar in the 'def' package.
23229
+ * Creates a calendar shape that either consumes pattern from calendar in the 'def' package as the "calendarName"
23230
+ * property is defined, or, it exists as any other instance of BasShape with defined relevant properties.
23214
23231
  *
23215
23232
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
23216
23233
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -23223,7 +23240,8 @@ declare namespace sap {
23223
23240
  mSettings?: sap.gantt.simple.$BaseCalendarSettings
23224
23241
  );
23225
23242
  /**
23226
- * Creates a Calendar shape which consumes pattern from Calendar in the 'def' package.
23243
+ * Creates a calendar shape that either consumes pattern from calendar in the 'def' package as the "calendarName"
23244
+ * property is defined, or, it exists as any other instance of BasShape with defined relevant properties.
23227
23245
  *
23228
23246
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
23229
23247
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -23267,31 +23285,38 @@ declare namespace sap {
23267
23285
  static getMetadata(): sap.ui.core.ElementMetadata;
23268
23286
  /**
23269
23287
  * Gets current value of property {@link #getCalendarName calendarName}.
23270
- */
23271
- getCalendarName(): string;
23272
- /**
23273
- * Gets current value of property `fill`.
23274
23288
  *
23275
- * We recommend that you do not configure or code against this property. Calendar is treated as a bulk shape
23276
- * filled with pattern occupying the visible area. Your application must implement their own shape if a
23277
- * selectable calendar is expected.
23289
+ * Calendar name is used to map the base calendar with its calendar definition pattern. Do not set this
23290
+ * property if you do not want to reuse the calendar definition across rows, and you want row wise different
23291
+ * calendars. Instead set the time, endtime and fill the properties for the calendar shape. Providing values
23292
+ * for calendarName, and time or endTime is considered as invalid. In such cases, time or endTime are ignored
23293
+ * even if the calendarName is not available in calendar definitions.
23278
23294
  */
23279
- getFill(): string;
23295
+ getCalendarName(): string;
23280
23296
  /**
23281
23297
  * Calendar is not a selectable shape. getSelectable always returns false
23282
23298
  */
23283
23299
  getSelectable(): boolean;
23284
23300
  /**
23285
- * Calendar is rendering cross the entire gantt visible area
23301
+ * Calendar width If calendarName property is set then return the full width of the gantt chart else if
23302
+ * the time and endTime are present, return their difference.
23286
23303
  */
23287
23304
  getWidth(): float;
23288
23305
  /**
23289
- * Gets current value of property `x`.
23306
+ * Gets current value of property `x`. If calendarName property is set then return 0 else if the time or
23307
+ * endTime (in RTL mode) is present, return the x coordinate of the value correposning to the start time
23308
+ * of the Calendar interval.
23290
23309
  */
23291
23310
  getX(): number;
23292
23311
  /**
23293
23312
  * Sets a new value for property {@link #getCalendarName calendarName}.
23294
23313
  *
23314
+ * Calendar name is used to map the base calendar with its calendar definition pattern. Do not set this
23315
+ * property if you do not want to reuse the calendar definition across rows, and you want row wise different
23316
+ * calendars. Instead set the time, endtime and fill the properties for the calendar shape. Providing values
23317
+ * for calendarName, and time or endTime is considered as invalid. In such cases, time or endTime are ignored
23318
+ * even if the calendarName is not available in calendar definitions.
23319
+ *
23295
23320
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
23296
23321
  */
23297
23322
  setCalendarName(
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1101,6 +1101,13 @@ declare namespace sap {
1101
1101
  class SortPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
1102
1102
  /**
1103
1103
  * Constructor for a new `SortPanel`.
1104
+ *
1105
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1106
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1107
+ * of the syntax of the settings object.
1108
+ *
1109
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
1110
+ * sap.m.p13n.QueryPanel} can be used.
1104
1111
  */
1105
1112
  constructor(
1106
1113
  /**
@@ -1110,6 +1117,13 @@ declare namespace sap {
1110
1117
  );
1111
1118
  /**
1112
1119
  * Constructor for a new `SortPanel`.
1120
+ *
1121
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1122
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1123
+ * of the syntax of the settings object.
1124
+ *
1125
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
1126
+ * sap.m.p13n.QueryPanel} can be used.
1113
1127
  */
1114
1128
  constructor(
1115
1129
  /**
@@ -10543,13 +10557,13 @@ declare namespace sap {
10543
10557
  *
10544
10558
  * Retrieves the currently selected UploadSetItem.
10545
10559
  */
10546
- getSelectedItem(): /* was: sap.m.UploadSetItem */ any | null;
10560
+ getSelectedItem(): sap.m.upload.UploadSetItem | null;
10547
10561
  /**
10548
10562
  * @SINCE 1.100.0
10549
10563
  *
10550
10564
  * Returns an array containing the selected UploadSetItems.
10551
10565
  */
10552
- getSelectedItems(): /* was: sap.m.UploadSetItem */ any[];
10566
+ getSelectedItems(): sap.m.upload.UploadSetItem[];
10553
10567
  /**
10554
10568
  * Gets current value of property {@link #getShowIcons showIcons}.
10555
10569
  *
@@ -10919,7 +10933,7 @@ declare namespace sap {
10919
10933
  /**
10920
10934
  * The item whose selection is to be changed. This parameter is mandatory.
10921
10935
  */
10922
- uploadSetItem: /* was: sap.m.UploadSetItem */ any,
10936
+ uploadSetItem: sap.m.upload.UploadSetItem,
10923
10937
  /**
10924
10938
  * The selection state of the item.
10925
10939
  */
@@ -17199,7 +17213,9 @@ declare namespace sap {
17199
17213
  showUnread?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
17200
17214
 
17201
17215
  /**
17202
- * This text is displayed when the control contains no items.
17216
+ * This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
17217
+ * a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
17218
+ * is undefined or set to null, the `noDataText` property is used instead.
17203
17219
  */
17204
17220
  noDataText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
17205
17221
 
@@ -17389,6 +17405,18 @@ declare namespace sap {
17389
17405
  */
17390
17406
  contextMenu?: sap.ui.core.IContextMenu;
17391
17407
 
17408
+ /**
17409
+ * @SINCE 1.101
17410
+ *
17411
+ * Defines the custom visualization if there is no data available. **Note:** If both a `noDataText` property
17412
+ * and a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
17413
+ * is undefined or set to null, the `noDataText` property is used instead.
17414
+ */
17415
+ noData?:
17416
+ | string
17417
+ | sap.ui.core.Control
17418
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
17419
+
17392
17420
  /**
17393
17421
  * @SINCE 1.28.0
17394
17422
  *
@@ -17678,6 +17706,10 @@ declare namespace sap {
17678
17706
  /**
17679
17707
  * Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
17680
17708
  * from the icon font.
17709
+ *
17710
+ * Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
17711
+ * icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
17712
+ * selection since there is not enough space for a text.
17681
17713
  */
17682
17714
  icon?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
17683
17715
 
@@ -22959,6 +22991,8 @@ declare namespace sap {
22959
22991
  * - If invalid or none `selectedKey` is used, the first item is being selected.
22960
22992
  * - Invalid or missing `selectedKey` leads to severe functional issues in `sap.ui.table.Table`, when
22961
22993
  * the `sap.m.Select` is used inside a `sap.ui.table.Table` column.
22994
+ * - If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
22995
+ * property is set to `true`.
22962
22996
  */
22963
22997
  selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
22964
22998
 
@@ -26837,7 +26871,7 @@ declare namespace sap {
26837
26871
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
26838
26872
 
26839
26873
  /**
26840
- * @EXPERIMENTAL (since 1.84)
26874
+ * @SINCE 1.84
26841
26875
  *
26842
26876
  * Defines how the steps of the Wizard would be visualized.
26843
26877
  */
@@ -26867,6 +26901,14 @@ declare namespace sap {
26867
26901
  */
26868
26902
  stepActivate?: (oEvent: sap.ui.base.Event) => void;
26869
26903
 
26904
+ /**
26905
+ * @SINCE 1.101
26906
+ *
26907
+ * This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
26908
+ * or scrolling through the steps.
26909
+ */
26910
+ navigationChange?: (oEvent: sap.ui.base.Event) => void;
26911
+
26870
26912
  /**
26871
26913
  * The complete event is fired when the user clicks the finish button of the Wizard. The finish button is
26872
26914
  * only available on the last step of the Wizard.
@@ -27812,10 +27854,10 @@ declare namespace sap {
27812
27854
  * ```
27813
27855
  *
27814
27856
  *
27815
- * When using the `sap.m.MessageBox` in SAP Quartz themes, the breakpoints and layout paddings could be
27816
- * determined by the MessageBox' width. To enable this concept and add responsive paddings to an element
27817
- * of the MessageBox control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
27818
- * `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
27857
+ * When using the `sap.m.MessageBox` in SAP Quartz and Horizon themes, the breakpoints and layout paddings
27858
+ * could be determined by the MessageBox' width. To enable this concept and add responsive paddings to an
27859
+ * element of the MessageBox control, you have to add the following classes depending on your use case:
27860
+ * `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
27819
27861
  * See:
27820
27862
  * {@link fiori:https://experience.sap.com/fiori-design-web/message-box/ Message Box}
27821
27863
  */
@@ -39752,9 +39794,9 @@ declare namespace sap {
39752
39794
  * - If the `contentWidth` and/or `contentHeight` properties are set, the Dialog will try to fill those
39753
39795
  * sizes.
39754
39796
  * - If there is no specific sizing, the Dialog will try to adjust its size to its content. When
39755
- * using the `sap.m.Dialog` in SAP Quartz themes, the breakpoints and layout paddings could be determined
39756
- * by the Dialog's width. To enable this concept and add responsive paddings to an element of the Dialog
39757
- * control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
39797
+ * using the `sap.m.Dialog` in SAP Quartz and Horizon themes, the breakpoints and layout paddings could
39798
+ * be determined by the Dialog's width. To enable this concept and add responsive paddings to an element
39799
+ * of the Dialog control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
39758
39800
  * `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
39759
39801
  * Smartphones: If the Dialog has one or two actions, they will cover the entire footer. If there are more
39760
39802
  * actions, they will overflow. Tablets: The action buttons in the toolbar are **right-aligned**. Use **cozy**
@@ -48910,9 +48952,10 @@ declare namespace sap {
48910
48952
  * - On desktop, tabs can be dragged and dropped (property `enableTabReordering`).
48911
48953
  * - If you have a large number of tabs, only the tabs that can fit on screen will be visible. All other
48912
48954
  * tabs that can't fit on the screen are available in an overflow tab "More". When using the `sap.m.IconTabBar`
48913
- * in SAP Quartz themes, the breakpoints and layout paddings could be determined by the Icon Tab Bar's width.
48914
- * To enable this concept and add responsive paddings to an element of the Icon Tab Bar control, you have
48915
- * to add the following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`.
48955
+ * in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the Icon
48956
+ * Tab Bar's width. To enable this concept and add responsive paddings to an element of the Icon Tab Bar
48957
+ * control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
48958
+ * `sapUiResponsivePadding--content`.
48916
48959
  */
48917
48960
  class IconTabBar
48918
48961
  extends sap.ui.core.Control
@@ -50918,6 +50961,13 @@ declare namespace sap {
50918
50961
  * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
50919
50962
  */
50920
50963
  destroyAdditionalContent(): this;
50964
+ /**
50965
+ * @SINCE 1.101
50966
+ *
50967
+ * See:
50968
+ * sap.ui.core.Control#getAccessibilityInfo
50969
+ */
50970
+ getAccessibilityInfo(): object;
50921
50971
  /**
50922
50972
  * @SINCE 1.98.0
50923
50973
  *
@@ -57149,6 +57199,12 @@ declare namespace sap {
57149
57199
  * Destroys all the items in the aggregation {@link #getItems items}.
57150
57200
  */
57151
57201
  destroyItems(): this;
57202
+ /**
57203
+ * @SINCE 1.101
57204
+ *
57205
+ * Destroys the noData in the aggregation {@link #getNoData noData}.
57206
+ */
57207
+ destroyNoData(): this;
57152
57208
  /**
57153
57209
  * Destroys the swipeContent in the aggregation {@link #getSwipeContent swipeContent}.
57154
57210
  */
@@ -57760,10 +57816,22 @@ declare namespace sap {
57760
57816
  * Default value is `Default`.
57761
57817
  */
57762
57818
  getMultiSelectMode(): sap.m.MultiSelectMode;
57819
+ /**
57820
+ * @SINCE 1.101
57821
+ *
57822
+ * Gets content of aggregation {@link #getNoData noData}.
57823
+ *
57824
+ * Defines the custom visualization if there is no data available. **Note:** If both a `noDataText` property
57825
+ * and a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
57826
+ * is undefined or set to null, the `noDataText` property is used instead.
57827
+ */
57828
+ getNoData(): sap.ui.core.Control | string;
57763
57829
  /**
57764
57830
  * Gets current value of property {@link #getNoDataText noDataText}.
57765
57831
  *
57766
- * This text is displayed when the control contains no items.
57832
+ * This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
57833
+ * a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
57834
+ * is undefined or set to null, the `noDataText` property is used instead.
57767
57835
  */
57768
57836
  getNoDataText(): string;
57769
57837
  /**
@@ -58279,10 +58347,23 @@ declare namespace sap {
58279
58347
  */
58280
58348
  sMultiSelectMode?: sap.m.MultiSelectMode
58281
58349
  ): this;
58350
+ /**
58351
+ * @SINCE 1.101
58352
+ *
58353
+ * Sets the aggregated {@link #getNoData noData}.
58354
+ */
58355
+ setNoData(
58356
+ /**
58357
+ * The noData to set
58358
+ */
58359
+ vNoData: sap.ui.core.Control | string
58360
+ ): this;
58282
58361
  /**
58283
58362
  * Sets a new value for property {@link #getNoDataText noDataText}.
58284
58363
  *
58285
- * This text is displayed when the control contains no items.
58364
+ * This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
58365
+ * a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
58366
+ * is undefined or set to null, the `noDataText` property is used instead.
58286
58367
  *
58287
58368
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
58288
58369
  */
@@ -60035,6 +60116,10 @@ declare namespace sap {
60035
60116
  *
60036
60117
  * Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
60037
60118
  * from the icon font.
60119
+ *
60120
+ * Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
60121
+ * icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
60122
+ * selection since there is not enough space for a text.
60038
60123
  */
60039
60124
  getIcon(): sap.ui.core.URI;
60040
60125
  /**
@@ -60193,6 +60278,10 @@ declare namespace sap {
60193
60278
  * Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
60194
60279
  * from the icon font.
60195
60280
  *
60281
+ * Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
60282
+ * icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
60283
+ * selection since there is not enough space for a text.
60284
+ *
60196
60285
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
60197
60286
  */
60198
60287
  setIcon(
@@ -65565,14 +65654,14 @@ declare namespace sap {
65565
65654
  /**
65566
65655
  * The screen to which drilldown should happen. The ID or the control itself can be given.
65567
65656
  */
65568
- pageId: string,
65657
+ vPageIdOrControl: string,
65569
65658
  /**
65570
65659
  * The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right),
65571
65660
  * "baseSlide", "fade", "flip", and "show" and the names of any registered custom transitions.
65572
65661
  *
65573
65662
  * None of the standard transitions is currently making use of any given transition parameters.
65574
65663
  */
65575
- transitionName?: string,
65664
+ sTransitionName?: string,
65576
65665
  /**
65577
65666
  * Since version 1.7.1. This optional object can carry any payload data which should be made available to
65578
65667
  * the target page. The "BeforeShow" event on the target page will contain this data object as "data" property.
@@ -65580,15 +65669,15 @@ declare namespace sap {
65580
65669
  * the target page, it can fill this object and the target page itself (or a listener on it) can take over
65581
65670
  * the initialization, using the given data.
65582
65671
  *
65583
- * When the `oTransitionParameters` parameter is used, this `data` parameter must also be given (either
65672
+ * When the `oTransitionParameters` parameter is used, this `oData` parameter must also be given (either
65584
65673
  * as object or as `null` or `undefined`) in order to have a proper parameter order.
65585
65674
  */
65586
- data?: object,
65675
+ oData?: object,
65587
65676
  /**
65588
65677
  * Since version 1.7.1. This optional object can contain additional information for the transition function,
65589
65678
  * like the DOM element which triggered the transition or the desired transition duration.
65590
65679
  *
65591
- * For a proper parameter order, the `data` parameter must be given when the `oTransitionParameters` parameter
65680
+ * For a proper parameter order, the `oData` parameter must be given when the `oTransitionParameters` parameter
65592
65681
  * is used (it can be given as `null` or `undefined`).
65593
65682
  *
65594
65683
  * NOTE: it depends on the transition function how the object should be structured and which parameters
@@ -91102,6 +91191,8 @@ declare namespace sap {
91102
91191
  * - If invalid or none `selectedKey` is used, the first item is being selected.
91103
91192
  * - Invalid or missing `selectedKey` leads to severe functional issues in `sap.ui.table.Table`, when
91104
91193
  * the `sap.m.Select` is used inside a `sap.ui.table.Table` column.
91194
+ * - If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
91195
+ * property is set to `true`.
91105
91196
  *
91106
91197
  * Default value is `empty string`.
91107
91198
  */
@@ -91487,8 +91578,8 @@ declare namespace sap {
91487
91578
  * `sKey` is an empty string `""` or `undefined`, the value of `sKey` is changed to match the `key` of the
91488
91579
  * first enabled item and the first enabled item is selected (if any items exist).
91489
91580
  *
91490
- * In the case that an item has the default key value and `forceSelection` property is set to `true`, it
91491
- * is selected instead. If duplicate keys exist, the first item matching the key is selected.
91581
+ * If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
91582
+ * property is set to `true`. If duplicate keys exist, the first item matching the key is selected.
91492
91583
  */
91493
91584
  sKey: string
91494
91585
  ): this;
@@ -91667,9 +91758,9 @@ declare namespace sap {
91667
91758
  * we recommend setting the `growing` property to `false`. Responsive Behavior:
91668
91759
  * - On phones, the select dialog takes up the whole screen.
91669
91760
  * - On desktop and tablet devices, the select dialog appears as a popover. When using the `sap.m.SelectDialog`
91670
- * in SAP Quartz themes, the breakpoints and layout paddings could be determined by the dialog's width.
91671
- * To enable this concept and add responsive paddings to an element of the control, you have to add the
91672
- * following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`,
91761
+ * in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the dialog's
91762
+ * width. To enable this concept and add responsive paddings to an element of the control, you have to add
91763
+ * the following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`,
91673
91764
  * `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
91674
91765
  */
91675
91766
  class SelectDialog extends sap.m.SelectDialogBase {
@@ -104983,10 +105074,11 @@ declare namespace sap {
104983
105074
  * only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase
104984
105075
  * sap.m.ListBase} `sticky` property. Responsive Behavior:
104985
105076
  * - On smaller screens, the columns of the table wrap and build a list that shows all the information.
104986
- * When using the `sap.m.TableSelectDialog` in SAP Quartz themes, the breakpoints and layout paddings
104987
- * could be determined by the dialog's width. To enable this concept and add responsive paddings to an element
104988
- * of the control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
104989
- * `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
105077
+ * When using the `sap.m.TableSelectDialog` in SAP Quartz and Horizon themes, the breakpoints and
105078
+ * layout paddings could be determined by the dialog's width. To enable this concept and add responsive
105079
+ * paddings to an element of the control, you have to add the following classes depending on your use case:
105080
+ * `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`,
105081
+ * `sapUiResponsivePadding--footer`.
104990
105082
  */
104991
105083
  class TableSelectDialog extends sap.m.SelectDialogBase {
104992
105084
  /**
@@ -108025,10 +108117,6 @@ declare namespace sap {
108025
108117
  * Called after the clock picker appears.
108026
108118
  */
108027
108119
  onAfterOpen(): void;
108028
- /**
108029
- * Called before the clock picker closes.
108030
- */
108031
- onBeforeClose(): void;
108032
108120
  /**
108033
108121
  * Called before the clock picker appears.
108034
108122
  */
@@ -117055,6 +117143,55 @@ declare namespace sap {
117055
117143
  */
117056
117144
  oListener?: object
117057
117145
  ): this;
117146
+ /**
117147
+ * @SINCE 1.101
117148
+ *
117149
+ * Attaches event handler `fnFunction` to the {@link #event:navigationChange navigationChange} event of
117150
+ * this `sap.m.Wizard`.
117151
+ *
117152
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
117153
+ * otherwise it will be bound to this `sap.m.Wizard` itself.
117154
+ *
117155
+ * This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
117156
+ * or scrolling through the steps.
117157
+ */
117158
+ attachNavigationChange(
117159
+ /**
117160
+ * An application-specific payload object that will be passed to the event handler along with the event
117161
+ * object when firing the event
117162
+ */
117163
+ oData: object,
117164
+ /**
117165
+ * The function to be called when the event occurs
117166
+ */
117167
+ fnFunction: (p1: sap.ui.base.Event) => void,
117168
+ /**
117169
+ * Context object to call the event handler with. Defaults to this `sap.m.Wizard` itself
117170
+ */
117171
+ oListener?: object
117172
+ ): this;
117173
+ /**
117174
+ * @SINCE 1.101
117175
+ *
117176
+ * Attaches event handler `fnFunction` to the {@link #event:navigationChange navigationChange} event of
117177
+ * this `sap.m.Wizard`.
117178
+ *
117179
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
117180
+ * otherwise it will be bound to this `sap.m.Wizard` itself.
117181
+ *
117182
+ * This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
117183
+ * or scrolling through the steps.
117184
+ */
117185
+ attachNavigationChange(
117186
+ /**
117187
+ * The function to be called when the event occurs
117188
+ */
117189
+ fnFunction: (p1: sap.ui.base.Event) => void,
117190
+ /**
117191
+ * Context object to call the event handler with. Defaults to this `sap.m.Wizard` itself
117192
+ */
117193
+ oListener?: object
117194
+ ): this;
117058
117195
  /**
117059
117196
  * Attaches event handler `fnFunction` to the {@link #event:stepActivate stepActivate} event of this `sap.m.Wizard`.
117060
117197
  *
@@ -117115,6 +117252,24 @@ declare namespace sap {
117115
117252
  */
117116
117253
  oListener?: object
117117
117254
  ): this;
117255
+ /**
117256
+ * @SINCE 1.101
117257
+ *
117258
+ * Detaches event handler `fnFunction` from the {@link #event:navigationChange navigationChange} event of
117259
+ * this `sap.m.Wizard`.
117260
+ *
117261
+ * The passed function and listener object must match the ones used for event registration.
117262
+ */
117263
+ detachNavigationChange(
117264
+ /**
117265
+ * The function to be called, when the event occurs
117266
+ */
117267
+ fnFunction: (p1: sap.ui.base.Event) => void,
117268
+ /**
117269
+ * Context object on which the given function had to be called
117270
+ */
117271
+ oListener?: object
117272
+ ): this;
117118
117273
  /**
117119
117274
  * Detaches event handler `fnFunction` from the {@link #event:stepActivate stepActivate} event of this `sap.m.Wizard`.
117120
117275
  *
@@ -117153,6 +117308,22 @@ declare namespace sap {
117153
117308
  */
117154
117309
  mParameters?: object
117155
117310
  ): this;
117311
+ /**
117312
+ * @SINCE 1.101
117313
+ *
117314
+ * Fires event {@link #event:navigationChange navigationChange} to attached listeners.
117315
+ */
117316
+ fireNavigationChange(
117317
+ /**
117318
+ * Parameters to pass along with the event
117319
+ */
117320
+ mParameters?: {
117321
+ /**
117322
+ * The newly selected step.
117323
+ */
117324
+ step?: sap.m.WizardStep;
117325
+ }
117326
+ ): this;
117156
117327
  /**
117157
117328
  * Fires event {@link #event:stepActivate stepActivate} to attached listeners.
117158
117329
  */
@@ -117218,7 +117389,7 @@ declare namespace sap {
117218
117389
  */
117219
117390
  getProgressStep(): sap.m.WizardStep;
117220
117391
  /**
117221
- * @EXPERIMENTAL (since 1.84)
117392
+ * @SINCE 1.84
117222
117393
  *
117223
117394
  * Gets current value of property {@link #getRenderMode renderMode}.
117224
117395
  *
@@ -117358,7 +117529,7 @@ declare namespace sap {
117358
117529
  sHeight?: sap.ui.core.CSSSize
117359
117530
  ): this;
117360
117531
  /**
117361
- * @EXPERIMENTAL (since 1.84)
117532
+ * @SINCE 1.84
117362
117533
  *
117363
117534
  * Sets a new value for property {@link #getRenderMode renderMode}.
117364
117535
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**