@openui5/ts-types 1.115.1 → 1.116.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -209,16 +209,12 @@ declare namespace sap {
209
209
  /**
210
210
  * Fires when the scan fails with error.
211
211
  */
212
- scanError?: (
213
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.BarcodeScannerDialog$ScanErrorEventParameters>
214
- ) => void;
212
+ scanError?: (oEvent: BarcodeScannerDialog$ScanErrorEvent) => void;
215
213
 
216
214
  /**
217
215
  * Fires when the scan is completed successfuuly.
218
216
  */
219
- scanSuccess?: (
220
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.BarcodeScannerDialog$ScanSuccessEventParameters>
221
- ) => void;
217
+ scanSuccess?: (oEvent: BarcodeScannerDialog$ScanSuccessEvent) => void;
222
218
  }
223
219
 
224
220
  interface $DynamicSideContentSettings
@@ -324,13 +320,18 @@ declare namespace sap {
324
320
  /**
325
321
  * Fires when the current breakpoint has been changed.
326
322
  */
327
- layoutChange?: (
328
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.DynamicSideContent$LayoutChangeEventParameters>
329
- ) => void;
323
+ layoutChange?: (oEvent: DynamicSideContent$LayoutChangeEvent) => void;
330
324
  }
331
325
 
332
326
  interface $FilterItemSettings
