@openui5/types 1.114.0 → 1.115.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.114.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -882,7 +882,7 @@ declare module "sap/ui/webc/fiori/Bar" {
882
882
  *
883
883
  * Keyboard Handling:
884
884
  */
885
- export default class Bar extends WebComponent implements IBar {
885
+ class Bar extends WebComponent implements IBar {
886
886
  __implements__sap_ui_webc_fiori_IBar: boolean;
887
887
  /**
888
888
  * Constructor for a new `Bar`.
@@ -1224,6 +1224,7 @@ declare module "sap/ui/webc/fiori/Bar" {
1224
1224
  sWidth: CSSSize
1225
1225
  ): this;
1226
1226
  }
1227
+ export default Bar;
1227
1228
 
1228
1229
  export interface $BarSettings extends $WebComponentSettings {
1229
1230
  /**
@@ -1293,10 +1294,10 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1293
1294
  *
1294
1295
  * Internally, the component uses the zxing-js/library third party OSS.
1295
1296
  *
1296
- * For a list of supported barcode formats, see the {@link https://github.com/zxing-js/library zxing-js/library}
1297
+ * For a list of supported barcode formats, see the {@link https://github.com/zxing-js/library zxing-js/library }
1297
1298
  * documentation.
1298
1299
  */
1299
- export default class BarcodeScannerDialog extends WebComponent {
1300
+ class BarcodeScannerDialog extends WebComponent {
1300
1301
  /**
1301
1302
  * Constructor for a new `BarcodeScannerDialog`.
1302
1303
  *
@@ -1376,7 +1377,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1376
1377
  /**
1377
1378
  * The function to be called when the event occurs
1378
1379
  */
1379
- fnFunction: (p1: Event) => void,
1380
+ fnFunction: (
1381
+ p1: Event<$BarcodeScannerDialogScanErrorEventParameters>
1382
+ ) => void,
1380
1383
  /**
1381
1384
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
1382
1385
  * itself
@@ -1397,7 +1400,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1397
1400
  /**
1398
1401
  * The function to be called when the event occurs
1399
1402
  */
1400
- fnFunction: (p1: Event) => void,
1403
+ fnFunction: (
1404
+ p1: Event<$BarcodeScannerDialogScanErrorEventParameters>
1405
+ ) => void,
1401
1406
  /**
1402
1407
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
1403
1408
  * itself
@@ -1423,7 +1428,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1423
1428
  /**
1424
1429
  * The function to be called when the event occurs
1425
1430
  */
1426
- fnFunction: (p1: Event) => void,
1431
+ fnFunction: (
1432
+ p1: Event<$BarcodeScannerDialogScanSuccessEventParameters>
1433
+ ) => void,
1427
1434
  /**
1428
1435
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
1429
1436
  * itself
@@ -1444,7 +1451,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1444
1451
  /**
1445
1452
  * The function to be called when the event occurs
1446
1453
  */
1447
- fnFunction: (p1: Event) => void,
1454
+ fnFunction: (
1455
+ p1: Event<$BarcodeScannerDialogScanSuccessEventParameters>
1456
+ ) => void,
1448
1457
  /**
1449
1458
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.BarcodeScannerDialog`
1450
1459
  * itself
@@ -1466,7 +1475,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1466
1475
  /**
1467
1476
  * The function to be called, when the event occurs
1468
1477
  */
1469
- fnFunction: (p1: Event) => void,
1478
+ fnFunction: (
1479
+ p1: Event<$BarcodeScannerDialogScanErrorEventParameters>
1480
+ ) => void,
1470
1481
  /**
1471
1482
  * Context object on which the given function had to be called
1472
1483
  */
@@ -1483,7 +1494,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1483
1494
  /**
1484
1495
  * The function to be called, when the event occurs
1485
1496
  */
1486
- fnFunction: (p1: Event) => void,
1497
+ fnFunction: (
1498
+ p1: Event<$BarcodeScannerDialogScanSuccessEventParameters>
1499
+ ) => void,
1487
1500
  /**
1488
1501
  * Context object on which the given function had to be called
1489
1502
  */
@@ -1500,12 +1513,7 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1500
1513
  /**
1501
1514
  * Parameters to pass along with the event
1502
1515
  */
1503
- mParameters?: {
1504
- /**
1505
- * the error message
1506
- */
1507
- message?: string;
1508
- }
1516
+ mParameters?: $BarcodeScannerDialogScanErrorEventParameters
1509
1517
  ): this;
1510
1518
  /**
1511
1519
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -1518,33 +1526,48 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
1518
1526
  /**
1519
1527
  * Parameters to pass along with the event
1520
1528
  */
1521
- mParameters?: {
1522
- /**
1523
- * the scan result as string
1524
- */
1525
- text?: string;
1526
- /**
1527
- * the scan result as a Uint8Array
1528
- */
1529
- rawBytes?: object;
1530
- }
1529
+ mParameters?: $BarcodeScannerDialogScanSuccessEventParameters
1531
1530
  ): this;
1532
1531
  /**
1533
1532
  * Shows a dialog with the camera videostream. Starts a scan session.
1534
1533
  */
1535
1534
  show(): void;
1536
1535
  }
1536
+ export default BarcodeScannerDialog;
1537
1537
 
1538
1538
  export interface $BarcodeScannerDialogSettings extends $WebComponentSettings {
1539
1539
  /**
1540
1540
  * Fires when the scan fails with error.
1541
1541
  */
1542
- scanError?: (oEvent: Event) => void;
1542
+ scanError?: (
1543
+ oEvent: Event<$BarcodeScannerDialogScanErrorEventParameters>
1544
+ ) => void;
1543
1545
 
1544
1546
  /**
1545
1547
  * Fires when the scan is completed successfuuly.
1546
1548
  */
1547
- scanSuccess?: (oEvent: Event) => void;
1549
+ scanSuccess?: (
1550
+ oEvent: Event<$BarcodeScannerDialogScanSuccessEventParameters>
1551
+ ) => void;
1552
+ }
1553
+
1554
+ export interface $BarcodeScannerDialogScanErrorEventParameters {
1555
+ /**
1556
+ * the error message
1557
+ */
1558
+ message?: string;
1559
+ }
1560
+
1561
+ export interface $BarcodeScannerDialogScanSuccessEventParameters {
1562
+ /**
1563
+ * the scan result as string
1564
+ */
1565
+ text?: string;
1566
+
1567
+ /**
1568
+ * the scan result as a Uint8Array
1569
+ */
1570
+ rawBytes?: object;
1548
1571
  }
1549
1572
  }
1550
1573
 
@@ -1609,29 +1632,29 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
1609
1632
  *
1610
1633
  *
1611
1634
  * - Main vs. side content ratio is 66.666 vs. 33.333 percent (with a minimum of 320px each). If the side
1612
- * content width falls below 320 px, it automatically slides under the main content, unless the app development
1613
- * team specifies that it should disappear.
1635
+ * content width falls below 320 px, it automatically slides under the main content, unless the app development
1636
+ * team specifies that it should disappear.
1614
1637
  *
1615
1638
  * Screen width <= 1024px and> 720px
1616
1639
  *
1617
1640
  *
1618
1641
  * - The side content ratio is fixed to 340px, and the main content takes the rest of the width. Only
1619
- * if the `sideContentFallDown` is set to `OnMinimumWidth` and screen width is <= 960px and> 720px the side
1620
- * content falls below the main content.
1642
+ * if the `sideContentFallDown` is set to `OnMinimumWidth` and screen width is <= 960px and> 720px the side
1643
+ * content falls below the main content.
1621
1644
  *
1622
1645
  * Screen width <= 720px (for example on a mobile device)
1623
1646
  * - In this case, the side content automatically disappears from the screen (unless specified to stay
1624
- * under the content by setting of `sideContentVisibility` property to `AlwaysShow`) and can be triggered
1625
- * from a pre-set trigger (specified within the app). When the side content is triggered, it replaces the
1626
- * main content. We recommend that you always place the trigger for the side content in the same location,
1627
- * such as in the app footer.
1647
+ * under the content by setting of `sideContentVisibility` property to `AlwaysShow`) and can be triggered
1648
+ * from a pre-set trigger (specified within the app). When the side content is triggered, it replaces the
1649
+ * main content. We recommend that you always place the trigger for the side content in the same location,
1650
+ * such as in the app footer.
1628
1651
  *
1629
1652
  * A special case allows switching the comparison mode between the main and side content. In this case,
1630
1653
  * the screen is split into 50:50 percent for main vs. side content. The responsive behavior of the equal
1631
1654
  * split is the same as in the standard view - the side content disappears on screen widths of less than
1632
1655
  * 720 px and can only be viewed by triggering it.
1633
1656
  */
1634
- export default class DynamicSideContent extends WebComponent {
1657
+ class DynamicSideContent extends WebComponent {
1635
1658
  /**
1636
1659
  * Constructor for a new `DynamicSideContent`.
1637
1660
  *
@@ -1733,7 +1756,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
1733
1756
  /**
1734
1757
  * The function to be called when the event occurs
1735
1758
  */
1736
- fnFunction: (p1: Event) => void,
1759
+ fnFunction: (
1760
+ p1: Event<$DynamicSideContentLayoutChangeEventParameters>
1761
+ ) => void,
1737
1762
  /**
1738
1763
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.DynamicSideContent`
1739
1764
  * itself
@@ -1754,7 +1779,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
1754
1779
  /**
1755
1780
  * The function to be called when the event occurs
1756
1781
  */
1757
- fnFunction: (p1: Event) => void,
1782
+ fnFunction: (
1783
+ p1: Event<$DynamicSideContentLayoutChangeEventParameters>
1784
+ ) => void,
1758
1785
  /**
1759
1786
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.DynamicSideContent`
1760
1787
  * itself
@@ -1784,7 +1811,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
1784
1811
  /**
1785
1812
  * The function to be called, when the event occurs
1786
1813
  */
1787
- fnFunction: (p1: Event) => void,
1814
+ fnFunction: (
1815
+ p1: Event<$DynamicSideContentLayoutChangeEventParameters>
1816
+ ) => void,
1788
1817
  /**
1789
1818
  * Context object on which the given function had to be called
1790
1819
  */
@@ -1801,24 +1830,7 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
1801
1830
  /**
1802
1831
  * Parameters to pass along with the event
1803
1832
  */
1804
- mParameters?: {
1805
- /**
1806
- * the current breakpoint.
1807
- */
1808
- currentBreakpoint?: string;
1809
- /**
1810
- * the breakpoint that was active before change to current breakpoint.
1811
- */
1812
- previousBreakpoint?: string;
1813
- /**
1814
- * visibility of the main content.
1815
- */
1816
- mainContentVisible?: boolean;
1817
- /**
1818
- * visibility of the side content.
1819
- */
1820
- sideContentVisible?: boolean;
1821
- }
1833
+ mParameters?: $DynamicSideContentLayoutChangeEventParameters
1822
1834
  ): this;
1823
1835
  /**
1824
1836
  * Gets content of aggregation {@link #getContent content}.
@@ -2171,6 +2183,7 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
2171
2183
  */
2172
2184
  toggleContents(): void;
2173
2185
  }
2186
+ export default DynamicSideContent;
2174
2187
 
2175
2188
  export interface $DynamicSideContentSettings extends $WebComponentSettings {
2176
2189
  /**
@@ -2257,7 +2270,31 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
2257
2270
  /**
2258
2271
  * Fires when the current breakpoint has been changed.
2259
2272
  */
2260
- layoutChange?: (oEvent: Event) => void;
2273
+ layoutChange?: (
2274
+ oEvent: Event<$DynamicSideContentLayoutChangeEventParameters>
2275
+ ) => void;
2276
+ }
2277
+
2278
+ export interface $DynamicSideContentLayoutChangeEventParameters {
2279
+ /**
2280
+ * the current breakpoint.
2281
+ */
2282
+ currentBreakpoint?: string;
2283
+
2284
+ /**
2285
+ * the breakpoint that was active before change to current breakpoint.
2286
+ */
2287
+ previousBreakpoint?: string;
2288
+
2289
+ /**
2290
+ * visibility of the main content.
2291
+ */
2292
+ mainContentVisible?: boolean;
2293
+
2294
+ /**
2295
+ * visibility of the side content.
2296
+ */
2297
+ sideContentVisible?: boolean;
2261
2298
  }
2262
2299
  }
2263
2300
 
@@ -2284,7 +2321,7 @@ declare module "sap/ui/webc/fiori/FilterItem" {
2284
2321
  *
2285
2322
  * Usage:
2286
2323
  */
2287
- export default class FilterItem extends WebComponent implements IFilterItem {
2324
+ class FilterItem extends WebComponent implements IFilterItem {
2288
2325
  __implements__sap_ui_webc_fiori_IFilterItem: boolean;
2289
2326
  /**
2290
2327
  * Constructor for a new `FilterItem`.
@@ -2445,6 +2482,7 @@ declare module "sap/ui/webc/fiori/FilterItem" {
2445
2482
  sText?: string
2446
2483
  ): this;
2447
2484
  }
2485
+ export default FilterItem;
2448
2486
 
2449
2487
  export interface $FilterItemSettings extends $WebComponentSettings {
2450
2488
  /**
@@ -2483,9 +2521,7 @@ declare module "sap/ui/webc/fiori/FilterItemOption" {
2483
2521
  *
2484
2522
  * Usage:
2485
2523
  */
2486
- export default class FilterItemOption
2487
- extends WebComponent
2488
- implements IFilterItemOption {
2524
+ class FilterItemOption extends WebComponent implements IFilterItemOption {
2489
2525
  __implements__sap_ui_webc_fiori_IFilterItemOption: boolean;
2490
2526
  /**
2491
2527
  * Constructor for a new `FilterItemOption`.
@@ -2602,6 +2638,7 @@ declare module "sap/ui/webc/fiori/FilterItemOption" {
2602
2638
  sText?: string
2603
2639
  ): this;
2604
2640
  }
2641
+ export default FilterItemOption;
2605
2642
 
2606
2643
  export interface $FilterItemOptionSettings extends $WebComponentSettings {
2607
2644
  /**
@@ -2660,7 +2697,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
2660
2697
  *
2661
2698
  * Keyboard Handling:
2662
2699
  */
2663
- export default class FlexibleColumnLayout extends WebComponent {
2700
+ class FlexibleColumnLayout extends WebComponent {
2664
2701
  /**
2665
2702
  * Constructor for a new `FlexibleColumnLayout`.
2666
2703
  *
@@ -2741,7 +2778,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
2741
2778
  /**
2742
2779
  * The function to be called when the event occurs
2743
2780
  */
2744
- fnFunction: (p1: Event) => void,
2781
+ fnFunction: (
2782
+ p1: Event<$FlexibleColumnLayoutLayoutChangeEventParameters>
2783
+ ) => void,
2745
2784
  /**
2746
2785
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.FlexibleColumnLayout`
2747
2786
  * itself
@@ -2763,7 +2802,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
2763
2802
  /**
2764
2803
  * The function to be called when the event occurs
2765
2804
  */
2766
- fnFunction: (p1: Event) => void,
2805
+ fnFunction: (
2806
+ p1: Event<$FlexibleColumnLayoutLayoutChangeEventParameters>
2807
+ ) => void,
2767
2808
  /**
2768
2809
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.FlexibleColumnLayout`
2769
2810
  * itself
@@ -2799,7 +2840,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
2799
2840
  /**
2800
2841
  * The function to be called, when the event occurs
2801
2842
  */
2802
- fnFunction: (p1: Event) => void,
2843
+ fnFunction: (
2844
+ p1: Event<$FlexibleColumnLayoutLayoutChangeEventParameters>
2845
+ ) => void,
2803
2846
  /**
2804
2847
  * Context object on which the given function had to be called
2805
2848
  */
@@ -2816,36 +2859,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
2816
2859
  /**
2817
2860
  * Parameters to pass along with the event
2818
2861
  */
2819
- mParameters?: {
2820
- /**
2821
- * The current layout
2822
- */
2823
- layout?: FCLLayout;
2824
- /**
2825
- * The effective column layout, f.e [67%, 33%, 0]
2826
- */
2827
- columnLayout?: any[];
2828
- /**
2829
- * Indicates if the start column is currently visible
2830
- */
2831
- startColumnVisible?: boolean;
2832
- /**
2833
- * Indicates if the middle column is currently visible
2834
- */
2835
- midColumnVisible?: boolean;
2836
- /**
2837
- * Indicates if the end column is currently visible
2838
- */
2839
- endColumnVisible?: boolean;
2840
- /**
2841
- * Indicates if the layout is changed via the arrows
2842
- */
2843
- arrowsUsed?: boolean;
2844
- /**
2845
- * Indicates if the layout is changed via resizing
2846
- */
2847
- resize?: boolean;
2848
- }
2862
+ mParameters?: $FlexibleColumnLayoutLayoutChangeEventParameters
2849
2863
  ): this;
2850
2864
  /**
2851
2865
  * Gets current value of property {@link #getAccessibilityRoles accessibilityRoles}.
@@ -3144,6 +3158,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
3144
3158
  sWidth: CSSSize
3145
3159
  ): this;
3146
3160
  }
3161
+ export default FlexibleColumnLayout;
3147
3162
 
3148
3163
  export interface $FlexibleColumnLayoutSettings extends $WebComponentSettings {
3149
3164
  /**
@@ -3232,7 +3247,46 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
3232
3247
  * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
3233
3248
  * size due to resizing.
3234
3249
  */
3235
- layoutChange?: (oEvent: Event) => void;
3250
+ layoutChange?: (
3251
+ oEvent: Event<$FlexibleColumnLayoutLayoutChangeEventParameters>
3252
+ ) => void;
3253
+ }
3254
+
3255
+ export interface $FlexibleColumnLayoutLayoutChangeEventParameters {
3256
+ /**
3257
+ * The current layout
3258
+ */
3259
+ layout?: FCLLayout;
3260
+
3261
+ /**
3262
+ * The effective column layout, f.e [67%, 33%, 0]
3263
+ */
3264
+ columnLayout?: any[];
3265
+
3266
+ /**
3267
+ * Indicates if the start column is currently visible
3268
+ */
3269
+ startColumnVisible?: boolean;
3270
+
3271
+ /**
3272
+ * Indicates if the middle column is currently visible
3273
+ */
3274
+ midColumnVisible?: boolean;
3275
+
3276
+ /**
3277
+ * Indicates if the end column is currently visible
3278
+ */
3279
+ endColumnVisible?: boolean;
3280
+
3281
+ /**
3282
+ * Indicates if the layout is changed via the arrows
3283
+ */
3284
+ arrowsUsed?: boolean;
3285
+
3286
+ /**
3287
+ * Indicates if the layout is changed via resizing
3288
+ */
3289
+ resize?: boolean;
3236
3290
  }
3237
3291
  }
3238
3292
 
@@ -3282,7 +3336,7 @@ declare module "sap/ui/webc/fiori/IllustratedMessage" {
3282
3336
  * Usage: `sap.ui.webc.fiori.IllustratedMessage` is meant to be used inside container component, for example
3283
3337
  * a `sap.ui.webc.main.Card`, a `sap.ui.webc.main.Dialog` or a `sap.ui.webc.fiori.Page`
3284
3338
  */
3285
- export default class IllustratedMessage extends WebComponent {
3339
+ class IllustratedMessage extends WebComponent {
3286
3340
  /**
3287
3341
  * Constructor for a new `IllustratedMessage`.
3288
3342
  *
@@ -3577,6 +3631,7 @@ declare module "sap/ui/webc/fiori/IllustratedMessage" {
3577
3631
  sTitleText?: string
3578
3632
  ): this;
3579
3633
  }
3634
+ export default IllustratedMessage;
3580
3635
 
3581
3636
  export interface $IllustratedMessageSettings extends $WebComponentSettings {
3582
3637
  name?:
@@ -3680,7 +3735,7 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
3680
3735
  * - [HOME] - Navigates to first item
3681
3736
  * - [END] - Navigates to the last item [SPACE/ENTER] - Select an item
3682
3737
  */
3683
- export default class MediaGallery extends WebComponent {
3738
+ class MediaGallery extends WebComponent {
3684
3739
  /**
3685
3740
  * Constructor for a new `MediaGallery`.
3686
3741
  *
@@ -3866,7 +3921,9 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
3866
3921
  /**
3867
3922
  * The function to be called when the event occurs
3868
3923
  */
3869
- fnFunction: (p1: Event) => void,
3924
+ fnFunction: (
3925
+ p1: Event<$MediaGallerySelectionChangeEventParameters>
3926
+ ) => void,
3870
3927
  /**
3871
3928
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.MediaGallery` itself
3872
3929
  */
@@ -3887,7 +3944,9 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
3887
3944
  /**
3888
3945
  * The function to be called when the event occurs
3889
3946
  */
3890
- fnFunction: (p1: Event) => void,
3947
+ fnFunction: (
3948
+ p1: Event<$MediaGallerySelectionChangeEventParameters>
3949
+ ) => void,
3891
3950
  /**
3892
3951
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.MediaGallery` itself
3893
3952
  */
@@ -3947,7 +4006,9 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
3947
4006
  /**
3948
4007
  * The function to be called, when the event occurs
3949
4008
  */
3950
- fnFunction: (p1: Event) => void,
4009
+ fnFunction: (
4010
+ p1: Event<$MediaGallerySelectionChangeEventParameters>
4011
+ ) => void,
3951
4012
  /**
3952
4013
  * Context object on which the given function had to be called
3953
4014
  */
@@ -3990,12 +4051,7 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
3990
4051
  /**
3991
4052
  * Parameters to pass along with the event
3992
4053
  */
3993
- mParameters?: {
3994
- /**
3995
- * the selected item.
3996
- */
3997
- item?: HTMLElement;
3998
- }
4054
+ mParameters?: $MediaGallerySelectionChangeEventParameters
3999
4055
  ): this;
4000
4056
  /**
4001
4057
  * Gets current value of property {@link #getInteractiveDisplayArea interactiveDisplayArea}.
@@ -4233,6 +4289,7 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
4233
4289
  bShowAllThumbnails?: boolean
4234
4290
  ): this;
4235
4291
  }
4292
+ export default MediaGallery;
4236
4293
 
4237
4294
  export interface $MediaGallerySettings extends $WebComponentSettings {
4238
4295
  /**
@@ -4321,7 +4378,20 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
4321
4378
  /**
4322
4379
  * Fired when selection is changed by user interaction.
4323
4380
  */
4324
- selectionChange?: (oEvent: Event) => void;
4381
+ selectionChange?: (
4382
+ oEvent: Event<$MediaGallerySelectionChangeEventParameters>
4383
+ ) => void;
4384
+ }
4385
+
4386
+ export interface $MediaGalleryDisplayAreaClickEventParameters {}
4387
+
4388
+ export interface $MediaGalleryOverflowClickEventParameters {}
4389
+
4390
+ export interface $MediaGallerySelectionChangeEventParameters {
4391
+ /**
4392
+ * the selected item.
4393
+ */
4394
+ item?: HTMLElement;
4325
4395
  }
4326
4396
  }
4327
4397
 
@@ -4361,9 +4431,7 @@ declare module "sap/ui/webc/fiori/MediaGalleryItem" {
4361
4431
  *
4362
4432
  * - [SPACE/ENTER/RETURN] - Trigger `ui5-click` event
4363
4433
  */
4364
- export default class MediaGalleryItem
4365
- extends WebComponent
4366
- implements IMediaGalleryItem {
4434
+ class MediaGalleryItem extends WebComponent implements IMediaGalleryItem {
4367
4435
  __implements__sap_ui_webc_fiori_IMediaGalleryItem: boolean;
4368
4436
  /**
4369
4437
  * Constructor for a new `MediaGalleryItem`.
@@ -4563,6 +4631,7 @@ declare module "sap/ui/webc/fiori/MediaGalleryItem" {
4563
4631
  oThumbnail: Control
4564
4632
  ): this;
4565
4633
  }
4634
+ export default MediaGalleryItem;
4566
4635
 
4567
4636
  export interface $MediaGalleryItemSettings extends $WebComponentSettings {
4568
4637
  /**
@@ -4621,9 +4690,7 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
4621
4690
  * The `sap.ui.webc.fiori.NotificationAction` represents an abstract action, used in the `sap.ui.webc.fiori.NotificationListItem`
4622
4691
  * and the `sap.ui.webc.fiori.NotificationListGroupItem` items.
4623
4692
  */
4624
- export default class NotificationAction
4625
- extends WebComponent
4626
- implements INotificationAction {
4693
+ class NotificationAction extends WebComponent implements INotificationAction {
4627
4694
  __implements__sap_ui_webc_fiori_INotificationAction: boolean;
4628
4695
  /**
4629
4696
  * Constructor for a new `NotificationAction`.
@@ -4820,6 +4887,7 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
4820
4887
  sText?: string
4821
4888
  ): this;
4822
4889
  }
4890
+ export default NotificationAction;
4823
4891
 
4824
4892
  export interface $NotificationActionSettings extends $WebComponentSettings {
4825
4893
  /**
@@ -4906,9 +4974,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
4906
4974
  * The `sap.ui.webc.fiori.NotificationListGroupItem` exposes the following CSS Shadow Parts:
4907
4975
  * - title-text - Used to style the titleText of the notification list group item
4908
4976
  */
4909
- export default class NotificationListGroupItem
4910
- extends WebComponent
4911
- implements IListItem {
4977
+ class NotificationListGroupItem extends WebComponent implements IListItem {
4912
4978
  __implements__sap_ui_webc_main_IListItem: boolean;
4913
4979
  /**
4914
4980
  * Constructor for a new `NotificationListGroupItem`.
@@ -5260,8 +5326,8 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
5260
5326
  */
5261
5327
  getTitleText(): string;
5262
5328
  /**
5263
- * Checks for the provided `sap.ui.webc.fiori.INotificationAction` in the aggregation {@link #getActions
5264
- * actions}. and returns its index if found or -1 otherwise.
5329
+ * Checks for the provided `sap.ui.webc.fiori.INotificationAction` in the aggregation {@link #getActions actions}.
5330
+ * and returns its index if found or -1 otherwise.
5265
5331
  *
5266
5332
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5267
5333
  */
@@ -5272,8 +5338,8 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
5272
5338
  oAction: INotificationAction
5273
5339
  ): int;
5274
5340
  /**
5275
- * Checks for the provided `sap.ui.webc.fiori.INotificationListItem` in the aggregation {@link #getItems
5276
- * items}. and returns its index if found or -1 otherwise.
5341
+ * Checks for the provided `sap.ui.webc.fiori.INotificationListItem` in the aggregation {@link #getItems items}.
5342
+ * and returns its index if found or -1 otherwise.
5277
5343
  *
5278
5344
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5279
5345
  */
@@ -5498,6 +5564,7 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
5498
5564
  sTitleText?: string
5499
5565
  ): this;
5500
5566
  }
5567
+ export default NotificationListGroupItem;
5501
5568
 
5502
5569
  export interface $NotificationListGroupItemSettings
5503
5570
  extends $WebComponentSettings {
@@ -5581,6 +5648,10 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
5581
5648
  */
5582
5649
  toggle?: (oEvent: Event) => void;
5583
5650
  }
5651
+
5652
+ export interface $NotificationListGroupItemCloseEventParameters {}
5653
+
5654
+ export interface $NotificationListGroupItemToggleEventParameters {}
5584
5655
  }
5585
5656
 
5586
5657
  declare module "sap/ui/webc/fiori/NotificationListItem" {
@@ -5627,7 +5698,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
5627
5698
  * The user can:
5628
5699
  * - display a `Close` button
5629
5700
  * - can control whether the `titleText` and `description` should wrap or truncate and display a `ShowMore`
5630
- * button to switch between less and more information
5701
+ * button to switch between less and more information
5631
5702
  * - add custom actions by using the `sap.ui.webc.fiori.NotificationAction` component
5632
5703
  *
5633
5704
  * Usage: The component can be used in a standard `sap.ui.webc.main.List`.
@@ -5639,7 +5710,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
5639
5710
  * The `sap.ui.webc.fiori.NotificationListItem` exposes the following CSS Shadow Parts:
5640
5711
  * - title-text - Used to style the titleText of the notification list item
5641
5712
  */
5642
- export default class NotificationListItem
5713
+ class NotificationListItem
5643
5714
  extends WebComponent
5644
5715
  implements INotificationListItem, IListItem {
5645
5716
  __implements__sap_ui_webc_fiori_INotificationListItem: boolean;
@@ -5939,8 +6010,8 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
5939
6010
  */
5940
6011
  getWrappingType(): WrappingType | keyof typeof WrappingType;
5941
6012
  /**
5942
- * Checks for the provided `sap.ui.webc.fiori.INotificationAction` in the aggregation {@link #getActions
5943
- * actions}. and returns its index if found or -1 otherwise.
6013
+ * Checks for the provided `sap.ui.webc.fiori.INotificationAction` in the aggregation {@link #getActions actions}.
6014
+ * and returns its index if found or -1 otherwise.
5944
6015
  *
5945
6016
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5946
6017
  */
@@ -6192,6 +6263,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
6192
6263
  sWrappingType?: WrappingType | keyof typeof WrappingType
6193
6264
  ): this;
6194
6265
  }
6266
+ export default NotificationListItem;
6195
6267
 
6196
6268
  export interface $NotificationListItemSettings extends $WebComponentSettings {
6197
6269
  /**
@@ -6283,6 +6355,8 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
6283
6355
  */
6284
6356
  close?: (oEvent: Event) => void;
6285
6357
  }
6358
+
6359
+ export interface $NotificationListItemCloseEventParameters {}
6286
6360
  }
6287
6361
 
6288
6362
  declare module "sap/ui/webc/fiori/Page" {
@@ -6322,7 +6396,7 @@ declare module "sap/ui/webc/fiori/Page" {
6322
6396
  * the intended design you have to make sure that there is enough space for the `sap.ui.webc.fiori.Page`
6323
6397
  * to be rendered.
6324
6398
  */
6325
- export default class Page extends WebComponent {
6399
+ class Page extends WebComponent {
6326
6400
  /**
6327
6401
  * Constructor for a new `Page`.
6328
6402
  *
@@ -6681,6 +6755,7 @@ declare module "sap/ui/webc/fiori/Page" {
6681
6755
  sWidth: CSSSize
6682
6756
  ): this;
6683
6757
  }
6758
+ export default Page;
6684
6759
 
6685
6760
  export interface $PageSettings extends $WebComponentSettings {
6686
6761
  /**
@@ -6776,7 +6851,7 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
6776
6851
  * - [UP/DOWN] - Navigates up and down the items
6777
6852
  * - [LEFT/RIGHT] - Navigates left and right the items
6778
6853
  */
6779
- export default class ProductSwitch extends WebComponent {
6854
+ class ProductSwitch extends WebComponent {
6780
6855
  /**
6781
6856
  * Constructor for a new `ProductSwitch`.
6782
6857
  *
@@ -6909,6 +6984,7 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
6909
6984
  vItem: int | string | IProductSwitchItem
6910
6985
  ): IProductSwitchItem | null;
6911
6986
  }
6987
+ export default ProductSwitch;
6912
6988
 
6913
6989
  export interface $ProductSwitchSettings extends $WebComponentSettings {
6914
6990
  /**
@@ -6955,9 +7031,7 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
6955
7031
  *
6956
7032
  * - [SPACE/ENTER/RETURN] - Trigger `ui5-click` event
6957
7033
  */
6958
- export default class ProductSwitchItem
6959
- extends WebComponent
6960
- implements IProductSwitchItem {
7034
+ class ProductSwitchItem extends WebComponent implements IProductSwitchItem {
6961
7035
  __implements__sap_ui_webc_fiori_IProductSwitchItem: boolean;
6962
7036
  /**
6963
7037
  * Constructor for a new `ProductSwitchItem`.
@@ -7264,6 +7338,7 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
7264
7338
  sTitleText?: string
7265
7339
  ): this;
7266
7340
  }
7341
+ export default ProductSwitchItem;
7267
7342
 
7268
7343
  export interface $ProductSwitchItemSettings extends $WebComponentSettings {
7269
7344
  /**
@@ -7312,6 +7387,8 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
7312
7387
  */
7313
7388
  click?: (oEvent: Event) => void;
7314
7389
  }
7390
+
7391
+ export interface $ProductSwitchItemClickEventParameters {}
7315
7392
  }
7316
7393
 
7317
7394
  declare module "sap/ui/webc/fiori/ShellBar" {
@@ -7368,7 +7445,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7368
7445
  *
7369
7446
  * Keyboard Handling:
7370
7447
  */
7371
- export default class ShellBar extends WebComponent {
7448
+ class ShellBar extends WebComponent {
7372
7449
  /**
7373
7450
  * Constructor for a new `ShellBar`.
7374
7451
  *
@@ -7470,7 +7547,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7470
7547
  /**
7471
7548
  * The function to be called when the event occurs
7472
7549
  */
7473
- fnFunction: (p1: Event) => void,
7550
+ fnFunction: (p1: Event<$ShellBarCoPilotClickEventParameters>) => void,
7474
7551
  /**
7475
7552
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7476
7553
  */
@@ -7490,7 +7567,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7490
7567
  /**
7491
7568
  * The function to be called when the event occurs
7492
7569
  */
7493
- fnFunction: (p1: Event) => void,
7570
+ fnFunction: (p1: Event<$ShellBarCoPilotClickEventParameters>) => void,
7494
7571
  /**
7495
7572
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7496
7573
  */
@@ -7515,7 +7592,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7515
7592
  /**
7516
7593
  * The function to be called when the event occurs
7517
7594
  */
7518
- fnFunction: (p1: Event) => void,
7595
+ fnFunction: (p1: Event<$ShellBarLogoClickEventParameters>) => void,
7519
7596
  /**
7520
7597
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7521
7598
  */
@@ -7535,7 +7612,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7535
7612
  /**
7536
7613
  * The function to be called when the event occurs
7537
7614
  */
7538
- fnFunction: (p1: Event) => void,
7615
+ fnFunction: (p1: Event<$ShellBarLogoClickEventParameters>) => void,
7539
7616
  /**
7540
7617
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7541
7618
  */
@@ -7561,7 +7638,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7561
7638
  /**
7562
7639
  * The function to be called when the event occurs
7563
7640
  */
7564
- fnFunction: (p1: Event) => void,
7641
+ fnFunction: (p1: Event<$ShellBarMenuItemClickEventParameters>) => void,
7565
7642
  /**
7566
7643
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7567
7644
  */
@@ -7582,7 +7659,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7582
7659
  /**
7583
7660
  * The function to be called when the event occurs
7584
7661
  */
7585
- fnFunction: (p1: Event) => void,
7662
+ fnFunction: (p1: Event<$ShellBarMenuItemClickEventParameters>) => void,
7586
7663
  /**
7587
7664
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7588
7665
  */
@@ -7608,7 +7685,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7608
7685
  /**
7609
7686
  * The function to be called when the event occurs
7610
7687
  */
7611
- fnFunction: (p1: Event) => void,
7688
+ fnFunction: (
7689
+ p1: Event<$ShellBarNotificationsClickEventParameters>
7690
+ ) => void,
7612
7691
  /**
7613
7692
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7614
7693
  */
@@ -7629,7 +7708,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7629
7708
  /**
7630
7709
  * The function to be called when the event occurs
7631
7710
  */
7632
- fnFunction: (p1: Event) => void,
7711
+ fnFunction: (
7712
+ p1: Event<$ShellBarNotificationsClickEventParameters>
7713
+ ) => void,
7633
7714
  /**
7634
7715
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7635
7716
  */
@@ -7656,7 +7737,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7656
7737
  /**
7657
7738
  * The function to be called when the event occurs
7658
7739
  */
7659
- fnFunction: (p1: Event) => void,
7740
+ fnFunction: (
7741
+ p1: Event<$ShellBarProductSwitchClickEventParameters>
7742
+ ) => void,
7660
7743
  /**
7661
7744
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7662
7745
  */
@@ -7678,7 +7761,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7678
7761
  /**
7679
7762
  * The function to be called when the event occurs
7680
7763
  */
7681
- fnFunction: (p1: Event) => void,
7764
+ fnFunction: (
7765
+ p1: Event<$ShellBarProductSwitchClickEventParameters>
7766
+ ) => void,
7682
7767
  /**
7683
7768
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7684
7769
  */
@@ -7703,7 +7788,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7703
7788
  /**
7704
7789
  * The function to be called when the event occurs
7705
7790
  */
7706
- fnFunction: (p1: Event) => void,
7791
+ fnFunction: (p1: Event<$ShellBarProfileClickEventParameters>) => void,
7707
7792
  /**
7708
7793
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7709
7794
  */
@@ -7723,7 +7808,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7723
7808
  /**
7724
7809
  * The function to be called when the event occurs
7725
7810
  */
7726
- fnFunction: (p1: Event) => void,
7811
+ fnFunction: (p1: Event<$ShellBarProfileClickEventParameters>) => void,
7727
7812
  /**
7728
7813
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBar` itself
7729
7814
  */
@@ -7781,7 +7866,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7781
7866
  /**
7782
7867
  * The function to be called, when the event occurs
7783
7868
  */
7784
- fnFunction: (p1: Event) => void,
7869
+ fnFunction: (p1: Event<$ShellBarCoPilotClickEventParameters>) => void,
7785
7870
  /**
7786
7871
  * Context object on which the given function had to be called
7787
7872
  */
@@ -7798,7 +7883,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7798
7883
  /**
7799
7884
  * The function to be called, when the event occurs
7800
7885
  */
7801
- fnFunction: (p1: Event) => void,
7886
+ fnFunction: (p1: Event<$ShellBarLogoClickEventParameters>) => void,
7802
7887
  /**
7803
7888
  * Context object on which the given function had to be called
7804
7889
  */
@@ -7816,7 +7901,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7816
7901
  /**
7817
7902
  * The function to be called, when the event occurs
7818
7903
  */
7819
- fnFunction: (p1: Event) => void,
7904
+ fnFunction: (p1: Event<$ShellBarMenuItemClickEventParameters>) => void,
7820
7905
  /**
7821
7906
  * Context object on which the given function had to be called
7822
7907
  */
@@ -7834,7 +7919,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7834
7919
  /**
7835
7920
  * The function to be called, when the event occurs
7836
7921
  */
7837
- fnFunction: (p1: Event) => void,
7922
+ fnFunction: (
7923
+ p1: Event<$ShellBarNotificationsClickEventParameters>
7924
+ ) => void,
7838
7925
  /**
7839
7926
  * Context object on which the given function had to be called
7840
7927
  */
@@ -7852,7 +7939,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7852
7939
  /**
7853
7940
  * The function to be called, when the event occurs
7854
7941
  */
7855
- fnFunction: (p1: Event) => void,
7942
+ fnFunction: (
7943
+ p1: Event<$ShellBarProductSwitchClickEventParameters>
7944
+ ) => void,
7856
7945
  /**
7857
7946
  * Context object on which the given function had to be called
7858
7947
  */
@@ -7869,7 +7958,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7869
7958
  /**
7870
7959
  * The function to be called, when the event occurs
7871
7960
  */
7872
- fnFunction: (p1: Event) => void,
7961
+ fnFunction: (p1: Event<$ShellBarProfileClickEventParameters>) => void,
7873
7962
  /**
7874
7963
  * Context object on which the given function had to be called
7875
7964
  */
@@ -7886,12 +7975,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7886
7975
  /**
7887
7976
  * Parameters to pass along with the event
7888
7977
  */
7889
- mParameters?: {
7890
- /**
7891
- * dom ref of the activated element
7892
- */
7893
- targetRef?: HTMLElement;
7894
- }
7978
+ mParameters?: $ShellBarCoPilotClickEventParameters
7895
7979
  ): this;
7896
7980
  /**
7897
7981
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7904,12 +7988,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7904
7988
  /**
7905
7989
  * Parameters to pass along with the event
7906
7990
  */
7907
- mParameters?: {
7908
- /**
7909
- * dom ref of the activated element
7910
- */
7911
- targetRef?: HTMLElement;
7912
- }
7991
+ mParameters?: $ShellBarLogoClickEventParameters
7913
7992
  ): this;
7914
7993
  /**
7915
7994
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7922,12 +8001,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7922
8001
  /**
7923
8002
  * Parameters to pass along with the event
7924
8003
  */
7925
- mParameters?: {
7926
- /**
7927
- * DOM ref of the activated list item
7928
- */
7929
- item?: HTMLElement;
7930
- }
8004
+ mParameters?: $ShellBarMenuItemClickEventParameters
7931
8005
  ): this;
7932
8006
  /**
7933
8007
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7943,12 +8017,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7943
8017
  /**
7944
8018
  * Parameters to pass along with the event
7945
8019
  */
7946
- mParameters?: {
7947
- /**
7948
- * dom ref of the activated element
7949
- */
7950
- targetRef?: HTMLElement;
7951
- }
8020
+ mParameters?: $ShellBarNotificationsClickEventParameters
7952
8021
  ): boolean;
7953
8022
  /**
7954
8023
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7964,12 +8033,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7964
8033
  /**
7965
8034
  * Parameters to pass along with the event
7966
8035
  */
7967
- mParameters?: {
7968
- /**
7969
- * dom ref of the activated element
7970
- */
7971
- targetRef?: HTMLElement;
7972
- }
8036
+ mParameters?: $ShellBarProductSwitchClickEventParameters
7973
8037
  ): boolean;
7974
8038
  /**
7975
8039
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7982,12 +8046,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
7982
8046
  /**
7983
8047
  * Parameters to pass along with the event
7984
8048
  */
7985
- mParameters?: {
7986
- /**
7987
- * dom ref of the activated element
7988
- */
7989
- targetRef?: HTMLElement;
7990
- }
8049
+ mParameters?: $ShellBarProfileClickEventParameters
7991
8050
  ): this;
7992
8051
  /**
7993
8052
  * Gets current value of property {@link #getAccessibilityTexts accessibilityTexts}.
@@ -8407,6 +8466,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
8407
8466
  oStartButton: IButton
8408
8467
  ): this;
8409
8468
  }
8469
+ export default ShellBar;
8410
8470
 
8411
8471
  export interface $ShellBarSettings extends $WebComponentSettings {
8412
8472
  /**
@@ -8504,34 +8564,86 @@ declare module "sap/ui/webc/fiori/ShellBar" {
8504
8564
  /**
8505
8565
  * Fired, when the co pilot is activated.
8506
8566
  */
8507
- coPilotClick?: (oEvent: Event) => void;
8567
+ coPilotClick?: (
8568
+ oEvent: Event<$ShellBarCoPilotClickEventParameters>
8569
+ ) => void;
8508
8570
 
8509
8571
  /**
8510
8572
  * Fired, when the logo is activated.
8511
8573
  */
8512
- logoClick?: (oEvent: Event) => void;
8574
+ logoClick?: (oEvent: Event<$ShellBarLogoClickEventParameters>) => void;
8513
8575
 
8514
8576
  /**
8515
8577
  * Fired, when a menu item is activated **Note:** You can prevent closing of overflow popover by calling
8516
8578
  * `event.preventDefault()`.
8517
8579
  */
8518
- menuItemClick?: (oEvent: Event) => void;
8580
+ menuItemClick?: (
8581
+ oEvent: Event<$ShellBarMenuItemClickEventParameters>
8582
+ ) => void;
8519
8583
 
8520
8584
  /**
8521
8585
  * Fired, when the notification icon is activated.
8522
8586
  */
8523
- notificationsClick?: (oEvent: Event) => void;
8587
+ notificationsClick?: (
8588
+ oEvent: Event<$ShellBarNotificationsClickEventParameters>
8589
+ ) => void;
8524
8590
 
8525
8591
  /**
8526
8592
  * Fired, when the product switch icon is activated. **Note:** You can prevent closing of overflow popover
8527
8593
  * by calling `event.preventDefault()`.
8528
8594
  */
8529
- productSwitchClick?: (oEvent: Event) => void;
8595
+ productSwitchClick?: (
8596
+ oEvent: Event<$ShellBarProductSwitchClickEventParameters>
8597
+ ) => void;
8530
8598
 
8531
8599
  /**
8532
8600
  * Fired, when the profile slot is present.
8533
8601
  */
8534
- profileClick?: (oEvent: Event) => void;
8602
+ profileClick?: (
8603
+ oEvent: Event<$ShellBarProfileClickEventParameters>
8604
+ ) => void;
8605
+ }
8606
+
8607
+ export interface $ShellBarCoPilotClickEventParameters {
8608
+ /**
8609
+ * dom ref of the activated element
8610
+ */
8611
+ targetRef?: HTMLElement;
8612
+ }
8613
+
8614
+ export interface $ShellBarLogoClickEventParameters {
8615
+ /**
8616
+ * dom ref of the activated element
8617
+ */
8618
+ targetRef?: HTMLElement;
8619
+ }
8620
+
8621
+ export interface $ShellBarMenuItemClickEventParameters {
8622
+ /**
8623
+ * DOM ref of the activated list item
8624
+ */
8625
+ item?: HTMLElement;
8626
+ }
8627
+
8628
+ export interface $ShellBarNotificationsClickEventParameters {
8629
+ /**
8630
+ * dom ref of the activated element
8631
+ */
8632
+ targetRef?: HTMLElement;
8633
+ }
8634
+
8635
+ export interface $ShellBarProductSwitchClickEventParameters {
8636
+ /**
8637
+ * dom ref of the activated element
8638
+ */
8639
+ targetRef?: HTMLElement;
8640
+ }
8641
+
8642
+ export interface $ShellBarProfileClickEventParameters {
8643
+ /**
8644
+ * dom ref of the activated element
8645
+ */
8646
+ targetRef?: HTMLElement;
8535
8647
  }
8536
8648
  }
8537
8649
 
@@ -8553,9 +8665,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8553
8665
  * @SINCE 1.92.0
8554
8666
  * @EXPERIMENTAL (since 1.92.0) - This control is experimental and its API might change significantly.
8555
8667
  */
8556
- export default class ShellBarItem
8557
- extends WebComponent
8558
- implements IShellBarItem {
8668
+ class ShellBarItem extends WebComponent implements IShellBarItem {
8559
8669
  __implements__sap_ui_webc_fiori_IShellBarItem: boolean;
8560
8670
  /**
8561
8671
  * Constructor for a new `ShellBarItem`.
@@ -8636,7 +8746,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8636
8746
  /**
8637
8747
  * The function to be called when the event occurs
8638
8748
  */
8639
- fnFunction: (p1: Event) => void,
8749
+ fnFunction: (p1: Event<$ShellBarItemClickEventParameters>) => void,
8640
8750
  /**
8641
8751
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBarItem` itself
8642
8752
  */
@@ -8656,7 +8766,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8656
8766
  /**
8657
8767
  * The function to be called when the event occurs
8658
8768
  */
8659
- fnFunction: (p1: Event) => void,
8769
+ fnFunction: (p1: Event<$ShellBarItemClickEventParameters>) => void,
8660
8770
  /**
8661
8771
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ShellBarItem` itself
8662
8772
  */
@@ -8673,7 +8783,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8673
8783
  /**
8674
8784
  * The function to be called, when the event occurs
8675
8785
  */
8676
- fnFunction: (p1: Event) => void,
8786
+ fnFunction: (p1: Event<$ShellBarItemClickEventParameters>) => void,
8677
8787
  /**
8678
8788
  * Context object on which the given function had to be called
8679
8789
  */
@@ -8693,12 +8803,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8693
8803
  /**
8694
8804
  * Parameters to pass along with the event
8695
8805
  */
8696
- mParameters?: {
8697
- /**
8698
- * DOM ref of the clicked element
8699
- */
8700
- targetRef?: HTMLElement;
8701
- }
8806
+ mParameters?: $ShellBarItemClickEventParameters
8702
8807
  ): boolean;
8703
8808
  /**
8704
8809
  * Gets current value of property {@link #getCount count}.
@@ -8782,6 +8887,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8782
8887
  sText?: string
8783
8888
  ): this;
8784
8889
  }
8890
+ export default ShellBarItem;
8785
8891
 
8786
8892
  export interface $ShellBarItemSettings extends $WebComponentSettings {
8787
8893
  /**
@@ -8802,7 +8908,14 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
8802
8908
  /**
8803
8909
  * Fired, when the item is pressed.
8804
8910
  */
8805
- click?: (oEvent: Event) => void;
8911
+ click?: (oEvent: Event<$ShellBarItemClickEventParameters>) => void;
8912
+ }
8913
+
8914
+ export interface $ShellBarItemClickEventParameters {
8915
+ /**
8916
+ * DOM ref of the clicked element
8917
+ */
8918
+ targetRef?: HTMLElement;
8806
8919
  }
8807
8920
  }
8808
8921
 
@@ -8837,7 +8950,7 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
8837
8950
  * - The header is meant for displaying user related information - profile data, avatar, etc.
8838
8951
  * - The main navigation section is related to the user’s current work context
8839
8952
  * - The secondary section is mostly used to link additional information that may be of interest (legal
8840
- * information, developer communities, external help, contact information and so on).
8953
+ * information, developer communities, external help, contact information and so on).
8841
8954
  *
8842
8955
  * Usage:
8843
8956
  *
@@ -8848,7 +8961,7 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
8848
8961
  *
8849
8962
  * Keyboard Handling:
8850
8963
  */
8851
- export default class SideNavigation extends WebComponent {
8964
+ class SideNavigation extends WebComponent {
8852
8965
  /**
8853
8966
  * Constructor for a new `SideNavigation`.
8854
8967
  *
@@ -8962,7 +9075,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
8962
9075
  /**
8963
9076
  * The function to be called when the event occurs
8964
9077
  */
8965
- fnFunction: (p1: Event) => void,
9078
+ fnFunction: (
9079
+ p1: Event<$SideNavigationSelectionChangeEventParameters>
9080
+ ) => void,
8966
9081
  /**
8967
9082
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.SideNavigation` itself
8968
9083
  */
@@ -8983,7 +9098,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
8983
9098
  /**
8984
9099
  * The function to be called when the event occurs
8985
9100
  */
8986
- fnFunction: (p1: Event) => void,
9101
+ fnFunction: (
9102
+ p1: Event<$SideNavigationSelectionChangeEventParameters>
9103
+ ) => void,
8987
9104
  /**
8988
9105
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.SideNavigation` itself
8989
9106
  */
@@ -9019,7 +9136,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
9019
9136
  /**
9020
9137
  * The function to be called, when the event occurs
9021
9138
  */
9022
- fnFunction: (p1: Event) => void,
9139
+ fnFunction: (
9140
+ p1: Event<$SideNavigationSelectionChangeEventParameters>
9141
+ ) => void,
9023
9142
  /**
9024
9143
  * Context object on which the given function had to be called
9025
9144
  */
@@ -9039,12 +9158,7 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
9039
9158
  /**
9040
9159
  * Parameters to pass along with the event
9041
9160
  */
9042
- mParameters?: {
9043
- /**
9044
- * the clicked item.
9045
- */
9046
- item?: HTMLElement;
9047
- }
9161
+ mParameters?: $SideNavigationSelectionChangeEventParameters
9048
9162
  ): boolean;
9049
9163
  /**
9050
9164
  * Gets current value of property {@link #getCollapsed collapsed}.
@@ -9086,8 +9200,8 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
9086
9200
  */
9087
9201
  getItems(): ISideNavigationItem[];
9088
9202
  /**
9089
- * Checks for the provided `sap.ui.webc.fiori.ISideNavigationItem` in the aggregation {@link #getFixedItems
9090
- * fixedItems}. and returns its index if found or -1 otherwise.
9203
+ * Checks for the provided `sap.ui.webc.fiori.ISideNavigationItem` in the aggregation {@link #getFixedItems fixedItems}.
9204
+ * and returns its index if found or -1 otherwise.
9091
9205
  *
9092
9206
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
9093
9207
  */
@@ -9247,6 +9361,7 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
9247
9361
  bCollapsed?: boolean
9248
9362
  ): this;
9249
9363
  }
9364
+ export default SideNavigation;
9250
9365
 
9251
9366
  export interface $SideNavigationSettings extends $WebComponentSettings {
9252
9367
  /**
@@ -9291,7 +9406,16 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
9291
9406
  /**
9292
9407
  * Fired when the selection has changed via user interaction
9293
9408
  */
9294
- selectionChange?: (oEvent: Event) => void;
9409
+ selectionChange?: (
9410
+ oEvent: Event<$SideNavigationSelectionChangeEventParameters>
9411
+ ) => void;
9412
+ }
9413
+
9414
+ export interface $SideNavigationSelectionChangeEventParameters {
9415
+ /**
9416
+ * the clicked item.
9417
+ */
9418
+ item?: HTMLElement;
9295
9419
  }
9296
9420
  }
9297
9421
 
@@ -9322,9 +9446,7 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
9322
9446
  * The `sap.ui.webc.fiori.SideNavigationItem` is used within `sap.ui.webc.fiori.SideNavigation` only. Via
9323
9447
  * the `sap.ui.webc.fiori.SideNavigationItem` you control the content of the `SideNavigation`.
9324
9448
  */
9325
- export default class SideNavigationItem
9326
- extends WebComponent
9327
- implements ISideNavigationItem {
9449
+ class SideNavigationItem extends WebComponent implements ISideNavigationItem {
9328
9450
  __implements__sap_ui_webc_fiori_ISideNavigationItem: boolean;
9329
9451
  /**
9330
9452
  * Constructor for a new `SideNavigationItem`.
@@ -9468,8 +9590,8 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
9468
9590
  */
9469
9591
  getWholeItemToggleable(): boolean;
9470
9592
  /**
9471
- * Checks for the provided `sap.ui.webc.fiori.ISideNavigationSubItem` in the aggregation {@link #getItems
9472
- * items}. and returns its index if found or -1 otherwise.
9593
+ * Checks for the provided `sap.ui.webc.fiori.ISideNavigationSubItem` in the aggregation {@link #getItems items}.
9594
+ * and returns its index if found or -1 otherwise.
9473
9595
  *
9474
9596
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
9475
9597
  */
@@ -9609,6 +9731,7 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
9609
9731
  bWholeItemToggleable?: boolean
9610
9732
  ): this;
9611
9733
  }
9734
+ export default SideNavigationItem;
9612
9735
 
9613
9736
  export interface $SideNavigationItemSettings extends $WebComponentSettings {
9614
9737
  /**
@@ -9676,7 +9799,7 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
9676
9799
  * The `sap.ui.webc.fiori.SideNavigationSubItem` is intended to be used inside a `sap.ui.webc.fiori.SideNavigationItem`
9677
9800
  * only.
9678
9801
  */
9679
- export default class SideNavigationSubItem
9802
+ class SideNavigationSubItem
9680
9803
  extends WebComponent
9681
9804
  implements ISideNavigationSubItem {
9682
9805
  __implements__sap_ui_webc_fiori_ISideNavigationSubItem: boolean;
@@ -9832,6 +9955,7 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
9832
9955
  sText?: string
9833
9956
  ): this;
9834
9957
  }
9958
+ export default SideNavigationSubItem;
9835
9959
 
9836
9960
  export interface $SideNavigationSubItemSettings
9837
9961
  extends $WebComponentSettings {
@@ -9877,7 +10001,7 @@ declare module "sap/ui/webc/fiori/SortItem" {
9877
10001
  *
9878
10002
  * Usage:
9879
10003
  */
9880
- export default class SortItem extends WebComponent implements ISortItem {
10004
+ class SortItem extends WebComponent implements ISortItem {
9881
10005
  __implements__sap_ui_webc_fiori_ISortItem: boolean;
9882
10006
  /**
9883
10007
  * Constructor for a new `SortItem`.
@@ -9994,6 +10118,7 @@ declare module "sap/ui/webc/fiori/SortItem" {
9994
10118
  sText?: string
9995
10119
  ): this;
9996
10120
  }
10121
+ export default SortItem;
9997
10122
 
9998
10123
  export interface $SortItemSettings extends $WebComponentSettings {
9999
10124
  /**
@@ -10038,7 +10163,7 @@ declare module "sap/ui/webc/fiori/Timeline" {
10038
10163
  * is read-only, while the social timeline offers a high level of interaction and collaboration, and is
10039
10164
  * integrated within SAP Jam.
10040
10165
  */
10041
- export default class Timeline extends WebComponent {
10166
+ class Timeline extends WebComponent {
10042
10167
  /**
10043
10168
  * Constructor for a new `Timeline`.
10044
10169
  *
@@ -10279,6 +10404,7 @@ declare module "sap/ui/webc/fiori/Timeline" {
10279
10404
  sWidth: CSSSize
10280
10405
  ): this;
10281
10406
  }
10407
+ export default Timeline;
10282
10408
 
10283
10409
  export interface $TimelineSettings extends $WebComponentSettings {
10284
10410
  /**
@@ -10348,9 +10474,7 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
10348
10474
  *
10349
10475
  * An entry posted on the timeline.
10350
10476
  */
10351
- export default class TimelineItem
10352
- extends WebComponent
10353
- implements ITimelineItem {
10477
+ class TimelineItem extends WebComponent implements ITimelineItem {
10354
10478
  __implements__sap_ui_webc_fiori_ITimelineItem: boolean;
10355
10479
  /**
10356
10480
  * Constructor for a new `TimelineItem`.
@@ -10708,6 +10832,7 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
10708
10832
  sTitleText?: string
10709
10833
  ): this;
10710
10834
  }
10835
+ export default TimelineItem;
10711
10836
 
10712
10837
  export interface $TimelineItemSettings extends $WebComponentSettings {
10713
10838
  /**
@@ -10752,6 +10877,8 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
10752
10877
  */
10753
10878
  nameClick?: (oEvent: Event) => void;
10754
10879
  }
10880
+
10881
+ export interface $TimelineItemNameClickEventParameters {}
10755
10882
  }
10756
10883
 
10757
10884
  declare module "sap/ui/webc/fiori/UploadCollection" {
@@ -10784,7 +10911,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
10784
10911
  * Overview: This component allows you to represent files before uploading them to a server, with the help
10785
10912
  * of `sap.ui.webc.fiori.UploadCollectionItem`. It also allows you to show already uploaded files.
10786
10913
  */
10787
- export default class UploadCollection extends WebComponent {
10914
+ class UploadCollection extends WebComponent {
10788
10915
  /**
10789
10916
  * Constructor for a new `UploadCollection`.
10790
10917
  *
@@ -10889,7 +11016,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
10889
11016
  /**
10890
11017
  * The function to be called when the event occurs
10891
11018
  */
10892
- fnFunction: (p1: Event) => void,
11019
+ fnFunction: (p1: Event<$UploadCollectionDropEventParameters>) => void,
10893
11020
  /**
10894
11021
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.UploadCollection`
10895
11022
  * itself
@@ -10913,7 +11040,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
10913
11040
  /**
10914
11041
  * The function to be called when the event occurs
10915
11042
  */
10916
- fnFunction: (p1: Event) => void,
11043
+ fnFunction: (p1: Event<$UploadCollectionDropEventParameters>) => void,
10917
11044
  /**
10918
11045
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.UploadCollection`
10919
11046
  * itself
@@ -10942,7 +11069,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
10942
11069
  /**
10943
11070
  * The function to be called when the event occurs
10944
11071
  */
10945
- fnFunction: (p1: Event) => void,
11072
+ fnFunction: (
11073
+ p1: Event<$UploadCollectionItemDeleteEventParameters>
11074
+ ) => void,
10946
11075
  /**
10947
11076
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.UploadCollection`
10948
11077
  * itself
@@ -10966,7 +11095,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
10966
11095
  /**
10967
11096
  * The function to be called when the event occurs
10968
11097
  */
10969
- fnFunction: (p1: Event) => void,
11098
+ fnFunction: (
11099
+ p1: Event<$UploadCollectionItemDeleteEventParameters>
11100
+ ) => void,
10970
11101
  /**
10971
11102
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.UploadCollection`
10972
11103
  * itself
@@ -10993,7 +11124,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
10993
11124
  /**
10994
11125
  * The function to be called when the event occurs
10995
11126
  */
10996
- fnFunction: (p1: Event) => void,
11127
+ fnFunction: (
11128
+ p1: Event<$UploadCollectionSelectionChangeEventParameters>
11129
+ ) => void,
10997
11130
  /**
10998
11131
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.UploadCollection`
10999
11132
  * itself
@@ -11015,7 +11148,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11015
11148
  /**
11016
11149
  * The function to be called when the event occurs
11017
11150
  */
11018
- fnFunction: (p1: Event) => void,
11151
+ fnFunction: (
11152
+ p1: Event<$UploadCollectionSelectionChangeEventParameters>
11153
+ ) => void,
11019
11154
  /**
11020
11155
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.UploadCollection`
11021
11156
  * itself
@@ -11045,7 +11180,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11045
11180
  /**
11046
11181
  * The function to be called, when the event occurs
11047
11182
  */
11048
- fnFunction: (p1: Event) => void,
11183
+ fnFunction: (p1: Event<$UploadCollectionDropEventParameters>) => void,
11049
11184
  /**
11050
11185
  * Context object on which the given function had to be called
11051
11186
  */
@@ -11062,7 +11197,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11062
11197
  /**
11063
11198
  * The function to be called, when the event occurs
11064
11199
  */
11065
- fnFunction: (p1: Event) => void,
11200
+ fnFunction: (
11201
+ p1: Event<$UploadCollectionItemDeleteEventParameters>
11202
+ ) => void,
11066
11203
  /**
11067
11204
  * Context object on which the given function had to be called
11068
11205
  */
@@ -11080,7 +11217,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11080
11217
  /**
11081
11218
  * The function to be called, when the event occurs
11082
11219
  */
11083
- fnFunction: (p1: Event) => void,
11220
+ fnFunction: (
11221
+ p1: Event<$UploadCollectionSelectionChangeEventParameters>
11222
+ ) => void,
11084
11223
  /**
11085
11224
  * Context object on which the given function had to be called
11086
11225
  */
@@ -11097,12 +11236,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11097
11236
  /**
11098
11237
  * Parameters to pass along with the event
11099
11238
  */
11100
- mParameters?: {
11101
- /**
11102
- * The `drop` event operation data.
11103
- */
11104
- dataTransfer?: DataTransfer;
11105
- }
11239
+ mParameters?: $UploadCollectionDropEventParameters
11106
11240
  ): this;
11107
11241
  /**
11108
11242
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -11115,12 +11249,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11115
11249
  /**
11116
11250
  * Parameters to pass along with the event
11117
11251
  */
11118
- mParameters?: {
11119
- /**
11120
- * The `sap.ui.webc.fiori.UploadCollectionItem` which was renamed.
11121
- */
11122
- item?: HTMLElement;
11123
- }
11252
+ mParameters?: $UploadCollectionItemDeleteEventParameters
11124
11253
  ): this;
11125
11254
  /**
11126
11255
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -11133,12 +11262,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11133
11262
  /**
11134
11263
  * Parameters to pass along with the event
11135
11264
  */
11136
- mParameters?: {
11137
- /**
11138
- * An array of the selected items.
11139
- */
11140
- selectedItems?: any[];
11141
- }
11265
+ mParameters?: $UploadCollectionSelectionChangeEventParameters
11142
11266
  ): this;
11143
11267
  /**
11144
11268
  * Gets current value of property {@link #getAccessibleName accessibleName}.
@@ -11247,8 +11371,8 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11247
11371
  oHeader: Control
11248
11372
  ): int;
11249
11373
  /**
11250
- * Checks for the provided `sap.ui.webc.fiori.IUploadCollectionItem` in the aggregation {@link #getItems
11251
- * items}. and returns its index if found or -1 otherwise.
11374
+ * Checks for the provided `sap.ui.webc.fiori.IUploadCollectionItem` in the aggregation {@link #getItems items}.
11375
+ * and returns its index if found or -1 otherwise.
11252
11376
  *
11253
11377
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
11254
11378
  */
@@ -11458,6 +11582,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11458
11582
  sWidth: CSSSize
11459
11583
  ): this;
11460
11584
  }
11585
+ export default UploadCollection;
11461
11586
 
11462
11587
  export interface $UploadCollectionSettings extends $WebComponentSettings {
11463
11588
  /**
@@ -11534,7 +11659,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11534
11659
  * **Note:** The `drop` event is fired only when elements are dropped within the drag and drop overlay
11535
11660
  * and ignored for the other parts of the `sap.ui.webc.fiori.UploadCollection`.
11536
11661
  */
11537
- drop?: (oEvent: Event) => void;
11662
+ drop?: (oEvent: Event<$UploadCollectionDropEventParameters>) => void;
11538
11663
 
11539
11664
  /**
11540
11665
  * Fired when the Delete button of any item is pressed.
@@ -11542,12 +11667,37 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
11542
11667
  * **Note:** A Delete button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollection` `mode`
11543
11668
  * property is set to `Delete`.
11544
11669
  */
11545
- itemDelete?: (oEvent: Event) => void;
11670
+ itemDelete?: (
11671
+ oEvent: Event<$UploadCollectionItemDeleteEventParameters>
11672
+ ) => void;
11546
11673
 
11547
11674
  /**
11548
11675
  * Fired when selection is changed by user interaction in `SingleSelect` and `MultiSelect` modes.
11549
11676
  */
11550
- selectionChange?: (oEvent: Event) => void;
11677
+ selectionChange?: (
11678
+ oEvent: Event<$UploadCollectionSelectionChangeEventParameters>
11679
+ ) => void;
11680
+ }
11681
+
11682
+ export interface $UploadCollectionDropEventParameters {
11683
+ /**
11684
+ * The `drop` event operation data.
11685
+ */
11686
+ dataTransfer?: DataTransfer;
11687
+ }
11688
+
11689
+ export interface $UploadCollectionItemDeleteEventParameters {
11690
+ /**
11691
+ * The `sap.ui.webc.fiori.UploadCollectionItem` which was renamed.
11692
+ */
11693
+ item?: HTMLElement;
11694
+ }
11695
+
11696
+ export interface $UploadCollectionSelectionChangeEventParameters {
11697
+ /**
11698
+ * An array of the selected items.
11699
+ */
11700
+ selectedItems?: any[];
11551
11701
  }
11552
11702
  }
11553
11703
 
@@ -11579,7 +11729,7 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
11579
11729
  *
11580
11730
  * Overview: A component to be used within the `sap.ui.webc.fiori.UploadCollection`.
11581
11731
  */
11582
- export default class UploadCollectionItem
11732
+ class UploadCollectionItem
11583
11733
  extends WebComponent
11584
11734
  implements IUploadCollectionItem {
11585
11735
  __implements__sap_ui_webc_fiori_IUploadCollectionItem: boolean;
@@ -12287,6 +12437,7 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
12287
12437
  sUploadState?: UploadState | keyof typeof UploadState
12288
12438
  ): this;
12289
12439
  }
12440
+ export default UploadCollectionItem;
12290
12441
 
12291
12442
  export interface $UploadCollectionItemSettings extends $WebComponentSettings {
12292
12443
  /**
@@ -12377,6 +12528,14 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
12377
12528
  */
12378
12529
  terminate?: (oEvent: Event) => void;
12379
12530
  }
12531
+
12532
+ export interface $UploadCollectionItemFileNameClickEventParameters {}
12533
+
12534
+ export interface $UploadCollectionItemRenameEventParameters {}
12535
+
12536
+ export interface $UploadCollectionItemRetryEventParameters {}
12537
+
12538
+ export interface $UploadCollectionItemTerminateEventParameters {}
12380
12539
  }
12381
12540
 
12382
12541
  declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
@@ -12414,7 +12573,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12414
12573
  *
12415
12574
  * Responsive Behavior: `sap.ui.webc.fiori.ViewSettingsDialog` stretches on full screen on phones.
12416
12575
  */
12417
- export default class ViewSettingsDialog extends WebComponent {
12576
+ class ViewSettingsDialog extends WebComponent {
12418
12577
  /**
12419
12578
  * Constructor for a new `ViewSettingsDialog`.
12420
12579
  *
@@ -12563,7 +12722,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12563
12722
  /**
12564
12723
  * The function to be called when the event occurs
12565
12724
  */
12566
- fnFunction: (p1: Event) => void,
12725
+ fnFunction: (p1: Event<$ViewSettingsDialogCancelEventParameters>) => void,
12567
12726
  /**
12568
12727
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
12569
12728
  * itself
@@ -12584,7 +12743,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12584
12743
  /**
12585
12744
  * The function to be called when the event occurs
12586
12745
  */
12587
- fnFunction: (p1: Event) => void,
12746
+ fnFunction: (p1: Event<$ViewSettingsDialogCancelEventParameters>) => void,
12588
12747
  /**
12589
12748
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
12590
12749
  * itself
@@ -12610,7 +12769,9 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12610
12769
  /**
12611
12770
  * The function to be called when the event occurs
12612
12771
  */
12613
- fnFunction: (p1: Event) => void,
12772
+ fnFunction: (
12773
+ p1: Event<$ViewSettingsDialogConfirmEventParameters>
12774
+ ) => void,
12614
12775
  /**
12615
12776
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
12616
12777
  * itself
@@ -12631,7 +12792,9 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12631
12792
  /**
12632
12793
  * The function to be called when the event occurs
12633
12794
  */
12634
- fnFunction: (p1: Event) => void,
12795
+ fnFunction: (
12796
+ p1: Event<$ViewSettingsDialogConfirmEventParameters>
12797
+ ) => void,
12635
12798
  /**
12636
12799
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.ViewSettingsDialog`
12637
12800
  * itself
@@ -12678,7 +12841,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12678
12841
  /**
12679
12842
  * The function to be called, when the event occurs
12680
12843
  */
12681
- fnFunction: (p1: Event) => void,
12844
+ fnFunction: (p1: Event<$ViewSettingsDialogCancelEventParameters>) => void,
12682
12845
  /**
12683
12846
  * Context object on which the given function had to be called
12684
12847
  */
@@ -12695,7 +12858,9 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12695
12858
  /**
12696
12859
  * The function to be called, when the event occurs
12697
12860
  */
12698
- fnFunction: (p1: Event) => void,
12861
+ fnFunction: (
12862
+ p1: Event<$ViewSettingsDialogConfirmEventParameters>
12863
+ ) => void,
12699
12864
  /**
12700
12865
  * Context object on which the given function had to be called
12701
12866
  */
@@ -12725,28 +12890,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12725
12890
  /**
12726
12891
  * Parameters to pass along with the event
12727
12892
  */
12728
- mParameters?: {
12729
- /**
12730
- * The current sort order selected.
12731
- */
12732
- sortOrder?: string;
12733
- /**
12734
- * The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
12735
- */
12736
- sortBy?: string;
12737
- /**
12738
- * The currently selected `sap.ui.webc.fiori.SortItem`.
12739
- */
12740
- sortByItem?: HTMLElement;
12741
- /**
12742
- * The selected sort order (true = descending, false = ascending).
12743
- */
12744
- sortDescending?: boolean;
12745
- /**
12746
- * The selected filters items.
12747
- */
12748
- filterItems?: any[];
12749
- }
12893
+ mParameters?: $ViewSettingsDialogCancelEventParameters
12750
12894
  ): this;
12751
12895
  /**
12752
12896
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12759,28 +12903,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12759
12903
  /**
12760
12904
  * Parameters to pass along with the event
12761
12905
  */
12762
- mParameters?: {
12763
- /**
12764
- * The current sort order selected.
12765
- */
12766
- sortOrder?: string;
12767
- /**
12768
- * The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
12769
- */
12770
- sortBy?: string;
12771
- /**
12772
- * The currently selected `sap.ui.webc.fiori.SortItem`.
12773
- */
12774
- sortByItem?: HTMLElement;
12775
- /**
12776
- * The selected sort order (true = descending, false = ascending).
12777
- */
12778
- sortDescending?: boolean;
12779
- /**
12780
- * The selected filters items.
12781
- */
12782
- filterItems?: any[];
12783
- }
12906
+ mParameters?: $ViewSettingsDialogConfirmEventParameters
12784
12907
  ): this;
12785
12908
  /**
12786
12909
  * Gets content of aggregation {@link #getFilterItems filterItems}.
@@ -12931,6 +13054,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12931
13054
  */
12932
13055
  show(): void;
12933
13056
  }
13057
+ export default ViewSettingsDialog;
12934
13058
 
12935
13059
  export interface $ViewSettingsDialogSettings extends $WebComponentSettings {
12936
13060
  /**
@@ -12958,12 +13082,70 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
12958
13082
  /**
12959
13083
  * Fired when cancel button is activated.
12960
13084
  */
12961
- cancel?: (oEvent: Event) => void;
13085
+ cancel?: (oEvent: Event<$ViewSettingsDialogCancelEventParameters>) => void;
12962
13086
 
12963
13087
  /**
12964
13088
  * Fired when confirmation button is activated.
12965
13089
  */
12966
- confirm?: (oEvent: Event) => void;
13090
+ confirm?: (
13091
+ oEvent: Event<$ViewSettingsDialogConfirmEventParameters>
13092
+ ) => void;
13093
+ }
13094
+
13095
+ export interface $ViewSettingsDialogBeforeOpenEventParameters {}
13096
+
13097
+ export interface $ViewSettingsDialogCancelEventParameters {
13098
+ /**
13099
+ * The current sort order selected.
13100
+ */
13101
+ sortOrder?: string;
13102
+
13103
+ /**
13104
+ * The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
13105
+ */
13106
+ sortBy?: string;
13107
+
13108
+ /**
13109
+ * The currently selected `sap.ui.webc.fiori.SortItem`.
13110
+ */
13111
+ sortByItem?: HTMLElement;
13112
+
13113
+ /**
13114
+ * The selected sort order (true = descending, false = ascending).
13115
+ */
13116
+ sortDescending?: boolean;
13117
+
13118
+ /**
13119
+ * The selected filters items.
13120
+ */
13121
+ filterItems?: any[];
13122
+ }
13123
+
13124
+ export interface $ViewSettingsDialogConfirmEventParameters {
13125
+ /**
13126
+ * The current sort order selected.
13127
+ */
13128
+ sortOrder?: string;
13129
+
13130
+ /**
13131
+ * The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
13132
+ */
13133
+ sortBy?: string;
13134
+
13135
+ /**
13136
+ * The currently selected `sap.ui.webc.fiori.SortItem`.
13137
+ */
13138
+ sortByItem?: HTMLElement;
13139
+
13140
+ /**
13141
+ * The selected sort order (true = descending, false = ascending).
13142
+ */
13143
+ sortDescending?: boolean;
13144
+
13145
+ /**
13146
+ * The selected filters items.
13147
+ */
13148
+ filterItems?: any[];
12967
13149
  }
12968
13150
  }
12969
13151
 
@@ -13000,7 +13182,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13000
13182
  * area. It shows the sequence of steps, where the recommended number of steps is between 3 and 8 steps.
13001
13183
  *
13002
13184
  * - Steps can have different visual representations - numbers or icons. Steps might have labels
13003
- * for better readability - titleText and subTitleText.
13185
+ * for better readability - titleText and subTitleText.
13004
13186
  * - Steps are defined by using the `sap.ui.webc.fiori.WizardStep` as slotted element within the `sap.ui.webc.fiori.Wizard`.
13005
13187
  *
13006
13188
  *
@@ -13056,7 +13238,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13056
13238
  * show a popover to select the step to navigate to. On mobile device, the grouped steps are presented within
13057
13239
  * a dialog.
13058
13240
  */
13059
- export default class Wizard extends WebComponent {
13241
+ class Wizard extends WebComponent {
13060
13242
  /**
13061
13243
  * Constructor for a new `Wizard`.
13062
13244
  *
@@ -13148,7 +13330,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13148
13330
  /**
13149
13331
  * The function to be called when the event occurs
13150
13332
  */
13151
- fnFunction: (p1: Event) => void,
13333
+ fnFunction: (p1: Event<$WizardStepChangeEventParameters>) => void,
13152
13334
  /**
13153
13335
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.Wizard` itself
13154
13336
  */
@@ -13169,7 +13351,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13169
13351
  /**
13170
13352
  * The function to be called when the event occurs
13171
13353
  */
13172
- fnFunction: (p1: Event) => void,
13354
+ fnFunction: (p1: Event<$WizardStepChangeEventParameters>) => void,
13173
13355
  /**
13174
13356
  * Context object to call the event handler with. Defaults to this `sap.ui.webc.fiori.Wizard` itself
13175
13357
  */
@@ -13192,7 +13374,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13192
13374
  /**
13193
13375
  * The function to be called, when the event occurs
13194
13376
  */
13195
- fnFunction: (p1: Event) => void,
13377
+ fnFunction: (p1: Event<$WizardStepChangeEventParameters>) => void,
13196
13378
  /**
13197
13379
  * Context object on which the given function had to be called
13198
13380
  */
@@ -13209,20 +13391,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13209
13391
  /**
13210
13392
  * Parameters to pass along with the event
13211
13393
  */
13212
- mParameters?: {
13213
- /**
13214
- * The new step.
13215
- */
13216
- step?: HTMLElement;
13217
- /**
13218
- * The previous step.
13219
- */
13220
- previousStep?: HTMLElement;
13221
- /**
13222
- * The step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation.
13223
- */
13224
- changeWithClick?: boolean;
13225
- }
13394
+ mParameters?: $WizardStepChangeEventParameters
13226
13395
  ): this;
13227
13396
  /**
13228
13397
  * Gets current value of property {@link #getHeight height}.
@@ -13304,6 +13473,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
13304
13473
  sHeight: CSSSize
13305
13474
  ): this;
13306
13475
  }
13476
+ export default Wizard;
13307
13477
 
13308
13478
  export interface $WizardSettings extends $WebComponentSettings {
13309
13479
  /**
@@ -13326,7 +13496,24 @@ declare module "sap/ui/webc/fiori/Wizard" {
13326
13496
  * Fired when the step is changed by user interaction - either with scrolling, or by clicking on the steps
13327
13497
  * within the component header.
13328
13498
  */
13329
- stepChange?: (oEvent: Event) => void;
13499
+ stepChange?: (oEvent: Event<$WizardStepChangeEventParameters>) => void;
13500
+ }
13501
+
13502
+ export interface $WizardStepChangeEventParameters {
13503
+ /**
13504
+ * The new step.
13505
+ */
13506
+ step?: HTMLElement;
13507
+
13508
+ /**
13509
+ * The previous step.
13510
+ */
13511
+ previousStep?: HTMLElement;
13512
+
13513
+ /**
13514
+ * The step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation.
13515
+ */
13516
+ changeWithClick?: boolean;
13330
13517
  }
13331
13518
  }
13332
13519
 
@@ -13365,7 +13552,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
13365
13552
  * Usage: The `sap.ui.webc.fiori.WizardStep` component should be used only as slot of the `sap.ui.webc.fiori.Wizard`
13366
13553
  * component and should not be used standalone.
13367
13554
  */
13368
- export default class WizardStep extends WebComponent implements IWizardStep {
13555
+ class WizardStep extends WebComponent implements IWizardStep {
13369
13556
  __implements__sap_ui_webc_fiori_IWizardStep: boolean;
13370
13557
  /**
13371
13558
  * Constructor for a new `WizardStep`.
@@ -13488,8 +13675,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
13488
13675
  *
13489
13676
  *
13490
13677
  *
13491
- * The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
13492
- * Icon Explorer}.
13678
+ * The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
13493
13679
  *
13494
13680
  * Default value is `empty string`.
13495
13681
  *
@@ -13639,8 +13825,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
13639
13825
  *
13640
13826
  *
13641
13827
  *
13642
- * The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
13643
- * Icon Explorer}.
13828
+ * The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
13644
13829
  *
13645
13830
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13646
13831
  *
@@ -13719,6 +13904,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
13719
13904
  sTitleText?: string
13720
13905
  ): this;
13721
13906
  }
13907
+ export default WizardStep;
13722
13908
 
13723
13909
  export interface $WizardStepSettings extends $WebComponentSettings {
13724
13910
  /**
@@ -13747,8 +13933,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
13747
13933
  *
13748
13934
  *
13749
13935
  *
13750
- * The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html
13751
- * Icon Explorer}.
13936
+ * The SAP-icons font provides numerous options. See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
13752
13937
  */
13753
13938
  icon?: string | PropertyBindingInfo;
13754
13939