333
327
  extends sap.ui.webc.common.$WebComponentSettings {
328
+ /**
329
+ * Defines the additional text of the component.
330
+ */
331
+ additionalText?:
332
+ | string
333
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
334
+
334
335
  /**
335
336
  * Defines the text of the component.
336
337
  */
@@ -349,7 +350,7 @@ declare namespace sap {
349
350
  interface $FilterItemOptionSettings
350
351
  extends sap.ui.webc.common.$WebComponentSettings {
351
352
  /**
352
- * Defines whether the option is selected
353
+ * Defines if the component is selected.
353
354
  */
354
355
  selected?:
355
356
  | boolean
@@ -466,7 +467,7 @@ declare namespace sap {
466
467
  * size due to resizing.
467
468
  */
468
469
  layoutChange?: (
469
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.FlexibleColumnLayout$LayoutChangeEventParameters>
470
+ oEvent: FlexibleColumnLayout$LayoutChangeEvent
470
471
  ) => void;
471
472
  }
472
473
 
@@ -527,6 +528,19 @@ declare namespace sap {
527
528
  * property will be overwritten.
528
529
  */
529
530
  subtitle?: sap.ui.core.Control;
531
+
532
+ /**
533
+ * Defines the title of the component.
534
+ *
535
+ * **Note:** Using this slot, the default title text of illustration and the value of `title` property
536
+ * will be overwritten.
537
+ */
538
+ title?: sap.ui.core.Control;
539
+
540
+ /**
541
+ * Receives id(or many ids) of the controls that label this control.
542
+ */
543
+ ariaLabelledBy?: Array<sap.ui.core.Control | string>;
530
544
  }
531
545
 
532
546
  interface $MediaGallerySettings
@@ -617,9 +631,7 @@ declare namespace sap {
617
631
  /**
618
632
  * Fired when selection is changed by user interaction.
619
633
  */
620
- selectionChange?: (
621
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.MediaGallery$SelectionChangeEventParameters>
622
- ) => void;
634
+ selectionChange?: (oEvent: MediaGallery$SelectionChangeEvent) => void;
623
635
  }
624
636
 
625
637
  interface $MediaGalleryItemSettings
@@ -704,6 +716,11 @@ declare namespace sap {
704
716
  * Defines the text of the `sap.ui.webc.fiori.NotificationAction`.
705
717
  */
706
718
  text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
719
+
720
+ /**
721
+ * Fired, when the action is pressed.
722
+ */
723
+ click?: (oEvent: NotificationAction$ClickEvent) => void;
707
724
  }
708
725
 
709
726
  interface $NotificationListGroupItemSettings
@@ -799,7 +816,7 @@ declare namespace sap {
799
816
  /**
800
817
  * Fired when the `Close` button is pressed.
801
818
  */
802
- close?: (oEvent: sap.ui.base.Event) => void;
819
+ close?: (oEvent: NotificationListGroupItem$CloseEvent) => void;
803
820
 
804
821
  /**
805
822
  * Fired when the `sap.ui.webc.fiori.NotificationListGroupItem` is expanded/collapsed by user interaction.
@@ -870,7 +887,7 @@ declare namespace sap {
870
887
  *
871
888
  *
872
889
  *
873
- * **Note:** by default the `titleText` and `decription`, and a `ShowMore/Less` button would be displayed.
890
+ * **Note:** by default the `titleText` and `description`, and a `ShowMore/Less` button would be displayed.
874
891
  */
875
892
  wrappingType?:
876
893
  | sap.ui.webc.main.WrappingType
@@ -912,7 +929,7 @@ declare namespace sap {
912
929
  /**
913
930
  * Fired when the `Close` button is pressed.
914
931
  */
915
- close?: (oEvent: sap.ui.base.Event) => void;
932
+ close?: (oEvent: NotificationListItem$CloseEvent) => void;
916
933
  }
917
934
 
918
935
  interface $PageSettings
@@ -1059,6 +1076,40 @@ declare namespace sap {
1059
1076
 
1060
1077
  interface $ShellBarSettings
1061
1078
  extends sap.ui.webc.common.$WebComponentSettings {
1079
+ /**
1080
+ * An object of strings that defines several additional accessibility attribute values for customization
1081
+ * depending on the use case.
1082
+ *
1083
+ * It supports the following fields:
1084
+ *
1085
+ *
1086
+ * - `expanded`: Indicates whether the anchor element, or another grouping element it controls, is currently
1087
+ * expanded or collapsed. Accepts the following string values:
1088
+ * `true`
1089
+ * - `false`
1090
+ * - `hasPopup`: Indicates the availability and type of interactive popup element, such as menu or dialog,
1091
+ * that can be triggered by the anchor element. Accepts the following string values:
1092
+ * `Dialog`
1093
+ * - `Grid`
1094
+ * - `ListBox`
1095
+ * - `Menu`
1096
+ * - `Tree`
1097
+ */
1098
+ accessibilityAttributes?:
1099
+ | object
1100
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1101
+ | `{${string}}`;
1102
+
1103
+ /**
1104
+ * An object of strings that defines additional accessibility roles for further customization.
1105
+ *
1106
+ * It supports the following fields: - `logoRole`: the accessibility role for the `logo`
1107
+ */
1108
+ accessibilityRoles?:
1109
+ | object
1110
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1111
+ | `{${string}}`;
1112
+
1062
1113
  /**
1063
1114
  * An object of strings that defines several additional accessibility texts for even further customization.
1064
1115
  *
@@ -1119,6 +1170,15 @@ declare namespace sap {
1119
1170
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1120
1171
  | `{${string}}`;
1121
1172
 
1173
+ /**
1174
+ * Defines, if the Search Field would be displayed when there is a valid `searchField` slot.
1175
+ * **Note:** By default the Search Field is not displayed.
1176
+ */
1177
+ showSearchField?:
1178
+ | boolean
1179
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1180
+ | `{${string}}`;
1181
+
1122
1182
  /**
1123
1183
  * Defines the `sap.ui.webc.fiori.ShellBar` aditional items.
1124
1184
  *
@@ -1170,30 +1230,24 @@ declare namespace sap {
1170
1230
  /**
1171
1231
  * Fired, when the co pilot is activated.
1172
1232
  */
1173
- coPilotClick?: (
1174
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBar$CoPilotClickEventParameters>
1175
- ) => void;
1233
+ coPilotClick?: (oEvent: ShellBar$CoPilotClickEvent) => void;
1176
1234
 
1177
1235
  /**
1178
1236
  * Fired, when the logo is activated.
1179
1237
  */
1180
- logoClick?: (
1181
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBar$LogoClickEventParameters>
1182
- ) => void;
1238
+ logoClick?: (oEvent: ShellBar$LogoClickEvent) => void;
1183
1239
 
1184
1240
  /**
1185
1241
  * Fired, when a menu item is activated **Note:** You can prevent closing of overflow popover by calling
1186
1242
  * `event.preventDefault()`.
1187
1243
  */
1188
- menuItemClick?: (
1189
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBar$MenuItemClickEventParameters>
1190
- ) => void;
1244
+ menuItemClick?: (oEvent: ShellBar$MenuItemClickEvent) => void;
1191
1245
 
1192
1246
  /**
1193
1247
  * Fired, when the notification icon is activated.
1194
1248
  */
1195
1249
  notificationsClick?: (
1196
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBar$NotificationsClickEventParameters>
1250
+ oEvent: ShellBar$NotificationsClickEvent
1197
1251
  ) => void;
1198
1252
 
1199
1253
  /**
@@ -1201,15 +1255,13 @@ declare namespace sap {
1201
1255
  * by calling `event.preventDefault()`.
1202
1256
  */
1203
1257
  productSwitchClick?: (
1204
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBar$ProductSwitchClickEventParameters>
1258
+ oEvent: ShellBar$ProductSwitchClickEvent
1205
1259
  ) => void;
1206
1260
 
1207
1261
  /**
1208
1262
  * Fired, when the profile slot is present.
1209
1263
  */
1210
- profileClick?: (
1211
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBar$ProfileClickEventParameters>
1212
- ) => void;
1264
+ profileClick?: (oEvent: ShellBar$ProfileClickEvent) => void;
1213
1265
  }
1214
1266
 
1215
1267
  interface $ShellBarItemSettings
@@ -1232,9 +1284,7 @@ declare namespace sap {
1232
1284
  /**
1233
1285
  * Fired, when the item is pressed.
1234
1286
  */
1235
- click?: (
1236
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ShellBarItem$ClickEventParameters>
1237
- ) => void;
1287
+ click?: (oEvent: ShellBarItem$ClickEvent) => void;
1238
1288
  }
1239
1289
 
1240
1290
  interface $SideNavigationSettings
@@ -1289,7 +1339,7 @@ declare namespace sap {
1289
1339
  * Fired when the selection has changed via user interaction
1290
1340
  */
1291
1341
  selectionChange?: (
1292
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.SideNavigation$SelectionChangeEventParameters>
1342
+ oEvent: SideNavigation$SelectionChangeEvent
1293
1343
  ) => void;
1294
1344
  }
1295
1345
 
@@ -1338,13 +1388,18 @@ declare namespace sap {
1338
1388
  | `{${string}}`;
1339
1389
 
1340
1390
  /**
1341
- * If you wish to nest menus, you can pass inner menu items to the default slot.
1391
+ * Defines nested items by passing `sap.ui.webc.fiori.SideNavigationSubItem` to the default slot.
1342
1392
  */
1343
1393
  items?:
1344
1394
  | sap.ui.webc.fiori.ISideNavigationSubItem[]
1345
1395
  | sap.ui.webc.fiori.ISideNavigationSubItem
1346
1396
  | sap.ui.base.ManagedObject.AggregationBindingInfo
1347
1397
  | `{${string}}`;
1398
+
1399
+ /**
1400
+ * Fired when the component is activated either with a click/tap or by using the Enter or Space key.
1401
+ */
1402
+ click?: (oEvent: sap.ui.base.Event) => void;
1348
1403
  }
1349
1404
 
1350
1405
  interface $SideNavigationSubItemSettings
@@ -1371,6 +1426,11 @@ declare namespace sap {
1371
1426
  * Defines the text of the item.
1372
1427
  */
1373
1428
  text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1429
+
1430
+ /**
1431
+ * Fired when the component is activated either with a click/tap or by using the Enter or Space key.
1432
+ */
1433
+ click?: (oEvent: sap.ui.base.Event) => void;
1374
1434
  }
1375
1435
 
1376
1436
  interface $SortItemSettings
@@ -1392,7 +1452,7 @@ declare namespace sap {
1392
1452
  interface $TimelineSettings
1393
1453
  extends sap.ui.webc.common.$WebComponentSettings {
1394
1454
  /**
1395
- * Defines the accessible aria name of the component.
1455
+ * Defines the accessible ARIA name of the component.
1396
1456
  */
1397
1457
  accessibleName?:
1398
1458
  | string
@@ -1493,7 +1553,7 @@ declare namespace sap {
1493
1553
  interface $UploadCollectionSettings
1494
1554
  extends sap.ui.webc.common.$WebComponentSettings {
1495
1555
  /**
1496
- * Defines the accessible aria name of the component.
1556
+ * Defines the accessible ARIA name of the component.
1497
1557
  */
1498
1558
  accessibleName?:
1499
1559
  | string
@@ -1583,9 +1643,7 @@ declare namespace sap {
1583
1643
  * **Note:** The `drop` event is fired only when elements are dropped within the drag and drop overlay
1584
1644
  * and ignored for the other parts of the `sap.ui.webc.fiori.UploadCollection`.
1585
1645
  */
1586
- drop?: (
1587
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.UploadCollection$DropEventParameters>
1588
- ) => void;
1646
+ drop?: (oEvent: UploadCollection$DropEvent) => void;
1589
1647
 
1590
1648
  /**
1591
1649
  * Fired when the Delete button of any item is pressed.
@@ -1593,15 +1651,13 @@ declare namespace sap {
1593
1651
  * **Note:** A Delete button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollection` `mode`
1594
1652
  * property is set to `Delete`.
1595
1653
  */
1596
- itemDelete?: (
1597
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.UploadCollection$ItemDeleteEventParameters>
1598
- ) => void;
1654
+ itemDelete?: (oEvent: UploadCollection$ItemDeleteEvent) => void;
1599
1655
 
1600
1656
  /**
1601
1657
  * Fired when selection is changed by user interaction in `SingleSelect` and `MultiSelect` modes.
1602
1658
  */
1603
1659
  selectionChange?: (
1604
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.UploadCollection$SelectionChangeEventParameters>
1660
+ oEvent: UploadCollection$SelectionChangeEvent
1605
1661
  ) => void;
1606
1662
  }
1607
1663
 
@@ -1748,20 +1804,24 @@ declare namespace sap {
1748
1804
  /**
1749
1805
  * Fired when cancel button is activated.
1750
1806
  */
1751
- cancel?: (
1752
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ViewSettingsDialog$CancelEventParameters>
1753
- ) => void;
1807
+ cancel?: (oEvent: ViewSettingsDialog$CancelEvent) => void;
1754
1808
 
1755
1809
  /**
1756
1810
  * Fired when confirmation button is activated.
1757
1811
  */
1758
- confirm?: (
1759
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.ViewSettingsDialog$ConfirmEventParameters>
1760
- ) => void;
1812
+ confirm?: (oEvent: ViewSettingsDialog$ConfirmEvent) => void;
1761
1813
  }
1762
1814
 
1763
1815
  interface $WizardSettings
1764
1816
  extends sap.ui.webc.common.$WebComponentSettings {
1817
+ /**
1818
+ * Defines how the content of the `sap.ui.webc.fiori.Wizard` would be visualized.
1819
+ */
1820
+ contentLayout?:
1821
+ | sap.ui.webc.fiori.WizardContentLayout
1822
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1823
+ | `{${string}}`;
1824
+
1765
1825
  /**
1766
1826
  * Defines the height of the control
1767
1827
  */
@@ -1785,9 +1845,7 @@ declare namespace sap {
1785
1845
  * Fired when the step is changed by user interaction - either with scrolling, or by clicking on the steps
1786
1846
  * within the component header.
1787
1847
  */
1788
- stepChange?: (
1789
- oEvent: sap.ui.base.Event<sap.ui.webc.fiori.Wizard$StepChangeEventParameters>
1790
- ) => void;
1848
+ stepChange?: (oEvent: Wizard$StepChangeEvent) => void;
1791
1849
  }
1792
1850
 
1793
1851
  interface $WizardStepSettings
@@ -1914,7 +1972,7 @@ declare namespace sap {
1914
1972
  /**
1915
1973
  * The current layout
1916
1974
  */
1917
- layout?: FCLLayout;
1975
+ layout?: sap.ui.webc.fiori.FCLLayout;
1918
1976
 
1919
1977
  /**
1920
1978
  * The effective column layout, f.e [67%, 33%, 0]
@@ -1958,11 +2016,28 @@ declare namespace sap {
1958
2016
  item?: HTMLElement;
1959
2017
  }
1960
2018
 
1961
- interface NotificationListGroupItem$CloseEventParameters {}
2019
+ interface NotificationAction$ClickEventParameters {
2020
+ /**
2021
+ * DOM ref of the clicked element
2022
+ */
2023
+ targetRef?: HTMLElement;
2024
+ }
2025
+
2026
+ interface NotificationListGroupItem$CloseEventParameters {
2027
+ /**
2028
+ * the closed item.
2029
+ */
2030
+ item?: HTMLElement;
2031
+ }
1962
2032
 
1963
2033
  interface NotificationListGroupItem$ToggleEventParameters {}
1964
2034
 
1965
- interface NotificationListItem$CloseEventParameters {}
2035
+ interface NotificationListItem$CloseEventParameters {
2036
+ /**
2037
+ * the closed item.
2038
+ */
2039
+ item?: HTMLElement;
2040
+ }
1966
2041
 
1967
2042
  interface ProductSwitchItem$ClickEventParameters {}
1968
2043
 
@@ -2019,9 +2094,15 @@ declare namespace sap {
2019
2094
  /**
2020
2095
  * the clicked item.
2021
2096
  */
2022
- item?: HTMLElement;
2097
+ item?:
2098
+ | sap.ui.webc.fiori.ISideNavigationItem
2099
+ | sap.ui.webc.fiori.ISideNavigationSubItem;
2023
2100
  }
2024
2101
 
2102
+ interface SideNavigationItem$ClickEventParameters {}
2103
+
2104
+ interface SideNavigationSubItem$ClickEventParameters {}
2105
+
2025
2106
  interface TimelineItem$NameClickEventParameters {}
2026
2107
 
2027
2108
  interface UploadCollection$DropEventParameters {
@@ -2079,7 +2160,7 @@ declare namespace sap {
2079
2160
  /**
2080
2161
  * The selected filters items.
2081
2162
  */
2082
- filterItems?: any[];
2163
+ filters?: any[];
2083
2164
  }
2084
2165
 
2085
2166
  interface ViewSettingsDialog$ConfirmEventParameters {
@@ -2106,19 +2187,19 @@ declare namespace sap {
2106
2187
  /**
2107
2188
  * The selected filters items.
2108
2189
  */
2109
- filterItems?: any[];
2190
+ filters?: any[];
2110
2191
  }
2111
2192
 
2112
2193
  interface Wizard$StepChangeEventParameters {
2113
2194
  /**
2114
2195
  * The new step.
2115
2196
  */
2116
- step?: HTMLElement;
2197
+ step?: sap.ui.webc.fiori.IWizardStep;
2117
2198
 
2118
2199
  /**
2119
2200
  * The previous step.
2120
2201
  */
2121
- previousStep?: HTMLElement;
2202
+ previousStep?: sap.ui.webc.fiori.IWizardStep;
2122
2203
 
2123
2204
  /**
2124
2205
  * The step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation.
@@ -3401,6 +3482,16 @@ declare namespace sap {
3401
3482
  * @returns Reference to `this` in order to allow method chaining
3402
3483
  */
3403
3484
  destroyValues(): this;
3485
+ /**
3486
+ * Gets current value of property {@link #getAdditionalText additionalText}.
3487
+ *
3488
+ * Defines the additional text of the component.
3489
+ *
3490
+ * Default value is `empty string`.
3491
+ *
3492
+ * @returns Value of property `additionalText`
3493
+ */
3494
+ getAdditionalText(): string;
3404
3495
  /**
3405
3496
  * Gets current value of property {@link #getText text}.
3406
3497
  *
@@ -3465,6 +3556,23 @@ declare namespace sap {
3465
3556
  */
3466
3557
  vValue: int | string | sap.ui.webc.fiori.IFilterItemOption
3467
3558
  ): sap.ui.webc.fiori.IFilterItemOption | null;
3559
+ /**
3560
+ * Sets a new value for property {@link #getAdditionalText additionalText}.
3561
+ *
3562
+ * Defines the additional text of the component.
3563
+ *
3564
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3565
+ *
3566
+ * Default value is `empty string`.
3567
+ *
3568
+ * @returns Reference to `this` in order to allow method chaining
3569
+ */
3570
+ setAdditionalText(
3571
+ /**
3572
+ * New value for property `additionalText`
3573
+ */
3574
+ sAdditionalText?: string
3575
+ ): this;
3468
3576
  /**
3469
3577
  * Sets a new value for property {@link #getText text}.
3470
3578
  *
@@ -3558,7 +3666,7 @@ declare namespace sap {
3558
3666
  /**
3559
3667
  * Gets current value of property {@link #getSelected selected}.
3560
3668
  *
3561
- * Defines whether the option is selected
3669
+ * Defines if the component is selected.
3562
3670
  *
3563
3671
  * Default value is `false`.
3564
3672
  *
@@ -3578,7 +3686,7 @@ declare namespace sap {
3578
3686
  /**
3579
3687
  * Sets a new value for property {@link #getSelected selected}.
3580
3688
  *
3581
- * Defines whether the option is selected
3689
+ * Defines if the component is selected.
3582
3690
  *
3583
3691
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3584
3692
  *
@@ -4190,6 +4298,17 @@ declare namespace sap {
4190
4298
  */
4191
4299
  oAction: sap.ui.webc.main.IButton
4192
4300
  ): this;
4301
+ /**
4302
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4303
+ *
4304
+ * @returns Reference to `this` in order to allow method chaining
4305
+ */
4306
+ addAriaLabelledBy(
4307
+ /**
4308
+ * The ariaLabelledBy to add; if empty, nothing is inserted
4309
+ */
4310
+ vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
4311
+ ): this;
4193
4312
  /**
4194
4313
  * Destroys all the actions in the aggregation {@link #getActions actions}.
4195
4314
  *
@@ -4202,12 +4321,22 @@ declare namespace sap {
4202
4321
  * @returns Reference to `this` in order to allow method chaining
4203
4322
  */
4204
4323
  destroySubtitle(): this;
4324
+ /**
4325
+ * Destroys the title in the aggregation {@link #getTitle title}.
4326
+ *
4327
+ * @returns Reference to `this` in order to allow method chaining
4328
+ */
4329
+ destroyTitle(): this;
4205
4330
  /**
4206
4331
  * Gets content of aggregation {@link #getActions actions}.
4207
4332
  *
4208
4333
  * Defines the component actions.
4209
4334
  */
4210
4335
  getActions(): sap.ui.webc.main.IButton[];
4336
+ /**
4337
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
4338
+ */
4339
+ getAriaLabelledBy(): sap.ui.core.ID[];
4211
4340
  /**
4212
4341
  * Gets current value of property {@link #getName name}.
4213
4342
  *
@@ -4259,6 +4388,15 @@ declare namespace sap {
4259
4388
  * @returns Value of property `subtitleText`
4260
4389
  */
4261
4390
  getSubtitleText(): string;
4391
+ /**
4392
+ * Gets content of aggregation {@link #getTitle title}.
4393
+ *
4394
+ * Defines the title of the component.
4395
+ *
4396
+ * **Note:** Using this slot, the default title text of illustration and the value of `title` property
4397
+ * will be overwritten.
4398
+ */
4399
+ getTitle(): sap.ui.core.Control;
4262
4400
  /**
4263
4401
  * Gets current value of property {@link #getTitleText titleText}.
4264
4402
  *
@@ -4319,6 +4457,23 @@ declare namespace sap {
4319
4457
  * @returns An array of the removed elements (might be empty)
4320
4458
  */
4321
4459
  removeAllActions(): sap.ui.webc.main.IButton[];
4460
+ /**
4461
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
4462
+ *
4463
+ * @returns An array of the removed elements (might be empty)
4464
+ */
4465
+ removeAllAriaLabelledBy(): sap.ui.core.ID[];
4466
+ /**
4467
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
4468
+ *
4469
+ * @returns The removed ariaLabelledBy or `null`
4470
+ */
4471
+ removeAriaLabelledBy(
4472
+ /**
4473
+ * The ariaLabelledBy to be removed or its index or ID
4474
+ */
4475
+ vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
4476
+ ): sap.ui.core.ID | null;
4322
4477
  /**
4323
4478
  * Sets a new value for property {@link #getName name}.
4324
4479
  *
@@ -4393,6 +4548,17 @@ declare namespace sap {
4393
4548
  */
4394
4549
  sSubtitleText?: string
4395
4550
  ): this;
4551
+ /**
4552
+ * Sets the aggregated {@link #getTitle title}.
4553
+ *
4554
+ * @returns Reference to `this` in order to allow method chaining
4555
+ */
4556
+ setTitle(
4557
+ /**
4558
+ * The title to set
4559
+ */
4560
+ oTitle: sap.ui.core.Control
4561
+ ): this;
4396
4562
  /**
4397
4563
  * Sets a new value for property {@link #getTitleText titleText}.
4398
4564
  *
@@ -4436,7 +4602,8 @@ declare namespace sap {
4436
4602
  *
4437
4603
  * - [UP/DOWN] - Navigates up and down the items
4438
4604
  * - [HOME] - Navigates to first item
4439
- * - [END] - Navigates to the last item [SPACE/ENTER] - Select an item
4605
+ * - [END] - Navigates to the last item
4606
+ * - [SPACE/ENTER] - Select an item
4440
4607
  */
4441
4608
  class MediaGallery extends sap.ui.webc.common.WebComponent {
4442
4609
  /**
@@ -5270,6 +5437,83 @@ declare namespace sap {
5270
5437
  * @returns Metadata object describing this class
5271
5438
  */
5272
5439
  static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
5440
+ /**
5441
+ * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.NotificationAction`.
5442
+ *
5443
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
5444
+ * otherwise it will be bound to this `sap.ui.webc.fiori.NotificationAction` itself.
5445
+ *
5446
+ * Fired, when the action is pressed.
5447
+ *
5448
+ * @returns Reference to `this` in order to allow method chaining
5449
+ */
5450
+ attachClick(
5451
+ /**
5452
+ * An application-specific payload object that will be passed to the event handler along with the event
5453
+ * object when firing the event
5454
+ */
5455
+ oData: object,
5456
+ /**
5457
+ * The function to be called when the event occurs
5458
+ */
5459
+ fnFunction: (p1: NotificationAction$ClickEvent) => void,
5460
+ /**
5461
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.NotificationAction`
5462
+ * itself
5463
+ */
5464
+ oListener?: object
5465
+ ): this;
5466
+ /**
5467
+ * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.NotificationAction`.
5468
+ *
5469
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
5470
+ * otherwise it will be bound to this `sap.ui.webc.fiori.NotificationAction` itself.
5471
+ *
5472
+ * Fired, when the action is pressed.
5473
+ *
5474
+ * @returns Reference to `this` in order to allow method chaining
5475
+ */
5476
+ attachClick(
5477
+ /**
5478
+ * The function to be called when the event occurs
5479
+ */
5480
+ fnFunction: (p1: NotificationAction$ClickEvent) => void,
5481
+ /**
5482
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.NotificationAction`
5483
+ * itself
5484
+ */
5485
+ oListener?: object
5486
+ ): this;
5487
+ /**
5488
+ * Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.webc.fiori.NotificationAction`.
5489
+ *
5490
+ * The passed function and listener object must match the ones used for event registration.
5491
+ *
5492
+ * @returns Reference to `this` in order to allow method chaining
5493
+ */
5494
+ detachClick(
5495
+ /**
5496
+ * The function to be called, when the event occurs
5497
+ */
5498
+ fnFunction: (p1: NotificationAction$ClickEvent) => void,
5499
+ /**
5500
+ * Context object on which the given function had to be called
5501
+ */
5502
+ oListener?: object
5503
+ ): this;
5504
+ /**
5505
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5506
+ *
5507
+ * Fires event {@link #event:click click} to attached listeners.
5508
+ *
5509
+ * @returns Reference to `this` in order to allow method chaining
5510
+ */
5511
+ fireClick(
5512
+ /**
5513
+ * Parameters to pass along with the event
5514
+ */
5515
+ mParameters?: sap.ui.webc.fiori.NotificationAction$ClickEventParameters
5516
+ ): this;
5273
5517
  /**
5274
5518
  * Gets current value of property {@link #getDesign design}.
5275
5519
  *
@@ -5537,7 +5781,7 @@ declare namespace sap {
5537
5781
  /**
5538
5782
  * The function to be called when the event occurs
5539
5783
  */
5540
- fnFunction: (p1: sap.ui.base.Event) => void,
5784
+ fnFunction: (p1: NotificationListGroupItem$CloseEvent) => void,
5541
5785
  /**
5542
5786
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.NotificationListGroupItem`
5543
5787
  * itself
@@ -5558,7 +5802,7 @@ declare namespace sap {
5558
5802
  /**
5559
5803
  * The function to be called when the event occurs
5560
5804
  */
5561
- fnFunction: (p1: sap.ui.base.Event) => void,
5805
+ fnFunction: (p1: NotificationListGroupItem$CloseEvent) => void,
5562
5806
  /**
5563
5807
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.NotificationListGroupItem`
5564
5808
  * itself
@@ -5635,7 +5879,7 @@ declare namespace sap {
5635
5879
  /**
5636
5880
  * The function to be called, when the event occurs
5637
5881
  */
5638
- fnFunction: (p1: sap.ui.base.Event) => void,
5882
+ fnFunction: (p1: NotificationListGroupItem$CloseEvent) => void,
5639
5883
  /**
5640
5884
  * Context object on which the given function had to be called
5641
5885
  */
@@ -5669,7 +5913,7 @@ declare namespace sap {
5669
5913
  /**
5670
5914
  * Parameters to pass along with the event
5671
5915
  */
5672
- mParameters?: object
5916
+ mParameters?: sap.ui.webc.fiori.NotificationListGroupItem$CloseEventParameters
5673
5917
  ): this;
5674
5918
  /**
5675
5919
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -6162,7 +6406,7 @@ declare namespace sap {
6162
6406
  /**
6163
6407
  * The function to be called when the event occurs
6164
6408
  */
6165
- fnFunction: (p1: sap.ui.base.Event) => void,
6409
+ fnFunction: (p1: NotificationListItem$CloseEvent) => void,
6166
6410
  /**
6167
6411
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.NotificationListItem`
6168
6412
  * itself
@@ -6183,7 +6427,7 @@ declare namespace sap {
6183
6427
  /**
6184
6428
  * The function to be called when the event occurs
6185
6429
  */
6186
- fnFunction: (p1: sap.ui.base.Event) => void,
6430
+ fnFunction: (p1: NotificationListItem$CloseEvent) => void,
6187
6431
  /**
6188
6432
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.NotificationListItem`
6189
6433
  * itself
@@ -6219,7 +6463,7 @@ declare namespace sap {
6219
6463
  /**
6220
6464
  * The function to be called, when the event occurs
6221
6465
  */
6222
- fnFunction: (p1: sap.ui.base.Event) => void,
6466
+ fnFunction: (p1: NotificationListItem$CloseEvent) => void,
6223
6467
  /**
6224
6468
  * Context object on which the given function had to be called
6225
6469
  */
@@ -6236,7 +6480,7 @@ declare namespace sap {
6236
6480
  /**
6237
6481
  * Parameters to pass along with the event
6238
6482
  */
6239
- mParameters?: object
6483
+ mParameters?: sap.ui.webc.fiori.NotificationListItem$CloseEventParameters
6240
6484
  ): this;
6241
6485
  /**
6242
6486
  * Gets content of aggregation {@link #getActions actions}.
@@ -6348,7 +6592,7 @@ declare namespace sap {
6348
6592
  *
6349
6593
  *
6350
6594
  *
6351
- * **Note:** by default the `titleText` and `decription`, and a `ShowMore/Less` button would be displayed.
6595
+ * **Note:** by default the `titleText` and `description`, and a `ShowMore/Less` button would be displayed.
6352
6596
  *
6353
6597
  * Default value is `None`.
6354
6598
  *
@@ -6594,7 +6838,7 @@ declare namespace sap {
6594
6838
  *
6595
6839
  *
6596
6840
  *
6597
- * **Note:** by default the `titleText` and `decription`, and a `ShowMore/Less` button would be displayed.
6841
+ * **Note:** by default the `titleText` and `description`, and a `ShowMore/Less` button would be displayed.
6598
6842
  *
6599
6843
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6600
6844
  *
@@ -6625,7 +6869,8 @@ declare namespace sap {
6625
6869
  *
6626
6870
  * **Note:** `sap.ui.webc.fiori.Page` occipues the whole available space of its parent. In order to achieve
6627
6871
  * the intended design you have to make sure that there is enough space for the `sap.ui.webc.fiori.Page`
6628
- * to be rendered.
6872
+ * to be rendered. **Note:** In order for the `sap.ui.webc.fiori.Page` to be displayed, the parent element
6873
+ * should have fixed height.
6629
6874
  */
6630
6875
  class Page extends sap.ui.webc.common.WebComponent {
6631
6876
  /**
@@ -7337,8 +7582,6 @@ declare namespace sap {
7337
7582
  * - `_parent`
7338
7583
  * - `_search`
7339
7584
  *
7340
- * Default value is `"_self"`.
7341
- *
7342
7585
  * @returns Value of property `target`
7343
7586
  */
7344
7587
  getTarget(): string;
@@ -7418,15 +7661,13 @@ declare namespace sap {
7418
7661
  *
7419
7662
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7420
7663
  *
7421
- * Default value is `"_self"`.
7422
- *
7423
7664
  * @returns Reference to `this` in order to allow method chaining
7424
7665
  */
7425
7666
  setTarget(
7426
7667
  /**
7427
7668
  * New value for property `target`
7428
7669
  */
7429
- sTarget?: string
7670
+ sTarget: string
7430
7671
  ): this;
7431
7672
  /**
7432
7673
  * Sets a new value for property {@link #getTargetSrc targetSrc}.
@@ -8084,6 +8325,44 @@ declare namespace sap {
8084
8325
  */
8085
8326
  mParameters?: sap.ui.webc.fiori.ShellBar$ProfileClickEventParameters
8086
8327
  ): this;
8328
+ /**
8329
+ * Gets current value of property {@link #getAccessibilityAttributes accessibilityAttributes}.
8330
+ *
8331
+ * An object of strings that defines several additional accessibility attribute values for customization
8332
+ * depending on the use case.
8333
+ *
8334
+ * It supports the following fields:
8335
+ *
8336
+ *
8337
+ * - `expanded`: Indicates whether the anchor element, or another grouping element it controls, is currently
8338
+ * expanded or collapsed. Accepts the following string values:
8339
+ * `true`
8340
+ * - `false`
8341
+ * - `hasPopup`: Indicates the availability and type of interactive popup element, such as menu or dialog,
8342
+ * that can be triggered by the anchor element. Accepts the following string values:
8343
+ * `Dialog`
8344
+ * - `Grid`
8345
+ * - `ListBox`
8346
+ * - `Menu`
8347
+ * - `Tree`
8348
+ *
8349
+ * Default value is `{}`.
8350
+ *
8351
+ * @returns Value of property `accessibilityAttributes`
8352
+ */
8353
+ getAccessibilityAttributes(): object;
8354
+ /**
8355
+ * Gets current value of property {@link #getAccessibilityRoles accessibilityRoles}.
8356
+ *
8357
+ * An object of strings that defines additional accessibility roles for further customization.
8358
+ *
8359
+ * It supports the following fields: - `logoRole`: the accessibility role for the `logo`
8360
+ *
8361
+ * Default value is `{}`.
8362
+ *
8363
+ * @returns Value of property `accessibilityRoles`
8364
+ */
8365
+ getAccessibilityRoles(): object;
8087
8366
  /**
8088
8367
  * Gets current value of property {@link #getAccessibilityTexts accessibilityTexts}.
8089
8368
  *
@@ -8226,6 +8505,17 @@ declare namespace sap {
8226
8505
  * @returns Value of property `showProductSwitch`
8227
8506
  */
8228
8507
  getShowProductSwitch(): boolean;
8508
+ /**
8509
+ * Gets current value of property {@link #getShowSearchField showSearchField}.
8510
+ *
8511
+ * Defines, if the Search Field would be displayed when there is a valid `searchField` slot.
8512
+ * **Note:** By default the Search Field is not displayed.
8513
+ *
8514
+ * Default value is `false`.
8515
+ *
8516
+ * @returns Value of property `showSearchField`
8517
+ */
8518
+ getShowSearchField(): boolean;
8229
8519
  /**
8230
8520
  * Gets content of aggregation {@link #getStartButton startButton}.
8231
8521
  *
@@ -8330,12 +8620,25 @@ declare namespace sap {
8330
8620
  vMenuItem: int | string | sap.ui.webc.main.IListItem
8331
8621
  ): sap.ui.webc.main.IListItem | null;
8332
8622
  /**
8333
- * Sets a new value for property {@link #getAccessibilityTexts accessibilityTexts}.
8623
+ * Sets a new value for property {@link #getAccessibilityAttributes accessibilityAttributes}.
8334
8624
  *
8335
- * An object of strings that defines several additional accessibility texts for even further customization.
8625
+ * An object of strings that defines several additional accessibility attribute values for customization
8626
+ * depending on the use case.
8336
8627
  *
8337
- * It supports the following fields: - `profileButtonTitle`: defines the tooltip for the profile button
8338
- * - `logoTitle`: defines the tooltip for the logo
8628
+ * It supports the following fields:
8629
+ *
8630
+ *
8631
+ * - `expanded`: Indicates whether the anchor element, or another grouping element it controls, is currently
8632
+ * expanded or collapsed. Accepts the following string values:
8633
+ * `true`
8634
+ * - `false`
8635
+ * - `hasPopup`: Indicates the availability and type of interactive popup element, such as menu or dialog,
8636
+ * that can be triggered by the anchor element. Accepts the following string values:
8637
+ * `Dialog`
8638
+ * - `Grid`
8639
+ * - `ListBox`
8640
+ * - `Menu`
8641
+ * - `Tree`
8339
8642
  *
8340
8643
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8341
8644
  *
@@ -8343,18 +8646,57 @@ declare namespace sap {
8343
8646
  *
8344
8647
  * @returns Reference to `this` in order to allow method chaining
8345
8648
  */
8346
- setAccessibilityTexts(
8649
+ setAccessibilityAttributes(
8347
8650
  /**
8348
- * New value for property `accessibilityTexts`
8651
+ * New value for property `accessibilityAttributes`
8349
8652
  */
8350
- oAccessibilityTexts?: object
8653
+ oAccessibilityAttributes?: object
8351
8654
  ): this;
8352
8655
  /**
8353
- * Sets the aggregated {@link #getLogo logo}.
8656
+ * Sets a new value for property {@link #getAccessibilityRoles accessibilityRoles}.
8354
8657
  *
8355
- * @returns Reference to `this` in order to allow method chaining
8356
- */
8357
- setLogo(
8658
+ * An object of strings that defines additional accessibility roles for further customization.
8659
+ *
8660
+ * It supports the following fields: - `logoRole`: the accessibility role for the `logo`
8661
+ *
8662
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8663
+ *
8664
+ * Default value is `{}`.
8665
+ *
8666
+ * @returns Reference to `this` in order to allow method chaining
8667
+ */
8668
+ setAccessibilityRoles(
8669
+ /**
8670
+ * New value for property `accessibilityRoles`
8671
+ */
8672
+ oAccessibilityRoles?: object
8673
+ ): this;
8674
+ /**
8675
+ * Sets a new value for property {@link #getAccessibilityTexts accessibilityTexts}.
8676
+ *
8677
+ * An object of strings that defines several additional accessibility texts for even further customization.
8678
+ *
8679
+ * It supports the following fields: - `profileButtonTitle`: defines the tooltip for the profile button
8680
+ * - `logoTitle`: defines the tooltip for the logo
8681
+ *
8682
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8683
+ *
8684
+ * Default value is `{}`.
8685
+ *
8686
+ * @returns Reference to `this` in order to allow method chaining
8687
+ */
8688
+ setAccessibilityTexts(
8689
+ /**
8690
+ * New value for property `accessibilityTexts`
8691
+ */
8692
+ oAccessibilityTexts?: object
8693
+ ): this;
8694
+ /**
8695
+ * Sets the aggregated {@link #getLogo logo}.
8696
+ *
8697
+ * @returns Reference to `this` in order to allow method chaining
8698
+ */
8699
+ setLogo(
8358
8700
  /**
8359
8701
  * The logo to set
8360
8702
  */
@@ -8490,6 +8832,24 @@ declare namespace sap {
8490
8832
  */
8491
8833
  bShowProductSwitch?: boolean
8492
8834
  ): this;
8835
+ /**
8836
+ * Sets a new value for property {@link #getShowSearchField showSearchField}.
8837
+ *
8838
+ * Defines, if the Search Field would be displayed when there is a valid `searchField` slot.
8839
+ * **Note:** By default the Search Field is not displayed.
8840
+ *
8841
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8842
+ *
8843
+ * Default value is `false`.
8844
+ *
8845
+ * @returns Reference to `this` in order to allow method chaining
8846
+ */
8847
+ setShowSearchField(
8848
+ /**
8849
+ * New value for property `showSearchField`
8850
+ */
8851
+ bShowSearchField?: boolean
8852
+ ): this;
8493
8853
  /**
8494
8854
  * Sets the aggregated {@link #getStartButton startButton}.
8495
8855
  *
@@ -9231,12 +9591,89 @@ declare namespace sap {
9231
9591
  */
9232
9592
  oItem: sap.ui.webc.fiori.ISideNavigationSubItem
9233
9593
  ): this;
9594
+ /**
9595
+ * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.SideNavigationItem`.
9596
+ *
9597
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
9598
+ * otherwise it will be bound to this `sap.ui.webc.fiori.SideNavigationItem` itself.
9599
+ *
9600
+ * Fired when the component is activated either with a click/tap or by using the Enter or Space key.
9601
+ *
9602
+ * @returns Reference to `this` in order to allow method chaining
9603
+ */
9604
+ attachClick(
9605
+ /**
9606
+ * An application-specific payload object that will be passed to the event handler along with the event
9607
+ * object when firing the event
9608
+ */
9609
+ oData: object,
9610
+ /**
9611
+ * The function to be called when the event occurs
9612
+ */
9613
+ fnFunction: (p1: sap.ui.base.Event) => void,
9614
+ /**
9615
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.SideNavigationItem`
9616
+ * itself
9617
+ */
9618
+ oListener?: object
9619
+ ): this;
9620
+ /**
9621
+ * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.SideNavigationItem`.
9622
+ *
9623
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
9624
+ * otherwise it will be bound to this `sap.ui.webc.fiori.SideNavigationItem` itself.
9625
+ *
9626
+ * Fired when the component is activated either with a click/tap or by using the Enter or Space key.
9627
+ *
9628
+ * @returns Reference to `this` in order to allow method chaining
9629
+ */
9630
+ attachClick(
9631
+ /**
9632
+ * The function to be called when the event occurs
9633
+ */
9634
+ fnFunction: (p1: sap.ui.base.Event) => void,
9635
+ /**
9636
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.SideNavigationItem`
9637
+ * itself
9638
+ */
9639
+ oListener?: object
9640
+ ): this;
9234
9641
  /**
9235
9642
  * Destroys all the items in the aggregation {@link #getItems items}.
9236
9643
  *
9237
9644
  * @returns Reference to `this` in order to allow method chaining
9238
9645
  */
9239
9646
  destroyItems(): this;
9647
+ /**
9648
+ * Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.webc.fiori.SideNavigationItem`.
9649
+ *
9650
+ * The passed function and listener object must match the ones used for event registration.
9651
+ *
9652
+ * @returns Reference to `this` in order to allow method chaining
9653
+ */
9654
+ detachClick(
9655
+ /**
9656
+ * The function to be called, when the event occurs
9657
+ */
9658
+ fnFunction: (p1: sap.ui.base.Event) => void,
9659
+ /**
9660
+ * Context object on which the given function had to be called
9661
+ */
9662
+ oListener?: object
9663
+ ): this;
9664
+ /**
9665
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9666
+ *
9667
+ * Fires event {@link #event:click click} to attached listeners.
9668
+ *
9669
+ * @returns Reference to `this` in order to allow method chaining
9670
+ */
9671
+ fireClick(
9672
+ /**
9673
+ * Parameters to pass along with the event
9674
+ */
9675
+ mParameters?: object
9676
+ ): this;
9240
9677
  /**
9241
9678
  * Gets current value of property {@link #getExpanded expanded}.
9242
9679
  *
@@ -9265,7 +9702,7 @@ declare namespace sap {
9265
9702
  /**
9266
9703
  * Gets content of aggregation {@link #getItems items}.
9267
9704
  *
9268
- * If you wish to nest menus, you can pass inner menu items to the default slot.
9705
+ * Defines nested items by passing `sap.ui.webc.fiori.SideNavigationSubItem` to the default slot.
9269
9706
  */
9270
9707
  getItems(): sap.ui.webc.fiori.ISideNavigationSubItem[];
9271
9708
  /**
@@ -9519,6 +9956,83 @@ declare namespace sap {
9519
9956
  * @returns Metadata object describing this class
9520
9957
  */
9521
9958
  static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
9959
+ /**
9960
+ * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.SideNavigationSubItem`.
9961
+ *
9962
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
9963
+ * otherwise it will be bound to this `sap.ui.webc.fiori.SideNavigationSubItem` itself.
9964
+ *
9965
+ * Fired when the component is activated either with a click/tap or by using the Enter or Space key.
9966
+ *
9967
+ * @returns Reference to `this` in order to allow method chaining
9968
+ */
9969
+ attachClick(
9970
+ /**
9971
+ * An application-specific payload object that will be passed to the event handler along with the event
9972
+ * object when firing the event
9973
+ */
9974
+ oData: object,
9975
+ /**
9976
+ * The function to be called when the event occurs
9977
+ */
9978
+ fnFunction: (p1: sap.ui.base.Event) => void,
9979
+ /**
9980
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.SideNavigationSubItem`
9981
+ * itself
9982
+ */
9983
+ oListener?: object
9984
+ ): this;
9985
+ /**
9986
+ * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.SideNavigationSubItem`.
9987
+ *
9988
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
9989
+ * otherwise it will be bound to this `sap.ui.webc.fiori.SideNavigationSubItem` itself.
9990
+ *
9991
+ * Fired when the component is activated either with a click/tap or by using the Enter or Space key.
9992
+ *
9993
+ * @returns Reference to `this` in order to allow method chaining
9994
+ */
9995
+ attachClick(
9996
+ /**
9997
+ * The function to be called when the event occurs
9998
+ */
9999
+ fnFunction: (p1: sap.ui.base.Event) => void,
10000
+ /**
10001
+ * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.SideNavigationSubItem`
10002
+ * itself
10003
+ */
10004
+ oListener?: object
10005
+ ): this;
10006
+ /**
10007
+ * Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.webc.fiori.SideNavigationSubItem`.
10008
+ *
10009
+ * The passed function and listener object must match the ones used for event registration.
10010
+ *
10011
+ * @returns Reference to `this` in order to allow method chaining
10012
+ */
10013
+ detachClick(
10014
+ /**
10015
+ * The function to be called, when the event occurs
10016
+ */
10017
+ fnFunction: (p1: sap.ui.base.Event) => void,
10018
+ /**
10019
+ * Context object on which the given function had to be called
10020
+ */
10021
+ oListener?: object
10022
+ ): this;
10023
+ /**
10024
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10025
+ *
10026
+ * Fires event {@link #event:click click} to attached listeners.
10027
+ *
10028
+ * @returns Reference to `this` in order to allow method chaining
10029
+ */
10030
+ fireClick(
10031
+ /**
10032
+ * Parameters to pass along with the event
10033
+ */
10034
+ mParameters?: object
10035
+ ): this;
9522
10036
  /**
9523
10037
  * Gets current value of property {@link #getIcon icon}.
9524
10038
  *
@@ -9832,7 +10346,7 @@ declare namespace sap {
9832
10346
  /**
9833
10347
  * Gets current value of property {@link #getAccessibleName accessibleName}.
9834
10348
  *
9835
- * Defines the accessible aria name of the component.
10349
+ * Defines the accessible ARIA name of the component.
9836
10350
  *
9837
10351
  * @returns Value of property `accessibleName`
9838
10352
  */
@@ -9926,7 +10440,7 @@ declare namespace sap {
9926
10440
  /**
9927
10441
  * Sets a new value for property {@link #getAccessibleName accessibleName}.
9928
10442
  *
9929
- * Defines the accessible aria name of the component.
10443
+ * Defines the accessible ARIA name of the component.
9930
10444
  *
9931
10445
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9932
10446
  *
@@ -10711,7 +11225,7 @@ declare namespace sap {
10711
11225
  /**
10712
11226
  * Gets current value of property {@link #getAccessibleName accessibleName}.
10713
11227
  *
10714
- * Defines the accessible aria name of the component.
11228
+ * Defines the accessible ARIA name of the component.
10715
11229
  *
10716
11230
  * Default value is `empty string`.
10717
11231
  *
@@ -10901,7 +11415,7 @@ declare namespace sap {
10901
11415
  /**
10902
11416
  * Sets a new value for property {@link #getAccessibleName accessibleName}.
10903
11417
  *
10904
- * Defines the accessible aria name of the component.
11418
+ * Defines the accessible ARIA name of the component.
10905
11419
  *
10906
11420
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10907
11421
  *
@@ -12205,14 +12719,14 @@ declare namespace sap {
12205
12719
  * Sets a JavaScript object, as settings to the `sap.ui.webc.fiori.ViewSettingsDialog`. This method can
12206
12720
  * be used after the dialog is initially open, as the dialog need to set its initial settings. The `sap.ui.webc.fiori.ViewSettingsDialog`
12207
12721
  * throws an event called "before-open", this can be used as trigger point. The object should have the following
12208
- * format: `{ { "sortOrder" : "Ascending", "sortBy" : "Name", "filters" : [{"Filter 1": ["Some filter 1",
12209
- * "Some filter 2"]}, {"Filter 2": ["Some filter 4"]}]} }`
12722
+ * format: ` {sortOrder: "Ascending", sortBy: "Name", filters: [{"Filter 1": ["Some filter 1", "Some filter
12723
+ * 2"]}, {"Filter 2": ["Some filter 4"]}]} `
12210
12724
  */
12211
12725
  setConfirmedSettings(
12212
12726
  /**
12213
- * A value to be set as predefined settings.
12727
+ * predefined settings.
12214
12728
  */
12215
- settings: string
12729
+ settings: object
12216
12730
  ): void;
12217
12731
  /**
12218
12732
  * Sets a new value for property {@link #getSortDescending sortDescending}.
@@ -12249,14 +12763,22 @@ declare namespace sap {
12249
12763
  * Structure: Navigation area: The top most area of the `sap.ui.webc.fiori.Wizard` is occupied by the navigation
12250
12764
  * area. It shows the sequence of steps, where the recommended number of steps is between 3 and 8 steps.
12251
12765
  *
12252
- * - Steps can have different visual representations - numbers or icons. Steps might have labels
12253
- * for better readability - titleText and subTitleText.
12766
+ * - Steps can have different visual representations - numbers or icons.
12767
+ * - Steps might have labels for better readability - titleText and subTitleText.
12254
12768
  * - Steps are defined by using the `sap.ui.webc.fiori.WizardStep` as slotted element within the `sap.ui.webc.fiori.Wizard`.
12255
12769
  *
12256
12770
  *
12257
12771
  * **Note:** If no selected step is defined, the first step will be auto selected.
12258
12772
  * **Note:** If multiple selected steps are defined, the last step will be selected.
12259
12773
  *
12774
+ * CSS Shadow Parts:
12775
+ *
12776
+ * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to
12777
+ * style elements inside the Shadow DOM.
12778
+ * The `sap.ui.webc.fiori.Wizard` exposes the following CSS Shadow Parts:
12779
+ * - navigator - Used to style the progress navigator of the `sap.ui.webc.fiori.Wizard`.
12780
+ * - step-content - Used to style a `sap.ui.webc.fiori.WizardStep` container.
12781
+ *
12260
12782
  * Keyboard Handling: The user can navigate using the following keyboard shortcuts:
12261
12783
  *
12262
12784
  *
@@ -12461,6 +12983,16 @@ declare namespace sap {
12461
12983
  */
12462
12984
  mParameters?: sap.ui.webc.fiori.Wizard$StepChangeEventParameters
12463
12985
  ): this;
12986
+ /**
12987
+ * Gets current value of property {@link #getContentLayout contentLayout}.
12988
+ *
12989
+ * Defines how the content of the `sap.ui.webc.fiori.Wizard` would be visualized.
12990
+ *
12991
+ * Default value is `MultipleSteps`.
12992
+ *
12993
+ * @returns Value of property `contentLayout`
12994
+ */
12995
+ getContentLayout(): sap.ui.webc.fiori.WizardContentLayout;
12464
12996
  /**
12465
12997
  * Gets current value of property {@link #getHeight height}.
12466
12998
  *
@@ -12525,6 +13057,23 @@ declare namespace sap {
12525
13057
  */
12526
13058
  vStep: int | string | sap.ui.webc.fiori.IWizardStep
12527
13059
  ): sap.ui.webc.fiori.IWizardStep | null;
13060
+ /**
13061
+ * Sets a new value for property {@link #getContentLayout contentLayout}.
13062
+ *
13063
+ * Defines how the content of the `sap.ui.webc.fiori.Wizard` would be visualized.
13064
+ *
13065
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13066
+ *
13067
+ * Default value is `MultipleSteps`.
13068
+ *
13069
+ * @returns Reference to `this` in order to allow method chaining
13070
+ */
13071
+ setContentLayout(
13072
+ /**
13073
+ * New value for property `contentLayout`
13074
+ */
13075
+ sContentLayout?: sap.ui.webc.fiori.WizardContentLayout
13076
+ ): this;
12528
13077
  /**
12529
13078
  * Sets a new value for property {@link #getHeight height}.
12530
13079
  *
@@ -12917,7 +13466,7 @@ declare namespace sap {
12917
13466
  * @since 1.92.0
12918
13467
  * @experimental (since 1.92.0) - This API is experimental and might change significantly.
12919
13468
  *
12920
- * Different types of Bar.
13469
+ * Different types of Bar design
12921
13470
  */
12922
13471
  enum BarDesign {
12923
13472
  /**
@@ -12941,19 +13490,19 @@ declare namespace sap {
12941
13490
  * @since 1.92.0
12942
13491
  * @experimental (since 1.92.0) - This API is experimental and might change significantly.
12943
13492
  *
12944
- * undefined
13493
+ * Different types of FCLLayout.
12945
13494
  */
12946
13495
  enum FCLLayout {
12947
13496
  /**
12948
- * Desktop: -/-/100 only the End column is displayed Tablet: -/-/100 only the End column is displayed Phone:
12949
- * -/-/100 only the End column is displayed
13497
+ * Desktop: -- -- 100 only the End column is displayed Tablet: -- -- 100 only the End column is displayed
13498
+ * Phone: -- -- 100 only the End column is displayed
12950
13499
  *
12951
13500
  * Use to display a detail-detail page only, when the user should focus entirely on it.
12952
13501
  */
12953
13502
  EndColumnFullScreen = "EndColumnFullScreen",
12954
13503
  /**
12955
- * Desktop: -/100/- only the Mid column is displayed Tablet: -/100/- only the Mid column is displayed Phone:
12956
- * -/100/- only the Mid column is displayed
13504
+ * Desktop: -- 100 -- only the Mid column is displayed Tablet: -- 100 -- only the Mid column is displayed
13505
+ * Phone: -- 100 -- only the Mid column is displayed
12957
13506
  *
12958
13507
  * Use to display a detail page only, when the user should focus entirely on it.
12959
13508
  */
@@ -12963,48 +13512,49 @@ declare namespace sap {
12963
13512
  */
12964
13513
  OneColumn = "OneColumn",
12965
13514
  /**
12966
- * Desktop: 25/25/50 Start, Mid and End (expanded) columns are displayed Tablet: 0/33/67 Mid and End (expanded)
12967
- * columns are displayed, Start is accessible by layout arrows Phone: -/-/100 (only the End column is displayed)
13515
+ * Desktop: 25 - 25 - 50 Start, Mid and End (expanded) columns are displayed Tablet: 0 - 33 - 67 Mid and
13516
+ * End (expanded) columns are displayed, Start is accessible by layout arrows Phone: -- -- 100 (only the
13517
+ * End column is displayed)
12968
13518
  *
12969
13519
  * Use to display all three pages (list, detail, detail-detail) when the user should focus on the detail-detail.
12970
13520
  */
12971
13521
  ThreeColumnsEndExpanded = "ThreeColumnsEndExpanded",
12972
13522
  /**
12973
- * Desktop: 25/50/25 Start, Mid (expanded) and End columns are displayed Tablet: 0/67/33 Mid (expanded)
12974
- * and End columns are displayed, Start is accessible by a layout arrow Phone: -/-/100 only the End column
13523
+ * Desktop: 25 - 50 - 25 Start, Mid (expanded) and End columns are displayed Tablet: 0 - 67 - 33 Mid (expanded)
13524
+ * and End columns are displayed, Start is accessible by a layout arrow Phone: -- -- 100 only the End column
12975
13525
  * is displayed
12976
13526
  *
12977
13527
  * Use to display all three pages (list, detail, detail-detail) when the user should focus on the detail.
12978
13528
  */
12979
13529
  ThreeColumnsMidExpanded = "ThreeColumnsMidExpanded",
12980
13530
  /**
12981
- * Desktop: 33/67/0 Start and Mid (expanded) columns are displayed, End is accessible by a layout arrow
12982
- * Tablet: 33/67/0 Start and Mid (expanded) columns are displayed, End is accessible by a layout arrow Phone:
12983
- * -/-/100 only the End column is displayed
13531
+ * Desktop: 33 - 67 - 0 Start and Mid (expanded) columns are displayed, End is accessible by a layout arrow
13532
+ * Tablet: 33 - 67 - 0 Start and Mid (expanded) columns are displayed, End is accessible by a layout arrow
13533
+ * Phone: -- -- 100 only the End column is displayed
12984
13534
  *
12985
13535
  * Use to display the list and detail pages when the user should focus on the detail. The detail-detail
12986
13536
  * is still loaded and easily accessible with a layout arrow.
12987
13537
  */
12988
13538
  ThreeColumnsMidExpandedEndHidden = "ThreeColumnsMidExpandedEndHidden",
12989
13539
  /**
12990
- * Desktop: 67/33/0 Start (expanded) and Mid columns are displayed, End is accessible by layout arrows Tablet:
12991
- * 67/33/0 Start (expanded) and Mid columns are displayed, End is accessible by layout arrows Phone: -/-/100
12992
- * only the End column is displayed
13540
+ * Desktop: 67 - 33 - 0 Start (expanded) and Mid columns are displayed, End is accessible by layout arrows
13541
+ * Tablet: 67 - 33 - 0 Start (expanded) and Mid columns are displayed, End is accessible by layout arrows
13542
+ * Phone: -- -- 100 only the End column is displayed
12993
13543
  *
12994
13544
  * Use to display the list and detail pages when the user should focus on the list. The detail-detail is
12995
13545
  * still loaded and easily accessible with layout arrows.
12996
13546
  */
12997
13547
  ThreeColumnsStartExpandedEndHidden = "ThreeColumnsStartExpandedEndHidden",
12998
13548
  /**
12999
- * Desktop: 33/67/- Start and Mid (expanded) columns are displayed Tablet: 33/67/- Start and Mid (expanded)
13000
- * columns are displayed Phone: -/100/- only the Mid column is displayed
13549
+ * Desktop: 33 - 67 - -- Start and Mid (expanded) columns are displayed Tablet: 33 - 67 - -- Start and Mid
13550
+ * (expanded) columns are displayed Phone: -- 100 -- only the Mid column is displayed
13001
13551
  *
13002
13552
  * Use to display both a list and a detail page when the user should focus on the detail page.
13003
13553
  */
13004
13554
  TwoColumnsMidExpanded = "TwoColumnsMidExpanded",
13005
13555
  /**
13006
- * Desktop: 67/33/- Start (expanded) and Mid columns are displayed Tablet: 67/33/- Start (expanded) and
13007
- * Mid columns are displayed Phone: -/100/- only the Mid column is displayed
13556
+ * Desktop: 67 - 33 - -- Start (expanded) and Mid columns are displayed Tablet: 67 - 33 - -- Start (expanded)
13557
+ * and Mid columns are displayed Phone: -- 100 -- only the Mid column is displayed
13008
13558
  *
13009
13559
  * Use to display both a list and a detail page when the user should focus on the list page.
13010
13560
  */
@@ -13056,6 +13606,10 @@ declare namespace sap {
13056
13606
  * "Add Column" illustration type.
13057
13607
  */
13058
13608
  AddColumn = "AddColumn",
13609
+ /**
13610
+ * "Add Dimensions" illustration type.
13611
+ */
13612
+ AddDimensions = "AddDimensions",
13059
13613
  /**
13060
13614
  * "Add People" illustration type.
13061
13615
  */
@@ -13100,10 +13654,18 @@ declare namespace sap {
13100
13654
  * "No Activities" illustration type.
13101
13655
  */
13102
13656
  NoActivities = "NoActivities",
13657
+ /**
13658
+ * "No Columns Set" illustration type.
13659
+ */
13660
+ NoColumnsSet = "NoColumnsSet",
13103
13661
  /**
13104
13662
  * "No Data" illustration type.
13105
13663
  */
13106
13664
  NoData = "NoData",
13665
+ /**
13666
+ * "No Dimensions Set" illustration type.
13667
+ */
13668
+ NoDimensionsSet = "NoDimensionsSet",
13107
13669
  /**
13108
13670
  * "No Entries" illustration type.
13109
13671
  */
@@ -13244,6 +13806,10 @@ declare namespace sap {
13244
13806
  * "Success Screen" illustration type.
13245
13807
  */
13246
13808
  SuccessScreen = "SuccessScreen",
13809
+ /**
13810
+ * "Survey" illustration type.
13811
+ */
13812
+ Survey = "Survey",
13247
13813
  /**
13248
13814
  * "Tent" illustration type.
13249
13815
  */
@@ -13404,6 +13970,10 @@ declare namespace sap {
13404
13970
  * "Upload Collection" illustration type.
13405
13971
  */
13406
13972
  UploadCollection = "UploadCollection",
13973
+ /**
13974
+ * "Upload To Cloud" illustration type.
13975
+ */
13976
+ UploadToCloud = "UploadToCloud",
13407
13977
  }
13408
13978
  /**
13409
13979
  * @since 1.99.0
@@ -13481,7 +14051,7 @@ declare namespace sap {
13481
14051
  * @since 1.92.0
13482
14052
  * @experimental (since 1.92.0) - This API is experimental and might change significantly.
13483
14053
  *
13484
- * undefined
14054
+ * Available Page Background Design.
13485
14055
  */
13486
14056
  enum PageBackgroundDesign {
13487
14057
  /**
@@ -13571,7 +14141,7 @@ declare namespace sap {
13571
14141
  * @since 1.92.0
13572
14142
  * @experimental (since 1.92.0) - This API is experimental and might change significantly.
13573
14143
  *
13574
- * Different types of Timeline.
14144
+ * Available Timeline layout orientation
13575
14145
  */
13576
14146
  enum TimelineLayout {
13577
14147
  /**
@@ -13587,7 +14157,7 @@ declare namespace sap {
13587
14157
  * @since 1.92.0
13588
14158
  * @experimental (since 1.92.0) - This API is experimental and might change significantly.
13589
14159
  *
13590
- * undefined
14160
+ * Different types of UploadState.
13591
14161
  */
13592
14162
  enum UploadState {
13593
14163
  /**
@@ -13608,251 +14178,104 @@ declare namespace sap {
13608
14178
  Uploading = "Uploading",
13609
14179
  }
13610
14180
  /**
13611
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BarcodeScannerDialog$ScanErrorEventParameters'
13612
- * in 1.115.1 and any later releases.
14181
+ * @since 1.115.0
14182
+ * @experimental (since 1.115.0) - This API is experimental and might change significantly.
14183
+ *
14184
+ * Different types of Bar.
13613
14185
  */
13614
- type $BarcodeScannerDialogScanErrorEventParameters = sap.ui.webc.fiori.BarcodeScannerDialog$ScanErrorEventParameters;
13615
-
13616
- type BarcodeScannerDialog$ScanErrorEvent = sap.ui.base.Event<BarcodeScannerDialog$ScanErrorEventParameters>;
13617
-
14186
+ enum ViewSettingsDialogMode {
14187
+ /**
14188
+ * Filter type
14189
+ */
14190
+ Filter = "Filter",
14191
+ /**
14192
+ * Default type
14193
+ */
14194
+ Sort = "Sort",
14195
+ }
13618
14196
  /**
13619
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BarcodeScannerDialog$ScanSuccessEventParameters'
13620
- * in 1.115.1 and any later releases.
14197
+ * @since 1.92.0
14198
+ * @experimental (since 1.92.0) - This API is experimental and might change significantly.
14199
+ *
14200
+ * Enumeration for different content layouts of the `ui5-wizard`.
13621
14201
  */
13622
- type $BarcodeScannerDialogScanSuccessEventParameters = sap.ui.webc.fiori.BarcodeScannerDialog$ScanSuccessEventParameters;
14202
+ enum WizardContentLayout {
14203
+ /**
14204
+ * Display the content of the `ui5-wizard` as multiple steps in a scroll section.
14205
+ */
14206
+ MultipleSteps = "MultipleSteps",
14207
+ /**
14208
+ * Display the content of the `ui5-wizard` as single step.
14209
+ */
14210
+ SingleStep = "SingleStep",
14211
+ }
13623
14212
 
13624
- type BarcodeScannerDialog$ScanSuccessEvent = sap.ui.base.Event<BarcodeScannerDialog$ScanSuccessEventParameters>;
14213
+ type BarcodeScannerDialog$ScanErrorEvent = sap.ui.base.Event<BarcodeScannerDialog$ScanErrorEventParameters>;
13625
14214
 
13626
- /**
13627
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicSideContent$LayoutChangeEventParameters'
13628
- * in 1.115.1 and any later releases.
13629
- */
13630
- type $DynamicSideContentLayoutChangeEventParameters = sap.ui.webc.fiori.DynamicSideContent$LayoutChangeEventParameters;
14215
+ type BarcodeScannerDialog$ScanSuccessEvent = sap.ui.base.Event<BarcodeScannerDialog$ScanSuccessEventParameters>;
13631
14216
 
13632
14217
  type DynamicSideContent$LayoutChangeEvent = sap.ui.base.Event<DynamicSideContent$LayoutChangeEventParameters>;
13633
14218
 
13634
- /**
13635
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$LayoutChangeEventParameters'
13636
- * in 1.115.1 and any later releases.
13637
- */
13638
- type $FlexibleColumnLayoutLayoutChangeEventParameters = sap.ui.webc.fiori.FlexibleColumnLayout$LayoutChangeEventParameters;
13639
-
13640
14219
  type FlexibleColumnLayout$LayoutChangeEvent = sap.ui.base.Event<FlexibleColumnLayout$LayoutChangeEventParameters>;
13641
14220
 
13642
- /**
13643
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MediaGallery$DisplayAreaClickEventParameters'
13644
- * in 1.115.1 and any later releases.
13645
- */
13646
- type $MediaGalleryDisplayAreaClickEventParameters = sap.ui.webc.fiori.MediaGallery$DisplayAreaClickEventParameters;
13647
-
13648
14221
  type MediaGallery$DisplayAreaClickEvent = sap.ui.base.Event<MediaGallery$DisplayAreaClickEventParameters>;
13649
14222
 
13650
- /**
13651
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MediaGallery$OverflowClickEventParameters'
13652
- * in 1.115.1 and any later releases.
13653
- */
13654
- type $MediaGalleryOverflowClickEventParameters = sap.ui.webc.fiori.MediaGallery$OverflowClickEventParameters;
13655
-
13656
14223
  type MediaGallery$OverflowClickEvent = sap.ui.base.Event<MediaGallery$OverflowClickEventParameters>;
13657
14224
 
13658
- /**
13659
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MediaGallery$SelectionChangeEventParameters'
13660
- * in 1.115.1 and any later releases.
13661
- */
13662
- type $MediaGallerySelectionChangeEventParameters = sap.ui.webc.fiori.MediaGallery$SelectionChangeEventParameters;
13663
-
13664
14225
  type MediaGallery$SelectionChangeEvent = sap.ui.base.Event<MediaGallery$SelectionChangeEventParameters>;
13665
14226
 
13666
- /**
13667
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationListGroupItem$CloseEventParameters'
13668
- * in 1.115.1 and any later releases.
13669
- */
13670
- type $NotificationListGroupItemCloseEventParameters = sap.ui.webc.fiori.NotificationListGroupItem$CloseEventParameters;
14227
+ type NotificationAction$ClickEvent = sap.ui.base.Event<NotificationAction$ClickEventParameters>;
13671
14228
 
13672
14229
  type NotificationListGroupItem$CloseEvent = sap.ui.base.Event<NotificationListGroupItem$CloseEventParameters>;
13673
14230
 
13674
- /**
13675
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationListGroupItem$ToggleEventParameters'
13676
- * in 1.115.1 and any later releases.
13677
- */
13678
- type $NotificationListGroupItemToggleEventParameters = sap.ui.webc.fiori.NotificationListGroupItem$ToggleEventParameters;
13679
-
13680
14231
  type NotificationListGroupItem$ToggleEvent = sap.ui.base.Event<NotificationListGroupItem$ToggleEventParameters>;
13681
14232
 
13682
- /**
13683
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NotificationListItem$CloseEventParameters'
13684
- * in 1.115.1 and any later releases.
13685
- */
13686
- type $NotificationListItemCloseEventParameters = sap.ui.webc.fiori.NotificationListItem$CloseEventParameters;
13687
-
13688
14233
  type NotificationListItem$CloseEvent = sap.ui.base.Event<NotificationListItem$CloseEventParameters>;
13689
14234
 
13690
- /**
13691
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ProductSwitchItem$ClickEventParameters'
13692
- * in 1.115.1 and any later releases.
13693
- */
13694
- type $ProductSwitchItemClickEventParameters = sap.ui.webc.fiori.ProductSwitchItem$ClickEventParameters;
13695
-
13696
14235
  type ProductSwitchItem$ClickEvent = sap.ui.base.Event<ProductSwitchItem$ClickEventParameters>;
13697
14236
 
13698
- /**
13699
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$CoPilotClickEventParameters'
13700
- * in 1.115.1 and any later releases.
13701
- */
13702
- type $ShellBarCoPilotClickEventParameters = sap.ui.webc.fiori.ShellBar$CoPilotClickEventParameters;
13703
-
13704
14237
  type ShellBar$CoPilotClickEvent = sap.ui.base.Event<ShellBar$CoPilotClickEventParameters>;
13705
14238
 
13706
- /**
13707
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$LogoClickEventParameters'
13708
- * in 1.115.1 and any later releases.
13709
- */
13710
- type $ShellBarLogoClickEventParameters = sap.ui.webc.fiori.ShellBar$LogoClickEventParameters;
13711
-
13712
14239
  type ShellBar$LogoClickEvent = sap.ui.base.Event<ShellBar$LogoClickEventParameters>;
13713
14240
 
13714
- /**
13715
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$MenuItemClickEventParameters'
13716
- * in 1.115.1 and any later releases.
13717
- */
13718
- type $ShellBarMenuItemClickEventParameters = sap.ui.webc.fiori.ShellBar$MenuItemClickEventParameters;
13719
-
13720
14241
  type ShellBar$MenuItemClickEvent = sap.ui.base.Event<ShellBar$MenuItemClickEventParameters>;
13721
14242
 
13722
- /**
13723
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$NotificationsClickEventParameters'
13724
- * in 1.115.1 and any later releases.
13725
- */
13726
- type $ShellBarNotificationsClickEventParameters = sap.ui.webc.fiori.ShellBar$NotificationsClickEventParameters;
13727
-
13728
14243
  type ShellBar$NotificationsClickEvent = sap.ui.base.Event<ShellBar$NotificationsClickEventParameters>;
13729
14244
 
13730
- /**
13731
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$ProductSwitchClickEventParameters'
13732
- * in 1.115.1 and any later releases.
13733
- */
13734
- type $ShellBarProductSwitchClickEventParameters = sap.ui.webc.fiori.ShellBar$ProductSwitchClickEventParameters;
13735
-
13736
14245
  type ShellBar$ProductSwitchClickEvent = sap.ui.base.Event<ShellBar$ProductSwitchClickEventParameters>;
13737
14246
 
13738
- /**
13739
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$ProfileClickEventParameters'
13740
- * in 1.115.1 and any later releases.
13741
- */
13742
- type $ShellBarProfileClickEventParameters = sap.ui.webc.fiori.ShellBar$ProfileClickEventParameters;
13743
-
13744
14247
  type ShellBar$ProfileClickEvent = sap.ui.base.Event<ShellBar$ProfileClickEventParameters>;
13745
14248
 
13746
- /**
13747
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBarItem$ClickEventParameters'
13748
- * in 1.115.1 and any later releases.
13749
- */
13750
- type $ShellBarItemClickEventParameters = sap.ui.webc.fiori.ShellBarItem$ClickEventParameters;
13751
-
13752
14249
  type ShellBarItem$ClickEvent = sap.ui.base.Event<ShellBarItem$ClickEventParameters>;
13753
14250
 
13754
- /**
13755
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SideNavigation$SelectionChangeEventParameters'
13756
- * in 1.115.1 and any later releases.
13757
- */
13758
- type $SideNavigationSelectionChangeEventParameters = sap.ui.webc.fiori.SideNavigation$SelectionChangeEventParameters;
13759
-
13760
14251
  type SideNavigation$SelectionChangeEvent = sap.ui.base.Event<SideNavigation$SelectionChangeEventParameters>;
13761
14252
 
13762
- /**
13763
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimelineItem$NameClickEventParameters'
13764
- * in 1.115.1 and any later releases.
13765
- */
13766
- type $TimelineItemNameClickEventParameters = sap.ui.webc.fiori.TimelineItem$NameClickEventParameters;
14253
+ type SideNavigationItem$ClickEvent = sap.ui.base.Event<SideNavigationItem$ClickEventParameters>;
13767
14254
 
13768
- type TimelineItem$NameClickEvent = sap.ui.base.Event<TimelineItem$NameClickEventParameters>;
14255
+ type SideNavigationSubItem$ClickEvent = sap.ui.base.Event<SideNavigationSubItem$ClickEventParameters>;
13769
14256
 
13770
- /**
13771
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollection$DropEventParameters'
13772
- * in 1.115.1 and any later releases.
13773
- */
13774
- type $UploadCollectionDropEventParameters = sap.ui.webc.fiori.UploadCollection$DropEventParameters;
14257
+ type TimelineItem$NameClickEvent = sap.ui.base.Event<TimelineItem$NameClickEventParameters>;
13775
14258
 
13776
14259
  type UploadCollection$DropEvent = sap.ui.base.Event<UploadCollection$DropEventParameters>;
13777
14260
 
13778
- /**
13779
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollection$ItemDeleteEventParameters'
13780
- * in 1.115.1 and any later releases.
13781
- */
13782
- type $UploadCollectionItemDeleteEventParameters = sap.ui.webc.fiori.UploadCollection$ItemDeleteEventParameters;
13783
-
13784
14261
  type UploadCollection$ItemDeleteEvent = sap.ui.base.Event<UploadCollection$ItemDeleteEventParameters>;
13785
14262
 
13786
- /**
13787
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollection$SelectionChangeEventParameters'
13788
- * in 1.115.1 and any later releases.
13789
- */
13790
- type $UploadCollectionSelectionChangeEventParameters = sap.ui.webc.fiori.UploadCollection$SelectionChangeEventParameters;
13791
-
13792
14263
  type UploadCollection$SelectionChangeEvent = sap.ui.base.Event<UploadCollection$SelectionChangeEventParameters>;
13793
14264
 
13794
- /**
13795
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollectionItem$FileNameClickEventParameters'
13796
- * in 1.115.1 and any later releases.
13797
- */
13798
- type $UploadCollectionItemFileNameClickEventParameters = sap.ui.webc.fiori.UploadCollectionItem$FileNameClickEventParameters;
13799
-
13800
14265
  type UploadCollectionItem$FileNameClickEvent = sap.ui.base.Event<UploadCollectionItem$FileNameClickEventParameters>;
13801
14266
 
13802
- /**
13803
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollectionItem$RenameEventParameters'
13804
- * in 1.115.1 and any later releases.
13805
- */
13806
- type $UploadCollectionItemRenameEventParameters = sap.ui.webc.fiori.UploadCollectionItem$RenameEventParameters;
13807
-
13808
14267
  type UploadCollectionItem$RenameEvent = sap.ui.base.Event<UploadCollectionItem$RenameEventParameters>;
13809
14268
 
13810
- /**
13811
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollectionItem$RetryEventParameters'
13812
- * in 1.115.1 and any later releases.
13813
- */
13814
- type $UploadCollectionItemRetryEventParameters = sap.ui.webc.fiori.UploadCollectionItem$RetryEventParameters;
13815
-
13816
14269
  type UploadCollectionItem$RetryEvent = sap.ui.base.Event<UploadCollectionItem$RetryEventParameters>;
13817
14270
 
13818
- /**
13819
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'UploadCollectionItem$TerminateEventParameters'
13820
- * in 1.115.1 and any later releases.
13821
- */
13822
- type $UploadCollectionItemTerminateEventParameters = sap.ui.webc.fiori.UploadCollectionItem$TerminateEventParameters;
13823
-
13824
14271
  type UploadCollectionItem$TerminateEvent = sap.ui.base.Event<UploadCollectionItem$TerminateEventParameters>;
13825
14272
 
13826
- /**
13827
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ViewSettingsDialog$BeforeOpenEventParameters'
13828
- * in 1.115.1 and any later releases.
13829
- */
13830
- type $ViewSettingsDialogBeforeOpenEventParameters = sap.ui.webc.fiori.ViewSettingsDialog$BeforeOpenEventParameters;
13831
-
13832
14273
  type ViewSettingsDialog$BeforeOpenEvent = sap.ui.base.Event<ViewSettingsDialog$BeforeOpenEventParameters>;
13833
14274
 
13834
- /**
13835
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ViewSettingsDialog$CancelEventParameters'
13836
- * in 1.115.1 and any later releases.
13837
- */
13838
- type $ViewSettingsDialogCancelEventParameters = sap.ui.webc.fiori.ViewSettingsDialog$CancelEventParameters;
13839
-
13840
14275
  type ViewSettingsDialog$CancelEvent = sap.ui.base.Event<ViewSettingsDialog$CancelEventParameters>;
13841
14276
 
13842
- /**
13843
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ViewSettingsDialog$ConfirmEventParameters'
13844
- * in 1.115.1 and any later releases.
13845
- */
13846
- type $ViewSettingsDialogConfirmEventParameters = sap.ui.webc.fiori.ViewSettingsDialog$ConfirmEventParameters;
13847
-
13848
14277
  type ViewSettingsDialog$ConfirmEvent = sap.ui.base.Event<ViewSettingsDialog$ConfirmEventParameters>;
13849
14278
 
13850
- /**
13851
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Wizard$StepChangeEventParameters'
13852
- * in 1.115.1 and any later releases.
13853
- */
13854
- type $WizardStepChangeEventParameters = sap.ui.webc.fiori.Wizard$StepChangeEventParameters;
13855
-
13856
14279
  type Wizard$StepChangeEvent = sap.ui.base.Event<Wizard$StepChangeEventParameters>;
13857
14280
  }
13858
14281
  }